@charset "UTF-8";
/* ======================================== Common ======================================== */
/* ============================== html tags ============================== */
html {
    box-sizing: border-box;
    position: relative;
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 62.5%;
    font-weight: 500;
}
*, *::before, *::after {
    box-sizing: inherit;
}
* {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
}
a[href^="tel:"] {
  text-decoration: none;
}

.-en{
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}
.-font-shippori{
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
}
.-f-arsenica{
  font-family: "arsenica-variable", sans-serif;
  font-variation-settings: "opsz" 100, "wght" 400;
}

body {history__right-wrap
    position: relative;
    -webkit-text-size-adjust: 100%;
    color: #242424;
    background: #FFF;
}
body.-fixed {
    overflow: hidden;
    position: fixed;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0;
}
img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
a {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}
button {
    cursor: pointer;
    display: block;
    outline: none;
    display: block;
    padding: 0;
    border: none;
    border-radius: 0;
    margin: 0;
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
table {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
}
tbody {
    display: block;
    width: 100%;
}
::-webkit-input-placeholder,
:-moz-placeholder {
    color: #CCC9C4;
}
th,
td {
    text-align: left;
}
input,
textarea {
    box-sizing: border-box;
    display: block;
    width: 100%;
    padding: 0;
    border: unset;
    border-width: 0;
    background-color: transparent;
    border: none;
    -webkit-appearance: none;
}
input[type="button"],input[type="text"],input[type="tel"],input[type="email"],input[type="submit"],input[type="image"],textarea{
    -webkit-appearance: none;
    border-radius: 0;
}
input[type="text" i] {
    padding: 0;
}
input:focus-visible,
textarea:focus-visible {
    outline: unset;
}
input:-webkit-autofill,
textarea:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #f4f0eb inset;
    -webkit-text-fill-color: #222;
}
select {
    border-width: 0px;
    border: none;
    color: #242424;
}
select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
  box-sizing: content-box;
}

/* ============================== End html tags ============================== */
/* ============================== Utility Classes ============================== */
/* color */
.color-white {
    color: #fff;
}
:root {
    --blue: #004097;
}
.color-blue {
    color: var(--blue);
}
/* background-color */
.bgc-white {
    color: #fff;
}
/* display inline-block */
.display_ib {
    display: inline-block;
}
/* Display Utilities: Show/Hide on Devices */
/* 
- .pc / .tablet-sp:
- Default: .pc is visible, .tablet-sp is hidden.
- Below 1000px: .pc is hidden, .tablet-sp is visible.
*/
.pc {
    display: block !important;
}
.tablet-sp {
    display: none !important;
}
.pc-on{
  display: block;
}
@media screen and (max-width: 1000px) {
    .tablet-sp {
        display: block !important;
    }
    .pc-on{
      display: none;
    }
}
/* 
- .pc-tablet / .sp:
- Default: .pc-tablet is visible, .sp is hidden.
- Below 750px: .pc-tablet is hidden, .sp is visible.
*/
.pc-tablet {
    display: block !important;
}
.sp {
    display: none !important;
}
@media screen and (max-width: 768px) {
    .pc-tablet {
        display: none !important;
    }
    .sp {
        display: block !important;
    }
    .pc {
        display: none !important;
    }
}
.hover-opacity {
    opacity: 1;
    transition: opacity .3s;
}
@media (hover: hover) {
    .hover-opacity:hover {
        opacity: .7;
    }
}
/* ============================== End Utility Classes ============================== */
/* ============================== Helper Classes ============================== */
/* Container Helper: Layout Width */
.wrapper {
	width: 90%;
    max-width: 1580px;
    margin: 0 auto;
}
/* inview */
.inview {
    transform: translate(0, 5px);
    opacity: 0;
    transition: filter 1.2s, opacity 1.2s, transform 1.2s;
}
.inview.show {
    transform: translate(0, 0);
    opacity: 1.0;
}
.l-main{
  margin-right: 5rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .l-main{
    margin-right: 3rem;
  }
}

/* ---------------------------------------------------------
 サイドメニュー
--------------------------------------------------------- */
.l-sidemenu {
  width: 50px;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1111;
}
@media (max-width: 767px) {
  .l-sidemenu {
    width: 3.5rem;
    height: calc(100svh - 20px);
  }
}
.is-page-loaded .l-sidemenu {
  left: 0px;
}
.l-sidemenu:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #9b8c55;
  content: "";
  z-index: -1;
}
/* ハンバーガーボタン */
.l-gnav-toggle {
  position: absolute;
  width: 2rem;
  height: 2rem;
  top: 3.6rem;
  left: 1.5rem;
  cursor: pointer;
  -webkit-transition: cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  transition: cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}
.l-gnav-toggle:hover {
  opacity: 0.7;
}
.l-gnav-toggle:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  -webkit-transition: cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  transition: cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}
.is-gnav-open .l-gnav-toggle:before {
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  top: 2px;
}
.l-gnav-toggle:after {
  content: "";
  position: absolute;
  bottom: 12px;
  right: 0;
  width: 60%;
  height: 1px;
  background: #fff;
  -webkit-transition: cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  transition: cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}
.is-gnav-open .l-gnav-toggle:after {
  width: 100%;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  bottom: 17px;
}
/* ハンバーガー中身 */
.l-gnav {
  position: fixed;
  width: calc(100% - 5rem);
  top: 0;
  right: 50px;
  height: 100%;
  z-index: 1111;
  opacity: 1;
  visibility: hidden;
  pointer-events: none;
  clip-path: inset(0 0 0 100%); /* 最初は全て切り取られて非表示（右から） */
  transition:
    opacity 0.8s cubic-bezier(0.77,0,0.175,1),
    visibility 0s linear 0.8s,
    clip-path 0.8s cubic-bezier(0.77,0,0.175,1); /* 追加 */
}
.l-gnav-video{
  width: 100%;
  margin-bottom: 3rem;
}
#gnav-video{
  width: 100%;
}

/* 表示時 */
.is-gnav-open .l-gnav {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  clip-path: inset(0 0% 0 0); /* 全体を表示 */
  transition:
    opacity 0.8s cubic-bezier(0.77,0,0.175,1),
    visibility 0s linear 0s,
    clip-path 0.8s cubic-bezier(0.77,0,0.175,1); /* 追加 */
}
@media (max-width: 767px) {
  .l-gnav {
    width: calc(100% - 3.5rem);
    left: 0;
    top: 0;
  }
  .l-gnav-toggle{
    left: 0.8rem;
  }
}
.l-gnav__body {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 11;
}
.l-gnav__inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.l-gnav__menu-wrapper{
  background: #bfab7b;
  overflow-y: scroll;
  padding: 10rem 5%;
  position: relative;
  overflow-y: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex: 1;
  height: 100%;
  flex-direction: column;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.l-gnav__menu-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari用 */
}
.l-gnav__menu-inner{
  width: 100%;
  height: auto;
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-height: 800px) {
  .l-gnav__menu-wrapper {
    justify-content: flex-start; 
  }
}
.l-gnav__menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  gap: 0 8rem;
}
.is-gnav-open .l-ganv__logo {
  opacity: 1;
}
.l-gnav__item {
  position: relative;
  margin-bottom: 2rem;
  transition: .5s;
}
@media (any-hover: hover) {
  .l-gnav__item:hover{
    opacity: 0.7;
  }
}
.l-gnav__item.-current::before{
  display: block;
  content: "";
  background: #000;
  position: absolute;
  width: 1rem;
  height: 1.1rem;
  left: -2em;
  top: 0.5em;
  background: url(../images/icon/subtitle-icon-w.png)no-repeat center center;
  background-size: cover;
}
.gnav-small-list .l-gnav__item.-current::before{
  top: .3em;
}
.l-gnav__item a {
  display: table;
  height: 100%;
  font-size: 2rem;
  position: relative;
  white-space: nowrap;
  color: #fff;
}
.gnav-small-list .l-gnav__item{
  margin-bottom: 1.5rem;
}
.gnav-small-list .l-gnav__item a{
  font-size: 1.5rem;
}
.l-gnav__item a:after {
  content: "";
  width: 0px;
  height: 0px;
  border-radius: 8px;
  position: absolute;
  top: 50%;
  left: 10px;
}
.is-gnav-open .l-gnav__item a:after {
  width: 8px;
  height: 8px;
  left: 0;
}
.l-gnav__img {
  width: 35%;
} 
.l-gnav__img video{
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 1080px) {
  .l-gnav__menu-wrapper{
    width: 100%;
    padding: 5%;
  }
  .l-gnav__menu{
    margin-left: 1.5rem;
  }
  .l-gnav__img{
    display: none;
  }
  .gnav-small-list .l-gnav__item a{
    font-size: 1.3rem;
  }
  .gnav-small-list .l-gnav__item.-current::before{
    top: .1em;
  }
}
@media (max-width: 768px){
  .l-gnav__menu{
    gap: 0px 10%;
  }
  .l-gnav__menu-wrapper{
    width: 100%;
    padding: 6rem 0 4rem;
  }
  .l-gnav__item.-current::before {
    position: absolute;
    width: 0.9rem;
    height: 1rem;
    left: -1.5em;
    top: 0.4em;
    background: url(../images/icon/subtitle-icon-w.png) no-repeat center center;
    background-size: cover;
  }
  .gnav-small-list .l-gnav__item.-current::before{
    top: 0.3em;;
  }
}
@media (max-width: 480px){
  .l-gnav__menu {
      gap: 0px 3rem;
  }
  .l-gnav__item a{
    font-size: 1.8rem;
    letter-spacing: -0.05em;
  }
}


/* サイドバー */
.l-sidemenu__inner {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.l-sidemenu__list {
  position: absolute;
  top: 37%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  /* -webkit-transition: cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s;
  transition: cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s; */
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.4rem;
}
.l-sidemenu__item {
  font-size: 1.8rem;
  white-space: nowrap;
  position: relative;
}
.l-sidemenu__bar{
  height: 1px;
  background: #d4cbb5;
}
.l-sidemenu__item a {
  color: #fff;
  display: block;
  transition: .5s;
}
.l-sidemenu__item a:hover {
  opacity: 0.5;
}
.l-sidemenu__item span {
  display: block;
  letter-spacing: -0.05em;
}
.l-sidemenu__btm{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2.5rem;
}
.l-sidemenu__hotel{
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  font-size: 1.3rem;
  color: #fff;
  vertical-align: middle;
  margin: 0 auto;
  position: relative;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
}
.l-sidemenu__hotel__link{
  line-height: 3;
  transition: .5s;
}
@media (any-hover: hover) {
  .l-sidemenu__hotel__link:hover{
    opacity: 0.7;
  }
}  
.l-sidemenu__hotel svg{
  fill: none;
  stroke: #fff;
  stroke-miterlimit: 10;
  width: 2rem;
  margin-bottom: 1.2rem;
}
.l-sidemenu-sns{
  display: flex;
  flex-direction: column;
  gap: 2rem 0;
}
.l-sidemenu__sns{
  width: 2rem;
  transition: .5s;
  margin: 0 auto;
}
@media (any-hover: hover) {
  .l-sidemenu__sns:hover{
    opacity: 0.7;
  }
}  
@media (max-width: 767px) {
  .l-sidemenu__item{
    font-size: 1.5rem;
  }
  .l-sidemenu__hotel svg{
    margin-bottom: 1rem;
  }
  .l-sidemenu__hotel{
    margin-bottom: 2.5rem;
  }
  .l-sidemenu-sns{
    gap: 1.5rem 0;
  }
  .l-sidemenu__hotel svg{
    width: 1.8rem;
  }
  .l-sidemenu__sns{
    width: 1.8rem;
  }
  .l-sidemenu__hotel__link{
    line-height: 2.3;
  }
}
/* ボタン */
.l-gnav-top{
  padding: 0 5% 6.5rem;
  width: 100%;
}
.gnav-menu-btn{
  display: flex;
  gap: 2.5rem;
}
.default-btn{
  margin-top: 4rem;
  width: 50%;
  transition: .5s;
}
@media (any-hover: hover) {
  .default-btn:hover{
    opacity: 0.7;
  }
}  
.default-btn__link{
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  border: 1px solid #fff;
  padding: 2.5rem;
  background: #c7b68c;
}
.default-btn__text{
  font-size: 1.8rem;
  color: #fff;
}
.default-btn__icon{
  width: 1.3rem;
}
.l-gnav-btm{
  display: flex;
  flex-wrap: nowrap;
  gap: 5rem;
  padding-top: 6.5rem;
  border-top: 1px solid #d6cbb3;
  padding: 6.5rem 5% 0;
  width: 100%;
}
.l-gnav-btm__logo{
  width: 23rem;
  min-width: 18rem;
}
.l-gnav-btm__title{
  font-size: 1.5rem;
  line-height: 2;
  color: #fff;
}
.gnav-tel{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 3rem;
  margin-top: 1rem;
}
.gnav-tel__item{
  color: #fff;
  font-size: 2rem;
  text-align: center;
}
.gnav-tel__item-samll{
  font-size: 1.5rem;
  vertical-align: baseline;
}
.gnav-partners{
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.gnav-partners-bnr
.l-sidemenu__insta-ttl__link{
  transition: .5s;
}
.gnav-partners__link{
  transition: .5s;
}
.gnav-partners-bnr .partners-bnr__forbes{
  width: 5rem;
}
.gnav-partners-bnr .partners-bnr__preferred{
  width: 8.7rem;
}
@media (any-hover: hover) {
  .l-sidemenu__insta-ttl__link:hover,
  .gnav-partners__link:hover{
    opacity: 0.7;
  }
}  
/* @media (max-width: 1340px) {
  .l-gnav-btm__logo{
    margin: 0 auto;
  }
} */
@media (max-width: 767px){
  .l-gnav__menu-wrapper {
    justify-content: flex-start;
    padding: 6rem 0 3rem;
  }
  .l-gnav-btm__logo{
    width: 15rem;
    margin: 0 auto;
  }
  .l-gnav-btm__r{
    display: inline-block;
    margin: 0 auto;
  }
  .l-gnav-top {
    padding: 0px 3% 4rem;
  }
  .l-gnav-btm__title{
    text-align: center;
  }
  .gnav-tel{
    justify-content: center;
    flex-direction: column;
  }
  .gnav-menu-btn{
    margin-top: 3.5rem;
    flex-direction: column;
    gap: 1.4rem;
  }
  .default-btn{
    margin-top: 0;
    width: 100%;
  }
  .l-gnav__list.gnav-small-list{
    width: 100%;
    margin-top: 1rem;
  }
  .l-gnav-btm{
    width: 90%;
    margin: 0 auto;
    border-top: none;
    padding-top: 0;
    gap: 2rem 0;
    flex-direction: column;
    padding-bottom: 0;
  }
  .default-btn__link{
    padding: 1.6rem 2rem;
  }
  .default-btn__text{
    font-size: 1.6rem;
  }
  .l-gnav-btm__title{
    font-size: 1.3rem;
  }
  .gnav-tel__item{
    font-size: 1.8rem;
  }
  .gnav-tel__item-samll{
    font-size: 1.3rem;
  }
  .gnav-partners{
    gap: 1.5rem;
    justify-content: center;
  }
  .gnav-partners-bnr .partners-bnr__forbes{
    width: 3.5rem;
  }
  .gnav-partners-bnr .partners-bnr__preferred{
    width: 6.5rem;
  }
  
}
/* ============================
  kvセクション 
 ============================*/
.home-mv{
  position: relative;
  background: rgba(0, 0, 0, 0.15);
}
.home-mv__fv{
    position: relative;
    height: 100svh;
    min-height: 60rem;
    z-index: 3;
}
.home-mv__bg{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}
.home-mv__bg video{
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.home-mv__logo{
    width: 20rem;
    padding-top: 6rem;
    margin: 0 auto;
}

.home-mv__logo.-color-gold .logo-cls-1{
  fill: #9b8c55;
}
.home-mv__logo.-color-gold .logo-cls-2{
  fill: #46464b;
}
.kv-catch-wrapper{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.kv-catch{
    font-size: 1.8rem;
    margin-bottom: 13.5rem;
}
.kv-catch__images img{
  vertical-align: bottom;
} 
.kv-catch__text{
    text-align: center;
    font-size: 1.8rem;
    color: #fff;
    line-height: 1.8;
}
@media (max-width: 768px) {
  .home-mv__logo{
    width: 18rem;
  }
  .home-mv .kv-catch__images{
    margin-bottom: 1.6rem;
  }
  .home-mv .kv-catch__images{
    width: 26rem;
  }
  .home-mv .kv-catch__text{
    font-size: 1.5rem;
  }
  .home-mv__logo{
    padding-top: 3.5rem;
  }
}
/* スクロールダウン */
.scroll-down{
    position: relative;
}
.scroll-down__link {
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 15px;
  padding: 0 0 10rem;
  color: #000;
  font-size: 14px;
  font-family: 'Josefin Sans', sans-serif;
  line-height: 1;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  writing-mode: vertical-lr;
  transition: .5s;
  overflow: hidden;
  margin: auto;
}
.scroll-down__link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 10rem;
  background: rgba(255, 255, 255, 0.5);
}
.scroll-down__link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 10rem;
  background: #fff;
}
.scroll-down__link:hover {
  opacity: .7;
}
.scroll-down__link:after {
  animation: sdl01 2s cubic-bezier(1, 0.2, 0.4, 1) infinite;
}
@keyframes sdl01 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
@media (max-width: 768px){
  .scroll-down__link{
    padding: 0 0 7rem;
  }
  .scroll-down__link:before,
  .scroll-down__link:after{
    height: 7rem;
  }
  .kv-catch{
    margin-bottom: 9rem;
  }
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝
kvコンセプト
＝＝＝＝＝＝＝＝＝＝＝＝ */
.home-concept{
  padding: 10rem 0;
}
.home-concept__inner{
  max-width: 93rem;
  width: 90%;
  margin: 0 auto;
}
.concept-title-block__title{
  margin-top: 2rem;
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: #fff;
  font-size: 3rem;
  line-height: 1.8;
  position: relative;
  left: -1rem;
}
.concept-title-block__text{
  color: #fff;
  font-size: 1.5rem;
  line-height: 2;
}
.concept-title-block__textarea{
  margin-top: 3.5rem;
}
.concept-title-block__text + .concept-title-block__text{
  margin-top: 2.5rem;
}
@media (max-width: 768px){
  .concept-title{
    padding-left: 5%;
  }
  .concept-title-block__textarea{
    margin-top: 4rem;
  }
  .concept-title-block__text + .concept-title-block__text{
    margin-top: 0;
  }
  .home-mv .section-button__foot{
    margin-top: 5rem;
  }
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝
home-celebrations
＝＝＝＝＝＝＝＝＝＝＝＝ */
.home-celebrations{
    background: #fff;
    position: relative;
}
.title-block{
  position: relative;
}
.title-block.pl100{
  padding-left: 8rem;
}
.line-obj01{
  position: absolute;
  max-width: 1800px;
  width: 104%;
  left: -2%;
  right: 0;
  margin: 0 auto;
}
.celebrations{
  position: relative;
  z-index: 2;
  padding: 8rem 0 15rem;
}
.celebrations__item{
    display: flex;
    margin-bottom: 2rem;
}
.celebrations__figure{
    width: 48%;
    position: relative;
}
.celebrations__figure-inr{
    position: relative;
    z-index: 3;
    border-radius: 5px;
    overflow: hidden;
}
.js_parallax-frame{
  position: relative;
  /* border-radius: 5px; */
  overflow: hidden;
}
.parallax-figure{
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  transition: .8s;
}
.parallax-figure img{
  object-fit: cover;
  object-position: 50% 50%;
  overflow: hidden;
  vertical-align: top;
  max-width: 100%;
  height: 105%;
}
.cele-figure01{
  position: absolute;
  width: 38rem;
  left: -4rem;
  bottom: -10rem;
}
.cele-petal{
  position: absolute;
  width: 4rem;
}
.item {
  position: absolute;
  right: -15rem;
  bottom: 30%;
  width: 50%;
  height: 50%;
}
.item-01 {
  z-index: 1;
  animation-duration: 15s;
  right: -5rem;
  width: 30%;
  height: 30%;
}
.item-02 {
  z-index: 1;
  animation-duration: 15s;
  left: -5rem;
  width: 30%;
  height: 30%;
}
.item-03 {
  z-index: 4;
  left: 40%;
  animation-duration: 8s;
}
.item-04 {
  z-index: 1;
  animation-duration: 10s;
}
.round {
  position: relative;
  border-radius: 50%;
  width: 14rem;
  height: 14rem;
}
.round-01 {
  width: 100%;
  background: #b1a7c6;
  filter: blur(30px);
}
.round-02 {
  width: 100%;
  background-color: #75b12c;
  filter: blur(30px);
}
/* 回転アニメーション */
/* @keyframes rotate-item {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
} */
/* 点滅アニメーション */
/* @keyframes flash {
    0%,
    100% {
        opacity: 0.8;
    }
    50% {
        opacity: 0.5;
    }
} */
.title-block{
    width: 50%;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    padding: 5rem;
}
.title-block__subtitle{
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.title-block__subtitle:before{
  display: block;
  content: "";
  width: 1.1rem;
  height: 1.1rem;
  background: url(../images/icon/subtitle-icon.png)no-repeat;
  background-size: contain;
}
.title-block__title{
    font-size: 3rem;
    line-height: 1.8;
}
.title-block__foot{
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    transition: .5s;
}
a.title-block__foot:hover{
  opacity: .7;
}
.title-block__label{
    font-size: 1.8rem;
}
.flex-reverse{
    flex-direction: row-reverse;
}
.image-banner{
  position: relative;
}
.line-obj02{
  position: absolute;
  width: 50%;
  left: -2%;
  bottom: -5rem;
  z-index: 1;
}
.line-obj03{
  opacity: 0.7;
  display: none;
  position: absolute;
  width: 110%;
  top: -8%;
  left: -4%;
  margin: 0 auto;
  z-index: 1;
}
.image-banner__inner{
  display: flex;
  gap: 1rem;
}
.image-banner__icon{
  width: 2.3rem;
}
.image-banner__item{
  position: relative;
  z-index: 2;
  background: #fff;
}
.image-banner__link{
    display: block;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}
.image-banner__content{
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 10%;
  top: 0;
  z-index: 1;
}
.image-banner__title{
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  font-size: 3rem;
  color: #fff;
}
.image-banner__bg{
  transition: .5s;
}
.petal__fig{
  position: absolute;
}
@keyframes sakura {
  0% {
    opacity: 0;
  }
  20% {
    transform:translate(3px,30px) rotate(0deg);
    opacity: 1;
  }
  30% {
    transform:translate(0,50px) rotate(0deg);
  }
  50% {
    transform:translate(-20px,100px)  rotate(50deg);
  }
  70% {
    transform:translate(-40px,150px) rotate(30deg);
    opacity: .8;
  }
  90% {
    transform:translate(-60px,200px) rotate(-20deg);
  }
  100% {
    transform:translate(-70px,230px);
    opacity: 0;
  }
}

@keyframes sakura02 {
  0% {
    opacity: 0;
  }
  20% {
    transform:translate(3px,30px) rotate(0deg);
    opacity: 1;
  }
  30% {
    transform:translate(0,50px) rotate(0deg);
  }
  50% {
    transform:translate(-20px,100px)  rotate(20deg);
  }
  70% {
    transform:translate(-40px,150px) rotate(30deg);
    opacity: .8;
  }
  90% {
    transform:translate(-60px,200px) rotate(-20deg);
  }
  100% {
    transform:translate(-70px,230px);
    opacity: 0;
  }
}

.petal01{
  width: 4rem;
  top: 0;
  right: 1.5rem;
  animation: sakura linear 6s infinite;
  opacity: 0;
}
.petal02{
  width: 4rem;
  top: 9.5rem;
  right: -3.5rem;
  animation: sakura02 linear 6s infinite;
  opacity: 0;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.petal03{
  position: absolute;
  width: 4.5rem;
  top: 3.5rem;
  left: -4.5rem;
  animation: sakura linear 6s infinite;
  opacity: 0;
}
.petal04{
  position: absolute;
  width: 4rem;
  left: 36.5rem;
}
.petal03 .petal__fig,
.petal04 .petal__fig{
  width: 100%;
}
.petal05 .petal__fig{
  display: none;
  width: 4rem;
  right: 0;
  top: 3.5rem;
}
@media (any-hover: hover) {
  .image-banner__link:hover .image-banner__bg{
    transform: scale(1.02);
    opacity: 0.7;
  }
}
@media (max-width: 1000px) {
  .home-celebrations{
    overflow: hidden;
  }
  .celebrations__item{
    flex-direction: column;
    margin-bottom: 5rem;
  }
  .celebrations__item:last-child{
    margin-bottom: 0;
  }
  .celebrations__figure{
    width: 100%;
  }
  .title-block{
    display: block;
    width: 100%;
    padding: 4rem 0 0;
  }
  .line-obj01,.line-obj02{
    display: none;
  }
  .line-obj03{
    display: block;
  }
  .round-01,
  .round-02{
    margin: 0 auto;
  }
  .item-01 {
    z-index: 1;
    right: 0;
    left: 0;
    bottom: -4rem;
    margin: 0 auto;
    width: 10rem;
    height: auto;
  }
  .item-02 {
    z-index: 1;
    right: 0;
    left: 0;
    bottom: -4rem;
    margin: 0 auto;
    width: 10rem;
    height: auto;
  }
  .image-banner__inner{
    flex-direction: column;
  }
  .title-block.pl100{
    padding-left: 0;
  }
  .petal01{
    width: 3rem;
    top: -6rem;
    right: 1.5rem;
  }
  .petal02{
    width: 2.5rem;
    top: -3rem;
    right: -0.5rem;
  }
  .petal03{
    width: 3rem;
    top: -2.5rem;
    left: -1.5rem;
  }
  .petal04{
    display: none;
  }
  .petal05 .petal__fig{
    display: block;
  }
}
@media (max-width: 768px){
  .title-block{
    padding: 2rem 0 0;
    width: 100%;
  }
  .image-banner__link{
    aspect-ratio: 295/155;
  }
  .title-block__foot{
    gap: 1.5rem;
  }
  .image-banner__title{
    font-size: 2.4rem;
  }
  .title-block__title{
    font-size: 2.4rem;
  }
  .cele-figure01{
    position: absolute;
    width: 20rem;
    left: -3rem;
    bottom: -8.5rem;
  }
  .image-banner__icon{
    width: 1.7rem;
  }
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝
セクションボタン
＝＝＝＝＝＝＝＝＝＝＝＝ */
.section-button{
  background: #aeaeae;
}
.section-button__link{
    position: relative;
    display: block;
}
.section-button__link::before{
  content: "";
  position: absolute;
  background: #000;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  opacity: 0;
  transition: .5s;
}
@media (any-hover: hover) {
  .section-button__link:hover::before{
    opacity: .3;
  }
  .section-button__link:hover .m-link-icon img{
    margin-left: 6px;
  }
}
.section-button__inner{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10rem;
    margin: 0 auto;
    max-width: 1580px;
    width: 90%;
    z-index: 1;
}
.section-button__foot{
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 5rem;
}
.section-button__label{
    font-size: 1.8rem;
    color: #fff;
}
.section-button__subtitle{
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.section-button__subtitle:before{
    display: block;
    content: "";
    width: 1.1rem;
    height: 1.1rem;
    background: url(../images/icon/subtitle-icon-w.png)no-repeat;
    background-size: contain;
}
.section-button__title{
    color: #FFF;
    font-size: 3rem;
    line-height: 1.8;
}
.section-button__bg{
    height: 65rem;
    overflow: hidden;
}
.section-button__bg img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: .5s;
}
@media (any-hover: hover) {
  .section-button:hover .section-button__bg img{
    transform: scale(1.02);
  }
  .section-button__foot:hover .m-link-icon img{
    margin-left: 6px;
  }
}
@media (max-width: 768px) {
  .section-button__inner{
    bottom: 4.5rem;
  }
  .section-button__title{
    font-size: 2.4rem;
  }
  .section-button__foot{
    margin-top: 2rem;
    gap: 1.5rem;
  }
}
@media (max-width: 480px) {
  .section-button__bg{
    height: auto;
    aspect-ratio: 330/560;
  }
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝
ウェディングレポート
＝＝＝＝＝＝＝＝＝＝＝＝ */
.home-report{
    overflow: hidden;
    padding: 18.5rem 0 11rem;
    background: #fff;
    position: relative;
    color: #292929;
}
.report-fig01{
    position: absolute;
    right: -5rem;
    bottom: -10rem;
    width: 38.5rem;
    z-index: 999;
}
.report-fig02{
  position: absolute;
  right: 10%;
  top: 0;
  width: 30rem;
  z-index: 999;
}
.home-report__wrap{
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.home-report__head-text{
    position: relative;
    bottom: -2.4rem;
    width: auto;
    height: 10.4rem;
}
.home-report__head-text img{
    width: auto;
    height: 100%;
}
.home-report__title {
    position: absolute;
    font-weight: normal;
    right: 0;
    top: 0;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 3rem;
    line-height: 1.2;
    margin-left: 40px;
    width: 23rem;
    height: 104%;
    background: #fff;
    z-index: 99;
    display: flex;
    align-items: center;
}
.wedding-slider{
    position: relative;
}
.wedding-slider:before{
    display: block;
    content: "";
    position: absolute;
    right: 23rem;
    z-index: 9;
    width: 14rem;
    height: 100%;
    background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 100%
    );
}
.wedding-btm{
  display: flex;
  align-items: center;
  width: calc(100% - 25rem);
  justify-content: space-between;
  margin-top: 4rem;
  position: relative;
  z-index: 2;
}
.wedding-btm .title-block__foot{
  margin-top: 0;
}
.home-concept {
  position: relative;
  padding-bottom: 30rem;
}
.home-concept__inner {
  display: flex;
  flex-direction: column;
}
.concept-title{
  width: 100%;
  z-index: 10;
}
.concept-title-en{
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.concept-title-en:before{
  display: block;
  content: "";
  width: 1.1rem;
  height: 1.1rem;
  background: url(../images/icon/subtitle-icon-w.png)no-repeat;
  background-size: contain;
}
.concept-title-en__title{
  color: #fff;
  font-size: 1.5rem;
}
.concept-gallery{
  display: block;
  width: 100%;
  padding-bottom: 5rem;
  margin-top: -50rem;
}
.concept-gallery img{
  position: relative;
  display: block;
  border-radius: 5px;
}
.concept-gallery01{
  width: 30%;
  margin: auto;
  margin-right: 22rem;
}
.concept-gallery02{
  width: 32%;
  margin: auto;
  margin-top: 13rem;
  margin-right: 3rem;
}
.concept-gallery03{
  width: 25%;
  margin: auto;
  margin-top: 3rem;
  margin-left: 25rem;
}
.concept-gallery04{
  width: 40%;
  margin: auto;
  margin-right: 0;
  margin-top: 11rem;
}
.report-card{
    margin-right: 4.5rem;
    transition: .5s;
}
.report-card__images{
    overflow: hidden;
    border-radius: 0.6rem;
    transition: .5s;
}
.report-card__images img{
  transition: .5s;
}
.report-card:hover .report-card__images img{
  transform: scale(1.05);
}
.report-card:hover{
  opacity: 0.7;
}
.report-card__tit{
    margin-top: 2rem;
    line-height: 1.5;
    font-size: 1.6rem;
}
.report-detail{
  display: flex;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.report-detail__item{
    color: #aeaeae;
    font-size: 1.4rem;
    line-height: 1.5;
}
.report-detail__item:after{
  content: "｜";
  color: #aeaeae;
}
.report-detail__item:last-child::after{
  display: none;
}
.arrow-container{
    width: 7.6rem;
    display: flex;
    justify-content: space-between;
}
.arrow-container button{
    width: 3rem;
}
.slick-prev{
    transform: rotate(180deg);
}
.slick-arrow{
  transition: .5s;
  cursor: pointer;
}
.slick-arrow:hover{
  opacity: 0.7;
}
.concept-gallery-btm{
  padding-top: 10rem;
}
.report-not-text{
  font-size: 1.8rem;
  padding-top: 5rem;
  text-align: center;
  display: block;
  width: 100%;
}
@media (max-width: 768px) {
  .home-concept{
    padding: 5rem 0 12rem;
  }    
  .home-report{
    padding: 10rem 0 6rem 0;
  }
  .home-report__title{
    width: auto;
    background: none;
  }
  .report-card{
      margin-right: 5rem;
  }
  .wedding-slider:before{
    display: none;
  }
  .wedding-btm{
    width: 100%;
  }
  .wedding-btm .m-link-icon{
    background: #fbf9f5;
  }
  .home-report__head-text{
    height: 9.2vw;
    bottom: -2vw;
  }
  .report-fig01{
    z-index: 1;
    width: 50%;
    right: -12%;
    bottom: -2.5rem;
    opacity: 0.6;
  }
  .report-fig02{
    width: 14.5rem;
    top: 1.5rem;
  }
  .arrow-container{
    width: 7rem;
  }

  .concept-gallery{
    padding-bottom: 0.8rem;
    margin-top: -40rem;
  }
  .concept-gallery01 {
      width: 50%;
      margin: auto;
      margin-right: 0;
      margin-bottom: 40rem;
  }
  .concept-gallery02 {
      width: 50%;
      margin: auto;
      margin-right: 0;
      margin-bottom: 20rem;
  }
  .concept-gallery03 {
      width: 40%;
      margin: auto;
      margin-left: -1rem;
      margin-bottom: 1rem;
  }
  .concept-gallery04{
    width: 50%;
    margin-top: 5rem;
    margin-right: 0;
  }
  .concept-gallery-btm{
    padding-bottom: 0;
  }
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝
iframe
＝＝＝＝＝＝＝＝＝＝＝＝ */
.home-iframe{
  background: linear-gradient(0deg, rgba(255, 255, 255, 1), rgba(248, 248, 248, 1));
  padding: 7rem 5%;
}
.home-iframe iframe{
  border-radius: 5px;
}

@media (max-width: 1000px) {
  .home-iframe{
    padding: 6rem 5%;
  }
  .home-iframe iframe {
    max-width: 640px;
    margin: 0 auto;
    display: block;
    border-radius: 0;
    height: 1400px;
  }
}
@media (max-width: 768px) {
  .home-iframe{
    padding: 0;
  }
  .home-iframe iframe{
    height: 1500px;
  }
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝
ループスライダー
＝＝＝＝＝＝＝＝＝＝＝＝ */
.loop-slider {
    position: relative;
    z-index: 999;
    overflow: hidden;
    width: 100%;  
}
.slider-inner {
    display: flex;
    white-space: nowrap;   
}
.loop-slide__item {
    flex-shrink: 0;
    width: 48rem;
}
.loop-slide__item img {
    display: block;
    width: 100%;
    height: auto;
}
@media (max-width: 768px) {
  .loop-slide__item {
    width: 30rem;
  }    
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝
トップ　中盤メニュー
＝＝＝＝＝＝＝＝＝＝＝＝ */
.middle-menu{
    background: #fff;
    padding: 12rem 0 12.5rem;
}
.middle-menu__wrapper{
    display: flex;
    align-items: center;
    gap: 6.5%;
}
.middle-menu__figure{
    width: 50%;
    min-width: 37rem;
    overflow: hidden;
    border-radius: 5px;
}
.middle-menu__list{
    flex: 1;
}
.middle-menu__item{
    border-bottom: 1px solid #767676;
}
.middle-menu__link{
    padding: 4rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .5s;
}
.middle-menu__title{
    font-size: 2.4rem;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 400;
}
.m-link-icon{
    width: 6rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000;
    border-radius: 10px;
}
.m-link-icon.-white{
  border-color: #fff;
}
.m-link-icon img{
  width: 1rem;
  transition: .3s;
}
@media (any-hover: hover) {
  .middle-menu__link:hover{
    opacity: 0.7;
  }
  .title-block__foot:hover .m-link-icon img{
    margin-left: 6px;
  }
  .middle-menu__link:hover .m-link-icon img{
    margin-left: 6px;
  }
}
@media (max-width: 1000px){
  .middle-menu__link{
    padding: 3rem 0;
  }
  .middle-menu__title{
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .middle-menu{
    padding: 6.5rem 0;
  }
  .middle-menu__figure{
    width: 100%;
    min-width: 100%;
  }
  .middle-menu__wrapper{
    display: block;
  }
  .middle-menu__list{
    margin-top: 3rem;
  }
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝
 ギャラリーバナー
＝＝＝＝＝＝＝＝＝＝＝＝ */
.bnr-gallery{
  background: #fff;
}
.bnr-gallery__link{
    background: #fff;
    position: relative;
    display: block;
    height: 25rem;
    overflow: hidden;
}
.bnr-gallery__image{
    position: relative;
    z-index: 1;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    transition: .5s;
}
@media (any-hover: hover) {
  .bnr-gallery__link:hover .bnr-gallery__image{
    transform: scale(1.02);
    opacity: 0.8;
  }
}
.bnr-gallery__inner{
    max-width: 1280px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 100%;
}
.bnr-gallery__title{
    font-size: 3rem;
    color: #fff;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 400;
}
.bnr-gallery__icon{
  width: 2.3rem;
}
@media (min-width: 1400px){
  .bnr-gallery__link{
    height: 40rem;
  }
}
@media (max-width: 768px) {
  .bnr-gallery__title{
    font-size: 2.6rem;
  }
  .bnr-gallery{
    aspect-ratio: 330/170;
  }
  .bnr-gallery__link{
    height: 100%;
  }
  .bnr-gallery__icon{
    width: 1.7rem;
  }
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 フッター
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.footer{
    padding: 8.5rem 0 8rem;
    padding-right: 5rem;
    background: url(../images/common/ft-bg.jpg)no-repeat center center;
    background-size: cover;
}
.footer__inner{
    max-width: 1540px;
    width: 90%;
    margin: 0 auto;
}
.footer__top{
  padding: 0 3rem;
  display: flex;
  align-items: center;
  gap: 6rem;
}
.footer__logo-area{
    transition: .5s;
}
.footer__logo-area svg{
  width: 18rem;
}
.footer__logo-link .path {
  fill: #fff;
}
.footer__info-area{
  width: 100%;
  padding-top: 0.5rem;
  justify-content: space-between;
  align-items: end;
}
.footer__info-area-inr{
  width: 100%;
}
.footer__reservation-title,
.footer__reservation-hours{
    color: #fff;
    font-size: 1.5rem;
    line-height: 2;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 400;
}
.footer__info-area-capitol{
  display: flex;
  gap: 0;
  color: #fff;
  font-size: 1.3rem;
  line-height: 2;
  /* font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400; */
  margin-top: 0.3em;
  transition: .3s;
}
.footer__info-area-capitol:hover{
  opacity: 0.7;
}
.footer__contact{
    display: flex;
    flex-wrap: wrap;
    gap: 0 4rem;
    /* margin-top: 0.5rem; */
}
.footer__contact-item{
    color: #fff;
    font-size: 2rem;
    line-height: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 400;
}
.footer__small-text{
  font-size: 1.5rem;
}
.footer__social-wrap{
  display: flex;
  gap: 1rem 3rem;
  align-items: center;
  margin-top: 1rem;
}
.footer__social-link{
    color: #fff;
    font-size: 1.5rem;
    line-height: 2;
    transition: .5s;
    /* font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400; */
}
@media (any-hover: hover) {
  .footer__social-link:hover{
    opacity: 0.7;
  }
  .footer__logo-area:hover{
    opacity: 0.7;
  }
}
.footer__social-separator{
    color: #fff;
    margin: 0 1.5rem;
    font-size: 1.5rem;
    line-height: 2;
}
.footer__bottom{
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    padding: 5rem 3rem 0;
    margin-top: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer__partners{
    display: flex;
    align-items: center;
    gap: 2rem 3rem;
}
.partners-bnr__tokyu{
    width: 15rem;
}
.partners-bnr__forbes{
    width: 4.6rem;
}
.partners-bnr__preferred{
  width: 7.7rem;
}
.partners-bnr__link{
  transition: .5s;
}
@media (any-hover: hover) {
  .partners-bnr__link:hover{
    opacity: 0.7;
  }
}
.footer__sub-list{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
}
.footer__sub-item{
    font-size: 1.3rem;
    color: #fff;
}
.footer__copyright-wp{
  margin-top: 4rem;
  font-size: 1.2rem;
  padding: 0 3rem;
}
.footer__copyright-title{
  color: #fff;
  font-size: 1.3rem;
  line-height: 2;
  margin-bottom: 2rem;
  font-weight: normal;
}
.footer__copyright{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  color: #fff;
  line-height: 2;
  display: block;
}
.footer__sub-link{
    display: flex;
    align-items: center;
    transition: .5s;
    /* font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400; */
}
@media (any-hover: hover) {
  .footer__sub-link:hover{
    opacity: 0.7;
  }
}
.link-icon{
    margin-left: 0.5rem;
    width: 1rem;
}
@media (max-width: 1000px) {
  .footer__sub-list{
    justify-content: center;
  }
  .footer__top{
    flex-direction: column;
    gap: 2rem;
  }
  .footer__contact{
    margin-top: 1rem;
    justify-content: center;
  }
  .footer__info-area-inr {
    padding-top: 0;
    justify-content: center;
  }
  .footer__info-area-capitol{
    text-align: center;
    justify-content: center;
  }
  .footer__bottom{
    gap: 2.5rem;
    flex-direction: column-reverse;
    margin-top: 3rem;
    padding: 3rem 3% 0;
  }
  .footer__sub-nav{
    width: 100%;
  }
  .footer__partner-area{
    width: 100%;
  }
  .footer__reservation{
    text-align: center;
  }
  .footer__partners{
    gap: 3rem;
    justify-content: center;
  }
  .footer__copyright-wp{
    margin-top: 3rem;
    padding: 0;
  }
  .footer__copyright{
    text-align: center;
  }
  .footer__copyright-title{
    text-align: center;
    margin-bottom: 1.5rem;
  }
  .footer__social-wrap {
    margin-top: 2rem;
  }
  .footer__social{
    display: flex;
    width: 100%;
    justify-content: center;
  }
  .footer__social-wrap{
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 768px){
  .footer{
    padding: 4rem 3.5rem 5rem 0;
  }
  .footer__contact{
    flex-direction: column;
    text-align: center;
  }
  .partners-bnr__tokyu,
  .gnav-partners-bnr{
    width: 13rem;
  }
  .partners-bnr__forbes{
    width: 3.5rem;
  }
  .partners-bnr__preferred{
    width: 6.5rem;
  }
  .link-icon{
      width: 1rem;
  }
  .footer__contact-item{
    display: block;
    line-height: 1.8;
    font-size: 1.8rem;
  }
  .footer__small-text{
    display: block;
    font-size: 1.3rem;
  }
  .footer__logo-area svg{
    width: 14.5rem;
  }
}

@media (max-width: 500px){
  .footer__sub-list{
    max-width: 25rem;
    margin: 0 auto;
    justify-content: left;
  }
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
  下層ページ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.bg-white{
  background: #fff;
}
.bg-pink{
  background: linear-gradient(
    330deg, 
    #faf6f2 0%,
    #fffffb 100%
  );
}
.u-ly-head{
  margin-bottom: 6rem;
}
.u-ly-head__text{
  margin: 10rem 0 0;
  text-align: center;
  font-size: 3.5rem;
  font-weight: normal;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
}
.regular__inner{
  max-width: 102rem;
  width: 90%;
  margin: 0 auto;
}
.small__inner{
  max-width: 90rem;
  width: 90%;
  margin: 0 auto;
}
.ly-btm-default{
  padding-bottom: 20rem;
}
.main-contents{
  overflow: hidden;
  width: calc(100% - 5rem);
}
@media screen and (max-width: 768px) {
  .u-ly-head {
    margin-bottom: 4rem;
  }
  .u-ly-head__text{
    margin: 5rem 0 0;
    font-size: 2.8rem;
  }
  .ly-btm-default{
    padding-bottom: 10rem;
  }
  .main-contents{
    width: calc(100% - 3.5rem);
  }
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝
  お知らせ
＝＝＝＝＝＝＝＝＝＝＝＝＝　*/
.topics-list__link{
  display: flex;
  gap: 0 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid #efebe2;
  transition: .5s;
}
@media (any-hover: hover) {
  .topics-list__link:hover{
    opacity: 0.7;
  }
}  
.topics-list__date{
  font-size: 1.5rem;
  line-height: 1.75;
  color: #9e8c4b;
  width: 14rem;
  position: relative;
  font-weight: bold;
}
.topics-list__date::after{
  content: "|";
  color: #9e8c4b;
  position: absolute;
  right: 0;
}
.topics-list__title{
  flex: 1;
  font-size: 1.5rem;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .topics-list__link{
    flex-direction: column;
  }
  .topics-list__date::after{
    display: none;
  }
}
/* ===== pagination ===== */
.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-top: 7.5rem;
}
.page-numbers {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  color: #c7b68c;
  background: #f2ede2;
  border-radius: 0.3rem;
  opacity: 1;
  font-size: 2rem;
  transition: opacity .3s, background-color .3s;
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: normal;
}
.page-numbers.current {
  color: #fff;
  background-color: #c7b68c;
  opacity: 1;
}
a.page-numbers:hover {
  opacity: 0.7;
}
a.page-numbers span::before {
  content: '';
  position: absolute;
  bottom: .8rem;
  left: 50%;
  transform: translate(-50%, 0);
  display: block;
  width: 12px;
  padding-top: 2px;
  color: #242424;
  background-color: #fff;
}
/* ----- pagination responsive (1000) ----- */
@media screen and (max-width: 1000px) {
  .pagination {
      gap: 1rem;
      margin-top: 6rem;
  }
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝
  お知らせ 詳細
＝＝＝＝＝＝＝＝＝＝＝＝＝　*/
.topics-single{
  padding-bottom: 23.5rem;
}
.topics-single__wrapper{
  width: 90%;
  max-width: 70rem;
  margin: 0 auto;
}
.topics-single__title-area{
  text-align: center;
  margin:9rem 0 3.5rem;
}
.topics-single__date{
  font-size: 1.3rem;
  margin-bottom: 2rem;
}
.topics-single__title{
  font-size: 3.6rem;
  line-height: 1.5;
}
/* ボタン */
.topic-btn-wrap{
  text-align: center;
  margin-top: 4rem;
}
.topic-btn{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0 4.5rem;
  font-size: 1.7rem;
  border-bottom: 1px solid #242424;
  margin: 0 auto;
  padding-bottom: 1rem;
  transition: .5s;
}
@media (any-hover: hover) {
  .topic-btn:hover{
    opacity: 0.7;
  }
}  
@media screen and (max-width: 768px){
  .topics-single{
    padding-bottom: 10rem;
  }
  .topics-single__title-area{
    margin: 6rem 0 4rem;
  }
  .topics-single__date{
    margin-bottom: 1.5rem;
  }
  .topics-single__title{
    font-size: 2.8rem;
  }
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝
  ウェディングレポート一覧
＝＝＝＝＝＝＝＝＝＝＝＝＝　*/
.report .u-ly-head{
  position: relative;
  z-index: 99!important;
}
.c-report-flower{
  position: absolute;
  width: 38.5rem;
  right: -7rem;
  bottom: -16.5rem;
  z-index: -1;
}
.report-list{
  display: flex;
  flex-wrap: wrap;
  gap: 5.5rem 4.5rem;
}
.report-list .report-card{
  width: calc((100% - 9rem)/3);
  margin-right: 0;
}
/* 全体レイアウト */
.report-filter {
  position: relative;
  z-index: 9;
  margin-top: 7rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem 6rem;
  align-items: baseline;
}

/* グループ全体 */
.report-filter__group-wp {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem 2.8rem;
}

/* 各フィルターグループ（アコーディオン1セット） */
.report-filter__group {
  border-bottom: 1px solid #242424;
  width: 17rem;
  position: relative;
}

.report-filter__group.-ceremony{
  width: 22rem;
}
.report-filter__group.-reception-hall{
  width: 15rem;
}
.report-filter__group.-capacity{
  width: 12rem;
}
.report-filter__group.-season{
  width: 15rem;
}

/* タイトル部分（クリックで開閉） */
.report-filter__group__title {
  font-size: 1.7rem;
  box-sizing: border-box;
  padding: 0.3rem 0 1rem 0;
  position: relative;
  -webkit-appearance: none;
  appearance: none;
  background-image: url(../images/icon/report-select.png);
  background-repeat: no-repeat;
  background-size: 20px auto;
  background-position: right 0px bottom 8px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  text-wrap: nowrap;
  overflow: hidden;
  width: 100%;
  cursor: pointer;
  transition: .4s;
}
@media (any-hover: hover) {
  .report-filter__group__title:hover{
    opacity: 0.7;
  }
}  
.report-filter__group__title-text{
  display: block;
  overflow: hidden;
  width: calc(100% - 3rem);
}

/* 中身を開閉 */
.report-filter__group__container {
  position: absolute;
  top: 3.1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #fff;
  width: 100%;
  z-index: 1;
  box-sizing: border-box;
}
.report-filter__group__container__inner{
  padding: 0.5em 1em;
}

.report-filter__group.is-accordion-active .report-filter__group__container {
  max-height: 300px; /* 適宜調整 */
}
/* ラジオボタン */
.report-filter__group__container label {
  display: block;
  align-items: center;
  font-size: 1.4rem;
  font-family: "Zen Old Mincho", serif;
  gap: 0.5rem;
  padding: 0.4rem 0;
  cursor: pointer;
  line-height: 1.4;
}
.report-filter__group__container input[type="radio"] {
  accent-color: #9E8C4B;
  margin: 0;
  cursor: pointer;
}

/* 送信ボタン */
.report-filter__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #9E8C4B;
  border-radius: 0.5rem;
  line-height: 4.4rem;
  padding: 0 1.5rem;
  width: 17rem;
  font-size: 1.7rem;
  text-align: left;
  color: #9E8C4B;
  background: #fff;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
}

.report-filter__icon {
  width: 0.8rem;
}

@media screen and (max-width: 1000px){
  .report-list{
    gap: 5.5rem 3rem;
  }
  .report-list .report-card{
    width: calc((100% - 3rem)/2);
    margin-right: 0;
  }
}
@media screen and (max-width: 768px){
  .report-filter{
    gap: 2.4rem 2rem;
    margin-top: 4rem;
  }
  .report-list .report-card{
    width: 100%;
    margin-right: 0;
  }
  .report-filter__group-wp{
    width: 100%;
    gap: 1rem 2.5rem;
    padding: 0 1.2rem;
  }
  .report-filter__group{
    width: calc((100% - 2.5rem)/2);
  }
  .report-filter__select{
    width: 100%;
  }
  .report-filter__button{
    width: 20rem;
  }
  .c-report-flower{
    width: 22.5rem;
    right: -5rem;
    bottom: -14.5rem;
  }  
  .report-filter__group.-ceremony,
  .report-filter__group.-reception-hall,
  .report-filter__group.-capacity,
  .report-filter__group.-season{
    width: calc((100% - 2.5rem)/2);
  }
  .report-filter__group__container label {
    margin: 0;
  }
}

/* 詳細 */
.s-report-detail{
  margin-bottom: 3.5rem;
}
.report-couple{
  display: flex;
  justify-content: center;
}
.report-couple__name{
  font-size: 2.4rem;
}
.reception-detail{
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 3rem;
  font-size: 1.5rem;
  line-height: 1.5;
}
.reception-detail__item{
  display: flex;
  font-size: 1.5rem;
}
.report-detail-date{
  margin-top: 1rem;
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 768px){
  .report-couple__name{
    font-size: 2rem;
  }
  .reception-detail__item{
    font-size: 1.6rem;
  }
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝
  サイトマップ
＝＝＝＝＝＝＝＝＝＝＝＝＝　*/
.c-sitemap{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem 6rem;;
  width: 90%;
  margin: 0 auto;
}
.l-sitemap{
  display: flex;
  gap: 3rem 6rem;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
}
.l-sitemap-list__item{
  font-size: 3rem;
  margin-bottom: 2rem;
  transition: .5s;
  font-weight: 400;
}
@media (any-hover: hover) {
  .l-sitemap-list__item:hover{
    opacity: 0.7;
  }
}  
.s-sitemap{
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
.s-sitemap__item{
  font-size: 1.5rem;
  line-height: 1.5;
  color: #242424;
  margin-bottom: 0.5em;
  transition: .5s;
}
.s-sitemap__link{
  display: flex;
  align-items: center;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  font-style: normal;
}
@media (any-hover: hover) {
  .s-sitemap__item:hover{
    opacity: 0.7;
  }
}  
@media screen and (max-width: 1000px) {
  .c-sitemap{
    justify-content: left;
    max-width: 57rem;
  }
  .s-sitemap{
    flex-direction: row;
  }
}
@media screen and (max-width: 768px) {
  .l-sitemap{
    width: 100%;
    gap: 0;
  }
  .l-sitemap-list{
    min-width: 11rem;
    margin-right:3rem;
  }
  .s-sitemap__list{
    min-width: 11rem;
    margin-right:3rem;
  }
  .l-sitemap-list:nth-child(2n){
    margin-right: 0;
  }
  .s-sitemap__list:nth-child(2n){
    margin-right: 0;
  }
  .l-sitemap-list__item{
    font-size: 1.7rem;
  }
  .l-sitemap-list__item:last-child{
    margin-bottom: 1rem;
  }
  .s-sitemap{
    width: 100%;
    gap: 0;
  }
  .s-sitemap__item{
    font-size: 1.3rem;
  }
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝
  サイトポリシー
＝＝＝＝＝＝＝＝＝＝＝＝＝　*/
.policy-list__section + .policy-list__section{
  margin-top: 6rem;
}
.policy-list__title{
  font-size: 2.6rem;
  font-weight: normal;
}
.policy-list__text{
  font-size: 1.5rem;
  line-height: 2;
}
.policy-list__title + .policy-list__text{
  margin-top: 2rem;
}
.detail-box{
  background: #fff;
  font-size: 1.5rem;
  line-height: 2;
  border-radius: 5px;
  padding: 2rem 3rem;
}
.detail-box__table th{
  width: 20rem;
}
.policy-list__text + .detail-box{
  margin-top: 2rem;
}
.remark-list__item{
  font-size: 1.3rem;
  line-height: 1.5;
  padding-left: 2rem;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
}
.remark-list__item:before{
  display: block;
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.policy-list__text + .remark-list{
  margin-top: 1.5rem;
}
.detail-box + .remark-list{
  margin-top: 1.5rem;
}
.default-list__item{
  flex-wrap: wrap;
  font-size: 1.5rem;
  line-height: 2;
  position: relative;
  padding-left: 1.8rem;
  display: flex;
  gap: 1.5rem 4.5rem;
}
.default-list__item:before{
  display: block;
  content: "";
  background: #9e8c4b;
  width: 1rem;
  height: 0.1rem;
  margin-top: 1.5rem;
  position: absolute;
  top: 0;
  left: 0;
}
.policy-list__text + .default-list{
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px){
  .policy-list__title{
    font-size: 2.2rem;
  }
  .policy-list__section + .policy-list__section{
    margin-top: 5rem;
  }
  .detail-box__table th{
    width: 100%;
  }
  .detail-box__table th,
  .detail-box__table td{
    display: block;
  }
  .detail-box{
    padding: 2rem;
  }
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝
  FAQ
＝＝＝＝＝＝＝＝＝＝＝＝＝　*/
.faq-list__title{
  margin-bottom: 2rem;
  font-size: 2.4rem;
  text-align: center;
  color: #292929;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
}
.faq-list{
  margin-bottom: 13rem;
}
.faq-list__item{
  padding: 2.5rem 3rem;
  border-bottom: 1px solid #efebe2;
}
.faq-q__inner,.faq-a__inner{
  display: flex;
  gap: 0 2.5rem;
  position: relative;
  padding-right: 5rem;
}
.faq-q__inner::after{
  position: absolute;
  display: block;
  content: "";
  background: url(../images/icon/faq-icon.png)no-repeat;
  background-size: cover;
  width: 3rem;
  height: 3rem;
  right: 0;
  top: 0.5rem;
  transform: rotate(180deg);
  transition: .3s;
}
.faq-list__item.is-open .faq-q__inner::after{
  transform: rotate(0deg);
}
.faq-q{
  transition: .3s;
  cursor: pointer;
}
.faq-q:hover{
  opacity: 0.7;
}
.faq-a{
  overflow: hidden;
  display: none;
  padding-top: 3rem;
}
.faq-icon-q,.faq-icon-a{
  font-size: 3.4rem;
}
.faq-icon-q{
  color: #9e8c4b;
}
.faq-icon-q{
  background: url(../images/icon/faq-q.png)no-repeat;
  background-size: cover;
  width: 3.4rem;
  height: 3.6rem;
}
.faq-icon-a{
  color: #a8a8a8;
  background: url(../images/icon/faq-a.png)no-repeat;
  background-size: cover;
  width: 2.8rem;
  margin-right: 0.6rem;
  height: 3.6rem;
}
.faq-list__q{
  font-size: 1.6rem;
  line-height: 1.5;
  padding-top: 0.8rem;
  flex: 1;
}
.faq-list__a{
  flex: 1;
  font-size: 1.4rem;
  line-height: 1.5;
  padding-top: 0.8rem;
}
.faq-contact__title{
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 3rem;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
}
.faq-contact__btn{
  background: #c7b68c;
  border-radius: 5px;
  max-width: 33rem;
  margin: 0 auto;
  transition: .5s;
}
.faq-contact__link{
  padding: 2rem 0;
  display: block;
  color: #FFF;
  font-size: 1.7rem;
  display: flex;
  justify-content: center;
  gap: 0 1.8rem;
}
@media (any-hover: hover) {
  .faq-contact__btn:hover{
    opacity: 0.7;
  }
}  
.faq-contact__icon{
  width: 2rem;
}
@media screen and (max-width: 768px){
  .faq-list{
    margin-bottom: 7rem;
  }
  .faq-list__item{
    padding: 2rem 0;
  }
  .faq-icon-q{
    width: 2.4rem;
    height: 2.6rem;
    margin-top: 0.2rem;
  }
  .faq-icon-a{
    width: 2rem;
    height: 2.4rem;
    margin-top: 0.2rem;
  }
  .faq-a{
    padding-top: 1.5rem;
  }
  .faq-q__inner, .faq-a__inner{
    gap: 0 1rem;
    padding-right: 3rem;
  }
  .faq-list__q{
    padding-top: 0.3rem;
  }
  .faq-list__a{
    padding-top: 0.3rem;
  }
  .faq-q__inner::after{
    width: 2rem;
    height: 2rem;
    top: 0.5rem;
  }
  .faq-contact__title{
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }
  .faq-contact__link{
    padding: 1.4rem 0;
  }
  .faq-contact__icon{
    width: 1.8rem;
  }
}


/*=====================
ギャラリー
=====================*/
.c-gallery-sec .regular__inner{
  position: relative;
}
.gallery-petal01{
  width: 8.7rem;
  position: absolute;
  right: -7rem;
  top: -8rem;
}
.gallery-petal02{
  width: 6rem;
  position: absolute;
  left: -5.5rem;
  bottom: -9.5rem;
}

.c-gallery{
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.gallery-container {  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 5px;
  grid-auto-flow: row;
  grid-template-areas:
    "gallery01 gallery02 gallery03"
    "gallery01 gallery04 gallery05"
    "gallery07 gallery06 gallery06"
    "gallery08 gallery06 gallery06"
    "gallery09 gallery10 gallery11"
    "gallery13 gallery13 gallery12"
    "gallery13 gallery13 gallery16"
    "gallery14 gallery15 gallery16";
}
.gallery01 { grid-area: gallery01;}
.gallery02 { grid-area: gallery02;}
.gallery03 { grid-area: gallery03;}
.gallery04 { grid-area: gallery04;}
.gallery05 { grid-area: gallery05;}
.gallery06 { grid-area: gallery06;}
.gallery07 { grid-area: gallery07;}
.gallery08 { grid-area: gallery08;}
.gallery09 { grid-area: gallery09;}
.gallery10 { grid-area: gallery10;}
.gallery11 { grid-area: gallery11;}
.gallery12 { grid-area: gallery12;}
.gallery13 { grid-area: gallery13;}
.gallery14 { grid-area: gallery14;}
.gallery15 { grid-area: gallery15;}
.gallery16 { grid-area: gallery16;}

.gallery-container img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.01);
}
.gallery-item{
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  cursor: pointer;
}
.gallery-item::after{
  pointer-events: none;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(36, 36, 36, 0.7);
  transition: .5s;
}
.gallery-item::before{
  pointer-events: none;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  content: "";
  width: 14rem;
  height: 14rem;
  background: url(../images/pages/gallery/click-zoom.png)no-repeat;
  background-size: cover;
  transition: .5s;
  z-index: 2;
}
@media (any-hover: hover) {
  .gallery-item:hover::after,
  .gallery-item:hover::before{
    opacity: 1;
  }
}
.gallery-container.gallery-end {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
  gap: 5px;
  grid-auto-flow: row;
  grid-template-areas:
    "gallery01 gallery02 gallery03"
    "gallery01 gallery04 gallery05"
    "gallery07 gallery06 gallery06"
    "gallery08 gallery06 gallery06"
    "gallery09 gallery10 gallery11";
}

/* === 768px 以下（スマホ）のときだけレイアウトを変える === */
@media (max-width: 768px) {
  .gallery-container {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  }
  .gallery-item.flex-full-sp{
    width: 100%;
  }
  .flex-2-sp{
    width: calc((100% - 5px)/2);
  }
}
/*=====================
アクセス
=====================*/
.access{}
.access-menu{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 3.5rem;
  margin-bottom: 5rem;
}
.access-menu__link{
  display: flex;
  gap: 1rem;
  transition: .5s;
}
@media (any-hover: hover) {
  .access-menu__link:hover{
    opacity: 0.7;
  }
}
.access-menu__icon{
  width: 2rem;
}
.access-menu__text{
  font-size: 1.7rem;
}
.access-add{
  margin-top: 4.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 3rem 0;
}
.access-add__title{
  font-size: 2rem;
}
.access-add__contents{
  width: 33rem;
}
.access-add__text{
  margin-top: 2rem;
  font-size: 1.5rem;
  line-height: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  gap: 0 3rem;
}
.access-add__text-item.flex-1{
  width: 100%;
}
.access-button__title{
  font-size: 1.5rem;
  line-height: 2;
}
.access-button__contents{
  display: flex;
  align-items: end;
  gap: 1.5rem 2rem;
}
.access-btn{
  margin-top: 0;
  width: 26.5rem;
}
.access-btn__link{
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  border: 1px solid #fff;
  padding: 1.8rem 2rem;
  background: #c7b68c;
  gap: 0 2.5rem;
  transition: .4s;
}
.access-btn__text{
  font-size: 1.7rem;
  color: #fff;
}
.access-block__left{
  width: 30rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0 1rem;
}
.access-block__right{
  flex: 1;
}
.access-btn__icon{
  width: 1.3rem;
}
.outside-btn-wrap{
  display: flex;
  justify-content: center;
  margin-top: 4.5rem;
}
.outside-btn{
  font-size: 1.7rem;
  display: inline-flex;
  justify-content: center;
  gap: 0 2rem;
  border-bottom: 1px solid #242424;
  padding-bottom: 1rem;
}
.outside-btn__icon{
  width: 2rem;
}
.access-block__item{
  display: flex;
  padding: 4rem 0;
  border-bottom: 1px #efebe2 solid;
}
.access-block__item:first-child{
  padding-top: 0;
}
.access-block__item:last-child{
  border-bottom: none;
  padding-bottom: 0;
}
.access-block__title{
  width: 100%;
  text-wrap: nowrap;
  font-size: 2rem;
  font-weight: normal;
}
.access-block-text{
  font-size: 1.3rem;
  margin-top: 0.5rem;
}
.access__transport-wrap,
.access__price-wrap{
  padding-top: 14rem;
}
.access__price__title{
  font-size: 3rem;
  font-weight: normal;
  margin-bottom: 5rem;
}
.default-list + .remark-list{
  margin-top: 1rem;
}
.access-btn{
  font-size: 1.7rem;
  color: #242424;
}
.limousine-link{
  border-bottom: 1px solid #bdbdbd;
  transition: .5s;
}
.limousine-link__text{
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.4rem;
}
.limousine-link__icon{
  width: 1.5rem;
  display: flex;
  align-items: center;
}
@media (any-hover: hover) {
  .limousine-link:hover{
    opacity: 0.7;
  }
  .access-btn__link:hover{
    opacity: 0.7;
  }
}  
@media (max-width: 768px){
  .gallery-petal01{
    width: 5rem;
    right: -1rem;
    top: -12rem;
  }
  .gallery-petal02{
    width: 3rem;
    left: 2rem;
    bottom: -6rem;
  }
  .access-add__contents{
    width: 100%;
  }
  .access-add__title{
    text-align: center;
  }
  .access-button__contents{
    flex-direction: column;
    align-items: center;
  }
  .access-button__title{
    text-align: center;
  }
  .access-add__text{
    text-align: center;
    justify-content: center;
  }
  .access-button-wrap{
    width: 100%;
  }
  .access-menu{
    width: 90%;
    margin: 0 auto 4.5rem;
  }
  .access-menu__item{
    width: 100%;
  }
  .access__price__title{
    font-size: 2.4rem;
    margin-bottom: 2.5rem;
  }
  .access-block__item{
    flex-direction: column;
    gap: 2rem 0;
    padding: 3rem 0;
  }
  .access-block__title{
    width: auto;
  }
  .access__transport-wrap, .access__price-wrap{
    padding-top: 7.5rem;
  }
  .outside-btn-wrap{
    margin-top: 2.5rem;
  }
  .access-block__left{
    flex-wrap: nowrap;
    width: 100%;
    align-items: center;
  }
  .access-btn__link{
    gap: 0 1.5rem;
    padding: 1.3rem 2rem;
  }
  .access-btn__text{
    font-size: 1.6rem;
  }
}

/* モーダル本体 */
.gallery__modal{
  position:fixed; inset:0;
  background:rgba(172,150,103,.9);
  display:none; justify-content:center;
  z-index:9999;
}
/* Slick スライド中央寄せ */
.gallery__modal .slick-slide{
  display:flex !important;
  justify-content:center; 
  /* align-items:center; */
}
.gallery__modal .swiper-slide {
  align-self: flex-start;
  flex-direction: column;
}

/* 画像のセンタリングと制限 */
.gallery__modal-block{
  margin:0 auto;
  max-width: 1000px;
  width: 90%;
}
.gallery__modal-block .swiper-autoheight .swiper-wrapper{
  /* height: auto!important; */
}
.gallery__modal-list{
  height: 100%;
}
.gallery__modal-item{
  width: auto;
  position: relative;
}
.gallery__modal-block-wp .swiper{
  overflow: visible;
}
/* .gallery__modal-block-wp .block-slider-list .swiper-slide{
  overflow: visible;
} */
.gallery__modal-item__text{
  position: absolute;
  left: 0;
  right: 0;
  color: #fff;
  max-width: 600px;
  margin: 0 auto;
  bottom: -7rem;
  font-size: 1.5rem;
  line-height: 2;
  opacity: 0;
  transition: .4s;
}
.swiper-slide-active .gallery__modal-item__text{
  opacity: 1;
}
.gallery__modal-block-wp {
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  height: 100%;
}
.gallery__modal-img {
  border-radius: 0.6rem;
  overflow: hidden;
  max-width: 90vw;
  margin: 0 auto;
}
.gallery__modal-img img{
  display: block;
  height: 100%;
  max-height: 80vh;
  margin: 0 auto;
  object-fit: contain;
  border-radius: 5px;
}

/* メニュー */
.gallery__modal-btm{
  max-width: 1020px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 2.5rem 0 0;
  margin: 0 auto;
}
.gallery__modal-close{
  display: flex;
  align-items: center;
  gap: 0 0.5rem;
  font-size: 1.5rem;
  color: #fff;
}
.gallery__modal-block-wp .block-slider-btm-l-text{
  color: #fff;
}
.gallery__modal-close img{
  width: 2rem;
}
.gallery__modal-counter{
  display: flex;
  align-items: center;
}
.gallery__modal-counter span{
  color: #fff;
  font-size: 1.6rem;
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: normal;
}
.gallery__modal-arrow button{
  width: 3rem;
}
.gallery__modal-arrow{
  display: flex;
  gap: 0 2rem;
  align-items: center;
}
@media screen and (max-width: 1000px){
  .gallery__modal-item__text{
    position: static;
    margin-top: 1.5rem;
  }
}
/* ================================
  ly-mv-bg
=================================*/
.ly-mv{
  position: fixed;
  max-height: 1000px;
  height: 100svh;
  min-height: 60rem;
  z-index: -1;
  top: 0;
  width: calc(100% - 5rem);
}
.ly-mv + .main-contents{
  margin-top: 1000px;
}
.ly-mv-bg{
  overflow: hidden;
  pointer-events: none;
  position: relative;
  top: 0;
  width: 100%;
  height: 100vh;
  max-height: 1000px;
  z-index: 0;
}
.ly-mv-bg img{
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ly-mv__logo{
  position: absolute;
  width: 20rem;
  padding-top: 6rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1;
}

.kv-catch-wrapper{
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.kv-catch__images{
  font-size: 4rem;
  color: #fff;
  text-align: center;
  margin: 0 auto 2rem;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
}
.home .kv-catch__images{
  max-width: 34rem;
}
.kv-catch__text{
  text-align: center;
  font-size: 1.8rem;
  color: #fff;
}
@media screen and (max-width: 768px){
  .kv-catch__images{
    font-size: 3.6rem;
  }
  .ly-mv__logo{
    width: 18rem;
    padding-top: 3.5rem;
  }
  .ly-mv{
    width: calc(100% - 3.5rem);
    height: 100svh;
  }
  .kv-catch__text{
    font-size: 1.5rem;
  }
}
/* ================================
  セクション９２
=================================*/
main.bansuet{
  padding-bottom: 10rem;
}
.banquet-about{
  padding-top: 12rem;
}
.banquet-wrap{
  display: flex;
  flex-direction: column;
  gap: 6rem 0;
}
.banquet-inner{
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}
.banquet-wrap__list{
  position: relative;
}
.sec-column02{
  position: relative;
  display: flex;
  align-items: center;
}
.sec-column02-figure{
  position: absolute;
}
.sec-column02-figure.-fig-phoenix{
  width: 59.3rem;
  left: -16.5rem;
  bottom: -7rem;
  pointer-events: none;
}
.sec-column02-figure.-fig-kiri{
  width: 60.9rem;
  right: -20rem;
  bottom: -19rem;
  pointer-events: none;
}
.sec-column02-figure.-fig-sakura{
  width: 53.3rem;
  left: -2.5rem;
  bottom: -4.5rem;
  pointer-events: none;
}
.sec-column02.flex-revers{
  flex-direction: row-reverse;
}
.sec-column02-slide{
  position: relative;
  width: 48.5%;
}
.sec-column02__info{
  padding: 0 2.5rem 5rem 7rem;
  flex: 1;
}
.sec-column02.flex-revers .sec-column02__info{
  padding: 0 7rem 5rem 2.5rem;
  flex: 1;
}
.sec-column02__title{
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  font-size: 2.6rem;
}
.sec-column02__title.-large{
  font-size: 3rem;
}
.sec-column02__title + .sec-column02__subtitle{
  margin-top: 1.5rem;
}
.sec-column02__subtitle{
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  font-size: 2.2rem;
  line-height: 1.6;
}
.sec-column02__subtitle + .sec-column02__desc{
  margin-top: 1.5rem;
}
.sec-column02__title + .sec-column02__desc{
  margin-top: 1.5rem;
}
.sec-column02__desc{
  /* font-family: "Shippori Mincho B1", serif;
  font-weight: 400; */
  font-size: 1.5rem;
  line-height: 2;
}
.sec-column02__spec{
  display: flex;
  flex-wrap: wrap;
  font-size: 1.3rem;
  margin-top: 3rem;
}
.sec-column02__spec li::after{
  content: " 　/　 ";
}
.sec-column02__spec li:last-child:after{
  display: none;
}
.sec-column02__image-area{
  max-width: 53rem;
  min-width: 50%;
}
.sec-column02__image{
  width: 100%;
}
.sec-column02__cta{
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0 1.2rem;
  margin-top: 2rem;
  transition: .5s;
}
.sec-column02__cta img{
  width: 3rem;
}
@media (any-hover: hover) {
  .sec-column02__cta:hover{
    opacity: 0.7;
  }
}
@media screen and (max-width: 1000px){
  .banquet-about{
    padding-top: 6.5rem;
  }
  .sec-column02,
  .sec-column02.flex-revers{
    flex-direction: column;
    gap: 2rem 0;
  }
  .sec-column02-slide{
    width: 100%;
  }
  .sec-column02__info,
  .sec-column02.flex-revers .sec-column02__info{
    width: 100%;
    padding: 0;
  }
  .sec-column02__image-area{
    width: 100%;
    min-width: 100%;
  }
  .cuisine-wedding .sec-column02__image-area{
    min-width: 100%;
  }
}

@media screen and (max-width: 1000px){
  .sec-column02__title.-large{
    font-size: 2.6rem;
  }
  .sec-column02__subtitle{
    font-size: 1.8rem;
  }
  .sec-column02-figure.-fig-phoenix{
    width: 44.5rem;
    left: auto;
    right: -10rem;
    bottom: 10%;
  }
  .sec-column02-figure.-fig-kiri{
    right: -21rem;
    width: 61rem;
    bottom: -26.5rem;
  }
  .sec-column02-figure.-fig-sakura{
    width: 43.5rem;
    left: -14rem;
  }
  .sec-column02__spec{
    line-height: 2;
    margin-top: 2.5rem;
  }
  .sec-column02__spec li::after{
    content: " / ";
  }
}

/* ================================
  ceremony
=================================*/
.ceremony-concept{
  padding: 13rem 0 10rem;
  position: relative;
}
.ceremony-concept-fig{
  position: absolute;
  width: 38.7rem;
  right: -3.5rem;
  bottom: -7rem;
}
.ceremony-concept-fig02{
  position: absolute;
  width: 5rem;
  top: 7rem;
  right: 6.5rem;
}
.ceremony-concept__title{
  line-height: 1.5;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  font-size: 3rem;
}
.ceremony-concept__text{
  font-size: 1.5rem;
  line-height: 2;
  margin-top: 3.5rem;
}
.ceremony-inner{
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8rem 0;
}
.ceremony-banquet{
  padding: 12rem 0 12rem;
}

@media screen and (max-width: 768px){
  .ceremony-concept{
    padding: 10rem 0 9rem;
  }
  .ceremony-concept__title{
    font-size: 2.6rem;
  }
  .ceremony-concept__text{
    margin-top: 3rem;
  }
  .ceremony-banquet{
    padding: 6rem 0 10rem;
  }
  .ceremony-concept-fig{
    right: -10rem;
  }
  .ceremony-concept-fig02 {
    position: absolute;
    width: 3.5rem;
    top: 5rem;
    right: auto;
    left: 5%;
  }
}

/* ================================
  cuisine
=================================*/
.cuisine-concept{
  position: relative;
  padding: 13rem 0 11rem;
}
.cuisine-top-fig{
  position: absolute;
  width: 43rem;
  right: -3rem;
  bottom: -11rem;
}
.cuisine-inner{
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  gap: 6rem 0;
  flex-direction: column;
}
.cuisine-cook{
  background: url(../images/pages/cuisine/cook-bg.png)no-repeat center center;
  background-size: cover;
  padding: 11rem 0 10rem;
}
.cuisine-cook-list{
  display: flex;
  gap: 6rem;
}
.cuisine-cook-item{
  width: calc((100% - 6rem)/2);
}
.cuisine-cook-item figure{
  border-radius: 5px;
  overflow: hidden;
}
.cuisine-cook-title{
  margin-top: 3rem;
  gap: 1rem;
  display: flex;
  align-items: baseline;
}
.cuisine-cook-title__post{
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  font-size: 1.6rem;
  font-weight: normal;
}
.cuisine-cook__name{
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  font-size: 2.1rem;
  font-weight: normal;
}
.cuisine-cook__disc{
  margin-top: 2rem;
  font-size: 1.5rem;
  line-height: 2;
}
.cuisine-about{
  padding:  0 0 9rem;
}
.cuisine-wedding{
  position: relative;
  padding: 9.5rem 0 9rem;
}
.cuisine-wedding .sec-column02.flex-revers .sec-column02__info{
  padding-left: 0;
}
.cuisine-wedding .sec-column02-slide{
  min-width: 56.8%;
  max-width: 58rem;
}
.cuisine-wedding .sec-column02__image-area{
  min-width: 100%;
  max-width: 100%;
}
.cuisine-petal-fig{
  width: 11rem;
  left: -16.5rem;
  position: absolute;
}
.cuisine-flower-fig{
  position: absolute;
  width: 38.9rem;
  left: -6rem;
  bottom: 0;
}
.modal-cusine-block{
  display: flex;
  height: 100%;
  align-items: center;
}
.modal-cusine-wrap{
  max-width: 1040px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
}
.modal-cusine-wrap .gallery__modal-block{
  width: 53%;
}
.modal-cusine{
  padding-bottom: 10rem;
}
.modal-cusine__title{
  color: #fff;
  font-size: 3rem;
}
.modal-cusine__text{
  margin-top: 2.5rem;
  color: #fff;
  font-size: 1.5rem;
  line-height: 2;
}
.modal-cusine__head + .modal-cusine__body{
  margin-top: 2.5rem;
}
.modal-cusine-menu__list{
  font-size: 1.4rem;
  line-height: 2;
  color: #fff;
  flex-wrap: wrap;
  position: relative;
  padding-left: 1.8rem;
  display: flex;
  gap: 1.5rem 4.5rem;
}
.modal-cusine-menu__list:before{
  display: block;
  content: "";
  background: #fff;
  width: 1rem;
  height: 0.1rem;
  margin-top: 1.5rem;
  position: absolute;
  top: 0;
  left: 0;
}
.modal-cusine-caution__list{
  font-size: 1.3rem;
  color: #fff;
  line-height: 1.66;
  font-size: 1.3rem;
  padding-left: 2rem;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
}
.modal-cusine-caution__list:before{
  display: block;
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.modal-cusine-menu + .modal-cusine-caution{
  margin-top: 3.5rem;
}
@media screen and (max-width: 1000px){
  .cuisine-concept{
    padding: 10rem 0 6rem;
  }
  .cuisine-cook-list{
    flex-wrap: wrap;
  }
  .cuisine-cook-item{
    width: 100%;
    gap: 9rem 0;
  }
  .modal-cusine-wrap{
    flex-direction: column-reverse;
    gap: 2.5rem;
  }
  .modal-cusine-wrap .gallery__modal-block{
    width: 100%;
  }
  .modal-cusine-block{
    padding: 7rem 0 0;
    align-items: self-start;
  }
  .cuisine-flower-fig{
    width: 30rem;
    left: -5.5rem;
    bottom: -2.3rem;
  }
  .cuisine-petal-fig{
    width: 7.4rem;
    left: auto;
    right: -1.5rem;
    top: -7.4rem;
    position: absolute;
  }
  .cuisine-top-fig{
    width: 25rem;
    right: -2.5rem;
    top: 3rem;
    bottom: auto;
  }
  .cuisine-wedding .sec-column02-slide{
    min-width:100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px){
  .cuisine-cook {
      padding: 6rem 0px 9rem;
  }
  .modal-cusine-block{
    overflow: scroll;
    flex-direction: column;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .modal-cusine-block::-webkit-scrollbar {
    display: none; /* Chrome, Safari用 */
  }
  .cuisine-cook-title{
    margin-top: 2.5rem;
  }
  .modal-cusine__title{
    font-size: 2.6rem;
  }
}
/* ================================
  dress
=================================*/
.dress-btm{
  padding: 10rem 0 14rem;
}
.dress-list{
  display: flex;
  flex-wrap: wrap;
  gap: 6rem;
}
.dress-list__item{
  width: calc(((100% - 6rem) / 2));
}
.dress-list__title{
  font-weight: normal;
  font-size: 2.4rem;
}
.dress-list__title + .dress-list__text{
  margin-top: 2.5rem;
}
.dress-list__text{
  font-size: 1.5rem;
  line-height: 2;
}
.dress-list__figure{
  margin-top: 4rem;
  border-radius: 5px;
  overflow: hidden;
}
@media screen and (max-width: 1000px){
  .dress-list__item{
    width: 100%;
  }
  .dress-btm{
    padding: 6rem 0 9rem;
  }
}
@media screen and (max-width: 768px){
  .dress-list__item{
    display: flex;
    flex-direction: column-reverse;
    gap: 2rem;
  }
  .dress-list{
    display: flex;
    flex-wrap: wrap;
    gap: 5rem 0rem;
  }
  .dress-list__title{
    font-size: 2.1rem;
  }
  .dress-list__figure{
    margin-top: 0;
  }
  .dress-list__title + .dress-list__text{
    margin-top: 1.5rem;
  }
}
/* ================================
  about
=================================*/
.about-concept{
  position: relative;
  padding: 13rem 0 10rem;
  pointer-events: none;
}
.about-concept-fig{
  position: absolute;
  width: 39.7rem;
  right: -5rem;
  bottom: -13rem;
  opacity: 0.8;
  z-index: 1;
}
.history__inner{
  position: relative;
  max-width: 1020px;
  width: 90%;
  margin: 0 auto;
}
.history__inner:before{
  position: absolute;
  display: block;
  content: "";
  width: 1px;
  height: 2rem;
  background: url(../images/pages/about/bar-icon.png)no-repeat center bottom;
  background-size: 1px 3rem;
  bottom: -2rem;
  left: 7rem;
}
.history__year-title{
  margin-bottom: 5rem;
  font-size: 3rem;
}
.history__item{
  display: flex;
  align-items: start;
  position: relative;
  padding-bottom: 8rem;
}
.pb2{
  padding-bottom: 2rem;
}
.history__item::before{
  position: absolute;
  display: block;
  content: "";
  width: 1px;
  height: calc(100% - 9rem);
  background: #242424;
  left: 7rem;
  bottom: 0;
  z-index: 1;
  opacity: 0.5;
}
/* .history__item:last-child::before{
  height: 90%;
} */
.history__left{
  position: relative;
  width: 21.5rem;
  padding-left: 3rem;
  padding-bottom: 2rem;
  z-index: 2;
}
.history__right{
  flex: 1;
  margin-top: 1rem;
}
.history__year{
  font-size: 4rem;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
}
.history__era{
  font-size: 1.5rem;
  line-height: 1.66;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
}
.history__title{
  font-size: 2.6rem;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
}
.history__text{
  font-size: 1.5rem;
  line-height: 2;
}
.history__title + .history__text{
  margin-top: 1rem;
}
.history__item-wrap{
  display: flex;
  gap: 0 4rem;
}
.history__item-wrap-left{
  flex: 1;
}
.history__item-wrap-right{
  width: 29.4%;
  min-width: 25rem;
  border-radius: 5px;
  overflow: hidden;
}
.history__right-wrap{
  display: flex;
  gap: 0 4rem;
  margin-bottom: 4rem;
}
.history__right-fig{
  width: 37.5%;
  min-width: 25rem;
  border-radius: 5px;
  overflow: hidden;
}
.history__content{
  flex: 1;
}
.history-parallax{
  overflow: hidden;
  border-radius: 5px;
  position: relative;
  z-index: 2;
}
.history-parallax + .history__title{
  margin-top: 3rem;
}
.history__text + .history-parallax{
  margin-top: 3rem;
}
.history__item-wrap-sp{
  width: 100%;
}
.abouts-btm{
  position: relative;
  z-index: 3;
  margin-top: 2.5rem;
}
.abouts-btm__contens{
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 0;
  bottom: 0;
  max-width: 1020px;
  width: 90%;
  z-index: 1;
}
.abouts-btm__title{
  color: #fff;
  font-size: 3rem;
  margin-bottom: 5rem;
}
.abouts-btm__text{
  color: #fff;
  font-size: 1.5rem;
  line-height: 2;
}
.abouts-btm__bg{
  overflow: hidden;
  height: 60rem;
}
.abouts-btm__bg img{
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: .5s;
}

@media screen and (max-width: 1000px){
  .history__item{
    padding-bottom: 3rem;
  }
  .history__right{
    flex-direction: column;
  }
  .history__right-wrap{
    flex-direction: column-reverse;
    gap: 2rem 0;
    margin-bottom: 2rem;
  }
  .history__content + .history__item-wrap-right{
    margin-top: 2rem;
  }
  .history__right-fig{
    width: 100%;
    min-width: 100%;
  }
  .history__item-wrap{
    display: block;
  }
  .history__item-wrap-right{
    width: 100%;
    min-width: 100%;
  }
  .history-parallax + .history__title{
    margin-top: 0;
  }
  .history-parallax-sp{
    position: relative;
    padding-bottom: 6rem;
  }
  .history-parallax-sp::before {
    position: absolute;
    display: block;
    content: "";
    width: 1px;
    height: 100%;
    background: #242424;
    left: 7rem;
    bottom: 0;
    z-index: 1;
    opacity: 0.5;
  }
  .history__inner:before{
    height: 3rem;
    background: url(../images/pages/about/bar-icon.png)no-repeat center bottom;
    background-size: 1px 3rem;
    bottom: -3rem;
    left: 2.8rem;
  }
  .history-parallax .parallax-figure img{
    height: 120%;
  }
  .sp-2006-fig:before{
    display: none!important;
  }
  .sp-2006-fig{
    padding-bottom: 3rem;
  }
  .abouts-btm{
    margin-top: 3rem;
  }
}

@media screen and (max-width: 768px){
  .history__year-title{
    font-size: 2.6rem;
    margin-bottom: 5rem;
  }
  .about-concept{
    padding: 10rem 0 7rem;
  }
  .about-concept-fig{
    width: 28rem;
    right: -6rem;
    top: 2rem;
    bottom: auto;
  }
  .history__left{
    width: 8.5rem;
    padding-left: 0;
    padding-bottom: 1rem;
    padding-top: 0.5rem;
  }
  .history__year{
    font-size: 2.8rem;
  }
  .history__era{
    font-size: 1.1rem;
  }
  .history__item{
    padding-bottom: 2rem;
  }
  .history__item::before,
  .history-parallax-sp::before{
    left: 2.8rem;
  }
  .history__item::before{
    height: calc(100% - 7.5rem);
  }
  .history__item:nth-child(2):before{
    height: calc(100% - 9rem);
  }
  .history__title{
    font-size: 1.8rem;
  }
  .abouts-btm__bg{
    max-height: 90rem;
    height: auto;
  }
  .abouts-btm__title {
    color: #fff;
    font-size: 2.6rem;
    margin-bottom: 4rem;
  }
  .sp-pb-space{
    padding-bottom: 6rem;
  }
  .sp-2006-fig{
    padding-bottom: 1rem;
  }
}

/* モーダル */
.js_modal{
  position: fixed;
  inset: 0;
  background: rgba(172, 150, 103, .9);
  display: none;
  justify-content: center;
  z-index: 9999;
}
.block-slider-list .swiper-slide{
  overflow: hidden;
  border-radius: 5px;
}
.block-slider-list .oveflownone .swiper-slide{
  overflow: unset;
}
.block-slider-btm{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* モーダル */
.gallery__modal-block-wp .block-slider-btm{
  width: 100%;
  margin: 0 auto;
}
.block-slider-list + .block-slider-btm{
  margin-top: 1.8rem;
}
.block-slider-btm-l{
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 3rem;
}
.block-slider-btm-l-button{
  display: flex;
  align-items: center;
  gap: 0 0.5rem;
}
.block-slider-btm-l-button img{
  width: 2rem;
}
.block-slider-btm-l-text{
  font-size: 1.5rem;
}
.block-slider-btm-r{
  display: flex;
  gap: 0 1.5rem;
}
.block-slider-btm-r .gallery__modal-button{
  width: 3rem;
}
.block-slider-btm-r .gallery__modal-button.swiper-button-disabled{
  opacity: 0.3;
}
.gallery__modal-counter.-color-bk span{
  color: #242424;
  font-size: 1.6rem;
}
.swiper-button-disabled{
  pointer-events: none;
}

@media screen and (max-width: 768px){
  .block-slider-btm-l-text{
    font-size: 1.3rem;
  }

  .block-slider-btm-l{
    width: 12rem;
  }
}

/* ================================
  ドレス　衣装
=================================*/
.salon-head{
  padding: 13.5rem 0 7rem;
  position: relative;
}
.salon-head-petal{
  position: absolute;
  right: 14.5rem;
  top: 6.5rem;
  width: 10.5rem;
}
.salon-slider-wp{
  position: relative;
  margin: 0 auto 13.5rem;
}
.salon-slider__controls-wp{
  width: calc(51% - 2.5rem);
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 99;
}
.salon-head__title{
  font-size: 3rem;
  line-height: 1.5;
}
.salon-head__disc{
  font-size: 1.5rem;
  line-height: 2;
}
.salon-head__title + .salon-head__disc{
  margin-top: 3rem;
}
.salon-slider.swiper{
  overflow: visible;
}
.salon-slider__slide{
  display: flex;
  gap: 2.5rem 0;
}
.salon-slider__media{
  width: 47%;
  min-width: 30rem;
}
.salon-slider__image{
  overflow: hidden;
  border-radius: 5px;
}
.salon-slider__body{
  padding: 2rem 4.5% 0;
  flex: 1;
}
.salon-slider__slide:last-child .salon-slider__body{
  padding-right: 0;
}
.salon-slider__title{
  font-size: 2.2rem;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
}
.salon-slider__description{
  font-size: 1.5rem;
  line-height: 2;
}
.salon-slider__hours{
  font-size: 1.3rem;
  line-height: 2;
}
.salon-slider__controls{
  display: flex;
  align-items: center;
  gap: 0 2rem;
}
.salon-slider__pagination{
  display: flex;
  font-size: 1.5rem;
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: normal;
}
.salon-slider__controls button{
  width: 3rem;
}
.salon-slider__controls button.swiper-button-disabled{
  opacity: 0.3;
}
.prize-room{
  position: relative;
  padding: 9.5rem 0 9rem;
  background: #f9f7f3;
}
.prize-flower-fig{
  width: 38.9rem;
  position: absolute;
  left: -13rem;
  bottom: -1.8rem;
}
.prize-petal-fig{
  position: absolute;
  width: 8rem;
  top: 3.5rem;
  left: 3.5rem;
}
.prize-room .sec-column02.flex-revers .sec-column02__info{
  padding-left: 0;
}
.prize-room .sec-column02-slide{
  min-width: 56.8%;
  max-width: 58rem;
}
.prize-room .sec-column02__image-area{
  min-width: 100%;
  max-width: 100%;
}
.salon-slider__cta{
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0 1.2rem;
  transition: .5s;
}
@media (any-hover: hover) {
  .salon-slider__cta:hover{
    opacity: 0.7;
  }
}  
.salon-slider__cta img{
  width: 3rem;
}
.salon-slider__title + .salon-slider__description{
  margin-top: 2rem;
}
.salon-slider__description + .salon-slider__hours{
  margin-top: 2rem;
}
.salon-slider__hours + .salon-slider__cta{
  margin-top: 2rem;
}
.salon-slider__cta + .salon-slider__controls{
  margin-top: 3.5rem;
}

@media screen and (max-width: 1200px){
  .salon-slider-wp{
    margin: 0 auto 7rem;
  }
  .salon-slider.swiper{
    overflow: hidden;
  }
  .salon-slider__slide{
    flex-direction: column;
  }
  .salon-slider__media{
    width: 100%;
  }
  .salon-slider__body{
    padding: 0;
  }
  .salon-head{
    padding: 10rem 0 4rem;
  }
  .salon-head-petal{
    position: absolute;
    right: 5%;
    top: 4.5rem;
    width: 8rem;
  }
  .salon-slider__controls-wp{
    position: static;
    margin-top: 4rem;
  }
}
@media screen and (max-width: 1000px){
  .prize-room{
    padding: 8rem 0;
  }
  .prize-room .sec-column02-slide{
    min-width: 100%;
    max-width: 100%;
  }
  .prize-flower-fig{
    width: 3rem;
    position: absolute;
    left: -5.5rem;
    bottom: -2.2rem;
  }
  .prize-petal-fig{
    position: absolute;
    width: 7.4rem;
    top: 1.5rem;
    right: 0;
    left: auto;
  }
}
@media screen and (max-width: 768px){
  .salon-head__title{
    font-size: 2.6rem;
  }
  .salon-head__title + .salon-head__disc {
      margin-top: 3rem;
  }
  .sec-column02__title{
    font-size: 2.1rem;
  }
}

.gallery__modal .swiper-slide{
  opacity: 0!important;
}
.gallery__modal .swiper-slide.swiper-slide-active{
  opacity: 1!important;
}

/* 動画再生 */
.video-block-sec{
  margin-top: 5rem;
}
.video-block {
  position: relative;
  margin-top: 4rem;
  z-index: 99;
}
.video-block .video-wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 5px;
  overflow: hidden;
}
.video-block .video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
}
.video-block .video-wrapper .video-btn {
  position: absolute;
  width: 120px;
  height: 120px;
  top: 50%;
  left: 50%;
  margin-left: -60px;
  margin-top: -60px;
  cursor: pointer;
  z-index: 99;
}
.video-block .video-wrapper .video-btn img {
  width: 100%;
  height: auto;
}
.video-block .video-wrapper .video-btn.stop {
  display: none;
  opacity: 0.4;
}
@media screen and (max-width: 768px){
  .video-block-sec{
    margin-top: 2rem;
  }
  .video-block {
    position: relative;
    margin-top: 2rem;
  }
  .video-block .video-wrapper .video-btn {
    width: 7rem;
    height: 7rem;
    top: 50%;
    left: 50%;
    margin-left: -3.5rem;
    margin-top: -3.5rem;
    cursor: pointer;
  }
}
