@charset "UTF-8";
/*************************************************
common-style
*************************************************/
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-margin: 100px;
}

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

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

body {
  font-family: YakuHanJP, "Noto Sans JP", Meiryo, sans-serif;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

/*************************************************
アニメーション
*************************************************/
.fadeUp {
  transform: translateY(0);
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@media screen and (max-width: 599px) {
  .fadeUp {
    animation-duration: 0.3s;
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.delay-time02 {
  animation-delay: 0.2s;
}
@media screen and (max-width: 599px) {
  .delay-time02 {
    animation-delay: 0.1s;
  }
}

.delay-time04 {
  animation-delay: 0.4s;
}
@media screen and (max-width: 599px) {
  .delay-time04 {
    animation-delay: 0.2s;
  }
}

.delay-time06 {
  animation-delay: 0.6s;
}
@media screen and (max-width: 599px) {
  .delay-time06 {
    animation-delay: 0.3s;
  }
}

.delay-time08 {
  animation-delay: 0.8s;
}
@media screen and (max-width: 599px) {
  .delay-time08 {
    animation-delay: 0.4s;
  }
}

.delay-time1 {
  animation-delay: 1s;
}
@media screen and (max-width: 599px) {
  .delay-time1 {
    animation-delay: 0.5s;
  }
}

/* ローディングアニメーション（ロゴ使用） */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.logo-loader {
  width: 180px;
  height: auto;
  position: relative;
  transition: all 0.5s ease;
}

.logo-loader img {
  width: 100%;
  height: auto;
  opacity: 0;
  transform: scale(0.8);
  animation: logoAppear 0.8s ease forwards, logoPulse 1.5s ease infinite 0.8s;
}

.logo-loader::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #0a6e21;
  transform: scaleX(0);
  transform-origin: left;
  animation: lineGrow 1s ease-in-out forwards 0.3s;
}

@keyframes logoAppear {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes logoPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lineGrow {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
/* FVアニメーション */
#fv .fv_01,
#fv .copy_01,
#fv .copy_02,
#fv .newopen_01,
#fv .newopen_02 {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

#fv .fv_01.visible {
  opacity: 1;
  transform: translateY(0);
}

#fv .copy_01.visible,
#fv .copy_02.visible {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInScale 0.8s ease forwards;
}

#fv .newopen_01.visible,
#fv .newopen_02.visible {
  opacity: 1;
  transform: translateY(0);
  animation: pulseEffect 1s ease forwards;
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes pulseEffect {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* セクションアニメーション */
.animate-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.animate-section.animate-visible {
  opacity: 1;
  transform: translateY(0);
}

/* テキストアニメーション */
.animate-text {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-visible .animate-text {
  opacity: 1;
  transform: translateX(0);
}

/* ABOUTセクションのPNG画像（スクロール連動） */
#about .scroll-img {
  opacity: 0;
  transition: opacity 1.2s ease;
  will-change: transform;
}

#about.animate-visible .scroll-img {
  opacity: 1;
}

/* 画像ごとに表示タイミングをずらす */
#about.animate-visible .about_01 {
  transition-delay: 0.1s;
}

#about.animate-visible .about_02 {
  transition-delay: 0.3s;
}

#about.animate-visible .about_03 {
  transition-delay: 0.5s;
}

/* SVG画像のアニメーション */
#about .animate-svg {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

#about.animate-visible .animate-svg {
  opacity: 1;
  transform: scale(1);
  animation: floatEffect 4s ease-in-out infinite;
}

/* SVGの浮遊タイミングをずらす */
#about.animate-visible .about_04 {
  animation-delay: 0.2s;
}

#about.animate-visible .about_05 {
  animation-delay: 0.5s;
}

#about.animate-visible .about_06 {
  animation-delay: 0.8s;
}

/* 浮遊効果アニメーション（SVG用） */
@keyframes floatEffect {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
/* SP表示の場合のスタイル調整 */
@media screen and (max-width: 767px) {
  /* SP表示の場合はスクロール連動効果の代わりに浮遊アニメーションを適用 */
  #about.animate-visible .scroll-img {
    transform: none !important;
    animation: gentleScale 5s ease-in-out infinite;
  }
  #about.animate-visible .about_01 {
    animation-delay: 0.1s;
  }
  #about.animate-visible .about_02 {
    animation-delay: 0.4s;
  }
  #about.animate-visible .about_03 {
    animation-delay: 0.7s;
  }
}
@keyframes gentleScale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}
/* 料金とアクセスのアニメーション */
#price .content,
#access .access_flex {
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
}

#price.animate-visible .content {
  opacity: 1;
  animation: fadeInFromBottom 0.8s ease forwards;
}

#access.animate-visible .access_flex {
  opacity: 1;
  animation: fadeInFromBottom 0.8s ease forwards 0.2s;
}

@keyframes fadeInFromBottom {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* バナーアニメーション */
.banner img {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

#about.animate-visible .banner img {
  opacity: 1;
  transform: translateY(0);
}

.reservation-stop-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  text-align: center;
  background: #473927;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 20px;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 599px) {
  .reservation-stop-bar {
    font-size: 13px;
    padding: 12px 15px;
  }
}

.reservation-stop-notice {
  text-align: center;
  background: #473927;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 20px;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 599px) {
  .reservation-stop-notice {
    font-size: 13px;
    padding: 12px 15px;
  }
}

#contact .reservation-stop-notice {
  color: #fff;
}

/*************************************************
header
*************************************************/
aside {
  position: fixed;
  top: 51px;
  left: 20px;
  width: 200px;
  background-color: #fdfdfd;
  z-index: 999;
  box-shadow: 0px 0px 10px 0px rgba(71, 57, 39, 0.3);
}
aside .logo {
  padding: 20px 20px 18px;
  border-bottom: 1px solid #473927;
  margin-bottom: 30px;
}
aside .logo img {
  display: block;
}
aside ul {
  padding: 20px;
}
aside ul li {
  margin-bottom: 15px;
}
aside ul li a {
  font-family: "Bakbak One", sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #473927;
}
aside ul li a span {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-weight: 700;
  color: rgba(71, 57, 39, 0.7);
}
aside ul .sns a {
  display: flex;
  align-items: center;
  gap: 5px;
}
aside .reservation {
  background: #ffd700;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  color: #473927;
  font-weight: 700;
  padding: 16px 12px;
  font-size: 17px;
}
aside .reservation:hover {
  opacity: 0.7;
}
aside .reservation.is-stopped {
  background: #aaa;
  color: #fff;
  pointer-events: none;
  cursor: default;
}
aside .reservation.is-stopped:hover {
  opacity: 1;
}
aside .tel {
  background: #ff5733;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  color: #fdfdfd;
  font-family: "Bakbak One", sans-serif;
  padding: 16px 12px;
  font-size: 20px;
}
@media screen and (max-width: 599px) {
  aside {
    display: none;
  }
}

.sp-header {
  display: none;
}
@media screen and (max-width: 599px) {
  .sp-header {
    display: flex;
    position: fixed;
    top: 44px;
    left: 0;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: #fdfdfd;
    box-shadow: 0px 0px 10px 0px rgba(71, 57, 39, 0.3);
    z-index: 999;
  }
}

@media screen and (max-width: 599px) {
  .sp-logo {
    max-width: 120px;
  }
  .sp-logo img {
    display: block;
    width: 200px;
  }
}

.menu-btn {
  display: none;
}
@media screen and (max-width: 599px) {
  .menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1000;
  }
  .menu-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #473927;
    transition: all 0.3s ease;
  }
  .menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

.sp-nav {
  display: none;
}
@media screen and (max-width: 599px) {
  .sp-nav {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #fdfdfd;
    box-shadow: -5px 0px 10px 0px rgba(71, 57, 39, 0.1);
    padding-top: 70px;
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 998;
  }
  .sp-nav.active {
    right: 0;
  }
  .sp-nav ul {
    padding: 20px;
  }
  .sp-nav ul li {
    margin-bottom: 15px;
  }
  .sp-nav ul li a {
    font-family: "Bakbak One", sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: #473927;
    text-decoration: none;
    display: block;
  }
  .sp-nav ul li a span {
    display: block;
    font-family: "Noto Sans JP";
    font-size: 12px;
    font-weight: 700;
    color: rgba(71, 57, 39, 0.7);
  }
  .sp-nav ul .sns a {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .sp-nav .reservation {
    background: #ffd700;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    color: #473927;
    font-weight: 700;
    padding: 16px 12px;
    font-size: 16px;
    text-decoration: none;
    position: absolute;
    bottom: 112px;
    left: 0;
  }
  .sp-nav .tel {
    background: #ff5733;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    color: #fdfdfd;
    font-family: "Bakbak One", sans-serif;
    padding: 16px 12px;
    font-size: 20px;
    text-decoration: none;
    position: absolute;
    bottom: 56px;
    left: 0;
  }
  .sp-nav .line {
    position: absolute;
    background: #007a02;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    color: #fdfdfd;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 12px;
    bottom: 0;
    left: 0;
  }
}

.overlay {
  display: none;
}
@media screen and (max-width: 599px) {
  .overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 997;
  }
  .overlay.active {
    visibility: visible;
    opacity: 1;
  }
}

.sp_fixed {
  display: none;
}
@media screen and (max-width: 599px) {
  .sp_fixed {
    position: fixed;
    display: flex;
    bottom: 0;
    z-index: 100;
    width: 100%;
    height: 60px;
  }
  .sp_fixed .reservation {
    background: #ffd700;
    flex-basis: 33.3333333333%;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    color: #473927;
    font-weight: 700;
    font-size: 12px;
  }
  .sp_fixed .tel {
    background: #ff5733;
    flex-basis: 33.3333333333%;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    color: #fdfdfd;
    font-weight: 700;
    font-family: "Bakbak One", sans-serif;
    font-size: 12px;
  }
  .sp_fixed .line {
    background: #007a02;
    flex-basis: 33.3333333333%;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    color: #fdfdfd;
    font-weight: 700;
    font-size: 12px;
  }
}

/*************************************************
footer
*************************************************/
footer small {
  text-align: center;
  display: block;
  font-family: "Bakbak One", sans-serif;
  color: #473927;
  padding: 30px 0;
}

/*************************************************
navi
*************************************************/
/*************************************************
fv
*************************************************/
#fv {
  background-image: url(../images/fv_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 56.25vw;
  height: 59.7222222222vw;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  #fv {
    height: 90vh;
    padding-bottom: 5.1282051282vw;
    padding-top: 94px;
  }
}
#fv .section_inner {
  position: relative;
  width: 100%;
  height: 100%;
}
#fv .section_inner .fv_01 {
  position: absolute;
  width: 85.6944444444vw;
  height: auto;
  right: 20px;
  top: 8.0555555556vw;
}
@media screen and (max-width: 599px) {
  #fv .section_inner .fv_01 {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  #fv .section_inner .fv_01_sp {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 87.1794871795vw;
    height: 128.2051282051vw;
    object-fit: cover;
    object-position: center top;
  }
}
#fv .section_inner .copy_01 {
  position: absolute;
  top: 1.1805555556vw;
  left: 89.7916666667vw;
}
@media screen and (max-width: 599px) {
  #fv .section_inner .copy_01 {
    width: 10.2564102564vw;
    top: 5.1282051282vw;
    right: 5.1282051282vw;
    left: auto;
    z-index: 1;
  }
}
#fv .section_inner .copy_02 {
  position: absolute;
  top: 5.9027777778vw;
  left: 85.2083333333vw;
}
@media screen and (max-width: 599px) {
  #fv .section_inner .copy_02 {
    width: 10.2564102564vw;
    top: 15.3846153846vw;
    right: 20.5128205128vw;
    z-index: 1;
    left: auto;
  }
}
#fv .section_inner .newopen_01 {
  position: absolute;
  top: 10.4166666667vw;
  left: 38.1944444444vw;
}
@media screen and (max-width: 599px) {
  #fv .section_inner .newopen_01 {
    width: 51.2820512821vw;
    top: 74.358974359vw;
    left: 50%;
    transform: translateX(-50%) !important;
    z-index: 1;
  }
}
#fv .section_inner .newopen_02 {
  position: absolute;
  top: 21.3194444444vw;
  left: 23.6111111111vw;
}
@media screen and (max-width: 599px) {
  #fv .section_inner .newopen_02 {
    width: 79.4871794872vw;
    top: 89.7435897436vw;
    left: 50%;
    transform: translateX(-50%) !important;
    z-index: 1;
  }
}
#fv .section_inner .fv_waribiki {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  width: 20.8333333333vw;
  z-index: 1;
}
#fv .section_inner .fv_waribiki img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 599px) {
  #fv .section_inner .fv_waribiki {
    width: 51.2820512821vw;
    bottom: 5.1282051282vw;
    right: 2.5641025641vw;
  }
}

/*************************************************
about
*************************************************/
#about {
  margin-bottom: 100px;
}
#about .section_inner {
  position: relative;
  padding-top: 16.6666666667vw;
  padding-left: 240px;
  padding-bottom: 32.9861111111vw;
}
@media screen and (max-width: 599px) {
  #about .section_inner {
    padding-left: 0;
    padding-top: 61.5384615385vw;
    padding-bottom: 121.7948717949vw;
  }
}
#about .section_inner .about_text {
  margin: 0 auto;
  color: #473927;
  text-orientation: upright;
  writing-mode: vertical-rl;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.4em;
}
@media screen and (max-width: 599px) {
  #about .section_inner .about_text {
    font-size: 15px;
  }
}
#about .section_inner .about_text p {
  margin: 0 1.5em;
  white-space: nowrap;
}
#about .section_inner .about_01 {
  position: absolute;
  display: block;
  top: 2.7777777778vw;
  right: 1.4583333333vw;
}
@media screen and (max-width: 599px) {
  #about .section_inner .about_01 {
    width: 46.1538461538vw;
    top: 7.6923076923vw;
    right: 5.3846153846vw;
  }
}
#about .section_inner .about_02 {
  position: absolute;
  display: block;
  top: 37.6388888889vw;
  left: 17.0138888889vw;
}
@media screen and (max-width: 599px) {
  #about .section_inner .about_02 {
    width: 51.2820512821vw;
    left: 0;
    top: 141.0256410256vw;
  }
}
#about .section_inner .about_03 {
  position: absolute;
  display: block;
  top: 49.375vw;
  right: 5.7638888889vw;
}
@media screen and (max-width: 599px) {
  #about .section_inner .about_03 {
    width: 41.0256410256vw;
    top: 200vw;
    right: 0;
  }
}
#about .section_inner .about_04 {
  position: absolute;
  display: block;
  top: 10.4166666667vw;
  left: 34.8611111111vw;
}
@media screen and (max-width: 599px) {
  #about .section_inner .about_04 {
    width: 20.5128205128vw;
    top: 17.9487179487vw;
    left: 40%;
  }
}
#about .section_inner .about_05 {
  position: absolute;
  display: block;
  top: 29.0972222222vw;
  left: 78.3333333333vw;
}
@media screen and (max-width: 599px) {
  #about .section_inner .about_05 {
    width: 15.3846153846vw;
    top: 212.8205128205vw;
    left: 50%;
  }
}
#about .section_inner .about_06 {
  position: absolute;
  display: block;
  top: 52.2222222222vw;
  left: 32.7777777778vw;
}
@media screen and (max-width: 599px) {
  #about .section_inner .about_06 {
    width: 25.641025641vw;
    top: 166.6666666667vw;
    left: 30%;
  }
}
#about .waribiki {
  padding-left: 23.0555555556vw;
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  #about .waribiki {
    padding-left: 0;
    padding: 0 15px;
  }
}
#about .waribiki {
  text-align: center;
}
#about .waribiki a {
  display: inline-block;
  width: 500px;
}
@media screen and (max-width: 599px) {
  #about .waribiki a {
    width: 100%;
  }
}
#about .waribiki img {
  display: block;
  width: 100%;
}
#about .features {
  padding-left: 23.0555555556vw;
}
@media screen and (max-width: 599px) {
  #about .features {
    padding-left: 0;
  }
}
#about .features h2 img {
  display: block;
  margin: 0 auto;
}
#about .features h2 {
  max-width: 1000px;
  width: 100%;
  color: #ff5733;
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
}
#about .features h2 span {
  font-family: "Bakbak One", sans-serif;
  font-size: 56px;
}
#about .features .features_wrap {
  background-color: rgba(255, 217, 0, 0.2078431373);
  padding: 30px;
  max-width: 1000px;
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  #about .features .features_wrap {
    display: block;
  }
}
#about .features .features_wrap img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 599px) {
  #about .features .features_wrap img {
    margin-bottom: 15px;
  }
}
#about .features .features_wrap .features_text h3 {
  font-size: 20px;
  color: #007a02;
  font-weight: 700;
  padding-bottom: 15px;
  border-bottom: dashed 2px rgba(71, 57, 39, 0.3294117647);
  margin-bottom: 15px;
}
@media screen and (max-width: 599px) {
  #about .features .features_wrap .features_text h3 {
    text-align: center;
  }
}
#about .features .features_wrap .features_text p {
  line-height: 1.7;
  color: #473927;
  font-weight: 600;
}
@media screen and (max-width: 599px) {
  #about .features .features_wrap_reverse {
    display: flex !important;
    flex-direction: column-reverse;
    gap: 15px;
  }
}
#about .banner {
  margin-top: 60px;
  padding-left: 23.0555555556vw;
}
@media screen and (max-width: 599px) {
  #about .banner {
    padding-left: 0;
  }
}
#about .banner.is-stopped {
  display: none;
}
#about .banner a {
  max-width: 1000px;
  width: 100%;
  display: block;
  height: auto;
  overflow: hidden;
}
#about .banner a:hover img {
  transform: scale(1.1);
}
#about .banner a img {
  display: block;
  max-width: 1000px;
  width: 100%;
  transition: transform 0.6s ease;
  transition-duration: 0.6s;
}

.section_title {
  font-family: "Bakbak One", sans-serif;
  font-size: 48px;
  color: #473927;
  text-align: center;
}
.section_title span {
  display: block;
  text-align: center;
  font-size: 14px;
  color: rgba(71, 57, 39, 0.7);
  font-weight: 700;
}

/*************************************************
price
*************************************************/
#price {
  background-image: url(../images/fv_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}
#price .section_inner {
  padding: 60px 0;
  padding-left: 240px;
}
@media screen and (max-width: 599px) {
  #price .section_inner {
    padding-left: 0;
    padding: 60px 15px;
  }
}
#price .section_inner .content {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 60px 0;
}
@media screen and (max-width: 599px) {
  #price .section_inner .content {
    padding: 60px 15px;
  }
}
#price .section_inner .content .price_wrap {
  margin-top: 30px;
}
#price .section_inner .content .price_wrap .price_campaign {
  text-align: center;
  background-color: #fff3cd;
  border: 2px solid #ff5733;
  border-radius: 6px;
  padding: 12px 20px;
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  width: fit-content;
  margin: 0 auto 30px;
}
#price .section_inner .content .price_wrap .price_campaign strong {
  color: #ff5733;
  font-size: 18px;
}
#price .section_inner .content .price_wrap h3 {
  width: fit-content;
  margin: 0 auto 15px;
  text-align: center;
  position: relative;
  color: #007a02;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.6px;
}
#price .section_inner .content .price_wrap h3 span {
  color: #fff;
  display: inline-block;
  margin-bottom: 5px;
  background-color: #ff5733;
  padding: 3px;
}
#price .section_inner .content .price_wrap h3::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: rgba(0, 122, 2, 0.51);
  top: 50%;
  right: -20px;
  transform: translateX(-50%);
}
#price .section_inner .content .price_wrap h3::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: rgba(0, 122, 2, 0.51);
  top: 50%;
  left: -20px;
  transform: translateX(-50%);
}
#price .section_inner .content .price_wrap .plan_menu {
  text-align: center;
  color: #473927;
  max-width: 520px;
  margin: 0 auto 30px;
  font-weight: 700;
  line-height: 1.6;
}
#price .section_inner .content .price_wrap table,
#price .section_inner .content .price_wrap tbody {
  max-width: 720px;
  width: 100%;
  display: block;
  margin: 0 auto 60px;
}
#price .section_inner .content .price_wrap table tr,
#price .section_inner .content .price_wrap tbody tr {
  display: flex;
  gap: 5px;
  margin-bottom: 5px;
}
@media screen and (max-width: 599px) {
  #price .section_inner .content .price_wrap table tr,
  #price .section_inner .content .price_wrap tbody tr {
    display: block;
    margin-bottom: 15px;
  }
}
#price .section_inner .content .price_wrap table tr th,
#price .section_inner .content .price_wrap tbody tr th {
  display: block;
  background: #473927;
  color: #fff;
  line-height: 1.5;
  font-size: 18px;
  text-align: center;
  max-width: 300px;
  width: 100%;
  padding: 20px 20px;
}
@media screen and (max-width: 599px) {
  #price .section_inner .content .price_wrap table tr th,
  #price .section_inner .content .price_wrap tbody tr th {
    max-width: 100%;
  }
}
#price .section_inner .content .price_wrap table tr th span,
#price .section_inner .content .price_wrap tbody tr th span {
  font-size: 16px;
  display: inline-block;
  text-align: center;
  margin-bottom: 5px;
  opacity: 0.8;
}
#price .section_inner .content .price_wrap table tr th .set_menu,
#price .section_inner .content .price_wrap tbody tr th .set_menu {
  font-size: 14px;
  display: block;
  margin: 15px;
  line-height: 1.6;
}
#price .section_inner .content .price_wrap table tr td,
#price .section_inner .content .price_wrap tbody tr td {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(71, 57, 39, 0.2);
  padding: 10px 0;
  gap: 5px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: #473927;
  font-weight: 900;
}
@media screen and (max-width: 599px) {
  #price .section_inner .content .price_wrap table tr td,
  #price .section_inner .content .price_wrap tbody tr td {
    max-width: 100%;
  }
}
#price .section_inner .content .price_wrap table tr td span,
#price .section_inner .content .price_wrap tbody tr td span {
  color: #473927;
  font-family: "Bakbak One";
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.78px;
}

/*************************************************
FAQ
*************************************************/
#faq .section_inner {
  padding: 60px 0;
  padding-left: 240px;
}
@media screen and (max-width: 599px) {
  #faq .section_inner {
    padding-left: 0;
    padding: 60px 0px;
  }
}
#faq .section_inner .content {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 60px 0;
}
#faq .section_inner .content .section_title {
  margin-bottom: 60px;
}
@media screen and (max-width: 599px) {
  #faq .section_inner .content {
    padding: 60px 15px;
  }
}
#faq .section_inner .content .faq_wrap {
  max-width: 800px;
  margin: 0 auto;
}
#faq .section_inner .content .faq_item {
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
#faq .section_inner .content .faq_item.active .faq_answer {
  display: flex;
}
#faq .section_inner .content .faq_item.active .toggle_btn .toggle-line {
  transform: rotate(0);
}
#faq .section_inner .content .faq_item.active .toggle_btn .toggle-line::before {
  transform: rotate(90deg);
  opacity: 0;
}
#faq .section_inner .content .faq_question {
  position: relative;
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background-color: #ff5733;
  color: white;
  cursor: pointer;
}
#faq .section_inner .content .faq_question p {
  flex: 1;
  margin: 0 15px;
  line-height: 1.6;
  font-weight: 700;
}
#faq .section_inner .content .faq_answer {
  display: none;
  padding: 20px;
  background-color: #fff;
  align-items: flex-start;
}
#faq .section_inner .content .faq_answer p {
  flex: 1;
  margin: 0 15px;
  color: #473927;
  line-height: 1.6;
  font-weight: 700;
}
#faq .section_inner .content .faq_answer p a {
  text-decoration: underline;
  color: cornflowerblue;
}
#faq .section_inner .content .faq-icon,
#faq .section_inner .content .faq_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 20px;
  flex-shrink: 0;
}
#faq .section_inner .content .faq_question .faq-icon {
  background-color: white;
  color: #473927;
  font-family: "Bakbak One";
}
#faq .section_inner .content .faq_answer .faq_icon {
  background-color: #473927;
  color: white;
  font-family: "Bakbak One";
}
#faq .section_inner .content .toggle_btn {
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
#faq .section_inner .content .toggle_btn .toggle-line {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  background-color: white;
  transition: transform 0.3s;
  transform: rotate(90deg);
}
#faq .section_inner .content .toggle_btn .toggle-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  transition: transform 0.3s, opacity 0.3s;
  transform: rotate(90deg);
}
#faq .section_inner .content .toggle_btn:focus {
  outline: none;
}
@media (max-width: 768px) {
  #faq .section_inner .content .faq_question,
  #faq .section_inner .content .faq_answer {
    padding: 15px;
  }
  #faq .section_inner .content .faq-icon,
  #faq .section_inner .content .faq_icon {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
}

/*************************************************
アクセス
*************************************************/
#access {
  background: #473927;
}
#access .section_inner {
  padding: 60px 0;
  padding-left: 240px;
}
@media screen and (max-width: 599px) {
  #access .section_inner {
    padding: 60px 15px;
  }
}
#access .section_inner .section_title {
  color: #fff;
  margin-bottom: 60px;
}
#access .section_inner .section_title span {
  color: rgba(253, 253, 253, 0.7);
}
#access .section_inner .access_flex {
  display: flex;
  gap: 50px;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 599px) {
  #access .section_inner .access_flex {
    display: block;
  }
}
@media screen and (max-width: 599px) {
  #access .section_inner .access_flex .gmap {
    margin-bottom: 30px;
  }
}
#access .section_inner .access_flex .gmap iframe {
  width: 550px;
  height: 420px;
}
@media screen and (max-width: 599px) {
  #access .section_inner .access_flex .gmap iframe {
    width: 100%;
    height: 300px;
  }
}
#access .section_inner .access_flex table,
#access .section_inner .access_flex tbody {
  display: block;
  color: #fff;
}
#access .section_inner .access_flex table tr,
#access .section_inner .access_flex tbody tr {
  display: flex;
  gap: 60px;
  padding: 15px 0;
  border-bottom: 1px solid #fff;
}
#access .section_inner .access_flex table tr th,
#access .section_inner .access_flex tbody tr th {
  display: block;
  width: 82px;
}
#access .section_inner .access_flex table tr td,
#access .section_inner .access_flex tbody tr td {
  font-weight: 700;
  line-height: 1.6;
  font-size: 15px;
}

/*************************************************
スライド
*************************************************/
#slide {
  width: 100%;
  overflow: hidden;
  margin: 50px 0;
  position: relative;
}
#slide ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
#slide .slick-track {
  display: flex;
  align-items: flex-start;
}
#slide .slick-slide {
  margin: 0 15px;
  height: auto;
}
#slide .slick-slide:nth-child(even) {
  padding-top: 30px;
}
#slide .slick-slide img {
  display: block;
  max-width: 100%;
  height: auto;
}
#slide .slick-arrow {
  display: none !important;
}
#slide .slick-dots {
  display: none !important;
}

/*************************************************
フォーム
*************************************************/
#contact {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  background-color: #fff;
}
#contact .section_inner {
  padding: 60px 0;
  padding-left: 240px;
}
@media screen and (max-width: 599px) {
  #contact .section_inner {
    padding: 60px 15px;
  }
}
#contact .section_inner .section_title {
  margin-bottom: 60px;
}
#contact p {
  margin-bottom: 25px;
  color: #666;
  font-size: 15px;
  text-align: center;
}
#contact .formTable {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 25px;
}
#contact .formTable tr {
  border-bottom: 1px solid #eee;
}
#contact .formTable th {
  padding: 20px 0;
  text-align: left;
  vertical-align: top;
  font-weight: bold;
  color: #333;
  font-size: 15px;
  position: relative;
  display: flex;
  align-items: flex-start;
}
#contact .formTable th:after {
  content: "";
  display: block;
  width: 10px;
  height: 100%;
}
#contact .formTable td {
  padding: 15px 0;
  width: 70%;
}
#contact .formTable td select,
#contact .formTable td input[type=text],
#contact .formTable td textarea,
#contact .formTable td input[type=file] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 15px;
  color: #333;
  background-color: #fafafa;
}
#contact .formTable td select:focus,
#contact .formTable td input[type=text]:focus,
#contact .formTable td textarea:focus,
#contact .formTable td input[type=file]:focus {
  border-color: #888;
  outline: none;
  background-color: #fff;
}
#contact .formTable td textarea {
  resize: vertical;
  min-height: 120px;
}
#contact .formTable td input[type=radio],
#contact .formTable td input[type=checkbox] {
  margin-right: 8px;
}
#contact .formTable td label {
  margin-right: 20px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
#contact .required {
  display: inline-block;
  background-color: #ff5733;
  color: white;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 8px;
  font-weight: normal;
}
#contact p:last-child {
  text-align: center;
  margin-top: 30px;
}
#contact p:last-child input[type=submit],
#contact p:last-child input[type=reset] {
  padding: 12px 35px;
  margin: 0 10px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
}
#contact p:last-child input[type=submit]:hover,
#contact p:last-child input[type=reset]:hover {
  opacity: 0.9;
}
#contact p:last-child input[type=submit]:active,
#contact p:last-child input[type=reset]:active {
  transform: translateY(1px);
}
#contact p:last-child input[type=submit] {
  background-color: #ff5733;
  color: white;
  font-weight: 600;
}
#contact p:last-child input[type=reset] {
  background-color: #f2f2f2;
  color: #666;
}
#contact ::placeholder {
  color: #aaa;
}

@media screen and (max-width: 768px) {
  #formWrap {
    padding: 20px 15px;
  }
  #formWrap .formTable th,
  #formWrap .formTable td {
    display: block;
    width: 100%;
    padding: 10px 0;
  }
  #formWrap .formTable th {
    padding-bottom: 5px;
  }
  #formWrap .formTable td {
    padding-top: 5px;
    padding-bottom: 15px;
  }
}
#formWrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  background-color: #fff;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
}
#formWrap h3 {
  font-size: 28px;
  color: #333;
  text-align: center;
  margin-bottom: 25px;
  font-weight: 600;
}
#formWrap p {
  text-align: center;
  margin-bottom: 30px;
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}
#formWrap .formTable {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}
#formWrap .formTable tr {
  border-bottom: 1px solid #eee;
}
#formWrap .formTable th {
  padding: 20px 15px;
  text-align: left;
  font-weight: normal;
  color: #333;
  background-color: #f9f9f9;
  vertical-align: top;
}
#formWrap .formTable td {
  padding: 20px 15px;
  line-height: 1.6;
}
#formWrap .error_messe {
  color: #ff5733;
  font-weight: bold;
  margin: 5px 0;
  padding: 5px;
  background-color: rgba(231, 76, 60, 0.1);
  border-radius: 4px;
}
#formWrap p:last-child {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
#formWrap p:last-child input[type=submit],
#formWrap p:last-child input[type=button] {
  padding: 12px 30px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}
#formWrap p:last-child input[type=submit]:hover,
#formWrap p:last-child input[type=button]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#formWrap p:last-child input[type=submit]:active,
#formWrap p:last-child input[type=button]:active {
  transform: translateY(0);
}
#formWrap p:last-child input[type=submit] {
  background-color: #ff5733;
  color: white;
  font-weight: 600;
}
#formWrap p:last-child input[type=submit]::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 100%;
  height: 100%;
  background-color: #ff2d00;
  z-index: -1;
  transition: all 0.2s ease;
}
#formWrap p:last-child input[type=submit]:hover::before {
  top: 7px;
  left: 7px;
}
#formWrap p:last-child input[type=button] {
  background-color: #f2f2f2;
  color: #666;
}
#formWrap p:last-child input[type=button]::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 100%;
  height: 100%;
  background-color: rgb(216.5, 216.5, 216.5);
  z-index: -1;
  transition: all 0.2s ease;
}
#formWrap p:last-child input[type=button]:hover::before {
  top: 7px;
  left: 7px;
}

@media screen and (max-width: 768px) {
  #formWrap {
    padding: 20px 15px;
  }
  #formWrap h3 {
    font-size: 24px;
  }
  #formWrap .formTable th,
  #formWrap .formTable td {
    display: block;
    width: 100%;
  }
  #formWrap .formTable th {
    padding: 15px 10px 5px;
    background-color: transparent;
    border-bottom: none;
  }
  #formWrap .formTable td {
    padding: 5px 10px 15px;
  }
  #formWrap p:last-child {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  #formWrap p:last-child input[type=submit],
  #formWrap p:last-child input[type=button] {
    width: 80%;
    padding: 15px;
  }
}
#thanks .container {
  max-width: 800px;
  margin: 60px auto;
  padding: 40px 30px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}
#thanks h1 {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
}
#thanks .complete-icon {
  margin: 20px auto 30px;
  width: 80px;
  height: 80px;
  background-color: #ff5733;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
#thanks .complete-icon::before {
  content: "";
  width: 30px;
  height: 15px;
  border-left: 4px solid #fff;
  border-bottom: 4px solid #fff;
  transform: rotate(-45deg);
  position: relative;
  top: -5px;
}
#thanks p {
  font-size: 16px;
  color: #666;
  margin-bottom: 25px;
}
#thanks .message {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 4px;
  margin: 30px 0;
  text-align: left;
}
#thanks .message p {
  margin-bottom: 15px;
}
#thanks .message p:last-child {
  margin-bottom: 0;
}
#thanks .button {
  display: inline-block;
  padding: 12px 35px;
  background-color: #ff5733;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  margin-top: 20px;
  position: relative;
  transition: all 0.2s;
}
#thanks .button::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  background-color: #c0392b;
  z-index: -1;
  border-radius: 4px;
}
#thanks .button:hover {
  opacity: 0.9;
}
#thanks .button:active {
  transform: translateY(1px);
}
@media screen and (max-width: 768px) {
  #thanks .container {
    margin: 30px auto;
    padding: 25px 20px;
  }
  #thanks h1 {
    font-size: 24px;
  }
  #thanks .complete-icon {
    width: 70px;
    height: 70px;
  }
  #thanks .button {
    display: block;
    width: 80%;
    margin: 20px auto 0;
    padding: 15px;
  }
}