/* ##############################################################################

    KEYFRAMES

############################################################################## */

@keyframes fade_up {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadezoom {
  0% {
    transform: scale(1) rotate(0.1deg);
  }
  100% {
    transform: scale(1.07) rotate(0.1deg);
  }
}
@keyframes fade_out_in {
  0% {
    transform: translateX(0);
  }
  49% {
    transform: translateX(20px);
    opacity: 0;
  }
  50% {
    transform: translateX(-20px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes circle {
  0% {
    stroke-dasharray: 0 227;
  }
  100% {
    stroke-dasharray: 227 227;
  }
}

/* ##############################################################################

    COMMON

############################################################################## */

html {
  height: 100%;
  overflow-y: scroll;
}
body {
  height: 100%;
  padding-top: 142px;
  color: #0c1a23;
}
body.page-contact:not(.page-thanks),
body.page-reserve:not(.page-thanks) {
  padding-top: 0;
}
svg,
svg path {
  transition: all 0.2s ease-out;
  line-height: 1;
}
/* gnav開閉時の固定 */
.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  body {
    padding-top: 56px;
  }
}

/* layout
**************************************** */

/* --- inner --- */
.inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.inner-sm {
  max-width: 880px;
}
.inner-mid {
  max-width: 1370px;
}
.inner-lg {
  max-width: calc(100% - 112px);
}

/* --- section_pdg --- */
.section_pdg {
  padding-top: 112px;
  padding-bottom: 112px;
}
.section_pdg-sm {
  padding-top: 72px;
  padding-bottom: 72px;
}
.container > .section_pdg:first-child {
  padding-top: 160px;
}

@media screen and (max-width: 767px) {
  .inner {
    width: 86%;
  }
  .inner-lg {
    max-width: calc(100% - 24px);
  }
  .section_pdg {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .section_pdg-sm {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .container > .section_pdg:first-child {
    padding-top: 32px;
  }
}

/* flex
**************************************** */

/* --- ざっくりflexレイアウト --- */
.flex-col1 {
  display: block;
  max-width: 717px;
}
.flex-col2,
.flex-col3,
.flex-col4 {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-col2 > * {
  width: 48.5%;
  margin-right: 3%;
  margin-bottom: 3%;
}
.flex-col2:not(.flex-reverse) > *:nth-child(even),
.flex-col2.flex-reverse > *:nth-child(odd) {
  margin-right: 0;
}
.flex-col3 > * {
  width: 31.33%;
  margin-right: 3%;
  margin-bottom: 3%;
}
.flex-col3 > *:nth-child(3n) {
  margin-right: 0;
}
.flex-col4 > * {
  width: 23.5%;
  margin-right: 2%;
  margin-bottom: 2%;
}
.flex-col4 > *:nth-child(4n) {
  margin-right: 0;
}
.flex-j-ctr {
  justify-content: center;
}
.flex-a-ctr {
  align-items: center;
}

@media screen and (max-width: 767px) {
  .flex-sp-block.flex-col2 > * {
    width: 100%;
    margin-right: 0;
    margin-bottom: 6%;
  }
  .flex-sp-block.flex-col2 > *:last-child {
    margin-bottom: 0;
  }

  /* --- ざっくりflexレイアウト - sp --- */
  .flex-sp-col2 > *,
  .flex-sp-col2.flex-col3 > *:nth-child(3n) {
    width: 48.5%;
    margin-right: 3%;
    margin-bottom: 3%;
  }
  .flex-sp-col2 > *:nth-child(even) {
    margin-right: 0;
  }
  .flex-sp-col3 > *,
  .flex-sp-col3.flex-col4 > *:nth-child(4n) {
    width: 31.33%;
    margin-right: 3%;
    margin-bottom: 3%;
  }
  .flex-sp-col3 > *:nth-child(3n) {
    margin-right: 0;
  }
}

/* bg
**************************************** */

/* --- CTA --- */
.bg-reserve {
  background-color: #cc0000 !important;
}
.bg-reserve:hover {
  background-color: #af0707 !important;
}

/* ttl
**************************************** */

/* --- page_ttl --- */
.page_ttl {
  text-align: left;
  margin-bottom: 8px;
}
.page_ttl-jp,
.page_ttl-en {
  display: block;
}
.page_ttl-jp {
  position: relative;
  font-size: 294%;
  line-height: 1.4;
  letter-spacing: 0.12em;
}
.page_ttl-jp::after {
  content: "";
  display: block;
  width: 260px;
  height: 1px;
  background-color: #bbb;
  top: 50%;
  position: absolute;
  left: calc(100% + 26px);
  opacity: 0.5;
}
.page_ttl-en {
  font-size: 120%;
  text-transform: uppercase;
}
.page_ttl--txt {
  position: relative;
  z-index: 2;
  flex-basis: 640px;
}
.page_ttl--txt--wrap {
  position: relative;
  margin-top: 24%;
}
.page_ttl--txt--img {
  position: absolute;
  bottom: -20%;
  left: 0;
  width: calc(100% - 50px);
  background-image: url(../images/common/pagettl_sub.jpg);
  background-size: cover;
}
.page_ttl--txt--img::before {
  content: "";
  display: block;
  padding-top: 74%; /* 高さを幅の74%に固定 */
}
.page_ttl--img {
  position: relative;
  flex-basis: 1200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page_ttl--img::before {
  content: "";
  display: block;
  padding-top: 62%; /* 高さを幅の65%に固定 */
}

/* --- page_ttl sm --- */
.ttl-sm .page_ttl--txt--img {
  display: none;
}
.ttl-sm .page_ttl--img::before {
  content: "";
  display: block;
  padding-top: 32%; /* 高さを幅の32%に固定 */
}

/* --- section_ttl --- */
.section_ttl {
  margin-bottom: 24px;
  font-size: 220%;
  font-weight: normal;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
.section_ttl-sm {
  font-size: 267%;
}
.section_catch {
  text-align: center;
  font-size: 120%;
  font-weight: 700;
}

/* --- heading --- */
.heading-1 {
  font-size: 213%;
}
.heading-2 {
  font-size: 160%;
}
.heading-3 {
  font-size: 147%;
}
.heading-4 {
  font-size: 100%;
}

@media screen and (max-width: 1380px) {
  .page_ttl-jp {
    font-size: 240%;
  }
  .page_ttl--txt--wrap {
    margin-left: 24px;
  }
}
@media screen and (max-width: 767px) {
  /* --- page_ttl --- */
  .page_ttl-jp {
    font-size: 186%;
  }
  .page_ttl-en {
    font-size: 93%;
    margin-bottom: 0;
  }
  .page_ttl {
    display: block;
    width: 86%;
    margin: auto;
  }
  .page_ttl--txt--wrap {
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
    margin-top: 48px;
    margin-right: auto;
    margin-left: 0;
    margin-bottom: 24px;
  }
  .page_ttl--txt--img,
  .page_ttl-jp::after {
    display: none;
  }
  .page_ttl--img::before {
    padding-top: 100%;
  }

  /* --- section_ttl --- */
  .section_ttl {
    font-size: 172%;
  }
  .section_catch {
    font-size: 86%;
  }

  /* --- heading --- */
  .heading-1 {
    font-size: 158%;
  }
  .heading-2 {
    font-size: 143%;
  }
  .heading-3 {
    font-size: 120%;
  }
}

/* breadcrumbs
**************************************** */
.breadcrumbs {
  text-align: right;
  padding: 16px 0;
  font-size: 87%;
  color: #909090;
  position: relative;
  z-index: 1;
}
.breadcrumbs a {
  text-decoration: underline;
  color: #909090;
}

/* txt
**************************************** */
.txt-lg {
  font-size: 107%;
}
.txt-sm {
  font-size: 93%;
}
.txt-xsm {
  font-size: 86%;
}
.txt-attention {
  font-size: 88%;
  color: #909090;
  letter-spacing: 0.08em;
}
.txt-attention-kome {
  position: relative;
  padding-left: 1.4em;
}
.txt-attention-kome::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}
.txt-ctr {
  text-align: center;
}
.txtarea p:not(:last-child) {
  margin-bottom: 1em;
}

/* font */
.font-jp-b {
  font-family: Hiragino Kaku Gothic W1 JIS2004, sans-serif;
}
.font-en {
  font-family: brandon-grotesque, sans-serif;
}
.font-jp-en {
  font-family: brandon-grotesque, Hiragino Kaku Gothic W3 JIS2004, sans-serif;
}

/* color */
.txt-gray {
  color: #909090;
}
.txt-blue {
  color: #7cd1d2;
}

/* table & list
**************************************** */
table {
  width: 100%;
}

/* --- table_default --- */
.table_default th,
.table_default td {
  padding: 16px 8px;
}
.table_default th {
  border-bottom: 2px solid #666;
}
.table_default td {
  padding: 16px 16px;
  border-bottom: 1px solid #666;
  border-left: 4px solid #fff;
}

/* --- table_line --- */
.table_line th,
.table_line td {
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 24px;
  padding-right: 24px;
}
.table_line th {
  background-color: #666;
  border: 1px solid #666;
  color: #fff;
  font-size: 107%;
}
.table_line td {
  border: 1px solid #d2d2d2;
  font-size: 93%;
}

/* --- list ---- */
.list {
  list-style-type: none;
}
.list li:not(:last-child) {
  margin-bottom: 16px;
}
.list li {
  position: relative;
  padding-left: 1.4em;
}
.list-disc li::before,
.list-square li::before,
.list-circle li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 6px;
  background-color: #666;
}
/* 数字付きリスト */
.list-num {
  padding-left: 1.4em;
  list-style-type: decimal;
}
.list-num li {
  padding-left: 0;
}
.list-num li::before {
  display: none;
}
/* 白丸付きリスト */
.list-circle li::before {
  border: 1px solid #666;
  background-color: transparent;
}
/* 四角付きリスト */
.list-square li::before {
  border-radius: 0;
  background-color: #666;
}
/* 入れ子のスタイル */
.list li ul {
  margin-top: 16px;
}
.list li ul li::before {
  width: 6px;
  height: 6px;
  top: 0.8em;
}

/* --- dlリスト --- */
.list-dl {
  position: relative;
  border-top: 1px solid #bfbfbf;
}
.list-dl dt {
  position: absolute;
  padding-top: 16px;
  color: #666;
  font-weight: 700;
}
.list-dl dd {
  padding-left: 140px;
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #bfbfbf;
}

/* link
**************************************** */
.link:hover {
  opacity: 0.6;
}
.link-blue {
  color: #7cd1d2;
  text-decoration: underline;
}
/* margin-bottom: 32px;
  }

/* btn
**************************************** */
.btn a,
.btn.nolink span {
  position: relative;
  display: inline-block;
  min-width: 260px;
  min-height: 56px;
  padding: 16px 48px;
  color: #000;
  background-color: transparent;
  font-size: 93%;
  text-align: center;
  letter-spacing: 0.1em;
  overflow: hidden;
  border: 1px solid #313131;
  border-radius: 100px;
  font-family: brandon-grotesque, sans-serif;
  font-weight: 400;
  transition: all 0.2s ease-out;
}
.btn-wh a {
  border-color: #fff;
  color: #fff;
}
.btn a:hover,
.btn.nolink span:hover {
  background-color: #313131;
  color: #fff;
}
.btn-wh a:hover {
  color: #fff;
}
.btn a::after,
.btn.nolink span::after {
  content: "";
  position: absolute;
  top: calc(50% - 3px);
  right: 24px;
  display: block;
  width: 6px;
  height: 6px;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  transform: rotate(45deg);
  transition: all 0.2s ease-out;
}
.btn.btn-anker a::after {
  transform: rotate(135deg);
  top: calc(50% - 5px);
}
.btn-wh a::after {
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
}
.btn a:hover::after,
.btn.nolink span:hover::after {
  right: 16px;
  border-color: #fff;
}
.btn.btn-anker a:hover::after,
.btn.nolink.btn-anker span:hover::after {
  right: 24px;
}

.flex .btn + .btn {
  margin-left: 16px;
}

/* btn external */
.btn-out svg,
.btn-pdf svg {
  position: absolute;
  top: calc(50%);
  right: 18px;
  display: block;
  width: 22px;
  height: 21px;
  transform: translateY(-50%);
}
.btn.btn-out a::after,
.btn.btn-pdf a::after {
  display: none;
}
.btn.btn-out svg {
  width: 23px;
  height: 23px;
}
.btn-out svg .ex_fill_color {
  fill: #313131;
}
.btn-out a:hover svg .ex_fill_color {
  fill: #fff;
}
.btn-pdf svg .pdf_fill_color {
  fill: #313131;
}
.btn-pdf a:hover svg .pdf_fill_color {
  fill: #fff;
}

/* btn-square */
.btn-square a {
  border-radius: 4px;
}

/* btn-blue */
.btn-blue a {
  background-color: #7fcecf;
  border-color: #7fcecf;
  color: #fff;
}
.btn-blue a::after {
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
}
.btn-blue a:hover {
  background-color: #47a7a8;
  border-color: #47a7a8;
}

/* btn-gray */
.btn-gray a {
  background-color: #eeeeee;
  border-color: #eeeeee;
  color: #909090;
}
.btn-gray a::after,
.btn-gray a:hover::after {
  border-top: solid 1px #909090;
  border-right: solid 1px #909090;
}
.btn-gray a:hover {
  background-color: #dfdfdf;
  border-color: #dfdfdf;
  color: #909090;
}

/* important btn */
.btn-imp a {
  box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.11);
  color: #fff;
  height: 72px;
  width: 420px;
  padding: 23px 32px;
  border-radius: 6px;
  font-family: brandon-grotesque, sans-serif;
  font-weight: 700;
  border: none;
  background: rgb(255, 208, 19);
  background: linear-gradient(270deg, #94d8f1 0%, #7be3e4 53.34%, #94d8f1 100%);
  background-size: 150% 100%; /* ここが肝。これを設定しないと動かない。 */
  background-position: 100% 50%;
  transition: all 0.7s cubic-bezier(0.26, 0, 0.36, 1);
}
.btn-imp a::after {
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
}
.btn a:hover {
  background-position: 0% 50%;
}
.btn-imp.btn-out svg .ex_fill_color {
  fill: #fff;
}
.btn-imp.btn-pdf svg .pdf_fill_color {
  fill: #fff;
}

/* important btn insta */
.btn-imp.btn-insta a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: -moz-linear-gradient(
    0deg,
    rgb(254, 190, 88) 0%,
    rgb(244, 105, 57) 26%,
    rgb(217, 46, 119) 49%,
    rgb(172, 52, 174) 80%,
    rgb(80, 98, 208) 100%
  );
  background: -webkit-linear-gradient(
    0deg,
    rgb(254, 190, 88) 0%,
    rgb(244, 105, 57) 26%,
    rgb(217, 46, 119) 49%,
    rgb(172, 52, 174) 80%,
    rgb(80, 98, 208) 100%
  );
  background: -ms-linear-gradient(
    0deg,
    rgb(254, 190, 88) 0%,
    rgb(244, 105, 57) 26%,
    rgb(217, 46, 119) 49%,
    rgb(172, 52, 174) 80%,
    rgb(80, 98, 208) 100%
  );
  background-size: 150% 100%; /* ここが肝。これを設定しないと動かない。 */
  background-position: 0% 50%;
}
.btn-imp.btn-insta a:hover {
  background-position: 100% 50%;
}
.btn-imp.btn-insta a svg {
  display: none;
}
.btn-imp.btn-insta a::before {
  content: "";
  display: inline-block;
  position: relative;
  width: 13px;
  height: 13px;
  margin-right: 12px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxOCAxOCI+PHBhdGggZmlsbD0iI0ZGRiIgZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNMTcuOTUgMTIuNzEzYy0uMDQzLjk1OC0uMTk2IDEuNjEyLS40MTggMi4xODVhNC40MTMgNC40MTMgMCAwMS0xLjAzOSAxLjU5NWMtLjUuNTAxLTEuMDAzLjgwOS0xLjU5NSAxLjAzOS0uNTczLjIyMi0xLjIyNy4zNzUtMi4xODUuNDE4LS45NjEuMDQ0LTEuMjY4LjA1NC0zLjcxMy4wNTQtMi40NDUgMC0yLjc1Mi0uMDEtMy43MTItLjA1NC0uOTU5LS4wNDMtMS42MTMtLjE5Ni0yLjE4Ni0uNDE4YTQuNDA1IDQuNDA1IDAgMDEtMS41OTUtMS4wMzkgNC40MTMgNC40MTMgMCAwMS0xLjAzOS0xLjU5NWMtLjIyMi0uNTczLS4zNzUtMS4yMjctLjQxOC0yLjE4NUMuMDA2IDExLjc1Mi0uMDA0IDExLjQ0NS0uMDA0IDljMC0yLjQ0NS4wMS0yLjc1Mi4wNTQtMy43MTMuMDQzLS45NTguMTk2LTEuNjEzLjQxOC0yLjE4NWE0LjQwNSA0LjQwNSAwIDAxMS4wMzktMS41OTVBNC40MDUgNC40MDUgMCAwMTMuMTAyLjQ2OEMzLjY3NS4yNDYgNC4zMjkuMDkzIDUuMjg4LjA1IDYuMjQ4LjAwNiA2LjU1NS0uMDA0IDktLjAwNGMyLjQ0NSAwIDIuNzUyLjAxIDMuNzEzLjA1NC45NTguMDQzIDEuNjEyLjE5NiAyLjE4NS40MTguNTkyLjIzIDEuMDk1LjUzOCAxLjU5NSAxLjAzOS41MDEuNS44MDkgMS4wMDMgMS4wMzkgMS41OTUuMjIyLjU3Mi4zNzUgMS4yMjcuNDE4IDIuMTg1LjA0NC45NjEuMDU0IDEuMjY4LjA1NCAzLjcxMyAwIDIuNDQ1LS4wMSAyLjc1Mi0uMDU0IDMuNzEzem0tMS42Mi03LjM1MmMtLjA0MS0uODc4LS4xODctMS4zNTQtLjMxMS0xLjY3MmEyLjc4NiAyLjc4NiAwIDAwLS42NzMtMS4wMzUgMi43ODYgMi43ODYgMCAwMC0xLjAzNS0uNjczYy0uMzE4LS4xMjQtLjc5NC0uMjctMS42NzItLjMxMS0uOTUtLjA0My0xLjIzNS0uMDUyLTMuNjM5LS4wNTJzLTIuNjg5LjAwOS0zLjYzOS4wNTJjLS44NzguMDQxLTEuMzU0LjE4Ny0xLjY3Mi4zMTEtLjQyLjE2My0uNzIuMzU4LTEuMDM1LjY3My0uMzE1LjMxNS0uNTEuNjE1LS42NzMgMS4wMzUtLjEyNC4zMTgtLjI3Ljc5NC0uMzExIDEuNjcyLS4wNDMuOTUtLjA1MiAxLjIzNS0uMDUyIDMuNjM5cy4wMDkgMi42ODkuMDUyIDMuNjM5Yy4wNDEuODc3LjE4NyAxLjM1NC4zMTEgMS42NzIuMTYzLjQyLjM1OC43Mi42NzMgMS4wMzUuMzE1LjMxNS42MTUuNTEgMS4wMzUuNjczLjMxOC4xMjQuNzk0LjI3IDEuNjcyLjMxLjk1LjA0NCAxLjIzNS4wNTMgMy42MzkuMDUzczIuNjg5LS4wMDkgMy42MzktLjA1M2MuODc4LS4wNCAxLjM1NC0uMTg2IDEuNjcyLS4zMS40Mi0uMTYzLjcyLS4zNTggMS4wMzUtLjY3My4zMTUtLjMxNS41MS0uNjE1LjY3My0xLjAzNS4xMjQtLjMxOC4yNy0uNzk1LjMxMS0xLjY3Mi4wNDMtLjk1LjA1Mi0xLjIzNS4wNTItMy42MzlzLS4wMDktMi42ODktLjA1Mi0zLjYzOXptLTIuNTIzLS4wODdhMS4wODEgMS4wODEgMCAxMTAtMi4xNjIgMS4wODEgMS4wODEgMCAwMTAgMi4xNjJ6TTkgMTMuNjI0YTQuNjI0IDQuNjI0IDAgMTEwLTkuMjQ3IDQuNjI0IDQuNjI0IDAgMDEwIDkuMjQ3em0wLTcuNjI1YTMgMyAwIDEwMCA2LjAwMiAzIDMgMCAxMDAtNi4wMDJ6Ii8+PC9zdmc+");
}

/* contact btn */
.btn-contact {
  height: auto;
}
.btn-contact a {
  width: 172px;
  height: 46px;
  min-width: 172px;
  min-height: 46px;
  text-align: center;
  display: block;
  line-height: 46px;
  letter-spacing: 0.08em;
  padding: 0;
  font-size: 100%;
  border: 1px solid #dddddd;
  color: #989898;
  background-color: transparent;
}
.btn-contact a path {
  transition: all 0.2s ease-out;
}
.btn-contact a::after {
  border-top: 1px solid #b4b4b4;
  border-right: 1px solid #b4b4b4;
}
.btn-contact svg {
  position: absolute;
  top: 2px;
  bottom: 0;
  left: 17px;
  width: 16px;
  height: 16px;
  margin: auto;
}

/* gnav btn-contact */
.btn-contact a:hover {
  background-color: transparent;
  border-color: #1f2427;
  color: #1f2427;
}
.btn-contact a:hover::before {
  border-color: #1f2427;
}
.btn-contact a:hover path {
  fill: #1f2427;
}
.btn-contact a:hover::before {
  border-color: #1f2427;
}
.gnav .btn-contact a {
  height: 56px;
  min-height: 56px;
}

/* footer btn-contact */
footer .btn-contact a {
  background-color: transparent;
  border-color: #1f2427;
  color: #1f2427;
}
footer .btn-contact a:hover {
  background-color: #1f2427;
  color: #fff;
}
footer .btn-contact a::after {
  border-color: #1f2427;
}
footer .btn-contact a path {
  fill: #1f2427;
}
footer .btn-contact a:hover path {
  fill: #fff;
}
footer .btn-contact a::after {
  border-color: #1f2427;
}
footer .btn-contact a:hover::before {
  border-color: #fff;
}
@media screen and (max-width: 767px) {
  .btn a {
    min-width: 280px;
    padding: 12px 48px;
    min-height: 0;
  }
  .flex .btn,
  .flex .btn + .btn {
    margin-top: 4px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 767px) {
  /* btn-imp */
  .btn-imp a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0;
    line-height: 1em;
    padding: 0 48px;
  }
  .btn-imp.btn-insta a {
    background-size: 100%;
  }
}

/* cta
**************************************** */
.cta {
  margin-bottom: 160px;
  margin-top: 83px;
}
.cta a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 480px;
  overflow: hidden;
}
.cta span,
.cta h3 {
  position: relative;
  display: block;
  letter-spacing: 0.12em;
  z-index: 2;
}
.cta h3 {
  font-size: 261%;
  letter-spacing: 0.08em;
  font-weight: 400;
}
.cta a::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background-image: url(../images/index/reservation_bg.jpg);
  background-size: cover;
  opacity: 0.5;
  transition: all 1s cubic-bezier(0.26, 0, 0.36, 1);
}
.cta a:hover {
  box-shadow: 0 0 27px 0 rgba(0, 0, 0, 0.13);
}
.cta a:hover::before {
  opacity: 1;
  transform: scale(1.1) rotate(0.1deg);
}

@media screen and (max-width: 767px) {
  .cta--btn.btn a {
    min-width: 0;
  }
  .cta {
    margin-bottom: 48px;
    margin-top: 48px;
  }
  .cta a {
    box-shadow: 0 0 27px 0 rgba(0, 0, 0, 0.13);
    height: 180px;
  }
  .cta a::after {
    transition: all 1.2s cubic-bezier(0.26, 0, 0.36, 1);
  }
  .cta.active a::after {
    opacity: 1;
    transform: scale(1.2);
  }
  .cta h3 {
    font-size: 220%;
  }
}

/* icon
**************************************** */
.icon-pin-blue {
  display: inline-block;
  background-image: url("data:image/svg+xml;base64,ICAgICAgICAgICAgPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OCA0OCI+PHRpdGxlPjgxM19waW5faDwvdGl0bGU+PHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTM4LDE4Ljg4YzAsMTAuMTgtMTQsMjUuNzktMTQsMjUuNzlTMTAsMjkuMDYsMTAsMTguODhhMTQsMTQsMCwwLDEsMjgsMFoiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzdDRDFEMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiLz48Y2lyY2xlIGN4PSIyNCIgY3k9IjE5LjY3IiByPSI0IiBmaWxsPSJub25lIiBzdHJva2U9IiM3Q0QxRDIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSIyIi8+PC9zdmc+");
  width: 24px;
  height: 24px;
}
.icon-pin-gray {
  display: inline-block;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OCA0OCI+PHRpdGxlPjgxM19waW5faDwvdGl0bGU+PHJlY3Qgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTM4LDE4Ljg4YzAsMTAuMTgtMTQsMjUuNzktMTQsMjUuNzlTMTAsMjkuMDYsMTAsMTguODhhMTQsMTQsMCwwLDEsMjgsMFoiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzkwOTA5MCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiLz48Y2lyY2xlIGN4PSIyNCIgY3k9IjE5LjY3IiByPSI0IiBmaWxsPSJub25lIiBzdHJva2U9IiM5MDkwOTAiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSIyIi8+PC9zdmc+");
  width: 24px;
  height: 24px;
}

/* animation
**************************************** */
.fade_up {
  opacity: 0;
  transform: translateY(10px);
}
.active.fade_up,
.active .fade_up {
  animation: fade_up 0.6s cubic-bezier(0.26, 0, 0.36, 1) alternate both;
}
.active .anime-delay-03s {
  animation-delay: 0.3s;
}
.active .anime-delay-06s {
  animation-delay: 0.6s;
}
.transition-normal {
  transition: all 0.6s cubic-bezier(0.26, 0, 0.36, 1);
}

/* ##############################################################################

    Loops

############################################################################## */

.ttl-01 {
  font-family: Hiragino Kaku Gothic W1 JIS2004, sans-serif;
  color: #1f2427;
  font-size: 51px;
  line-height: 62px;
  text-align: center;
  font-size: 340%;
  letter-spacing: 0.14em;
  margin-bottom: 72px;
  margin-top: -180px;
  padding-top: 180px;
}
.home .ttl-01 {
  padding-top: 0;
  margin-top: 0;
}
.ttl-01-en {
  font-size: 108%;
  margin-bottom: 16px;
}
.ttl-01.txt-lft {
  text-align: left;
}

/* --- ttl-01調整用スタイル --- */
.ttl-01 span.sp-none {
  display: inline;
}
.ttl-01-sm {
  display: block;
  font-size: 78%;
  line-height: 1.7;
}
.ttl-01-xsm {
  display: block;
  font-size: 40%;
  line-height: 1.8;
}

.ttl-02 {
  position: relative;
  font-size: 280%;
  font-family: Hiragino Kaku Gothic W1 JIS2004, sans-serif;
  letter-spacing: 0.14em;
  color: #1f2427;
  text-align: center;
  padding-bottom: 16px;
  margin-bottom: 40px;
  line-height: 1.4;
}
.ttl-02::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 40px;
  height: 1px;
  background-color: #1f2427;
}
.ttl-02-sub {
  text-align: center;
}
.ttl-03 {
  font-family: Hiragino Kaku Gothic W1 JIS2004, sans-serif;
  font-size: 240%;
  margin-bottom: 16px;
  color: #1f2427;
  line-height: 1.4;
  letter-spacing: 0.14em;
}

@media screen and (max-width: 767px) {
  .ttl-01 {
    font-size: 200%;
    margin-bottom: 24px;
    line-height: 1.5;
    pointer-events: none;
    margin-top: -45px;
    padding-top: 45px;
  }
  .ttl-01-en {
    font-size: 96%;
    color: #909090;
    margin-bottom: 0;
  }
  .ttl-01 span.sp-none {
    display: none;
  }
  .ttl-01-xsm {
    font-size: 58%;
  }
  .ttl-02 {
    line-height: 1.5;
    font-size: 186%;
  }
  .ttl-03 {
    line-height: 1.5;
    font-size: 160%;
  }
}
@media screen and (max-width: 350px) {
  .ttl-01 {
    font-size: 186%;
  }
  .ttl-02 {
    font-size: 170%;
  }
}

/* plan
  **************************************** */

.planmode {
  background-color: #fafafa !important;
}
.planmode:nth-child(even) {
  background-color: #f5f5f5 !important;
}
.planmode .ttl-02::after {
  display: none;
  padding-bottom: 0;
}
.planmode .ttl-02-sub {
  font-size: 127%;
  text-align: center;
  font-family: Hiragino Kaku Gothic W1 JIS2004, sans-serif;
  margin-bottom: 8px;
}
.planmode .ttl-02-sub:not(:first-child) {
  margin-top: 88px;
}
.plan_price {
  display: flex;
}
.price--num {
  padding: 30px 0 28px;
  flex: 1;
  background-color: #f5f5f5;
  font-size: 200%;
  text-align: center;
  letter-spacing: 0.08em;
  flex-basis: 300px;
}
.show_sub .price--num {
  line-height: 1.2;
}
.price--num--lg {
  font-size: 152%;
  margin-left: 8px;
}
.price--num small {
  font-size: 70%;
}
.price--num--sub {
  font-size: 50%;
}
.price--plus {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  flex: 2;
  font-size: 157%;
  text-align: center;
}
.price--plus a span {
  border-bottom: 1px solid #313131;
}
.price--plus a:hover span {
  color: #7cd1d2;
  border-color: #7cd1d2;
}
.plan_price.not_set .price--plus {
  border: 2px solid #f5f5f5;
}
.plan--set {
  display: flex;
  flex-wrap: wrap;
  background-color: #f5f5f5;
  padding: 32px;
}
.plan--set.not_plus {
  padding-top: 0;
  padding-bottom: 32px;
}
.plan--set li {
  width: calc(100% / 6 - 16px);
  margin: 8px;
  background-color: #fff;
  border-radius: 24px;
  padding: 17px 12px;
}
.plan--set li img {
  width: auto;
  height: 55px;
  display: block;
  margin: 0 auto 8px;
}
.plan--set li:first-child {
  margin-left: auto;
}
.plan--set li:last-child {
  margin-right: auto;
}
.plan--set li .txt {
  text-align: center;
  line-height: 1.4;
  font-size: 93%;
}
.plan_option dt {
  float: left;
  margin-right: 27px;
}
.plan--attention {
  margin-top: 16px;
}

/* --- plan-col1 --- */
.planmode .lps_parts--child:last-child .column_item {
  margin-bottom: 0;
}
.planmode .lps_parts + .lps_parts {
  margin-top: 40px;
}
.planmode .flex-col1 {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #f5f5f5;
  padding: 40px 48px;
}
.planmode .bg-wh {
  background-color: transparent;
}
.planmode .lps_parts--column .text.bg-wh {
  background-color: transparent;
  padding: 0;
}
.planmode .flex-col1 .ttl-03 {
  font-size: 220%;
  border-bottom: 2px solid #1f2427;
  padding-bottom: 16px;
  margin-bottom: 24px;
}
.planmode .flex-col1 .mce-content-body {
  padding: 0 64px;
}
.link_wrapper {
  padding-bottom: 0;
}
.link_wrapper,
.link_wrapper-fixed {
  transition: 0.4s all ease;
  background: rgba(255, 255, 255, 0.9);
}
.link_wrapper-fixed {
  opacity: 0;
  height: 0;
  padding: 0 !important;
}
.link_wrapper.section_pdg-sm,
.link_wrapper-fixed.section_pdg-sm {
  padding: 40px 0;
}
.link_wrapper-fixed.fixed {
  z-index: 100;
  top: 104px;
  height: auto;
  padding: 24px 0 !important;
  opacity: 1;
  display: block;
}
.link_wrapper-fixed.fixed.section_pdg-sm {
  padding: 24px 0;
}
.link_wrapper-fixed .btn {
  margin-bottom: 0;
}
.bnr.section_pdg {
  padding-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .lps_plan .ttl-02 {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 16px;
  }
  .lps_plan .inner {
    width: 100%;
  }
  .plan_price {
    display: block;
  }
  .price--num {
    padding: 16px;
    font-size: 140%;
    line-height: 1.6;
  }
  .price--num--lg {
    font-size: 162%;
  }
  .price--plus {
    padding: 16px;
    font-size: 160%;
    border: 2px solid #f5f5f5;
    margin-bottom: 24px;
  }
  .price--plus a,
  .price--plus span {
    font-size: 86%;
  }
  .plan--set {
    padding: 8px;
  }
  .plan--set li {
    padding: 10px;
    font-size: 86%;
    border-radius: 16px;
    width: calc(100% / 2 - 8px);
    margin: 4px;
  }
  .plan--set li .txt {
    line-height: 1.4;
    font-size: 108%;
  }
  .planmode .flex-col1 {
    padding: 24px;
  }
  .planmode .flex-col1 .mce-content-body {
    padding: 0;
  }
  .planmode .flex-col1 .ttl-03 {
    font-size: 160%;
    text-align: center;
    border-bottom: 1px solid #1f2427;
  }
  .planmode .ttl-02-sub {
    font-size: 100%;
  }
  .planmode .ttl-02-sub:not(:first-child) {
    margin-top: 56px;
  }
  .plan--set.not_plus {
    padding-bottom: 12px;
  }
  .link_wrapper-fixed.fixed {
    top: 64px;
    padding: 8px 0 !important;
    background: rgba(255, 255, 255, 0.3);
  }
  .link_wrapper {
    padding-bottom: 0;
    z-index: 20;
    position: relative;
    display: flex;
  }
  .bnr {
    margin-left: 16px;
    margin-right: 16px;
    z-index: 10;
    position: relative;
  }
}

/* faq
**************************************** */

.qa--item {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 72px;
}
.qa--item--q {
  position: relative;
  padding-left: 64px;
  padding-right: 64px;
  font-size: 170%;
  margin-bottom: 17px;
  cursor: pointer;
}
.q_icon {
  font-size: 156%;
  color: #909090;
  left: 0;
  position: absolute;
  top: -14px;
}
.qa--item--a {
  display: none;
  padding-left: 64px;
  max-width: 88%;
  opacity: 1;
  height: auto;
}
.qa--item--q::before {
  display: block;
  content: "";
  position: absolute;
  top: 22px;
  right: 0;
  margin: auto;
  width: 30px;
  height: 2px;
  background-color: #909090;
  transition: 0.4s ease;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}
.qa--item--q::after {
  display: block;
  content: "";
  position: absolute;
  top: 22px;
  right: 0;
  margin: auto;
  width: 30px;
  height: 2px;
  background-color: #909090;
  transition: 0.4s ease;
}
.qa--item.active .qa--item--q::before {
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}
.qa--item.active .qa--item--q.active::after {
  background-color: transparent;
}

@media screen and (max-width: 767px) {
  .qa--item {
    margin-bottom: 40px;
  }
  .q_icon {
    font-size: 126%;
    top: -4px;
  }
  .qa--item--q {
    padding-left: 32px;
    padding-right: 32px;
    font-size: 128%;
  }
  .qa--item--q::before {
    top: 15px;
    right: 0;
    width: 20px;
  }
  .qa--item--q::after {
    top: 15px;
    width: 20px;
  }
  .qa--item--a {
    padding-left: 32px;
    max-width: none;
  }
}

/* ##############################################################################

    HEADER

############################################################################## */

/* header
**************************************** */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 142px;
  background-color: transparent;
  line-height: 1;
  z-index: 9990;
  transition: all 0.4s ease-out;
}
.page-contact:not(.page-thanks) .header,
.page-reserve:not(.page-thanks) .header {
  position: absolute;
  background-color: transparent;
  box-shadow: none;
}
.page-contact:not(.page-thanks) .page_ttl,
.page-reserve:not(.page-thanks) .page_ttl {
  justify-content: center;
  text-align: center;
}
.page-contact:not(.page-thanks) .page_ttl--txt--img,
.page-contact:not(.page-thanks) .page_ttl--img,
.page-contact:not(.page-thanks) .page_ttl-jp::after,
.page-contact:not(.page-thanks) .header--sns,
.page-reserve:not(.page-thanks) .page_ttl--txt--img,
.page-reserve:not(.page-thanks) .page_ttl--img,
.page-reserve:not(.page-thanks) .page_ttl-jp::after,
.page-reserve:not(.page-thanks) .header--sns {
  display: none;
}
.page-contact .contact-none,
.page-reserve .contact-none {
  display: none;
}
.contact--tel .tel_txt {
  line-height: 1.4;
}
.page-contact .contact--tel .font-jp,
.page-reserve .contact--tel .font-jp {
  font-size: 69%;
  margin-right: 13px;
}
.page-contact .contact--tel span.font-en,
.page-reserve .contact--tel span.font-en {
  font-size: 69%;
  margin-right: 13px;
}
.page-contact .section_pdg,
.page-reserve .section_pdg {
  padding-top: 0;
  padding-bottom: 64px;
}
.header .inner {
  width: 100%;
  max-width: 100%;
  height: 100%;
  padding-left: 32px;
}

@media screen and (min-width: 1025px) {
  .header--nav,
  .gnav,
  .gnav ul,
  .gnav li,
  .gnav a {
    height: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .header {
    height: 72px;
    padding-left: 16px;
  }
  .header .inner {
    padding-left: 0;
  }
}

/* gnav
**************************************** */
.gnav {
  font-family: brandon-grotesque, Hiragino Kaku Gothic W3 JIS2004, sans-serif;
}
.gnav .gnav--menu > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 0 24px;
  text-align: center;
}
.gnav .gnav--menu:hover > a {
  color: #7cd1d2;
}
.gnav span {
  position: relative;
  padding: 8px 0;
}
.gnav .current > span {
  color: #6fc2c3;
}
.header--logo {
  margin-right: auto;
  align-self: center;
}
.header--logo a {
  display: block;
}

/* --- subnav --- */

.subnav {
  position: relative;
}
.subnav .subnav_label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}
.subnav .subnav_label {
  padding: 0 24px;
  cursor: default;
}
.subnav .subnav_label a {
  height: auto;
  padding: 30px 0;
}
.subnav .subnav_label a.pointer-none {
  pointer-events: none;
  cursor: default;
}
.subnav .subnav_label > a:hover:not(.pointer-none) {
  color: #7cd1d2;
}
.subnav .subnav_label::after {
  content: "";
  position: absolute;
  top: 33px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 5px;
  height: 5px;
  margin: auto;
  border-top: 1px solid #909294;
  border-left: 1px solid #909294;
  transform: rotate(-135deg);
}
.subnav.current .subnav_label::after {
  border-color: #6fc2c3;
}
.gnav .subnav--list {
  position: absolute;
  width: 480px;
  top: 106px;
  padding: 24px 24px 6px;
  left: 50%;
  height: auto;
  transform: translateX(-50%);
  transition: all 0.2s ease-out;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 0 18px 1px rgba(64, 103, 111, 0.11);
}
.gnav--plan .subnav--list {
  background: #fff !important;
  padding: 32px 32px 6px;
  width: auto;
  box-shadow: 0 0 18px 1px rgba(64, 103, 111, 0.11);
}
.gnav--plan .subnav--list ul {
  margin-right: 16px;
}
.gnav--plan .subnav--list ul:nth-of-type(3) {
  margin-right: 0;
}
.gnav--plan .subnav--list li {
  /*width: 24%;
    display: inline-flex;*/
  margin-bottom: 24px;
  padding-left: 0;
}
.gnav--plan .subnav--list a {
  padding: 0;
  display: flex;
  width: 280px;
  justify-content: flex-start;
  align-items: center;
  background: transparent !important;
  color: #333;
}
.gnav--plan .subnav--list a:hover {
  color: #6fc2c3;
}
.subnav:hover .subnav--list {
  opacity: 1;
  pointer-events: visible;
  /*background-color: rgba(255,255,255,.01);*/
  background: #fff;
}
.header-sm .subnav--list {
  top: 92px;
}
.subnav--list li {
  height: auto;
  margin-bottom: 16px;
  padding-left: 16px;
  position: relative;
}
.subnav--list li::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-top: 1px solid #555;
  border-right: 1px solid #555;
  left: 0;
  transform: rotate(45deg);
  top: 16px;
  left: 8px;
}
.subnav--list a {
  height: auto;
  background-color: transparent;
  display: flex;
  text-align: center;
  padding: 12px;
  color: #333;
  border-radius: 3px;
}
.subnav--list a:hover {
  color: #47a7a8;
}
.subnav--ttl {
  margin-bottom: 16px;
  font-size: 115%;
  color: #47a7a8;
  font-weight: bold;
}
.menu-bg {
  width: 100px;
  height: 48px;
  display: flex;
  background-repeat: no-repeat;
  background-size: cover !important;
  background-position: top center !important;
  margin-right: 16px;
  border-radius: 3px;
}
.menu-bg.wedding {
  width: 100%;
  height: 80px;
  align-items: center;
  justify-content: center;
  margin-right: 0;
  margin-bottom: 4px;
}
.menu-bg.wedding::before {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.menu-bg.wedding:hover::before {
  background: rgba(0, 0, 0, .);
}
.wedding-txt {
  width: 100%;
  text-align: left;
  position: absolute !important;
  top: 30%;
  left: 0;
  text-align: center;
  color: #fff !important;
}
.wedding-txt::before {
  content: "";
  position: absolute;
  width: 90%;
  height: 64px;
  border: 2px solid #fff;
  left: 0;
  right: 0;
  margin: auto;
  top: -16px;
}
.wedding-menu a {
  flex-direction: column;
  color: #fff;
}

/* ---CTA --- */
.gnav--contact {
  display: flex;
  align-items: center;
}
.gnav--tel {
  margin-left: 8px;
  font-size: 147%;
}
.gnav--tel small {
  font-size: 59%;
}
.gnav--reserve {
  margin-left: 40px;
  font-size: 107%;
}
.gnav--reserve a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  width: 142px;
  height: 142px;
  font-size: 86%;
  color: #fff;
  line-height: 1.5;
  background: linear-gradient(180deg, #94d8f1 0%, #7be3e4 100%);
  background-size: 100% 200%;
  transition: all 1s cubic-bezier(0.26, 0, 0.36, 1);
  background-position: 50% 0%;
}
.gnav--reserve a:hover {
  background-position: 50% 100%;
}
.gnav--reserve svg {
  width: 25px;
  height: 24px;
  display: block;
  margin: 0 auto;
  margin-bottom: 4px;
}

@media all and (-ms-high-contrast: none) {
  .gnav--plan .subnav--list {
    width: 960px;
  }
}

@media screen and (max-width: 1300px) {
  .gnav .gnav--menu > a,
  .subnav > span {
    padding: 8px 12px;
    font-size: 100%;
  }
  .subnav .subnav_label {
    justify-content: flex-start;
  }
  .subnav .subnav_label {
    padding: 18px 12px;
  }
  .header--logo {
    width: 160px;
    margin-right: 24px;
  }
  .header-sm .header--logo {
    align-self: center;
  }
  .gnav--reserve {
    margin-left: 16px;
  }
  .gnav--contact {
    margin-left: 8px;
  }
  .gnav .subnav--list {
    left: 160px;
  }
}
@media screen and (max-width: 767px) {
  .header--logo {
    align-self: center;
  }
  .header--logo a,
  .header-sm .header--logo a {
    padding: 0;
    background-color: transparent;
  }
}
@media screen and (min-width: 1025px) {
  .header--logo--sp {
    display: none;
  }
  .gnav--contact.pc-none,
  .gnav--reserve.pc-none {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .header--nav {
    z-index: 2;
  }
  .header--logo--sp img {
    width: 161px;
    margin-bottom: 8px;
  }
  .gnav_sp_bg {
    position: fixed;
    left: 0;
    top: 0;
    display: none;
    width: 100%;
    height: 100%;
    background-color: transparent;
  }
  .fixed .gnav_sp_bg {
    display: block;
  }
  .gnav {
    position: fixed;
    top: 0;
    left: auto;
    right: 0;
    bottom: 0;
    opacity: 0;
    padding: 56px 0 0;
    pointer-events: none;
    transition: all 0.7s cubic-bezier(0.26, 0, 0.36, 1);
    transform: translateX(5%);
    background-color: rgb(255 255 255 / 85%);
    width: 245px;
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
    /* box-shadow: 0 0 27px 0 rgba(0,0,0,0.13); */
  }
  .header.active .gnav {
    opacity: 1;
    pointer-events: all;
    transform: translateX(0);
    left: auto;
    right: 0;
  }
  .gnav--list {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    height: calc(100% - 131px);
    padding: 10px 32px;
    overflow: scroll;
    margin-bottom: auto;
    -webkit-overflow-scrolling: touch;
  }
  .gnav--menu {
    position: relative;
  }
  .gnav--menu:not(.subnav)::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: auto;
    right: 3px;
    width: 6px;
    height: 6px;
    margin: auto;
    border: none;
    background-color: transparent;
    transform: rotate(-46deg);
    border-right: 1px solid #7cd1d2;
    border-bottom: 1px solid #7cd1d2;
  }

  /* ---submav --- */
  .gnav .subnav--list {
    position: relative;
    width: 100%;
    top: auto;
    left: auto;
    transform: none;
    opacity: 1;
    pointer-events: visible;
    transition: none;
    padding: 0;
    display: none;
    background: transparent !important;
    box-shadow: none;
  }
  .subnav .subnav_label a {
    padding: 0;
  }
  .subnav--list li {
    padding-left: 0;
    width: 100%;
    margin-bottom: 16px !important;
    line-height: 1.5;
  }
  .subnav:hover .subnav--list {
    background: transparent !important;
  }
  .subnav--list li::before {
    display: none;
  }
  .menu-bg {
    margin-right: 8px;
    width: 40px;
    height: 40px;
    margin-bottom: 0;
  }
  .gnav--plan .subnav--list ul {
    margin-right: 0;
    padding: 4px;
  }
  .subnav--list a {
    display: flex;
    padding: 8px;
    background-color: transparent;
    color: #1f2427;
    width: auto;
    padding: 8px 0 8px 25px;
    text-align: left;
    font-size: 93%;
  }
  .subnav--list a:hover {
    background-color: transparent;
  }
  .subnav .subnav_label {
    width: 100%;
    height: auto;
  }
  .subnav .subnav_label::after,
  .subnav .subnav_label::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: auto;
    right: 0;
    width: 9px;
    height: 1px;
    margin: auto;
    border: none;
    background-color: #7cd1d2;
    transform: rotate(0);
  }
  .subnav .subnav_label::before {
    transform: rotate(90deg);
  }

  /* ---gnav_btn --- */
  .gnav_btn {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    width: 72px;
    height: 72px;
    background-color: transparent;
    z-index: 9999;
  }
  .gnav_btn--lines {
    position: relative;
    width: 25px;
    height: 17px;
  }
  .gnav_btn--lines span {
    transition: all 0.4s;
    box-sizing: border-box;
  }
  .gnav_btn--lines span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #1f2427;
  }
  .gnav_btn--lines span:nth-of-type(1) {
    top: 0;
  }
  .gnav_btn--lines span:nth-of-type(2) {
    top: 50%;
  }
  .gnav_btn--lines span:nth-of-type(3) {
    bottom: 0;
  }
  .header.active .gnav_btn--lines span:nth-of-type(1) {
    -webkit-transform: translateY(8px) rotate(-45deg);
    transform: translateY(8px) rotate(-45deg);
  }
  .header.active .gnav_btn--lines span:nth-of-type(2) {
    opacity: 0;
  }
  .header.active .gnav_btn--lines span:nth-of-type(3) {
    -webkit-transform: translateY(-8px) rotate(45deg);
    transform: translateY(-8px) rotate(45deg);
  }

  /* ---CTA --- */
  .gnav--contact.sp-none {
    display: none;
  }
  .gnav .gnav--contact {
    position: absolute;
    bottom: 0;
    width: 100%;
  }
  .gnav--contact a {
    border: 0;
    background-color: #eeeeee;
    border-radius: none;
    border-radius: 0;
    color: #1f2427;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: auto;
    border-left: 0.5px solid #ccc;
  }
  .gnav--contact a::after {
    display: none;
  }
  .gnav--contact a svg {
    position: relative;
    top: auto;
    left: auto;
    margin: 0 8px 0 0;
  }
  .gnav--contact a svg path {
    fill: #1f2427;
  }
  .gnav--reserve {
    position: fixed;
    display: block;
    width: calc(100% - 16px);
    margin: auto;
    bottom: 8px;
    left: 0;
    right: 0;
    height: 72px;
    transition: all 0.4s;
    transform: translateY(200px);
    z-index: 1000;
  }
  .gnav--reserve a {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 72px;
    width: 100%;
    padding: 0;
    font-size: 88%;
  }
  .gnav--reserve a svg {
    margin-right: 8px;
    margin-left: 0;
  }
  .header.active + .gnav--reserve {
    opacity: 0;
  }
  header.header-sm + .gnav--reserve {
    transform: translateY(0);
  }
  .menu-bg.wedding {
    width: 100%;
    height: 80px;
  }
  .menu-bg span {
    color: #fff !important;
  }
  .wedding-txt {
    color: #fff !important;
  }
  .gnav--plan .subnav--list a {
    width: 100%;
  }
}

/* header-sm
**************************************** */
.header-sm {
  height: 104px;
  background-color: rgba(255, 255, 255, 0.9);
}

@media screen and (min-width: 1025px) {
  .header-sm .gnav--tel {
    font-size: 120%;
  }
}
@media screen and (max-width: 1024px) {
  .header-sm {
    height: 72px;
    background-color: transparent;
  }
}

/* header--sns
**************************************** */
.header--sns {
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.2s ease-out;
}
.page-menu.page-wedding .header--sns {
  right: auto;
  top: auto;
  left: 72px;
  bottom: 0%;
}
.page-menu.page-wedding .header--sns .header--sns--wrap.wrap-insta {
  margin-bottom: 40px;
}
.page-menu.page-wedding .header--sns--link.link-gifu {
  top: -32px;
}
.header--sns--wrap {
  position: relative;
  margin-bottom: 24px;
}
.header--sns--icon {
  position: relative;
  display: block;
  cursor: pointer;
}
.header--sns--icon svg {
  position: relative;
  width: 18px;
  height: 18px;
  z-index: 2;
  top: 1px;
}
.header--sns--icon .icon-x {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  left: 50%;
}
.header--sns--icon:hover svg path {
  fill: #fff;
}
.header--sns--icon::after,
.header--sns--link::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 36px;
  height: 36px;
  transform: translate(-50%, -50%);
  background-color: #f1f1f1;
  border-radius: 50%;
  transform-origin: 50%;
  transition: all 0.2s ease-out;
  z-index: -1;
}
.header--sns--wrap.active .header--sns--icon .icon-x {
  opacity: 1;
}
.header--sns--wrap.active span.header--sns--icon .icon-show {
  opacity: 0;
}
.header--sns--link {
  color: #fff;
  transition: all 0.5s cubic-bezier(0.26, 0, 0.36, 1);
}
.header--sns--link::after {
  background-color: #7cd1d2;
}
.header--sns--icon:hover::after,
.header--sns--link:hover::after {
  transform: translate(-50%, -50%) scale(1.2);
  background-color: #7cd1d2;
}
.header--sns--link {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 80%;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
}
.header--sns--link.link-gifu {
  position: absolute;
  top: -18px;
  left: -45px;
  font-size: 80%;
}
.header--sns--link.link-ogaki {
  position: absolute;
  top: 27px;
  left: -45px;
  font-size: 80%;
}
.header--sns--wrap.active .header--sns--link {
  opacity: 1;
  pointer-events: all;
  transform: scale(1);
}
.side--fix_nav {
  position: fixed;
  top: 18%;
  right: 56px;
  z-index: 100;
  background: transparent;
  opacity: 0;
  transition: 0.4s all ease;
  border-radius: 40px;
  /* border: 1px solid #cfcfcf; */
  box-shadow: 0px 0px 16px -6px rgb(0 0 0 / 50%);
}
.side--fix_nav.active {
  opacity: 1;
}
.side--fix_nav li {
  writing-mode: vertical-lr;
  position: relative;
  padding: 14px 8px;
  background: #f4fcfe;
  border-bottom: 2px solid #fff;
  transition: 0.4s all ease;
  min-width: 44px;
  max-width: 44px;
}
.side--fix_nav li a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
}
.side--fix_nav li:hover,
.side--fix_nav li.current {
  background: #89ddeb;
}
.side--fix_nav li:hover a,
.side--fix_nav li.current a {
  color: #fff;
}
.side--fix_nav li a:active {
  color: #fff;
}
.side--fix_nav li:nth-of-type(1) {
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}
.side--fix_nav li:nth-of-type(2) a {
}
.side--fix_nav li:last-child {
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  border-bottom: 0;
}

@media screen and (max-width: 1440px) {
  .side--fix_nav li {
    min-width: 24px;
    padding: 16px 8px;
    font-size: 80%;
  }
}
@media screen and (max-width: 1300px) {
  .page-menu.page-wedding .header--sns {
    left: 24px;
    transform: none;
  }
  .side--fix_nav {
    top: 40%;
    right: 8px;
    box-shadow: none;
    background: rgb(228 228 228 / 70%);
    padding: 8px;
    z-index: 100;
  }
  .side--fix_nav li,
  .side--fix_nav li:nth-of-type(1),
  .side--fix_nav li:nth-of-type(5) {
    padding: 0;
    width: 12px;
    min-width: 12px;
    max-width: 12px;
    border-radius: 12px;
    border-bottom: 0;
    margin-bottom: 16px;
    height: 12px;
  }
  .side--fix_nav li:last-child {
    margin-bottom: 0;
    border-radius: 16px;
  }
  .side--fix_nav li a {
    font-size: 0;
  }
  .side--fix_nav li:active {
    pointer-events: active;
  }
}
@media screen and (max-width: 1024px) {
  .header--sns {
    position: absolute;
    right: auto;
    top: auto;
    display: flex;
    align-items: center;
    transform: none;
    justify-content: center;
    width: 100%;
    bottom: 133px;
  }
  .header--sns.sp-none {
    display: none;
  }
  .header--sns a {
    padding: 0;
    margin: 0;
  }
  .header--sns .header--sns--insta {
    margin-right: 32px;
  }
}

/* ##############################################################################

    FOOTER

############################################################################## */

.footer {
  border-top: 1px solid #eeeeee;
}
.footer > .inner {
  padding: 40px 0;
}
.footer--wrap {
  display: flex;
}
/* -- footer logo(left) -- */
.footer--logo {
  width: 50%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footer--logo--img {
  text-align: center;
  margin-bottom: 40px;
}
.footer--sns {
  display: flex;
  justify-content: center;
}
.footer--sns a:not(:last-child) {
  margin-right: 28px;
}

/* -- footer right -- */
.footer--right {
  width: 50%;
  background-color: #eeeeee;
  padding: 80px 64px 24px;
}
.footer--nav a {
  display: inline-block;
  margin-right: 32px;
}
.footer--nav a:hover,
.footer--menu a:hover {
  opacity: 0.4;
}
.footer--menu {
  display: flex;
}
.footer--menu p {
  margin-right: 32px;
  padding-right: 32px;
  border-right: 1px solid #d4d4d4;
}
.footer--menu li {
  display: inline-block;
  margin-right: 24px;
}
.footer--shop {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.footer--shop h4 {
  margin-right: 32px;
}
.footer--shop--item {
  min-width: 260px;
}
.footer--shop--item:first-child {
  margin-right: 48px;
}
.footer--shop--item dt {
  float: left;
  width: 90px;
}
.footer--shop--item .header--sns--icon::after {
  background-color: #fff;
  z-index: 1;
}
.footer--shop--item .header--sns--icon svg {
  top: 3px;
}
.footer--shop--item .header--sns--icon:hover::after {
  background-color: #7cd1d2;
}

@media screen and (max-width: 767px) {
  .footer > .inner {
    width: 95%;
    max-width: 95%;
  }
  .footer--wrap {
    display: block;
  }
  .footer--logo {
    width: 100%;
    padding: 40px 0;
  }
  .footer--right {
    width: 100%;
    padding: 40px;
  }
  .footer--nav,
  .footer--menu {
    margin-bottom: 24px;
  }
  .footer--nav a,
  .footer--menu li {
    padding: 4px 0;
  }
  footer .btn-contact a {
    line-height: initial;
  }
  .footer--shop--item:first-child {
    margin-bottom: 40px;
    margin-right: 0;
  }
}

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

.footer--contact {
  margin-bottom: 16px;
  font-size: 107%;
}
.footer--tel {
  font-size: 147%;
  line-height: 1.4;
}
.footer--tel small {
  font-size: 59%;
}

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

.footer--sub_nav {
  padding: 8px 0;
  background-color: #eee;
}
.footer--copyright {
  text-align: center;
}
.pbl {
  margin-right: 16px;
  text-align: center;
  opacity: 0.5;
}

@media screen and (max-width: 767px) {
  .footer--sub_nav .flex-j-end {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

/* ##############################################################################

    INDEX

############################################################################## */

/* common
*************************************************** */
body.home {
  padding-top: 0;
}

/* hero
*************************************************** */
.hero {
  position: relative;
}
.hero--slide {
  width: calc(100% - 44%);
  max-width: 1112px;
  height: 667px;
  margin-top: 140px;
  margin-left: 60px;
}
.hero--slide--img {
  transform-origin: center;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 667px !important;
}
.hero--txt {
  position: absolute;
  top: 42%;
  transform: translateY(-35%);
  left: calc(100% - 35%);
}
.hero--txt h2::before {
  content: "";
  position: absolute;
  top: 32px;
  left: -200px;
  display: block;
  width: 164px;
  height: 1px;
  background-color: #ddd;
}
.hero--txt h2 {
  font-size: 300%;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
.hero--txt p {
  width: 350px;
}
.hero-bnr_wrapper {
  padding: 40px 0 0;
  max-width: calc(100% - 60px);
  margin: 0 60px;
}
.hero-bnr_wrapper li {
  margin-right: 24px;
  min-height: 160px;
  max-height: 160px;
  flex: 1;
}
.hero-bnr_wrapper li img {
  max-height: 160px;
}
.hero-bnr_wrapper li a:hover {
  opacity: 0.7;
}
.hero-bnr_wrapper li:last-child {
  margin-right: 0;
}

/* slide */
.hero--slide .slick-dots {
  position: absolute;
  right: -32px;
  bottom: 0;
}
.blue-dots .slick-dots li {
  display: block;
  width: 8px;
  height: 8px;
  border: 1px solid;
  background-color: #ddd;
  border-radius: 50%;
  border: none;
  margin-top: 16px;
}
.blue-dots .slick-dots li.slick-active {
  background-color: #a5d8d6;
}
.blue-dots .slick-dots button {
  padding: 0;
  cursor: pointer;
  color: transparent;
  background-color: transparent;
  outline: none;
  border: none;
}
.copyright {
  position: absolute;
  left: 20px;
  top: 50%;
  font-size: 73%;
  transform: translateY(-40%);
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
}
.slide-animation {
  animation: fadezoom 8s 0s forwards;
}
@media all and (-ms-high-contrast: none) {
  .slide-animation {
    animation: none;
  }
}

/* --- news --- */
.hero--news {
  position: absolute;
  bottom: 24px;
  right: 0;
  width: 326px;
  left: calc(100% - 35%);
}
.hero--news--wrap {
  border: 1px solid #ddd;
  padding: 16px 24px;
  font-size: 93%;
}
.hero--news--ttl,
.hero--news--more {
  color: #9d9d9d;
  font-size: 86%;
  font-weight: 400;
}
.hero--news--more {
  display: block;
  margin-bottom: 8px;
  position: absolute;
  bottom: -40px;
  right: 0;
  padding-right: 42px;
  letter-spacing: 0.12em;
}
.hero--news--more::before {
  position: absolute;
  content: "";
  display: block;
  right: 8px;
  width: 29px;
  height: 1px;
  background-color: #d8d8d8;
  top: 47%;
  transition: all 0.2s;
}
.hero--news--more:hover::before {
  background-color: #7cd1d2;
  animation: fade_out_in 0.6s cubic-bezier(0.26, 0, 0.36, 1) alternate both;
}
.hero--news--more::after {
  position: absolute;
  content: "";
  display: block;
  right: 0;
  width: 16px;
  height: 16px;
  background-color: transparent;
  border: 1px solid #d8d8d8;
  border-radius: 50%;
  top: 48%;
  transform: translateY(-50%);
  transition: all 0.2s;
}
.hero--news--more:hover::after {
  border-color: #7cd1d2;
}
.hero--news--more:hover {
  color: #7cd1d2;
}
.hero--news article:not(.nolink):hover {
  color: #7cd1d2;
}
.hero--news article.nolink .post--link::before {
  cursor: default;
}

@media screen and (min-width: 1780px) {
  .hero--slide--img img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .hero--slide {
    width: calc(100% - 32px);
    height: 480px;
    margin-top: 0;
    margin-left: auto;
    margin-bottom: 64px;
  }
  .hero--slide--img {
    height: 480px !important;
  }
  .hero--slide--img:first-child {
    background-image: url(../images/index/hero-img01_sp.jpg);
  }
  .hero--slide--img:nth-child(2) {
    background-image: url(../images/index/hero-img02_sp.jpg);
  }
  .hero--slide--img:nth-child(3) {
    background-image: url(../images/index/hero-img03_sp.jpg);
  }
  .hero--slide--img img {
    height: auto;
    width: 100%;
  }
  .hero--txt {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 86%;
    margin: auto;
  }
  .hero--txt p {
    width: auto;
  }
  .hero--txt h2 {
    font-size: 220%;
    line-height: 1.2;
    margin-bottom: 16px;
  }
  .hero-bnr_wrapper {
    padding: 0;
    max-width: calc(100% - 32px);
    position: absolute;
    top: 400px;
    margin-right: 0;
    margin-left: 32px;
  }
  .hero-bnr_wrapper li {
    margin: 0;
    margin-right: 32px;
    max-height: inherit;
    min-height: auto;
  }
  .copyright {
    left: 7px;
    top: 34%;
    font-size: 64%;
    color: #cbd3d8;
  }
  .hero--slide .slick-dots {
    display: flex;
    right: 24px;
    bottom: -100px;
  }
  .hero--slide.blue-dots .slick-dots li {
    margin-left: 12px;
  }

  /* hero news */
  .hero--news {
    position: relative;
    bottom: auto;
    right: auto;
    left: auto;
    width: 86%;
    font-size: 86%;
    margin: 32px auto 0;
    padding-bottom: 34px;
  }
  .hero--news--wrap {
    padding: 8px 16px;
  }
  .hero--news--more {
    bottom: 0;
  }
}

/* top_about
*************************************************** */
.top_about {
  padding-top: 308px;
  position: relative;
}
.top_about .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top_about--slide {
  right: -80px;
  width: 50%;
  max-width: 599px;
  height: 807px;
  z-index: 5;
  box-shadow: 0 0 76px 0 rgba(0, 0, 0, 0.24);
}
.top_about--slide img {
  width: 100%;
  height: auto;
}
.top_about--slide .slick-dots {
  bottom: 0;
  position: absolute;
  left: -32px;
}
.top_about--slide .slick-dots li {
  background-color: #fff;
}
.top_about .txt {
  z-index: 5;
  margin-right: 64px;
}
.top_about--bgimg {
  position: absolute;
}
.top_about--bgimg.bgimg-01 {
  top: 60px;
  right: 40%;
}
.top_about--bgimg.bgimg-02 {
  left: 0;
}
.top_about--bgimg.bgimg-02 {
  left: 0;
}
.top_about--bgimg.bgimg-03 {
  top: 185px;
  right: 0;
}
.top_about--bgimg.bgimg-04 {
  width: 100%;
  left: 0;
  z-index: -1;
  top: 775px;
}
.top_about--bgimg.bgimg-04 img {
  width: auto;
  height: 860px;
}

@media screen and (max-width: 1300px) {
  .top_about--slide {
    right: 0;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .top_about {
    padding-top: 360px;
    margin-bottom: 72px;
  }
  .top_about .txt {
    margin-right: auto;
  }
  .top_about .inner {
    flex-direction: column-reverse;
  }
  .top_about--slide {
    width: 100%;
    right: 0;
    left: 0;
    top: 0;
    margin-left: auto;
    position: relative;
    z-index: 4;
    margin: 0 auto 40px;
  }
  .top_about--bgimg.bgimg-01 {
    top: 40px;
    right: 0;
    width: 240px;
    z-index: 2;
    left: 24px;
  }
  .top_about--bgimg.bgimg-03 {
    right: 0;
    top: 170px;
    width: 240px;
  }
  .top_about--bgimg.bgimg-02 {
    left: 0;
    top: 310px;
    display: none;
  }
  .top_about--bgimg.bgimg-04 {
    width: calc(100% - 60px);
    left: 0;
    z-index: -1;
    /*max-height: 71vh;*/
    max-height: 570px;
    overflow: hidden;
    top: 320px;
    left: auto;
    right: 0px;
    text-align: right;
  }
  .top_about--bgimg.bgimg-04 img {
    width: 100%;
  }
  .top_about--slide .slick-dots {
    bottom: -24px;
    position: absolute;
    left: auto;
    right: 0;
    display: flex;
  }
  .top_about--slide .slick-dots li {
    width: 6px;
    height: 6px;
    margin-left: 12px;
  }
  .top_about .btn {
    display: flex;
    justify-content: center;
  }
}

/* top_concept
*************************************************** */
.concept {
  padding-top: 84px;
  padding-bottom: 142px;
}
.concept .flex > div {
  width: 280px;
}
.concept .flex > div:not(:last-child) {
  margin-right: 24px;
}
.concept .flex picture {
  box-shadow: 0 0 27px 0 rgba(0, 0, 0, 0.13);
}
@media screen and (max-width: 767px) {
  .concept {
    padding-bottom: 72px;
  }
  .concept--wrap {
    margin-bottom: 8px;
  }
  .concept .inner {
    width: 100%;
    margin: 0;
  }
  .concept .flex {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    width: 100%;
    overflow-x: scroll;
    padding: 0 24px;
    -webkit-overflow-scrolling: touch;
  }
  .concept .flex > div {
    flex: 1;
    margin-bottom: 24px;
    margin-top: 24px;
    flex-basis: 70vw;
    flex-shrink: 0;
  }
  .concept .flex > div:last-child {
    width: 1px;
    height: 1px;
    flex-basis: 24px;
  }
  .concept .flex img {
    width: 100%;
  }
}

/* top_plan
*************************************************** */
.top_plan {
  position: relative;
  padding-top: 105px;
}
.top_plan::before {
  content: "";
  position: absolute;
  top: 0;
  width: 80%;
  height: 100%;
  background-color: #f8f8f8;
  z-index: -1;
  background-image: url(../images/index/plan_bg.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.top_plan .inner {
  max-width: 1500px;
}
.top_plan--wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.top_plan--item {
  width: calc(50% - 48px);
  max-width: 720px;
  margin-bottom: 96px;
}
.top_plan--item--catch {
  color: #7d7d7d;
}
.top_plan--item--ttl {
  font-size: 290%;
  letter-spacing: 0.12em;
}
.top_plan--item--price--num {
  font-size: 185%;
}
.top_plan--item--price--campaign {
  border: 1px solid #61c1c2;
  padding: 2px 16px;
  border-radius: 48px;
}
.top_plan--item--shop {
  margin-left: -37px;
}
.top_plan--item--shop .icon-pin-gray {
  width: 18px;
  height: 18px;
}
.top_plan--item--num {
  position: absolute;
  left: -42px;
  padding-top: 0;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  opacity: 0;
  transition: all 0.7s cubic-bezier(0.26, 0, 0.36, 1);
}
.active .top_plan--item--num {
  padding-top: 142px;
  opacity: 1;
}
.top_plan--item--num::before {
  position: absolute;
  left: 14px;
  top: 0;
  content: "";
  display: block;
  width: 1px;
  height: 0;
  background-color: #d8d8d8;
  transition: all 0.7s cubic-bezier(0.26, 0, 0.36, 1);
  opacity: 0;
}
.active .top_plan--item--num::before {
  height: 132px;
  opacity: 1;
}
.top_plan--item--btn {
  position: relative;
  display: block;
  width: 140px;
  cursor: pointer;
}
.top_plan--item--btn span {
  position: absolute;
  top: calc(50% - 2px);
  transform: translateY(-50%);
  left: 27px;
  line-height: 1;
  width: 110px;
  transition: all 0.6s cubic-bezier(0.26, 0, 0.36, 1);
}
.top_plan--item:hover .top_plan--item--btn span {
  color: #7cd1d2;
}
.top_plan--item--btn svg {
  transform: rotate(-90deg);
}
.top_plan--item--btn circle {
  fill: transparent;
  stroke-width: 1;
}
.top_plan--item--btn .gray_border {
  stroke: #c0c0c0;
}
.top_plan--item--btn .blue_border {
  fill: transparent;
  stroke: #7cd1d2;
  stroke-width: 1;
  stroke-dasharray: 0 227;
  transition: all 0.3s cubic-bezier(0.26, 0, 0.36, 1);
  stroke-dasharray: 0 227;
}
.top_plan--item:hover .top_plan--item--btn .blue_border {
  stroke-dasharray: 227 227;
  transition: all 0.6s cubic-bezier(0.26, 0, 0.36, 1);
}
@media screen and (max-width: 1300px) {
  .top_plan--item--txt {
    display: block;
  }
  .top_plan--item--btn {
    margin-top: 12px;
    margin-left: -2px;
  }
}
@media screen and (max-width: 767px) {
  .top_plan {
    padding-top: 72px;
  }
  .top_plan--item {
    width: 100%;
    padding-left: 18px;
    margin-bottom: 24px;
  }
  .top_plan--item--shop {
    margin-left: -28px;
  }
  .top_plan--item--num {
    left: -11px;
    font-size: 78%;
  }
  .top_plan--item--num::before {
    left: 9px;
    border-width: 1px;
  }
  .top_plan--item--ttl {
    font-size: 186%;
  }
  .top_plan--item--price {
    flex-wrap: wrap;
  }
  .top_plan--item--price--num {
    font-size: 169%;
    padding: 4px 0;
    line-height: 1;
  }
  .top_plan--item--price--campaign {
    margin-top: 12px;
  }
  .top_plan--item--btn {
    margin-right: auto;
    margin-left: auto;
    height: 58px;
    width: auto;
    text-align: right;
    padding: 18px;
    padding-right: 41px;
  }
  .top_plan--item--btn svg {
    display: none;
  }
  .top_plan--item--btn span {
    position: relative;
    top: 0;
    transform: none;
    left: auto;
    width: auto;
  }
  .top_plan--item--btn::before {
    position: absolute;
    content: "";
    display: block;
    right: 8px;
    width: 29px;
    height: 1px;
    background-color: #d8d8d8;
    top: 50%;
  }
  .top_plan--item--btn::after {
    position: absolute;
    content: "";
    display: block;
    right: 0;
    width: 20px;
    height: 20px;
    background-color: transparent;
    border: 1px solid #d8d8d8;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* top_studio
*************************************************** */
.top_studio .inner {
  max-width: 1500px;
}
.top_studio--item {
  width: 50%;
}
.top_studio--item .txt {
  padding: 56px 64px;
}
.top_studio--item:hover {
  box-shadow: 0 0 76px 0 rgba(0, 0, 0, 0.24);
}
.top_studio--item--name {
  display: flex;
  align-items: center;
}
.top_studio--item--name strong {
  font-size: 214%;
  letter-spacing: 0.12em;
  margin-right: 24px;
}
.top_studio--item--name span {
  color: #b2b2b2;
  letter-spacing: 0.17em;
  font-weight: 400;
}
.top_studio--item .sns_icon {
  display: flex;
  margin-left: 32px;
}
.top_studio--item .sns_icon a:not(:last-child) {
  margin-right: 28px;
}
.top_studio--item .sns_icon svg {
  top: 3px;
}
.top_studio--item dt {
  float: left;
  width: 160px;
  letter-spacing: 0.17em;
  color: #b2b2b2;
}
.top_studio--item dd {
  margin-bottom: 12px;
  color: #909090;
}
.top_studio--item .studio_type {
  letter-spacing: 0.17em;
  color: #b2b2b2;
  border: 1px solid #d2d2d2;
  padding: 12px 26px 7px;
  vertical-align: bottom;
  border-radius: 73px;
  font-size: 93%;
}
.top_studio--item .studio_type img {
  width: 35px;
  height: 35px;
  margin-right: 8px;
}
.top_studio--item .studio_type .gifu {
  width: 28px;
}
.top_studio--item .studio_type .ogaki {
  transform: translateY(-4px);
}
.top_studio--item .btn {
  width: calc(50% - 4px);
  min-width: none;
}
.top_studio--item .btn a {
  padding: 16px 0;
  width: 100%;
}
.top_studio--item .btn + .btn {
  margin-left: 8px;
}
@media screen and (max-width: 1620px) {
  .top_studio--item--ttl,
  .top_studio--item--btn {
    flex-direction: column;
    align-items: center;
  }
  .top_studio--item--name {
    flex-wrap: wrap;
    justify-content: center;
  }
  .top_studio--item--name .sns_icon {
    width: 100%;
    justify-content: center;
    margin: 8px 0 24px;
  }
  .top_studio--item .btn {
    width: auto;
  }
  .top_studio--item .btn:first-child {
    margin-bottom: 4px;
  }
  .top_studio--item .btn a {
    display: block;
    min-width: 300px;
  }
  .top_studio--item .btn + .btn {
    margin-left: 0;
  }
  .top_studio--item .txt {
    padding: 48px 56px;
  }
}
@media screen and (max-width: 767px) {
  .top_studio--item {
    width: 100%;
    margin-bottom: 24px;
  }
  .top_studio--item .txt {
    border: 1px solid #eee;
    border-top: none;
    padding: 24px;
  }
  .top_studio--item dt {
    width: 92px;
  }
  .top_studio--item dt:nth-of-type(4) {
    margin-bottom: 8px;
  }
  .top_studio--item dt.mgn-btm8 {
    margin-bottom: 28px;
  }
  .top_studio--item .btn {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .top_studio--item .btn + .btn {
    margin-left: auto;
    margin-right: auto;
  }
  .top_studio--item h3 strong {
    font-size: 158%;
    margin-right: 8px;
  }
  .top_studio--item h3 span {
    transform: translateY(2px);
  }
  .top_studio--item .studio_type {
    padding: 6px 25px 3px;
    font-size: 86%;
    border-color: #eee;
  }
  .top_studio--item .studio_type .gifu {
    width: 11px;
  }
  .top_studio--item .studio_type img {
    width: 18px;
    height: 33px;
  }
  .top_studio--item .btn a {
    min-width: auto;
  }
}

/* top_gallery
*************************************************** */
.top_gallery {
  padding-top: 0;
}
.top_gallery .inner {
  max-width: 1500px;
}
.top_gallery--bgimg {
  content: "";
  position: absolute;
  display: block;
}
.top_gallery--bgimg.bgimg-01 {
  right: 0;
  top: 30%;
  width: 80%;
  height: 40vw;
  max-height: 630px;
  background-image: url(../images/index/gallery_bg.jpg);
  z-index: -1;
}
.top_gallery--bgimg.bgimg-02 {
  top: 0;
  left: 0;
  width: 343px;
  height: 344px;
  background-image: url(../images/index/aboutus_bgimg03.jpg);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top_gallery--bgimg.bgimg-01,
  .top_gallery--bgimg.bgimg-02 {
    display: none;
  }
}

/* ##############################################################################

    PAGE

############################################################################## */

/* --- fixside --- */
.fixside li {
  counter-increment: num;
}
.fixside a::after {
  content: counter(num, decimal-leading-zero) ". ";
}
.fixside a.active {
  color: #de6800;
  transform: translateX(8px);
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .flow-list .imgarea {
    width: 100%;
    height: 200px;
  }
  .flow-list .txtarea {
    width: 100%;
    padding: 24px;
  }
}

/* bridal
*************************************************** */
.page-bridal #parts_child_01-column_01 .flex-col1 {
  max-width: 1200px;
}
.page-bridal #parts_child_01-column_01 .flex-col1 .ttl-01 {
  margin-bottom: 0;
}

/* recruit
*************************************************** */
.page-recruit .gallery--post:hover {
  box-shadow: none;
}
.page-recruit .gallery--post .post--link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.page-recruit .gallery--post--img {
  overflow: hidden;
}
.page-recruit .gallery--post--img div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  transition: all 1s cubic-bezier(0.26, 0, 0.36, 1);
}
.page-recruit .gallery--post:hover .gallery--post--img div {
  transform: scale(1.1);
}
.page-recruit .gallery--post:hover .btn.nolink span {
  background-color: #313131;
  color: #fff;
}
.page-recruit .gallery--post:hover .btn.nolink span::before {
  right: 16px;
  border-color: #fff;
}

/* contact
*************************************************** */
.contact--txt {
  margin-bottom: 16px;
}
.contact--tel {
  margin-bottom: 24px;
}
.tel_txt {
  width: 350px;
  background-color: #f0f0f0;
  padding: 10px;
  margin: 0 auto 32px;
  border-radius: 400px;
}
.tel_txt a {
  line-height: 1;
}
.attention-bg-gray {
  max-width: 500px;
  font-size: 93%;
  margin: auto;
  margin-bottom: 32px;
  padding: 24px;
  background-color: #f7f7f7;
}
.form-tab_btn {
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  width: calc(50% - 16px);
  background-color: #fff;
  padding: 16px;
  color: #555;
  letter-spacing: 0.12em;
  border: 1px solid #ddd;
}
.form-tab_btn:hover {
  color: #7fcecf;
  border: 1px solid #7fcecf;
  box-shadow: 0 0 18px 1px rgb(64 103 111 / 11%);
}
.form-tab_btn.active {
  background-color: #7fcecf;
  border-color: #7fcecf;
  color: #fff;
}
.form--wrap {
  display: none;
  opacity: 0;
  background-color: #fff;
}
.form--wrap.active {
  opacity: 1;
  display: block;
}
.iframe_form-wrap {
  width: 100%;
}
.page-reserve .bg-img,
.page-contact .bg-img {
  position: absolute;
}
.contact-bg-img01 {
  top: 650px;
  width: 100%;
  height: 80vw;
  right: 0;
  max-height: 630px;
  background-image: url(../images/index/aboutus_bg.jpg);
  z-index: -1;
}
.archive-gallery .form-tab_btn {
  width: calc(100% / 2 - 8px);
}

@media screen and (max-width: 767px) {
  .page-contact:not(.page-thanks) .page_ttl--txt--wrap,
  .page-reserve:not(.page-thanks) .page_ttl--txt--wrap {
    margin-top: 100px;
  }
  .page-reserve .bg-img,
  .page-contact .bg-img {
    display: none;
  }
  .contact--txt.txt-ctr {
    text-align: left;
  }
  .form-tab_btn {
    width: calc(50% - 8px);
    text-align: center;
    font-size: 86%;
    padding: 8px;
  }
  .tel_txt {
    width: auto;
    margin-bottom: 8px;
  }
}

/* thanks
*************************************************** */
.page-thanks .section_pdg {
  padding-top: 70px;
}
.page-thanks .page_ttl-jp {
  font-size: 250%;
}
@media screen and (max-width: 767px) {
  .page-thanks .inner.txt-ctr {
    text-align: left;
  }
  .page-thanks .section_pdg {
    padding-top: 32px;
  }
  .page-thanks .page_ttl-jp {
    font-size: 186%;
  }
}

/* 404
*************************************************** */
.page-404 .content-404 p {
  margin-bottom: 40px;
  font-size: 115%;
}
@media screen and (max-width: 767px) {
  .page-404 .content-404 p {
    margin-bottom: 24px;
    font-size: 100%;
  }
}

/* ##############################################################################

    ARCHIVE

############################################################################## */

/* main_column
**************************************** */
.main_column {
  flex: 1;
  margin-right: 80px;
}

/* --- post --- */
.post {
  position: relative;
}
.post--link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.post--date {
  color: #767676;
  font-size: 87%;
}
.cat_list {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.post .post--img img {
  overflow: hidden;
  border-radius: 3px;
}
.cat_list a {
  display: inline-block;
  vertical-align: middle;
  font-size: 79%;
  background-color: #56a0b9;
  color: #f6f6f6;
  line-height: 1;
  padding: 6px 12px;
  float: left;
  margin-right: 4px;
  margin-bottom: 4px;
  white-space: nowrap;
}

@media screen and (max-width: 1100px) {
  .main_column {
    width: 100%;
    margin-right: 0;
  }
}

/* side_column
**************************************** */

/* --- archive-pulldown --- */
.archive-pulldown {
  position: relative;
  margin-left: auto;
  z-index: 1;
}
.archive-pulldown .archive_list {
  position: relative;
  font-size: 92%;
  margin-left: auto;
}
.archive-pulldown .archive_list:not(:last-child) {
  margin-right: 24px;
}
.archive-pulldown .archive_list a {
  display: block;
  padding: 2px 16px;
  text-align: left;
}
.archive-pulldown .archive_list a:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.archive-pulldown .archive_list--label {
  margin-right: 8px;
}
.archive-pulldown .archive_list--btn {
  cursor: pointer;
  border: none;
  outline: none;
  appearance: none;
  padding: 8px 54px 8px 32px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #0c1a23;
  line-height: 1;
}
.archive-pulldown .archive_list--btn::after {
  content: "";
  position: absolute;
  top: 9px;
  right: 10px;
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(45deg);
  transition: 0.2s ease-out;
  transform-origin: 50% 50%;
}
.archive-pulldown .active .archive_list--btn::after {
  top: 14px;
  transform: rotate(225deg);
}
.archive-pulldown .archive_list--menu {
  top: 38px;
  position: absolute;
  z-index: 1;
  width: 100%;
  background-color: #fff;
  border: 1px solid #ccc;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s ease-out;
  border-radius: 4px;
  color: #0c1a23;
}
.archive-pulldown .active .archive_list--menu {
  visibility: visible;
  opacity: 1;
}

/* news
**************************************** */

/* --- news--archive --- */
.news--archive {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #111;
}
.news--archive li {
  margin-left: 8px;
  margin-right: 8px;
}
.news--archive a {
  color: #fff;
}

/* --- news_list --- */
main .news_list .post {
  padding-bottom: 16px;
  padding-top: 16px;
  margin-bottom: 0;
  border-bottom: 1px solid #dedede;
}
main .news_list .post--date {
  margin-right: 32px;
  width: 126px;
}
main .news_list a[href="javascript:void(0);"],
main .news_list a[href="javascript:void(0);"]::before {
  color: inherit;
  cursor: inherit;
  opacity: 1;
  text-decoration: none;
}
.posts-home_news a,
main .news_list a {
  display: inline-flex;
  align-items: center;
}
.posts-home_news a[target="_blank"]::after,
main .news_list a[target="_blank"]::after {
  content: "";
  width: 28px;
  height: 28px;
  margin-left: 8px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OCA0OCI+PGRlZnM+PHN0eWxlPi5ie2ZpbGw6bm9uZTtzdHJva2U6IzkwOTA5MDtzdHJva2UtbGluZWNhcDpyb3VuZDtzdHJva2UtbGluZWpvaW46cm91bmQ7c3Ryb2tlLXdpZHRoOjJweH08L3N0eWxlPjwvZGVmcz48cGF0aCBmaWxsPSJub25lIiBkPSJNMCAwaDQ4djQ4SDB6Ii8+PHBhdGggZD0iTTI3IDEyaDl2OU0zMiAyNnY4SDE0VjE2aDhNMjQgMjRsMTEtMTEiIGNsYXNzPSJiIi8+PC9zdmc+");
}

@media screen and (max-width: 767px) {
  main .news_list .post {
    display: block;
  }
  main .news_list .post--date {
    display: inline-block;
    margin-bottom: 8px;
  }
}


/* clothing
**************************************** */
.clothing {
  padding: 4px;
  margin-bottom: 49px;
}
.clothing_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.clothing--post {
  padding-bottom: 8px;
  margin-bottom: 24px;
  transition: all 0.4s ease-out;
}
.clothing--post:hover {
  box-shadow: 0 0 39px 0 rgba(0, 0, 0, 0.14);
}
.clothing--post--cat_wrap {
  position: relative;
  z-index: 1;
}
.clothing--post--cat {
  border: 1px solid #7cd1d2;
  border-radius: 100px;
  padding: 2px 16px 2px 16px;
  margin-left: 3px;
  margin-right: 3px;
  margin-bottom: 8px;
}
.clothing--post--cat a {
  color: #7cd1d2;
}
.clothing--post--img {
  height: 400px;
  margin-bottom: 16px;
}


/* gallery
**************************************** */
.gallery {
  padding: 4px;
  margin-bottom: 49px;
}
.gallery--post {
  width: calc(100% / 2 - 8px);
  padding-bottom: 8px;
  margin-bottom: 24px;
  transition: all 0.4s ease-out;
}
.gallery--post:not(:nth-child(2n)) {
  margin-right: 16px;
}
.gallery--post:first-child {
  margin-left: auto;
}
.gallery--post:last-child {
  margin-right: auto;
}
.gallery--post:hover {
  box-shadow: 0 0 39px 0 rgba(0, 0, 0, 0.14);
}
.gallery--post--cat {
  width: 120px;
  border: 1px solid #7cd1d2;
  border-radius: 100px;
  padding: 2px 6px 2px 0;
  margin-left: 3px;
  margin-right: 3px;
  margin-bottom: 4px;
}
.gallery--post--img {
  height: 360px;
  margin-bottom: 16px;
}

/* recruit流用 */
.page-recruit .gallery_list {
  margin-bottom: 24px;
}
.page-recruit .gallery--post {
  width: calc(100% / 3 - 8px);
}
.page-recruit .gallery--post:not(:nth-child(3n)):not(:last-child) {
  margin-right: 12px;
}

/* --- plan link --- */
.gallery--planlink {
  display: flex;
  align-items: center;
  width: 730px;
  border: 1px solid #ddd;
  padding: 22px;
  margin: 0 auto 24px;
  color: #555;
}
.gallery--planlink .img {
  width: 280px;
  margin-right: 32px;
}
.gallery--planlink:hover {
  color: #7fcecf;
  border: 1px solid #7fcecf;
  box-shadow: 0 0 18px 1px rgb(64 103 111 / 11%);
}
.gallery--back {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .gallery {
    margin-bottom: 0;
  }
  .gallery--catlist {
    margin-bottom: 32px;
  }
  .gallery_list {
    display: block;
  }
  .clothing_list {
    display: block;
  }
  .gallery--post,
  .page-recruit .gallery--post {
    width: 100%;
    margin-bottom: 16px;
  }
  .gallery--post:not(:nth-child(3n)) {
    margin-right: 0;
  }
  .gallery--post--img {
    height: 180px;
  }
  .page-recruit .gallery--post--img {
    height: 210px;
  }

  /* --- plan link --- */
  .gallery--planlink {
    width: 86%;
    padding: 12px;
  }
  .gallery--planlink .img {
    width: 120px;
    margin-right: 16px;
  }
  .gallery--planlink .heading-2 {
    font-size: 100%;
  }
}

/* ##############################################################################

    SINGLE

############################################################################## */

/* clothing
**************************************** */
.single-clothing .lps_parts--slide .slick-dots li div {
  height: 180px;
}

@media screen and (min-width: 768px) {
  .single-clothing .clothing--slide-area {
    width: 40%;
  }
  .single-clothing .clothing--txt-area {
    width: 45%;
  }
}

@media screen and (max-width: 767px) {
  .single-clothing .lps_parts--slide .slick-dots li div {
    height: 56px;
  }
}

/* gallery
**************************************** */
.gallery {
  padding: 4px;
}
.single-gallery .page_ttl--txt--img {
  display: none;
}
.single-gallery .header-sm .header--sns {
  opacity: 0;
}
.gallery--shop {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 210px;
  padding: 12px;
  margin: 0 4px 8px;
  border: 1px solid #7cd1d2;
  color: #7cd1d2;
  border-radius: 100px;
  line-height: 0.5;
}
.gallery--shop svg {
  width: 25px;
  height: 25px;
  margin-right: 8px;
}
.gallery--shop strong {
  margin-right: 8px;
}
.gallery--shop .font-en {
  text-transform: uppercase;
  line-height: 0;
  transform: translateY(1px);
}
.gallery--img {
  width: calc(100% / 3);
  box-sizing: border-box;
  padding: 8px;
  font-size: 2rem;
  background-color: white;
  border-radius: 6px;
  transition: 0.5s;
}
.gallery--img:hover {
  opacity: 0.6;
}
.gallery--img img {
  width: 100%;
  border-radius: 4px;
}

@media screen and (max-width: 767px) {
  .gallery--wrap {
    margin-bottom: 24px;
  }
  .gallery--shop {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    padding: 4px 12px;
    font-size: 93%;
  }
  .gallery--shop svg {
    width: 16px;
    height: 16px;
    margin-right: 4px;
  }
  .gallery--shop .font-en {
    display: none;
  }
  .gallery--img {
    width: calc(100% / 2);
    padding: 4px;
    border-radius: 2px;
  }
}

/* requirement
**************************************** */
.single-requirements .mce-content-body table:not(:last-child) {
  margin-bottom: 32px;
}
.requirement--table th {
  word-break: keep-all;
}
@media screen and (max-width: 767px) {
  .single-requirements .mce-content-body th {
    font-size: 100%;
  }
}

/* wp-pagenavi
**************************************** */
.wp-pagenavi {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  font-family: brandon-grotesque, sans-serif;
}
.wp-pagenavi .pages {
  width: 100%;
  margin-bottom: 8px;
  text-align: center;
}
.wp-pagenavi .current,
.wp-pagenavi a {
  position: relative;
  width: 43px;
  height: 43px;
  display: inline-block;
  vertical-align: top;
  color: #909090;
  background-color: transparent;
  line-height: 43px;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 8px;
  margin-bottom: 8px;
  border-radius: 50%;
  border: 1px solid #d9d9d9;
  text-align: center;
}
.wp-pagenavi a:hover {
  color: #7cd1d2;
  border-color: #7cd1d2;
}
.wp-pagenavi .current {
  color: #fff;
  background-color: #7cd1d2;
  border-radius: 50%;
  border: 1px solid #7cd1d2;
}
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
  line-height: 40px;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi {
    margin-bottom: 40px;
  }
}

/* pass
**************************************** */
.single .pass {
  width: 100%;
}
.single .pass p:first-child {
  margin-bottom: 16px;
}

@media screen and (max-width: 767px) {
  .single .pass p:first-child {
    text-align: left;
  }
}

/* page-shichi_go_san page-resort-wedding
**************************************** */
.page-shichi_go_san #section-01 #parts_child_01-column_01,
.page-resort-wedding #section-01 #parts_child_01-column_01 {
  width: 90%;
  margin: 0 auto;
}
.page-shichi_go_san #section-01 #parts_child_01-column_01 .lps_parts--child,
.page-resort-wedding #section-01 #parts_child_01-column_01 .lps_parts--child {
  max-width: 1200px;
  width: 100%;
}
.page-shichi_go_san .youtube--area,
.page-resort-wedding .youtube--area {
  aspect-ratio: 16 / 9;
}

/* ##############################################################################

    FORMY

############################################################################## */
#formy_form {
  padding: 40px 56px;
  border: 1px solid #eeeeee;
}
#formy_form table {
  width: 100%;
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "YuGothic",
    "游ゴシック", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック";
}
#formy_form th,
#formy_form td {
  padding: 16px;
  vertical-align: middle;
  border-bottom: solid 1px #eee;
}
#formy_form th {
  font-weight: normal;
  white-space: nowrap;
  text-align: left;
  width: 34%;
}
#formy_form table input[type="text"],
#formy_form table input[type="email"],
#formy_form table input[type="tel"],
#formy_form table input[type="date"],
#formy_form table input[type="password"],
#formy_form table textarea {
  width: 100%;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  vertical-align: bottom;
}
#formy_form table input[type="text"],
#formy_form table input[type="email"],
#formy_form table input[type="tel"],
#formy_form table input[type="date"],
#formy_form table input[type="password"],
#formy_form select,
#formy_form textarea {
  margin: 0;
  padding: 5px 15px;
  border: 1px solid #ccc;
  font: inherit;
  font-size: 100%;
}
#formy_form textarea {
  height: 100px;
}
#formy_form select {
  height: 40px;
}
#formy_form ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#formy_form input:hover {
  opacity: 0.7;
}
#formy_form textarea:hover {
  opacity: 0.7;
}
#formy_form input:focus {
  outline: none;
}
#formy_form .parsley-validated {
  background-color: #eee;
}
#formy_form .parsley-error {
  background-color: #fee;
}
#formy_form .parsley-success {
  background-color: #fff;
}
.help_text {
  font-size: 87%;
  color: #999;
}
.hidden_help {
  display: none;
}
.formy_privacy div {
  overflow-y: scroll;
  height: 140px;
  border: solid 1px #ccc;
  font-size: 87%;
  padding: 8px 16px;
}
.requiredIcon {
  background-color: #ff9426;
  color: #fff;
  margin: 0 0 0 1em;
  font-size: 70%;
  padding: 2px 5px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  float: right;
}
#formy_btn {
  padding-top: 32px;
  text-align: center;
}
#formy_btn input {
  min-width: 220px;
  padding: 16px 32px;
  margin-right: 4px;
  margin-left: 4px;
  border: none;
  border-radius: 100px;
  color: #fff;
  font-size: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
#formy_form ul li input[type="radio"],
#formy_form ul li input[type="checkbox"] {
  display: none !important;
}
#formy_form ul li label {
  height: 40px;
  line-height: 40px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding: 0 8px 0 40px;
  cursor: pointer;
}
#formy_form ul li label:hover {
  opacity: 0.7;
}
#formy_form ul li label::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid #788b93;
  left: 16px;
  top: 12px;
}
#formy_form ul li input[type="radio"] + label::before {
  border-radius: 10px;
}
#formy_form ul li input[type="radio"]:checked + label,
#formy_form ul li input[type="checkbox"]:checked + label {
  color: #e75f5f;
  font-weight: bold;
}
#formy_form ul li input[type="radio"]:checked + label::before,
#formy_form ul li input[type="checkbox"]:checked + label::before {
  border-color: #e75f5f;
}
#formy_form ul li input[type="radio"]:checked + label::after,
#formy_form ul li input[type="checkbox"]:checked + label::after {
  content: "";
  width: 10px;
  height: 18px;
  top: 4px;
  left: 20px;
  border-right: 2px solid #e75f5f;
  border-bottom: 2px solid #e75f5f;
  display: block;
  position: absolute;
  z-index: 10;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.formy_confirm {
  background-color: #4dbaff;
}
.formy_submit_disabled {
  background-color: #ccc;
}
#formy_btn .formy_submit_disabled:hover {
  opacity: 1;
  cursor: default;
}
.autoConfirmBack {
  background-color: #aaa;
}
.formy_send {
  background-color: #ff6600;
}
#total_required {
  padding: 16px;
  color: #ff9426;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #formy_form {
    padding: 16px;
  }
  #formy_form th,
  #formy_form td {
    display: block;
    width: auto;
    padding-left: 0;
    padding-right: 0;
  }
  #formy_form th {
    border-bottom: none;
    padding-bottom: 0;
    white-space: normal;
  }
  #formy_form td {
    padding-top: 0;
  }
  #formy_btn {
    padding-top: 8px;
  }
  #formy_btn input {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    background-size: contain;
    background-position: center;
  }
  .autoConfirmBack {
    margin-bottom: 8px;
  }
  #formy_form table input[type="text"],
  #formy_form table input[type="email"],
  #formy_form table input[type="tel"],
  #formy_form table input[type="date"],
  #formy_form table input[type="password"],
  #formy_form select,
  #formy_form textarea {
    font-size: 16px; /* iOSでズーム防止 */
  }
}

/* ##############################################################################

    Loops モジュール

############################################################################## */
.icon-svg {
  position: absolute;
  top: 50%;
  display: block;
  transform: translateY(-50%);
}
.icon-new_tab {
  right: 30px;
  width: 14px;
  height: 14px;
}
.icon-pdf {
  left: 15px;
  width: 27px;
  height: 12px;
}
.bg-wh {
  background-color: #fff;
}
.lps_sec {
  position: relative;
}
.lps_sec:first-child {
  padding-top: 160px;
}
.lps_sec:nth-child(even) {
  background-color: #fafafa;
}
.lps_sec-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-position: center;
}

@media screen and (max-width: 767px) {
  .lps_sec:first-child {
    padding-top: 96px;
  }
}

/* lps_parts
  ********************************************** */
.lps_parts {
  position: relative;
  z-index: 1;
}
.lps_parts .img-detail {
  padding-top: 66.666%;
  background-size: cover;
  background-position: center;
  margin-bottom: 4px;
}
.lps_parts + .ttl-02,
.lps_parts--button + .ttl-02,
.lps_parts--button + .lps_parts,
.lps_parts + .lps_parts {
  margin-top: 80px;
}
.lps_parts--column + .lps_parts--column,
.lps_parts + .lps_parts--button {
  margin-top: 40px;
}
.lps_parts iframe {
  width: 100%;
}
.lps_parts .text {
  line-height: 1.8;
}
.lps_parts .text:not(:last-child) {
  margin-bottom: 24px;
}
.lps_parts--column .btn,
.lps_parts--slide .btn {
  text-align: center;
}
.lps_parts--column .btn {
  margin-top: auto;
}
.lps_parts .mce-content-body:not(:last-child) {
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .lps_parts .btn {
    text-align: center;
  }
  .lps_parts + .ttl-02,
  .lps_parts--button + .ttl-02,
  .lps_parts--button + .lps_parts,
  .lps_parts + .lps_parts {
    margin-top: 40px;
  }
  .lps_parts--column + .lps_parts--column,
  .lps_parts + .lps_parts--button {
    margin-top: 16px;
  }
  .lps_parts--column.column-2 .lps_parts--child.flex-sp-block .column_item,
  .lps_parts--column.column-3 .lps_parts--child.flex-sp-block .column_item,
  .lps_parts--column.column-4 .lps_parts--child.flex-sp-block .column_item {
    width: 100%;
    margin-right: 0;
  }
  .lps_parts .mce-content-body:not(:last-child) {
    margin-bottom: 16px;
  }
}

/* lps_parts--column
  ********************************************** */
.lps_parts--column .lps_parts--child {
  display: flex;
  flex-wrap: wrap;
}
.lps_parts--column .column_item {
  flex: 1;
}
.lps_parts--column .img + .text {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  padding-top: 24px;
}
.lps_parts--column .text.bg-wh {
  padding: 64px;
}

@media screen and (max-width: 767px) {
  .lps_parts--column .lps_parts--child {
    flex-direction: column;
  }
  .lps_parts--column {
    width: 100%;
    max-width: 100%;
  }
  .lps_parts--column .column_item {
    width: 100%;
    margin-bottom: 24px;
  }
  .lps_parts--column .column_item:not(:last-child) {
    margin-right: 0;
  }
  .lps_parts--column .img + .text {
    padding-top: 16px;
  }
  .lps_parts--column .text.bg-wh {
    padding: 24px;
  }
}

/* lps_parts--img_text
  ********************************************** */
.lps_parts--img_text .lps_parts--child {
  display: flex;
  justify-content: space-between;
}
.lps_parts--img_text .img_text--txt--inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.lps_parts--img_text .img_text--txt--inner > div {
  width: 100%;
}
.lps_parts--img_text .lps_parts--child.img_right {
  flex-direction: row-reverse;
}
.lps_parts--img_text .img_text--child {
  width: calc(50% - 45px);
}
.lps_parts--img_text .lps_parts--child.bg-wh .img_text--child {
  width: 50%;
}
.lps_parts--img_text .img_text--child > * {
  height: 100%;
}
.lps_parts--img_text .bg-wh .img_text--txt {
  padding: 16px 40px;
}
.lps_parts--img_text .text {
  justify-content: flex-start;
}
.lps_parts--img_text .ttl-03 {
  text-align: left;
}

@media screen and (max-width: 767px) {
  .lps_parts--img_text .lps_parts--child {
    flex-direction: column !important;
  }
  .lps_parts--img_text .img_text--child,
  .lps_parts--img_text .lps_parts--child.bg-wh .img_text--child {
    width: 100%;
  }
  .lps_parts--img_text .img_text--img {
    margin-bottom: 24px;
  }
  .lps_parts--img_text .lps_parts--child.bg-wh .img_text--img {
    margin-bottom: 0;
  }
  .lps_parts--img_text .img_text--child.bg-wh {
    padding: 25px;
  }
  .lps_parts--img_text .btn {
    text-align: center;
  }
}

/* lps_parts--slide
  ********************************************** */
.lps_parts--slide .img img {
  display: inline-block;
}
.lps_parts--slide .img + .text {
  margin-top: 24px;
  padding-left: 24px;
  padding-right: 24px;
}
.lps_parts--slide .slick-list {
  margin-bottom: 32px;
}
.lps_parts--slide .slick-arrow {
  position: absolute;
  top: calc(50% - 56px);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 100%;
  transform: translateY(-50%);
  text-decoration: none;
}
*::-ms-backdrop,
.lps_parts--slide .slick-arrow {
  transform: translateX(-50%) translateY(-50%);
}
.lps_parts--slide .slick-prev {
  left: -110px;
}
.lps_parts--slide .slick-next {
  right: -110px;
}
.lps_parts--slide .slick-arrow::before {
  content: "";
  position: absolute;
  display: block;
  width: 56px;
  height: 56px;
  border: 1px solid #a4a6a7;
  left: 5px;
  transition: 0.3s;
}
.lps_parts--slide .slick-prev::before {
  left: -2px;
}
.lps_parts--slide .slick-arrow::after {
  content: "";
  position: absolute;
  display: block;
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
  transition: 0.3s;
}
.lps_parts--slide .slick-prev::after {
  border-bottom: 1px solid #a4a6a7;
  border-left: 1px solid #a4a6a7;
}
.lps_parts--slide .slick-next::after {
  border-top: 1px solid #a4a6a7;
  border-right: 1px solid #a4a6a7;
}
.lps_parts--slide .slick-prev:hover::after,
.lps_parts--slide .slick-next:hover::after,
.lps_parts--slide .slick-arrow:hover::before {
  border-color: #7cd1d2;
}
.lps_parts--slide .slick-dots {
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-indent: -9999px;
  margin-top: 24px;
}
.lps_parts--slide .slick-dots li {
  position: relative;
  width: calc(100% / 6 - (4px * 6 / 5));
  opacity: 1;
  transition: all 0.2s;
  margin: 0 2px;
  padding: 4px;
  border: 1px solid #fff;
}
.lps_parts--slide .slick-dots li div {
  width: 100%;
  height: 70px;
  background-size: cover;
  background-position: center;
  transition: all 0.2s;
}
.lps_parts--slide .slick-dots .slick-active {
  border-color: #ddd;
}
.lps_parts--slide .slick-dots .slick-active div {
  opacity: 0.4;
}

@media screen and (max-width: 1080px) {
  .lps_parts--slide .img + .text {
    margin-top: 16px;
  }
  .lps_parts--slide .slick-dots {
    position: relative;
    bottom: 4px;
  }
  .lps_parts--slide .slick-next {
    right: 20px;
  }
  .lps_parts--slide .slick-prev {
    left: 20px;
  }
}
@media all and (-ms-high-contrast: none) {
  .lps_parts--slide .slick-arrow::before {
    transform: translateY(-50%);
    top: calc(50% + 5px);
  }
  .lps_parts--slide .slick-prev::before {
    left: 4px;
  }
  .lps_parts--slide .slick-next::before {
    left: 9px;
  }
}
@media screen and (max-width: 767px) {
  .lps_parts--slide .slick-list {
    margin-bottom: 16px;
  }
  .lps_parts--slide .slick-dots li {
    margin: 0 1px;
    padding: 3px;
  }
  .lps_parts--slide .slick-dots li div {
    height: 32px;
  }
  .lps_parts--slide .slick-arrow {
    width: 38px;
    display: none !important;
  }
  .lps_parts--slide .slick-arrow::before {
    width: 36px;
    height: 36px;
    left: auto;
    bottom: 74px;
  }
  .lps_parts--slide .slick-arrow::after {
    width: 8px;
    height: 8px;
    bottom: 87px;
    left: 47%;
  }
  .lps_parts--slide .slick-next.slick-arrow::after {
    left: auto;
    right: 47%;
  }
  .lps_parts--slide .slick-prev {
    left: 10px;
  }
  .lps_parts--slide .slick-next {
    right: 10px;
  }
}

/* lps_parts--button
  ********************************************** */
.lps_parts--button .btn + .btn {
  margin-top: 0;
  margin-left: 16px;
}
.lps_parts--button .lps_parts--child {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .lps_parts--button {
    margin-bottom: 8px;
  }
  .lps_parts--button .lps_parts--child {
    display: block;
  }
  .lps_parts--button .btn {
    width: auto;
    flex: 1;
    margin-bottom: 8px;
  }
  .lps_parts--button .btn + .btn {
    margin-left: 0;
  }
}

/* lps_parts--banner
  ********************************************** */
.lps_parts--banner {
  text-align: center;
}
.lps_parts--banner .bnr {
  display: inline-block;
  margin: 0 8px 16px 8px;
}
.lps_parts--banner .bnr:not(:last-child) {
  margin-right: 16px;
}
.lps_parts--banner .bnr a:hover {
  opacity: 0.5;
}

/* lps_plan
  ********************************************** */
.lps_plan {
  background-color: #fff;
  border: 5px solid #eeeeee;
  border-radius: 80px;
  padding: 88px;
}

@media screen and (max-width: 1200px) {
  .lps_plan {
    padding: 40px 16px;
    width: 96%;
    border-radius: 40px;
  }
}

/* post-edit-link
  ********************************************** */
.post-edit-link {
  position: fixed;
  bottom: 120px;
  right: 20px;
  z-index: 10;
  padding: 16px;
  border-radius: 50%;
  border: 1px solid #999;
}
.post-edit-link:hover {
  background-color: #ddd;
}
.post-edit-link::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDIzLjAuMywgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IuODrOOCpOODpOODvF8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiCgkgeT0iMHB4IiB2aWV3Qm94PSIwIDAgNDAxIDQwMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNDAxIDQwMTsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLnN0MHtmaWxsOiM5OTk5OTk7fQo8L3N0eWxlPgo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNMzcwLjEsMjUxLjljLTUuNSwwLTEwLDQuNS0xMCwxMHY4OC43YzAsMTYuNS0xMy40LDI5LjktMzAsMzBINDkuOWMtMTYuNSwwLTI5LjktMTMuNC0zMC0zMFY5MC4zCgljMC0xNi41LDEzLjQtMjkuOSwzMC0zMGg4OC43YzUuNSwwLDEwLTQuNSwxMC0xMGMwLTUuNS00LjUtMTAtMTAtMTBINDkuOUMyMi40LDQwLjQsMCw2Mi43LDAsOTAuM3YyNjAuMwoJYzAsMjcuNiwyMi40LDQ5LjksNDkuOSw0OS45aDI4MC4yYzI3LjYsMCw0OS45LTIyLjQsNDkuOS00OS45di04OC43QzM4MC4xLDI1Ni40LDM3NS42LDI1MS45LDM3MC4xLDI1MS45eiIvPgo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNMzc2LjEsMTQuN2MtMTcuNi0xNy42LTQ2LTE3LjYtNjMuNiwwTDEzNC40LDE5Mi45Yy0xLjIsMS4yLTIuMSwyLjctMi42LDQuNGwtMjMuNCw4NC42Yy0xLDMuNSwwLDcuMiwyLjYsOS43CgljMi41LDIuNSw2LjMsMy41LDkuNywyLjZsODQuNi0yMy40YzEuNy0wLjUsMy4yLTEuMyw0LjQtMi42TDM4Ny45LDkwYzE3LjUtMTcuNiwxNy41LTQ2LDAtNjMuNkwzNzYuMSwxNC43eiBNMTU2LjIsMTk5LjNMMzAyLDUzLjUKCWw0Nyw0N0wyMDMuMiwyNDYuNEwxNTYuMiwxOTkuM3ogTTE0Ni44LDIxOC4ybDM3LjYsMzcuNmwtNTIsMTQuNEwxNDYuOCwyMTguMnogTTM3My43LDc1LjhsLTEwLjYsMTAuNmwtNDctNDdsMTAuNi0xMC42CgljOS43LTkuNywyNS42LTkuNywzNS4zLDBsMTEuNywxMS43QzM4My41LDUwLjMsMzgzLjUsNjYuMSwzNzMuNyw3NS44eiIvPgo8L3N2Zz4K");
}
@media screen and (max-width: 767px) {
  .post-edit-link {
    display: none;
  }
}
