@charset "UTF-8";
@-webkit-keyframes slide-in-bottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slide-in-bottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes slide-in-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slide-in-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes slide-in-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slide-in-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/* アニメーションの定義 */
@-webkit-keyframes stretch-line-right-to-left {
  0% {
    opacity: 1;
    -webkit-transform: scaleX(0);
            transform: scaleX(0); /* 幅を0にする */
    -webkit-transform-origin: right;
            transform-origin: right; /* 変形の基準点を右端に設定 */
  }
  100% {
    opacity: 1;
    -webkit-transform: scaleX(1);
            transform: scaleX(1); /* 幅を元のサイズにする */
    -webkit-transform-origin: right;
            transform-origin: right; /* 変形の基準点を右端に設定 */
  }
}
@keyframes stretch-line-right-to-left {
  0% {
    opacity: 1;
    -webkit-transform: scaleX(0);
            transform: scaleX(0); /* 幅を0にする */
    -webkit-transform-origin: right;
            transform-origin: right; /* 変形の基準点を右端に設定 */
  }
  100% {
    opacity: 1;
    -webkit-transform: scaleX(1);
            transform: scaleX(1); /* 幅を元のサイズにする */
    -webkit-transform-origin: right;
            transform-origin: right; /* 変形の基準点を右端に設定 */
  }
}
@-webkit-keyframes stretch-line-left-to-right {
  0% {
    opacity: 1;
    -webkit-transform: scaleX(0);
            transform: scaleX(0); /* 幅を0にする */
    -webkit-transform-origin: left;
            transform-origin: left; /* 変形の基準点を右端に設定 */
  }
  100% {
    opacity: 1;
    -webkit-transform: scaleX(1);
            transform: scaleX(1); /* 幅を元のサイズにする */
    -webkit-transform-origin: left;
            transform-origin: left; /* 変形の基準点を右端に設定 */
  }
}
@keyframes stretch-line-left-to-right {
  0% {
    opacity: 1;
    -webkit-transform: scaleX(0);
            transform: scaleX(0); /* 幅を0にする */
    -webkit-transform-origin: left;
            transform-origin: left; /* 変形の基準点を右端に設定 */
  }
  100% {
    opacity: 1;
    -webkit-transform: scaleX(1);
            transform: scaleX(1); /* 幅を元のサイズにする */
    -webkit-transform-origin: left;
            transform-origin: left; /* 変形の基準点を右端に設定 */
  }
}
@-webkit-keyframes pendulum-swing {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); /* 開始は垂直 */
  }
  25% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg); /* 右に少し傾ける */
  }
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); /* 右に少し傾ける */
  }
  75% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg); /* 左に少し傾ける */
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); /* 終了は垂直に戻る */
  }
}
@keyframes pendulum-swing {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); /* 開始は垂直 */
  }
  25% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg); /* 右に少し傾ける */
  }
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); /* 右に少し傾ける */
  }
  75% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg); /* 左に少し傾ける */
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); /* 終了は垂直に戻る */
  }
}
@-webkit-keyframes h3-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes h3-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes h3-slide-left {
  0% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: auto;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    width: 50%;
    position: relative;
    left: 0;
    top: 0;
    white-space: normal;
    text-align: left;
  }
}
@keyframes h3-slide-left {
  0% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: auto;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    width: 50%;
    position: relative;
    left: 0;
    top: 0;
    white-space: normal;
    text-align: left;
  }
}
@-webkit-keyframes txt-fade-in {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes txt-fade-in {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes center-show {
  0% {
    opacity: 0;
    width: 100%;
  }
  50% {
    opacity: 1;
    width: 100%;
  }
  60% {
    max-width: 12ch;
  }
  70% {
    max-width: 10ch;
  }
  100% {
    opacity: 1;
    width: 50%;
    max-width: 6ch;
    text-align: left;
  }
}
@keyframes center-show {
  0% {
    opacity: 0;
    width: 100%;
  }
  50% {
    opacity: 1;
    width: 100%;
  }
  60% {
    max-width: 12ch;
  }
  70% {
    max-width: 10ch;
  }
  100% {
    opacity: 1;
    width: 50%;
    max-width: 6ch;
    text-align: left;
  }
}
* {
  margin: 0;
  padding: 0;
  background-position: center;
  background-size: cover;
  font-family: serif;
  font-family: "Noto Sans JP", sans-serif;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: #000000;
  display: block;
}
a:hover {
  opacity: 0.7;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.flex {
  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;
}

img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

.container {
  width: 90%;
  max-width: 1557px;
  margin: auto;
}

.bg-gold {
  background-color: #A18316;
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

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

header {
  padding: 10px 30px;
  position: absolute;
  z-index: 99;
  margin-top: -200px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: calc(100vw - 60px);
}
@media screen and (max-width: 1300px) {
  header {
    padding: 10px 10px;
    width: calc(100vw - 20px);
  }
}
@media screen and (max-width: 1200px) {
  header {
    display: block;
    z-index: 99;
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  header {
    padding: 15px 10px;
  }
}
header.fixed {
  position: fixed;
  background-color: #ffffff;
  margin-top: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 1200px) {
  header .header-wrap.flex {
    width: 100vw;
    position: fixed;
    margin-top: -120vh;
    height: 100vh;
    background-color: #A18316;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 1200px) {
  header .header-wrap.flex.is-open {
    top: 0;
    left: 0;
    margin-top: 0vh;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
}
header .flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .logo {
  max-width: 198px;
}
@media screen and (max-width: 1300px) {
  header .logo {
    width: 130px;
  }
}
@media screen and (max-width: 1200px) {
  header .logo {
    width: 200px;
  }
}
@media screen and (max-width: 768px) {
  header .logo {
    width: 180px;
  }
}
@media screen and (max-width: 1200px) {
  header .logo.pc-logo {
    display: none;
  }
}
header .nav {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  header .nav {
    display: block;
  }
}
header .hum-nav-bg {
  width: 100%;
  position: absolute;
  height: 15vh;
  background-color: #ffffff;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1200px) {
  header .nav-wrap {
    width: 100%;
    max-width: 500px;
    margin: 30px auto;
  }
}
header .nav-wrap .menu-icon {
  width: 100%;
  margin: auto;
  position: absolute;
  bottom: 13vh;
}
header .nav-wrap .menu-icon img {
  width: 50%;
  margin: auto;
}
@media screen and (max-width: 1200px) {
  header .nav-wrap ul {
    display: block;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  header .nav-wrap ul {
    margin-bottom: 20vh;
  }
}
header .nav-wrap li {
  margin: 0 10px;
}
@media screen and (max-width: 1500px) {
  header .nav-wrap li {
    margin: 0 8px;
  }
}
header .nav-wrap li a {
  font-size: 20px;
}
@media screen and (max-width: 1300px) {
  header .nav-wrap li a {
    font-size: 19px;
  }
}
@media screen and (max-width: 1200px) {
  header .nav-wrap li a {
    width: 200px;
    text-align: center;
    padding: 15px;
    border: 1px solid #ffffff;
    margin: 10px auto;
    color: #ffffff;
  }
}
@media screen and (max-width: 768px) {
  header .nav-wrap li a {
    padding: 5px 10px;
    width: 180px;
    margin: 12px auto;
  }
}
header .nav-wrap .button-wrap {
  margin-left: 15px;
}
@media screen and (max-width: 768px) {
  header .nav-wrap .button-wrap {
    width: 100%;
    margin-left: 0;
    bottom: 0;
    position: absolute;
  }
}
header .nav-wrap .button-wrap a {
  width: 200px;
  text-align: center;
  line-height: 1;
  background-repeat: repeat;
  color: #ffffff;
  padding: 10px 0;
}
@media screen and (max-width: 1300px) {
  header .nav-wrap .button-wrap a {
    width: 160px;
  }
}
@media screen and (max-width: 1200px) {
  header .nav-wrap .button-wrap a {
    width: 50%;
    display: block;
  }
}
header .nav-wrap .button-wrap a:first-child {
  background-image: url(../img/noise-bg-pink.png);
}
header .nav-wrap .button-wrap a:last-child {
  background-image: url(../img/noise-bg-blue.png);
}
header .nav-wrap .button-wrap a span {
  font-family: "Dela Gothic One", sans-serif;
  font-size: 20px;
}
@media screen and (max-width: 1300px) {
  header .nav-wrap .button-wrap a span {
    font-size: 17px;
  }
}
@media screen and (max-width: 768px) {
  header .nav-wrap .button-wrap a span {
    line-height: 1.1;
  }
}
header .nav-wrap .button-wrap a span.l-txt {
  font-size: 30px;
}
@media screen and (max-width: 1300px) {
  header .nav-wrap .button-wrap a span.l-txt {
    font-size: 2.1428571429vw;
  }
}
@media screen and (max-width: 768px) {
  header .nav-wrap .button-wrap a span.l-txt {
    font-size: 6.5vw;
  }
}
header .nav-wrap .button-wrap a span img {
  display: inline-block;
  width: 10px;
}

.logo.tablet {
  display: none;
}
@media screen and (max-width: 1200px) {
  .logo.tablet {
    display: block;
    z-index: 99;
    position: relative;
  }
}

.hamburger-btn {
  display: none;
  position: absolute;
  right: 30px;
  margin-top: -70px;
  width: 100px;
  height: 75px;
  background-color: #A18316;
  -webkit-box-shadow: 0px 4px 13px rgba(0, 0, 0, 0.3254901961);
          box-shadow: 0px 4px 13px rgba(0, 0, 0, 0.3254901961);
  border-radius: 10px;
}
@media screen and (max-width: 1200px) {
  .hamburger-btn {
    display: block;
  }
}
.hamburger-btn .txt {
  font-family: "Dela Gothic One", sans-serif;
  text-align: center;
  color: #ffffff;
  margin-top: 15px;
}
.hamburger-btn .txt.close {
  display: none;
}
.hamburger-btn span {
  display: block;
  width: 80px;
  height: 2px;
  background-color: #ffffff;
  margin-left: 10px;
}
.hamburger-btn span:nth-child(3) {
  margin-top: 5px;
}
.hamburger-btn span:nth-child(4) {
  margin-top: 5px;
}
.hamburger-btn span:nth-child(5) {
  margin-top: 5px;
}
.hamburger-btn.active .txt.open {
  display: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.hamburger-btn.active .txt.close {
  display: block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.hamburger-btn.active span:nth-child(3) {
  margin-top: 10px;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.hamburger-btn.active span:nth-child(4) {
  display: none;
}
.hamburger-btn.active span:nth-child(5) {
  margin-top: -2px;
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

main {
  position: relative;
  overflow: hidden;
}

#mv {
  font-family: "Dela Gothic One", sans-serif;
  color: #A18316;
  padding: 100px 0;
  /* すべてのアニメーション対象要素の初期状態を非表示にする */
  /* message-01 のアニメーション */
  /* message-02 のアニメーション */
  /* icon-wrap のアニメーション */
  /* link-wrap のアニメーション */
}
@media screen and (max-width: 1024px) {
  #mv .container {
    padding-top: 50px;
  }
}
#mv span, #mv a {
  font-family: "Dela Gothic One", sans-serif;
}
#mv a {
  color: #ffffff;
}
#mv span {
  line-height: 0.8;
}
#mv span.border {
  color: #ffffff;
  -webkit-text-stroke: 6px #A18316;
  text-stroke: 6px #A18316;
  font-size: 80px;
}
#mv .message-wrap .message-01 {
  font-size: 110px;
}
@media screen and (max-width: 1500px) {
  #mv .message-wrap .message-01 {
    font-size: 7.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  #mv .message-wrap .message-01 {
    font-size: 25vw;
    line-height: 1;
    width: 100vw;
    margin-left: -5vw;
    text-align: center;
    display: inline-block;
    margin-left: -5vw;
  }
}
#mv .message-wrap .message-01 span.border {
  font-size: 80px;
}
@media screen and (max-width: 1500px) {
  #mv .message-wrap .message-01 span.border {
    font-size: 5.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  #mv .message-wrap .message-01 span.border {
    font-size: 15vw;
  }
}
#mv .message-wrap .message-02 span {
  font-size: 350px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1700px) {
  #mv .message-wrap .message-02 span {
    font-size: 20vw;
  }
}
@media screen and (max-width: 1500px) {
  #mv .message-wrap .message-02 span {
    font-size: 20vw;
  }
}
@media screen and (max-width: 768px) {
  #mv .message-wrap .message-02 span {
    font-size: 45vw;
    margin: auto;
    width: 100vw;
    margin-left: -5vw;
    text-align: center;
    display: inline-block;
  }
}
#mv .message-wrap .message-02 span.border {
  font-size: 140px;
  margin-left: -100px;
}
@media screen and (max-width: 1500px) {
  #mv .message-wrap .message-02 span.border {
    font-size: 10vw;
  }
}
@media screen and (max-width: 768px) {
  #mv .message-wrap .message-02 span.border {
    font-size: 20vw;
    margin-left: -62.5vw;
    position: absolute;
    margin-top: 20vw;
  }
}
#mv .mv-link-wrap {
  margin-top: 50px;
}
#mv .mv-link-wrap .link-wrap {
  width: 48%;
}
#mv .mv-link-wrap .link-wrap:first-child a {
  background-image: url(../img/noise-bg-pink.png);
}
#mv .mv-link-wrap .link-wrap a {
  padding: 0 20px 20px;
  background-image: url(../img/noise-bg-blue.png);
  -webkit-box-shadow: 0px 4px 13px rgba(0, 0, 0, 0.4039215686);
          box-shadow: 0px 4px 13px rgba(0, 0, 0, 0.4039215686);
  border-radius: 16px;
}
@media screen and (max-width: 1500px) {
  #mv .mv-link-wrap .link-wrap a {
    padding: 0 50px 20px;
  }
}
@media screen and (max-width: 768px) {
  #mv .mv-link-wrap .link-wrap a {
    padding: 0 5vw 20px;
  }
}
#mv .mv-link-wrap .link-wrap a div {
  font-size: 60px;
  line-height: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  font-family: "Dela Gothic One", sans-serif;
}
@media screen and (max-width: 1500px) {
  #mv .mv-link-wrap .link-wrap a div {
    font-size: 3.3333333333vw;
  }
}
@media screen and (max-width: 1024px) {
  #mv .mv-link-wrap .link-wrap a div {
    font-size: 3.02734375vw;
  }
}
@media screen and (max-width: 768px) {
  #mv .mv-link-wrap .link-wrap a div {
    font-size: 5.5vw;
  }
}
#mv .mv-link-wrap .link-wrap a span {
  font-family: "Inter", sans-serif;
  font-size: 24px;
}
@media screen and (max-width: 1500px) {
  #mv .mv-link-wrap .link-wrap a span {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  #mv .mv-link-wrap .link-wrap a span {
    font-size: 4vw;
    position: absolute;
    margin-left: 10vw;
    margin-top: 6.25vw;
  }
}
#mv .icon-wrap {
  position: absolute;
  margin-top: -450px;
  max-width: 400px;
  left: 35%;
}
@media screen and (max-width: 1200px) {
  #mv .icon-wrap {
    width: 300px;
    margin-top: -350px;
  }
}
@media screen and (max-width: 768px) {
  #mv .icon-wrap {
    width: 50%;
    margin-top: -80vw;
    left: 20vw;
  }
}
#mv .m-block, #mv .icon-wrap, #mv .mv-link-wrap {
  opacity: 0;
}
#mv .m-block.is-visible {
  opacity: 1;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}
#mv .icon-wrap {
  -webkit-transform: translateX(100%);
          transform: translateX(100%); /* 開始位置: 右端 */
}
#mv .icon-wrap.is-visible {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0); /* 終了位置: 中央 */
  -webkit-transition: all 1s ease-in-out 1s;
  transition: all 1s ease-in-out 1s; /* 1秒遅延 */
}
#mv .mv-link-wrap {
  -webkit-transform: translateY(20px);
          transform: translateY(20px); /* 開始位置: 下 */
}
#mv .mv-link-wrap.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0); /* 終了位置: 中央 */
  -webkit-transition: all 1s ease-in-out 2s;
  transition: all 1s ease-in-out 2s; /* 2秒遅延 */
}

.title-wrap .desc, .sec-title-wrap .desc {
  font-family: "Inder", sans-serif;
  font-size: 22px;
  letter-spacing: 0.5em;
}
@media screen and (max-width: 768px) {
  .title-wrap .desc, .sec-title-wrap .desc {
    font-size: 16px;
    line-height: 1.1;
  }
}
.title-wrap h3, .sec-title-wrap h3 {
  font-family: "Dela Gothic One", sans-serif;
  font-size: 92px;
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 1500px) {
  .title-wrap h3, .sec-title-wrap h3 {
    font-size: 6.1333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .title-wrap h3, .sec-title-wrap h3 {
    font-size: 10.5vw;
    line-height: 1.1;
  }
}

.sec-title-wrap {
  color: #A18316;
  text-align: center;
  margin: 50px 0 30px;
}

#about {
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  #about .container {
    width: 100%;
  }
}
#about .bg-gold {
  padding: 50px 20px;
}
#about .description {
  padding-bottom: 0px;
}
@media screen and (max-width: 1024px) {
  #about .description {
    padding-bottom: 0px;
  }
}
#about .description .img-wrap {
  opacity: 0;
  width: 600px;
  margin: -150px auto 0;
}
@media screen and (max-width: 1200px) {
  #about .description .img-wrap {
    width: 50%;
    margin-top: -11vw;
  }
}
@media screen and (max-width: 768px) {
  #about .description .img-wrap {
    position: relative;
    margin: -20px auto 0;
    width: 80%;
    max-width: 500px;
  }
}
#about .description .img-wrap.fade {
  -webkit-animation: slide-in-bottom 1s ease-out forwards;
          animation: slide-in-bottom 1s ease-out forwards;
}
#about .description .title-wrap {
  text-align: center;
}
#about .description .title-wrap h3 {
  margin-top: 15px;
}
#about .description .inner {
  position: relative;
}
#about .description .txt {
  margin: 50px auto 0;
  max-width: 920px;
  line-height: 2.5;
  letter-spacing: 0.1em;
}
#about .description .wrap {
  float: left;
  margin-left: 170px;
}
#about .place {
  margin-top: 30px;
}
#about .place .item {
  width: calc(48% - 40px);
  padding-top: 10px;
}
@media screen and (max-width: 768px) {
  #about .place .item {
    width: 100%;
    background-color: #ffffff;
    padding: 0;
  }
}
#about .place .item .img-wrap {
  position: absolute;
  width: calc((48% - 40px) * 0.9);
  max-width: 700px;
}
@media screen and (max-width: 768px) {
  #about .place .item .img-wrap {
    display: none;
  }
}
#about .place .item .img-wrap img {
  width: 100%;
  opacity: 0.8;
  z-index: 1;
  opacity: 0;
}
#about .place .item .img-wrap img.fade {
  -webkit-animation: fade-in 0.5s ease-out forwards;
          animation: fade-in 0.5s ease-out forwards;
}
#about .place .item .txt-wrap {
  margin-top: 240px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #about .place .item .txt-wrap {
    margin-top: 40px;
  }
}
#about .place .item .txt-wrap h3 {
  font-family: "Dela Gothic One", sans-serif;
  font-size: 92px;
  font-weight: 400;
  line-height: 1;
  opacity: 0;
  color: #ffffff;
  position: relative;
  z-index: 3;
}
#about .place .item .txt-wrap h3.fade {
  -webkit-animation: fade-in 1s 0.5s ease-out forwards;
          animation: fade-in 1s 0.5s ease-out forwards;
}
@media screen and (max-width: 1500px) {
  #about .place .item .txt-wrap h3 {
    font-size: 6.1333333333vw;
  }
}
@media screen and (max-width: 768px) {
  #about .place .item .txt-wrap h3 {
    font-size: 15vw;
    width: 100%;
    line-height: 50vw;
    background-color: #A18316;
    width: 100%;
    padding: 0px 0;
    text-align: center;
    position: relative;
  }
  #about .place .item .txt-wrap h3::before {
    content: "";
    position: absolute;
    width: 76vw;
    height: 47vw;
    background-image: url(../img/place-icn01.png);
    background-position: center;
    background-size: cover;
    z-index: -1;
    margin-top: 3vw;
    margin-left: -5vw;
  }
}
@media screen and (max-width: 768px) {
  #about .place .item .txt-wrap h3.second::before {
    width: 87.5vw;
    margin-top: 2vw;
    height: 50vw;
    background-image: url(../img/place-icn02.png);
  }
}
#about .place .item .txt-wrap .txt {
  line-height: 2.3;
  margin-top: 10px;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  #about .place .item .txt-wrap .txt {
    color: #A18316;
    max-width: 90%;
    margin: 20px auto;
  }
}
#about .place .item .txt-wrap .txt.fade {
  -webkit-animation: fade-in 1s 1s ease-out forwards;
          animation: fade-in 1s 1s ease-out forwards;
}
@media screen and (max-width: 768px) {
  #about .place .item .txt-wrap .txt.fade {
    -webkit-animation: fade-in 1s 0.5s ease-out forwards;
            animation: fade-in 1s 0.5s ease-out forwards;
  }
}
#about .place .item .txt-wrap .link-wrap {
  opacity: 0;
}
@media screen and (max-width: 768px) {
  #about .place .item .txt-wrap .link-wrap {
    max-width: 90%;
    margin: 20px auto 40px;
  }
}
#about .place .item .txt-wrap .link-wrap.fade {
  -webkit-animation: fade-in 1s 1.5s ease-out forwards;
          animation: fade-in 1s 1.5s ease-out forwards;
}
@media screen and (max-width: 768px) {
  #about .place .item .txt-wrap .link-wrap.fade {
    -webkit-animation: fade-in 1s 0.5s ease-out forwards;
            animation: fade-in 1s 0.5s ease-out forwards;
  }
}
#about .place .item .txt-wrap .link-wrap a {
  width: 100%;
  background-color: #ffffff;
  border-radius: 16px;
  line-height: 2.5;
  text-align: center;
  color: #A18316;
  font-size: 20px;
  margin-top: 10px;
  -webkit-box-shadow: 0px 4px 13px rgba(0, 0, 0, 0.1568627451);
          box-shadow: 0px 4px 13px rgba(0, 0, 0, 0.1568627451);
  border: 1px solid #A18316;
}
#about .place .item .txt-wrap .link-wrap a:hover {
  background-color: #A18316;
  color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border: 1px solid #ffffff;
}
#about .kakou {
  margin-top: 30px;
  padding-bottom: 0px;
  border: 20px solid #A18316;
}
#about .kakou .main-area {
  background-color: #ffffff;
  color: #A18316;
  padding: 80px;
}
@media screen and (max-width: 1024px) {
  #about .kakou .main-area {
    padding: 30px;
  }
}
@media screen and (max-width: 768px) {
  #about .kakou .main-area {
    padding: 5vw;
  }
}
#about .kakou .main-area .icon-sp {
  width: 50vw;
  margin: -20vw auto 0;
}
#about .kakou .main-area .txt {
  width: 50%;
  line-height: 2.5;
  opacity: 0;
}
#about .kakou .main-area .txt.fade {
  -webkit-animation: fade-in 1s 2s ease-out forwards;
          animation: fade-in 1s 2s ease-out forwards;
}
@media screen and (max-width: 768px) {
  #about .kakou .main-area .txt.fade {
    -webkit-animation: fade-in 1s 0s ease-out forwards;
            animation: fade-in 1s 0s ease-out forwards;
  }
}
@media screen and (max-width: 768px) {
  #about .kakou .main-area .txt {
    width: 100%;
    margin-top: 20px;
  }
}
#about .kakou .main-area h3 {
  font-family: "Dela Gothic One", sans-serif;
  font-size: 92px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  width: 100%;
}
#about .kakou .main-area h3 .after-fade {
  display: none;
}
#about .kakou .main-area h3.fade {
  -webkit-animation: center-show 1s 0s ease-out forwards;
          animation: center-show 1s 0s ease-out forwards;
}
@media screen and (max-width: 768px) {
  #about .kakou .main-area h3.fade {
    -webkit-animation: fade-in 1s 0s ease-out forwards;
            animation: fade-in 1s 0s ease-out forwards;
  }
}
@media screen and (max-width: 1500px) {
  #about .kakou .main-area h3 {
    font-size: 6.1333333333vw;
  }
}
@media screen and (max-width: 768px) {
  #about .kakou .main-area h3 {
    width: 100%;
    font-size: 15vw;
    line-height: 1;
    text-align: center;
  }
}
#about .kakou .main-area h3 img {
  display: inline;
  width: 110px;
  opacity: 0;
}
#about .kakou .main-area h3 img.fade {
  -webkit-animation: fade-in 1s 5s ease-out forwards;
          animation: fade-in 1s 5s ease-out forwards;
}
@media screen and (max-width: 768px) {
  #about .kakou .main-area h3 img.fade {
    -webkit-animation: fade-in 1s 0.3s ease-out forwards;
            animation: fade-in 1s 0.3s ease-out forwards;
  }
}
#about .kakou .bottom-area {
  padding: 10px 0 15px 30px;
  opacity: 0;
  background-color: #A18316;
}
#about .kakou .bottom-area.fade {
  -webkit-animation: stretch-line-left-to-right 1s 3s ease-out forwards;
          animation: stretch-line-left-to-right 1s 3s ease-out forwards;
}
@media screen and (max-width: 768px) {
  #about .kakou .bottom-area.fade {
    -webkit-animation: stretch-line-left-to-right 1s 0s ease-out forwards;
            animation: stretch-line-left-to-right 1s 0s ease-out forwards;
  }
}
#about .kakou .bottom-area .txt-wrap {
  width: 80%;
  opacity: 0;
  z-index: 2;
}
#about .kakou .bottom-area .txt-wrap.fade {
  -webkit-animation: fade-in 1s 4s ease-out forwards;
          animation: fade-in 1s 4s ease-out forwards;
}
@media screen and (max-width: 768px) {
  #about .kakou .bottom-area .txt-wrap.fade {
    -webkit-animation: fade-in 1s 0.5s ease-out forwards;
            animation: fade-in 1s 0.5s ease-out forwards;
  }
}
@media screen and (max-width: 1500px) {
  #about .kakou .bottom-area .txt-wrap {
    width: 85%;
  }
}
@media screen and (max-width: 768px) {
  #about .kakou .bottom-area .txt-wrap {
    line-height: 2;
  }
}
#about .kakou .bottom-area .txt-wrap .txt-l {
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #about .kakou .bottom-area .txt-wrap .txt-l {
    font-size: max(3.75vw, 18px);
  }
}
#about .kakou .bottom-area .img-wrap {
  width: 12%;
  background-color: #A18316;
  margin-top: -100px;
  padding: 50px 50px 10px 50px;
  border-top-left-radius: 100%;
  opacity: 0;
}
@media screen and (max-width: 1500px) {
  #about .kakou .bottom-area .img-wrap {
    position: absolute;
    right: 0;
    z-index: 0;
  }
}
@media screen and (max-width: 768px) {
  #about .kakou .bottom-area .img-wrap {
    position: relative;
    margin: 0 auto 10px;
    width: 40%;
    padding: 0;
  }
}
#about .kakou .bottom-area .img-wrap.fade {
  -webkit-animation: fade-in 1s 4s ease-out forwards;
          animation: fade-in 1s 4s ease-out forwards;
}
@media screen and (max-width: 768px) {
  #about .kakou .bottom-area .img-wrap.fade {
    -webkit-animation: fade-in 1s 0.5s ease-out forwards;
            animation: fade-in 1s 0.5s ease-out forwards;
  }
}
#about .kakou .bottom-area .img-wrap img {
  width: 80%;
  margin-left: 50px;
  margin-top: 0px;
}
@media screen and (max-width: 768px) {
  #about .kakou .bottom-area .img-wrap img {
    margin-left: 0;
  }
}

#introduction .tab-slide-wrap {
  /* スクロールバーの色を変更する例 */
}
#introduction .tab-slide-wrap .swiper-slide {
  max-width: 900px;
  opacity: 0.5;
}
#introduction .tab-slide-wrap .swiper-slide img {
  width: 100%;
}
#introduction .tab-slide-wrap .swiper-slide.swiper-slide-active {
  opacity: 1;
}
#introduction .tab-slide-wrap .scroll-bar {
  background-color: transparent;
  height: 5px;
  max-width: 500px;
  margin: 15px auto;
}
#introduction .tab-slide-wrap .swiper-pagination {
  position: relative;
}
#introduction .tab-slide-wrap .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #d1d0d0;
  margin: 0 6px;
}
@media screen and (max-width: 480px) {
  #introduction .tab-slide-wrap .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px;
  }
}
#introduction .tab-slide-wrap .swiper-pagination .swiper-pagination-bullet-active {
  background: #D9D9D9;
}
#introduction .tab-slide-wrap .swiper-scrollbar-drag {
  border-radius: 5px;
  background-color: #D9D9D9;
}
#introduction .contents {
  margin-top: 100px;
}
#introduction .contents .content {
  display: none;
}
#introduction .contents .content.active {
  display: block;
}
#introduction .contents .content:first-child .swiper-slide:nth-child(1) .inner {
  background-color: #e0445d;
}
#introduction .contents .content:first-child .swiper-slide:nth-child(1) .inner .detail-wrap .txt-wrap h5 {
  color: #e0445d;
}
#introduction .contents .content:first-child .swiper-slide:nth-child(1) .inner .link-wrap a {
  background-color: #e0445d;
}
#introduction .contents .content:first-child .swiper-slide:nth-child(2) .inner {
  background-color: #5370D2;
}
#introduction .contents .content:first-child .swiper-slide:nth-child(2) .inner .detail-wrap .txt-wrap h5 {
  color: #5370D2;
}
#introduction .contents .content:first-child .swiper-slide:nth-child(2) .inner .link-wrap a {
  background-color: #5370D2;
}
#introduction .contents .content:first-child .swiper-slide:nth-child(3) .inner {
  background-color: #5FC0CF;
}
#introduction .contents .content:first-child .swiper-slide:nth-child(3) .inner .detail-wrap .txt-wrap h5 {
  color: #5FC0CF;
}
#introduction .contents .content:first-child .swiper-slide:nth-child(3) .inner .link-wrap a {
  background-color: #5FC0CF;
}
#introduction .contents .content:first-child .swiper-slide:nth-child(4) .inner {
  background-color: #ABDC40;
}
#introduction .contents .content:first-child .swiper-slide:nth-child(4) .inner .detail-wrap .txt-wrap h5 {
  color: #ABDC40;
}
#introduction .contents .content:first-child .swiper-slide:nth-child(4) .inner .link-wrap a {
  background-color: #ABDC40;
}
#introduction .contents .content:first-child .swiper-slide:nth-child(5) .inner {
  background-color: #493B92;
}
#introduction .contents .content:first-child .swiper-slide:nth-child(5) .inner .detail-wrap .txt-wrap h5 {
  color: #493B92;
}
#introduction .contents .content:first-child .swiper-slide:nth-child(5) .inner .link-wrap a {
  background-color: #493B92;
}
#introduction .contents .content:nth-child(2) .swiper-slide:nth-child(1) .inner {
  background-color: #DC4063;
}
#introduction .contents .content:nth-child(2) .swiper-slide:nth-child(1) .inner .detail-wrap .txt-wrap h5 {
  color: #DC4063;
}
#introduction .contents .content:nth-child(2) .swiper-slide:nth-child(1) .inner .link-wrap a {
  background-color: #DC4063;
}
#introduction .contents .content:nth-child(2) .swiper-slide:nth-child(2) .inner {
  background-color: #CF5FB9;
}
#introduction .contents .content:nth-child(2) .swiper-slide:nth-child(2) .inner .detail-wrap .txt-wrap h5 {
  color: #CF5FB9;
}
#introduction .contents .content:nth-child(2) .swiper-slide:nth-child(2) .inner .link-wrap a {
  background-color: #CF5FB9;
}
#introduction .contents .content:nth-child(2) .swiper-slide:nth-child(3) .inner {
  background-color: #54ABB8;
}
#introduction .contents .content:nth-child(2) .swiper-slide:nth-child(3) .inner .detail-wrap .txt-wrap h5 {
  color: #54ABB8;
}
#introduction .contents .content:nth-child(2) .swiper-slide:nth-child(3) .inner .link-wrap a {
  background-color: #54ABB8;
}
#introduction .contents .content:nth-child(2) .swiper-slide:nth-child(4) .inner {
  background-color: #5370D2;
}
#introduction .contents .content:nth-child(2) .swiper-slide:nth-child(4) .inner .detail-wrap .txt-wrap h5 {
  color: #5370D2;
}
#introduction .contents .content:nth-child(2) .swiper-slide:nth-child(4) .inner .link-wrap a {
  background-color: #5370D2;
}
#introduction .contents .content .swiper-slide .inner {
  width: calc(100% - 300px);
  background-color: #e0445d;
  border-radius: 16px;
  padding: 60px 150px 45px;
}
@media screen and (max-width: 1500px) {
  #introduction .contents .content .swiper-slide .inner {
    padding: 70px 50px;
    width: calc(100% - 100px);
  }
}
@media screen and (max-width: 768px) {
  #introduction .contents .content .swiper-slide .inner {
    padding: 30px;
    padding-top: 45px;
    width: calc(100% - 60px);
  }
}
#introduction .contents .content .swiper-slide .inner .top-area-name {
  position: absolute;
  color: #ffffff;
  text-align: right;
  font-size: 24px;
  right: 50px;
  top: 30px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #introduction .contents .content .swiper-slide .inner .top-area-name {
    font-size: 19px;
    top: 10px;
    right: 20px;
  }
}
#introduction .contents .content .swiper-slide .inner .title-wrapper {
  color: #ffffff;
}
#introduction .contents .content .swiper-slide .inner .title-wrapper .link {
  display: none;
}
@media screen and (max-width: 768px) {
  #introduction .contents .content .swiper-slide .inner .title-wrapper .link {
    display: block;
    text-decoration: underline;
    color: #ffffff;
    text-align: center;
    margin: 10px auto;
    font-size: max(3.5vw, 14px);
    cursor: pointer;
  }
  #introduction .contents .content .swiper-slide .inner .title-wrapper .link:hover {
    opacity: 0.7;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
}
#introduction .contents .content .swiper-slide .inner .title-wrapper .sub {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 17px;
  border: 1px solid #ffffff;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3;
}
@media screen and (max-width: 1200px) {
  #introduction .contents .content .swiper-slide .inner .title-wrapper .sub {
    font-size: max(2vw, 17px);
  }
}
@media screen and (max-width: 768px) {
  #introduction .contents .content .swiper-slide .inner .title-wrapper .sub {
    width: calc(100% - 40px);
    font-size: max(3.5vw, 14px);
  }
}
#introduction .contents .content .swiper-slide .inner .title-wrapper h4 {
  margin-top: 20px;
  font-family: "Dela Gothic One", sans-serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 1.1;
}
@media screen and (max-width: 1500px) {
  #introduction .contents .content .swiper-slide .inner .title-wrapper h4 {
    font-size: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #introduction .contents .content .swiper-slide .inner .title-wrapper h4 {
    width: 100%;
    font-size: 7.5vw;
  }
}
#introduction .contents .content .swiper-slide .inner .title-wrapper .txt-wrap {
  width: 70%;
}
@media screen and (max-width: 768px) {
  #introduction .contents .content .swiper-slide .inner .title-wrapper .txt-wrap {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    text-align: center;
  }
}
#introduction .contents .content .swiper-slide .inner .title-wrapper .img-wrap {
  width: 28%;
}
@media screen and (max-width: 768px) {
  #introduction .contents .content .swiper-slide .inner .title-wrapper .img-wrap {
    width: 70%;
    margin: auto auto 5vw;
  }
}
#introduction .contents .content .swiper-slide .inner .title-wrapper .flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#introduction .contents .content .swiper-slide .inner .link-wrap {
  margin-top: -30px;
}
@media screen and (max-width: 768px) {
  #introduction .contents .content .swiper-slide .inner .link-wrap {
    margin-top: unset;
  }
}
#introduction .contents .content .swiper-slide .inner .link-wrap a {
  margin: auto;
  padding: 10px 0 20px;
  color: #ffffff;
  text-align: center;
  width: 80%;
  border-radius: 16px;
  background-color: #e0445d;
  line-height: 1;
  -webkit-box-shadow: 0px 4px 13px rgba(0, 0, 0, 0.2784313725);
          box-shadow: 0px 4px 13px rgba(0, 0, 0, 0.2784313725);
  font-size: 35px;
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 1200px) {
  #introduction .contents .content .swiper-slide .inner .link-wrap a {
    font-size: 2.9166666667vw;
  }
}
@media screen and (max-width: 768px) {
  #introduction .contents .content .swiper-slide .inner .link-wrap a {
    width: 100%;
    font-size: 5vw;
  }
}
#introduction .contents .content .swiper-slide .inner .link-wrap a span {
  line-height: 1;
  font-size: 24px;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 1200px) {
  #introduction .contents .content .swiper-slide .inner .link-wrap a span {
    font-size: max(2vw, 19px);
  }
}
@media screen and (max-width: 768px) {
  #introduction .contents .content .swiper-slide .inner .link-wrap a span {
    font-size: 4vw;
  }
}
#introduction .contents .content .swiper-slide:hover .inner .link-wrap a {
  opacity: 1;
}
#introduction .contents .content .scroll-bar-content {
  background-color: transparent;
  height: 5px;
  max-width: 800px;
  margin: 15px auto;
}
#introduction .contents .content .scroll-bar-content .swiper-scrollbar-drag {
  border-radius: 5px;
  background-color: #D9D9D9;
}
#introduction .contents .scroll-wrap img {
  max-width: 200px;
  margin: auto;
}
#introduction .detail-wrap, #introduction .modal-body {
  margin-top: 30px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 40px 40px 60px;
}
@media screen and (max-width: 768px) {
  #introduction .detail-wrap, #introduction .modal-body {
    padding: 0;
    margin: 30px 0;
  }
}
@media screen and (max-width: 768px) {
  #introduction .detail-wrap .txt-wrap, #introduction .modal-body .txt-wrap {
    padding: 0 10px 10px;
  }
}
#introduction .detail-wrap .txt-wrap h5, #introduction .modal-body .txt-wrap h5 {
  color: #e0445d;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  #introduction .detail-wrap .txt-wrap h5, #introduction .modal-body .txt-wrap h5 {
    font-size: 20px;
  }
}
#introduction .detail-wrap .txt-wrap .txt, #introduction .modal-body .txt-wrap .txt {
  font-size: 20px;
  padding-right: 120px;
}
@media screen and (max-width: 768px) {
  #introduction .detail-wrap .txt-wrap .txt, #introduction .modal-body .txt-wrap .txt {
    font-size: 15px;
    padding-right: 0;
  }
}
#introduction .detail-wrap .txt-wrap .icon-wrap, #introduction .modal-body .txt-wrap .icon-wrap {
  float: right;
  width: 121px;
  margin-top: -150px;
  z-index: 5;
  position: relative;
}
@media screen and (max-width: 768px) {
  #introduction .detail-wrap .txt-wrap .icon-wrap, #introduction .modal-body .txt-wrap .icon-wrap {
    display: none;
  }
}
#introduction .detail-wrap .txt-wrap.red h5, #introduction .modal-body .txt-wrap.red h5 {
  color: #BA5242;
}
#introduction .detail-wrap .txt-wrap.blue h5, #introduction .modal-body .txt-wrap.blue h5 {
  color: #5370D2;
}
#introduction .detail-wrap .txt-wrap.light-blue h5, #introduction .modal-body .txt-wrap.light-blue h5 {
  color: #5FC0CF;
}
#introduction .detail-wrap .txt-wrap.green h5, #introduction .modal-body .txt-wrap.green h5 {
  color: #ABDC40;
}
#introduction .detail-wrap .txt-wrap.dark-green h5, #introduction .modal-body .txt-wrap.dark-green h5 {
  color: #54ABB8;
}
#introduction .detail-wrap .txt-wrap.parple h5, #introduction .modal-body .txt-wrap.parple h5 {
  color: #493B92;
}
#introduction .detail-wrap .txt-wrap.light-parple h5, #introduction .modal-body .txt-wrap.light-parple h5 {
  color: #CF5FB9;
}
#introduction .detail-wrap .img-wrap, #introduction .modal-body .img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #introduction .detail-wrap .img-wrap, #introduction .modal-body .img-wrap {
    height: 40vw;
    margin-bottom: 10px;
  }
}
#introduction .detail-wrap .img-wrap.full .img-item, #introduction .modal-body .img-wrap.full .img-item {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #introduction .detail-wrap .img-wrap.full .img-item, #introduction .modal-body .img-wrap.full .img-item {
    height: 100%;
  }
}
#introduction .detail-wrap .img-wrap .img-item, #introduction .modal-body .img-wrap .img-item {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #introduction .detail-wrap .img-wrap .img-item, #introduction .modal-body .img-wrap .img-item {
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  #introduction .detail-wrap .img-wrap img, #introduction .modal-body .img-wrap img {
    height: 100%;
  }
}
#introduction .modal {
  display: none;
}
@media screen and (max-width: 768px) {
  #introduction .modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
  }
  #introduction .modal.is-active {
    display: block; /* 表示時にこのクラスを追加 */
    position: fixed;
  }
  #introduction .modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 30px 20px;
    border-radius: 16px;
    width: calc(90% - 40px);
    max-width: 600px;
    position: relative;
  }
  #introduction .close-btn {
    font-weight: 400;
    text-align: center;
    font-size: 15px;
  }
  #introduction .close-btn .icon {
    background-color: #A08216;
    border-radius: 50px;
    width: 30px;
    height: 30px;
    margin: auto;
    color: #ffffff;
    text-align: center;
    line-height: 30px;
  }
  #introduction .close-btn:hover,
  #introduction .close-btn:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }
}

#product {
  margin-top: 100px;
}
#product .wave {
  margin: 200px auto 150px;
}
@media screen and (max-width: 768px) {
  #product .wave {
    width: 90%;
    margin: 50px auto 0;
  }
}
@media screen and (max-width: 768px) {
  #product .container {
    width: 100%;
  }
}
#product .item-wrap .item {
  background-color: #A18316;
  color: #ffffff;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #product .item-wrap .item {
    margin-bottom: 0;
  }
}
#product .item-wrap .item .bar {
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  position: absolute;
  margin-top: 140px;
  z-index: 3;
  opacity: 0;
}
#product .item-wrap .item .bar.fade {
  -webkit-animation: stretch-line-right-to-left 1s 0.3s ease-out forwards;
          animation: stretch-line-right-to-left 1s 0.3s ease-out forwards;
}
@media screen and (max-width: 1024px) {
  #product .item-wrap .item .bar {
    margin-top: 120px;
  }
}
@media screen and (max-width: 768px) {
  #product .item-wrap .item .bar {
    display: none;
  }
}
#product .item-wrap .item .img-wrap {
  width: 40%;
  position: relative;
  z-index: 6;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  #product .item-wrap .item .img-wrap {
    width: 90%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
#product .item-wrap .item .img-wrap.fade {
  -webkit-animation: fade-in 1s 0s ease-out forwards;
          animation: fade-in 1s 0s ease-out forwards;
}
#product .item-wrap .item .img-wrap img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#product .item-wrap .item .img-wrap img.left {
  border-radius: 200px 0 0 0;
}
@media screen and (max-width: 768px) {
  #product .item-wrap .item .img-wrap img.left {
    border-radius: 0 35vw 0 0;
  }
}
#product .item-wrap .item .img-wrap img.right {
  border-radius: 0 200px 0 0;
}
#product .item-wrap .item .txt-wrap {
  width: calc(55% - 60px);
  padding: 30px;
}
@media screen and (max-width: 768px) {
  #product .item-wrap .item .txt-wrap {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 90%;
    margin: 20px auto 10px;
  }
}
#product .item-wrap .item .txt-wrap .inner-title-wrap {
  margin-bottom: 30px;
  padding-left: 70px;
}
@media screen and (max-width: 768px) {
  #product .item-wrap .item .txt-wrap .inner-title-wrap {
    width: calc(100% - 10vw);
    padding-left: 10vw;
    border-bottom: 3px solid #ffffff;
    padding-bottom: 15px;
  }
}
#product .item-wrap .item .txt-wrap .inner-title-wrap.fade .sub {
  -webkit-animation: fade-in 1s 0.7s ease-out forwards;
          animation: fade-in 1s 0.7s ease-out forwards;
}
#product .item-wrap .item .txt-wrap .inner-title-wrap.fade .title {
  -webkit-animation: fade-in 1s 1.2s ease-out forwards;
          animation: fade-in 1s 1.2s ease-out forwards;
}
#product .item-wrap .item .txt-wrap .inner-title-wrap .sub {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.1em;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  #product .item-wrap .item .txt-wrap .inner-title-wrap .sub {
    font-size: max(6vw, 19px);
  }
}
#product .item-wrap .item .txt-wrap .inner-title-wrap .sub .green {
  color: #BFD6A9;
}
#product .item-wrap .item .txt-wrap .inner-title-wrap .sub .green::before {
  position: absolute;
  content: "";
  width: 46px;
  height: 65px;
  background-image: url(../img/pin-green.png);
  background-size: cover;
  background-position: center;
  margin-left: -60px;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  #product .item-wrap .item .txt-wrap .inner-title-wrap .sub .green::before {
    width: 8vw;
    height: 12vw;
    margin-left: -10vw;
    margin-top: 3vw;
  }
}
#product .item-wrap .item .txt-wrap .inner-title-wrap .sub .gray {
  color: #B6B6B6;
}
#product .item-wrap .item .txt-wrap .inner-title-wrap .sub .gray::before {
  position: absolute;
  content: "";
  width: 46px;
  height: 65px;
  background-image: url(../img/pin-gray.png);
  background-size: cover;
  background-position: center;
  margin-left: -60px;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  #product .item-wrap .item .txt-wrap .inner-title-wrap .sub .gray::before {
    width: 8vw;
    height: 12vw;
    margin-left: -10vw;
    margin-top: 3vw;
  }
}
#product .item-wrap .item .txt-wrap .inner-title-wrap .sub .yellow {
  color: #F5D86E;
}
#product .item-wrap .item .txt-wrap .inner-title-wrap .sub .yellow::before {
  position: absolute;
  content: "";
  width: 46px;
  height: 65px;
  background-image: url(../img/pin-yellow.png);
  background-size: cover;
  background-position: center;
  margin-left: -60px;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  #product .item-wrap .item .txt-wrap .inner-title-wrap .sub .yellow::before {
    width: 8vw;
    height: 12vw;
    margin-left: -10vw;
    margin-top: 3vw;
  }
}
#product .item-wrap .item .txt-wrap .inner-title-wrap .title {
  font-family: "Dela Gothic One", sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.1;
  opacity: 0;
}
@media screen and (max-width: 1500px) {
  #product .item-wrap .item .txt-wrap .inner-title-wrap .title {
    font-size: 3.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  #product .item-wrap .item .txt-wrap .inner-title-wrap .title {
    font-size: max(9.5vw, 26px);
  }
}
#product .item-wrap .item .txt-wrap .txt {
  line-height: 2;
  font-size: 20px;
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  #product .item-wrap .item .txt-wrap .txt {
    font-size: 16px;
  }
}
#product .item-wrap .item .txt-wrap .txt.fade {
  -webkit-animation: fade-in 1s 1.8s ease-out forwards;
          animation: fade-in 1s 1.8s ease-out forwards;
}

#search {
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #search {
    padding: 15vh 0 40px;
  }
}
@media screen and (max-width: 480px) {
  #search {
    padding-top: 10vh;
  }
}
#search .character-search-content {
  width: 60%;
}
@media screen and (max-width: 768px) {
  #search .character-search-content {
    width: 100%;
  }
}
#search .character-search-content .intro-text {
  font-size: 24px;
  color: #A18316;
  font-weight: 600;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  #search .character-search-content .intro-text {
    width: 45%;
    font-size: max(5vw, 18px);
  }
}
#search .character-search-content .intro-text.fade {
  -webkit-animation: fade-in 1s 0s ease-out forwards;
          animation: fade-in 1s 0s ease-out forwards;
}
#search .character-search-content .main-title {
  font-size: 92px;
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  line-height: 1;
  color: #A18316;
}
@media screen and (max-width: 1500px) {
  #search .character-search-content .main-title {
    font-size: 6.1333333333vw;
  }
}
@media screen and (max-width: 768px) {
  #search .character-search-content .main-title {
    font-size: 12vw;
  }
}
#search .character-search-content .main-title span {
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  font-size: 50px;
  line-height: 1;
}
@media screen and (max-width: 1500px) {
  #search .character-search-content .main-title span {
    font-size: 3.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  #search .character-search-content .main-title span {
    width: 50%;
    font-size: max(6.5vw, 22px);
  }
}
#search .character-search-content .main-title1 {
  opacity: 0;
}
#search .character-search-content .main-title1.fade {
  -webkit-animation: fade-in 1s 0.5s ease-out forwards;
          animation: fade-in 1s 0.5s ease-out forwards;
}
#search .character-search-content .main-title2 {
  opacity: 0;
}
#search .character-search-content .main-title2.fade {
  -webkit-animation: fade-in 1s 1s ease-out forwards;
          animation: fade-in 1s 1s ease-out forwards;
}
@media screen and (max-width: 768px) {
  #search .character-search-content .search-options {
    margin-top: 15px;
  }
}
#search .character-search-content .search-options .option {
  opacity: 0;
  padding-bottom: 15px;
}
@media screen and (max-width: 768px) {
  #search .character-search-content .search-options .option {
    margin-top: 20px;
  }
}
#search .character-search-content .search-options .option.fade {
  -webkit-animation: fade-in 1s 2.5s ease-out forwards;
          animation: fade-in 1s 2.5s ease-out forwards;
}
#search .character-search-content .search-options .option:last-child .option-text span {
  color: #5FC0CF;
}
#search .character-search-content .search-options .option:last-child .search-button {
  background-image: url(../img/noise-bg-blue.png);
}
#search .character-search-content .search-options .option:first-child .option-text span {
  color: #B93653;
}
#search .character-search-content .search-options .option:first-child .search-button {
  background-image: url(../img/noise-bg-pink.png);
}
#search .character-search-content .search-options .option-text {
  font-size: 24px;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  #search .character-search-content .search-options .option-text {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 480px) {
  #search .character-search-content .search-options .option-text {
    font-size: 5vw;
  }
}
#search .character-search-content .search-options .option-text span {
  display: block;
  font-weight: 600;
}
#search .character-search-content .search-options .option-text .highlight {
  font-size: 84px;
  margin-left: -10px;
  margin-bottom: 0px;
  width: 45px;
  display: inline-block;
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center; /* 回転の中心点を下中央に設定 */
  -webkit-animation: pendulum-swing 2s ease-in-out infinite alternate;
          animation: pendulum-swing 2s ease-in-out infinite alternate;
}
@media screen and (max-width: 1500px) {
  #search .character-search-content .search-options .option-text .highlight {
    width: 5vw;
  }
}
@media screen and (max-width: 480px) {
  #search .character-search-content .search-options .option-text .highlight {
    width: 10vw;
  }
}
#search .character-search-content .search-options .search-button {
  color: #ffffff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 20px 50px;
  font-size: 50px;
  border-radius: 80px;
  margin-top: -10px;
}
@media screen and (max-width: 1200px) {
  #search .character-search-content .search-options .search-button {
    margin-top: -10px;
    font-size: 3.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  #search .character-search-content .search-options .search-button {
    display: block;
    padding: 10px 0;
    width: 100%;
    width: calc(100% - 100px);
    text-align: center;
    margin-top: -1.25vw;
    width: 100%;
    font-size: 5.75vw;
  }
}
@media screen and (max-width: 480px) {
  #search .character-search-content .search-options .search-button {
    margin-top: -10px;
  }
}
#search .character-search-content .search-options .search-button .button-text {
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
}
#search .character-image-container {
  width: 40%;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  #search .character-image-container {
    position: absolute;
    right: 20px;
    margin-top: -20vw;
  }
}
#search .character-image-container.fade {
  -webkit-animation: fade-in 1s 1.5s ease-out forwards;
          animation: fade-in 1s 1.5s ease-out forwards;
}
#search .character-image-container img {
  margin-left: -50px;
}
@media screen and (max-width: 768px) {
  #search .character-image-container img {
    width: 25vw;
    margin-left: -5vw;
  }
}
#search .character-image-container .speech-bubble {
  float: right;
  color: #8B8B8B;
  font-size: 30px;
  font-weight: bold;
}
@media screen and (max-width: 1500px) {
  #search .character-image-container .speech-bubble {
    font-size: max(2vw, 24px);
  }
}
@media screen and (max-width: 768px) {
  #search .character-image-container .speech-bubble {
    font-size: max(4vw, 14px);
  }
}
#search .character-image-container .speech-bubble::before, #search .character-image-container .speech-bubble::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 4px;
  background-color: #8B8B8B;
  border-radius: 10px;
}
#search .character-image-container .speech-bubble::before {
  -webkit-transform: rotate(-75deg);
          transform: rotate(-75deg);
  margin-left: -90px;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  #search .character-image-container .speech-bubble::before {
    margin-left: -12vw;
    width: 15vw;
    margin-top: 7vw;
  }
}
#search .character-image-container .speech-bubble::after {
  width: 70px;
  -webkit-transform: rotate(190deg);
          transform: rotate(190deg);
  margin-top: 70px;
  margin-left: -150px;
}
@media screen and (max-width: 768px) {
  #search .character-image-container .speech-bubble::after {
    margin-left: -22vw;
    width: 12vw;
    margin-top: 10vw;
  }
}

#company {
  background-color: #F9F2D9;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  #company {
    padding: 40px 0;
  }
}
#company .profile-table {
  max-width: 782px;
  margin: 40px auto;
}
#company .map-container {
  max-width: 782px;
  margin: auto;
}
#company .map-container iframe {
  width: 100%;
  border-radius: 30px;
}
#company .map-container iframe .i4ewOd-pzNkMb-haAclf, #company .map-container iframe .nJjxad-bMcfAe-haAclf {
  display: none !important;
}
#company .profile-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #company .profile-row {
    display: block;
    font-size: max(3.5vw, 16px);
  }
}
#company .profile-row .profile-label {
  width: calc(30% - 50px);
  padding: 20px 20px 20px 30px;
  background-color: #ffffff;
  color: #A18316;
  border-radius: 100px 0 0 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  #company .profile-row .profile-label {
    border-radius: 50px;
    padding: 10px 10vw;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 15px auto;
  }
}
#company .profile-row .profile-value {
  width: calc(70% - 50px);
  padding: 20px 20px 20px 30px;
  background-color: #A18316;
  color: #ffffff;
  border-radius: 0 100px 100px 0;
}
@media screen and (max-width: 768px) {
  #company .profile-row .profile-value {
    border-radius: 100px;
    padding: 10px 5vw;
    width: calc(100% - 10vw);
    margin: 15px auto;
    font-weight: 400;
    text-align: center;
  }
}
#company .profile-images img {
  position: absolute;
  width: 150px;
}
@media screen and (max-width: 1300px) {
  #company .profile-images img {
    width: 100px;
  }
}
@media screen and (max-width: 1024px) {
  #company .profile-images img {
    display: none;
  }
}
#company .profile-images img.character-left {
  left: 100px;
  margin-top: 300px;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  #company .profile-images img.character-left {
    left: 20px;
  }
}
#company .profile-images img.character-left.fade {
  -webkit-animation: fade-in 4s ease-out forwards;
          animation: fade-in 4s ease-out forwards;
}
#company .profile-images img.character-right {
  right: 100px;
  margin-top: -500px;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  #company .profile-images img.character-right {
    right: 20px;
  }
}
#company .profile-images img.character-right.fade {
  -webkit-animation: fade-in 4s ease-out forwards;
          animation: fade-in 4s ease-out forwards;
}

#pre-footer {
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(50%, #fff), color-stop(50%, #A18316), to(#A18316));
  background: linear-gradient(180deg, #fff 0%, #fff 50%, #A18316 50%, #A18316 100%);
}
@media screen and (max-width: 1300px) {
  #pre-footer {
    background: #ffffff;
    padding: 20px 0;
  }
}
#pre-footer .l-txt {
  width: 100%;
  position: absolute;
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  margin-top: -400px;
  font-size: 54px;
  color: #A18316;
  z-index: 2;
  left: 0;
  -webkit-text-stroke: 2px #ffffff;
  text-stroke: 2px #ffffff;
  opacity: 0;
}
@media screen and (max-width: 1500px) {
  #pre-footer .l-txt {
    font-size: 3.6vw;
  }
}
@media screen and (max-width: 768px) {
  #pre-footer .l-txt {
    font-size: 8.75vw;
    margin-top: -55vw;
  }
}
#pre-footer .l-txt.fade {
  -webkit-animation: fade-in 1s ease-out forwards;
          animation: fade-in 1s ease-out forwards;
}
#pre-footer .img-wrap {
  z-index: 1;
  width: 250px;
  margin: auto;
  display: block;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  #pre-footer .img-wrap {
    width: 50%;
  }
}
#pre-footer .img-wrap.fade {
  -webkit-animation: fade-in 1s 1s ease-out forwards;
          animation: fade-in 1s 1s ease-out forwards;
}

footer {
  background-color: #A18316;
  padding: 20px 0 40px;
}
footer .inner {
  max-width: 930px;
  margin: 0 auto;
  color: #ffffff;
  font-size: 20px;
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  footer .inner {
    width: 90%;
  }
}
footer .inner.fade {
  -webkit-animation: fade-in 1s 0.5s ease-out forwards;
          animation: fade-in 1s 0.5s ease-out forwards;
}
@media screen and (max-width: 1024px) {
  footer .inner ul {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
@media screen and (max-width: 480px) {
  footer .inner ul {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    max-width: 400px;
  }
}
@media screen and (max-width: 1024px) {
  footer .inner li {
    margin: 10px;
    display: inline-block;
  }
}
@media screen and (max-width: 480px) {
  footer .inner li {
    margin: 10px 4.5vw 10px 0;
  }
}
footer .inner a {
  color: #ffffff;
  font-size: 20px;
}
footer .inner .company-info {
  margin-top: 40px;
  text-align: center;
}
footer .inner .company-info .name {
  font-size: 30px;
  font-weight: bold;
}
footer .inner .company-info .place {
  margin-top: 25px;
}
footer .inner .company-info .place .title {
  font-size: 24px;
  font-weight: bold;
  padding: 5px 30px;
  width: 200px;
  border: 1px solid #ffffff;
  line-height: 1;
  margin: auto;
}
footer .inner .company-info .place .address {
  font-weight: 400;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  footer .inner .company-info .place .address {
    font-size: max(4vw, 16px);
  }
}

.copy-rights {
  padding: 15px 0 5px;
  text-align: center;
}
.copy-rights small {
  text-align: center;
  color: #A18316;
  font-size: 24px;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .copy-rights small {
    font-size: max(4vw, 16px);
  }
}
.copy-rights small.fade {
  -webkit-animation: fade-in 1s 0.5s ease-out forwards;
          animation: fade-in 1s 0.5s ease-out forwards;
}