/* 共通 */
.main_titles {
  position: relative;
  z-index: 2;
  color: #c9940e;
  text-align: center
}

.main_titles h2 {
  font-size: 8rem;
  /* font-size: 6rem; */
  font-family: "garamond-premier-pro-display", serif;
  letter-spacing: .05em;
  font-weight: 400
}

.main_titles p {
  font-size: 1.8rem;
  /* font-size: 2.5rem; */
  font-family: "Source Han Serif Japanese", serif;
  letter-spacing: 1px
}

h3.sub_titles {
  color: #c9940e;
  text-align: right;
  margin-right: 20px;
  margin-bottom: 30px
}

h3.sub_titles .english {
  font-family: "garamond-premier-pro-display", serif;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 2px
}

h3.sub_titles .japanese {
  font-size: 14px;
  font-family: "Source Han Serif Japanese", serif;
  letter-spacing: 1px
}

h2.title {
  color: #c9940e;
}

h2.title .en {
  font-family: "garamond-premier-pro-display", serif;
  font-size: 53px;
  /* font-size: 6rem; */
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 100%;
}

h2.title .jp {
  font-size: 16px;
  /* font-size: 2.5rem; */
  font-family: "Source Han Serif Japanese", serif;
  font-weight: 100;
  letter-spacing: 1px;
  margin-left: 5px;
  line-height: 200%;
}

.top_flex {
  --top-flex-width: 400px;
}

.top_flex .sub_titles {
  width: var(--top-flex-width);
}

.top_flex .content_box {
  width: calc(100% - var(--top-flex-width));
}

@media screen and (max-width: 1280px) {
  .top_flex {
    --top-flex-width: 320px;
  }
}

@media screen and (max-width: 768px) {
  .main_titles h2 {
    font-size: 6rem;
  }

  .main_titles p {
    font-size: 1.35rem;
  }

  h2.title .en {
    font-size: 34px;
  }

  h2.title .jp {
    font-size: 14px;
  }

  .top_flex .sub_titles {
    width: 100%;
    margin: 0 auto 2em;
  }

  .top_flex .content_box {
    width: 100%;
  }
}


/* top_slider */
#top_slider {
  height: 100vh;
  overflow: hidden;
}

#top_slider .swiper {
  height: 100%;
}

#top_slider .swiper-slide {
  height: 100%;
}

#top_slider .swiper-slide picture {
  width: 100%;
  height: 100%;
}

#top_slider .swiper-slide .base {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#top_slider .swiper-slide .text {
  width: 80%;
  max-width: 600px;
  bottom: 5%;
  left: 0;
  opacity: 0;
  transition: ease-in 0.5s;
}

#top_slider .swiper-slide .text.active {
  opacity: 1;
}

/****************************** fv ******************************/
#fv {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 100svh;
  margin-bottom: 200px
}

#fv .fv_inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-clip-path: inset(0);
  clip-path: inset(0)
}

#fv .fv_inner .bk {
  height: 18svh;
  width: 100%
}

#fv .fv_inner .img_box {
  margin-top: 18svh;
  height: 82svh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw
}

#fv .fv_inner .img_box .scroll {
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 50px;
  color: #fff
}

#fv .fv_inner .img_box .scroll span {
  position: absolute;
  left: -14px;
  top: -18px;
  font-size: 14px;
  letter-spacing: .05em;
  color: #fff;
  font-family: "garamond-premier-pro-display", serif
}

#fv .fv_inner .img_box .scroll::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 30px;
  background: #fff;
  -webkit-animation: pathmove 1.4s ease-in-out infinite;
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0
}

@-webkit-keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0
  }

  30% {
    height: 30px;
    opacity: 1
  }

  100% {
    height: 0;
    top: 50px;
    opacity: 0
  }
}

@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0
  }

  30% {
    height: 30px;
    opacity: 1
  }

  100% {
    height: 0;
    top: 50px;
    opacity: 0
  }
}

#fv .fv_inner .img_box .title {
  position: absolute;
  top: 3svh;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  max-width: 170px
}

#fv .fv_inner .img_box .title.en {
  top: -4svh;
  max-width: 104px
}

#fv .fv_inner .img_box .video {
  position: fixed;
  padding-top: 25svh;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden
}

#fv .fv_inner .img_box .video video {
  position: absolute;
  margin-top: 25svh;
  z-index: -1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-30%, -50%);
  transform: translate(-30%, -50%);
  width: 177.77777778vh;
  height: 56.25vw;
  min-height: 100%;
  min-width: 100%
}

#fv .fv__logo {
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  margin-inline: auto
}

#fv .fv__logo img {
  margin-inline: auto;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center
}

@media screen and (min-width: 768px) {
  #fv .fv_inner .img_box .title {
    top: -5svh;
    left: auto;
    right: 5vw;
    max-width: 231px
  }

  #fv .fv_inner .img_box .title.en {
    max-width: 133px
  }

  #fv .fv_inner .img_box .video {
    padding-top: 18svh;
  }

  #fv .fv_inner .img_box .video video {
    margin-top: 18svh;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

/****************************** about ******************************/
#about {
  position: relative;
  margin: var(--content-margin) auto;
}

#about .main {
  margin: 5em auto 0;
}

#about .main img {
  /* width: 100%; */
  /* height: 50vh; */
  width: 700px;
  height: 400px;
  margin: auto;
  object-fit: cover;
  object-position: center;
}

#about .inner {
  width: 85%;
  margin: 0 auto;
}

#about .content_box {
  --about-text-width: 80%;
  margin: 0 auto;
}

#about .content_box .text {
  width: var(--about-text-width);
  font-family: "Source Han Serif Japanese", serif;
}


#about .content_box .text:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -70%;
  height: 100%;
  aspect-ratio: 1;
  transform: rotate(45deg);
  background: url(../img/top/back.jpg) no-repeat center center / cover;
  z-index: -1;
}


#about .content_box .text h3 {
  letter-spacing: .09em;
  line-height: 1.68;
  font-size: 4.5rem;
  /* font-size: 5rem; */
  margin: 0 auto 1.5em;
}

#about .content_box .text p {
  font-size: 1.6rem;
  /* font-size: 2.6rem; */
  line-height: 2;
}

#about .content_box .text .btn a {
  display: block;
  width: 15em;
  font-size: 1.4rem;
  padding: 0.2em 1em;
  margin: 2em 0 0;
  color: #c9940e;
  border: 1px solid hsla(43, 87%, 42%, 0.4);
  text-align: center;
  transition: ease-in 0.3s;
}

#about .content_box .text .btn a:hover {
  color: #fff;
  background: #c9940e;
}

#about .yakan {
  width: 45em;
  top: -15em;
  right: -15em;
  z-index: -1;
}

@media screen and (max-width: 1280px) {
  #about .inner {
    width: 100%;
  }

  #about .content_box {
    --about-text-width: 100%;
  }

  #about .content_box .text:before {
    left: -55%;
    height: 50%;
  }

  #about .content_box .text h3 {
    font-size: 4rem;
  }

  #about .yakan {
    width: 40em;
    top: -10em;
    right: -15em;
  }
}

@media screen and (max-width: 900px) {
  #about .content_box .text:before {
    left: -80%;
  }
}

@media screen and (max-width: 768px) {
  #about .inner {
    width: 100%;
  }

  #about .content_box {
    --about-text-width: 100%;
  }

  #about .content_box .text:before {
    left: 0%;
    height: 100%;
  }

  #about .content_box .text h3 {
    font-size: 2.7rem;
  }

  #about .content_box .text p {
    font-size: 14px;
  }

  #about .yakan {
    width: 25em;
    top: -15em;
    right: -5em;
  }
}

/****************************** news ******************************/
#links+#news {
  padding: 800px 0 300px;
}

#news {
  margin: 0 auto var(--content-margin);
}

#news .inner {}

#news .content_box {
  padding: 2em;
  border-top: 3px solid #555;
  border-bottom: 3px solid #555;
}

#news .content_box ul {
  list-style: none;
}

#news .content_box ul li {
  margin: 0 auto 1em;
}

#news .content_box ul li a {
  color: #fff;
}

#news .content_box ul li a .date {
  color: #c9940e;
  margin: 0 1em 0 0;
}

#news .content_box ul li a .text {}

#news .content_box .btn {
  text-align: right;
}

#news .content_box .btn a {
  color: #c9940e;
  font-size: 1em;
  /* font-size: 2.5rem; */
}

#news .banner {
  width: calc(100% - var(--top-flex-width));
  margin: 2em 0 0 auto;
}

#news .banner .right_img {
  width: calc(100% / 3);
  height: 100%;
  background: #0D5257;
}

#news .banner .right_img img {
  width: 80%;
}

#news .banner .left_img {
  width: calc(100% / 3 * 2);
}

#news .banner .left_img .absolute {
  width: 55%;
  left: 5%;
  z-index: 10;
}

#news .banner .banner_slider {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

#news .banner .banner_slider .swiper-slide {
  width: 100%;
  height: 100%;
}

#news .banner .banner_slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  #news {
    font-size: 1.4rem;
    padding: 0;
  }

  #news .content_box ul li {
    margin: 0 auto 2em;
  }

  #news .content_box ul li a .date {
    width: 100%;
    padding: 0 0 0.5em;
  }

  #news .content_box ul li a .text {
    width: 100%;
    padding: 0 0 0 1em;
  }

  #news .content_box ul li a .text h4 {
    text-wrap: inherit;
  }

  #news .banner {
    width: 100%;
    margin: 2em 0 0;
  }
}

/****************************** access ******************************/
#access {
  margin: 0 auto calc(var(--content-margin) / 2);
}

/* maps */
#access .map {
  width: 100%;
  height: 370px;
  margin: 0 0 2em;
}

#access .map iframe {
  width: 100%;
  height: 100%
}

#access .lists {
  margin-inline: auto;
  font-family: "Source Han Serif Japanese", serif
}

#access .lists .list {
  --access-title-width: 20%;
}

#access .lists .list:not(:last-of-type) {
  padding: 0 0 1em;
  margin: 0 0 1em;
  border-bottom: 1px solid #505050;
}

#access .lists .list .title {
  width: var(--access-title-width);
  font-size: 1em;
  /* font-size: 2.1rem; */
}

#access .lists .list .title::before {
  content: "◆";
  margin: 0 0.5em 0 0;
  color: #580000;
}

#access .lists .list .content {
  width: calc(100% - var(--access-title-width));
  font-size: 1em;
  /* font-size: 2.1rem; */
  letter-spacing: .05em
}

#access .lists .list .content .flex_content {
  padding: 0 0 0 2em;
}

#access .lists .list .content .accent {
  font-size: 0.8em;
}

/****************************** info ******************************/
#info {
  /* margin: 0 auto var(--content-margin); */
  margin: 0 auto calc(var(--content-margin) / 4);
}

#info .inner {}

/* lists */
#info .lists {
  gap: 30px;
  font-family: "Source Han Serif Japanese", serif;
  /* font-size: 1.75em; */
  /* font-size: 3.8rem; */
}

#info .lists:not(:last-child) {
  margin-bottom: 20px;
}

#info .lists .title {
  width: 140px;
  color: #c9940e;
}

#info .lists .dash {
  height: 0.5em;
  border-bottom: 1px solid #505050;
  border-width: 1px;
  -webkit-transform: translateY(15px);
  transform: translateY(15px);
  width: 60px
}

#info .lists .dash img {
  vertical-align: super
}

#info .lists .time {
  letter-spacing: .025em;
}

#info .lists .reservation {
  padding: 2px;
  margin: 0 0 0 10px;
  border: 1px solid #fff;
  letter-spacing: .05em
}

@media screen and (max-width: 1280px) {
  #info .lists {
    font-size: 1.5em;
  }

  #info .lists .dash {
    width: 60px;
  }
}


@media screen and (max-width: 768px) {
  #info .lists {
    gap: 10px;
  }

  #info .lists .title {
    width: 56px;
  }

  #info .lists .dash {
    width: 17px;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
}


@media screen and (max-width: 480px) {
  #info .lists .title {
    width: 100%;
  }

  #info .lists .dash {
    width: 17px;
  }

  #info .lists .time {
    width: calc(100% - 27px);
  }
}

/* lists */
#info .list_line {
  font-family: "Source Han Serif Japanese", serif;
}

#info .list_line .list {
  padding: 1em 0;
}

#info .list_line .list:not(:last-child) {
  border-bottom: 1px solid #505050;
}

#info .list_line .list h2 {
  width: 25%;
  max-width: 125px;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 1px;
}

#info .list_line .list p {
  letter-spacing: 1px;
}

/****************************** company ******************************/
#company {
  margin: 0 auto var(--content-margin);
}

#company .inner {}

#company .content_box {
  font-size: 1em;
  /* font-size: 2.1rem; */
  font-family: "Source Han Serif Japanese", serif
}

#company .content_box .list {
  --company-width: 18%;
}

#company .content_box .list:not(:last-of-type) {
  border-bottom: 1px solid #505050;
  padding-bottom: 10px;
  margin-bottom: 10px
}

#company .content_box .list .title {
  width: var(--company-width);
  letter-spacing: .05em;
}

#company .content_box .list .content {
  width: calc(100% - var(--company-width));
  gap: 20px;
  letter-spacing: .05em;
}

#company .content_box .list .content a {
  width: 100%;
  max-width: 8em;
  font-family: "garamond-premier-pro-display", serif;
  padding: 0.2em 0.8em;
  background-color: #c9940e;
}

#company .content_box .list .content a .icon {
  width: 8px;
}
