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

.ie_ObjectFit {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  scroll-behavior: smooth;
  font-family: YakuHanMP, "Shippori Mincho", "Hiragino Mincho ProN", "Noto Serif JP", "Yu Mincho", YuMincho, serif;
  min-height: 100dvh;
  letter-spacing: 0.1em;
  color: #333333;
}

.en {
  font-family: "EB Garamond", serif;
  text-transform: uppercase;
  font-size: 12px;
}

.inner__contents {
  max-width: 1080px;
  margin-inline: auto;
  padding: 120px 0;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 1120px) {
  .inner__contents {
    padding: 120px 20px;
  }
}
@media screen and (max-width: 768px) {
  .inner__contents {
    padding: 80px 20px;
  }
}

.underpage__inner__contents {
  max-width: 1080px;
  margin-inline: auto;
  padding: 120px 0;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 1120px) {
  .underpage__inner__contents {
    padding: 120px 20px;
  }
}
@media screen and (max-width: 768px) {
  .underpage__inner__contents {
    padding: 80px 20px;
  }
}

h2 {
  font-size: clamp(24px, 2.2222222222vw, 32px);
}

h3 {
  font-size: clamp(18px, 1.6666666667vw, 24px);
}

h4 {
  font-size: clamp(16px, 1.25vw, 18px);
}

p {
  font-size: clamp(15px, 1.1111111111vw, 16px);
}

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

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

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.obj-fit img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.title_wrap .title {
  color: #fff;
  font-size: clamp(24px, 2.2222222222vw, 32px);
  letter-spacing: 0.15em;
  padding-bottom: 16px;
}
.title_wrap .en {
  color: #fff;
}

.btn {
  width: 160px;
  align-items: center;
  padding-bottom: 16px;
  position: relative;
  z-index: 4;
  /* 下線の疑似要素 */
}
@media screen and (max-width: 768px) {
  .btn {
    width: 130px;
    padding-bottom: 12px;
  }
}
.btn a {
  font-size: clamp(13px, 0.9722222222vw, 14px);
  letter-spacing: 0.05em;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.btn a .btn_arrow {
  display: inline-block;
  background: url(../images/arrow.svg) center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 3px;
  transition: transform 0.3s ease; /* アニメーションを滑らかに */
}
@media screen and (max-width: 768px) {
  .btn a .btn_arrow {
    width: 16px;
    height: 2px;
  }
}
.btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.5px;
  background-color: #fff;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.btn:hover::after {
  transform: scaleX(0);
  transform-origin: right; /* 右から左へ消える */
  transition: transform 0s; /* 即時変更 */
  /* すぐに左から右へ現れる */
  animation: lineAnimate 0.3s ease forwards;
}
@keyframes lineAnimate {
  from {
    transform: scaleX(0);
    transform-origin: left;
  }
  to {
    transform: scaleX(1);
    transform-origin: left;
  }
}
.btn:hover .btn_arrow {
  transform: translateX(5px);
}

.external_btn {
  width: 160px;
  align-items: center;
  padding-bottom: 16px;
  position: relative;
  margin: 0 0 0 auto;
}
.external_btn a {
  color: #333333;
}
.external_btn a .eternal_arrow {
  display: inline-block;
  background: url(../images/arrow_black.svg) center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 3px;
  transition: transform 0.3s ease; /* アニメーションを滑らかに */
  transform: rotate(-30deg); /* 矢印を30度回転 */
}
.external_btn::after {
  background-color: #333333;
}
.external_btn:hover .eternal_arrow {
  transform: rotate(-30deg);
}

.section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.bg-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
@media screen and (max-width: 768px) {
  .bg-image {
    background-attachment: scroll;
  }
}

.fade-in {
  opacity: 0;
  transition: opacity 0.4s ease-out;
}

.fade-in.is-inview {
  opacity: 1;
  transition-delay: 0.4s;
}

section {
  margin: 0;
  padding: 0;
  line-height: 1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-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;
}

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

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

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

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

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

.u-align--center {
  text-align: center;
}

/*************************************************
header
*************************************************/
.header {
  position: fixed;
  z-index: 100;
  width: 100%;
  top: 0;
  left: 0;
}
.header .header__inner {
  display: flex;
  display: -webkit-flex; /* Safari対応 */
  align-items: center;
  -webkit-align-items: center; /* Safari対応 */
  justify-content: space-between;
  -webkit-justify-content: space-between; /* Safari対応 */
  padding: 11px 50px;
}
@media screen and (max-width: 768px) {
  .header .header__inner {
    padding: 6px 20px;
  }
}
.header .header__inner .logo {
  position: relative;
  z-index: 101;
  width: 110px;
  height: auto;
  flex-shrink: 0; /* ロゴが縮まないように */
  -webkit-flex-shrink: 0; /* Safari対応 */
}
.header .header__inner .logo a {
  transition: all 0.3s;
  display: block; /* インライン要素の問題を回避 */
}
.header .header__inner .logo a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .header .header__inner .logo {
    width: 90px;
  }
}
.header .header__inner .nav {
  display: flex;
  display: -webkit-flex; /* Safari対応 */
  align-items: center; /* ナビゲーションも中央揃え */
  -webkit-align-items: center; /* Safari対応 */
  gap: 48px;
}
@media screen and (max-width: 768px) {
  .header .header__inner .nav {
    display: none;
  }
}
.header .header__inner .nav body.home .drawer-icon.white {
  color: #333333 !important;
}
.header .header__inner .nav li {
  font-size: 14px;
  position: relative;
  margin: 0 20px;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .header .header__inner .nav li {
    font-size: 13px;
  }
}
.header .header__inner .nav li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #333333;
}
.header .header__inner .nav li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background-color: #333333;
  transition: width 0.3s ease;
}
.header .header__inner .nav li a:hover::after {
  width: 100%;
}
.header .header__inner .nav li a:active::after {
  width: 100%;
}
.header .header__inner .nav li a.tapped::after {
  width: 100%;
}
.header .header__inner .nav li .submenu {
  position: absolute;
  top: 40px;
  left: -30px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.header .header__inner .nav li .submenu ul {
  list-style: none;
  padding: 10px 0;
  margin: 0;
  background-color: rgba(255, 255, 255, 0.5);
}
.header .header__inner .nav li .submenu ul li a {
  display: inline-block;
  padding: 10px 0;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s;
  white-space: nowrap;
  color: #333333;
}
.header .header__inner .nav li .submenu ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 1px;
  background-color: #333333;
  transition: width 0.3s ease;
}
.header .header__inner .nav li .submenu ul li a:hover::after {
  width: 100%;
}
.header .header__inner .nav li .submenu ul li a:active::after {
  width: 100%;
}
.header .header__inner .nav li .submenu ul li a.tapped::after {
  width: 100%;
}
.header .header__inner .nav li:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header.white-bg {
  background-color: rgba(255, 255, 255, 0.5); /* スクロール後の透明度70%の白背景 */
}

.header.transparent-bg {
  background-color: transparent; /* 初期状態（透明） */
}

/* 下層ページのFV：白文字（デフォルト） */
body.home .header.transparent-bg .nav li,
body.front-page .header.transparent-bg .nav li {
  color: #333333;
}
body.home .header.transparent-bg .nav li a,
body.front-page .header.transparent-bg .nav li a {
  color: #333333;
}
body.home .header.transparent-bg .nav li a::after,
body.front-page .header.transparent-bg .nav li a::after {
  background-color: #333333;
}

body:not(.home):not(.front-page) .header.transparent-bg .nav li {
  color: #fff;
}
body:not(.home):not(.front-page) .header.transparent-bg .nav li a {
  color: #fff;
}
body:not(.home):not(.front-page) .header.transparent-bg .nav li a::after {
  background-color: #fff;
}
body:not(.home):not(.front-page) .header.transparent-bg .nav li .submenu li {
  color: #333333;
}
body:not(.home):not(.front-page) .header.transparent-bg .nav li .submenu li a {
  color: #333333;
}
body:not(.home):not(.front-page) .header.transparent-bg .nav li .submenu li a::after {
  background-color: #333333;
}

/* 全ページ共通：FV通過後は黒文字 */
.header.white-bg nav a {
  color: #333333;
}

/* 下層ページ用のスタイル追加 */
.header.subpage {
  /* 下層ページでのヘッダー背景スタイルがあれば */
  /* サブメニューのスタイルも調整 */
}
.header.subpage .nav li,
.header.subpage .nav li a {
  color: #fff; /* ナビゲーションリンクを白色に */
}
.header.subpage .nav li::after,
.header.subpage .nav li a::after {
  background-color: #fff; /* アンダーラインも白色に */
}
.header.subpage .submenu ul li a {
  color: #333333; /* サブメニューのリンクも白色に */
}
.header.subpage .submenu ul li a::after {
  background-color: #333333; /* サブメニューのアンダーラインも白色に */
}

/* 下層ページでスクロール後の背景が白になった場合のテキスト色対応 */
.header.subpage.white-bg .nav li,
.header.subpage.white-bg .nav li a {
  color: #333333; /* スクロール後は元の色に戻す */
}
.header.subpage.white-bg .nav li::after,
.header.subpage.white-bg .nav li a::after {
  background-color: #333333;
}
.header.subpage.white-bg .submenu ul li a {
  color: #333333;
}
.header.subpage.white-bg .submenu ul li a::after {
  background-color: #333333;
}

/*============================
header__icon.drawer-icon
============================*/
.header__icon-area {
  display: none;
  flex-shrink: 0; /* 縮まないように */
  -webkit-flex-shrink: 0; /* Safari対応 */
}
@media screen and (max-width: 768px) {
  .header__icon-area {
    width: 40px;
    height: 40px;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    align-self: center; /* 自分自身を中央揃え */
    -webkit-align-self: center; /* Safari対応 */
  }
}

.drawer-icon {
  position: fixed;
  width: 24px;
  height: 14px;
  z-index: 999;
}
.drawer-icon.is-checked .drawer-icon-bar:nth-child(1), .drawer-icon.is-checked .drawer-icon-bar:nth-child(3) {
  top: 0px;
  left: 3px;
}
.drawer-icon.is-checked .drawer-icon-bar:nth-child(1) {
  transform: rotate(40deg);
}
.drawer-icon.is-checked .drawer-icon-bar:nth-child(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon-bar:nth-child(3) {
  transform: rotate(-40deg);
}

.drawer-icon-bar {
  position: absolute;
  width: 24px;
  height: 1px;
  transition: top 0.4s, transform 0.4s;
  background: #333333;
}
.drawer-icon-bar:nth-child(1) {
  top: 0;
}
.drawer-icon-bar:nth-child(2) {
  width: 16px;
  top: 7px;
}
.drawer-icon-bar:nth-child(3) {
  top: 14px;
}

/* 白にしたいときのクラス */
.drawer-icon.white .drawer-icon-bar {
  background-color: #fff;
}

.drawer-icon.is-checked .drawer-icon-bar {
  background-color: #333333;
}

body.home .drawer-icon.white .drawer-icon-bar {
  background-color: #333333;
}

.drawer-content {
  display: none;
}
@media screen and (max-width: 768px) {
  .drawer-content {
    display: block;
    position: fixed;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    top: 0;
    left: 0;
    color: #333333;
    background-color: #ffffff;
    transform: translateX(-100%);
    transition: transform 0.5s ease;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 120px;
    z-index: 100;
  }
}
.drawer-content.is-checked {
  transform: translateX(0);
}

.drawer-content__menu {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  text-align: left;
  padding-inline: 46px;
}

.drawer-menu__lists {
  margin-top: 16px;
}

.drawer-menu__list {
  padding-block: 24px;
  border-bottom: 1px solid #c0bfbf;
  font-size: 14px;
}
.drawer-menu__list a {
  font-size: 14px;
}

.drawer-menu__link {
  display: block;
}

.drawer-menu__link-text,
.drawer-menu__subitem-link-text {
  color: #333333;
  font-weight: 500;
  letter-spacing: 0.8px;
}

.drawer-menu__sublist {
  margin-top: 24px;
}
.drawer-menu__sublist a {
  font-size: 14px;
}

.drawer-icon-bar {
  position: absolute;
  width: 24px;
  height: 1px;
  transition: top 0.4s, transform 0.4s;
  background: #333333;
}
.drawer-icon-bar:nth-child(1) {
  top: 0;
}
.drawer-icon-bar:nth-child(2) {
  width: 16px;
  top: 7px;
}
.drawer-icon-bar:nth-child(3) {
  top: 14px;
}

/*************************************************
footer
*************************************************/
.footer {
  position: relative;
  overflow: hidden;
}
.footer::before {
  position: absolute;
  content: "";
  background: url(../images/footer_bg.png) center center;
  background-size: cover;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.footer::after {
  position: absolute;
  content: "";
  background: url(../images/line.png) center center;
  background-size: cover;
  background-repeat: no-repeat;
  bottom: 0;
  right: 0;
  width: 31.25vw;
  max-width: 450px;
  min-width: 225px;
  height: 35.4166666667vw;
  max-height: 510px;
  min-height: 255px;
  z-index: 2;
  /* 新しいブラーアニメーション設定 */
  opacity: 0;
  filter: blur(8px);
  animation-name: flower-blur-rise;
  animation-duration: 1.5s;
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
  animation-delay: 1s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  will-change: opacity, filter, transform;
}

/* 花のための新しいキーフレーム - ブラーから浮かび上がる */
@keyframes flower-blur-rise {
  0% {
    opacity: 0;
    filter: blur(8px);
  }
  40% {
    opacity: 0.7;
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 200px 0 80px 0;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    padding: 120px 0 40px 0;
  }
}
.footer__inner .footer__logo {
  width: 200px;
  height: auto;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .footer__inner .footer__logo {
    width: 140px;
  }
}
.footer__inner .footer-nav .nav {
  display: flex;
  gap: 80px;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .footer__inner .footer-nav .nav {
    gap: 32px;
    margin-bottom: 40px;
    flex-direction: column;
  }
}
@media screen and (max-width: 400px) {
  .footer__inner .footer-nav .nav {
    gap: 20px;
  }
}
.footer__inner .footer-nav .nav li {
  font-size: 14px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer__inner .footer-nav .nav li {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  .footer__inner .footer-nav .nav li:last-child {
    margin-top: -10px;
  }
}
.footer__inner .footer-nav .nav li.footer-menu-group {
  cursor: pointer;
}
.footer__inner .footer-nav .nav li.footer-menu-group .menu-item-text {
  position: relative;
  margin-bottom: 16px;
  display: block;
}
@media screen and (max-width: 768px) {
  .footer__inner .footer-nav .nav li.footer-menu-group .menu-item-text {
    margin-bottom: 12px;
  }
}
.footer__inner .footer-nav .nav li.footer-menu-group .menu-item-text::after {
  display: none;
}
.footer__inner .footer-nav .nav li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #333333;
}
.footer__inner .footer-nav .nav li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background-color: #333333;
  transition: width 0.3s ease;
}
.footer__inner .footer-nav .nav li a:hover::after {
  width: 100%;
}
.footer__inner .footer-nav .nav li a:active::after {
  width: 100%;
}
.footer__inner .footer-nav .nav li a.tapped::after {
  width: 100%;
}
.footer__inner .footer-nav .nav li .footer-submenu {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  margin-top: 8px;
}
.footer__inner .footer-nav .nav li .footer-submenu ul {
  list-style: none;
  margin: 0;
}
.footer__inner .footer-nav .nav li .footer-submenu ul li a {
  display: inline-block;
  padding: 10px 0;
  color: #333333;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s;
  white-space: nowrap;
}
.footer__inner .footer-nav .nav li .footer-submenu ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 1px;
  background-color: #333333;
  transition: width 0.3s ease;
}
.footer__inner .footer-nav .nav li .footer-submenu ul li a:hover::after {
  width: 100%;
}
.footer__inner .footer-nav .nav li .footer-submenu ul li a:active::after {
  width: 100%;
}
.footer__inner .footer-nav .nav li .footer-submenu ul li a.tapped::after {
  width: 100%;
}
.footer__inner .copy {
  font-size: 12px;
}
.footer__inner .top-btn {
  position: absolute;
  width: 75px;
  height: 75px;
  border-radius: 999px;
  border: 1px solid #333333;
  z-index: 4;
  bottom: 80px;
  right: 50px;
  display: flex;
  justify-content: center;
  align-items: center; /* ボタン中央に配置 */
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .footer__inner .top-btn {
    width: 40px;
    height: 40px;
    top: 60px;
    right: 20px;
    bottom: initial;
  }
}
.footer__inner .top-btn span {
  display: block; /* spanをブロック要素として扱い、サイズを明示的に設定 */
  background: url(../images/top_arrow.svg) no-repeat;
  background-size: contain; /* 画像が要素に収まるように調整 */
  width: 18px;
  height: 18px;
  background-position: center; /* 中央に配置 */
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .footer__inner .top-btn span {
    width: 12px;
    height: 12px;
  }
}
.footer__inner .top-btn:hover span {
  transform: translateY(-5px); /* 上に5px移動 */
}

/*************************************************
top
*************************************************/
.circle1, .circle2 {
  z-index: 2;
}

.fv::after {
  z-index: 1;
}

.fv__copy {
  z-index: 5;
}

.flower {
  z-index: 6;
}

.restaurant .logo_wrap::after {
  z-index: 4;
}

/* circle1とcircle2のアニメーション */
@keyframes circleAppear {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.circle1 {
  position: fixed;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  left: -15%;
  width: 33.3333333333vw;
  height: auto;
  /* アニメーション設定 */
  opacity: 0;
  will-change: opacity, transform;
  animation: circleAppear 1.5s ease-out forwards;
  transition: opacity 4s cubic-bezier(0.86, 0, 0.07, 1);
}
@media screen and (max-width: 768px) {
  .circle1 {
    width: 71.7948717949vw;
    height: auto;
    left: -20%;
  }
}

.circle2 {
  position: fixed;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  left: 5%;
  width: 24.3055555556vw;
  height: auto;
  /* アニメーション設定 */
  opacity: 0;
  will-change: opacity, transform;
  animation: circleAppear 1.5s ease-out forwards;
  animation-delay: 0.7s; /* circle1の後に表示 */
  transition: opacity 4s cubic-bezier(0.86, 0, 0.07, 1);
}
@media screen and (max-width: 768px) {
  .circle2 {
    width: 53.8461538462vw;
    height: auto;
    left: 15%;
  }
}

/* スクロール時のクラス - JavaScriptで追加 */
.scrolling .circle1,
.scrolling .circle2 {
  opacity: 0.6 !important; /* スクロール時の透明度 */
  transition: opacity 0.8s ease-in; /* スクロール開始時は素早く薄くする */
}
@media screen and (max-width: 768px) {
  .scrolling .circle1,
  .scrolling .circle2 {
    opacity: 0.4 !important; /* スクロール時の透明度 */
    transition: opacity 0.8s ease-in; /* スクロール開始時は素早く薄くする */
  }
}

.fv-mvv-container {
  position: relative;
  overflow: hidden;
}

/* 1. アニメーションをリセットして新しく定義 */
@keyframes singleBlurToFocus {
  0% {
    filter: blur(8px);
    opacity: 0;
  }
  50% {
    filter: blur(4px);
    opacity: 0.5;
  }
  100% {
    filter: blur(0);
    opacity: 1;
  }
}
.fv {
  position: relative;
  overflow-x: hidden;
  margin-bottom: -200px;
  /* 完全に新しい名前のキーフレームを使用 */
  /* 各文字のアニメーション設定 */
}
.fv .fv__inner {
  width: 100%;
  height: 100vh;
  background-color: #fff;
}
.fv .fv__inner::after {
  content: "";
  background: url(../images/fv_bg.jpg) center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  /* 背景アニメーション */
  opacity: 0;
  animation: bgFadeIn 1.2s ease-out forwards;
  animation-delay: 0.3s;
}
@media screen and (max-width: 768px) {
  .fv .fv__inner::after {
    background: url(../images/fv_bg_sp.jpg) center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
@keyframes bgFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fv .fv__copy {
  position: absolute;
  font-size: clamp(28px, 5vw, 58px);
  letter-spacing: 0.3em;
  top: 50%;
  left: 50%;
  width: 100%;
  text-align: center;
  white-space: pre-wrap;
  line-height: 1.8;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 5;
  /* 2. animation-fill-modeを追加して初期状態と最終状態を明示する */
  opacity: 0;
  filter: blur(8px);
  animation-name: singleBlurToFocus; /* 新しいキーフレーム名を使用 */
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-delay: 0.8s;
  animation-fill-mode: both; /* 重要: アニメーション前後の状態を維持 */
  animation-iteration-count: 1; /* 1回のみ実行を明示 */
  will-change: opacity, filter; /* パフォーマンス最適化 */
}
@media screen and (max-width: 768px) {
  .fv .fv__copy {
    letter-spacing: 0.2em;
    left: 20px;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    line-height: 180%;
    text-align: left;
  }
}
.fv .fv__copy rt {
  font-size: clamp(12px, 1.1111111111vw, 16px);
  letter-spacing: 0.2em;
  margin-left: -10px;
  margin-bottom: -10px;
}
@media screen and (max-width: 768px) {
  .fv .fv__copy rt {
    padding-bottom: 2px;
    margin-left: -2px;
  }
}
.fv .char {
  display: inline-block;
  opacity: 0;
  animation: charFadeIn 0.7s forwards;
  animation-play-state: paused; /* 初期状態では停止 */
}
@keyframes charFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.flower {
  width: 30.4861111111vw;
  max-width: 439px;
  height: auto;
  position: absolute;
  top: 3%;
  right: 3%;
  z-index: 6;
  /* アニメーション設定 */
  /* 新しいブラーアニメーション設定 */
  opacity: 0;
  filter: blur(8px);
  animation-name: flower-blur-rise;
  animation-duration: 2.2s;
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
  animation-delay: 1.8s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  will-change: opacity, filter, transform;
}
@media screen and (max-width: 768px) {
  .flower {
    width: 64.1025641026vw;
    height: auto;
    top: 5%;
    right: -15%;
  }
}

/* 花のための新しいキーフレーム - ブラーから浮かび上がる */
@keyframes flower-blur-rise {
  0% {
    opacity: 0;
    filter: blur(8px);
  }
  40% {
    opacity: 0.7;
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}
.mvv {
  position: relative;
  padding-top: 200px;
  overflow: hidden;
}
.mvv .mvv-bg {
  top: 200px;
}
.mvv .mvv-bg .bg-image {
  background: url("../images//mvv_bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
@media screen and (max-width: 768px) {
  .mvv .mvv-bg .bg-image {
    background: url("../images//mvv_sp_bg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
  }
}
.mvv .mvv__text_wrap {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 200px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 840px) {
  .mvv .mvv__text_wrap {
    padding: 200px 20px 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .mvv .mvv__text_wrap {
    padding: 120px 20px 0 20px;
  }
}
.mvv .mvv__text_wrap:last-child {
  padding-bottom: 200px;
}
@media screen and (max-width: 768px) {
  .mvv .mvv__text_wrap:last-child {
    padding-bottom: 120px;
  }
}
.mvv .mvv__text_wrap .en {
  font-family: "EB Garamond", serif;
  font-size: 12px;
  color: #9F8838;
  letter-spacing: 0.1em;
  padding-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .mvv .mvv__text_wrap .en {
    padding-bottom: 32px;
  }
}
.mvv .mvv__text_wrap h3 {
  text-align: center;
  font-size: clamp(18px, 1.6666666667vw, 24px);
  line-height: 200%;
}

.message {
  position: relative;
}
.message::after {
  position: absolute;
  content: "";
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.message .message__wrapper {
  display: flex;
  gap: 105px;
  padding-bottom: 104px;
}
@media screen and (max-width: 1024px) {
  .message .message__wrapper {
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .message .message__wrapper {
    padding-bottom: 80px;
    gap: 20px;
  }
}
.message .message__wrapper .title {
  writing-mode: vertical-rl; /* 縦書き、右から左へ */
  text-orientation: upright; /* 文字を立てる（主に英数字に効果あり） */
  font-size: clamp(24px, 2.2222222222vw, 32px);
  margin: 0 auto; /* 中央揃え */
  letter-spacing: 0.2em;
}

.message__contents {
  position: relative;
  z-index: 2;
}
.message__contents .en {
  color: #9F8838;
  font-size: 12px;
  padding-bottom: 104px;
  text-transform: none;
}
@media screen and (max-width: 768px) {
  .message__contents .en {
    padding-bottom: 56px;
  }
}
.message__contents .message__contents__inner {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .message__contents .message__contents__inner {
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .message__contents .message__contents__inner {
    flex-direction: column;
  }
}
.message__contents .message__contents__inner .img_wrap {
  width: 428px;
  height: auto;
  aspect-ratio: 107/125;
  flex-shrink: 0;
  position: sticky;
  top: 0;
}
@media screen and (max-width: 768px) {
  .message__contents .message__contents__inner .img_wrap {
    position: static;
  }
}
@media screen and (max-width: 768px) {
  .message__contents .message__contents__inner .img_wrap {
    width: 76.9230769231vw;
    height: auto;
  }
}
.message__contents .message__contents__inner .text_wrapper {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
@media screen and (max-width: 768px) {
  .message__contents .message__contents__inner .text_wrapper {
    gap: 32px;
  }
}
.message__contents .message__contents__inner .text_wrapper p {
  padding-bottom: 16px;
  font-size: clamp(14px, 1.1111111111vw, 16px);
  line-height: 200%;
}
@media screen and (max-width: 768px) {
  .message__contents .message__contents__inner .text_wrapper p {
    padding-bottom: 0;
  }
}
.message__contents .message__contents__inner .text_wrapper .name_wrapper {
  text-align: right;
}
.message__contents .message__contents__inner .text_wrapper .name_wrapper .position {
  font-size: 12px;
  padding-bottom: 12px;
}
.message__contents .message__contents__inner .text_wrapper .name_wrapper .name_wrap {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
}
.message__contents .message__contents__inner .text_wrapper .name_wrapper .name_wrap .en_name {
  color: #333;
  margin-right: 12px;
  padding: 0;
}
.message__contents .message__contents__inner .text_wrapper .name_wrapper .name_wrap .name {
  width: 160px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .message__contents .message__contents__inner .text_wrapper .name_wrapper .name_wrap .name {
    width: 120px;
  }
}

.greeting {
  text-align: center;
  font-size: clamp(20px, 2.2222222222vw, 32px);
  line-height: 200%;
}

section.restaurant,
section.educational,
section.business {
  position: relative;
  min-height: 100vh;
  z-index: 2; /* 各セクションのz-indexを1に設定して、重なる順序を制御 */
  overflow: hidden;
}

.parallax-img {
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* 背景がスクロールしても固定される */
  height: 100%; /* セクションの高さをビューポートの高さに設定 */
  width: 100%; /* 横幅を100%に設定 */
  z-index: 1; /* 背景画像をセクションより下に配置 */
}

.business__contents__wrap {
  position: relative;
  z-index: 2; /* コンテンツが背景の上に来るように */
  height: auto; /* コンテンツの高さに合わせて調整 */
}

.restaurant .restaurant-bg .bg-image {
  background: url("../images/restaurant-business_bg.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
@media screen and (max-width: 768px) {
  .restaurant .restaurant-bg .bg-image {
    background: url("../images/restaurant business_sp_bg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
  }
}
.restaurant .business__contents {
  color: #fff;
  text-align: center;
}
.restaurant .text_wrap {
  display: flex;
  flex-direction: column;
  width: 30%;
  gap: 56px;
  padding-bottom: 80px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .restaurant .text_wrap {
    width: 100%;
    gap: 32px;
    padding-bottom: 40px;
  }
}
.restaurant .text_wrap p {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 180%;
  color: #fff;
}
.restaurant .logo_wrapper {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .restaurant .logo_wrapper {
    margin: 0 20px;
  }
}
.restaurant .logo_wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
}
.restaurant .logo_wrap::after {
  position: absolute;
  content: "";
  background: url(../images/logo_bg.png) center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 380px;
  height: 380px;
  top: -10px;
  left: -140px;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .restaurant .logo_wrap::after {
    width: 260px;
    height: 260px;
    top: -10px;
    left: -80px;
  }
}
@media screen and (max-width: 768px) {
  .restaurant .logo_wrap::after {
    width: 240px;
    height: 240px;
    top: -10px;
    left: -80px;
  }
}
.restaurant .logo_wrap .yukari_logo {
  width: 139px;
  height: auto;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .restaurant .logo_wrap .yukari_logo {
    width: 100px;
    height: auto;
  }
}
.restaurant .logo_wrap .iori_logo {
  width: 110px;
  height: auto;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .restaurant .logo_wrap .iori_logo {
    width: 80px;
    height: auto;
  }
}

.educational .educational-bg .bg-image {
  background: url("../images/educational-business_bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
@media screen and (max-width: 768px) {
  .educational .educational-bg .bg-image {
    background: url("../images/educational-business_sp_bg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
  }
}
.educational .text_wrap {
  display: flex;
  flex-direction: column;
  width: 30%;
  gap: 56px;
  padding-bottom: 80px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .educational .text_wrap {
    width: 100%;
    gap: 32px;
  }
}
.educational .text_wrap p {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 180%;
  color: #fff;
}

.business .business-bg .bg-image {
  background: url("../images/other-business_bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
@media screen and (max-width: 768px) {
  .business .business-bg .bg-image {
    background: url("../images/other-business_sp_bg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
  }
}
.business .contents_wrap {
  padding: 200px 0;
}
@media screen and (max-width: 768px) {
  .business .contents_wrap {
    padding: 100px 0;
  }
}
.business .business__inner__contents {
  max-width: 800px;
  margin: 0 auto;
}
.business .business__contents {
  margin-top: 56px;
  font-size: clamp(16px, 1.3888888889vw, 20px);
  color: #fff;
  padding-bottom: 24px;
  border-bottom: 1px solid #fff;
  /* Safari用の矢印を非表示にする */
  /* 他のブラウザを含めたクロスブラウザ対応 */
  /* IEでも非表示にする（必要な場合） */
}
@media screen and (max-width: 768px) {
  .business .business__contents {
    margin-top: 40px;
    padding-bottom: 16px;
  }
}
.business .business__contents summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  position: relative;
  line-height: 160%;
}
.business .business__contents summary .icon {
  position: relative;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  flex-shrink: 0;
}
.business .business__contents summary .icon::before, .business .business__contents summary .icon::after {
  content: "";
  position: absolute;
  background-color: #fff;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.business .business__contents summary .icon::before {
  width: 1px;
  height: 16px;
}
@media screen and (max-width: 768px) {
  .business .business__contents summary .icon::before {
    height: 13px;
  }
}
.business .business__contents summary .icon::after {
  width: 16px;
  height: 1px;
}
@media screen and (max-width: 768px) {
  .business .business__contents summary .icon::after {
    width: 13px;
  }
}
.business .business__contents summary::-webkit-details-marker {
  display: none;
}
.business .business__contents summary {
  list-style: none;
}
.business .business__contents summary::-ms-expand {
  display: none;
}
.business .business__contents .business__desc {
  margin-top: 24px;
  line-height: 180%;
}
.business details[open] .icon::before {
  display: none;
}

/*************************************************
会社概要
*************************************************/
.under__circle1 {
  position: fixed;
  z-index: 2;
  top: 25px;
  left: -10%;
  width: 33.3333333333vw;
  max-width: 480px;
  height: auto;
  transition: opacity 4s cubic-bezier(0.86, 0, 0.07, 1);
}
@media screen and (max-width: 768px) {
  .under__circle1 {
    width: 71.7948717949vw;
    height: auto;
    left: -20%;
  }
}

.under__circle2 {
  position: fixed;
  z-index: 2;
  top: 100px;
  left: 10%;
  width: 24.3055555556vw;
  max-width: 350px;
  height: auto;
  transition: opacity 4s cubic-bezier(0.86, 0, 0.07, 1);
}
@media screen and (max-width: 768px) {
  .under__circle2 {
    width: 53.8461538462vw;
    height: auto;
    top: 60px;
    left: 15%;
  }
}

@media screen and (max-width: 768px) {
  .scrolling .under__circle1,
  .scrolling .under__circle2 {
    opacity: 0.4 !important;
  }
}

.underpage_mv {
  width: 100%;
  height: 50vh;
  position: relative;
  margin-bottom: 0;
}
.underpage_mv::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: url(../images/company-mv.jpg) no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .underpage_mv::after {
    background: url(../images/company_mv_sp.jpg) no-repeat center center;
    background-size: cover;
  }
}
.underpage_mv .pagetitle__wrap {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  left: 10%;
}
.underpage_mv .pagetitle__wrap .pagetitle {
  font-size: clamp(28px, 2.7777777778vw, 40px);
  letter-spacing: 0.05em;
  padding-bottom: 24px;
  color: #fff;
}
.underpage_mv .pagetitle__wrap .pagetitle__en {
  color: #fff;
  text-transform: uppercase;
}

.contents__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .contents__wrapper {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .contents__wrapper .company__title__wrap {
    padding-bottom: 32px;
  }
}
.contents__wrapper .company__title__wrap .vertical {
  font-size: 32px;
  font-weight: 500;
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
  padding-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .contents__wrapper .company__title__wrap .vertical {
    font-size: 24px;
    padding-bottom: 16px;
  }
}
.contents__wrapper .company__title__wrap .company__title__en {
  color: #9F8838;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .contents__wrapper .company__title__wrap .company__title__en {
    font-size: 10px;
  }
}
.contents__wrapper table {
  max-width: 860px;
  width: 100%;
  border-collapse: collapse;
}
.contents__wrapper th, .contents__wrapper td {
  padding: 32px 0;
  text-align: left;
  border-bottom: 1px solid #c0c0c0;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .contents__wrapper th, .contents__wrapper td {
    padding: 24px 0;
    font-size: 14px;
  }
}
.contents__wrapper tr:first-child th,
.contents__wrapper tr:first-child td {
  padding-top: 0;
}
.contents__wrapper th {
  width: 30%;
  font-weight: 500;
}

/*************************************************
飲食事業
*************************************************/
.restaurant_mv::after {
  background: url(../images/restrant-business-mv.jpg) no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .restaurant_mv::after {
    background: url(../images/restaurant_mv_sp.jpg) center center;
    background-size: cover;
  }
}

.restaurant__contents {
  padding: 120px 0 0 0;
}
@media screen and (max-width: 1120px) {
  .restaurant__contents {
    padding: 120px 20px 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .restaurant__contents {
    padding: 80px 20px 0 20px;
  }
}

.page__heading {
  text-align: center;
  line-height: 180%;
}
@media screen and (max-width: 768px) {
  .page__heading {
    text-align: left;
  }
}

.restaurant__wrap {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  width: calc(100% + (100vw - 1080px) / 2);
  padding-top: 120px;
  padding-bottom: 100px;
  position: relative;
}
@media screen and (max-width: 1120px) {
  .restaurant__wrap {
    width: 100%;
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .restaurant__wrap {
    flex-direction: column-reverse;
    padding-top: 80px;
  }
}
.restaurant__wrap .img__wrap {
  width: 67%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .restaurant__wrap .img__wrap {
    width: 100%;
    aspect-ratio: 16/9;
  }
}
.restaurant__wrap .img__wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% + (100vw - 1080px) / 2); /* 画像を右に伸ばす */
  height: 120%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right center;
     object-position: right center;
  max-width: none;
}
@media screen and (max-width: 1120px) {
  .restaurant__wrap .img__wrap img {
    width: 100%;
  }
}
.restaurant__wrap .text__wrapper {
  width: 33%;
}
@media screen and (max-width: 768px) {
  .restaurant__wrap .text__wrapper {
    width: 100%;
  }
}
.restaurant__wrap .restaurant__name {
  padding-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .restaurant__wrap .restaurant__name {
    padding-bottom: 32px;
  }
}
.restaurant__wrap .restaurant__name__en {
  color: #9F8838;
  padding-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .restaurant__wrap .restaurant__name__en {
    padding-bottom: 16px;
  }
}
.restaurant__wrap h3 {
  font-size: 32px;
  font-weight: 500;
  line-height: 180%;
}
@media screen and (max-width: 768px) {
  .restaurant__wrap h3 {
    font-size: 24px;
  }
}
.restaurant__wrap .text__wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .restaurant__wrap .text__wrap {
    padding-bottom: 16px;
  }
}
.restaurant__wrap .text__wrap h4, .restaurant__wrap .text__wrap p {
  line-height: 180%;
}
.restaurant__wrap .address p {
  line-height: 180%;
  padding-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .restaurant__wrap .address p {
    padding-bottom: 32px;
  }
}

.restaurant__wrap.reverse {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  width: 100%;
  padding-top: 120px;
  padding-bottom: 100px;
  flex-direction: row-reverse;
  /* テキストと画像の基本サイズ */
}
@media screen and (max-width: 1120px) {
  .restaurant__wrap.reverse {
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .restaurant__wrap.reverse {
    flex-direction: column-reverse;
    padding-top: 80px;
  }
}
.restaurant__wrap.reverse .text__wrapper {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .restaurant__wrap.reverse .text__wrapper {
    width: 100%;
  }
}
.restaurant__wrap.reverse .img__wrap {
  width: calc(60% + (100vw - 1080px) / 2); /* 修正 - 親要素自体を左端まで伸ばす */
  margin-left: calc((100vw - 1080px) / -2);
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  flex-shrink: 0;
}
@media screen and (max-width: 1120px) {
  .restaurant__wrap.reverse .img__wrap {
    width: 100%;
    margin-left: 0;
    aspect-ratio: 16/9;
  }
}
@media screen and (max-width: 768px) {
  .restaurant__wrap.reverse .img__wrap {
    aspect-ratio: 16/9;
  }
}
.restaurant__wrap.reverse img {
  width: calc(100% + (100vw - 1080px) / 2);
  max-width: none;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left center;
     object-position: left center;
}
@media screen and (max-width: 1120px) {
  .restaurant__wrap.reverse img {
    width: 100%;
    margin-left: 0;
  }
}

.full__width__img {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: 300px;
}
@media screen and (max-width: 768px) {
  .full__width__img {
    height: 240px;
  }
}
.full__width__img img {
  height: 130%;
}

.full__width__img:last-child {
  margin-bottom: 0;
}

/*************************************************
教育事業
*************************************************/
.educational_mv::after {
  background: url(../images/educational-business-mv.jpg) no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .educational_mv::after {
    background: url(../images/educational_mv_sp.jpg) center center;
    background-size: cover;
  }
}

.coming-soon {
  text-align: center;
  font-weight: 500;
  font-size: 40px;
  letter-spacing: 0.05em;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .coming-soon {
    font-size: 28px;
    padding: 0;
  }
}

/*************************************************
contact
*************************************************/
.p-contact__lead {
  font-size: clamp(14px, 3.5897435897vw, 16px);
  line-height: 170%;
  letter-spacing: 0.8px;
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-contact__lead {
    letter-spacing: 0.7px;
    max-width: 100%;
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  .p-contact__lead .hidden-md {
    display: none;
  }
}

.p-contact__form {
  margin-top: 40px;
  max-width: 820px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 23px;
}
@media screen and (max-width: 768px) {
  .p-contact__form {
    margin-top: 32px;
    max-width: 100%;
  }
}

.contact-form__head {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .contact-form__head {
    gap: 8px;
    margin-bottom: 8px;
  }
}

.contact-form__item {
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .contact-form__item {
    margin-bottom: 8px;
  }
}

.contact-form__name {
  font-size: clamp(14px, 3.5897435897vw, 16px);
  font-weight: 400;
  letter-spacing: 0.9px;
}
@media screen and (max-width: 768px) {
  .contact-form__name {
    letter-spacing: 0.8px;
  }
}

.contact-form__label {
  color: #ffffff;
  text-align: center;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.6px;
  padding: 3px 9px;
  background: #9F8838;
}

.contact-form__body--select {
  position: relative;
  max-width: 400px;
}
@media screen and (max-width: 768px) {
  .contact-form__body--select {
    max-width: 290px;
  }
}
.contact-form__body--select:after {
  content: "";
  position: absolute;
  z-index: 3;
  right: 16px;
  width: 16px;
  height: 16px;
  background: url(../images/select-arrow.svg);
  background-size: contain;
  top: 14px;
}
@media screen and (max-width: 768px) {
  .contact-form__body--select:after {
    right: 14px;
    top: 12px;
  }
}

input[type=radio] {
  inline-size: 20px;
  block-size: 20px;
  accent-color: #333333;
  margin-right: 8px;
}

.wpcf7-radio {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

.wpcf7-list-item {
  margin: initial !important;
}
.wpcf7-list-item label {
  display: flex;
  align-items: center;
}

.wpcf7-list-item-label {
  margin-right: 32px;
}

.contact-form__input-text {
  padding-left: 35px;
  position: relative;
  font-size: clamp(14px, 3.5897435897vw, 16px);
  letter-spacing: 0.8px;
}
@media screen and (max-width: 768px) {
  .contact-form__input-text {
    letter-spacing: 0.7px;
    white-space: nowrap;
  }
}
.contact-form__input-text::before, .contact-form__input-text::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}
.contact-form__input-text::before {
  width: 20px;
  height: 20px;
  border: 1px solid #333333;
  left: 0;
  transition: border-color 0.3s;
}
.contact-form__input-text::after {
  width: 12px;
  height: 12px;
  background: #333333;
  left: 4px;
  opacity: 0;
}

.contact-form__input {
  padding: 12px 10px;
  border: 1px solid #b9b9b9;
  background: #fff;
  width: 100%;
  height: 44px;
  font-size: clamp(14px, 3.5897435897vw, 16px);
}
.contact-form__input::-moz-placeholder {
  color: #ccc;
  font-size: 14px;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 0.56px;
  padding: 12px 13px 16px;
}
.contact-form__input::placeholder {
  color: #ccc;
  font-size: 14px;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 0.56px;
  padding: 12px 13px 16px;
}
.contact-form__input:focus {
  outline: #9F8838 auto 1px;
}
@media screen and (max-width: 768px) {
  .contact-form__input {
    padding: 11px 10px;
    height: 40px;
  }
}
.contact-form__input--select {
  padding: 0px 10px;
  max-width: 400px;
}
@media screen and (max-width: 768px) {
  .contact-form__input--select {
    max-width: 290px;
  }
}

.contact-form__select {
  padding: 8px 10px;
  border: 1px solid #b9b9b9;
  background: #fff;
  width: 100%;
  border-radius: 8px;
  height: 44px;
  /* 矢印の設定 */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M3 6 L8 11 L13 6' stroke='%23444' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
  padding-right: 40px;
}
.contact-form__select option {
  font-size: 14px;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 0.56px;
  padding: 12px 13px 16px;
}
.contact-form__select:focus {
  outline: #9F8838 auto 1px;
}
@media screen and (max-width: 768px) {
  .contact-form__select {
    height: 40px;
    font-size: 14px;
  }
}

.wpcf7-textarea {
  height: 226px;
  border: 1px solid #b9b9b9;
  background: #fff;
  width: 100%;
  padding: 10px;
  font-size: clamp(14px, 3.5897435897vw, 16px);
  line-height: 180%;
}
.wpcf7-textarea:focus {
  outline: #9F8838 auto 1px;
}

.contact-form__btn-wrapper {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .contact-form__btn-wrapper {
    margin-top: 32px;
  }
}

.contact-form__btn {
  text-align: center;
  color: #fff;
  background-color: #9F8838;
  padding: 16px 96px;
  font-size: 16px;
  transition: all 0.3s;
  display: inline-block;
}
.contact-form__btn::before {
  background: url(../images/icon-btn-blue.svg) no-repeat center center/contain;
}
.contact-form__btn:hover {
  opacity: 0.6;
  border: none;
}

/* 送信ボタンのスタイル */
.contact-form__btn input[type=submit] {
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: none;
}

.wpcf7-spinner {
  display: none;
}

.rec {
  text-align: center;
  margin-top: 24px;
  font-family: "EB Garamond", serif;
  font-size: 14px;
  color: #777;
  letter-spacing: 0.05em;
  line-height: 140%;
}
@media screen and (max-width: 768px) {
  .rec {
    font-size: 12px;
  }
}
.rec a {
  text-decoration: underline;
}

.grecaptcha-badge {
  visibility: hidden;
}

.wpcf7-not-valid-tip {
  font-size: 14px;
  color: #f20505;
}
@media screen and (max-width: 768px) {
  .wpcf7-not-valid-tip {
    font-size: 12px;
  }
}

/*************************************************
thanks
*************************************************/
.p-thanks__lead {
  font-size: 38px;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-thanks__lead {
    font-size: 24px;
  }
}

.p-thanks__text {
  font-size: 16px;
  padding-top: 40px;
  line-height: 200%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-thanks__text {
    font-size: 15px;
    padding-top: 32px;
    text-align: left;
  }
}/*# sourceMappingURL=style.css.map */