@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(21px, 3.6rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 2rem;
}

.common__ttl span {
  display: block;
  font-size: max(14px, 2rem);
  font-weight: 400;
  color: var(--brown);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.insta .common__ttl span {
  text-transform: capitalize;
}

.common__btn {
  width: max(60px, 9.3rem);
  height: max(60px, 9.3rem);
  flex-shrink: 0;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background-color: #3c3c3c;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.common__btn--wt a {
  background-color: var(--white);
}

.common__btn a::before {
  content: "";
  background: url("../img/btn_arw.png") no-repeat center / contain;
  width: max(18.6px, 2.8rem);
  height: max(6px, 0.9rem);
  margin-bottom: 0.5rem;
}

.common__btn--wt a::before {
  background: url("../img/btn_arw-bl.png") no-repeat center / contain;
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(90rem, 100vh);
  padding: 14rem 14rem 11rem;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 50rem);
    padding: max(60px, 8rem) 5% 5%;
  }
}

.hero__slider {
  width: 100%;
  height: 100%;
  border-radius: 30rem 0 30rem 0;
  overflow: hidden;
}

@media (max-width: 767px) {
  .hero__slider {
    border-radius: 10rem 0 10rem 0;
  }
}

@keyframes zoomOut {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

.hero__slider .swiper-slide-active img,
.hero__slider .swiper-slide-duplicate-active img,
.hero__slider .swiper-slide-prev img {
  animation: zoomOut 7s linear both;
}

/*============================
	about
============================*/
.about {
  padding-bottom: 13.5rem;
}

@media (max-width: 767px) {
  .about {
    padding: 8rem 0 13rem;
  }
}

.about__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 5rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .about__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.about__txt-wrapper {
  width: 100%;
  position: relative;
}

@media (min-width: 768px) {
  .about__txt-wrapper {
    height: max(500px, 50rem);
    writing-mode: vertical-rl;
  }
}

.about .common__ttl {
  align-items: flex-start;
  gap: 3rem;
}

.about__txt-wrapper h3 {
  font-size: max(16px, 2.8rem);
  font-weight: 700;
  margin: 0 5rem 0 3rem;
}

@media (max-width: 767px) {
  .about__txt-wrapper h3 {
    margin: 5rem 0 3rem;
  }
}

.about__txt-wrapper p {
  font-size: max(12px, 1.8rem);
  line-height: 2;
  text-orientation: upright;
}

.about .common__btn {
  position: absolute;
  right: 0;
  bottom: 0;
}

@media (max-width: 767px) {
  .about .common__btn {
    position: static;
    margin: 5rem 0 0 auto;
  }
}

.about__img {
  width: 66.5rem;
  height: 100%;
  border-radius: 0 2rem 2rem 0;
  flex-shrink: 0;
  overflow: hidden;
  margin-left: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .about__img {
    width: 100%;
  }
}

/*============================
	concept
============================*/
.concept {
  padding-left: 10rem;
}

@media (max-width: 767px) {
  .concept {
    padding-left: 5%;
  }
}

.concept__inner {
  background-color: #d3f4ff;
  border-radius: 30rem 0 0 0;
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}

@media (max-width: 767px) {
  .concept__inner {
    border-radius: 20rem 0 0 0;
  }
}

.concept__inner::before {
  content: "";
  background: url("../img/concept_deco.png") no-repeat center / cover;
  width: 75.9rem;
  height: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .concept__inner::before {
    background: url("../img/concept_deco.png") no-repeat center left / cover;
    width: 75%;
  }
}

.concept .common__ttl {
  align-items: flex-start;
  margin: 0 0 0 27rem;
}

@media (max-width: 767px) {
  .concept .common__ttl {
    margin: 0 0 0 15%;
  }
}

.concept__txt-wrapper {
  width: 104rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .concept__txt-wrapper {
    width: 90%;
  }
}

.concept__list {
  font-size: max(14px, 2.2rem);
  font-weight: 700;
  color: #22677e;
  display: flex;
  flex-direction: column;
  row-gap: 3rem;
  margin: 6rem 0 5rem;
}

@media (max-width: 767px) {
  .concept__list {
    width: 80%;
    font-size: max(14px, 2rem);
  }
}

.concept__list li {
  padding-left: max(35px, 5.5rem);
  position: relative;
}

.concept__list li::before {
  content: "1";
  background-color: var(--white);
  width: max(24px, 3.2rem);
  height: max(24px, 3.2rem);
  border-radius: 50%;
  font-size: max(14px, 2.2rem);
  color: #3ea1c2;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
}

.concept__list li:nth-of-type(2)::before {
  content: "2";
}

.concept__list li:nth-of-type(3)::before {
  content: "3";
}

.concept__list li:nth-of-type(4)::before {
  content: "4";
}

.concept__list li:nth-of-type(5)::before {
  content: "5";
}

.concept .common__btn {
  margin: 0 0 0 36rem;
}

@media (max-width: 767px) {
  .concept .common__btn {
    margin: 0;
  }
}

/*============================
	product
============================*/
.product {
  padding: 16rem 0 15.5rem;
  position: relative;
}

.product::before {
  content: "";
  background: url("../img/product_deco.png") no-repeat center / contain;
  width: 21rem;
  height: 18.5rem;
  position: absolute;
  top: 15.5rem;
  right: 6.5rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .product::before {
    width: 18rem;
    height: 15.8rem;
    top: 4rem;
    right: 2rem;
  }
}

.product__inner {
  width: 102rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .product__inner {
    width: 90%;
  }
}

.product .common__ttl {
  align-items: flex-start;
}

.product p {
  margin: 2.5rem 0 5rem;
}

.product__img-wrapper {
  width: 100%;
  display: flex;
  align-items: flex-end;
  gap: 3rem;
}

@media (max-width: 767px) {
  .product__img-wrapper {
    flex-direction: column;
  }
}

.product__img {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

@media (max-width: 767px) {
  .product__img {
    grid-template-columns: 1fr;
  }
}

.product__img img {
  border-radius: 10rem 0 10rem 0;
}

@media (max-width: 767px) {
  .product .common__btn {
    margin: 0 0 0 auto;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-3);
  padding: 6.5rem 0 7.5rem;
}

.gallery__slider {
  height: 21.2rem;
  margin-top: 6rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 26rem;
  border-radius: 1rem;
  overflow: hidden;
  margin: 0 1rem;
}

/*============================
	faq
============================*/
.faq {
  padding: 17rem 0;
}

.faq__inner {
  width: 104rem;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
  gap: 5rem 7.5rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .faq__inner {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.faq__txt-wrapper {
  width: 100%;
  display: flex;
  align-items: flex-end;
  gap: 5rem;
}

@media (max-width: 767px) {
  .faq__txt-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}

.faq__txt {
  width: 100%;
}

.faq__txt-wrapper .common__ttl {
  align-items: flex-start;
}

.faq__txt-wrapper p {
  font-size: max(12px, 1.8rem);
  margin-top: 2.5rem;
}

@media (max-width: 767px) {
  .faq .common__btn {
    margin: 0 0 0 auto;
  }
}

.faq__img {
  display: block;
  width: 40.6rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: -2rem;
}

@media (max-width: 767px) {
  .faq__img {
    width: 90%;
    margin: 0 auto;
  }
}

/*============================
	news
============================*/
.news {
  padding-bottom: 18rem;
}

.news__inner {
  background-color: #f9fdff;
  width: 120rem;
  border: solid max(3px, 0.6rem) #3ea1c2;
  border-radius: 10rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6rem;
  padding: 7.5rem 8rem 5.5rem 9rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .news__inner {
    width: 90%;
    flex-direction: column;
    padding: 6rem;
  }
}

.news__ttl-wrapper {
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 6rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .news .common__btn.sp {
    display: none;
  }
}

@media (max-width: 767px) {
  .news .common__btn {
    margin: 0 0 0 auto;
  }
}

.CMS-NEWS-INDEX {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 5.5rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX {
    grid-template-columns: 1fr;
  }
}

.CMS-NEWS-LINK-CONTENT {
  display: block;
}

.CMS-NEWS-THUMBNAIL {
  width: 100%;
  height: 14rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  font-size: max(12px, 1.8rem);
  font-weight: 500;
}

.CMS-NEWS-LINK {
  margin-top: 1rem;
}

.CMS-NEWS-TIME {
  color: #adadad;
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	access
============================*/
.access {
  background-color: var(--bg-2);
  padding-top: 9rem;
}

.access__contents {
  width: 104rem;
  display: flex;
  gap: 5rem 6.5rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.access .common__ttl {
  align-items: flex-start;
}

.access__list {
  border-top: solid 1px var(--brown);
  display: flex;
  flex-wrap: wrap;
  margin: 5rem 0 4.5rem;
}

.access__list dt,
.access__list dd {
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.1em;
  padding: 2.3rem 1.6rem;
}

.access__list dt {
  width: max(75px, 13rem);
  font-weight: 700;
}

.access__list dd {
  width: calc(100% - max(75px, 13rem));
  border-bottom: solid 1px var(--brown);
}

@media (min-width: 768px) {
  .access__list dt {
    border-bottom: solid 1px var(--brown);
  }
}

@media (max-width: 767px) {
  .access__list dt,
  .access__list dd {
    width: 100%;
  }

  .access__list dt {
    padding: 2rem 1.6rem 1rem;
  }

  .access__list dd {
    padding: 0 1.6rem 2rem;
  }
}

.access .common__btn {
  margin: 0 0 0 auto;
}

.access__map {
  width: 70rem;
  height: 51.6rem;
  flex-shrink: 0;
  margin-right: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .access__map {
    width: 100%;
    margin: 0;
  }
}

.access__contact {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 7rem;
}

@media (max-width: 767px) {
  .access__contact {
    grid-template-columns: 1fr;
  }
}

.access__contact a {
  background-color: var(--brown);
  width: 100%;
  height: 100%;
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 0 2.5rem;
}

.access__contact li:nth-of-type(2) a {
  background-color: #66bdd4;
}

@media (max-width: 767px) {
  .access__contact a {
    text-decoration: none;
    padding: 3rem 0 3.5rem;
  }
}

.access__contact span {
  font-size: max(24px, 4rem);
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.access__contact li:nth-of-type(2) span {
  font-size: max(21px, 3.6rem);
}

.access__contact span::before {
  content: "";
  display: block;
  background: url("../img/tel_icon.png") no-repeat center / contain;
  width: max(28px, 4.4rem);
  height: max(28px, 4.4rem);
}

.access__contact li:nth-of-type(2) span::before {
  background: url("../img/mail_icon.png") no-repeat center / contain;
}

/*============================
	insta
============================*/
.insta {
  padding: 11rem 0 12.5rem;
}

.insta__contents {
  width: 82.7rem;
  margin: 9rem auto 0;
}

@media screen and (max-width: 767px) {
  .insta__contents {
    width: 90%;
  }
}

.CMS-INSTAGRAM-LIST {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem 5.4rem;
}

.CMS-INSTAGRAM-LIST > *:nth-of-type(n + 7) {
  display: none;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST {
    gap: 1rem;
  }
}

.CMS-INSTAGRAM-LIST img {
  width: 24rem;
  height: 24rem;
  border-radius: 1rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}
