@charset "utf-8";
/*-------------------------------------*/
/*	sec00	*/
/*-------------------------------------*/
#sec00 .caption{
 text-align: center;
 font-size: 2.6rem;
 color: #00214A;
 font-weight: 700;
 line-height: 2;
 margin-bottom: 40px;
}

.cta{
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
}
.cta h2{
  font-size: 4.5rem;
  text-align: center;
  font-weight: 900;
  margin-bottom: 40px;
  color: #00214A;
  position: relative;
  display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
  line-height: 1.5;
}
.cta h2::before,
.cta h2::after {
	content: '';
	width: 3px;
	height: 40px;
	background-color: #00214A;
}

.cta h2::before {
	margin-right: 30px;
	transform: rotate(-35deg)
}
.cta h2::after {
	margin-left: 30px;
	transform: rotate(35deg)
}
a.bt_contact{
  background-color: hsl(148, 100%, 29%);
  border: 2px solid #000000;
  color: #FFFFFF;
  font-size: 3.6rem;
  font-weight: 700;
  padding: 0.5em 80px;
  border-radius: 50px;
  line-height: 1.5;
  box-shadow: 0 0.3em 0 #000000;
  display: inline-block;
  position: relative;
  animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
}
a.bt_contact::before{
  content: "\f0d7";
  position:absolute;
  top:50%;
  right:25px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index:1;
  font-family: FontAwesome;
}
a.bt_contact:hover{
  transform: translateY(0.2em);
  box-shadow: 0 0.1em 0 #000000;
}
@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1.0);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}
@media screen and (max-width: 1360px) {}
@media screen and (max-width: 991px) {}
@media screen and (max-width: 768px) {
  #sec00 .caption{
    font-size: 1.6rem;
    margin-bottom: 20px;
   }
   
   .cta{
     background-color: #FFFFFF;
     padding: 40px;
     border-radius: 20px;
   }
   .cta h2{
     font-size: 2.4rem;
     margin-bottom: 20px;

   }
   .cta h2::before,
   .cta h2::after {
     content: '';
     width: 3px;
     height: 40px;
     background-color: #00214A;
   }
   
   .cta h2::before {
     margin-right: 15px;
     transform: rotate(-35deg)
   }
   .cta h2::after {
     margin-left: 15px;
     transform: rotate(35deg)
   }
   a.bt_contact{
     font-size: 2.4rem;
     font-weight: 700;
     padding: 0.5em 50px;
   }
}
@media screen and (max-width: 550px) {
  .cta{
    background-color: #FFFFFF;
    padding: 40px 20px;
  }
}
/*-------------------------------------*/
/*	sec01	*/
/*-------------------------------------*/
.chef_list{
  display: flex;
  flex-wrap: wrap;
  gap: 20px 20px;
  justify-content: space-between;
}
.chef_box{
  width: calc(100% / 2 - 20px);
 background-color: #FFFFFF;
 border: 2px solid #00214A;
 border-radius: 20px;
 padding: 40px;
 margin-bottom: 40px;
}
.chef_box h3{
  text-align: center;
  margin-bottom: 20px;
 }
 .chef_box dl{
  display: flex;
  flex-direction: row-reverse;
  margin-bottom: 20px;
  justify-content: space-between;
  align-items: center;
 }
 .chef_box dl dt{
width: 45%;
 }
 .chef_box dl dd{
  width: 50%;
  text-align: center;
 }
 .chef_box dl dd p {
  font-size: 2.8rem;
  line-height: 1;
  margin-top: 10px;
 }
 .chef_box dl dd p span{
  display: block;
 }
 .chef_box dl dd p .type{
  font-size: 2.0rem;
  margin: 10px 0;
 }
 .chef_box dl dd p .name{
  font-size: 3.4rem;
  font-weight: 700;
 }
 .chef_box p.caption {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  margin-bottom: 20px;
 }
 .chef_box .menu {
  padding: 20px;
  background-color: #F8F8F8;
 }
 .chef_box .menu h4{
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 10px;
 }
 .chef_box .menu p{
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
 }
 .detail_box{
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
 }
 .detail_box dl{
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  color:#00214A;
 }
 .detail_box dl dt{
  width: 15%;
  font-size: 2.4rem;
  margin-bottom: 10px;
 }
 .detail_box dl dd{
  width: 85%;
  margin-bottom: 10px;
  font-size: 2.4rem;
  padding-left: 20px;
 }
 .detail_box dl dt:last-of-type,.detail_box dl dd:last-of-type{
 margin-bottom: 0;
 }
 .detail_box dl dd a{
  color:#00214A;
  font-size: 1.8rem;
  text-decoration: underline;
 }
 .detail_box dl dd span{
  font-size: 1.8rem;
  font-weight: 500;
 }
@media screen and (max-width: 991px) {
  .chef_list{
    flex-direction: column;
  }
  .chef_box{
    max-width: 500px;
    width: 100%;
    margin: 0 auto 40px auto;
  }
}
@media screen and (max-width: 768px) {
  .chef_box dl{
    margin-bottom: 20px;
   }
   .chef_box dl dt{
  width: 50%;
   }
   .chef_box dl dd{
    width: 48%;
    text-align: center;
   }
   .chef_box dl dd p {
    font-size: 1.8rem;
    margin-top: 10px;
   }
 
   .chef_box dl dd p .type{
    font-size: 1.4rem;
    margin: 10px 0;
   }
   .chef_box dl dd p .name{
    font-size: 2.4rem;
    font-weight: 700;
   }
   .chef_box .menu h4{
    font-size: 2.0rem;
   }
   .detail_box dl{
    flex-direction: column;
   }
   .detail_box dl dt{
    width: 100%;
    font-size: 1.8rem;
    margin-bottom: 5px;
    background-color: #ececec;
    padding: 5px;
   }
   .detail_box dl dd{
    width: 100%;
    font-size: 1.8rem;
    padding-left: 0;
   }
   .detail_box dl dt:last-of-type{
    margin-bottom: 5px;
    }
.detail_box dl dd:last-of-type{
   margin-bottom: 0;
   }
   .detail_box dl dd a{
    font-size: 1.4rem;
   }
   .detail_box dl dd span{
    font-size: 1.4rem;
   }
}
@media screen and (max-width: 550px) {
  .chef_box{
   padding: 20px;
  }
  .detail_box{
    padding: 20px;
   }
}
/*-------------------------------------*/
/*	sec02	*/
/*-------------------------------------*/
#sec02{
  background-color: #D8EEF2;
  background-image: url(../images/bg.png);
}
.schedule_box{
  background-color: #FFFFFF;
  border: 2px solid #00214A;
  border-radius: 20px;
  padding: 40px;
  max-width: 750px;
  margin: 0 auto;
 }
 .schedule_list{
  border-bottom: 2px dotted #00214A;
  padding-bottom: 20px;
  padding-top: 20px;
 }
 .schedule_list li:first-child{
  display: flex;
 }
 .schedule_list li:first-child span{
 width: 50%;
 }
 .schedule_list li .txt{
  font-weight: 700;
  font-size: 3.4rem;
  }
  .schedule_list li .hour{
    font-weight: 700;
    font-size: 3.4rem;
    font-family: 'Noto Sans JP', sans-serif;
    }
    .schedule_dtl{
display: flex;
justify-content: space-between;
margin-bottom: 10px;
    }   
    .schedule_dtl li{
width: 48%;
background-color: #F8F8F8;
padding: 20px;
text-align: center;
      } 
      .schedule_dtl li p{
font-weight: 700;
margin-top: 10px;
              }
.schedule_dtl li span{
font-weight: 500;
font-size: 1.4rem;
}       
@media screen and (max-width: 991px) {
}
@media screen and (max-width: 768px) {

   .schedule_list li:first-child span{
   width: 50%;
   }
   .schedule_list li .txt{
    font-size: 2rem;
    }
    .schedule_list li .hour{
      font-size: 2rem;
      }
    }
@media screen and (max-width: 550px) {
  .schedule_box{
    padding: 20px;
   }
}

/*-------------------------------------*/
/*	sec03	*/
/*-------------------------------------*/
#sec03 .inner{
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
}
#sec03 ol {
  counter-reset: number; /*数字をリセット*/
  list-style-type: none; /*数字を一旦消す*/
  padding: 0;
  color: #00214A;
}
#sec03 ol {
  counter-reset: item;
}
#sec03 ol li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 30px;
}
#sec03 ol li:last-child {
  margin-bottom: 0;
}
#sec03 ol li:before {
  counter-increment: item;
  content: counter(item)".";
  position: absolute;
  top: 0;
  left: 0;
  color: #00214A;
font-family: 'Roboto Condensed', sans-serif;
  font-weight: 600;
  text-align: right;
}
#sec03 .inner ul{
  display: flex;
  justify-content: space-between;
  gap: 20px 20px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
#sec03 .inner ul li{
  width: calc(100% / 3 - 20px);
}
#sec03 .inner ul li h3{
  color: #00214A;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 2.8rem;
}
#sec03 .inner ul li span{
  font-size: 1.2rem;
}
@media screen and (max-width: 1360px) {}
@media screen and (max-width: 991px) {}
@media screen and (max-width: 768px) {
  #sec03 .inner ul{
   flex-direction: column;
  }
  #sec03 .inner ul li{
    width: 100%;
    text-align: center;
  }
  #sec03 .inner ul li h3{
    font-size: 2.0rem;
  }
}
@media screen and (max-width: 550px) {
  #sec03 .inner{
    padding: 20px;
  }
}

/*-------------------------------------*/
/*	contact	*/
/*-------------------------------------*/
#contact{
  background-color: #FFFFFF;
}
#contact h2{
  background-color: #2D2D2D;
  padding: 20px;
  text-align: center;
  font-weight: 700;
  font-size: 4.8rem;
  color: #FFFFFF;
}
#contact h3{
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: 20px;
  padding-left: 20px;
  border-left: 3px solid #00214A;
}
.privacy_box {
  border: 1px solid #000000;
}
.privacy_inner {
  width: auto;
  height: 200px;
  overflow-y: scroll;
  padding: 22px;
font-size:1.4rem;
}
@media screen and (max-width: 1360px) {}
@media screen and (max-width: 991px) {}
@media screen and (max-width: 768px) {
  #contact h2{
    font-size: 3rem;
  }
}
@media screen and (max-width: 550px) {}

/*----------------------------------------
	共通
-----------------------------------------*/
.ttl {
  margin-bottom: 60px;
  text-align: center;
  position: relative;
  font-size: 5.8rem;
  font-weight: 900;
  color: #00214A;
}
.ttl::before {
  content: "";
  width: 150px;
  height: 10px;
  background-image: url(../images/bg_ttl.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);

}
a.bt_base {
  width: 100%;
  max-width: 250px;
  position: relative;
  overflow: hidden;
  display: inline-block;
  outline: none;
  transition: ease .2s;
  padding: 1em 1.5em;
  line-height: 1;
  text-decoration: none !important;
  color: #FFFFFF !important;
  font-size: 1.8rem;
	  background:#00214A;
	border: 3px solid #00214A;
	border-radius: 50px;
	text-align: center;
}
a.bt_base:hover {
  opacity: 1 !important;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); 
 background-color: #FFFFFF;
  transform: translateY(2px);
  color: #00214A !important;
}
a.bt_base::before{
  content: "\f105";
  position:absolute;
  top:50%;
  right:8px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index:1;
  font-family: FontAwesome;
}
/*2列レイアウト*/
.col-2_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 20px;
  justify-content: space-between;
}
.col-2_list::after {
  content: "";
  display: block;
  width: calc(100% / 2 - 20px);
}
.col-2_list .col_box {
  width: calc(100% / 2 - 20px);
}
/*3列*/
.col-3_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 20px;
  justify-content: space-between;
}
.col-3_list::after {
  content: "";
  display: block;
  width: calc(100% / 3 - 20px);
}
.col-3_list .col_box {
  width: calc(100% / 3 - 20px);
}
@media(max-width: 768px) {
  .ttl {
    margin-bottom: 60px;
    font-size: 3.0rem;
  }
  .col_box {
    margin: 0 auto;
  }
  /*3列*/
  .col-2_list, .col-3_list {
    gap: 10px 10px;
    flex-direction: column;
  }
  .col-2_list .col_box, .col-3_list .col_box {
    width: 100%;
    max-width: 400px;
  }
}
@media(max-width: 550px) {

}