/*==================================================
　カスタムプロパティ
===================================*/
:root {
  --accent-color: #c8ad74;
  --accent-color-for-shadow: rgba(233, 188, 100, 1);
  --main-color: #fff;
  --base-color: #253364;
  --link-color: #8aa3fc;
  --content-color: rgba(0, 0, 0, 0.5);
  --footer-color: #222;
}

/*==================================================
　ナビゲーションメニュー
===================================*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
  position: fixed;
  z-index: -1;
  opacity: 0; /*はじめは透過0*/
  /*ナビの位置と形状*/
  top: 0;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  background: #00000e;
  /*動き*/
  transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
  opacity: 0.9;
  z-index: 999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
  display: none;
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#g-nav.panelactive ul {
  display: block;
  width: 80%;
}

/*リストのレイアウト設定*/

#g-nav li {
  list-style: none;
  text-align: center;
  width: 100%;
  border-bottom: var(--accent-color) 1px solid;
}

#g-nav li:first-child {
  border-top: var(--accent-color) 1px solid;
}

#g-nav li a {
  color: var(--main-color);
  font-family: "Kumbh Sans", sans-serif;
  font-size: 16px;
  text-decoration: none;
  padding: 25px 16px;
  display: block;
  letter-spacing: 0.1em;
}

.g-nav-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.g-nav-item-en {
  font-size: 18px;
}
/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: fixed;
  z-index: 9999;
  right: 30px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 8px;
}

@media screen and (min-width: 930px) {
  .openbtn1 {
    display: none;
  }
}

/*×に変化*/
.openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: var(--accent-color);
  width: 45%;
}

.openbtn1 span:nth-of-type(1) {
  top: 15px;
}

.openbtn1 span:nth-of-type(2) {
  top: 23px;
}

.openbtn1 span:nth-of-type(3) {
  top: 31px;
}

.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

/*==================================================
　ヘッダメニュー
===================================*/
.hd-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 0 30px var(--main-color);
  /*
  border: var(--main-color) solid;
  border-radius: 0px 0px 8px 8px;
  border-width: 0px 2px 2px 2px;
  -webkit-border-radius: 0px 0px 8px 8px;
  -moz-border-radius: 0px 0px 8px 8px; */
}

@media screen and (max-width: 930px) {
  .hd-main {
    border: none;
  }
  header #gnavi {
    display: none;
  }
}

header.child {
  position: relative;
}

header #gnavi > ul {
  display: flex;
  justify-content: start;
  margin: auto;
  padding: 0 20px 0 20px;
  height: 100%;
}

header #gnavi > ul > li {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 15px 15px 15px 15px;
  position: relative;
}

@media screen and (max-width: 930px) {
  header.child {
    position: absolute;
  }
}

/*==================================================
　ヘッダメニューのアンダーライン
===================================*/
header #gnavi li a {
  /*線の基点とするためrelativeを指定*/
  position: relative;
  color: var(--accent-color);
  /* text-shadow: 0px 0px 14px rgba(0, 0, 0, 0.5); */
  font-family: "Kumbh Sans", sans-serif;
  font-size: 15px;
  text-decoration: none;
  padding: 10px;
  display: block;
  letter-spacing: 0.2em;
  transition: all 0.3s;
}

header #gnavi li.current a,
header #gnavi li a:hover {
  color: var(--accent-color);
  /* text-shadow: 0px 0px 20px var(--accent-color-for-shadow); */
}

header #gnavi li a::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: 0;
  left: 10%;
  /*線の形状*/
  width: 80%;
  height: 2px;
  background: var(--accent-color);
  /*アニメーションの指定*/
  transition: all 0.3s;
  transform: scale(0, 1); /*X方向0、Y方向1*/
  transform-origin: left top; /*左上基点*/
}

/*現在地とhoverの設定*/
header #gnavi li.current a::after,
header #gnavi li a:hover::after {
  transform: scale(1, 1); /*X方向にスケール拡大*/
}

.fa,
.fas {
  font-weight: 900;
}
.fa,
.far,
.fas {
  font-family: "Font Awesome 5 Free";
}
.fa,
.fab,
.fal,
.far,
.fas {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

/*-------------------------------------------
Mainvisual
-------------------------------------------*/
.mainvisual {
  position: relative;
  z-index: -2;
}
.mainvisual img {
  width: 100%;
  height: 400px;
  object-fit: cover; /* 横幅は画面サイズにあわせて伸縮します */
}

@media screen and (max-width: 930px) {
  .mainvisual img {
    height: 200px;
  }
}

/*-------------------------------------------
子ページタイトル
-------------------------------------------*/

.childpage-title h1 {
  font-size: 80px;
  text-align: center;
  color: var(--accent-color);
  font-family: "WindSong", cursive;
  margin-top: 80px;
}

.childpage-title p {
  margin-top: 20px;
  text-align: center;
}

@media screen and (max-width: 930px) {
  .childpage-title h1 {
    font-size: 40px;
  }
}

/*==================================================
common
===================================*/
.background {
  background: linear-gradient(to bottom, #00000e, #1f2e55, #000000);
  padding-bottom: 60px;
}
.content-wrap {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 30px;
}

.section-title {
  display: block;
  align-items: center;
  margin: 60px auto;
}

.section-title img {
  height: 40px;
}

.section-title h2 {
  font-size: 60px;
  text-align: center;
  color: var(--accent-color);
  font-family: "WindSong", cursive;
}

.section-title p {
  font-size: 14px;
  margin-top: 18px;
  text-align: center;
}

.section-content {
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  padding: 30px;
}

.section-content p,
.black-content p {
  line-height: 2;
  letter-spacing: 0.08em;
}

.margin-small {
  margin: 30px auto;
}

/* ボタンのスタイル */
.buttonOutlineGradient {
  position: relative;
  display: block;
  width: 100%;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  height: 45px;
  padding: 2px;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-align: center;
  overflow-wrap: anywhere;
  background-color: var(--accent-color);
  /* background: linear-gradient(135deg, #fff, #15a1cc); */
  border-radius: 32px; /* (buttonの高さ / 2) の値 */
}

.buttonOutlineGradient::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--accent-color);
  /* background: linear-gradient(135deg, #fff, #15a1cc); */
  filter: blur(8px);
  border-radius: 32px; /* (buttonの高さ / 2) の値 */
  opacity: 0;
}

.buttonOutlineGradient_item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  background-color: #000;
  border-radius: 32px; /* (buttonの高さ / 2) の値 */
}

@media (any-hover: hover) {
  .buttonOutlineGradient::before {
    transition: opacity 0.2s;
    will-change: filter;
  }

  .buttonOutlineGradient:hover::before {
    opacity: 1;
  }
}

.black-content {
  width: 80%;
  background-color: var(--content-color);
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
}

a {
  color: var(--link-color);
  cursor: pointer;
}

@media screen and (max-width: 930px) {
  .section-content {
    width: 90%;
    padding: 0px;
    padding-bottom: 30px;
  }
  .black-content {
    width: 90%;
    padding-bottom: 30px;
  }
}

/*==================================================
プラン
===================================*/
.plan-info p {
  margin-bottom: 20px;
}

.dress-container {
  margin: 20px auto;
  margin-bottom: 20px;
  color: var(--main-color);
  text-align: center;
  border: var(--main-color) 1px solid;
  max-width: 500px;
}

.dress-container:hover {
  cursor: pointer;
  opacity: 0.8;
}

.dress-container img {
  width: 100%;
  max-height: 700px;
  object-fit: cover;
}

.dress-list ul {
  text-align: center;
}

.dress-list ul li {
  list-style: none;
}

.dress-container h3 {
  font-weight: bold;
  font-size: 24px;
  padding-top: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 930px) {
  .dress-container {
    max-width: 300px;
  }
  .dress-container img {
    max-height: 400px;
  }
}

.reserve-content {
  text-align: center;
}

.dress-main {
  margin: 20px auto;
  margin-bottom: 20px;
  color: var(--main-color);
  text-align: center;
  max-width: 500px;
}

.dress-main img {
  width: 100%;
  max-height: 700px;
  object-fit: cover;
}

.dress-image-container {
  display: flex;
  flex-wrap: wrap;
  margin: 20px auto;
  margin-bottom: 20px;
  color: var(--main-color);
  text-align: center;
}

.dress-image {
  width: 50%;
  padding: 15px;
}

.dress-image img {
  width: 100%;
  max-height: 700px;
  object-fit: cover;
}

@media screen and (max-width: 930px) {
  .dress-image-container {
    width: 70%;
  }
  .dress-image {
    width: 100%;
  }
}

.dress-detail table {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  letter-spacing: 0.05em;
  line-height: 1.7;
  margin-bottom: 20px;
}

.dress-detail tr {
  border-top: #fff solid 1px;
}

.dress-detail tr:first-child {
  border-top: 0;
}

.dress-detail th {
  font-weight: normal;
  border-right: #fff solid 1px;
  width: 20%;
  min-width: 125px;
}

.dress-detail td {
  text-align: left;
}

.dress-detail td,
.dress-detail th {
  padding: 3em 2em;
}

.dress-detail span {
  font-size: 12px;
  line-height: 1.2;
}

@media screen and (max-width: 930px) {
  .dress-detail th {
    width: 15%;
    min-width: 100px;
  }

  .dress-detail td,
  .dress-detail th {
    padding: 3em 1em;
  }
}
/*==================================================
　footer
===================================*/
footer {
  background-color: var(--footer-color);
  color: var(--main-color);
  opacity: 0.8;
  clear: both;
  width: 100%;
  display: block;
  padding-top: 40px;
}

.footer-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.footer-wrap {
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.f-logo,
.f-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 15px;
  padding-right: 15px;
}

@media screen and (max-width: 930px) {
  .f-logo {
    text-align: center;
    height: 100px;
    flex: 0 0 100%;
  }

  .f-nav {
    display: none;
  }
}

.f-nav li,
.f-nav ul {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 15px 15px 15px 15px;
  position: relative;
}

.f-nav li a {
  position: relative;
  color: var(--main-color);
  /* text-shadow: 0px 0px 14px rgba(0, 0, 0, 0.5); */
  font-family: "Kumbh Sans", sans-serif;
  font-size: 13px;
  text-decoration: none;
  padding: 10px;
  display: block;
  letter-spacing: 0.2em;
  transition: all 0.3s;
}

address {
  clear: both;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 12px;
  font-style: normal;
  padding-top: 60px;
  padding-bottom: 50px;
  text-align: center;
  letter-spacing: 1px;
}

#footer-title {
  margin-left: auto;
  margin-right: auto;
}

#footer-title img {
  height: 50px;
}

#footer-title h1 {
  font-family: "Kaisei Decol", serif;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}

#footer-title h2 {
  font-family: "Kaisei Decol", serif;
  font-size: 15px;
  letter-spacing: 0.1em;
}

.f-btn {
  height: 50px;
  padding-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

.f-btn a {
  border-radius: 4px;
  padding: 10px 40px 10px 40px;
}

.f-btn a:hover {
  opacity: 0.8;
}

@media screen and (min-width: 930px) {
  .f-btn {
    display: none;
  }
}

/*==================================================
　title
===================================*/
.child-title {
  display: flex;
  height: 100px;
  text-align: center;
  align-items: center;
}

.child-title-wrap {
  margin-left: auto;
  margin-right: auto;
}

.child-title-wrap h1 {
  font-size: 60px;
  font-family: "Kumbh Sans", sans-serif;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}

.child-title-wrap h2 {
  font-size: 15px;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 930px) {
  .child-title {
    height: 140px;
    padding-top: 40px;
  }
}
