html{
  scroll-behavior: smooth;
}

body{
   font-family: 'Meiryo',"ヒラギノ角ゴ Pro W3","ＭＳ Ｐゴシック","Osaka", sans-serif;
}
section{
margin:8% auto 0;
}
main{
   padding-top:154px;
}
.small{
font-size:40%;
}
header{
  background:#fff;
  width:100%;
  height:auto;
  z-index:9999;
    position: fixed;
    top: 0;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header{
   width:1200px;
   margin:1% auto ;
}
header h1{
  width:300px;
  display:inline-block;
}
header h1 img{
  width:100%;
}
p{
margin:2% auto;
}
.gnavi{
   width:890px;
   text-align:right;
   display:inline-block;
   vertical-align:top;
   margin-top:25px;
}
.gnavi ul{
  display: flex;
  /*justify-content: space-between;*/
}
.gnavi ul li{
  list-style-type: none;
  background-color: #fff;
  color: #000;
  flex-grow: 1;
  text-align: center;
}
.header li + li, .footer li + li {
  border-left: 1px solid #000;
}

/*menu*/
.menu{
    height: 20px;
    position: fixed;
    right: 20px;
    top: 10px;
    width: 30px;
    z-index: 99999;
    display:none;
}
.menu__line{
    background: #444;
    display: block;
    height: 2px;
    position: absolute;
    transition:transform .3s;
    width: 100%;
}
.menu__line--center{
    top: 9px;
}
.menu__line--bottom{
    bottom: 0;
}
.menu__line--top.active{
    top: 8px;
    transform: rotate(45deg);
}
.menu__line--center.active{
    transform:scaleX(0);
}
.menu__line--bottom.active{
    bottom: 10px;
    transform: rotate(135deg);
}
/*gnav*/
.gnav{
    background: rgba(97,183,226,0.9);
    display: none;
    height: 100%;
    position: fixed;
    top:0;
    width: 100%;
    z-index: 99998;
}
.gnav__wrap{
    align-items:center;
    display: flex;
    height: 100%;
    justify-content: center;
    position: absolute;
    width: 100%;
}
.gnav__menu li{
    margin: 40px 0;
}
.gnav__menu li a{
    color: #fff;
    font-size: 1em;
    letter-spacing: 15;
    line-height:1.5;
    font-weight: bold;
    padding: 0px;
    text-decoration: none;
    transition: .5s;
}
.gnav__menu li a:hover{
    color: #666;
}

footer{
    width:100%;
    background:#97d1ee;
    text-align:center;
}
.footer{
    width:1200px;
    margin:5% auto 0;
    padding:5% 0;
}
.footer ul{
  display: flex;
  /*justify-content: space-between;*/
}
.footer ul li{
  list-style-type: none;
  color: #000;
  flex-grow: 1;
  text-align: center;
}
.footer_wrap {
    max-width: 1200px;
    margin: 0 auto ;
}
div#footer {
    background: #97d1ee;
    text-align: center;
    padding: 2% 0;
}
.fmenu_wrap {
    width: 22.5%;
    display: inline-block;
    vertical-align: top;
    margin: 0 1%;
}
.fmenu_wrap h3 {
    text-align: left;
    font-size: 1em;
    color: #fff;
}
.fmenu_wrap ul li {
    display: block;
    border: none;
    text-align: left;
    line-height: 2;
    color: #fff;
}
.fmenu_wrap li a {
    color: #fff;
}
.flogo {
    width: 90%;
    margin-bottom: 10%;
}
.flogo img {
    width: 100%;
}
.fmenu_wrap .sns_area {
    margin: 0;
}
.sns_area {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 200px;
}
div#footer .credit {
    font-size: 0.5em;
    padding-top: 0;
    color:#fff;
}
/*
li + li {
  border-left: 1px solid #000;
}*/
.credit {
    font-size: 0.5em;
    padding-top: 3%;
}

.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes move-forever {
  0% {
   transform: translate3d(-90px,0,0);
  }
  100% {
    transform: translate3d(85px,0,0);
  }
}


.pagetop{
    display: none;
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index:99999;
}
.pagetop a{
    display: block;
    font-size: 0;
    width: 50px;
    height: 50px;
    text-align: center;
    background: #0072bf;
    border-radius: 50%;
    line-height: 50px;
}
.pagetop a i{
    font-size: 20px;
    color:#fff;
    line-height: 50px;
}



.top_slide{
background:#f3f0ea;
width: 100%;
height: 100vh;
}
.top_slide{
display:block;
}
.loop_wrap {
  display: flex;
  width: 100%;
  height: 500px;
  overflow: hidden;
  padding-top:80px;
}

.loop_wrap img {
  width: auto;
  height: 100%;

}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.loop_wrap img:first-child {
  animation: loop 100s -50s linear infinite;
}

.loop_wrap img:last-child {
  animation: loop2 100s linear infinite;
}
.content_wrap{
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    z-index: 1000;
    transform: translate(-50%, -50%);
}
.content_wrap h2{
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    z-index: 1000;
    transform: translate(-50%, -50%);
    font-size:1.4em;
    font-weight:700;
    line-height:1.5;
    letter-spacing:3.2;
    width:100%;
}
.circle-1 {
    width: 340px;
  height: 340px;
  position: relative;
  background: #fff;
  border-radius: 50% 50% 50% 70%/50% 50% 70% 60%;
  animation: border-animation 6s infinite linear;
}
/* Animation */
@keyframes border-animation {
  to { transform: rotate(360deg); }
}

.scroll{
    position:relative;
    margin:0 auto;
    text-align:center;
    top:60px;
}
.scroll a {
  padding-top: 60px;
  text-decoration:none;
}
.scroll a span {
    position: absolute;
    top: 80%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin-left: -12px;
    border-left: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: sdb 2s infinite;
    animation: sdb 2s infinite;
    box-sizing: border-box;
}

article{
    max-width:1200px;
    margin:5% auto;
    text-align:center;
}
article img{
   width:100%;
}
article h2{
   margin:0 auto;
   text-align:center;
   font-size:2em;
   font-weight:bold;
   color:#2c328e;
}
h4{
   font-size:1.3em;
   font-weight:bold;
   letter-spacing:2;
   margin:2% auto;
}
.campaign h4::before{
content: '＼';
}

.campaign h4::after{
    content: '／';
}

b {
    font-weight: bold;
    font-size: 1.1em;
}
.pl5{
    padding-left: 5%;
}
.bit{
    font-size: 1.2em;
    font-weight: 700;
}
.campaign{
   padding:3% 0;
   margin:5% auto;
   border-radius:20px;
   background:#f3f1be;
   line-height:2;
}
.date{
   font-size:5.5em;
   font-weight:100;
   font-family:"Helvetica Neue","Helvetica","Arial",sans-serif;
   margin:2% auto;
   text-align:center;
   color:#0072bf;
}
.catch{
   font-size:2.7em;
   font-weight:100;
   font-family:"Helvetica Neue","Helvetica","Arial",sans-serif;
   margin:0% auto;
   text-align:center;
   color:#0072bf;
}
.catch span{
   font-size:2.5em;
   font-weight:700;
}
.midashi{
   font-size:2em;
   font-weight:700;
   line-height:1.5;
   text-align:center;
   color:#b6973b;
   margin-bottom:2%;
}
.column-1{
   width:98%;
   vertical-align:top;
   margin:2% auto;
   padding:0;
   line-height:2;
}
.column-2{
   display:inline-block;
   width:44.5%;
   vertical-align:top;
   margin:2%;
   padding:0;
   line-height:2;
   text-align:left;
}
.column-1 iframe{
   width:100%;
   height:350px;
}
.column-3{
   display:inline-block;
   width:29%;
   vertical-align:top;
   margin:2%;
   padding:0;
   line-height:2;
   text-align:left;
}
.column-4{
   display:inline-block;
   width:20.5%;
   vertical-align:top;
   margin:2%;
   padding:0;
   line-height:2;
   text-align:left;
}
.column-8{
   display:block;
   max-width:800px;
   vertical-align:top;
   margin:2% auto;
   padding:0;
   line-height:2;
   text-align:center;
}
h3{
   font-size:1.5em;
   line-height:1.5;
   font-weight:700;
   margin:0 auto 1%;
   text-align:center;
   color:#656ab3;
   /*color:#2c328e;*/
}
.member{
   padding:5% 0;
   margin:2% auto;
   border-radius:20px;
   border:3px solid #81b5e7;
   line-height:2;
   text-align:center;
}
.qrcode{
   width:40%;
   margin:2% auto;
   padding:3%;
   background:#fff;
   border-radius:50px;
}
.photo{
   background:#fff;
   border-radius:10px;
   padding:4%;
   text-align:center;
}
.circle{
   background:#fff;
   border-radius:100px;
   width:230px;
   height:230px;
   font-size:0.8em;

}
.circle div{
   margin:0 auto;
   position:relative;
     top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
     text-align:center;
}
.point{
   background:#FFFF99;
   border-radius:20px;
   font-size:1.2em;
   font-weight:700;
   padding:3%;
   margin:0 auto 5%;
}
.under {
    background: linear-gradient(transparent 50%, #FFFF99 50%);
}
.btn{
   background:#0072bf;
   padding:1%;
   border-radius:10px;
   text-align:center;
   font-size:0.9em;
   color:#fff;
}

.js-animation {
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition: all 1s;
}
.js-animation.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.company {
    max-width: 800px;
    border-top: 1px solid #d8c066;
    border-right: 1px solid #d8c066;
    border-spacing: 0;
    margin: 0 auto;
}
.company th, .company td {
    border-bottom: 1px solid #d8c066;
    border-left: 1px solid #d8c066;
    text-align: left;
    vertical-align: middle;
    padding: 15px;
}
.pic-clean {
    float: left;
    padding-right: 10px;
    width: 100px;
}
.beige {
    color: #d8c066;
}
.price {
    font-size: 1.6em;
    line-height: 1;
    font-weight: bold;
    margin: 0;
    padding: 0;
}
.price_list{
   width:100%;
   margin:5% auto;
}
.price_list dl{
   width:100%;
        display: flex;
        flex-wrap: wrap;
	border-top: 1px solid #ddd;
	line-height:2;
}
.price_list dt, .price_list dd{
    box-sizing: border-box;
    padding:3%;
            display: flex;
        flex-direction: column;
        justify-content: center;
}

.price_list dt{
   width:15%;
        border: 1px solid #ddd;
	border-top: none;
	text-align:center;
	border-right: none;

}
.price_list dd.ditem{
   width:65%;
        border: 1px solid #ddd;
	border-top: none;
	border-left: none;
	text-align:left;
}
.price_list dd.dprice{
   width:20%;
        border: 1px solid #ddd;
	border-top: none;
	border-left: none;
   overflow:hidden;
}
.price_list dt img{
    width: 90px;
    text-align:center;
}

.price_shipping{
   max-width:400px;
   margin-top:3%;

}

.company_list dl{
   width:100%;
        display: flex;
        flex-wrap: wrap;
	border-top: 1px solid #ddd;
	line-height:2;
}
.company_list dt, .company_list dd{
    box-sizing: border-box;
    padding:3%;
            display: flex;
        flex-direction: column;
        justify-content: center;
}

.company_list dt{
   width:30%;
        border: 1px solid #ddd;
	border-top: none;
	text-align:center;
	border-right: none;

}
.company_list dd{
   width:70%;
        border: 1px solid #ddd;
	border-top: none;
	text-align:center;
}

.cat-thum{
    display:block;
   width:20.5%;
   vertical-align:top;
   margin:2% auto;
   padding:0;
   line-height:2;
    align:center;
}
.little{
   width:60%;
   margin:0 auto;
}
.sponly{
    display:none;
}


.about{
   text-align:left;
   line-height:2;
   margin:5% auto ;
   max-width:1000px;
}

.kazari{
   font-size:1.8em;
  padding: 10px 0;
  margin: 20px auto;
  width: 95%;
  border-top: none;
  border-bottom: none;
  background-size: 45px 45px;
  background-repeat: no-repeat;
  background-position: center top;
  padding: 40px 0 0 0;
}
.mb1{
  background-image: url(/public/img/makabay01.jpg);
}
.mb2{
  background-image: url(/public/img/makabay03.jpg);
}
.mb3{
  background-image: url(/public/img/makabay02.jpg);
}

.bg-gray{
   background:#eee;
   padding:0 0 5%;
   margin:0;
}
.bg-gray h4::before, .bg-gray h4::after{
  content:none;
}
.bg-gray h4{
color:rgb(101, 106, 179);
}
.bg-gray p{
  font-size:0.9em;
  line-height: 1.7;
}
.flow_num {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-weight: bold;
  color: white;
  background-color: #3498db;
  border-radius: 50%;
  margin: 0 auto 5%;
}

.ttl{
   font-size:1.2em;
   font-weight:700;
   margin-top:5%;
}
.mb5{
   margin-bottom:3%;
}

.balloon1 {
  position: relative;
  margin: 5% auto;
  padding: 7px 10px;
  width: 80%;
  background: #fff;
  border-radius: 15px;
}

.balloon1:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #fff;
}

.balloon1 p {
  margin: 0;
  padding: 0;
  font-size:1.2em;
  color:#d8c066;
  text-align:center;
  font-weight:700;
  line-height:1.2;
}
.balloon1 span {
    font-size: 0.65em;
    color: #000;
    font-weight: normal;
}
.about .campaign h4{
   font-size:1.2em;
}

/*-----
form
-----*/

h2.form_line {
    padding: 3%;
    background: #2c328e;
    color: #fff;
}

.form_lead{
    width:100%;
    text-align:center;
    margin-bottom:3%;
}
.form-title {
    display: inline-block;
    width: 20%;
    vertical-align: top;
    margin-right:2%;
}
.form-entry {
    display: inline-block;
    width: 75%;
    vertical-align: top;
    margin-bottom:5%;
}
.formcheck .form-entry {
    display: inline-block;
    width: 70%;
    vertical-align: top;
    background:#eee;
    padding:2%;
}
.form-entry .form-field {
    width: 96%;
    /* max-width: 400px; */
    padding: 2%;
    border-radius: 5px;
    border: 1px solid #ccc;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-entry select {
    padding: 2%;
    border-radius: 5px;
    border: 1px solid #ccc;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.selectWrap{
  width: 50%;
  position: relative;
  display:inline-block;
}
.selectWrap select{
  width: 100%;
  position: relative;
  padding:4%;
}
.selectWrap::after {
  content: '';
  width: 6px;
  height: 6px;
  border: 0px;
  border-bottom: solid 2px #b4b3b3;
  border-right: solid 2px #b4b3b3;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -4px;
}
select::-ms-expand {
    display: none;
}
.cashcard{
  width:290px;
}
.attention{
  width:90%;
  padding:5%;
  background:#eee;
  border-radius:20px;
}
.attentionmark{
  margin:0 auto 1%;
  text-align:center;
  font-size:1.2em;
  font-weight:700;
}
.linebtn {
    width: 85%;
    margin: 0 auto;
}

.submit-container {
    width: 100%;
    text-align: center;
}
.submit-button{
   background:#0072bf;
    padding: 5%;
    margin: 5% auto;
    border-radius: 10px;
    text-align: center;
    /* font-size: 0.9em; */
    color: #fff;
    border: none;
    font-size: 1.2em;
    width:75%;
}
.formconfirm .submit-button{
   background:#0072bf;
    padding: 5%;
    margin: 3%;
    border-radius: 10px;
    text-align: center;
    /* font-size: 0.9em; */
    color: #fff;
    border: none;
    font-size: 1.2em;
    width:40%;
    display:inline-block;
}
.sub-button{
   background:#00bf72;
    padding: 3%;
    margin: 3% auto;
    border-radius: 10px;
    text-align: center;
    /* font-size: 0.9em; */
    color: #fff;
    border: none;
    font-size: 1.0em;
    width:68%;
    line-height:1.5;
}
.sub-button a{
    color: #fff;
}

.btn_area {
    max-width: 500px;
    margin: 3% auto;
}
.column-2 .campaign{
    text-align:center;
}
.member_point{

    width: 90%;
    margin: 1% auto;
    border-top: 1px solid #ccc;
    padding-top: 2%;
    text-align: center;
    display: block;
}
.member_point h3{
    text-align:left;
    font-size:1.2em;
}
.mpl{
   display:inline-block;
   width:17%;
   vertical-align:top;
   margin-right:1%;
}
.mpr{
   display:inline-block;
   width:80%;
   vertical-align:top;
   text-align: left;
}
.member_point img{
    width:100%;
}

.note {
  position: relative;
  padding-left:5px;
  }
.note::after {
  content: '';
  display: block;
  position: absolute;
  top: .5em;
  left: -1em;
  width: 10px;
  height: 5px;
  border-left: 2px solid #0072bf;
  border-bottom: 2px solid #0072bf;
  transform: rotate(-45deg);
}
input[type="submit"]{
    -webkit-appearance: none;
}
.flexbox{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.faq_wrap{
  max-width:680px;
  margin:0 auto;
  }
  .faq_wrap h4{
    font-size: 1.1em;
    margin:0;
  }
  .faq_wrap h4::before, .faq_wrap h4::after{
    content:none;
  }
  .faq_wrap .accordion_title h4{
  text-align:left;
  }
  .accordion {
    margin: 0 auto;
    /*max-width: 100%;*/
    }
    .accordion_toggle {
    display: none;
    }
    .accordion_option {
    position: relative;
    margin-bottom: 1em;
    }
    .accordion_title,
    .accordion_content {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.3s;
    }
    .accordion_title {
    border: solid 1px #ccc;
    padding: 1em;
    display: block;
    color: #333;
    font-size: 0.8em;
    }
    .accordion_title::after,
    .accordion_title::before {
    content: "";
    position: absolute;
    right: 1.25em;
    top: 1.25em;
    width: 2px;
    height: 0.75em;
    background-color: #999;
    transition: all 0.3s;
    }
    .accordion_title::after {
    transform: rotate(90deg);
    }
    
    .recruit_none .accordion_title::after,
    .recruit_none .accordion_title::before {
    content: none;
    }
    
    .accordion_content {
    max-height: 0;
    overflow: hidden;
    text-align:left;
    }
    .accordion_content p {
    margin: 0;
    padding: 0.5em 1em 1em;
    font-size: 0.9em;
    line-height: 1.5;
    }
    .accordion_toggle:checked + .accordion_title + .accordion_content {
    max-height: 1600px;
    transition: all 1.5s;
    }
    .accordion_toggle:checked + .accordion_title::before {
    transform: rotate(90deg) !important;
    }
    .laundry_wrap h3{
      font-size: 1.8em;
      line-height: 1;
      background: #000;
      padding: 3% 0;
      margin: 0 auto;
      width: 100%;
      color: #fff;
    }
    .cafe_wrap h3{
      font-size: 1.8em;
      line-height: 1;
      background: #302222;
      padding: 3% 0;
      margin: 0 auto;
      width: 100%;
      color: #fff;
    }
    .laundry_wrap h4, .cafe_wrap h4{
      font-size: 3em;
    text-align: center;
    margin-top: 5%;
    }

    .laundry_wrap .caption, .cafe_wrap .caption{
      font-size:0.9em;
      line-height: 1.5;
    }
    .machine_wrap, .beforecheck_wrap, .layout_wrap{
      text-align:left;
    }

    .machine_wrap dl{
      display: flex;
      border-bottom:1px solid #ddd ;
      padding:2% 0;
    }
    .machine_wrap dt{
      width:30%;
      font-weight:bold;
      font-size:1em;
    }
    .machine_wrap dd{
      width:20%;
      font-size:0.8em;
      line-height:2;
    }
    .machine_wrap dd.spec_price{
      width:15%;
      font-weight:bold;
      font-size:1em;
    }
    .machine_wrap .spec_ttl {
      background:#eee;
      font-weight:normal;
      font-size:0.9em;
    }
    .machine_wrap .spec_ttl dd.spec_price, .machine_wrap .spec_ttl dt{
      font-weight:normal;
      font-size:0.9em;
    }
    .beforecheck_wrap dl{
      display: flex;
      border-bottom:1px solid #fff ;
      padding:2% 0;
    }
    .beforecheck_wrap dt{
      width:40%;
      font-weight:bold;
      font-size:1em;
    }
    .beforecheck_wrap dd{
      width:23%;
      font-size:0.8em;
      line-height:2;
    }
    .beforecheck_wrap dd.spec_price{
      width:7%;
      font-weight:bold;
      font-size:1em;
    }
    .beforecheck_wrap .spec_ttl {
      background:#fff;
      font-weight:normal;
      font-size:0.9em;
    }
    .beforecheck_wrap .spec_ttl dd.spec_price, .beforecheck_wrap .spec_ttl dt{
      font-weight:normal;
      font-size:0.9em;
    }
    .layout_wrap {
      max-width:800px;
      margin:0 auto;
    }
    .layout_wrap div{
      display: inline-block;
      width: 48%;
      margin: 0;
      padding: 0;
      vertical-align: middle;
    }
    .layout_wrap div:nth-child(4){
      text-align:center;
    }
    .layout_wrap div img{
      width:80%;
    }
    .layout_wrap ul {
      list-style: none;
      padding: 0;
      counter-reset: list-counter;
  }
  
  .layout_wrap ul li {
      counter-increment: list-counter;
      position: relative;
      
      padding: 2% 0;
      padding-left: 40px; /* 数字とテキストの間隔調整 */
    border-bottom: 1px solid #ddd;
  }

  .layout_wrap ul li::before {
      content: counter(list-counter);
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      background: black;
      color: white;
      width: 24px;
      height: 24px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 14px;
      font-weight: bold;
  }
  .laundry_wrap h5, .cafe_wrap h5{
    font-size:1.6em;
    font-weight:bold;
    text-align: center;
    margin: 10% auto 3%;
  }
  .layout_wrap .caption{
    text-align: center;
    margin: 0 auto 5%;
  }
  .attention_wrap{
    background:#fff;
    border-radius: 20px;
    padding: 3% 10%;
    margin: 5% auto 0;
  }
  .attention_wrap h5{
    font-size:1.6em;
    font-weight:bold;
    text-align: center;
    margin: 0 auto 3%;
  }
  .attention_wrap li, .cafe_wrap li {
    text-align: left;
    padding: 0.5% 0;
    font-size: 0.9em;
}
.attention_wrap ul, .cafe_wrap ul {
  list-style: none;
  padding: 0;
}
.attention_wrap ul li, .cafe_wrap ul li {
  position: relative;
  padding-left: 30px; /* チェックマークとテキストの間隔調整 */
}

.attention_wrap ul li::before {
  content: '\2713'; /* チェックマークのUnicode */
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: rgb(158, 156, 20); /* チェックマークの色 */
  font-size: 18px;
  font-weight: bold;
}
.cafe_wrap ul li::before {
  content: '\2716'; /* チェックマークのUnicode */
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: rgb(124, 21, 21); /* チェックマークの色 */
  font-size: 18px;
  font-weight: bold;
}
.cafemenu_wrap{
  display:inline-block;
  width:46%;
  vertical-align:top;
}
.cafemenu_wrap:nth-child(2), .cafemenu_wrap:nth-child(5){
  margin:0 3% 0 0;
}
.cafemenu_wrap:nth-child(3), .cafemenu_wrap:nth-child(6){
  margin:0 0 0 3%;
}
.cafemenu_wrap dl {
  display: flex;
  border-bottom: 1px solid #cecab4;
  padding: 3% 0;
  font-weight:normal;
font-size:1em;
}
.cafemenu_wrap .spec_ttl {
  background:#cecab4;
  font-weight:bold;
  font-size:0.9em;
}
.cafemenu_wrap dt{
  width:80%;
  text-align:left;
}
.cafemenu_wrap dd{
  width:19%;
  text-align:right;
}
.narrow{
  max-width:800px;
}
.narrow p{
  text-align:left;
}
.eventbnr_wrap {
  position: relative; 
  width: 100%;
  height: 70px;
  background-size: 552px 70px;
}
.eventbnr_wrap a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block; /* aタグをブロック要素にする */
  text-decoration: none; /* 不要な装飾を削除 */
}
.sale {
  background-image: url(/public/img/salebnr.jpg);
  background-repeat: repeat-x;
}
.dairy {
  background-image: url(/public/img/headbnr_usepoint.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-color:#3b7aca;
}

.ranking_wrap {
  position: relative;
   margin:5% auto;
}
.ranking_wrap li {
    position: relative;
    counter-increment: ranking;
    width: calc(100% / 5 - 2%);
}
.ranking_wrap li:after {
    display: block;
    content: counter(ranking);
    z-index: 101;
    position: absolute;
    top: -15px;
    left: -10px;
    color: #000;
    font-size: 1.2em;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
}
.ranking_wrap li p{
  margin: 5% auto;
  font-size: 0.9em;
}
.swiper-wrapper {
margin-top: 3%;
}
.swiper-slide p {
  font-size: 0.9em;
  margin: 5% auto;
}
section#menu {
  padding: 0;
  margin: 0;
}
#about {
  padding-top:0;
}
#about .flexbox {
  margin:5% auto;
}
#about .flexbox div {
  width: calc(100% / 2 - 2%);
}
#about div p{
  line-height: 2;
  text-align: left;
}
#info {
  padding-top:0;
  margin-top:0;
}
#info .flexbox {
  margin:5% auto;
}
#info .flexbox div {
  width: calc(100% / 5 - 2%);
}
#info .flexbox div h3{
  font-size:1em;
  color:#000;
  margin:3% auto;
}
#info .flexbox div button {
  padding: 3% 8%;
  background: #0072bf;
  color:#fff;
  display: block;
  border: none;
  border-radius: 20px;
  text-align: center;
  cursor: pointer;
  margin:0 auto;

}
.cat_link{
  padding: 1% 5%;
  background: #fff;
  color: #000;
  display: block;
  border: 1px solid #000;
  border-radius: 50px;
  text-align: center;
  cursor: pointer;
  margin: 0 auto 10%;
  font-weight: bold;
    font-size: 1.2em;
    color: #000;
}
.moreinfo{
margin:2% auto 4%;
width:60%;
border:1px solid #ddd;
padding:3% 5% ;
border-radius:10px;
}

.moreinfo dl {
  display: flex;
  border-bottom: 1px solid #ddd;
  padding: 3% 0;
  font-size: 1em;
  text-align:left;
}
.moreinfo dt {
  width: 30%;
  font-weight: bold;
}
.moreinfo dd {
  width: 66%;
  font-weight: normal;
}
.top_laundry_wrap h2{
  margin-bottom:5%;
}
.top_laundry_wrap h3{
  margin-top:5%;
}
.top_laundry_wrap p{
  line-height:2;
}




/*-----640以下のとき-----*/
@media screen and (max-width: 640px) {
p{
  font-size:0.8em;
  line-height:1.5;
}
.header{
   width:100%;
}
header h1{
  width:260px;
  display:block;
}
.gnavi{
   display:none;
}
.menu{
    display:block;
}
.menu .menu_txt {
    display: block;
    font-size: 0.5em;
    margin: 25px 0 0;
}
.menu .close_txt {
    letter-spacing: 0.01em;
    display: none;
    font-size: 0.5em;
    margin: 25px 0 0;
}
.footer{
    width:100%;
    margin:5% auto 0;
    padding:5% 0;
}
.footer ul{
  display: block;
  /*justify-content: space-between;*/
  border-bottom:1px solid #c7e7f7;
}

.footer ul li{
  list-style-type: none;
  flex-grow: 0;
  text-align: left;
  border-top:1px solid #c7e7f7;
  padding:5%;
}
.footer li + li {
  border-left: none;
}
div#footer {
    margin-top: 15%;
}
.fmenu_wrap {
    width: 100%;
    display: block;
    margin: 5% auto;
}
.fmenu_wrap h3 {
    text-align: center;
}
.fmenu_wrap ul {
    border-bottom: 1px solid #fff;
    margin: 5%;
}
.fmenu_wrap ul li {
    line-height: 1.5;
    border-top: 1px solid #fff;
    position: relative;
}
.fmenu_wrap li a {
    color: #fff;
    display: block;
    position: relative;
    padding: 10px 0px 10px 0px;
    text-indent: 5px;
}
    .fmenu_wrap ul li a:after {
        display: block;
        position: absolute;
        top: 50%;
        right: 10px;
        width: 7px;
        height: 7px;
        margin-top: -4px;
        border-top: solid 2px #fff;
        border-right: solid 2px #fff;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -ms-filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
        filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
        content: "";
    }
.flogo {
    width: 70%;
    margin: 0 auto 5%;
}
.fmenu_wrap .sns_area {
    margin: 0 auto;
}



.eventbnr_wrap {
  height:52px;
}

main {
  padding-top: 100px;
}
.flexslider {
  margin: 0px 0 0 0 !important;
}
.top_slide{
height: 100vh;
display:none;
}

article{
   margin:0 auto;
   width:95%;
}
article h2{
   font-size:1.3em;
}
.campaign{
   padding:3%;
}
.column-2, .column-3, .column-4{
  display:block;
  width:100%;
  margin:5% auto;
  padding:0;
}
.column-2 .column-2{
   display:inline-block;
   width:44.5%;
   vertical-align:top;
   margin:2%;
   padding:0;
   line-height:2;
}
.content_wrap h2{
    font-size:1.2em;
    font-weight:700;
    line-height:1.5;
    letter-spacing:2.2;
    width:100%;
}

.circle-1 {
    width: 260px;
  height: 260px;
}
.column-4 div{
    display:inline-block;
    width:47%;
    margin:1%;
    vertical-align:top;
}
.column-3 div{
    display:inline-block;
    width:47%;
    margin:1%;
    vertical-align:top;
}
.column-8{
   display:block;
   max-width:100%;
}
.cat-thum{
    display: block;
    width: 100%;
    margin: 5% auto;
    padding: 0;
    text-align: center;
}
.cat-thum img{
    width:60%;
    align:center;
}

h3{
   font-size:1em;
   margin:1% auto;
}
h4{
   font-size:0.8em;

}
.date{
   font-size:3.5em;
}
.catch{
   font-size:2.0em;
}
.midashi{
   font-size:1.2em;
   font-weight:700;
   margin:5% 0;
}
/*
.cap{
   margin:0%;
}*/
b {
    font-weight: bold;
    font-size: 0.9em;
}
.point{
   border-radius:10px;
   font-size:1em;
   line-height:1.5;
   font-weight:700;

}
.circle{
   /*border-radius:10px;*/
   width:95% !important;
   height:auto;
   font-size:0.8em;
}
.circle div{
   margin:0 auto;
   position:relative;
     top: 0;
  left: 0;
  transform: translateY(0) translateX(0);
  -webkit- transform: translateY(0) translateX(0);
  width:95%;
}
.photo{
   width:90%;
   margin:0 auto;
   font-size:0.8em;
}
.qrcode{
   padding:8%;
   border-radius:100px;
}
.btn{
   padding:3% 1%;
   font-size:0.7em;
   width:100% !important;
}
.bg-gray h4 {
  font-size:0.9em;
}
.bg-gray p{
  font-size:0.8em;
  line-height: 1.7;
}
.flow_num {
margin-bottom:2%;
}
.pconly{
    display:none;
}
.sponly{
    display:block;
}
.price_list dl{
	border-top: 1px solid #ddd;
	font-size:0.7em;
	line-height:1.6;
}
.price_list dt{
            display: inline-block;


}
.price_list dt{
   width:20%;
	padding-top:5%;
	margin:0 auto;
	text-align:center;
}
.price_list dd.ditem{
   width:60%;
        border: 1px solid #ddd;
	border-top: none /*1px solid #ddd*/;
	border-left: 1px solid #ddd;
	text-align:left;
}
.price_list dd.dprice{
   width:20%;
        border: 1px solid #ddd;
	border-top: none /*1px solid #ddd*/;
	border-left: none;
   overflow:hidden;
}
.price_list dt img{
    width: 50px;
}
.price_list dt, .price_list dd {
    padding: 1%;
}
.kazari{
   font-size:1.4em;
}

.form-title {
    display: block;
    width: 100%;
    vertical-align: top;
    margin-right:0%;
    font-size:0.7em;
}
.form-entry {
    display: block;
    width: 100%;
    vertical-align: top;
    margin-bottom:3%;
    font-size: 0.7em;
    line-height: 1.5;
}
.form-entry p{
    font-size:0.7em;
}
.form-radio {
    line-height:2.2;
}
.form-entry .form-field {
    width: 96%;
    /* max-width: 400px; */
    padding: 4% 2%;
    border-radius: 5px;
    border: 1px solid #ccc;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.member_point{
    width:100%;
    margin:2% auto;
    border-top:1px solid #ccc;
    padding-top:2%;
}
.member_point h3{
    text-align:left;
    font-size:0.8em;
}
.mpl{
   display:inline-block;
   width:33%;
   vertical-align:top;
   margin-right:1%;
}
.mpr{
   display:inline-block;
   width:64%;
   vertical-align:top;
}
.member_point img{
    width:100%;
}
.about .campaign h4{
   font-size:0.8em;
}

.formcheck .form-title {
    display: block;
    width: 100%;
    vertical-align: top;
    margin-right:0%;
    font-size:0.7em;
}
.formcheck .form-entry {
    display: block;
    width: 95%;
    vertical-align: top;
    margin-bottom:3%;
        font-size: 0.7em;
    line-height: 1.5;
    background:#eee;
    padding:2%;
}
.column-1 iframe{
   width:100%;
   height:200px;
}
.flexbox{
    display: block;

}
/*-----
QR稼働用
-----*/
.qr p{
    font-size:1.0em;
    line-height:1.5;
}
.qr .form-entry {
    display: block;
    width: 100%;
    vertical-align: top;
    margin-top:5%;
    margin-bottom:5%;
    font-size: 1.0em;
    line-height: 1.5;
}
.laundry_wrap h3, .cafe_wrap h3{
  font-size:1.4em;
  /*margin-top: 5%;*/
}
.laundry_wrap h4, .cafe_wrap h4{
  font-size: 1.6em;
text-align: center;
margin-top: 15%;
}

.laundry_wrap .caption, .cafe_wrap .caption{
  font-size:0.7em;
}
.machine_wrap, .beforecheck_wrap{
  text-align:left;
}

.machine_wrap dl{
  display: flex;
  border-bottom:1px solid #ddd ;
  padding:2% 0;
}
.machine_wrap dt{
  width:30%;
  font-weight:bold;
  font-size:0.7em;
}
.machine_wrap dd{
  width:20%;
  font-size:0.7em;
  line-height:1.3;
}
.machine_wrap dd.spec_price{
  width:15%;
  font-weight:bold;
  font-size:0.7em;
}
.machine_wrap .spec_ttl {
  background:#eee;
  font-weight:normal;
  font-size:0.7em;
}
.machine_wrap .spec_ttl dd.spec_price, .machine_wrap .spec_ttl dt{
  font-weight:normal;
  font-size:0.7em;
}
.beforecheck_wrap dl{
  display: flex;
  border-bottom:1px solid #fff ;
  padding:2% 0;
}
.beforecheck_wrap dt{
  width:40%;
  font-weight:bold;
  font-size:0.7em;
}
.beforecheck_wrap dd{
  width:23%;
  font-size:0.7em;
  line-height:1.3;
}
.beforecheck_wrap dd.spec_price{
  width:7%;
  font-weight:bold;
  font-size:0.7em;
}
.beforecheck_wrap .spec_ttl {
  background:#fff;
  font-weight:normal;
  font-size:0.7em;
}
.beforecheck_wrap .spec_ttl dd.spec_price, .beforecheck_wrap .spec_ttl dt{
  font-weight:normal;
  font-size:0.7em;
}
.layout_wrap ul li {
  padding-left: 20px;
  font-size: 0.7em;
}

.layout_wrap ul li::before {
  width: 15px;
  height: 15px;
  font-size: 10px;
}
.layout_wrap div img {
  width: 100%;
}
.laundry_wrap h5, .cafe_wrap h5{
  font-size:1.1em;
}
.attention_wrap h5{
  font-size:1.1em;
}
.attention_wrap {
  padding: 5%;
}
.attention_wrap li {
  padding: 1.5% 0;
  font-size: 0.7em;
}
.cafemenu_wrap{
  display:block;
  width:90%;
}
.cafemenu_wrap:nth-child(2), .cafemenu_wrap:nth-child(5){
  margin:5% auto 5%;
}
.cafemenu_wrap:nth-child(3), .cafemenu_wrap:nth-child(6){
  margin:0 auto 5%;
}
.cafemenu_wrap .spec_ttl {
  font-size:0.7em;
}
.cafemenu_wrap dl{
font-size:0.7em;
}
.eventbnr_wrap {
  background-size: 100%;
}
.ranking_wrap{
display:flex !important;
flex-wrap: wrap;
justify-content: space-between;
}
.ranking_wrap li{
width: calc(100% / 2 - 2%);
margin-bottom: 5%;
}
.ranking_wrap li:nth-child(n+3) {
  width: calc(100% / 3 - 2%);
}
.ranking_wrap li p{
  margin: 5% auto;
  font-size: 0.7em;
}
.swiper-slide p {
  font-size: 0.7em;
}
article.swiper-area {
  margin-bottom: 10%;
}
.swiper-wrapper {
  margin-top: 10%;
}
section#menu {
  margin: 0 auto 10%;
}
#about .flexbox {
  display:flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#about .flexbox div {
  width: 100%;
  margin-bottom:7%;
}
#info .flexbox {
  display:flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#info .flexbox div {
  width: calc(100% / 2 - 2%);
  margin-bottom:7%;
}
.moreinfo{
  margin:5% auto;
  width:90%;
  border:1px solid #ddd;
  padding:5% 2%;
  border-radius:10px;
  }
  
  .moreinfo dl {
    font-size: 0.7em;
      padding:5% 0%;
  }
  .moreinfo dt {
    width: 35%;
    font-weight: bold;
  }
  .moreinfo dd {
    width: 65%;
    font-weight: normal;
  }
  .top_laundry_wrap p{
    margin-bottom:10%;
  }
  .cat_link{
    margin: 0 auto 15%;
    font-weight: bold;
    font-size: 1em;
    color: #000;
    padding: 2% 10%;
  }
}







/*-----
アンケートフォーム用
-----*/
.anq_wrap{
margin:5% auto;
width:100%;
max-width:500px;

text-align:center;

}
.rate-catch{
    font-size:1em;
    line-height:1.0;
}
.rate-form {
      margin: 0 auto;
    max-width: 250px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.rate-form input[type=radio] {
  display: none;
}
.rate-form label {
  position: relative;
  padding: 0 5px;
  color: #ccc;
  cursor: pointer;
  font-size: 35px;
}
.rate-form label:hover {
  color: #ffcc00;
}
.rate-form label:hover ~ label {
  color: #ffcc00;
}
.rate-form input[type=radio]:checked ~ label {
  color: #ffcc00;
}


.rate-form{
 display: -ms-flex;
 display: -webkit-flex;
 display: -moz-flex;
 display: -o-flex;
 display: flex;

 flex-direction: -ms-row-reverse;
 flex-direction: -webkit-row-reverse;
 flex-direction: -moz-row-reverse;
 flex-direction: -o-row-reverse;
 flex-direction: row-reverse;

}
.rate-form input[type='radio']{
  display: none;
}
.rate-form input[type='radio']{
  display: none;
}
.rate-form label{
  position: relative;
  padding: 0 5px 10px 5px;
  color: #bbb;
  cursor: pointer;
  font-size: 40px;
}

.rate-form label:hover,
.rate-form label:hover ~ label,
.rate-form input[type='radio']:checked ~ label{
  color: #ffcc00;
}
.anq_wrap .form-field{
font-size:1.1em;
}
.sample {
  background: #fff;
  border-radius: 20px;
  padding: 3%;
}
.sample dl {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  padding: 0;
  border-bottom: 1px solid #ddd;
}
.sample dl dt, .sample dl dd {
  text-align: left;
  padding: 5%;
}
.sample dl dt{
  width:20%;
}
.sample dl dd{
  width:30%;
  text-align: right;
}
dl.cal_point {
  background: #ffffa1;
  font-weight:bold;
}
dl.cal_fin {
  background: #eee;
}
@media screen and (max-width:480px) {
.rate-catch{
    font-size:1em;
    line-height:1.0;
}
.sample dl {
  font-size:0.8em;
}
}
.about .form_lead {
  width: 100%;
  text-align: left;
  max-width: 800px;
  margin: 0 auto 3%;
}


.bg_laundry{
    background: url(/public/img/laundry_bg.jpg) no-repeat center center;
}
.bg_cafe{
    background: url(/public/img/cafe_bg.jpg) no-repeat center center;
}
.bg_shop{
    background: url(/public/img/shop_bg.jpg) no-repeat center center;
}
.bg_img {
    background-size: cover;
    height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.bg_img h1 {
    font-size: 3em;
    color: #fff;
    font-weight: bold;
    text-align: center;
}
.slider-thumbnail .swiper-slide {
  opacity: .5;
  transition: opacity .5s;
  width: calc(100% / 6);
}
.slider-thumbnail .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
/* レイアウトのためのスタイル */
.swiper {

}
.swiper-slide img {
  height: auto;
  width: 100%;
}
div#breadcrumb {
    font-size: 0.7em;
    max-width: 1200px;
    width: 95%;
    margin: 1% auto;
}
.shop_top {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.shop_top h1 {
    font-size: 2.2em;
    font-weight: bold;
    color: #2c328e;
}
.intro_wrap {
    max-width: 800px;
    line-height: 2;
    text-align: left;
    margin: 10% auto 5%;
}
.review_please {
    font-weight: bold;
    margin: 0 auto 2%;
    font-size: 1em;
}
.shop_top .swiper-wrapper {
    margin-top: 2%;
}


#news {
    margin-top: 0;
}
.news_wrap {
    margin: 3% auto 8%;
    max-width: 900px;
}
.news_wrap dl {
    border-bottom: 1px solid #ddd;
    padding: 2% 0;
    text-align: left;
    display: flex;
}
.news_wrap dt {
    width: 20%;
}
.news_wrap dd {
    line-height: 1.5;
    width: 80%;
}

@media screen and (max-width: 640px) {
.bg_img {
    height: 30vh;
}    
.bg_img h1 {
    font-size: 2.2em;
}
div#breadcrumb {
    margin: 5% auto;
}
.shop_top .swiper-wrapper {
    margin-top: 3%;
}
.shop_top {
    margin: 0 auto 10%;
}
.shop_top h1 {
    font-size: 1.4em;
}
.review_please {
    margin: 0 auto 5%;
    font-size: 0.7em;
}

.news_wrap dl {
    display: block;
    font-size: 0.8em;
}
.news_wrap dt {
    width: 100%;
    margin-bottom:1.5%;
}
.news_wrap dd {
    width: 100%;
}
}

section#info {
    padding-top: 100px; /* 調整したい高さ（固定ヘッダーの高さ） */
    margin-top: -100px; /* heightと同じ分のネガティブマージン */
}