@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-family: var(--font-en);
  font-size: max(32px, 6.4rem);
  font-weight: 700;
  line-height: 1;
  text-transform: capitalize;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.concept .common__ttl {
  text-transform: uppercase;
}

.common__btn {
  width: max(160px, 21.6rem);
  height: max(40px, 5rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background-color: var(--red);
  width: 100%;
  height: 100%;
  color: var(--white);
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.common__btn a::after {
  content: "";
  display: block;
  background: url("../img/btn_arw.png") no-repeat center / contain;
  width: max(6px, 0.65rem);
  height: max(10px, 1.1rem);
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  /* height: max(88rem, 100vh); */
  position: relative;
}

/* @media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
} */

/* .hero::before {
  content: "";
  background: linear-gradient(0deg, rgba(255, 255, 255, 1), rgba(0, 0, 0, 1));
  width: 100%;
  height: 14rem;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
} */

.hero__slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

@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;
}

/*============================
	news
============================*/
.news {
  padding: 13rem 0 7rem;
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 6rem auto 8rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX {
    width: 90%;
    grid-template-columns: 1fr;
  }
}

.CMS-NEWS-LINK-CONTENT {
  display: block;
}

.CMS-NEWS-THUMBNAIL {
  width: 100%;
  height: 20rem;
  margin-bottom: 3rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  margin-right: 1.2rem;
}

.CMS-NEWS-LINK {
  border-top: solid 1px var(--white);
  padding-top: 1rem;
  margin-top: 1rem;
}

.CMS-NEWS-TIME {
  font-size: max(12px, 1.4rem);
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	concept
============================*/
.concept {
  background: url("../img/concept_bg.jpg") no-repeat center / cover;
  padding: 9rem 0 11rem;
  position: relative;
}

@media (max-width: 767px) {
  .concept {
    padding: 18rem 0 11rem;
  }
}

.concept::before,
.concept::after {
  content: "";
  width: 15.2rem;
  height: 34.2rem;
  position: absolute;
  top: 0;
  pointer-events: none;
}

.concept::before {
  background: url("../img/deco_1.png") no-repeat center / contain;
  left: 5.5rem;
}

.concept::after {
  background: url("../img/deco_2.png") no-repeat center / contain;
  right: 5.5rem;
}

@media screen and (max-width: 767px) {
  .concept::before,
  .concept::after {
    width: 12rem;
    height: 27rem;
  }

  .concept::before {
    left: 1rem;
  }

  .concept::after {
    right: 1rem;
  }
}

.concept__inner {
  width: 92rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .concept__inner {
    width: 90%;
  }
}

.concept__txt-wrapper {
  width: 100%;
}

.concept__txt-wrapper h2 {
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.concept__txt-wrapper p {
  letter-spacing: 0.05em;
  line-height: 2;
  margin: 7.5rem 0 6rem;
}

.concept__img {
  display: block;
  width: 90rem;
  margin-top: 4rem;
  position: relative;
}

@media (max-width: 767px) {
  .concept__img {
    width: 100%;
  }
}

.concept__img::before {
  content: "";
  width: 100%;
  height: 100%;
  border: solid 1px var(--white);
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  pointer-events: none;
}

/*============================
	menu
============================*/
.menu {
  background: var(--bg-2);
  padding: 12rem 0 14rem;
  position: relative;
}

.menu::before,
.menu::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.menu::before {
  background: url("../img/menu_deco-1.png") no-repeat center / contain;
  width: 20.2rem;
  height: 12.4rem;
  top: 10.5rem;
  left: 11.5rem;
}

.menu::after {
  background: url("../img/menu_deco-2.png") no-repeat center / contain;
  width: 22rem;
  height: 13.6rem;
  right: 11.5rem;
  bottom: 12rem;
}

@media (max-width: 767px) {
  .menu::before {
    width: 18rem;
    height: 11rem;
    top: 5rem;
    left: 2rem;
  }

  .menu::after {
    width: 19rem;
    height: 11.7rem;
    right: 5rem;
    bottom: 2rem;
  }
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 10rem;
  margin: 14rem auto 10rem;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
    margin: 10rem auto;
  }
}

.menu__list-item {
  display: flex;
  gap: 5rem 3.5rem;
}

.menu__list-item:nth-of-type(even) {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .menu__list-item,
  .menu__list-item:nth-of-type(even) {
    flex-direction: column-reverse;
  }
}

.menu__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    height: max(300px, 34rem);
    writing-mode: vertical-rl;
    text-orientation: upright;
  }

  .menu__list-item:nth-of-type(2) .menu__txt-wrapper {
    margin-top: 6.5rem;
  }

  .menu__list-item:nth-of-type(3) .menu__txt-wrapper {
    margin-top: 2rem;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(16px, 2.4rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-left: 2rem;
}

@media (max-width: 767px) {
  .menu__txt-wrapper h3 {
    margin: 0 0 3rem;
  }
}

.menu__txt-wrapper h3 span {
  display: block;
  border-left: solid 1px var(--white);
  font-size: max(14px, 2rem);
  letter-spacing: 0.1em;
  padding: 0 3rem 0 2rem;
  margin-left: 2rem;
}

@media (max-width: 767px) {
  .menu__txt-wrapper h3 span {
    border-left: none;
    border-bottom: solid 1px var(--white);
    padding: 0 0 3rem;
    margin: 0 0 3rem;
  }
}

.menu__txt-wrapper p {
  letter-spacing: 0.05em;
  line-height: 2;
}

.menu__img {
  width: 54rem;
  height: 100%;
  flex-shrink: 0;
}

.menu__list-item:nth-of-type(1) .menu__img {
  width: 61.3rem;
  margin: -20rem -8.5rem -6.5rem 1rem;
}

.menu__list-item:nth-of-type(4) .menu__img {
  width: 52.1rem;
  margin: -7.5rem 0 0 3.8rem;
}

@media (max-width: 767px) {
  .menu__img,
  .menu__list-item:nth-of-type(1) .menu__img,
  .menu__list-item:nth-of-type(4) .menu__img {
    width: 100%;
    margin: 0;
  }
}

/*============================
	gallery
============================*/
.gallery {
  padding: 14rem 0;
  position: relative;
}

.gallery__slider {
  height: 22.6rem;
  margin: 7.5rem 0 11rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 31.1rem;
}

.gallery__deco {
  width: 110rem;
  height: max-content;
  display: flex;
  justify-content: space-between;
  position: absolute;
  transform: translateX(-50%);
  top: 6.5rem;
  left: 50%;
  pointer-events: none;
  z-index: -1;
}

.gallery__deco--bottom {
  top: auto;
  bottom: 8rem;
}

@media (max-width: 767px) {
  .gallery__deco {
    width: 95%;
  }
}

.gallery__deco::before,
.gallery__deco::after {
  content: "";
  display: block;
  background: url("../img/gallery_deco.png") no-repeat center / contain;
  width: 13.4rem;
  height: 13.4rem;
}

.gallery__deco::after {
  transform: scale(-1, 1);
}

.gallery__deco--bottom::before {
  transform: scale(1, -1);
}

.gallery__deco--bottom::after {
  transform: scale(-1, -1);
}

/*============================
	link
============================*/
.link {
  background-color: var(--black);
  padding: 8rem 0;
}

.link__list {
  width: 106rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .link__list {
    width: 90%;
    grid-template-columns: 1fr;
  }
}

.link__list a {
  background-color: #e22020;
  width: 100%;
  height: max(60px, 10rem);
  border: solid 1px var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
}

.link__list li:nth-of-type(2) a {
  background-color: #ecad39;
}

.link__list li:nth-of-type(3) a {
  background-color: #b81616;
}

.link__list a img {
  width: 24.2rem;
  height: auto;
}

.link__list li:nth-of-type(2) a img {
  width: 20rem;
}

.link__list li:nth-of-type(3) a img {
  width: 13.5rem;
}

/*============================
	access
============================*/
.access {
  background: var(--bg-2);
  padding: 22.5rem 0 20.5rem;
}

@media (max-width: 767px) {
  .access {
    padding: 10rem 0 12rem;
  }
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 7rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.access .common__ttl {
  display: block;
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin: 4rem 0 6rem;
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.3rem 0;
}

.access__list dt {
  width: max(75px, 13rem);
  font-weight: 400;
}

.access__list dd {
  width: calc(100% - max(75px, 13rem));
}

.access__list dd:not(:last-of-type) {
  border-bottom: solid 1px var(--white);
}

@media (min-width: 768px) {
  .access__list dt:not(:last-of-type) {
    border-bottom: solid 1px var(--white);
  }
}

@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;
  }
}

@media (min-width: 768px) {
  .access .common__btn {
    margin: 0;
  }
}

.access__img {
  width: 65rem;
  height: 100%;
  flex-shrink: 0;
  margin-right: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
    margin: 0;
  }
}

.top__map {
  height: 43rem;
}

/*============================
	insta
============================*/
.insta {
  padding: 18.5rem 0 22.5rem;
  position: relative;
}

.insta::before,
.insta::after {
  content: "";
  background: url("../img/insta_frame.png") no-repeat center top / cover;
  width: 110rem;
  height: 50%;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  pointer-events: none;
}

.insta::before {
  top: 8.5rem;
}

.insta::after {
  transform: translateX(-50%) scale(1, -1);
  bottom: 10.5rem;
}

@media screen and (max-width: 767px) {
  .insta::before,
  .insta::after {
    width: 95%;
  }
}

.insta__contents {
  width: 82rem;
  margin: 7.5rem auto 0;
}

@media screen and (max-width: 767px) {
  .insta__contents {
    width: 85%;
  }
}

.CMS-INSTAGRAM-LIST {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.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: 26.1rem;
  height: 26.1rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}

/*============================
	sister
============================*/
.sister {
  background: url("../img/sister_bg.jpg") no-repeat center / cover;
  padding: 8rem 0 10.5rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .sister {
    padding: 10rem 0 10.5rem;
  }
}

.sister::before,
.sister::after {
  content: "";
  width: 15.2rem;
  height: 34.2rem;
  position: absolute;
  top: 0;
  pointer-events: none;
}

.sister::before {
  background: url("../img/deco_1.png") no-repeat center / contain;
  left: 5.5rem;
}

.sister::after {
  background: url("../img/deco_2.png") no-repeat center / contain;
  right: 5.5rem;
}

@media screen and (max-width: 767px) {
  .sister::before,
  .sister::after {
    width: 12rem;
    height: 27rem;
  }

  .sister::before {
    left: 1rem;
  }

  .sister::after {
    right: 1rem;
  }
}

.sister__txt-wrapper {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.sister__txt-wrapper p {
  text-align: center;
  margin: 5.5rem 0 6.5rem;
}

/* 修正 */
.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.youtube iframe {
    width: 100%;
    height: 100%;
    /* display: block; */
}