@charset "UTF-8";
/*
Theme Name: Bowls
Description: Bowlsのサイトです。
Version: 1.0
Author: Y.G
*/
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #333; /* RGB */
  background-color: #F8F7F1;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 1.6em;
  line-height: 2.4rem;
  counter-reset: number 0;
}
.all-wrapper{
  overflow: hidden;
}
a{
  text-decoration: none;
}
a:hover {
  opacity: 0.5;
  transition: all 0.3s;
} 
ul{
  list-style: none;
}
.none {
  display: none;
}
img{
  max-width: 100%;
}
.mv-h1{
  color: #fff;
  font-size: 1.0rem;
}
address{
  font-style: normal;
}
*, *:before, *:after {
  box-sizing: border-box;
}
/*PCtext*/
p{
  font-size: 1.6rem;
  line-height: 2.0;
  margin: 0;
}
@media(max-width:820px){
  p{
    font-size: 1.4rem;
    line-height: 2.2;
  }
}
@media(max-width:599px){
  p{
    font-size: 1.3rem;
    line-height: 2.2;
  }
}
.wrapper{
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 18px;
}
.sec-bottom{
  margin-bottom: 120px;
}
@media(max-width:820px){
  .sec-bottom{
    margin-bottom: 72px;
  }
}
.pc-br{
  display: block;
}
.sp-br{
  display: none;
}
@media(max-width:599px){
  .pc-br{
    display: none;
  }
}
.sp-br{
  display: block;
}
.pc{
  display: block;
}
.sp{
  display: none;
}
@media(max-width:820px){
  .pc{
    display: none;
  }
  .sp{
    display: block;
  }
}/* PC＝パソコンは表示させてタブレット・SPの時に非表示 */

#concept, #scene,#reason,#area,#voice, #faq{
  padding-top: 110px;
  margin-top: -110px;
}

/*header pc*/
#header{
  position: fixed;
  width: 100%;
  z-index:1000;
  top: 0;
  left: 0;
  margin: 0 auto;
  background-color: #F8F7F1;
}
.header-wrapper{
  display: flex;
  max-width: 1200px;
  height:90px;
  padding: 37px 0;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
}
.header-wrapper h1 img{
  width: 70%;
}
.header-nav ul{
  display: flex;
  align-items: center;
  color:#333 ;
}
.header-nav ul li{
  margin-right: 24px;
  font-size: 1.6rem;
}
.header-nav ul li:last-child{
  margin-right: 24px;
}
.header-nav ul li a{
  color: #333;
}
.header-sns{
  display: none;
}
/*header tablet*/
@media(max-width:820px){
  .header-wrapper{
    height: 80px;
    padding-left: 18px;
  }
  .header-wrapper h1 img{
    width: 55%;
  }
  .header-wrapper picture{
    padding-left: 40px;
  }
  .header-nav ul{
  flex-direction:column;
  align-items: unset;
  margin-top: 80px;
  }
  .header-nav ul li{
    margin-right: 24px;
    text-align: left;
    margin-bottom: 24px;
    margin-left: 24px;
    border-bottom: 1px solid #333;
    padding: 0 0 16px;
  }
  /* .header-nav ul li:first-child{
    margin-top: 80px;
  } */
  #toggle {
    position: fixed;
    top: 24px;
    right: 30px;
}
#toggle-box {
    position: relative;
    width: 40px;
    height: 32px;
    cursor: pointer;
}
#toggle-box > span {
  width: 100%;
  height: 1px;
  left: 0;
  display: block;
  background: #333;
  position: absolute;
  transition: transform .3s ease-in-out, top .3s ease, bottom .3s ease;
}
#toggle-box > span:nth-child(1) {
    top: 0;
}
#toggle-box > span:nth-child(2) {
    top: 50%;
    transform: translatey(-50%);
}
#toggle-box > span:nth-child(3) {
  bottom: 0;
}
#toggle {
    z-index: 1000;
}
#main {
    position: relative;  
    z-index: 990;
}
#nav-content {
    z-index: 900;
    overflow: auto;
    width: 50%;
    height: 100%;
    background: #fff;
    color: #333;
    position: fixed;
    top: 0;
    right: 0;
    text-align: center;
    transform: translateX(100%);
    transition:  transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#nav-content ul {
  list-style: none;
}
#nav-content a {
  display: block;
  text-decoration: none;
  transition: opacity .6s ease;
  font-size: 1.4rem;
}
#nav-content a:hover {
  opacity: 0.6;
}
.is-open {
    overflow: hidden;
}
.is-open #toggle-box > span {
    background: #333;
}
.is-open #toggle-box > span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg) translatey(-50%);
}
.is-open #toggle-box > span:nth-child(2) {
  width: 0;
}
.is-open #toggle-box > span:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg) translatey(-50%);
}
.is-open #nav-content {
  z-index: 999;
  transform: translateX(0);
}
.overlay {
  background: rgba(0,0,0,0.5);
  height: 100vh;
}
.sp-instagramicon{
  display: block;
  border-bottom: none;
}
.sp-header-ttl{
  font-size: 1.5rem;
  font-weight: bold;
}
.sp-header-ttlarea{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 8px;
  padding: 0 24px;
}
.sp-header-ttlarea img{
  width: 16px;
  height: 16px;
  margin-left: 20px;
  margin-top: 1px;
}
.sp-header-item{
  text-align: left;
  padding: 0 24px;
}
.sp-header-item address{
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 10px;
}
.sp-header-item a{
  color: #333;
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.sp-header-item p{
  font-size: 1.0rem;
}
.header-sns{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 24px;
}
.header-sns-list{
  display: flex;
  justify-content: end;
  align-items: center;
}
.header-sns-list li{
  width: 24%;
}
}/*header sp*/
@media(max-width:599px){
  .header-wrapper{
    height: 62px;
    margin-top: 8px;
  }
  .header-wrapper img{
    width: 100%;
  }
  .header-wrapper picture{
    padding-left: 0;
  }
  /* #nav-content{
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  } */
  .header-wrapper{
    height: 65px;
    padding: 22px 18px;
  }
  #header{
    height: 72px;
  }
  .header-logo{
    width: 80%;
  }
  #nav-content{
    width: 75%;
  }
  #toggle{
    top: 25px;
  }
  #toggle-box{
    height: 22px;
  }
  .is-open #toggle-box{
   width: 32px;
  }
  .is-open #toggle{
  top:40px;
  right: 15px;
  }
  .header-nav ul li{
    padding: 0 0 8px;
    margin-bottom: 20px;
  }
  .header-sns-text{
    width: 50%;
  }
}/*header sp*/
/* PCフッター */
.footer{
  position: relative;
  z-index: 100000000;
  background: #fff;
  padding: 40px 0 48px;
}
/* .footer-bg{
  width: calc(100vw - 20.83333vw);
  margin-left: auto;
  margin-right: 5.8333vw;
} */
.footer-ttl{
  font-size: 2.0rem;
}
.footer-address{
  margin-bottom: 24px;
}
.footer-days{
  line-height: 1.4;
  font-size: 1.4rem;
  margin-bottom: 24px;
}
.footer-reservation{
  display: inline-block;
  text-align: center;
  width: 215px;
  padding: 4px;
  color: #fff;
  background: #FF6E7D;
  border-radius: 50px;
}
.footer-menu{
  display: flex;
  justify-content: space-between;
}
.footer-list{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-list li{
  margin-right: 24px;
}
.footer-list li:last-child{
  margin-right: 0;
}
.footer-list a{
  color: #333;
}
.sns-area{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: -56px;
  margin-bottom: 56px;
}
.sns-textarea{
  text-align: center;
  background: #E2C174;
  color: #fff;
  padding: 10px 0;
  margin-right: 32px;
  border-radius: 50px;
  width: 30%;
}
.sns-list{
  display: flex;
  align-items: center;
}
.sns-list img{
  width: 48px;
  height: 48px;
}
.copyright{
  font-size: 1.0rem;
  text-align: center;
}
.copyright a{
  color: #333;
}
.sp-footer{
  display: none;
}
@media(max-width:768px){
  .sp-footer{
    display: block;
    background: #fff;
    padding: 32px 0 40px;
  }
  .footer{
    display: none;
  }
  .footer-list{
    display: block;
    margin-bottom:32px;
  }
  .footer-list li{
    margin-right: 0;
    margin-bottom: 16px;
  }
  .footer-list li:last-child{
    margin-bottom: 0;
  }
  .sns-area{
    display: block;
    margin-top: 0;
    margin-bottom: 40px;
  }
  .footer-reservation{
    width: 100%;
    display: flex;
    margin: 0 auto 16px;
    justify-content: center;
    padding: 14px 0;
  }
  .sns-textarea{
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0 auto 16px;
    padding: 14px 0;
  }
  .sns-list{
    justify-content: center;
  }
}
@media(max-width:568px){
  .footer-ttl{
    font-size: 1.8rem;
  }
  .footer-address{
    font-size:1.4rem;
    margin-bottom: 16px;
  }
  .footer-list{
    font-size: 1.4rem;
  }
  .footer-days{
    font-size: 1.2rem;
  }
  .footer-reservation{
    width: 90%;
    padding: 10px 0;
    font-size: 1.4rem;
  }
  .sns-textarea{
    width: 90%;
    padding: 10px 0;
    font-size: 1.4rem;
  }
}
  /* メインビジュアル */
  .mv-imgarea{
    margin-top: 80px;
  }
  @media(max-width:820px){
    .mv-imgarea{
      margin-top: 60px;
    }
  }
  
  /* コンセプト */
  .lunch-jpttl{
    display: flex;
    flex-direction: column;
    text-align: center;
    font-weight: bold;
    font-size: 2.4rem;
    letter-spacing: 0.3rem;
    margin-bottom: 48px;
  }
  .lunch-egttl{
    display: block;
    font-size: 5.6rem;
    margin-top: 16px;
    letter-spacing: 0.3rem;
  }
  .concept-summary{
    text-align: center;
    font-size: 3.2rem;
    line-height: 1.6;
    letter-spacing: 0.3rem;
    margin-bottom: 40px;
  }
  .concept-lead{
    text-align: center;
  }
  /* キャンペーン */
  .campaign-bg{
    background:#FEF2E5 ;
    padding: 40px;
  }
  .campaign-bg h3 {
    color: #EE513D;
    text-align: center;
    font-size: 4.0rem;
    font-weight: bold;
    margin-bottom: 32px;
  }
  .campaign-box{
    background: #ffff;
    padding: 24px 24px 32px;
  }
  .campaign-box p{
    text-align: center;
    margin-bottom: 24px;
  }
  .campaign-collar{
    color: #EE513D;
    font-weight: bold;
  }
  .campaign-list{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .campaign-list li{
    width: 48%;
    margin-right: 4%;
    text-align: center;
  }
  .campaign-list li:last-child{
    margin-right: 0;
  }
  .campaign-list li a{
    display: block;
    padding: 32px 0;
    color: #fff;
    background-image: linear-gradient(0deg, #2DB964, #00AB43);
  }
  .campaign-list li:last-child a{
    background-image: linear-gradient(0deg, #EC8243, #E54A4A);
  }
  @media(max-width:568px){
    .lunch-jpttl{
      font-size: 2.0rem;
    }
    .lunch-egttl{
      font-size: 4.0rem;
      margin-top: 10px;
    }
    .concept-summary{
      font-size: 2.0rem;
      margin-bottom: 24px;
    }
    .concept-lead{
      text-align: left;
    }
  }
  /* 利用シーン */
  .common-list{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .common-list li{
    width: 32%;
    margin-right: 3%;
  }
  .common-list li:last-child{
    margin-right: 0;
  }
  .common-list li h3{
    text-align: center;
    font-weight: normal;
    font-size: 1.8rem;
    margin: 16px 0;
  }
  .common-list li p{
    line-height: 2.4rem;
  }
  @media(max-width:568px){
    .common-list li h3{
      text-align: left;
      font-weight: bold;
    }
  }

  @media(max-width:568px){
    .campaign-bg{
      padding: 24px;
    }
    .campaign-bg h3{
      font-size: 2.0rem;
      padding: 24px;
    }
    .campaign-list{
      display: block;
    }
    .campaign-list li{
      width: 100%;
      margin-right: 0;
      margin-bottom: 16px;
    }
    .campaign-list li:last-child{
      margin-bottom: 0;
    }
    .campaign-list li a{
      font-size: 1.3rem;
      padding: 24px 0;
    }
  }
  /* 選ばれる理由 */
.reason-bg{
  background: #F6F3EC;
  padding:48px 0 72px;
}
.order-wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 64px;
}
.order-imgarea{
  width: 45%;
  margin-right: 5%;
}
.order-textarea{
  width: 50%;
}
.order-step{
  display: block;
  font-size: 2.4rem;
  color:#FA5241;
  margin-bottom: 16px;
}
.order-textarea h4{
  font-size: 3.2rem;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 16px;
}
.order-morebtn{
  font-size: 1.8rem;
  letter-spacing: 0.02rem;
  text-align: center;
  font-weight: 500;
  color: #fff;
  display: block;
  width: 70%;
  margin-top: 32px;
  padding: 20px 0;
  background:#FF8053;
  border-radius: 50px;
}
.order-wrap02{
  flex-direction: row-reverse;
}
.order-wrap02 .order-imgarea{
  margin-right: 0;
  margin-left: 5%;
}
.order-wrap03{
  margin-bottom: 0;
}
@media(max-width:568px){
  .common-list{
    display: block;
  }
  .common-list li{
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
  .reason-bg{
    padding: 48px 0 40px;
  }
}
@media(max-width:599px){
  .order-wrap{
    display: block;
    margin-bottom: 40px;
  }
  .order-imgarea{
    width: 100%;
    margin-right: 0;
    margin-bottom: 24px;
  }
  .order-textarea{
    width: 100%;
  }
  .order-step{
    font-size: 1.3rem;
    margin-bottom: 3px;
  }
  .order-textarea h4{
    font-size: 1.8rem;
  }
  .order-morebtn{
    width: 90%;
    font-size: 1.4rem;
    margin: 32px auto 0;
    padding: 16px 0;
  }
  .order-wrap02 .order-imgarea{
    margin-left: 0;
  }
}
/* お客様の声 */
.voice-bg{
  background: #F6F3EC;
  padding:48px 0 72px;
}
@media(max-width:599px){
  .voice-bg{
    padding: 48px 0 40px;
  }
}


/* 配送エリア */
.area-detail{
  display: flex;
  align-items: center;
}
.faq-seclast{
  margin-bottom: 120px;
}
.faq-ttl{
  font-size: 2.0rem;
  text-align: center;
  color: #fff;
  border-radius: 50px;
  width: 25%;
  background: #FF8053;
  padding: 14px 0;
  margin-bottom: 40px;
}
.q {
  display: flex;
  align-items: center;
  padding-right: 64px;
  font-size: 2.0rem;
  color: #FF8053;
  height: 60px;
  /* padding: 15px 40px 15px 15px; */
  position: relative;
  cursor: pointer;
  border-bottom: 1px solid #555;
}
  .q::before {
    position: absolute;
    content: "";
    display: block;
    width: 10px;
    height: 2px;
    background-color: #333;
    right: 15px;
    top: 50%;
    transform: translate(0, -50%);
  }
  .q::after {
    position: absolute;
    content: "";
    display: block;
    width: 10px;
    height: 2px;
    background-color: #333;
    right: 15px;
    top: 50%;
    transform: translate(0, -50%) rotate(90deg);
  }
  .q span{
    color: #333;
    font-size: 1.6rem;
    /* margin-left: 10px; */
  }
  .q.active::after{
    display: none;
  }
  .a {
    height: 88px;
    display: none;
    padding: 0 15px;
    margin: 24px 0;
    color: #333;
    line-height: 1.7;
  }
  .qa{
    margin-bottom: 24px;
  }
  .qa-last{
    margin-bottom: 0;
  }
  .q1::before{
	counter-increment: number 1; 
  content: "Q" counter(number) ""; 
  display: inline-block;
  color: #FF8053;
  font-size: 1.5rem;
  margin-right: 8px;
  }
  @media(max-width:599px){
    .faq-sec{
      margin-bottom: 72px;
    }
    .q{
      font-size: 1.5rem;
      height: 56px;
    }
    .q span{
      font-size: 1.3rem;
    }
    .a{
      font-size: 1.3rem;
    }
    .qa{
      margin-bottom: 16px;
    }
    .q1-f{
      padding-bottom: 8px;
    }
    .faq-ttl{
      font-size: 1.6rem;
      width: 70%;
      margin: 0 auto 32px;
    }
  }
