@charset "UTF-8";

/* ==== color ========================== */
:root {
  --color-black: #000000;
  --color-white: #ffffff;

  --baskerville: "Noto Serif JP", serif;
  --noto-sans: "Noto Sans JP", sans-serif;
}


/*================================================
 *  一般・共通設定
 ================================================*/
html {
  /* 1920>> 10px */
  /* font-size: 0.5208333vw; */
  font-size: clamp(7px, 0.5208333vw, 10px);
  scroll-behavior: smooth;
  font-family: var(--baskerville);
}

body {
  font-family: var(--baskerville);
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 2;
  background: var(--color-black);
  color: var(--color-white);
}

* {
  letter-spacing: 0.05em;
}

.wrap {
  /* width: 144rem; */
  width: 75%;
  max-width: 144rem;
  min-width: 700px;
  margin: 0 auto;

}
.wrap_txt {
  /* width: 144rem; */
  width: 75%;
  max-width: 144rem;
  min-width: 700px;
  margin: 0 auto;

}

.narrow {
  max-width: 126rem;
  margin: 0 auto;
}


a {
  text-decoration: none;
  transition: all .4s;
}

a:hover {
  opacity: .6;
}

img {
  max-width: 100%;

  display: block;
}

strong {
  font-weight: bold;
}

small {
  font-size: smaller;
}

ul,
ol,
dl {
  margin: 0;
}

ul li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

li {
  margin-left: 0;
}

/* タイトル */
h2.hd {
  font-size: 7rem;
  padding-bottom: 2rem;
  margin-bottom: 6rem;
  text-align: center;
  position: relative;
}

h2.hd::before {
  position: absolute;
  content: "";
  width: 18rem;
  height: 1px;
  background: var(--color-white);
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}

@media screen and (max-width:767px) {
  html {
    /* 750px>> 10px */
    font-size: 1.3333vw;
  }

  .wrap {
    width: 92%;
    min-width: unset;
    padding: 0;
    box-sizing: border-box;

  }
	
  .wrap_txt {
    width: 92%;
    min-width: unset;
    padding: 0;
    box-sizing: border-box;

  }
	
}

/*================================================
 *  header / ヘッダー
 ================================================*/

#fix_btn {
  position: fixed;
  width: 110px;
  bottom: 5rem;
  right: 10rem;
  z-index: 20;
}

@media screen and (max-width:767px) {
  #fix_btn {
	    width: 70px;
    bottom: 4rem;
    right: 3rem;
  }


}

/*================================================
 *  header / ヘッダー
 ================================================*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding-left: 10rem;
  padding-top: 5rem;
  padding-bottom: 1rem;
  background: transparent;
  transition: .2s;
}

header.changeNav {
  background: var(--color-black);
}

.nav__left {
  width: 57rem;
  opacity: 0;
  transition: .4s;
}

.underPages .nav__left,
.changeNav .nav__left {
  opacity: 1;
}

/* ハンバーガーメニュー内 */
nav.global__nav {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-black);
  transition: all .3s ease-out;
  z-index: 200;
  overflow-y: auto;
  padding: 10rem 0;
  opacity: 0;
  pointer-events: none;
}

/* 表示 */
.open_nav .global__nav {
  opacity: 1;
  pointer-events: fill;
}


nav.gnav.global__nav ul.nav__menu {
  width: 50%;
  margin: 0 auto;
}

nav.gnav.global__nav ul.nav__menu li {
  margin: 0 0 4rem 0;
}

nav.gnav.global__nav ul.nav__menu li img {
  width: 10rem;
}

.hamburger {
  position: absolute;
  right: 7rem;
  top: 7rem;
  width: 6.4rem;
  height: 6.4rem;
  cursor: pointer;
  z-index: 300;
}

/* line open */
.hamburger__line {
  position: absolute;
  left: 50%;
  width: 100%;
  height: 0.7rem;
  background-color: var(--color-white);
  transition: all .2s ease-out;
  transform: translateX(-50%);
}

.hamburger__line--1 {
  top: 20%;
}

.hamburger__line--2 {
  top: 50%;
}

.hamburger__line--3 {
  top: 80%;
}


/* line close */
.open_nav .hamburger__line--1 {
  transform: translateX(-50%) rotate(35deg);
  top: 50%;
}

.open_nav .hamburger__line--2 {
  width: 0;
  left: 50%;
}

.open_nav .hamburger__line--3 {
  transform: translateX(-50%) rotate(-35deg);
  top: 50%;
}

@media screen and (max-width:767px) {
  header {
    padding-left: 2rem;
  }

  .nav__left {
    width: 49rem;
  }


  .hamburger {
    position: absolute;
    right: 5rem;
    top: 6rem;
  }

  nav.global__nav {
    padding: 23rem 0 0;
  }

  nav.gnav.global__nav ul.nav__menu {
    width: 70%;
    font-size: 4rem;
  }
}

/*================================================
 *  section btn
 ================================================*/
section {
  position: relative;
  padding-bottom: 11rem;
}

.section {
  padding-top: 11rem;
}

/*================================================
* mv
================================================*/
#mv {
  padding: 0;
  position: relative;
}

#mv .mv_swiper,
#mv .mv_swiper .swiper-wrapper,
#mv .mv_swiper .swiper-slide {
  height: 106.7rem;
}

@media screen and (max-width: 767px) {
  #mv .mv_swiper,
  #mv .mv_swiper .swiper-wrapper,
  #mv .mv_swiper .swiper-slide {
    height: 100vh;
  }
}

.mv_swiper .swiper-slide {
  position: relative;
  background-color: #000;
}

.mv_swiper .slide01 { background: url(../images/slide01.jpg) no-repeat center/cover; }
.mv_swiper .slide02 { background: url(../images/slide02.jpg) no-repeat center/cover; }
.mv_swiper .slide03 { background: url(../images/slide03.jpg) no-repeat center/cover; }
.mv_swiper .slide04 { background: url(../images/slide04.jpg) no-repeat center/cover; }
.mv_swiper .slide05 { background: url(../images/slide05.jpg) no-repeat center/cover; }

.mv_swiper .mv_catch {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  text-align: center;
  width: 100%;
  line-height: 2;
  z-index: 2;
  opacity: 0;
  transition: opacity .3s ease;
}

.mv_swiper .swiper-slide.swiper-slide-active .mv_catch {
  opacity: 1;
}

/* 1枚目はコンテナ幅ではなく画像幅で制御 */
.mv_swiper .slide01 .mv_catch { width: 100%; max-width: none; }
.mv_swiper .slide01 .mv_catch img {
  display: block;
  max-width: 98.7rem;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .mv_swiper .slide01 .mv_catch img { max-width: 90%; }
}

#mv .mv_swiper .swiper-pagination-bullet {
  width: 1.2rem;
  height: 1.2rem;
  margin: 0 1.4rem;
  background: var(--color-white);
  opacity: 0.5;
}

#mv .mv_swiper .swiper-pagination-bullet-active {
  background: var(--color-white);
  opacity: 1;
}




/*================================================
* intro
================================================*/
#intro {}

#intro p {
  text-align: center;
  margin-bottom: 2em;
  line-height: 3;
}

#intro p:last-of-type {
  margin: 0;
}

@media screen and (max-width:767px) {}

/*================================================
* gallery
================================================*/
#gallery {
  background: var(--color-white);
  z-index: 1;
}

#gallery::before {
  position: absolute;
  content: "";
  background-size: cover;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/gallery_bg.png);
  width: 100%;
  height: 111.11rem;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;

}

#gallery .wrap {
  max-width: 140rem;
}

#gallery ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6rem;
}

#gallery .col-1 {
  width: calc((100% - 12rem)/3);
}

#gallery .col-2 {
  width: calc((((100% - 12rem)/3) * 2) + 6rem);
}





@media screen and (max-width:767px) {
  #gallery::before {
    height: 43.4rem;
  }

  #gallery ul {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
  }

  #gallery .col-1 {
    width: calc((100% - 6rem)/3);
  }

  #gallery .col-2 {
    width: calc((((100% - 6rem)/3) * 2) + 3rem);
  }
}

/*================================================
* tradition
================================================*/
#tradition {
  background: url(../images/tradition_bg.jpg ) no-repeat center/cover;
  height: 100%;
}

#tradition .wrap {
  padding-right: 14rem;
  position: relative;
  max-width: 140rem;
}

#tradition .wrap::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/tradition_arrow.png);
  width: 10rem;
  height: 53.7rem;
  right: 0;
  top: 0;
}

#tradition h2 {
  text-align: center;
  font-size: 4.5rem;
  margin-bottom: 5rem;
}

#tradition .scroll {
  overflow: scroll;
  height: 48.5rem;
  -ms-overflow-style: none;
}

#tradition .scroll::-webkit-scrollbar {
  display: none;
}

#tradition .scroll p {
  margin-bottom: 2em;
}




@media screen and (max-width:767px) {
  #tradition .wrap {
    padding-right: 8rem;
  }

  #tradition .wrap::before {
    width: 8rem;
    height: 42.6rem;
    top: 5rem;
  }
}

/*================================================
* experience
================================================*/
#experience .wrap {
  padding-right: 14rem;
  position: relative;
  max-width: 140rem;
}

#experience .wrap_txt {
  position: relative;
  max-width: 140rem;
	margin-bottom: 3rem;
}

#experience .wrap::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/tradition_arrow.png);
  width: 10rem;
  height: 53.7rem;
  right: 0;
  top: 0;
}

#experience h2 {
  text-align: center;
  font-size: 4.5rem;
  margin-bottom: 5rem;
}

#experience .scroll {
  overflow: scroll;
  height: 48.5rem;
  -ms-overflow-style: none;
}

#experience .scroll::-webkit-scrollbar {
  display: none;
}

#experience .scroll p {
  margin-bottom: 2em;
}

@media screen and (max-width:767px) {}

/*================================================
* insta
================================================*/
#insta {
  background: url(../images/insta_bg.jpg) no-repeat center top/cover;
}

#insta .wrap {
  max-width: 140rem;
}

#insta a {
  display: block;
  width: 10.8rem;
  margin: 5rem auto 0;
}

@media screen and (max-width:767px) {}

/*================================================
* access
================================================*/


@media screen and (max-width:767px) {}

/*================================================
* price
================================================*/

@media screen and (max-width:767px) {}

/*================================================
* access
================================================*/


@media screen and (max-width:767px) {}

/*================================================
* price
================================================*/

@media screen and (max-width:767px) {}

/*================================================
* access
================================================*/


@media screen and (max-width:767px) {}

/*================================================
* price
================================================*/

@media screen and (max-width:767px) {}

/*================================================
* access
================================================*/


@media screen and (max-width:767px) {}

/*================================================
* price
================================================*/

@media screen and (max-width:767px) {}

/*================================================
* access
================================================*/


@media screen and (max-width:767px) {}

/*================================================
 *  footer
 ================================================*/
footer {
  padding: 10rem 0 4rem;
}

.ft_logo {
  width: 66rem;
  margin: 0 auto;
}


footer ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 1em;
  font-size: 3rem;
  margin: 6rem auto 5rem;
  padding-bottom: 5rem;
  max-width: 153.5rem;
  border-bottom: 1px solid var(--color-white);
}

.ft_copy {
  font-size: 1.8rem;
  text-align: center;
  font-family: var(--noto-sans);
}

@media screen and (max-width:767px) {
  footer ul {
    display: block;
    text-align: center;
  }
}

.video {
  width: 100%;
  position: relative;
  padding-top: 56.25%;
}

.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

section[id] {
  scroll-margin-top: 100px; /* 固定ヘッダーの高さに合わせて */
}