@charset "utf-8";
/* @import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&family=Sorts+Mill+Goudy:ital@0;1&display=swap"); */
/* @import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Noto+Serif+JP:wght@200..900&display=swap'); */
@import url("https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Noto+Serif+JP:wght@200..900&display=swap");

:root {
  --color01: #10653b;
  --color02: #96b8a7;
  --color03: #f8f8f8;
  --color04: #d9d9d9;
  --ff01: "Noto Serif JP", serif;
  /* --ff02: "Sorts Mill Goudy", serif; */
  /* --ff02: "Cinzel", serif; */
  --ff02: "Crimson Text", serif;
  --ff99: "font awesome 5 free";
}

html {
  font-family: var(--ff01);
  line-height: 1.8;
  letter-spacing: 1px;
  color: #000;
}

.fy-h-fit {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

@media (max-width: 599px) {
  .text {
    line-height: 1.7;
  }
}

/*===================================
  基本設定
===================================*/
.color01 {
  color: var(--color01);
}

.color02 {
  color: var(--color02);
}

.color03 {
  color: var(--color03);
}

.color04 {
  color: var(--color04);
}

.bgcolor01 {
  background-color: var(--color01);
}

.bgcolor02 {
  background-color: var(--color02);
}

.bgcolor03 {
  background-color: var(--color03);
}

.bgcolor04 {
  background-color: var(--color04);
}

.bgi01 {
  position: relative;
}

.bgi01 .bgi-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bgi01 .bgi-img.-opacity {
  opacity: 0.5;
}

.bgi01 *:not(.bgi-img) {
  z-index: 2;
  position: relative;
}

/* font */
.font01 {
  font-family: var(--ff01);
}

.font02 {
  font-family: var(--ff02);
}

/* indent-cmn */
.indent-cmn-01 {
  padding-left: 1em;
  text-indent: -1em;
}

.indent-cmn-02 {
  padding-left: 1rem;
  text-indent: -1rem;
}

/* 共通コンテンツ間隔 */

[class*="section-m"],
[class*="section-p"] {
  --section-xlarge: 150px;
  --section-large: 120px;
  --section-medium: 100px;
  --section-small: 80px;
  --section-xsmall: 60px;
}

.section-my-xlarge {
  margin-top: var(--section-xlarge);
  margin-bottom: var(--section-xlarge);
}

.section-mt-xlarge {
  margin-top: var(--section-xlarge);
}

.section-mb-xlarge {
  margin-bottom: var(--section-xlarge);
}

.section-my-large {
  margin-top: var(--section-large);
  margin-bottom: var(--section-large);
}

.section-mt-large {
  margin-top: var(--section-large);
}

.section-mb-large {
  margin-bottom: var(--section-large);
}

.section-my-medium {
  margin-top: var(--section-medium);
  margin-bottom: var(--section-medium);
}

.section-mt-medium {
  margin-top: var(--section-medium);
}

.section-mb-medium {
  margin-bottom: var(--section-medium);
}

.section-my-small {
  margin-top: var(--section-small);
  margin-bottom: var(--section-small);
}

.section-mt-small {
  margin-top: var(--section-small);
}

.section-mb-small {
  margin-bottom: var(--section-small);
}

.section-my-xsmall {
  margin-top: var(--section-xsmall);
  margin-bottom: var(--section-xsmall);
}

.section-mt-xsmall {
  margin-top: var(--section-xsmall);
}

.section-mb-xsmall {
  margin-bottom: var(--section-xsmall);
}

@media (max-width: 1024px) {
  .section-my-xlarge {
    margin-top: calc(var(--section-xlarge) * 0.8);
    margin-bottom: calc(var(--section-xlarge) * 0.8);
  }

  .section-mt-xlarge {
    margin-top: calc(var(--section-xlarge) * 0.8);
  }

  .section-mb-xlarge {
    margin-bottom: calc(var(--section-xlarge) * 0.8);
  }

  .section-my-large {
    margin-top: calc(var(--section-large) * 0.8);
    margin-bottom: calc(var(--section-large) * 0.8);
  }

  .section-mt-large {
    margin-top: calc(var(--section-large) * 0.8);
  }

  .section-mb-large {
    margin-bottom: calc(var(--section-large) * 0.8);
  }

  .section-my-medium {
    margin-top: calc(var(--section-medium) * 0.8);
    margin-bottom: calc(var(--section-medium) * 0.8);
  }

  .section-mt-medium {
    margin-top: calc(var(--section-medium) * 0.8);
  }

  .section-mb-medium {
    margin-bottom: calc(var(--section-medium) * 0.8);
  }

  .section-my-small {
    margin-top: calc(var(--section-small) * 0.8);
    margin-bottom: calc(var(--section-small) * 0.8);
  }

  .section-mt-small {
    margin-top: calc(var(--section-small) * 0.8);
  }

  .section-mb-small {
    margin-bottom: calc(var(--section-small) * 0.8);
  }

  .section-my-xsmall {
    margin-top: calc(var(--section-xsmall) * 0.8);
    margin-bottom: calc(var(--section-xsmall) * 0.8);
  }

  .section-mt-xsmall {
    margin-top: calc(var(--section-xsmall) * 0.8);
  }

  .section-mb-xsmall {
    margin-bottom: calc(var(--section-xsmall) * 0.8);
  }
}

@media (max-width: 599px) {
  .section-my-xlarge {
    margin-top: calc(var(--section-xlarge) * 0.6);
    margin-bottom: calc(var(--section-xlarge) * 0.6);
  }

  .section-mt-xlarge {
    margin-top: calc(var(--section-xlarge) * 0.6);
  }

  .section-mb-xlarge {
    margin-bottom: calc(var(--section-xlarge) * 0.6);
  }

  .section-my-large {
    margin-top: calc(var(--section-large) * 0.6);
    margin-bottom: calc(var(--section-large) * 0.6);
  }

  .section-mt-large {
    margin-top: calc(var(--section-large) * 0.6);
  }

  .section-mb-large {
    margin-bottom: calc(var(--section-large) * 0.6);
  }

  .section-my-medium {
    margin-top: calc(var(--section-medium) * 0.6);
    margin-bottom: calc(var(--section-medium) * 0.6);
  }

  .section-mt-medium {
    margin-top: calc(var(--section-medium) * 0.6);
  }

  .section-mb-medium {
    margin-bottom: calc(var(--section-medium) * 0.6);
  }

  .section-my-small {
    margin-top: calc(var(--section-small) * 0.6);
    margin-bottom: calc(var(--section-small) * 0.6);
  }

  .section-mt-small {
    margin-top: calc(var(--section-small) * 0.6);
  }

  .section-mb-small {
    margin-bottom: calc(var(--section-small) * 0.6);
  }

  .section-my-xsmall {
    margin-top: calc(var(--section-xsmall) * 0.6);
    margin-bottom: calc(var(--section-xsmall) * 0.6);
  }

  .section-mt-xsmall {
    margin-top: calc(var(--section-xsmall) * 0.6);
  }

  .section-mb-xsmall {
    margin-bottom: calc(var(--section-xsmall) * 0.6);
  }
}

.section-py-xlarge {
  padding-top: var(--section-xlarge);
  padding-bottom: var(--section-xlarge);
}

.section-pt-xlarge {
  padding-top: var(--section-xlarge);
}

.section-pb-xlarge {
  padding-bottom: var(--section-xlarge);
}

.section-py-large {
  padding-top: var(--section-large);
  padding-bottom: var(--section-large);
}

.section-pt-large {
  padding-top: var(--section-large);
}

.section-pb-large {
  padding-bottom: var(--section-large);
}

.section-py-medium {
  padding-top: var(--section-medium);
  padding-bottom: var(--section-medium);
}

.section-pt-medium {
  padding-top: var(--section-medium);
}

.section-pb-medium {
  padding-bottom: var(--section-medium);
}

.section-py-small {
  padding-top: var(--section-small);
  padding-bottom: var(--section-small);
}

.section-pt-small {
  padding-top: var(--section-small);
}

.section-pb-small {
  padding-bottom: var(--section-small);
}

.section-py-xsmall {
  padding-top: var(--section-xsmall);
  padding-bottom: var(--section-xsmall);
}

.section-pt-xsmall {
  padding-top: var(--section-xsmall);
}

.section-pb-xsmall {
  padding-bottom: var(--section-xsmall);
}

@media (max-width: 1024px) {
  .section-py-xlarge {
    padding-top: calc(var(--section-xlarge) * 0.8);
    padding-bottom: calc(var(--section-xlarge) * 0.8);
  }

  .section-pt-xlarge {
    padding-top: calc(var(--section-xlarge) * 0.8);
  }

  .section-pb-xlarge {
    padding-bottom: calc(var(--section-xlarge) * 0.8);
  }

  .section-py-large {
    padding-top: calc(var(--section-large) * 0.8);
    padding-bottom: calc(var(--section-large) * 0.8);
  }

  .section-pt-large {
    padding-top: calc(var(--section-large) * 0.8);
  }

  .section-pb-large {
    padding-bottom: calc(var(--section-large) * 0.8);
  }

  .section-py-medium {
    padding-top: calc(var(--section-medium) * 0.8);
    padding-bottom: calc(var(--section-medium) * 0.8);
  }

  .section-pt-medium {
    padding-top: calc(var(--section-medium) * 0.8);
  }

  .section-pb-medium {
    padding-bottom: calc(var(--section-medium) * 0.8);
  }

  .section-py-small {
    padding-top: calc(var(--section-small) * 0.8);
    padding-bottom: calc(var(--section-small) * 0.8);
  }

  .section-pt-small {
    padding-top: calc(var(--section-small) * 0.8);
  }

  .section-pb-small {
    padding-bottom: calc(var(--section-small) * 0.8);
  }

  .section-py-xsmall {
    padding-top: calc(var(--section-xsmall) * 0.8);
    padding-bottom: calc(var(--section-xsmall) * 0.8);
  }

  .section-pt-xsmall {
    padding-top: calc(var(--section-xsmall) * 0.8);
  }

  .section-pb-xsmall {
    padding-bottom: calc(var(--section-xsmall) * 0.8);
  }
}

@media (max-width: 599px) {
  .section-py-xlarge {
    padding-top: calc(var(--section-xlarge) * 0.6);
    padding-bottom: calc(var(--section-xlarge) * 0.6);
  }

  .section-pt-xlarge {
    padding-top: calc(var(--section-xlarge) * 0.6);
  }

  .section-pb-xlarge {
    padding-bottom: calc(var(--section-xlarge) * 0.6);
  }

  .section-py-large {
    padding-top: calc(var(--section-large) * 0.6);
    padding-bottom: calc(var(--section-large) * 0.6);
  }

  .section-pt-large {
    padding-top: calc(var(--section-large) * 0.6);
  }

  .section-pb-large {
    padding-bottom: calc(var(--section-large) * 0.6);
  }

  .section-py-medium {
    padding-top: calc(var(--section-medium) * 0.6);
    padding-bottom: calc(var(--section-medium) * 0.6);
  }

  .section-pt-medium {
    padding-top: calc(var(--section-medium) * 0.6);
  }

  .section-pb-medium {
    padding-bottom: calc(var(--section-medium) * 0.6);
  }

  .section-py-small {
    padding-top: calc(var(--section-small) * 0.6);
    padding-bottom: calc(var(--section-small) * 0.6);
  }

  .section-pt-small {
    padding-top: calc(var(--section-small) * 0.6);
  }

  .section-pb-small {
    padding-bottom: calc(var(--section-small) * 0.6);
  }

  .section-py-xsmall {
    padding-top: calc(var(--section-xsmall) * 0.6);
    padding-bottom: calc(var(--section-xsmall) * 0.6);
  }

  .section-pt-xsmall {
    padding-top: calc(var(--section-xsmall) * 0.6);
  }

  .section-pb-xsmall {
    padding-bottom: calc(var(--section-xsmall) * 0.6);
  }
}

/* fead */

.fead-mv.mv {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.fead-up.mv {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.fead-order > * {
  opacity: 0;
}

.fead-order > .mv {
  opacity: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.fead-text > * {
  opacity: 0;
}

.fead-text .mv {
  opacity: 1;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

/* scroll */
.mv-scroll {
  position: absolute;
  left: 2%;
  bottom: 0;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  padding-bottom: 115px;
  z-index: 2;
  color: #fff;
  font-family: var(--ff-mont);
}

.mv-scroll::before {
  -webkit-animation: scroll 2s infinite;
  animation: scroll 2s infinite;
  background-color: #fff;
  bottom: 0;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
  z-index: 2;
}

.mv-scroll::after {
  background-color: var(--color01);
  bottom: 0;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}

/* 線のアニメーション */
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }

  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }

  51% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }

  100% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }

  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }

  51% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }

  100% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }
}

/* show hide */
.show\@pc {
  display: block;
}

.hide\@pc {
  display: none;
}

[data-element-id] .show\@tb {
  display: block;
  border: solid 4px green;
  position: relative;
}

[data-element-id] .show\@tb:after {
  display: block;
  content: "モバイル用";
  color: #fff;
  font-weight: 500;
  background: green;
  padding: 8px 5px 5px;
  text-align: center;
  text-shadow: none;
  font-size: 12px;
  line-height: 1;
}

[data-element-id] .show\@tb.indention {
  display: inline-block;
  border: none;
  width: 30px;
}

[data-element-id] .show\@tb.indention:after {
  content: "SP時改行";
  font-size: 10px;
  padding: 4px 2px 5px;
}

[data-element-id] .show\@pc.indention {
  font-size: 10px;
  border: none;
  display: inline-block;
  width: 30px;
}

[data-element-id] .show\@pc.indention:after {
  content: "PC時改行";
  display: block;
  letter-spacing: -1px;
  color: #fff;
  font-weight: 700;
  background: blue;
  padding: 3px;
  text-align: center;
  text-shadow: none;
  font-size: 10px;
}

[data-element-id] .show\@sp {
  display: block;
  border: solid 4px green;
  position: relative;
  max-width: 375px;
  margin-left: auto;
  margin-right: auto;
}

[data-element-id] .show\@sp:after {
  display: block;
  content: "モバイル用";
  color: #fff;
  font-weight: 500;
  background: green;
  padding: 8px 5px 5px;
  text-align: center;
  text-shadow: none;
  font-size: 12px;
  line-height: 1;
}

[data-element-id] .show\@sp.indention {
  display: inline-block;
  border: none;
  width: 30px;
}

[data-element-id] .show\@sp.indention:after {
  content: "SP時改行";
  font-size: 10px;
  padding: 4px 2px 5px;
}

@media (max-width: 1024px) {
  .show\@tb {
    display: block;
  }

  .hide\@tb {
    display: none;
  }
}

@media (max-width: 599px) {
  .show\@sp {
    display: block;
  }

  .hide\@sp {
    display: none;
  }
}

/*===================================
  共通ブロック　block-cmn
==================================*/
/* 共通ブロック１ */
/*===================================
  共通タイトル　ttl-cmn
===================================*/
/* 共通タイトル１ */
.section-title-ja {
  font-size: 36px;
  line-height: 1.3;
}

.section-title-en {
  font-size: 80px;
  line-height: 1;
  font-family: var(--ff02);
  font-weight: 500;
}

.section-title-en.-min {
  font-size: 60px;
}

@media (max-width: 599px) {
  .section-title-ja {
    font-size: 24px;
  }

  .section-title-en {
    font-size: 48px;
  }

  .section-title-en.-min {
    font-size: 40px;
  }
}

/*===================================
  共通リスト　list-cmn
==================================*/
/* 共通リスト１ */
/*===================================
  共通ボタン btn-cmn
===================================*/
/* 共通ボタン１ */
.btn-type-01 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.btn-type-01 a,
.btn-type-01 button {
  border: 1px solid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 200px;
  border-radius: 100px;
  font-family: var(--ff02);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 1;
  padding: 22px 70px 18px 40px;
  position: relative;
  font-weight: 500;
}

.btn-type-01 button {
  background-color: #fff;
}

.btn-type-01.-back a,
.btn-type-01.-back button {
  padding: 22px 40px 18px 70px;
}

.btn-type-01 a:hover,
.btn-type-01 button:hover {
  opacity: 1;
  color: var(--color01);
}

.btn-type-01 .arrow {
  width: 40px;
  aspect-ratio: 1;
  background-color: #000;
  color: #fff;
  font-size: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.btn-type-01.-back .arrow {
  left: 10px;
  right: auto;
}

.btn-type-01 .arrow::before {
  content: "\f061";
  font-family: var(--ff99);
  font-weight: bold;
}

.btn-type-01.-back .arrow::before {
  content: "\f060";
}

.btn-type-01 .arrow::after {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  background: var(--color01);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%) scale(0);
  transform: translateY(-50%) scale(0);
  z-index: -1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.btn-type-01 a:hover .arrow::after,
.btn-type-01 button:hover .arrow::after {
  -webkit-transform: translate(-2px, -50%) scale(1.15);
  transform: translate(-2px, -50%) scale(1.15);
}

/*===================================
  他共通エレメント -cmn
===================================*/
/*===================================
  共通要素
===================================*/
/*h1ページタイトル */
.pagettl {
  font-size: 12px;
  padding: 0 5px;
}

/**
ヘッダー
header
*/
.header-common {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 251;
  width: 100%;
  padding: 20px;
  color: #fff;
  font-family: var(--ff02);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.gnav-active .header-common {
  background-color: rgb(255 255 255 / 100%);
  -webkit-box-shadow: 10px 0 10px rgb(0 0 0 / 20%);
  box-shadow: 10px 0 10px rgb(0 0 0 / 20%);
  color: #000;
}

.header-common-inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header .logo img {
  max-height: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  /* -webkit-filter: invert(1) brightness(10) drop-shadow(0px 0px 5px rgb(0 0 0 / 30%));
  filter: invert(1) brightness(10) drop-shadow(0px 0px 5px rgb(0 0 0 / 30%));
  */
  -webkit-filter: invert(1) brightness(10)
    drop-shadow(1px 1px 1px rgb(0 0 0 / 30%))
    drop-shadow(0px 0px 10px rgb(0 0 0 / 20%));
  filter: invert(1) brightness(10) drop-shadow(1px 1px 1px rgb(0 0 0 / 30%))
    drop-shadow(0px 0px 10px rgb(0 0 0 / 20%));
}

.gnav-active .header .logo img {
  -webkit-filter: invert(0);
  filter: invert(0);
}

@media (max-width: 1024px) {
  .header .logo img {
    max-height: 32px;
  }

  .header-common {
    padding: 10px 15px;
  }

  .header-common-inner {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

/* 下部固定コンテンツ */
.fix-bottom {
  position: fixed;
  bottom: 10px;
  right: 20px;
  z-index: 250;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 40%;
  min-width: 300px;
  max-width: 500px;
}

.fix-bottom .item {
  width: calc((100% - 5px) / 2);
  text-align: center;
}

.fix-bottom a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  font-family: var(--ff02);
  padding: 10px 5px 10px 5px;
  line-height: 1;
  border-radius: 5px;
  /* -webkit-box-shadow: 1px 1px 5px rgb(0 0 0 / 10%);
  box-shadow: 1px 1px 5px rgb(0 0 0 / 10%); */
  -webkit-filter: drop-shadow(1px 1px 1px rgb(0 0 0 / 30%))
    drop-shadow(0px 0px 10px rgb(0 0 0 / 20%));
  filter: drop-shadow(1px 1px 1px rgb(0 0 0 / 30%))
    drop-shadow(0px 0px 10px rgb(0 0 0 / 20%));
  border: 2px solid #eee;
  font-size: 18px;
}

.fix-bottom .contact a {
  background: #eee;
  color: #000;
}

.fix-bottom .contact a:before {
  margin-right: 8px;
  content: "\f16d";
  font-weight: normal;
  font-family: "Font Awesome 7 brands";
  font-size: 22px;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}

.fix-bottom .line a {
  background: var(--color01);
  color: #fff;
  border-color: var(--color01);
}

.fix-bottom .line a:before {
  margin-right: 8px;
  content: "";
  background: url(../images/icon-line.webp) no-repeat;
  aspect-ratio: 1;
  width: 22px;
  background-size: contain;
}

/* 光らせるためのstyle */
.shine a {
  overflow: hidden;
  border: 0 solid transparent;
  position: relative;
}

/* 光の疑似要素 */
.shine a::after {
  content: "" !important;
  width: 200%;
  height: 100%;
  background-color: #fff !important;
  opacity: 0.3;
  -webkit-transform: skewX(-45deg);
  transform: skewX(-45deg);
  -webkit-transform-origin: top right;
  transform-origin: top right;
  -webkit-animation: shine 3.5s cubic-bezier(0.25, 0, 0.25, 1) infinite;
  animation: shine 3.5s cubic-bezier(0.25, 0, 0.25, 1) infinite;
  position: absolute;
  top: 0;
  left: -200%;
}

/* 光の動き */
@-webkit-keyframes shine {
  0% {
    opacity: 0;
    left: -200%;
  }

  70% {
    opacity: 0.5;
    left: -200%;
  }

  71% {
    opacity: 1;
    left: -200%;
  }

  100% {
    opacity: 0;
    left: 100%;
  }
}

@keyframes shine {
  0% {
    opacity: 0;
    left: -200%;
  }

  70% {
    opacity: 0.5;
    left: -200%;
  }

  71% {
    opacity: 1;
    left: -200%;
  }

  100% {
    opacity: 0;
    left: 100%;
  }
}

@media (max-width: 1024px) {
  .fix-bottom {
    right: 10px;
  }
}

@media (max-width: 599px) {
  .fix-bottom {
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: unset;
    background: rgb(0 0 0 / 30%);
    padding: 10px;
  }

  .fix-bottom .item {
    width: calc((100% - 10px) / 2);
  }

  .fix-bottom a {
    font-size: 17px;
  }

  .fix-bottom .line a {
    border-color: var(--color01);
  }
}

/**
グローバルナビ
gnav
*/
.gnav {
  width: 100%;
}

.gnav .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.gnav .navlogo img {
  max-height: 40px;
}

.gnav .list01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem;
  -ms-flex-pack: distribute;
  -webkit-box-pack: end;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

.gnav .item01 {
  text-align: center;
  font-size: 16px;
}

.gnav .item01 > a,
.gnav .item01 .itemin {
  display: block;
  cursor: pointer;
  padding: 5px;
  font-size: 22px;
  -webkit-filter: drop-shadow(1px 1px 1px rgb(0 0 0 / 30%))
    drop-shadow(0px 0px 10px rgb(0 0 0 / 20%));
  filter: drop-shadow(1px 1px 1px rgb(0 0 0 / 30%))
    drop-shadow(0px 0px 10px rgb(0 0 0 / 20%));
}

.gnav .item01 > a .pc,
.gnav .item01 .itemin .pc {
  display: block;
  font-size: 86%;
  font-family: var(--ff01);
  transform: translateY(-2px);
}

.gnav .item01 > a .sp,
.gnav .item01 .itemin .sp {
  display: none;
}

.gnav .item01 > a .ja,
.gnav .item01 .itemin .ja {
  font-size: 12px;
  line-height: 1;
  display: none;
}

.gnav-active .gnav .item01 > a,
.gnav-active .gnav .item01 .itemin {
  -webkit-filter: none;
  filter: none;
}

.gnav .item01.-parent {
  position: relative;
}

.gnav .item01.-parent:hover .list02 {
  visibility: visible;
  opacity: 1;
}

.gnav .list02 {
  position: absolute;
  top: 100%;
  left: 50%;
  visibility: hidden;
  padding-top: 10px;
  width: 200px;
  background: rgba(255, 255, 255, 0.8) content-box;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.gnav .item02 a {
  display: block;
  padding: 5px;
}

@media (max-width: 1024px) {
  .gnav {
    position: fixed;
    top: 0;
    right: 0;
    overflow: auto;
    width: 100%;
    max-width: 300px;
    height: 100%;
    background: #fff;
    -webkit-transition: -webkit-transform ease 0.5s;
    transition: -webkit-transform ease 0.5s;
    transition: transform ease 0.5s;
    transition: transform ease 0.5s, -webkit-transform ease 0.5s;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    -webkit-overflow-scrolling: touch;
  }

  body.drawer-active {
    overflow: hidden;
    -ms-touch-action: none;
    touch-action: none;
  }

  .drawer-active .gnav {
    z-index: 253;
    -webkit-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
  }

  .gnav .wrap {
    padding: 20px 20px 100px;
  }

  .gnav .navlogo {
    display: block;
    margin-bottom: 30px;
    padding-right: 0;
    width: 100%;
  }

  .gnav .item01 {
    margin: 0 0 10px 0;
    min-height: 40px;
    width: 100%;
    text-align: left;
  }

  .gnav .item01 > a,
  .gnav .item01 .itemin {
    filter: none;
    color: #000;
  }

  .gnav .item01 > a .pc,
  .gnav .item01 .itemin .pc {
    display: none;
  }

  .gnav .item01 > a .sp,
  .gnav .item01 .itemin .sp {
    display: block;
  }

  .gnav .item01 > a .ja,
  .gnav .item01 .itemin .ja {
    display: block;
  }

  .gnav .list02 {
    position: relative;
    top: 0;
    left: 0;
    visibility: visible;
    padding-left: 20px;
    padding-top: 0;
    background: none;
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }

  .gnav .list02 a {
    position: relative;
    padding: 2px 0 2px 20px;
  }

  .gnav .list02 a:before {
    position: absolute;
    top: 13px;
    left: 0;
    display: block;
    width: 10px;
    height: 1px;
    background: #000;
    content: "";
  }
}

[data-element-id] .gnav.fixed {
  position: relative;
}

/* ハンバーガーメニュー  */
.toggle {
  position: relative !important;
  z-index: 253;
  aspect-ratio: 1;
  width: 40px;
  /* background: #fff; */
  cursor: pointer;
  display: none;
}

.toggle .bar {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  margin-top: -1px;
  padding: 0;
  width: 28px;
  height: 2px;
  background-color: #fff;
  text-indent: 9999px;
  transition: ease 0.4s;
  -webkit-transition: ease 0.4s;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-filter: brightness(10) drop-shadow(0px 1px 1px rgb(0 0 0 / 30%))
    drop-shadow(0px 0px 10px rgb(0 0 0 / 20%));
  filter: brightness(10) drop-shadow(0px 1px 1px rgb(0 0 0 / 30%))
    drop-shadow(0px 0px 10px rgb(0 0 0 / 20%));
  border-radius: 10px;
}

.toggle .bar:nth-of-type(1) {
  top: calc(50% - 8px);
}

.toggle .bar:nth-of-type(3) {
  top: calc(50% + 8px);
}

.gnav-active .toggle .bar,
.drawer-active .toggle .bar {
  background-color: #000;
  -webkit-filter: none;
  filter: none;
}

.drawer-active .toggle .bar:nth-of-type(1) {
  -webkit-transform: translate(-50%, 0) rotate(45deg);
  transform: translate(-50%, 0) rotate(45deg);
  top: 50%;
}

.drawer-active .toggle .bar:nth-of-type(2) {
  opacity: 0;
}

.drawer-active .toggle .bar:nth-of-type(3) {
  -webkit-transform: translate(-50%, 0) rotate(-45deg);
  transform: translate(-50%, 0) rotate(-45deg);
  top: 50%;
}

@media (max-width: 1024px) {
  .toggle {
    display: block !important;
  }

  .drawer-active .overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 251;
    width: 100%;
    height: 100vh;
    background: #000;
    content: "";
    opacity: 0.3;
    transform: translate3d(0, 0, 0) !important;
    -webkit-transform: translate3d(0, 0, 0) !important;
  }
}

/*トップへ戻る*/
.totop {
  position: fixed;
  right: 20px;
  bottom: 70px;
  z-index: 200;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  background: var(--color03);
  color: var(--color01);
  text-align: center;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 38px;
  cursor: pointer;
  -webkit-filter: drop-shadow(1px 1px 1px rgb(0 0 0 / 30%))
    drop-shadow(0px 0px 10px rgb(0 0 0 / 20%));
  filter: drop-shadow(1px 1px 1px rgb(0 0 0 / 30%))
    drop-shadow(0px 0px 10px rgb(0 0 0 / 20%));
}

.totop:before {
  content: "\f077";
  font-weight: bold;
  font-family: "Font Awesome 5 Free";
}

@media (max-width: 1024px) {
  .totop {
    right: 10px;
  }
}

@media (max-width: 599px) {
  .totop {
    bottom: 80px;
  }
}

/**
フッター
footer
*/
footer {
  background-color: var(--color01);
  color: #fff;
  padding: 100px 0;
}

.footer .copy {
  text-align: center;
  margin-top: 50px;
}

@media (max-width: 1024px) {
  .footer .copy {
    padding-bottom: 50px;
  }
}

.footer .right .logo img {
  max-width: 200px;
  -webkit-filter: invert(1) brightness(10);
  filter: invert(1) brightness(10);
}

.footer .right .instagram {
  color: #fff;
  font-size: 40px;
  line-height: 1;
}

.fnav .f-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  font-family: var(--ff02);
}

.fnav .item + .item {
  padding-left: 10px;
}

.fnav .item a {
  display: block;
  font-size: 18px;
}

.fnav .list02 {
  width: 50%;
}

.fnav .datawrap {
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
}

.fnav .datattl {
  position: relative;
  margin-bottom: 10px;
  padding-left: 12px;
}

.fnav .datattl:before {
  position: absolute;
  top: 10px;
  left: 0;
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #000;
  content: "";
}

.fnav .data {
  margin-bottom: 5px;
  padding-right: 10px;
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  break-inside: avoid;
}

.fnav .data a {
  position: relative;
  padding-left: 12px;
}

.fnav .data a:before {
  position: absolute;
  top: 7px;
  left: 0;
  display: block;
  width: 5px;
  height: 1px;
  background: #000;
  content: "";
}

@media (max-width: 1024px) {
  footer {
    padding: 80px 0;
  }

  .fnav .wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .fnav .list01 {
    margin-bottom: 10px;
    width: 100%;
  }

  .fnav .list02 {
    width: 100%;
  }
}

@media (max-width: 599px) {
  footer {
    padding: 60px 0;
  }
  .fnav .f-list {
    flex-wrap: wrap;
    gap: 10px 20px;
    justify-content: center;
  }

  .footer .right .logo img {
    max-width: 120px;
  }

  .footer .right .instagram {
    font-size: 30px;
  }

  .footer .map {
    overflow: hidden;
    padding-top: 70%;
    position: relative;
  }

  .fnav .item a {
    font-size: 15px;
  }

  .footer .copy {
    margin-top: 30px;
  }

  .fnav .list01 {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }

  .fnav .datawrap {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
}

/**
2カラムページ
*/
.column2 .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.column2 .side {
  width: 200px;
}

.column2 .mainwrap {
  width: calc(100% - 250px);
}

@media (max-width: 1024px) {
  .column2 .inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .column2 .side {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin-bottom: 50px;
    width: 100%;
  }

  .column2 .mainwrap {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-bottom: 50px;
    width: 100%;
  }
}

@media (max-width: 599px) {
  .column2 .side {
    margin-bottom: 0;
  }

  .side .list:last-of-type {
    margin-bottom: 0;
  }
}

/* サイドメニュー */
.side .list {
  margin-bottom: 60px;
}

@media (max-width: 1024px) {
  .side {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .side .list {
    width: 48%;
  }
}

@media (max-width: 599px) {
  .side .list {
    width: 100%;
  }
}

.list-side .datattl {
  position: relative;
  color: var(--color01);
  font-family: var(--ff02);
  text-align: center;
  font-size: 30px;
  line-height: 1;
}

.list-side .data {
  border-bottom: 1px solid var(--color04);
  font-size: 15px;
}

.list-side a {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 10px 10px 10px 15px;
}

.list-side a:before {
  position: absolute;
  top: 53%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #000;
  content: "\f054";
  font-family: var(--ff99);
  font-weight: bold;
  font-size: 10px;
}

@media (max-width: 1024px) {
  .list-side .datattl {
    margin-bottom: 10px;
  }

  .list-side.type-archive .datawrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .list-side.type-archive .datawrap .datattl {
    width: 100%;
  }

  .list-side.type-archive .datawrap .data {
    width: 48%;
  }
}

/*===================================
  各個別コンテンツ
===================================*/
/**
トップ
*/
/*ホームビジュアル（トップ）*/
.homevisual {
  position: relative;
}
.homevisual .hv-inner {
  min-height: 300px;
  height: 100vh;
}

.homevisual .hv-inner .img {
  height: 100vh;
}

@media (max-width: 599px) {
  .homevisual .slick-mv-right {
    display: none;
  }
}

/**
下層共通
*/
/* トップビジュアル（下層共通） */
.topvisual {
  position: relative;
}

.topvisual .img {
  position: relative;
  min-height: 200px;
  max-height: 400px;
  -webkit-filter: brightness(0.9);
  filter: brightness(0.9);
}

.topvisual .img:before {
  position: relative;
  z-index: -1;
  display: block;
  padding-top: 30%;
  content: "";
}

.topvisual .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-family: "object-fit: cover; object-position: 50% 50%;";
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
}

.topvisual .head {
  position: absolute !important;
  width: 96%;
  max-width: 1000px;
  text-align: center;
  top: 50%;
  left: 50%;
  font-weight: 100;
  font-size: 54px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-family: var(--ff02);
  color: #fff;
  text-shadow: 0 0 10px rgb(0 0 0 / 40%);
}

@media (max-width: 599px) {
  .topvisual .head {
    font-size: 38px;
  }
}

/* path,
line {
  stroke: #111;
  stroke-width: 0.5px;
  stroke-dasharray: 400px;
  -webkit-animation: svg 2s ease-in both;
  animation: svg 2s ease-in both;
}

@-webkit-keyframes svg {
  0% {
    fill: transparent;
    stroke-dashoffset: 400px;
  }

  80% {
    fill: transparent;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes svg {
  0% {
    fill: transparent;
    stroke-dashoffset: 400px;
  }

  80% {
    fill: transparent;
  }

  100% {
    stroke-dashoffset: 0;
  }
} */

/* index-concept */
.index-concept-area .bg-text {
  font-size: 130px;
  font-family: var(--ff02);
  color: var(--color02);
  opacity: 0.2;
  white-space: nowrap;
}

.loop-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.loop-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: loop-slide 70s infinite linear 1s both;
  animation: loop-slide 70s infinite linear 1s both;
  list-style: none;
  margin: 0;
  padding: 0;
}

.loop-area .content {
  width: 1800px;
}

@-webkit-keyframes loop-slide {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes loop-slide {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@media (max-width: 599px) {
  .index-concept-area .bg-text {
    font-size: 60px;
    line-height: 1;
    margin-top: 20px;
  }
}

/* index-first-area */
.index-first-area .first-list {
  border: 6px var(--color03) double;
  padding: 60px 30px;
}

@media (max-width: 599px) {
  .index-first-area .first-list {
    padding: 40px 20px;
    width: 98%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* index-menu-area */
.index-menu-area {
  position: relative;
}

.index-menu-area::before {
  content: "";
  width: calc(100% - (50% - 500px));
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color03);
  margin-right: calc(50% - 500px);
}

.index-menu-area .menu-list {
  position: relative;
  z-index: 2;
}

.index-menu-area .menu-list .item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}

.index-menu-area .menu-list .item-list .item {
  position: relative;
  width: calc((100% - 120px) / 3);
}

.index-menu-area .menu-list .item-list .item:first-of-type .menu-text {
  display: none;
}

.index-menu-area .menu-list .item-list .item .menu-text {
  font-family: var(--ff02);
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  color: var(--color04);
  position: absolute;
  left: -45px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.index-menu-area .menu-list .item-list .item .menu-text .num {
  display: none;
}

.index-menu-area .menu-list .item-list .item .title {
  font-size: 24px;
}

.index-menu-area .menu-list .item-list .item .menu-text::before {
  content: "";
  background-color: var(--color04);
  width: 1px;
  height: 100%;
  display: block;
  position: absolute;
  left: 50%;
  margin-right: -0.5px;
  top: 0;
}

.index-menu-area .menu-list .item-list .item .menu-text .menu-text-inner {
  background-color: var(--color03);
  padding: 10px 0;
  z-index: 2;
  -webkit-transform: translateX(-1px);
  transform: translateX(-1px);
}

@media (max-width: 599px) {
  .index-menu-area .menu-list .item-list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0;
  }

  .index-menu-area .menu-list .item-list .item {
    width: 100%;
  }

  .index-menu-area .menu-list .item-list .item:first-of-type,
  .index-menu-area .menu-list .item-list .item + .item {
    margin-top: 30px;
    padding-top: 30px;
  }

  .index-menu-area .menu-list .item-list .item .item-inner {
    padding: 0 20px;
  }

  .index-menu-area .menu-list .item-list .item .menu-text {
    left: 0;
    top: -15px;
    width: 100%;
    height: auto;
    -webkit-writing-mode: unset;
    -ms-writing-mode: unset;
    writing-mode: unset;
  }

  .index-menu-area .menu-list .item-list .item:first-of-type .menu-text {
    display: block;
  }

  .index-menu-area .menu-list .item-list .item .menu-text .num {
    display: inline-block;
  }

  .index-menu-area .menu-list .item-list .item .menu-text::before {
    width: 100%;
    height: 1px;
    left: 0;
    top: 50%;
    margin-top: -0.5px;
  }

  .index-menu-area .menu-list .item-list .item .menu-text .menu-text-inner {
    padding: 0px 10px;
    -webkit-transform: translateY(2px);
    transform: translateY(2px);

    position: relative;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .index-menu-area .menu-list .item-list .item .title {
    font-size: 20px;
  }
}

/* index-voice-area */
.index-voice-area .item-list .item {
  margin: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.index-voice-area .item-list .item.slick-current {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.index-voice-area .item-list .item .item-inner {
  position: relative;
  background-color: var(--color01);
}

.index-voice-area .item-list .item a:hover {
  opacity: 1;
}

.index-voice-area .item-list .item .img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.index-voice-area .item-list .item a:hover .img {
  opacity: 0.5;
}

.index-voice-area .item-list .item .name {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 30px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #fff;
}

.index-voice-area .item-list .item a:hover .name {
  visibility: visible;
  opacity: 1;
}

.index-voice-area .item-list .item .name-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

/* voice-slick */
.index-voice-area .slick-arrow {
  background: #000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 2;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.index-voice-area .slick-arrow:hover {
  background: var(--color01);
  opacity: 1;
}

.index-voice-area .slick-prev {
  left: 10vw;
}

.index-voice-area .slick-next {
  right: 10vw;
}

.index-voice-area .slick-prev:before,
.index-voice-area .slick-next:before {
  font-family: var(--ff99);
  font-weight: bold;
  opacity: 1;
  font-size: 18px;
}

.index-voice-area .slick-prev:before {
  content: "\f060";
}

.index-voice-area .slick-next:before {
  content: "\f061";
}

@media (max-width: 599px) {
  .index-voice-area .slick-next {
    right: 5vw;
  }

  .index-voice-area .slick-prev {
    left: 5vw;
  }
}

/* index-contact-area */
.index-contact-area .item-inner {
  background-color: rgb(255 255 255 / 80%);
  padding: 30px 20px;
  border-radius: 12px;
  border: 3px solid rgb(255 255 255 / 0%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.index-contact-area a:hover {
  opacity: 1;
}

.index-contact-area a:hover .item-inner {
  background-color: #fff;
  border-color: var(--color01);
}

.index-contact-area .item-inner .sub-box-wrap {
  border-top: 2px dashed #ccc;
  padding-top: 10px;
  border-bottom: 2px dashed #ccc;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.index-contact-area .item-inner .sub-box {
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  transition: 0.5s;
}

.index-contact-area a:hover .item-inner .sub-box {
  background: #f4f4f4;
}

.index-contact-area .item-inner .more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  font-family: var(--ff02);
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 30px;
}

.index-contact-area .item-inner .more .arrow {
  width: 20px;
  aspect-ratio: 1;
  background-color: #000;
  color: #fff;
  font-size: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

.index-contact-area .item-inner .more .arrow::before {
  content: "\f061";
  font-family: var(--ff99);
  font-weight: bold;
  font-size: 10px;
}

@media (max-width: 599px) {
  .index-contact-area .item-inner {
    padding: 20px 10px;
    border-radius: 10px;
  }
}

/* ##### パンくずリスト breadcrumbs ##### */
.breadcrumbs {
  padding: 30px 0;
  background-color: white;
}

.breadcrumbs-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
}

.breadcrumbs-list li {
  display: inline;
  font-size: 14px;
  letter-spacing: 1px;
  font-family: var(--ff02);
}

.breadcrumbs-list li.breadcrumbs-home,
.breadcrumbs-list li.breadcrumbs-prevpage {
  font-weight: bold;
  color: var(--color01);
}

.breadcrumbs-list li + li::before {
  content: "\f054";
  font-weight: bold;
  font-family: var(--ff99);
  display: inline-block;
  margin: 0 10px;
  font-size: 10px;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}

@media (max-width: 1024px) {
  .breadcrumbs {
    padding: 20px 0;
    font-size: 14px;
  }

  .breadcrumbs-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .breadcrumbs-list {
    width: 90%;
    margin-top: 1em;
  }

  .breadcrumbs li {
    font-size: 12px;
  }

  .breadcrumbs li + li::before {
    width: 8px;
    height: 8px;
    margin: 0 5px 1px;
  }
}

@media (max-width: 599px) {
  .breadcrumbs {
    padding: 15px 0;
    font-size: 12px;
  }

  .breadcrumbs li + li::before {
    width: 6px;
    height: 6px;
  }
}

/* ##### パンくずリスト breadcrumbs ここまで ##### */

/* ページネーション */
.pagenation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pagenation .item {
  margin: 0 10px;
}

.pagenation .prev {
  position: relative;
  margin-right: 20px;
}

.pagenation .prev a:before {
  content: "\f053";
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
}

.pagenation .next {
  position: relative;
  margin-left: 20px;
}

.pagenation .next a:before {
  content: "\f054";
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
}

.pagenation a,
.pagenation .now {
  display: block;
  padding: 2px 8px 2px 7px;
  width: 40px;
  height: 40px;
  color: #000;
  font-weight: 500;
  text-align: center;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0;
  /* font-family: var(--ff02); */
  border: 1px solid transparent;
}

.pagenation .prev a,
.pagenation .next a {
  font-size: 14px;
}

.pagenation .now {
  background: var(--color01);
  color: #fff;
  opacity: 1;
}

.pagenation a:hover {
  background: #fff;
  color: var(--color01);
  border-color: var(--color01);
  opacity: 1;
}

@media (max-width: 599px) {
  .pagenation .item {
    margin: 0 5px;
  }

  .pagenation .prev {
    margin-right: 10px;
  }

  .pagenation .next {
    margin-left: 10px;
  }
}

/**
各下層ページ
*/

/* about-page */
.profile-area .section-title-ja.-salon {
  padding-bottom: 50px;
  position: relative;
}

.profile-area .section-title-ja.-salon::after {
  content: "";
  width: 1px;
  height: 30px;
  display: block;
  display: block;
  background: var(--color01);
  position: absolute;
  bottom: 0;
  left: calc(50% - 0.5px);
}

.profile-area .profile-list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  border-bottom: 1px solid #e4e4e4;
}

.profile-area .profile-list .item dt {
  width: 20%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-weight: 500;
}

.profile-area.type02 .profile-list .item dt {
  width: 100px;
}

.about-concept-list .section-title-ja {
  text-indent: -22px;
}

@media (max-width: 1024px) {
  .profile-area .profile-list .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 15px 10px;
    border-bottom: 1px solid var(--color03);
  }

  .profile-area .profile-list .item dt {
    width: 35%;
    color: var(--color01);
  }

  .profile-area.type02 .profile-list .item {
    flex-direction: column;
  }

  .profile-area.type02 .profile-list .item dd {
    margin-top: 5px;
  }

  /* .profile-area .profile-list .item dd {
    font-size: 14px;
  } */
}

.about-staff-area {
  position: relative;
}

.about-staff-area::before {
  content: "";
  width: calc(100% - (50% - 500px));
  height: 60%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--color03);
  margin-right: calc(50% - 500px);
}

.about-concept-area {
  background-color: #ecbaa0;
  color: #fff;
  font-weight: 600;
}

@media (max-width: 599px) {
  .about-staff-area::before {
    content: none;
  }

  .about-staff-area .textbox .text {
    background-color: var(--color03);
    padding: 20px 10px 25px;
    border-radius: 5px;
  }

  .about-concept2-area .section-title-ja {
    font-size: 22px;
  }
}

/* first-page */
.line-flow-area {
  background-color: var(--color03);
}

.line-flow-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.line-flow-list .item {
  width: calc((100% - 60px) / 4);
}

.line-flow-list .item .text-box {
  background-color: #fff;
  padding: 30px 15px 15px;
  border-radius: 10px;
  margin-top: -20px;
}

.line-flow-list .item .step-box .num {
  font-size: 38px;
  font-family: var(--ff02);
  color: var(--color01);
  line-height: 1;
}

.line-flow-list .item .step-box .step {
  font-size: 13px;
  color: var(--color02);
  line-height: 1;
}

.line-flow-list .item .title {
  font-size: 20px;
  text-align: center;
  color: var(--color01);
}

.line-flow-list .item .text {
  font-size: 15px;
  letter-spacing: 0;
  line-height: 1.6;
  margin-top: 5px;
}

.line-flow-list .item .text a {
  display: block;
  border: 1px solid var(--color01);
  background-color: var(--color01);
  color: #fff;
  padding: 8px 10px;
  margin-top: 10px;
  text-align: center;
  border-radius: 100px;
  font-size: 12px;
  cursor: pointer;
  transition: 0.5s;
}

.line-flow-list .item .text a:hover {
  opacity: 1;
  background-color: #fff;
  color: var(--color01);
}

.line-flow-list .item .img {
  display: flex;
  justify-content: center;
}

.line-flow-list .item .img img {
  max-width: 180px;
  height: 150px;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .line-flow-list {
    gap: 10px;
  }

  .line-flow-list .item {
    width: calc((100% - 30px) / 4);
  }

  .line-flow-list .item .text-box {
    padding: 30px 10px 15px;
  }

  .line-flow-list .item .title {
    font-size: 16px;
    letter-spacing: 0;
  }

  .line-flow-list .item .img img {
    max-width: 140px;
    height: 120px;
  }

  .line-flow-list .item .text {
    font-size: 14px;
  }
}

@media (max-width: 599px) {
  .line-flow-list {
    gap: 50px;
    justify-content: center;
    position: relative;
  }

  .line-flow-list .item {
    width: 90%;
    position: relative;
  }

  .line-flow-list .item + .item::before {
    content: "";
    width: 20px;
    height: 10px;
    background-color: var(--color02);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    display: block;
    position: absolute;
    bottom: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%);
  }

  .line-flow-list .item .title {
    font-size: 20px;
    letter-spacing: 1px;
  }

  .line-flow-list .item .text {
    font-size: 16px;
  }
}

/* menu-page */
.menu-area .menulist .item + .item {
  margin-top: 30px;
}

.menu-area .menulist .item .item-inner {
  border: 5px solid var(--color03);
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
}

.menu-area .menulist .item .flex-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.menu-area .menulist .item .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-column-gap: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  color: var(--color01);
  font-weight: 500;
  border-bottom: 1px solid;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.menu-area .menulist .item .text-box {
  margin-top: 10px;
}

@media (max-width: 599px) {
  .menu-area .menulist .item .head {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
    column-gap: 0.5rem;
  }
}

.menu-set-area .menulist .item + .item {
  margin-top: 20px;
  border-top: 1px dashed #ccc;
  padding-top: 20px;
}

.menu-set-area .menulist .item .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  color: var(--color01);
}

.menu-set-area .menulist .item .head-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 1rem;
  border-left: 5px solid;
  padding-left: 1rem;
  color: var(--color01);
}

.menu-set-area .menulist .item .sub-head + .sub-head {
  position: relative;
  margin-left: 3rem;
}

.menu-set-area .menulist .item .sub-head + .sub-head::before {
  content: "＋";
  position: absolute;
  top: 50%;
  left: -2.3rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.menu-set-area .menulist .item .price-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  font-size: 18px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 10px;
}

.menu-set-area .menulist .item .price-box .price.-price1::after {
  content: "→";
  margin: 0 1rem;
}

@media (max-width: 599px) {
  .menu-set-area .menulist .item .head {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }

  .head-time {
    text-align: right;
    width: 100%;
  }

  .menu-set-area .menulist .item .head-text {
    margin-right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0.8rem;
  }

  .menu-set-area .menulist .item .price-box {
    width: 100%;
  }
}

/* 記事一覧ページ */
.list-article .item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color04);
}

.list-article .cate span {
  display: inline-block;
  background: var(--color01);
  color: #fff;
  padding: 0 10px;
  margin: 0 5px 2px 0px;
  font-size: 14px;
}

/* 記事詳細ページ */
.articledtl01 .head,
.articledtl01 .txt h1 {
  border-bottom: 2px solid var(--color01);
  padding-bottom: 5px;
  color: var(--color01);
  font-size: 24px;
  font-weight: 500;
}

.articledtl01 .cate span {
  display: inline-block;
  background: var(--color01);
  color: #fff;
  padding: 0 10px;
  margin: 0 5px 2px 0px;
}

.articledtl01 .txt h2 {
  margin: 1em 0;
  padding: 0.8rem 0.8rem;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.3;
  background-color: var(--color01);
  color: #fff;
  border-radius: 3px;
}

.articledtl01 .txt h3 {
  margin: 1em 0;
  font-weight: 500;
  font-size: 20px;
  padding-bottom: 0.8rem;
  line-height: 1;
  color: var(--color01);
  border-bottom: solid 1px var(--color01);
}

.articledtl01 .txt h4 {
  margin: 1em 0;
  padding: 0.2rem 0.8rem;
  font-weight: 500;
  font-size: 18px;
  color: var(--color01);
  border-left: solid 4px var(--color01);
}

.articledtl01 .txt p {
  margin: 1rem 0;
}

.articledtl01 .txt hr {
  margin: 1rem 0;
}

.articledtl01 .txt ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  align-items: baseline;
  -ms-flex-align: baseline;
  -webkit-column-gap: 5px;
  -moz-column-gap: 5px;
  column-gap: 5px;
}

.articledtl01 .txt ul li::before {
  content: "■";
  color: var(--color01);
}

.articledtl01 .txt ol li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  align-items: baseline;
  -ms-flex-align: baseline;
  list-style-type: none;
  counter-increment: cnt;
}

.articledtl01 .txt ol li::before {
  content: "" counter(cnt) ".";
  margin-right: 10px;
  font-weight: bold;
  font-size: 120%;
  color: var(--color01);
}

.articledtl01 iframe[src*="youtube"] {
  margin-top: 1em;
  margin-bottom: 1em;
  aspect-ratio: 16 / 9;
  height: auto;
}

/* ギャラリー */
.recommend-list .item:nth-of-type(4) {
  display: none;
}

.list-gallery01 a {
  display: block;
  position: relative;
  background-color: var(--color01);
}

.list-gallery01 .img {
  opacity: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.list-gallery01 .block-txt {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding: 10px;
  overflow: hidden;
  visibility: hidden;
}

.list-gallery01 .cate {
  font-size: 14px;
  margin-bottom: 5px;
}

.list-gallery01 .cate span {
  display: inline-block;
  background: #fff;
  color: var(--color01);
  padding: 0 10px;
  margin: 0 5px 2px 0px;
}

.list-gallery01 .head {
  font-size: 18px;
  color: #fff;
}

.list-gallery01 a:hover {
  opacity: 1;
}

.list-gallery01 .img {
  overflow: hidden;
}

.list-gallery01 a:hover .img {
  opacity: 0.2;
}

.list-gallery01 .img img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.list-gallery01 a:hover .img img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.list-gallery01 a:hover .block-txt {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 599px) {
  .recommend-list .item:nth-of-type(4) {
    display: block;
  }

  .list-gallery01 .block-txt {
    display: none;
  }

  .list-gallery01 .head {
    font-size: 14px;
  }
}

/* ギャラリー詳細 */
.gallerydtl01 .mainimg {
  cursor: pointer;
  border-radius: 5px;
  overflow: hidden;
}

.gallerydtl01 .staff-comment .icon {
  background-color: var(--color01);
  width: 60px;
  height: 60px;
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.gallerydtl01 .staff-comment .icon img {
  max-height: 50px;
}

.gallerydtl01 .staff-comment .text {
  background-color: var(--color03);
  padding: 20px;
  border-radius: 5px;
  position: relative;
  margin-top: 20px;
}

.staff-comment .text::before {
  content: "";
  display: block;
  width: 20px;
  height: 15px;
  position: absolute;
  top: -10px;
  background-color: var(--color03);
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

/* フォーム */
.form .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.form .box + .box {
  margin-top: 30px;
}

.form .box.-textarea {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.form .datattl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  width: 220px;
  font-weight: 500;
}

.form .require {
  display: inline-block;
  margin-left: 10px;
  padding: 8px 15px;
  background: var(--color01);
  color: #fff;
  font-size: 14px;
  line-height: 1;
  border-radius: 3px;
}

.form .data {
  padding-left: 50px;
  width: 100%;
}

.form .data input {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px;
  width: 100%;
  border: none;
  border-radius: 3px;
  background-color: #ebebeb;
}

.form .data input[type="radio"] {
  display: none;
}

.form .data input[type="radio"] + label {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: 20px;
  padding-left: 20px;
  line-height: 200%;
}

.form .data input[type="radio"] + label::before {
  position: absolute;
  top: 5px;
  left: 0;
  display: block;
  width: 15px;
  height: 15px;
  border: 1px solid #999;
  border-radius: 50%;
  background: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
  content: "";
}

form .data input[type="radio"]:checked + label::after {
  position: absolute;
  top: 8px;
  left: 3px;
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color01);
  content: "";
}

.form .data input[type="radio"]:checked + label {
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.form .data input[type="number"] {
  margin-right: 10px;
  width: 70px;
}

.form .data select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 5px;
  border: 1px solid #999;
  color: inherit;
}

.form .data textarea {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px;
  width: 100%;
  height: 170px;
  border: none;
  border-radius: 3px;
  background-color: #ebebeb;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
}

.form .data01 div {
  display: inline-block;
}

@media (max-width: 1024px) {
  .form .item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .form .datattl {
    margin-right: 1rem;
  }

  .form .data {
    padding-left: 0;
  }
}

@media (max-width: 599px) {
  .form .box {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .form .datattl {
    margin-right: 0;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 10px;
    -webkit-column-gap: 5px;
    -moz-column-gap: 5px;
    column-gap: 5px;
  }

  .form .require {
    padding: 6px 15px;
  }

  .form .-min button {
    min-width: 170px;
  }
}

/* ローディング */
.loading {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
}

.loading-inner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1em;
  position: relative;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.loading-inner::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-color: #edbba0;
  /* background-color: #fff; */
  -webkit-transition: height 0.5s linear;
  transition: height 0.5s linear;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.loading-inner .loading-item {
  -webkit-filter: blur(10px);
  filter: blur(10px);
  -webkit-transition: 0.5s linear;
  transition: 0.5s linear;
  position: relative;
  z-index: 2;
}

.loading-inner .loading-item.logo {
  width: 300px;
}

.loading-inner .loading-item + .loading-item {
  margin-top: 1em;
}

.loading-text {
  font-size: 14px;
  color: var(--color01);
  text-align: center;
}

.mv_text {
  line-height: 1.2;
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
  -webkit-transition: 0.5s linear;
  transition: 0.5s linear;
  -webkit-transform: translate(0, 100%);
  transform: translate(0, 100%);
}

.mv_text + .mv_text {
  margin-top: 2vw;
}

/* ロードされたら */
.loading.loaded .loading-inner .loading-item {
  -webkit-filter: blur(0);
  filter: blur(0);
}

.loading.loaded2 .loading-inner .loading-item {
  opacity: 0;
}

.loading.loaded3 .loading-inner::before {
  height: 0;
}

.loading.loaded4 {
  width: 0;
  height: 0;
  visibility: hidden;
  opacity: 0;
  z-index: -999;
}

/* .mv_text.loaded5 {
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.mv_text.loaded6 {
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.mv_text.loaded7 {
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
} */

/* ２回目の訪問の場合 */
.loading.visited {
  width: 0;
  height: 0;
  display: none;
  visibility: hidden;
  opacity: 0;
  z-index: -999;
}

.loading.visited .loading-inner .loading-item {
  -webkit-filter: blur(0);
  filter: blur(0);
}

.loading.visited .loading-inner .loading-item {
  opacity: 0;
}

.loading.visited .loading-inner::before {
  height: 0;
}

.loading.visited.loaded4 {
  width: 0;
  height: 0;
  visibility: hidden;
  opacity: 0;
  z-index: -999;
}

.mv.mv_text {
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.visited.mv_text#mv_text_02 {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.visited.mv_text#mv_text_03 {
  -webkit-transition-delay: 0.75s;
  transition-delay: 0.75s;
}

@media (max-width: 1024px) {
  .mv_text + .mv_text {
    margin-top: 3vw;
  }
}

@media (max-width: 599px) {
  .loading-text {
    font-size: 12px;
  }

  .mv_text + .mv_text {
    margin-top: 6vw;
  }
}

.loading.loaded4 {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: -999;
  display: none; /* 確実に消す */
}

.loading.force-hide {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  z-index: -999 !important;
}

#vdbanner {
  display: none !important;
  height: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  margin: 0 !important;
}
