html, body {width:100%; height:100%; margin:0; padding:0;}



@keyframes bganimation
{
0%   {
           background-position: 
               -100% -100%,
               200% 200%,
               -100% 200%,
               200% -100%;
      }
      50% {
           background-position: 
               150% 100%,
               -200% 100%,
               100% 0%,
               0% 100%;
      }
      100% {
           background-position: 
               -100% -100%,
               200% 200%,
               -100% 200%,
               200% -100%;
      }
}


html {
    background: 
        radial-gradient(ellipse at center, rgba(0,0,255,0.3) 0%, rgba(0,0,0,0) 70%), /* niebieski */
        radial-gradient(ellipse at center, rgba(255,0,0,0.3) 0%, rgba(0,0,0,0) 70%), /*czerwony */
        radial-gradient(ellipse at center, rgba(0,255,0,0.3) 0%, rgba(0,0,0,0) 70%) /*zielony */
        #c3d7db;
    background-repeat: 
        no-repeat, 
        no-repeat, 
        no-repeat;
    background-size: 
        900px 900px,
        900px 900px,
        900px 900px;
    background-attachment: fixed;
    
    animation:bganimation 30s infinite;
}



body { 
  /*height: 9999px;*/
}





























/* 調整用スタイル */

a {
  text-decoration: none;
}


.ac{
  text-align: center;
}
.ar{
  text-align: right;
}

.mt2em{
  margin-top: 2em;
}


.p20{
  padding: 20px;
}



h2 a{
  display: block;
  padding-top: 50px;
}



.filled-circle-red {
  font-size: 20pt;
  text-emphasis: filled circle red;
}

.highlight{
  line-height: 1;
  color: #279267;
  font-size: 42px;
  /*text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);*/
  font-weight: bold;
}





.footer {
  background-color: #34009d;
  display: flex;
  padding: 1em;
}

.footer div {
  margin: auto;
}


@media(min-width:768px){
  .sp{
      display: none !important;
  }
}
@media(max-width:767px){
  .pc{
      display: none !important;
  }
}





.footer span{
  display: inline-block;
}


.footer-call-info{
  display: flex;
  color: #FFF;
  gap: 20px;
  flex-wrap: wrap;
}


.footer-call-info .call{
  max-width: 680px;
}

.footer-call-info .guide{
  padding: 0 20px;
}
.footer-call-info .info{
  padding: 0 20px;

}

.footer-call-info .tel{
  font-size: 48px;
  font-weight: bold;
}
.footer-call-info .link{
  background-color: #189418;
  border-radius: 8px;
  padding: 30px;
  font-size: 24px;

}
.footer-call-info .link div{
  white-space: nowrap;

}




footer{
  text-align: center;
}



.copyright{
  background-color: #7f7ddd;
}

.copyright a{
	color: #000;
}
.copyright a:hover{
	color: #FFF;
}








/* ヘッダー */


.header {
  background-color: white;
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.header__inner {
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
}



.header ul,
.header li {
  list-style: none;
  padding: 0;

}





/* ヘッダーのロゴ部分 */
.header__title {
  /*width: 80px;*/
}


@media screen and (min-width: 768px) {
  .header__title {
    width: 263px;
  }
}

.header__title img {
  display: block;
}

/* ヘッダーのナビ部分 */

.header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  background-color: #fff;
  transition: ease .4s;
  text-align: center;
}
.header_sp_tel{
	text-align: center;
}
.header_sp_tel img{

}

.header__nav ul{
  margin: 0;
}


.header__nav ul.menu-item li{
  white-space: nowrap;
  margin: auto 2em;
  line-height: 80px;
}

@media screen and (min-width: 1400px) {
  .nav__items {
    width: 100%;
    display: flex;
    align-items: center;
    height: initial;
    justify-content: flex-end;


  }
  .nav__items img{
    display: block;
  }
}






@media screen and (min-width: 768px) {
  .header__nav {
    position: static;
    transform: initial;
    background-color: inherit;
    height: inherit;
    justify-content: end;
  }

  .header__nav ul{
    justify-content: flex-end;
    display: inline-flex;
    line-height: 0;

  }





}








.nav-items {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
}



@media screen and (min-width: 768px) {
  .nav-items {
    position: inherit;
    top: 0;
    left: 0;
    transform: translate(0, 0);

  }
}

/* ナビのリンク */
.nav-items__item{
  margin: 0 2%;
}
.nav-items__item a {
  width: 100%;
  display: block;
  text-align: center;
  font-size: 20px;
  margin-bottom: 24px;
  color: black;
}

.nav-items__item:last-child a {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .nav-items__item a {
    margin-bottom: 0;
  }
}


/* ハンバーガーメニュー */

.header__hamburger {
  width: 48px;
  height: 100%;

}

.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
}

@media screen and (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 1px;
  background-color: #000;
  position: relative;
  transition: ease .4s;
  display: block;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 8px 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}


/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;

}

.hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
}





















.wrapper {
  margin-top: 80px;
}
.wrapper img{
  width: 100%;
  height: auto;
}




.wrapper-inner {
  display: flex;
  flex-direction: row-reverse;
  max-width: 1140px;
  margin: auto;
  background-color: #FFF;
}
.side {
  width: 280px;
  /*margin-right: 20px;*/
  background-color: #f1f7f0;

}
.main {
  flex: 1;
}

.main span{
  display: inline-block;
}

@media screen and (min-width:769px) and ( max-width:1399px){
  .wrapper{
    margin-top: 160px;
  }
  .header{
    height: 160px;
  }

.nav__items{
display: flex;
flex-direction: column-reverse;
flex-wrap: wrap;
}

}


@media screen and (max-width: 1140px) {
  .wrapper-inner {
    flex-direction: column;
  
  }
  .side {
    width: 100%;
    background-color: #f1f7f0;
  }  
}





.side ul 
{
  padding: 0;
  margin: 0;
}
.side ul li
{
  list-style: none;
  border-radius: 8px;
  margin: 10px;
}

.side ul li a
{
  color: #FFF;
  display: block;
  padding: 1em;

}

ul.side-customer-info li{
  background-color: #2C7604;
}

.side-items-area{
  background-color: #276992;
  padding: 10px 0;
  border-radius: 10px 10px 0 0;
}
.side-items-area a.object{
  padding-left: 20px;
  margin: 0;
  color: #FFF;
  text-align: center;
  font-weight: 300;
  display: block;
  background-color: #173142;
  margin: 10px;
  padding: 20px;
  border-radius: 10px;
}
ul.side-items{
  display: flex;
  flex-direction: row;
  flex-wrap:wrap;
  justify-content: center;;
  border: solid 1px #FFF;
  margin: 0 10px;
}
ul.side-items li{
  background-color: #0e354c;
}

ul.side-service li{
  background-color: brown;
}
ul.side-service li a{
  padding: 1.5em 1em;

}


ul.side-company-info{
  background-color: #eff4f7;
  padding: 20px 0;
}


ul.side-company-info li{
  background-color: #273792;
}













.index-main{
  text-align: center;
  font-size: 0;
}





@media screen and (max-width: 767px) {
  /* ここに横幅が767px以下の時に発動するスタイルを記述 */
  .wrapper {
    flex-direction: column;
  }
  .side {
    width: 100%;
  }
  .wrapper-inner{
    width: 100%;
    display: block;
  }
  img{
      max-width: 100%;
      height: auto;
    }





  }
  




  section{
    margin-bottom: 2em;
  }






.category-title{
  text-align: center;
  margin-top: 3em;
}


ul.category{
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 0;
  fl

}

ul.category li {
  width : 33.33333% ; /* 未対応ブラウザ用フォールバック */
  width : -webkit-calc(100% / 3) ;
  width : calc(100% / 3) ;
  list-style: none;
  border-radius: 10px;

}
ul.category li img{
  width: 100%;
  height: auto;
}


@media screen and (max-width: 839px) {
  /* ここに横幅が767pxより大きい時に発動するスタイルを記述 */
  ul.category{
    flex-direction: column;
    padding: 20px 0;
  
  }
  ul.category li {
    width: 100%;
  }
  }
@media screen and (min-width: 840px) {


}
  
  
  
  
ul.category li.home-appliances{
      background-color: #0010a4;
    }
    ul.category li.furniture{
      background-color: #104902;
    }
    ul.category li.musical-instrument{
      background-color: #511841;
    }
    ul.category li.gift{
      background-color: #203d51;
    }
    ul.category li.game{
      background-color: #00a4ff;
    }
    ul.category li.outdoor{
      background-color: #44724a;
    }






.object-item section{
  background-color: aliceblue;
  padding: 10px;
  border-radius: 10px;
}





*, *:before, *:after {
  box-sizing: border-box;
}
.col_3{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.col_3 > *{
  width: calc( 33.33333% - 8px ) ;
  margin-right: 12px;
  margin-bottom: 12px;
}
.col_3 > *:nth-child(3n){
  margin-right: auto;
}
.col_3 > * > *{
  position: relative;
  overflow: hidden;
  margin: 0;
}
@media screen and (max-width: 960px) {
  .col_3 > *{
      width: calc( 50% - 6px ) ;
  }
  .col_3 > *:nth-child(3n){
      margin-right: 12px;
  }
  .col_3 > *:nth-child(2n){
      margin-right: auto;
  }
}
@media screen and (max-width: 580px) {
  .col_3 > *{
      width: 100%;
      margin-right: auto;
  }
  .col_3 > *:nth-child(3n){
      margin-right: auto;
  }
}
























/* 001 */
.button001 a {
  background: #eee;
  border-radius: 3px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 280px;
  padding: 10px 25px;
  color: #313131;
  transition: 0.3s ease-in-out;
  font-weight: 500;
}
.button001 a:hover {
  background: #313131;
  color: #FFF;
}
.button001 a:after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 3px solid #313131;
  border-right: 3px solid #313131;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}
.button001 a:hover:after {
  border-color: #FFF;
}




a.btn_02 {
	display: flex;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: 320px;
	margin: auto;
	font-weight: bold;
	border: 2px solid #45d927;
	background: #27d927;
	color: #fff;
	transition: 0.5s;
  border-radius: 8px;
  letter-spacing: 0.5em;
  align-items: center;
  justify-content: center;
}
a.btn_02:hover {
	color: #27d927;
	background: #fff;
}



a.btn_02 img{
  width: auto;
  margin: 1em 2em;
}








table.table02 {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 14px;
}
table.table02 th {
  width: 22%;
  background: #f4f3e9;
  border: 1px solid #ccc;
  box-sizing: border-box;
  padding: 15px;
  vertical-align: middle;
  font-weight: bold;
  text-align: center;
}
table.table02 td {
  background: #fff;
  border: 1px solid #ccc;
  box-sizing: border-box;
  padding: 15px;
  vertical-align: top;
  text-align: left;
}
@media all and (max-width: 767px) {
  table.table02 th, table.table02 td {
    display: block;
    width: 100%;
    border-bottom: none;
  }
  table.table02 tr:last-child td:last-child {
    border-bottom: 1px solid #ccc;
  }
}






table.keitai_table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 14px;
}
table.keitai_table th {
  width: 22%;
  background: #f4f3e9;
  border: 1px solid #ccc;
  box-sizing: border-box;
  padding: 15px;
  vertical-align: middle;
  font-weight: bold;
  text-align: center;
}
table.keitai_table td {
  background: #fff;
  border: 1px solid #ccc;
  box-sizing: border-box;
  padding: 15px;
  vertical-align: top;
  text-align: left;
}
@media all and (max-width: 767px) {
  table.keitai_table th, table.keitai_table td {
    display: block;
    width: 100%;
    border-bottom: none;
  }
  table.keitai_table tr:last-child td:last-child {
    border-bottom: 1px solid #ccc;
  }
}





/*お客様の声*/
.questionnaire{
  display: flex;
  gap: 20px;
  background-color: #6fc6f8;
  padding: 20px;
  border-radius: 10px;
  flex-wrap: wrap
}
.questionnaire dl{
  background-color: #FFF;
  border: solid 5px #0e354c;
  margin: 0;
}


.questionnaire dl dt{
  background-color: #d5dfc2;
  padding: 0.2em 1em;
}
.questionnaire dl dd{
  padding: 0.2em 1em;
  margin: 0;
}
.questionnaire div{
  max-width: 300px;
}




.clean-menu{
  border: solid #00a4ff 3px;
  border-radius: 8px;
  background-color: #eff9ff;
}
.clean-menu h4{
  font-size: 24px;
  background-color: #00a4ff;
  color: #FFF;
  margin: 0;
  padding: 0 0.5em;
}
.numeral{
  font-size: 32px;
  font-weight: bold;
}
.price{
  font-size: 20px;
}
.price-caution{
  text-align: right;
}



