@charset "utf-8";

:root {
  --text-color: #110c38;
  --black: #000000;
  --white: #fff;
  --red: #d24a2c;
  --yellow: #edd76b;
}

html,
body {
  font-family: "shippori-mincho-b1", serif;
  font-weight: 500;
  font-style: normal;
  font-optical-sizing: auto;
  line-height: 2.4;
  font-style: normal;
  letter-spacing: 0.1em;
  overflow-x: clip;
  background-color: #fff;
  color: #110c38;
  word-break: auto-phrase;
}

.bg-fix {
  background-image: url("../images/washi-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "shippori-mincho-b1", serif;
  font-weight: 500;
  font-style: normal;
}

a {
  color: var(--text-color);
  text-decoration: none !important;
}

a:hover {
  color: #d24a2c;
  cursor: pointer;
}

/* フォント */

.ship-m {
  font-family: shippori-mincho-b1, serif;
  font-weight: 500;
  font-style: normal;
}

.ship-b {
  font-family: shippori-mincho-b1, serif;
  font-weight: 700;
  font-style: normal;
}

.noto {
  font-family: noto-sans-jp, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.fc-white {
  color: #fff !important;
}

.fc-red {
  color: var(--red) !important;
}

.fc-yellow {
  color: var(--yellow) !important;
}

.v-text {
  writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
}

.text-shadow {
  text-shadow: 2px 2px 5px black;
}

.text-shadow-white {
  text-shadow: 2px 2px 5px white;
}

.has-shadow {
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.15);
}

/* 背景 */
.bg-white {
  background-color: #fff;
}

.bg-yellow {
  background-color: var(--yellow);
}

.bg-red {
  background-color: var(--red);
}

.bg-navy {
  background-color: #110c38;
}

/*罫線*/
.b-white {
  border: 1px solid #fff;
}

.b-black {
  border: 1px solid #000;
}

.b-red {
  border: 1px solid var(--red);
}

.bl-black {
  border-left: 1px solid #000;
}

.br-black {
  border-right: 1px solid #000;
}

.bb-black {
  border-bottom: 1px solid #000;
}

.bt-black {
  border-bottom: 1px solid #000;
}

/* ボタン */
.button {
  position: relative;
  display: inline-flex !important;
  width: auto;
  height: 45px;
  padding: 12px 0;
  justify-content: start;
  align-items: center;
  transition: all 0.3s;
}

.button-w {
  position: relative;
  display: inline-flex !important;
  width: fit-content;
  height: 45px;
  justify-content: start;
  align-items: center;
  padding: 12px;
  transition: all 0.3s;
  border: solid 1px #fff;
  padding-right: 58px;
}

.button::after {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../images/arrow.svg);
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  position: absolute;
  top: 50%;
  right: -36px;
  transform: translateY(-50%);
  transition: all 0.3s;
}

.button-w::after {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../images/arrow.svg);
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  transition: all 0.3s;
}

.button:hover::after {
  right: -44px;
}

.button-w:hover::after {
  right: 8px;
}

.button p {
  font-family: "shippori-mincho-b1", serif;
  color: var(--text-color) !important;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(0.875rem, 0.774rem + 0.5vw, 1.25rem);
  margin: 0 !important;
  padding: 0 !important;
  letter-spacing: 0.2rem;
  white-space: nowrap;
}

.button-w p {
  font-family: "shippori-mincho-b1", serif;
  font-weight: 500;
  font-style: normal;
  color: var(--white) !important;
  font-size: 14px;
  margin: 0 !important;
  padding: 0 !important;
  letter-spacing: 0.2rem;
  white-space: nowrap;
}

.button.is-free {
  width: auto;
  padding: 0 36px;
}

.button-con {
  transition: all 0.3s;
  background-color: #fff;
}

.button-con:hover {
  cursor: pointer;
  background-color: #edd76b;
}

/* ナビ */

.a-nav-menu {
  display: none;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 900;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  background-image: url("../images/header-bg2.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.a-nav-menu.edit {
  display: flex;
  opacity: 1;
}

.a-nav-menu .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #0f0539;
  width: 100vw;
  padding: 3rem 0;
}

.a-nav-menu .box .link {
  display: flex;
  flex-direction: row-reverse;
  gap: 0.6rem;
  margin-bottom: 2rem;
  align-items: start;
  justify-content: center;
}

.a-nav-menu .box .link a p {
  color: #fff;
  transition: all 0.3s ease;
  font-family: shippori-mincho-b1, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(0.75rem, 0.532rem + 1.09vw, 1.563rem);
  writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
}

.a-nav-menu .box .link a:hover p {
  color: var(--red);
}

.a-nav-menu .logo {
  width: 75px;
}

@media (min-width: 768px) {
  .a-nav-menu .box .link {
    gap: 1.2rem;
  }
}

.top-logo {
  max-width: 180px;
}

.sp-top-logo {
  max-width: 120px;
  height: auto;
}

.nav-logo {
  max-width: 160px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100px; /* ← 固定値に変更 */
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding: 20px 0 0 20px;
  z-index: 900;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease; /* ← 直接秒数指定 */
}

/* 表示状態 */
.site-header.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.header-logo {
  max-width: 80px;
  width: 100%;
}

.header-menu-box {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background-color: #0f0539;
  transition: all 0.5s;
}

.header-menu-box a p {
  font-family: shippori-mincho-b1, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(0.625rem, 0.558rem + 0.34vw, 0.875rem);
  color: #fff !important;
  transition: all 0.5s;
  white-space: nowrap;
}

.header-menu-box a:hover p {
  color: #d24a2c !important;
  cursor: pointer;
}

.header-inst {
  width: 24px;
  transition: all 0.5s;
}

.header-inst2 {
  width: 24px;
  transition: all 0.5s;
  display: flex;
}

.header-inst:hover,
.header-inst2:hover {
  scale: 1.1;
}

.header-button {
  background-image: url("../images/header-button-bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
  padding: 14px;
  color: #fff;
  transition: all 0.5s;
}

.header-button .s {
  font-family: "shippori-mincho-b1", serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(0.625rem, 0.558rem + 0.34vw, 0.875rem);
  line-height: 1.5;
}

.header-button .l {
  font-family: "shippori-mincho-b1", serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(1rem, 0.899rem + 0.5vw, 1.375rem);
  line-height: 1.5;
  white-space: nowrap;
}

.header-button:hover {
  background-image: url("../images/header-button-bg-h.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff !important;
}

@media (min-width: 768px) {
  .site-header {
    padding: 30px 20px 0 20px;
  }
}

@media (min-width: 992px) {
  .header-logo {
    max-width: 100px;
    min-width: 80px;
    width: 100%;
  }

  .nav-logo {
    max-width: 160px;
  }

  .header-inst2 {
    width: 34px;
  }
}

@media (min-width: 1200px) {
  .header-menu-box {
    padding: 20px 130px 20px 20px;
  }
}

.reserve-button {
  position: fixed;
  bottom: 30px;
  right: 0;
  width: 142px;
  transition: all 0.3s;
  transform-origin: right;
  z-index: 700;
}

.reserve-button:hover {
  transform: scale(1.05);
}

.a-burger {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  border: 1px solid #110c38;
  background-color: #fff;
  border-radius: 40px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  margin: 0;
  padding: 0;
}

.a-burger div {
  width: 23px;
  height: 2px;
  background-color: #110c38;
  border-radius: 2px;
  position: absolute;
  left: 13px;
  transform-origin: center;
  transition: all 0.3s;
  padding: 0;
  margin: 0;
  min-height: 2px !important;
}

.a-burger div:nth-child(1) {
  top: 18px;
}

.a-burger div:nth-child(2) {
  bottom: 18px;
}

.a-burger.is-active div:nth-child(1) {
  transform: rotate(-45deg);
  top: 23px;
}

.a-burger.is-active div:nth-child(2) {
  transform: rotate(45deg);
  bottom: 23px;
}

@media (min-width: 992px) {
  .a-burger {
    display: none;
  }

  .reserve-button {
    width: 186px;
  }
}

.nav-tel-link {
  max-width: 200px;
}

/* フッター */

.footer-sec1-bg {
  position: sticky;
  top: 0;
  background-image: url("../images/top-sec5-bg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh;
  z-index: 1;
}

.footer-sec1-text {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  color: #fff;
  font-family: shippori-mincho-b1, sans-serif;
  font-weight: 700;
  font-style: normal;
  z-index: 2;
}

.footer-sec1-text h2 {
  font-size: clamp(1.563rem, 1.143rem + 2.1vw, 3.125rem);
  margin: 0 !important;
  padding: 0 !important;
}

.footer-sec1-text p {
  font-size: clamp(0.75rem, 0.616rem + 0.67vw, 1.25rem);
  margin-top: 2rem;
}

.footer-sec1-list {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 12;
}

.footer-sec1-title {
  display: flex;
  align-items: end;
  margin-bottom: 3rem;
}

.footer-sec1-title h2 {
  font-size: clamp(1.25rem, 0.982rem + 1.34vw, 2.25rem);
  font-family: "shippori-mincho-b1", serif;
  font-weight: 500;
  font-style: normal;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--text-color);
}

.footer-sec1-title p {
  display: flex;
  font-size: clamp(0.625rem, 0.558rem + 0.34vw, 0.875rem);
  font-family: "shippori-mincho-b1", serif;
  font-weight: 500;
  font-style: normal;
  color: var(--red) !important;
  margin-left: 1rem;
  line-height: 1.5 !important;
}

.footer-sec1-list div .text {
  font-size: clamp(0.75rem, 0.683rem + 0.34vw, 1rem);
  font-family: "shippori-mincho-b1", serif;
  font-weight: 500;
  font-style: normal;
  line-height: 2.6;
  margin-bottom: 2rem;
  color: var(--text-color);
}

.footer-sec1-bg2 {
  position: absolute; /* 親要素を基準に配置 */
  bottom: 0; /* 親の下端に固定 */
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1; /* 必要に応じて調整 */
  overflow: hidden; /* はみ出し防止 */
}

.footer-sec1-bg2 img {
  display: block;
  width: 100%;
  max-height: 560px;
  height: auto;
  object-fit: cover;
  clip-path: polygon(0 15%, 100% 0, 100% 100%, 0% 100%);
}

.footer-sec1-box {
  background-color: #fff;
  border: solid 1px #000000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem;
}

.footer-sec1-box .text {
  text-align: center;
  font-size: clamp(0.75rem, 0.683rem + 0.34vw, 1rem);
  font-family: "shippori-mincho-b1", serif;
  font-weight: 500;
  font-style: normal;
  line-height: 2.6;
  margin-bottom: 2rem;
  color: var(--text-color);
}

.footer-sec1-title2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer-sec1-title2 h2 {
  font-size: clamp(1.25rem, 0.982rem + 1.34vw, 2.25rem);
  font-family: "shippori-mincho-b1", serif;
  font-weight: 500;
  font-style: normal;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--text-color);
}

.footer-sec1-title2 p {
  display: flex;
  font-size: clamp(0.625rem, 0.558rem + 0.34vw, 0.875rem);
  font-family: "shippori-mincho-b1", serif;
  font-weight: 500;
  font-style: normal;
  color: var(--red) !important;
  margin-top: 1rem;
  line-height: 1.5 !important;
}

.footer-sec2-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-button {
  background-image: url("../images/header-button-bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px;
  color: #fff;
  transition: all 0.5s;
  width: 250px;
}

.footer-button .s {
  font-family: "shippori-mincho-b1", serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(0.75rem, 0.683rem + 0.34vw, 1rem);
  line-height: 1.5;
}

.footer-button .l {
  font-family: "shippori-mincho-b1", serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(1.25rem, 1.082rem + 0.84vw, 1.875rem);
  line-height: 1.5;
  white-space: nowrap;
}

.footer-button:hover {
  background-image: url("../images/header-button-bg-h.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff !important;
}

@media (min-width: 768px) {
  .footer-button {
    width: auto;
  }
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-list a p {
  font-family: "shippori-mincho-b1", serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(0.75rem, 0.683rem + 0.34vw, 1rem);
  line-height: 1.5;
  color: #fff;
  transition: all 0.3s;
}

.footer-list a:hover p {
  color: var(--red) !important;
  cursor: pointer;
}

.foot-logo {
  max-width: 200px;
}

.foot-insta {
  width: 22px;
}

/* News表示 */

/* News表示 画像あり版 */
.news-list .webgene-blog {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.news-list .webgene-item {
  width: 100%;
}

@media (min-width: 768px) {
  .news-list .webgene-item {
    width: 48%;
  }
}

/* ページネーション共通 */
.webgene-pagination {
  width: 100%;
}

.webgene-pagination ul,
.pagelink {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 3rem;
}

.webgene-pagination ul li,
.pagelink p {
  padding: 0 1rem;
}
.webgene-pagination ul li a,
.pagelink p a {
  display: inline-flex !important;
  font-family: "shippori-mincho-b1", serif;
  font-weight: 500;
  font-size: 18px;
  width: 135px;
  height: 50px;
  padding: 15px 22px !important;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s;
}
.webgene-pagination ul li a:hover,
.pagelink p a:hover {
  cursor: pointer;
}

/* Nextボタン */
.webgene-pagination li.next a::after,
.pagelink p.next a::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("../images/arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s;
}
.webgene-pagination ul li.next a:hover::after,
.pagelink p.next a:hover::after {
  transform: translateX(2px);
}

/* Prevボタン */
.webgene-pagination ul li.prev a::before,
.pagelink p.prev a::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("../images/arrow-prev.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s;
}
.webgene-pagination ul li.prev a:hover::before,
.pagelink p.prev a:hover::after {
  transform: translateX(-2px);
}

/* フォーム */
.formInput,
.formTextArea {
  width: 100%;
  padding: 0.5rem;
  border: none;
  border-radius: 0;
  border: 1px solid #cbc3b0;
  background-color: #fffcf5;
  margin-bottom: 2rem;
}

.formTextArea {
  height: 8rem;
}

.formInput:focus,
.formInput:focus-visible,
.formTextArea:focus,
.formTextArea:focus-visible,
.form-button:focus,
.form-button:focus-visible {
  border: 1px solid #cbc3b0;
  background-color: #fffcf5;
}
.zipInput {
  width: 6rem;
}

.requiredText {
  color: var(--red);
  font-size: clamp(0.75rem, 0.616rem + 0.67vw, 1.25rem);
  margin-left: 1rem;
}
.privacyformError {
  padding-top: 25px;
}
@media (min-width: 768px) {
  .privacyformError {
    padding-top: 0;
  }
}
/* ページ共通設定 */

.fv {
  height: 100vh;
  width: 100%;
  position: relative;
}

.fv-sub {
  height: calc(80vh - 64px);
  margin-top: 64px;
}

@media (min-width: 992px) {
  .fv-sub {
    height: calc(80vh - 102px);
    margin-top: 102px;
  }
}

.title-line {
  position: relative;
  display: inline-block; /* テキスト幅に合わせたい場合 */
}

.title-line::after {
  content: "";
  position: absolute;
  bottom: 0; /* 要素の下端に配置 */
  left: 50%; /* 中央から配置開始 */
  transform: translateX(-50%); /* 中央揃え */
  width: 30%; /* 下線の長さ：親要素の30% */
  height: 2px; /* 線の太さ */
  background-color: var(--red); /* 線の色 */
}

/* JS制御用 */

.js-typein {
  visibility: hidden; /* 初期は非表示 */
}

.js-typein[data-typein-ready="1"] {
  visibility: visible; /* wrapChars 実行後に表示 */
}

.typein-char {
  opacity: 0;
  transform: translateY(0.3em);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.typein-char.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* プラシバシーポリシー */
.policy-box {
  overflow-y: scroll;
  height: 400px;
  border-radius: 30px;
}
/* TOP */

.fv-bg-img {
  background-image: url("../images/top-fv-sp.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.fv-logo-top {
  width: 70%;
  max-width: 280px;
}

.fv-title {
  text-shadow: 2px 2px 5px black;
  color: var(--white) !important;
  font-family: "shippori-mincho-b1", serif;
  font-weight: 500;
  font-style: normal;
}

.fv-title h1 {
  font-size: clamp(1.875rem, 1.539rem + 1.68vw, 3.125rem);
}

.fv-title p {
  font-size: clamp(0.938rem, 0.786rem + 0.76vw, 1.5rem);
}

@media (min-width: 768px) {
  .fv-bg-img {
    background-image: url("../images/top-fv.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

.top-sec2-bg {
  background-image: url("../images/top-bg-img1");
  background-position: top center;
  background-size: contain;
  background-repeat: no-repeat;
}

.top-sec2-box {
  padding-top: 220px;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  overflow: hidden;
}

/* メイン画像 */
.image-frame__main {
  position: relative;
  width: 100%;
  margin-top: 50px;
  max-width: 1130px;
}

/* 紺色背景 */
.image-frame__main::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 100%;
  height: 100%;
  background-image: url("../images/bg-navy-texture.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0; /* 背面に */
}

.image-frame__main img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  position: relative;
  z-index: 1; /* 背景より上 */
}

/* テキストを含む白いブロック */
.image-frame__overlay {
  position: absolute;
  top: -90%;
  right: 0%; /* メイン画像の右に少しはみ出すように配置 */
  width: 60%;
  background: #fff;
  padding: 2rem;
  z-index: 2; /* 最前面 */
}

/* テキスト部分の整形 */
.overlay-inner {
  display: flex;
  align-items: flex-start;
}

.overlay-sub {
  writing-mode: vertical-rl;
  font-size: clamp(0.625rem, 0.524rem + 0.5vw, 1rem);
  color: var(--red);
  font-family: "shippori-mincho-b1", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.overlay-title {
  writing-mode: vertical-rl;
  font-size: clamp(1.875rem, 1.372rem + 2.52vw, 3.75rem);
  font-family: "shippori-mincho-b1", serif;
  font-weight: 500;
  font-style: normal;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--text-color);
  letter-spacing: 0.15em;
}

/* メイン画像 */
.image-frame__main2 {
  position: relative;
  width: 100%;
  margin-top: 10px;
  max-width: 1080px;
}

/* 紺色背景 */
.image-frame__main2::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 20px;
  width: 100%;
  height: 100%;
  background-image: url("../images/bg-navy-texture.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0; /* 背面に */
}

.image-frame__main2 img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  position: relative;
  z-index: 1; /* 背景より上 */
}

.image-frame__overlay2 {
  position: relative;
  width: 100%;
  background: #fff;
  padding: 2rem;
  z-index: 2; /* 最前面 */
}

/* テキスト部分の整形 */
.overlay-inner2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.overlay-inner2 h2 {
  font-size: clamp(1.25rem, 0.982rem + 1.34vw, 2.25rem);
  font-family: "shippori-mincho-b1", serif;
  font-weight: 500;
  font-style: normal;
  color: var(--text-color);
  line-height: 2.4 !important;
  letter-spacing: 0.1;
}

.overlay-inner2 p {
  font-size: clamp(0.625rem, 0.524rem + 0.5vw, 1rem);
  color: var(--text-color);
  font-family: "shippori-mincho-b1", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1;
  line-height: 2.6;
}

@media (min-width: 768px) {
  .top-sec2-box {
    padding-top: 400px;
  }

  .image-frame__main {
    width: 90%;
  }

  .image-frame__overlay {
    top: -80%;
    padding: 7rem 6rem;
  }

  .image-frame__main2 {
    width: 90%;
    margin-top: 240px;
  }

  .image-frame__overlay2 {
    position: absolute;
    top: -90%;
    left: 0%;
    width: 90%;
    padding: 4rem;
  }

  .image-frame__main2::before {
    top: 50px;
    left: 50px;
  }
}

@media (min-width: 1200px) {
  .top-sec2-box {
    padding-top: 560px;
  }

  /* メイン画像 */
  .image-frame__main {
    width: 80%;
    margin-top: 240px;
  }

  .image-frame__overlay {
    top: -60%;
    width: 65%;
  }

  .image-frame__main2 {
    position: relative;
    width: 80%;
    margin-top: 240px;
  }

  .image-frame__overlay2 {
    padding: 4rem 4rem 4rem 8rem;
  }
}

.top-sec3-box {
  position: relative;
  width: 100%;
  height: auto;
}

.top-sec3-box::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 0;
  width: 100%;
  height: 90%; /* 帯の高さ */
  background: #110c38;
  transform: skewY(-10deg); /* 平行四辺形化 */
  transform-origin: left top;
}

.top-sec3-box2 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top-sec3-box2 img {
  position: relative;
  width: 80%;
  max-width: 820px;
  z-index: 1;
}

.top-sec3-title {
  position: relative;
  width: 60%;
  background: #fff;
  padding: 3rem;
  z-index: 2;
}

.top-sec3-title div {
  display: flex;
  align-items: flex-start;
}

.top-sec3-title div p {
  writing-mode: vertical-rl;
  font-size: clamp(0.625rem, 0.524rem + 0.5vw, 1rem);
  color: var(--red);
  font-family: "shippori-mincho-b1", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.top-sec3-title div h2 {
  writing-mode: vertical-rl;
  font-size: clamp(1.875rem, 1.372rem + 2.52vw, 3.75rem);
  font-family: "shippori-mincho-b1", serif;
  font-weight: 500;
  font-style: normal;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--text-color);
  letter-spacing: 0.15em;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .top-sec3-box::before {
    top: 15%;
    height: 84%; /* 帯の高さ */
  }

  .top-sec3-box2 {
    flex-direction: row;
  }

  .top-sec3-box2 img {
    position: absolute;
    right: 0;
    width: 85%;
  }

  .top-sec3-title {
    width: 45%;
    padding: 4rem;
  }
}

@media (min-width: 1200px) {
  .top-sec3-box2 img {
    right: 100px;
  }

  .top-sec3-title {
    width: 35%;
    margin-left: 100px;
  }
}

.top-sec3-box3 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: end;
}

.top-sec3-box3::before {
  display: none;
  content: "";
  position: absolute;
  top: -90px;
  left: 0;
  width: 45%;
  height: 40%;
  background-image: url("../images/top-sec3-img2.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}

.top-sec3-box3::after {
  display: none;
  content: "";
  position: absolute;
  bottom: -260px;
  right: 100px;
  width: 75%;
  height: 25%;
  background-image: url("../images/top-sec3-img4.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}

.top-sec3-img {
  display: none;
  position: absolute;
  z-index: 2;
  top: 330px;
  left: -30px;
  width: 40%;
  height: auto;
}

.top-sec3-list {
  background-color: #fff;
  padding: 3rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  position: relative;
  z-index: 3;
}

.top-sec3-title2 {
  display: flex;
  align-items: end;
  margin-bottom: 3rem;
}

.top-sec3-title2 h2 {
  font-size: clamp(1.25rem, 0.982rem + 1.34vw, 2.25rem);
  font-family: "shippori-mincho-b1", serif;
  font-weight: 500;
  font-style: normal;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--text-color);
}

.top-sec3-title2 p {
  display: flex;
  font-size: clamp(0.625rem, 0.558rem + 0.34vw, 0.875rem);
  font-family: "shippori-mincho-b1", serif;
  font-weight: 500;
  font-style: normal;
  color: var(--red) !important;
  margin-left: 1rem;
  line-height: 1.5 !important;
}

.top-sec3-list div .text {
  width: 85%;
  font-size: clamp(0.75rem, 0.683rem + 0.34vw, 1rem);
  font-family: "shippori-mincho-b1", serif;
  font-weight: 500;
  font-style: normal;
  line-height: 2.6;
  margin-bottom: 2rem;
  color: var(--text-color);
}

@media (min-width: 768px) {
  .top-sec3-list {
    width: 75%;
    max-width: 910px;
    padding: 5rem 0 5rem 5rem;
    margin-top: 100px;
  }

  .top-sec3-box3 {
    margin-top: 200px;
    margin-bottom: 200px;
  }

  .top-sec3-box3::before {
    display: inline-block;
    max-width: 716px;
  }

  .top-sec3-box3::after {
    display: inline-block;
    max-width: 1000px;
  }

  .top-sec3-img {
    display: inline-block;
    max-width: 594px;
  }
}

@media (min-width: 1200px) {
  .top-sec3-list {
    margin-right: 100px;
  }

  .top-sec3-box3::before {
    left: 150px;
  }

  .top-sec3-box3::after {
    right: 200px;
  }
}

.top-sec4-img {
  position: absolute;
  top: -30px;
  right: 0;
  width: 90%;
  max-width: 800px;
  z-index: 2;
}

.top-sec4-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90%;
  height: 300px;
  background-image: url("../images/bg-navy-texture.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1; /* 背面に */
}

.top-sec4-img2 {
  position: absolute;
  top: -30px;
  left: 0;
  width: 90%;
  max-width: 800px;
  z-index: 2;
}

.top-sec4-bg2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 90%;
  height: 300px;
  background-image: url("../images/bg-navy-texture.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1; /* 背面に */
}

.top-sec4-list {
  background-color: #fff;
  padding: 3rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 25%;
  margin-bottom: 5%;
  position: relative;
  z-index: 3;
}

.top-sec4-title {
  display: flex;
  align-items: end;
  margin-bottom: 3rem;
}

.top-sec4-title h2 {
  font-size: clamp(1.25rem, 0.982rem + 1.34vw, 2.25rem);
  font-family: "shippori-mincho-b1", serif;
  font-weight: 500;
  font-style: normal;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--text-color);
}

.top-sec4-title p {
  display: flex;
  font-size: clamp(0.625rem, 0.558rem + 0.34vw, 0.875rem);
  font-family: "shippori-mincho-b1", serif;
  font-weight: 500;
  font-style: normal;
  color: var(--red) !important;
  margin-left: 1rem;
  line-height: 1.5 !important;
}

.top-sec4-list div .text,
.farst-sec4-list div .text {
  font-size: clamp(0.75rem, 0.683rem + 0.34vw, 1rem);
  font-family: "shippori-mincho-b1", serif;
  font-weight: 500;
  font-style: normal;
  line-height: 2.6;
  margin-bottom: 2rem;
  color: var(--text-color);
}

@media (min-width: 768px) {
  .top-sec4-img {
    top: 0;
    width: 60%;
  }

  .top-sec4-bg {
    width: 80%;
    height: 450px;
  }

  .top-sec4-img2 {
    position: absolute;
    top: 0;
    width: 60%;
  }

  .top-sec4-bg2 {
    width: 80%;
    height: 450px;
  }

  .top-sec4-list {
    padding: 7rem 5rem;
    width: 70%;
    margin-top: 10%;
    margin-bottom: 5%;
  }
}

/* 初めてのお客様へ */

.fv-logo-sub {
  position: absolute;
  top: 60px;
  right: 10px;
  width: 40%;
  max-width: 260px;
}

.fv-title-sub {
  position: absolute;
  bottom: 70px;
  left: 30px;
  text-shadow: 2px 2px 5px black;
  color: var(--white) !important;
  font-family: "shippori-mincho-b1", serif;
  font-weight: 500;
  font-style: normal;
  display: flex;
  align-items: end;
}

.fv-title-sub h1 {
  writing-mode: vertical-rl;
  font-size: clamp(2.5rem, 1.829rem + 3.36vw, 5rem);
  font-family: "shippori-mincho-b1", serif;
  font-weight: 500;
  font-style: normal;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--white);
  letter-spacing: 0.15em;
}

.fv-title-sub p {
  font-size: clamp(0.875rem, 0.573rem + 1.51vw, 2rem);
  line-height: 1.5;
}

@media (min-width: 768px) {
  .fv-logo-sub {
    right: 50px;
  }

  .fv-title-sub {
    bottom: 100px;
    left: 70px;
  }
}

@media (min-width: 1200px) {
  .fv-logo-sub {
    right: 200px;
  }

  .fv-title-sub {
    left: 200px;
  }
}

.first-sec2-box1 {
  margin-top: 100px;
  margin-bottom: 100px;
}

/* メイン画像 */
.first-sec2-img1 {
  position: relative;
  width: 100%;
  max-width: 950px;
  margin-right: 100px;
}

/* 紺色背景 */
.first-sec2-img1::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 0px;
  width: 80%;
  height: 100%;
  background-image: url("../images/bg-navy-texture.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0; /* 背面に */
}

.first-sec2-img1 img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  position: relative;
  z-index: 1; /* 背景より上 */
}

/* テキストを含む白いブロック */
.first-sec2-title {
  position: absolute;
  top: -36%;
  left: 0%; /* メイン画像の右に少しはみ出すように配置 */
  width: fit-content;
  background: #fff;
  padding: 2rem;
  z-index: 2; /* 最前面 */
}

/* テキスト部分の整形 */
.first-sec2-title .posi {
  display: flex;
  align-items: center;
  justify-content: center;
}

.first-sec2-title .main {
  writing-mode: vertical-rl;
  font-size: clamp(2.5rem, 2.164rem + 1.68vw, 3.75rem);
  color: var(--text-color);
  font-family: "shippori-mincho-b1", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 1.8;
}

.first-sec2-title .sub {
  font-size: clamp(1.25rem, 0.982rem + 1.34vw, 2.25rem);
  font-family: "shippori-mincho-b1", serif;
  font-weight: 500;
  font-style: normal;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--text-color);
  line-height: 2.4;
  letter-spacing: 0.15em;
}

.first-sec2-box2 {
  margin-top: 100px;
  margin-bottom: 40px;
}

.first-sec2-img2 {
  position: relative;
  width: 100%;
}

/* テキストを含む白いブロック */
.first-sec2-title2 {
  position: absolute;
  top: 28%;
  left: 0%; /* メイン画像の右に少しはみ出すように配置 */
  width: 100%;
  background: #fff;
  padding: 3rem;
  z-index: 2; /* 最前面 */
}

/* テキスト部分の整形 */
.first-sec2-title2 .posi {
  display: flex;
  align-items: center;
  justify-content: center;
}

.first-sec2-title2 .sub {
  font-size: clamp(0.875rem, 0.607rem + 1.34vw, 1.875rem);
  font-family: "shippori-mincho-b1", serif;
  font-weight: 500;
  font-style: normal;
  color: var(--text-color);
  line-height: 2.4;
  letter-spacing: 0.15em;
}

/* 紺色背景 */
.first-sec2-img2::before {
  content: "";
  position: absolute;
  top: 65px;
  left: 0px;
  width: 90%;
  height: 75%;
  background-image: url("../images/bg-navy-texture.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0; /* 背面に */
}

@media (min-width: 768px) {
  .first-sec2-box1 {
    margin-top: 200px;
    margin-bottom: 100px;
    display: flex;
    justify-content: end;
  }

  .first-sec2-box2 {
    margin-top: 200px;
    margin-bottom: 100px;
  }

  /* 紺色背景 */
  .first-sec2-img1::before {
    left: -100px;
    width: 130%;
  }

  /* テキストを含む白いブロック */
  .first-sec2-title {
    top: -28%;
    left: 10%; /* メイン画像の右に少しはみ出すように配置 */
  }

  /* テキストを含む白いブロック */
  .first-sec2-title2 {
    position: absolute;
    top: 5%;
    left: 10%; /* メイン画像の右に少しはみ出すように配置 */
    width: 65%;
  }
}

@media (min-width: 992px) {
  .first-sec2-title {
    top: -35%;
    left: 5%; /* メイン画像の右に少しはみ出すように配置 */
  }

  .first-sec2-title2 {
    width: 55%;
  }
}

.first-sec2-deco1 {
  position: absolute;
  bottom: -6%;
  left: 28%;
  width: 64%;
  max-width: 600px;
  z-index: 10;
}

@media (min-width: 768px) {
  .first-sec2-deco1 {
    bottom: -3%;
    left: 8%;
    width: 40%;
  }
}

.first-sec3-deco1 {
  position: absolute;
  top: 50%;
  transform: translateY(-214%);
  left: 5%;
  width: 15%;
  max-width: 200px;
  z-index: 5;
}

.first-sec3-deco2 {
  position: absolute;
  top: 50%;
  transform: translateY(-214%);
  right: 5%;
  width: 15%;
  max-width: 200px;
  z-index: 5;
}

.first-sec3-text1 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2%;
  width: 100%;
  max-width: 784px;
  z-index: 6;
  background-color: #fff;
  box-shadow: 10px 10px 0 #110c38;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.first-sec3-text2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 2%;
  width: 100%;
  max-width: 784px;
  z-index: 6;
  background-color: #fff;
  box-shadow: -10px 10px 0 #110c38;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.first-sec3-text1 h2,
.first-sec3-text2 h2 {
  font-size: clamp(1rem, 0.664rem + 1.68vw, 2.25rem);
  color: var(--red);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.first-sec3-text1 p,
.first-sec3-text2 p {
  font-size: clamp(0.625rem, 0.491rem + 0.67vw, 1.125rem);
  color: var(--text-color);
  line-height: 2.2;
}

@media (min-width: 768px) {
  .first-sec3-deco1 {
    transform: translateY(-80%);
    left: 0;
    width: 25%;
  }

  .first-sec3-deco2 {
    transform: translateY(-80%);
    right: 0;
    width: 25%;
  }

  .first-sec3-text1 {
    transform: translateY(-50%);
    right: 5%;
    width: 75%;
    padding: 3rem;
  }

  .first-sec3-text2 {
    transform: translateY(-50%);
    left: 5%;
    width: 75%;
    padding: 3rem;
  }
}

@media (min-width: 992px) {
  .first-sec3-text1,
  .first-sec3-text2 {
    padding: 5rem;
  }

  .first-sec3-text1 p,
  .first-sec3-text2 p {
    line-height: 2.8;
  }
}

.farst-sec4-img {
  position: absolute;
  top: -30px;
  right: 0;
  width: 90%;
  max-width: 800px;
  z-index: 2;
}

.farst-sec4-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90%;
  height: 300px;
  background-image: url("../images/bg-navy-texture.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1; /* 背面に */
}

.farst-sec4-bg2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 90%;
  height: 300px;
  background-image: url("../images/bg-navy-texture.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1; /* 背面に */
}

.farst-sec4-list {
  background-color: #fff;
  padding: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 41%;
  margin-bottom: 5%;
  position: relative;
  z-index: 3;
}

@media (min-width: 768px) {
  .farst-sec4-bg {
    width: 80%;
    height: 360px;
  }

  .farst-sec4-bg2 {
    width: 80%;
    height: 360px;
  }

  .farst-sec4-list {
    padding: 4rem;
    width: 65%;
    margin-top: 10%;
    margin-bottom: 5%;
  }
}

/* 人気の品 */

.mast-sec2-title {
  position: absolute;
  background: #fff;
  padding: 2rem;
  z-index: 2;
  top: -30%;
  left: 0%;
}

.menu-sec2-title2 {
  position: relative;
  background: #fff;
  padding: 2rem;
  z-index: 2;
  top: -15%;
  left: 0;
}

.mast-sec2-title div,
.menu-sec2-title2 div {
  display: flex;
  align-items: flex-start;
}

.mast-sec2-title div p,
.menu-sec2-title2 div p {
  writing-mode: vertical-rl;
  font-size: clamp(0.625rem, 0.524rem + 0.5vw, 1rem);
  color: var(--red);
  font-family: "shippori-mincho-b1", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.mast-sec2-title div h2,
.menu-sec2-title2 div h2 {
  writing-mode: vertical-rl;
  font-size: clamp(1.875rem, 1.372rem + 2.52vw, 3.75rem);
  font-family: "shippori-mincho-b1", serif;
  font-weight: 500;
  font-style: normal;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--text-color);
  letter-spacing: 0.15em;
  line-height: 1.6;
}

.mast-sec2-sub {
  position: absolute;
  background: #fff;
  padding: 2rem;
  z-index: 2;
  bottom: -30%;
  right: 0%;
}

.mast-sec2-sub p {
  font-size: clamp(0.75rem, 0.616rem + 0.67vw, 1.25rem);
  line-height: 2.4;
}

@media (min-width: 768px) {
  .mast-sec2-title {
    top: -18%;
    left: 5%;
    padding: 3rem;
  }

  .mast-sec2-sub {
    bottom: -20%;
    right: 0%;
  }

  .mast-sec2-sub {
    padding: 3rem;
  }

  .menu-sec2-title2 {
    position: absolute;
    left: 10%;
  }
}

@media (min-width: 992px) {
  .mast-sec2-title {
    top: -5%;
    left: 5%;
  }

  .mast-sec2-sub {
    bottom: -5%;
    right: 0%;
  }
}

.mast-sec3-box {
  position: relative;
  width: 100%;
  height: auto;
}

.mast-sec3-box::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 0;
  width: 100%;
  height: 90%; /* 帯の高さ */
  background: #110c38;
  transform: skewY(-5deg); /* 平行四辺形化 */
  transform-origin: left top;
}

.mast-sec3-icon {
  position: relative;
  display: flex;
  justify-content: center;
  height: 150px;
  z-index: 20;
}

.mast-sec3-icon img {
  position: absolute;
  transform: translateY(0%);
  max-width: 210px;
  width: 30%;
}

@media (min-width: 768px) {
  .mast-sec3-icon {
    height: 180px;
  }

  .mast-sec3-icon img {
    transform: translateY(-5%);
    width: 18%;
  }
}

@media (min-width: 1200px) {
  .mast-sec3-icon {
    height: 200px;
  }

  .mast-sec3-icon img {
    transform: translateY(-35%);
  }
}

/* お品書き */

.menu-sec2-title {
  position: absolute;
  background: #fff;
  padding: 0.8rem;
  width: 48%;
  z-index: 2;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
}

.menu-sec2-title div p {
  font-size: clamp(0.625rem, 0.491rem + 0.67vw, 1.125rem);
  color: var(--red);
  font-family: "shippori-mincho-b1", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
}

.menu-sec2-title div h2 {
  font-size: clamp(1rem, 0.664rem + 1.68vw, 2.25rem);
  font-family: "shippori-mincho-b1", serif;
  font-weight: 500;
  font-style: normal;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--text-color);
  letter-spacing: 0.15em;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .menu-sec2-title {
    padding: 1.6rem;
    width: 35%;
    left: 10%;
  }
}

.menu-list h2 {
  background-color: #110c38;
  padding: 1rem;
  color: #fff;
  font-size: clamp(1rem, 0.866rem + 0.67vw, 1.5rem);
}

.menu-list .box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.menu-list .box2 {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.menu-list .box p,
.menu-list .box2 p {
  font-size: clamp(0.875rem, 0.774rem + 0.5vw, 1.25rem);
  line-height: 1.8;
}

.menu-list .box .icon p,
.menu-list .box2 .icon p {
  font-size: 12px;
}

.br-black-2 {
  border-right: 0px solid #000;
}

@media (min-width: 768px) {
  .br-black-2 {
    border-right: 1px solid #000;
  }
}

/* 店舗情報 */

.store-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  line-height: 1.5;
}

.store-list p {
  font-size: clamp(0.875rem, 0.774rem + 0.5vw, 1.25rem);
}

/* 求人情報 */

.rec-sec2-box {
  margin-top: 100px;
  position: relative;
  display: flex;
  justify-content: end;
}

.rec-sec2-box img {
  width: 100%;
  transform: translateY(150px);
}

.rec-sec2-title {
  position: absolute;
  top: -110%;
  left: 0%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
}

@media (min-width: 768px) {
  .rec-sec2-box img {
    width: 95%;
    transform: translateY(125px);
  }

  .rec-sec2-title {
    top: -40%;
  }
}

@media (min-width: 992px) {
  .rec-sec2-box img {
    transform: translateY(65px);
  }

  .rec-sec2-title {
    top: -20%;
  }
}

.rec-sec3-box {
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.form-privacy{
border: solid 1px var(--black);
background-color: white;
height: 230px;
overflow-y: auto;
padding: 40px 30px;
}

/* お知らせ */

.news-box {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

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