@charset "utf-8";

/* ----------------------------------------------
カラー
----------------------------------------------- */
:root{
    --color-primary: #000;
    --color-gray: #F2F2F2;
    --color-border: #E6E6E6;
    --color-bg: #fff;
}

/* ----------------------------------------------
フォント
----------------------------------------------- */

:root{
  --primaryJP: "Kokoro";
  --primaryEN: "Cinzel", serif;
  --textEN: "Lora", serif;
}


/* ----------------------------------------------
PC・SPの切り替え
----------------------------------------------- */
@media screen and (min-width: 751px) {
  .pc{
    display:block;
  }

  .sp{
    display: none;
  }
}

@media screen and (max-width: 750px) {
  .pc{
    display: none;
  }

  .sp{
    display: block;
  }
}

/* ----------------------------------------------
共通コンテンツ
----------------------------------------------- */

.l-container {
  position: relative;
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding-inline: 40px;
  padding: 0 20px;
}

.l-inner{
  padding: 0 60px;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  padding-inline: 60px;
  z-index: 100;
}

@media screen and (max-width: 750px) {
  .l-container {
    padding-inline: 20px;
  }

  .l-inner {
    padding: 0 0px;
}
}

/* ----------------------------------------------
header
----------------------------------------------- */

 /* - ハンバーガー
----------------------------------------------- */
.navbar_toggle {
  position: absolute;
  z-index: 999;
  width: 60px;
  height: 60px;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto 0;}

.navbar_toggle_icon {
  position: relative;
  display: block;
  height: 1.5px;
  width: 35px;
  background: #000;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  border-radius: 1px;
  transform: translateX(-50%);
  left: 50%;
}

.navbar_toggle_icon:nth-child(1) {
  top: 22px;
  transition: 0.4s;
  box-shadow: 0px 0px 5px 1px rgba(255, 255, 255, 1);
}

.navbar_toggle_icon:nth-child(2) {
  top: 20px;
  margin: 8px 0;
  transition: 0.4s;
  opacity: 1;
  box-shadow: 0px 0px 5px 1px rgba(255, 255, 255, 1);
}

.navbar_toggle_icon:nth-child(3) {
  top: 18px;
  transition: 0.4s;
  box-shadow: 0px 0px 5px 1px rgba(255, 255, 255, 1);
}

.drawer.open .navbar_toggle_icon {
  background: #fff;
}

.drawer.open .navbar_toggle_icon:nth-child(1) {
  top: 30px;
  left: 12px;
  transition: 0.4s;
  transform: rotate(45deg);
  box-shadow:none; 
}

.drawer.open .navbar_toggle_icon:nth-child(2) {
  top: 20px;
  margin: 8px 0;
  transition: 0.4s;
  opacity: 0;
}

.drawer.open .navbar_toggle_icon:nth-child(3) {
  top: 12px;
  left: 12px;
  transition: 0.4s;
  transform: rotate(-45deg);
  box-shadow:none; 
}

.drawer-wrap {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  right: -100%;
  transition: ease 0.8s;
  background-color: var(--color-primary);
  display: flex;
  flex-direction: row-reverse;
  gap: 60px;
  align-items: center;
  justify-content: center;
}

.drawer-wrap.open{
  right: 0;
}

.p-hum__leftBox{
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.p-hum__logo{
  width: 60px;
}

.p-hum__osechi{
  display: inline-block;
  padding: 16px 8px 30px;
  border: 1px solid #fff;
  writing-mode: vertical-rl;

  position: relative;

  margin-top: 40px;
}

.p-hum__osechi::after{
  content: '';
  position: absolute;
  right: 0;
  left: 0;
  top: auto;
  bottom: 12px;
  width: 8px;
  margin: 0 auto;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translate(0, -50%) rotate(135deg);
  }


.p-hum__osechi-text{
  position: relative;
  padding-top: 30px;
  font-size: 1.25rem;
  color: #fff;
}

.p-hum__osechi-text span{
  font-size: 0.875rem;
  margin-top: 8px;
}

.p-hum__osechi-text::before {
  content: '';
  position: absolute;
  background: url(../img/common/icon-logo_wh.svg) no-repeat center / cover;
  width: 24px;
  height: 24px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.p-humNav__list {
    display: flex;
    flex-direction: column;
    gap: 20px;

    writing-mode: vertical-rl;
    color: #fff;
}

.p-humNav__item{
  display: flex;
    flex-direction: column;
}

.p-humNav__link{
  display: inline-block;
  font-size: 1.75rem;
}

.p-humNav__subLink{
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.6rem;
  position: relative;
  padding-top: 16px;
}

.p-humNav__subLink:before {
  content: '・';
  position: absolute;  
  top: 0;
}

.p-humNav__link a:hover,
.p-humNav__subLink a:hover,
.p-hum__osechi:hover{
  opacity: 0.4;
  transition: ease 0.4s;}

@media screen and (max-width: 750px) {
  
  .hdNav{
    display: flex;
    align-items: center;
  }

  .drawer-wrap{
    flex-direction: row;
    padding: 40px;
    gap: 20px;
    align-items: normal;
    justify-content: space-around;
  }

  .navbar_toggle {
    right: 15px;
  }

  .p-hum_NavWrap{
    display: flex;
  }

  .p-humNav__list{
    writing-mode: horizontal-tb;
    justify-content: center;
    gap: 32px;
  }

  .p-humNav__subLink{
    line-height: 2rem;
    padding-top: 0px;
  }

  .p-humNav__subLink .u-kigou {
    transform: rotate(0deg);}

  .p-humNav__subLink .u-nobashi {
    transform: rotate(0deg);}

    

  .p-humNav__subLink:before {
    display: none;
    left: 0;}

  .p-humNav__link {
    font-size: 1.5rem;}

}

/* ----------------------------------------------
予約追従ボタン
----------------------------------------------- */

.p-rsvBtn{
  position: fixed;
  top: 100px;
  right: 30px;
  background-color: rgba(255, 255, 255, 0.75);
  border: #000;
  width: 60px;
  height: 60px;
  border: #000 0.5px solid;

  z-index: 100;
  transform: rotate(45deg);
  writing-mode: vertical-rl;
}

.p-rsvBtn span{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);

  font-size: 1rem;
  text-align: center;
  height: 80px;
  z-index: 98;
}

.p-rsvBtn:hover{
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
  transition: ease 0.4s;
}

@media screen and (max-width: 750px) {
  .p-rsvBtn{
    top: 80px;
    right: 24px;
    width: 50px;
    height: 50px;
  }

  .p-rsvBtn span{
    font-size: 0.85rem;
    height: 50px;
  }
}

/* ----------------------------------------------
 言語切り替え
----------------------------------------------- */

.p-langBtn{
  font-family:  "Lora", serif;
  font-size: 0.875rem;

  position: fixed;
  top: 200px;
  right: 36px;
  
  text-shadow:#fff 0px 0px 5px;
}

body.open .p-langBtn{
  color: #fff;
}

.p-langBtn a:hover{
  opacity: 0.4;
  transition: ease 0.4s;
}

@media screen and (max-width: 750px) {
  .p-langBtn{
    top: 160px;
    right: 25px;
  }
}



/* ----------------------------------------------
hero
----------------------------------------------- */

.c-hero {
  position: relative;
  width: 100%;
  height: 100svh;
  overflow: hidden;
}

/* .c-hero::before {
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  top:0;
  left: 0;
  z-index: 2;
} */

.c-hero__bg {
  width: 100%;
  height: 100vh;
  display: block;
}

.c-hero__bg img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.c-hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;

  position: relative;}

.c-hero__contents {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);

  width: 100%;
  display: flex;
  justify-content: center;

  z-index: 3;
}

.c-hero__copy{
  writing-mode: vertical-rl;
  color: #fff;
  font-size: 1.5rem;
  line-height: 3.5rem;
}

/* top動画 */
#yt_player {
  position: absolute;
  z-index: -2;
  top: 0;
  width: 100%;
  height: 100%;
}

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

  .c-hero__copy{
    font-size: 1rem;
        line-height: 2rem;}
  }

/* ----------------------------------------------
footer
----------------------------------------------- */

.p-footer{
  margin-top: 80px;
  background-color: var(--color-primary);
}

.p-footer__logo{
  width: 60px;
}

.p-footer__inner{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  writing-mode: vertical-rl;
  /* height: 700px; */

  padding: 60px 40px;
}

.p-footerNav__list{
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-left: 40px;
}

.p-footerNav__item{
  display: flex;
    flex-direction: column;
}

.p-footerNav__link{
  display: inline-block;
  font-size: 1.75rem;
}

.p-footerNav__subLink{
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.6rem;
  position: relative;
  padding-top: 16px;
}

.p-footerNav__subLink:before {
  content: '・';
  position: absolute;  
  top: 0;
}

.p-footer__osechi{
  display: inline-block;
  padding: 16px 8px 30px;
  border: 1px solid #fff;

  position: relative;

  margin-left: 40px;
}

.p-footer__osechi::after{
  content: '';
  position: absolute;
  right: 0;
  left: 0;
  top: auto;
  bottom: 12px;
  width: 8px;
  margin: 0 auto;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translate(0, -50%) rotate(135deg);
  }


.p-footer__osechi-text{
  position: relative;
  padding-top: 30px;
  font-size: 1.5rem;
}

.p-footer__osechi-text span{
  font-size: 0.875rem;
  margin-top: 8px;
}

.p-footer__osechi-text::before {
  content: '';
  position: absolute;
  background: url(../img/common/icon-logo_wh.svg) no-repeat center / cover;
  width: 24px;
  height: 24px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.p-footerNav__subList{
  font-size: 0.875rem;
  display: flex;
}

.p-footerNav__subItem:first-child{
  border-top: 1px solid #fff;
}

.p-footerNav__subItem{
  border-bottom: 1px solid #fff;
  padding-top: 24px;
  padding-bottom: 24px;
}

.p-footer__copyright{
  font-size: 0.625rem;
  text-align: end;
  margin-right: 16px;
}

.p-footerNav__link a:hover,
.p-footerNav__subLink a:hover,
.p-footer__osechi:hover,
.p-footerNav__subItem a:hover{
  opacity: 0.4;
  transition: ease 0.4s;
}

@media screen and (max-width: 750px) {
  .p-footer{
    margin-top: 120px;

  }
  .p-footer__inner {
    height: auto;
    flex-direction: row;
    gap: 40px;

    padding-bottom: 60px;
  }

  .p-footer__logo {
    margin: auto;
  }

  .p-footer__NavWrap{
    display: flex;
  }

  .p-footerNav__list{
    writing-mode: horizontal-tb;
    justify-content: center;
    text-align: center;
    gap: 32px;
    margin-left: 0px;
  }

  .p-footerNav__subLink{
    line-height: 2rem;
    padding-top: 0px;
  }

  .p-footerNav__subLink .u-kigou {
    transform: rotate(0deg);}

  .p-footerNav__subLink:before {
    display: none;
    left: 0;}

  .p-footerNav__link {
    font-size: 1.5rem;}

  .p-footer__osechi{
    writing-mode: horizontal-tb;

    padding: 12px 40px 12px 20px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
  }

  .p-footer__osechi::after {
    top: 50%;
    right: 20px;
    left: auto;
    bottom: auto;
    margin: 0 auto;
    transform: translate(0, -50%) rotate(45deg);
    }

  .p-footer__osechi-text {
    display: flex;
    justify-content: center;
    font-size: 1.2rem;
    flex-wrap: wrap;
    padding-top: 0px;
    padding-left: 30px;
  }

  .p-footer__osechi-text::before {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .p-footer__osechi-text span {
    margin-left: 8px;
    margin-top: 4px;
  }

  .p-footerNav__subList{
    writing-mode: horizontal-tb;
    justify-content: center;
    flex-direction: column;
    text-align: end;

    margin-top: 60px;
    margin-bottom: 20px;
  }

  .p-footerNav__subList .u-kigou{
    transform: rotate(0deg);
  }

  .p-footerNav__subItem:first-child{
    border-top: none;
  }
  
  .p-footerNav__subItem{
    border-bottom: none;
    padding-top: 0px;
    padding-bottom: 0px;

    padding-right: 1rem;
    padding-left: 1rem;
  }

  .p-footer__copyright{
    writing-mode: horizontal-tb;
    margin-right: 0px;
  }


  .p-footer__inner .u-nobashi{
    transform: none;}

}



/* ----------------------------------------------
ボタン
----------------------------------------------- */

/* 通常ボタン */
.c-btn{
  position: relative;
  display: inline-block;
  width: 200px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 1em;
  letter-spacing: 0.3em;
  transition: ease 0.4s;
  font-family: var(--primaryEN);
  border: 1px solid var(--color-primary);
}

.c-btn::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  transition: ease 0.4s;
  border-top: 1px solid var(--color-primary);
  border-right: 1px solid var(--color-primary);
  transform: translate(0, -50%) rotate(45deg);
}

.c-btn:hover{
  background-color: var(--color-primary);
  color: #fff;
}

.c-btn:hover::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

/* 縦ボタン */
.c-btn__vertical {
  writing-mode: vertical-lr;

  display: flex;
  justify-content: end;
}

.c-btn__vertical .c-btn{
  padding: 32px 16px;
}

.c-btn__vertical .c-btn::after {
  right: 0;
  left: 0;
  top: auto;
  bottom: 16px;
  margin: 0 auto;
  
  transform: translate(0, -50%) rotate(135deg);
}

/* 囲みなしボタン */
.c-btn__noLine .c-btn{
  border: none;
}

.c-btn__noLine .c-btn:hover{
  background-color: var(--color-bg);
  color: var(--color-primary);

  opacity: 0.4;
}

.c-btn__noLine .c-btn:hover::after {
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}

/* センターボタン */
.c-btn__center{
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 英語ページ注釈 */
.c-EN-btn__notes{
  font-size:0.875rem;
  margin-top: 4px;
}


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

    /* 通常ボタン */
  .c-btn {
    font-size: 0.875rem;
  }

  .c-btn__vertical {
    writing-mode: horizontal-tb;
    margin-top: 40px;
    justify-content: center;
  }
  .c-btn__vertical .c-btn{
    padding-block: 16px;
  }

  .c-btn__vertical .c-btn::after {
      right: 16px;
      top: 50%;
      left: auto;
      bottom: auto;
      margin: 0 auto;
      
      transform: translate(0, -50%) rotate(45deg);
    }
  }




/* ----------------------------------------------
タイトル
----------------------------------------------- */

/* 見出し */

.c-headingWrap{
  text-align: center;
  padding-top: 40px;
}

.c-heading__jp{
  font-size: 2rem;
  letter-spacing: 0.2rem;

  margin-bottom: 8px;
}

.c-heading__en{
  font-size: 1.125rem;
  font-family: var(--primaryEN);
  letter-spacing: 0.5rem;
}

.c-heading__line{
  border-top: 2px solid;
  height: 2px;
  margin-inline: auto;
  max-width: 600px;
  width: auto;

  border-image: linear-gradient(to right, #fff, #E6E6E6, #fff) 1;

  margin-top: 20px;
  margin-bottom: 20px;}

.c-heading__copy{
  font-size: 1.125rem;
  line-height: 3rem;
}

.c-heading__text{
  font-size: 0.875rem;
  line-height: 2rem;
}

.c-heading__copy + .c-heading__text{
  margin-top: 8px;
}

.c-headingWrap .c-btn__center{
  margin-top: 40px;
}

/* 英語ページ */
.c-EN-heading__en{
  font-size: 2rem;
  letter-spacing: 0.5em;
  font-family: var(--primaryEN);
  margin-bottom: 8px;
}

.c-EN-heading__jp{
  font-size: 1.25rem;
  letter-spacing: 0.5rem;
}

.c-EN-heading__copy{
  font-family: var(--textEN);
  font-size: 0.875rem;
  line-height: 2em;
  letter-spacing: 0.1em;
  margin-bottom: 80px;
}

.c-EN-subHeading{
  font-family: var(--primaryEN);
  font-size: 1.5rem;
  text-align: center;
  letter-spacing: 0.25em;

  margin-bottom: 8px;
}

.c-EN-subCopy{
  font-family: var(--textEN);
  font-size: 0.875rem;
  text-align: center;
      letter-spacing: 0.1em;
}
/* --- */

@media screen and (max-width: 750px) {
  .c-headingWrap{
    margin-top: 100px;
    margin-bottom: 100px;
  }

  .c-heading__jp{
    font-size: 1.5rem;
  }
  
  .c-heading__en{
    font-size: 1rem;
  }

  .c-heading__copy {
    font-size: 1rem;
    line-height: 2rem;}


/* 英語ページ */
.c-EN-heading__en{
  font-size: 1.5rem
}

.c-EN-heading__jp{
  font-size: 1rem;
}

.c-EN-subHeading{
  font-size: 1.25rem;
}

}

/* 見出し 32px */
.c-heading02{
  font-size: 2rem;
  line-height: 1.6rem;
}

.c-heading03{
  font-size: 1.125rem;
  /* line-height: 3rem; */
  text-align: center;

  padding: 1em 0;

  border-top: var(--color-primary) 1px solid;
  border-bottom: var(--color-primary) 1px solid;
}

.c-heading04{
  font-size: 1.125rem;
  line-height: 3rem;
  text-align: center;
  margin-bottom: 80px;
}


/* コピー 18px */
.c-copy{
  font-size: 1.125rem;
  line-height: 1.6rem;
}


/* テキスト 14px */
.c-text{
  font-size: 0.875rem;
  line-height: 1.6rem;
}

/* 縦書き時の句読点 */
.u-kutouten {
  float: none;
  margin: 0;
  position: relative;
  left: 0.7rem;
  top: -0.7rem;
}

.u-yoko {
  writing-mode: horizontal-tb;
  text-orientation: upright; /* すべて縦方向に表示 */
}

.u-kigou{
  display: inline-block;
    transform: rotate(90deg);
    float: none;
    margin: 0;
    position: relative;
}

.u-nobashi{
  display: inline-block;
  float: none;
  margin: 0;
  position: relative;
  transform: rotate(-90deg) scale(-1, 1);
    left: 1px;
    top: -1px;
}

.u-end{
  display: block;
  text-align: end;
}

/* ----------------------------------------------
グリッド
----------------------------------------------- */

/* 共通 */
.c-topGrid__wrap,
.c-grid__wrap{
  display: flex;
  flex-direction: column;
  margin-top: 200px;
}

.c-topGrid,
.c-grid{
  width: 100%;
  display: flex;}

.c-topGrid.-reverse,
.c-grid.-reverse{
  flex-direction: row-reverse;

}

.c-topGrid.-reverse{
  margin-top: -20px;
}

.c-grid__imgBox,
.c-grid__textBox{
  width: 50%;
  height: 460px;
}

.c-grid__imgBox{
  height: clamp(21.875rem, 19.6rem + 9.71vw, 31.25rem);
}

.c-grid__textBox{
  display: flex;
  padding: 0px 20px;
  justify-content: center;
  flex-direction: row-reverse;
}


.c-grid__textBox .c-heading02,
.c-grid__textBox .c-copy,
.c-grid__textBox .c-text{
	text-orientation: upright;
	writing-mode: vertical-rl;;
}

.c-grid__textBox .c-heading02{
  margin-left: 60px;
}

.c-grid__textBox .c-copy{
  line-height: 2rem;
  margin-left: 20px;}

.c-grid__textBox .c-text{
  line-height: 2rem;}

/* .u-grid__w40 .c-grid__imgBox{
  width: 40%;
}

.u-grid__w40 .c-grid__textBox{
  width: 60%;
} */

/* トップグリッド */
.c-topGrid{
  position: relative;
}

.c-topGrid:nth-child(even){
  margin-top: -20px;}


.c-topGrid:first-child .c-grid__imgBox{
  position: absolute;
  right: 0;
  z-index: 1;
}

.c-topGrid:first-child .c-grid__textBox{
  margin-right: 55%;
  width: 100%;
  height: clamp(22.5rem, 18.859rem + 15.53vw, 37.5rem);
}

.c-topGrid:first-child .c-grid__imgBox{
  width: 55%;
  height: clamp(22.5rem, 18.859rem + 15.53vw, 37.5rem);
}

.c-topGrid:first-child.-reverse .c-grid__imgBox{
  position: absolute;
  right: auto;
  left: 0;
  z-index: 1;
}

.c-topGrid:first-child.-reverse .c-grid__textBox{
  margin-left: 55%;
  margin-right: auto;
  width: 100%;
}

/* トップ */
.c-topGrid:nth-child(even) .c-grid__textBox{
  padding: 0px 4.5%;
  padding-top: 25px;
  height: clamp(20rem, 17.5rem + 12.5vw, 25rem);
  min-height: max-content;
  
}

.c-topGrid:nth-child(even) .c-grid__imgBox{
  height:clamp(20rem, 17.5rem + 12.5vw, 25rem);
}

.c-topGrid .c-btn__center{
  align-items: end;
}

.c-topGrid__wrap + .c-btn__center{
  margin-top: 100px;
}

/* 下層グリッド */
.c-grid__wrap{
  gap: 100px;
}


@media screen and (max-width: 1000px) {
  /* .u-grid__w40 .c-grid__imgBox{
    width: 50%;
  }
  
  .u-grid__w40 .c-grid__textBox{
    width: 50%;
  } */
}  


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

  /* 共通 */
  .c-topGrid__wrap,
  .c-grid__wrap{
    margin-top: 80px;
  }

  .c-topGrid:first-child,
  .c-topGrid:first-child.-reverse{
    flex-direction: column;
  }

  .c-grid__wrap{
    gap: 80px;}


  .c-grid,
  .c-grid.-reverse{
    flex-direction: column;
    gap: 40px;
  }


  .c-topGrid:nth-child(even).-reverse,
  .c-topGrid:nth-child(even){
    flex-direction: column-reverse;
  }
  

  .c-topGrid,.c-grid,
  .c-topGrid.-reverse,.c-grid.-reverse{
    gap: 40px;}



  .c-grid__textBox{
    width: 100%;
    height: auto;
  }

  .c-grid__textBox .c-text{
  line-height: 1.75em;
}


  .c-grid__imgBox,
  .u-grid__w40 .c-grid__imgBox{
    width: 80%;
    height: 360px;
  }
  
  .c-grid__textBox,
  .u-grid__w40 .c-grid__textBox,
  .c-topGrid:nth-child(even) .c-grid__textBox,
  .c-topGrid:first-child.-reverse .c-grid__textBox,
  .c-topGrid:first-child .c-grid__textBox{
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;}
  

  .c-topGrid:first-child .c-grid__imgBox,
  .c-topGrid:first-child.-reverse .c-grid__imgBox,
  .c-topGrid:nth-child(even) .c-grid__imgBox{
    position: static;
    width: 80%;
    margin-left: unset;
    margin-left: auto;
  }

  .c-topGrid:first-child.-reverse .c-grid__imgBox,
  .c-topGrid:nth-child(even).-reverse .c-grid__imgBox{
    margin-left: unset;
    margin-right: auto;
  }

  .c-grid .c-grid__imgBox{
    margin-right: unset;
    margin-left: auto;
  }

  .c-grid.-reverse .c-grid__imgBox{
    margin-right: auto;
    margin-left: unset;
  }
  
  

}

/* ----------------------------------------------
イメージボックス
----------------------------------------------- */

.c-imgBox{
  width: 100%;
  display: flex;
  height: clamp(22.5rem, 18.859rem + 15.53vw, 37.5rem);
}

/* .c-imgBox__300{
  width: 100%;
  display: flex;
  height: clamp(22.5rem, 18.859rem + 15.53vw, 37.5rem);
  margin-top: 300px 
} */

@media screen and (max-width: 750px) {
  /* .c-imgBox__300{
  margin-top: 150px} */
}


/* ----------------------------------------------
マップ
----------------------------------------------- */

.c-map{
  width: 100%;
  max-width: 300px;
  height: 300px;

}

.c-map iframe{
  width: 100%;
  height: 300px;
}

.c-EN-map{
  width: 100%;
  max-width: 700px;
  height: 300px;
  margin: 0 auto;

}

.c-EN-map iframe{
  width: 100%;
  height: 300px;
}

@media screen and (max-width: 750px) {
  .c-map{
      max-width: 100%;
  }
}

/* ----------------------------------------------
メニュー表
----------------------------------------------- */

.c-menuBox{
  flex-direction: column;
}

.c-menuBox .c-copy,
.c-menuBox .c-text {
  margin-left:0;
  writing-mode: horizontal-tb;
  text-align: justify;}

.c-menu__heading{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* height: 50px; */
  align-items: center;
  padding: 5px 16px;

  margin-bottom: 20px;
}

.c-menuBox dl + dl{
  margin-top: 20px;
}

.c-menu__subTextWrap{
  width: max-content;
  display: block;
  margin-left: auto;
  margin-right: 0;
  margin-top: 8px;
}

.c-menu__subText{
  font-size: 0.75rem;
  text-indent: -1em;
  padding-left: 1em;
  text-align: justify;
}


/* ----------------------------------------------
スライド
----------------------------------------------- */

.c-slider{
  position: relative;
}

.c-slider__item{
  height:clamp(15.625rem, 11.833rem + 16.18vw, 31.25rem);
}

.prev-arrow,
.next-arrow {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all .3s ease;
  cursor: pointer;

  position: absolute;

  top: 0;
  bottom: 0;
  margin: auto 0;
  z-index: 99;
}

.prev-arrow {
  transform: rotate(180deg);
}

.next-arrow {
  right: 0;
}

.prev-arrow::before,
.next-arrow::before{
  position:absolute;
  content: "";
  width:10px;
  height:10px;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  top: 0;
  bottom: 0;
  margin: auto 0;
  left:0;
  right:0;
  margin:auto;
  transform:rotate(45deg);
}

