@charset "UTF-8";
/* 
//////////////////////////////////////////////////////////////////////////////

index.css
- トップページ

//////////////////////////////////////////////////////////////////////////////
*/
/* 共通
===============================================
=============================================== */
.sec-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
}
@media screen and (min-width: 960px) {
  .sec-top {
    gap: 60px 40px;
    padding: 120px 20px;
  }
}
.sec-top .btn_l {
  min-width: 240px;
}

/* main-visual
===============================================
=============================================== */
.main-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px 0;
}
@media screen and (min-width: 960px) {
  .main-visual {
    padding: 80px 20px 0;
  }
}
.main-visual img {
  width: 100%;
  max-width: 1200px;
  height: auto;
}

/* about
===============================================
=============================================== */
.sec-about {
  max-width: 1200px;
  margin: auto;
}
@media screen and (min-width: 960px) {
  .sec-about {
    display: grid;
    grid-template-columns: 380px 1fr;
    grid-template-rows: max-content max-content 1fr;
    grid-template-areas: "abouttitle aboutimg" "aboutsentence aboutimg" "aboutbtn aboutimg";
    gap: 40px 10px;
  }
}
.sec-about_title {
  flex-grow: 1;
  order: 1;
  grid-area: abouttitle;
}
@media screen and (min-width: 960px) {
  .sec-about_title {
    flex-grow: 0;
  }
}
.sec-about_title-min {
  font-size: 76%;
}
.sec-about_sentence {
  order: 2;
  grid-area: aboutsentence;
}
.sec-about_sentence > * {
  margin-top: 0;
}
.sec-about_sentence > *:last-child {
  margin-bottom: 0;
}
.sec-about_btn {
  order: 4;
  grid-area: aboutbtn;
  width: 100%;
}
.sec-about_btn .btn {
  margin: auto;
}
.sec-about_img {
  order: 3;
  grid-area: aboutimg;
}
@media screen and (min-width: 600px) {
  .sec-about_img {
    max-width: 600px;
  }
}
@media screen and (min-width: 960px) {
  .sec-about_img {
    max-width: max-content;
  }
}

/* news
===============================================
=============================================== */
.sec-news {
  background: rgba(255, 255, 255, 0.3);
}
@media screen and (min-width: 960px) {
  .sec-news {
    display: grid;
    grid-template-columns: 180px 1fr;
    grid-template-rows: max-content 1fr;
    grid-template-areas: "newstitle newslist" "newsbtn newslist";
    gap: 40px 100px;
  }
}
@media screen and (min-width: 1200px) {
  .sec-news {
    padding: 120px calc( (100% - 1200px )/2 + 40px);
  }
}
.sec-news_title {
  flex-grow: 1;
  order: 1;
  grid-area: newstitle;
}
@media screen and (min-width: 960px) {
  .sec-news_title {
    flex-grow: 0;
  }
}
.sec-news_list {
  order: 2;
  grid-area: newslist;
  width: 100%;
}
.sec-news_btn {
  order: 3;
  grid-area: newsbtn;
  width: 100%;
  margin: 0;
}
.sec-news_btn .btn {
  margin: 0 0 0 auto;
}
@media screen and (min-width: 960px) {
  .sec-news_btn .btn {
    margin: auto;
  }
}

/* introduce
===============================================
=============================================== */
.sec-introduce {
  max-width: 1200px;
  margin: 0 20px;
  padding: 60px 0;
}
@media screen and (min-width: 960px) {
  .sec-introduce {
    padding: 120px 0;
  }
}
@media screen and (min-width: 1200px) {
  .sec-introduce {
    margin: auto;
  }
}
.sec-introduce_title {
  flex-grow: 1;
}
@media screen and (min-width: 960px) {
  .sec-introduce_title {
    flex-grow: 0;
  }
}
.sec-introduce_btn {
  width: 100%;
  margin: 0;
  padding: 0 20px;
}
@media screen and (min-width: 960px) {
  .sec-introduce_btn {
    max-width: 1020px;
    padding: 0 10px;
  }
}
@media screen and (min-width: 1200px) {
  .sec-introduce_btn {
    width: calc( 100% - 150px);
  }
}
.sec-introduce_btn .btn {
  margin: auto;
}
.sec-introduce + .sec-introduce {
  border-top: 1px solid #d6c9a1;
}

/* comingsoon オープンしたら削除
===============================================
=============================================== */
.comingsoon {
  width: calc( 100% - 80px );
  max-width: 640px;
  margin: 40px 40px 20px;
  padding: 20px;
  background: #fff;
  font-feature-settings: "palt";
  letter-spacing: .05em;
  border-radius: 20px;
}
@media screen and (min-width: 600px) {
  .comingsoon {
    margin: 40px auto -20px;
    padding: 20px 60px;
  }
}
.comingsoon_L {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}
.comingsoon_L b {
  color: #8f6841;
  font-size: 2.4rem;
}
.comingsoon_ttl {
  margin-top: 40px;
  font-size: 1.6rem;
}
.comingsoon_contact {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.4rem;
}
.comingsoon_contact dt {
  width: 100%;
  font-weight: bold;
  color: #8f6841;
}
@media screen and (min-width: 450px) {
  .comingsoon_contact dt {
    width: 4em;
  }
}
.comingsoon_contact dd {
  width: 100%;
  margin: 0;
  padding: 0 0 0 1em;
}
@media screen and (min-width: 450px) {
  .comingsoon_contact dd {
    width: calc( 100% - 5em);
  }
}
