@charset "UTF-8";
/* ローディング中スクロール禁止 */
body.count {
  overflow: hidden;
}

/* ローディング画面 */
#splash {
  position: fixed;
  inset: 0;
  background: #fefdf7;
  z-index: 9999;

  display: flex;
  justify-content: center;
  align-items: center;

  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}

/* フェードアウト */
#splash.fadeout {
  opacity: 0;
  visibility: hidden;
}
#container {
  margin: 20px;
  width: 200px;
  height: 100px;
}

/* -------------------------------------
mv
------------------------------------- */
.mv__wrap,
.mv,
.mv__txtbk {
  height: 43.75vw;
  min-height: 336px;
}
.mv {
  width: 100%;
  position: fixed;
  z-index: -1;
}
.mv__img {
  min-width: 768px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.mv__txtbk-wrap {
  position: absolute;
  top: 0;
  right: 0;
}
.mv__txt {
  font-size: 2.06vw;
  font-weight: 700;
  line-height: 2.1;
  letter-spacing: 0.15em;
  position: absolute;
  top: 54.5%;
  left: 0;
  transform: translate(-2%, -50%);
}

.bg_wave::before {
  content: "";
  width: 100vw;
  height: min(5.63vw, 90px);
  position: absolute;
  top: max(-2.63vw, -42px);
  background: url(../imgs/index/wave_wh.svg) no-repeat top center/ 100%;
}

/* -------------------------------------
about
------------------------------------- */
.sec_about {
  padding: 68px 0 100px;
}
.about__center {
  font-size: clamp(19px, 2.47vw, 23px);
  line-height: 1.96;
  letter-spacing: 0.05em;
  width: 44%;
  max-width: 19em;
  margin: 0 auto;
}
.about__center-imgbk {
  width: 65%;
  max-width: 270px;
  margin: 0 auto 32px;
}
.about__center-txtbk {
  margin-bottom: 58px;
}
.about__center-txtbk p:not(:last-child) {
  margin-bottom: 1.3em;
}
.deco {
  position: absolute;
}
.deco.img1 {
  width: 85%;
  max-width: 370px;
  top: 39%;
  right: 100%;
  transform: translate(-11%, -50%);
}
.deco.img2 {
  width: 58%;
  max-width: 250px;
  bottom: 0;
  left: 100%;
  transform: translate(33%, 0);
}

/* -------------------------------------
schedule
------------------------------------- */
.sec_schedule {
  padding: 78px 0 60px;
  background-color: #f2edea;
}
.sec_schedule .sec_ttl {
  font-size: clamp(19px, 2.55vw, 23px);
  line-height: 1.2;
  letter-spacing: 0.15em;
  margin-bottom: 30px;
}
.g-calendar {
  max-width: 800px;
  margin: 0 auto 50px;
}
.g-calendar iframe {
  width: 100%;
}
/* -------------------------------------
news
------------------------------------- */
.sec_news {
  padding: 104px 0;
}
.sec_news .sec_ttl {
  margin-bottom: 20px;
}
.news__list {
  font-size: clamp(17px, 2.21vw, 20px);
  line-height: 1.2;
  letter-spacing: 0.05em;
  max-width: 800px;
  margin: 0 auto 65px;
}
.news__item {
  border-bottom: 1px solid #43342c;
}
.news__item a {
  display: flex;
  align-items: center;
  gap: 1.4em;
  min-height: 4.5em;
  padding: 0.5em 0;
}
.news__item .news__item-date {
  width: 7em;
  flex-shrink: 0;
}
.no_news {
  font-size: clamp(17px, 2.21vw, 20px);
  line-height: 1.2;
  letter-spacing: 0.05em;
  padding-top: 50px;
}
/* -------------------------------------
products
------------------------------------- */
.sec_products {
  padding: 62px 0 86px;
}
.sec_products.bg_wave::before {
  background-image: url(../imgs/index/wave_gr.svg);
}
.sec_products .sec_ttl {
  margin-bottom: 47px;
}
.products__list {
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto 28px;
}
.products__item {
  width: 48%;
  max-width: 400px;
}
.products__item-imgbk {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}

.products__item-imgbk::before {
  content: "";
  width: 100%;
  aspect-ratio: 1/1;
  background-color: rgba(67, 52, 44, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transition: 0.3s;
  opacity: 0;
}
.products__item-imgbk img {
  transition: 0.3s;
}
.products__item-hv_txt {
  font-size: clamp(23px, 2.99vw, 27px);
  line-height: 1.85;
  letter-spacing: 0.2em;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
  z-index: 2;
  opacity: 0;
}
.products__item:hover .products__item-imgbk::before,
.products__item:hover .products__item-hv_txt {
  opacity: 1;
}
.products__item:hover .products__item-imgbk img {
  scale: 1.1;
}
.products__item a {
  color: #fff;
}
.products__item-name {
  font-size: clamp(23px, 2.99vw, 27px);
  line-height: 1.18;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3em;
  padding: 0.2em 0 0.2em;
}
.products__item-txt {
  font-size: clamp(15px, 1.95vw, 18px);
  line-height: 1.66;
  letter-spacing: 0.05em;
}
.products_btn {
  font-size: clamp(19px, 2.47vw, 23px);
  line-height: 1.21;
  letter-spacing: 0.1em;
  max-width: 900px;
  min-height: 3.48em;
  margin: 0 auto;
  padding: 10px 12%;
  background-color: #fff;
  border: 3px solid #fff;
  border-radius: 50px;
}
.products_btn::after {
  background-image: url(../imgs/index/products_btn.svg);
}
.products_btn:hover {
  color: #fff;
  background-color: #94b428;
}
.products_btn:hover::after {
  background-image: url(../imgs/index/products_btn_hv.svg);
  right: 8%;
}
/* -------------------------------------
others
------------------------------------- */
.sec_others {
  padding-top: 134px;
}
.others__cont {
  background-color: #fff;
  border: 2px solid #43342c;
  border-radius: clamp(20px, 6.25vw, 30px);
  padding: 10% 0;
}
#company.others__cont {
  margin-bottom: 80px;
}
.others__cont-innner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}
.others__cont .sec_ttl {
  font-size: clamp(23px, 2.99vw, 27px);
  line-height: 1.18;
  margin-bottom: 26px;
}
.others__imgbk {
  width: calc(95% - 320px);
  max-width: 400px;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.others__txtbk {
  width: 320px;
}
.others__txt {
  line-height: 1.66;
  margin-bottom: 40px;
}
.others__txtbk .morebtn {
  max-width: 260px;
}

@media screen and (max-width: 1600px) {
  /* -------------------------------------
mv
------------------------------------- */
  .mv__txt {
    font-size: clamp(28px, 3.65vw, 33px);
    transform: translate(0, -50%);
  }
}
@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 980px) {
  /* -------------------------------------
	others
	------------------------------------- */
  .others__imgbk {
    width: 43%;
    max-width: 258px;
  }
  .others__txtbk {
    width: 53%;
    max-width: 320px;
  }
}
@media screen and (max-width: 768px) {
  /* -------------------------------------
	about
	------------------------------------- */
  .about__center {
    width: 100%;
  }
  .deco_bk {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 5%;
    padding-bottom: 40px;
  }
  .deco {
    overflow: hidden;
    position: static;
    transform: initial !important;
  }
}
@media screen and (max-width: 640px) {
  /* -------------------------------------
	products
	------------------------------------- */
  .products__list {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .products__item {
    width: 100%;
    max-width: 300px;
  }
  /* -------------------------------------
	others
	------------------------------------- */
  .others__cont-innner {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .others__imgbk,
  .others__txtbk {
    width: 90%;
  }
}
@media screen and (max-width: 480px) {
  .mv__txt {
    font-size: min(5.83vw, 28px);
  }
  .about__center {
    font-size: clamp(16px, 3.96vw, 19px);
  }
  .sec_schedule .sec_ttl {
    font-size: clamp(16px, 3.96vw, 19px);
  }
  .news__list,
  .no_news {
    font-size: clamp(14px, 3.54vw, 17px);
  }
  .products__item-hv_txt {
    font-size: clamp(22px, 4.79vw, 23px);
  }
  .products__item-name {
    font-size: clamp(22px, 4.79vw, 23px);
  }
  .products__item-txt {
    font-size: clamp(14px, 3.13vw, 15px);
  }
  .products_btn {
    font-size: clamp(16px, 3.96vw, 19px);
  }
  .sec_contact .sec_ttl {
    font-size: clamp(22px, 4.79vw, 23px);
  }
  .others__cont .sec_ttl {
    font-size: clamp(22px, 4.79vw, 23px);
  }
}
