@charset "UTF-8";
/* つなぎゴシック */
@font-face {
  font-family: "TsunagiGothic";
  src: url("fonts/Tsunagi/TsunagiGothic.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}
.tsunagi {
  font-family: "TsunagiGothic", "Noto Sans JP", sans-serif;
}

/* かんじゅくゴシックフォントの定義 */
@font-face {
  font-family: "KanjyukuGothic";
  src: url("fonts/KanjyukuGothic/kanjyuku-gothic.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}
.kanjuku {
  font-family: "KanjyukuGothic", "Noto Sans JP", sans-serif;
  color: #303030;
}

/* Source Han Sans JPフォントの定義 */
@font-face {
  font-family: "SourceHanSansJP";
  src: url("fonts/SourceHanSans/SourceHanSansJP-Regular.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "SourceHanSansJP";
  src: url("fonts/SourceHanSans/SourceHanSansJP-Bold.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-family: "SourceHanSansJP";
  src: url("fonts/SourceHanSans/SourceHanSansJP-Light.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 300;
}
@font-face {
  font-family: "SourceHanSansJP";
  src: url("fonts/SourceHanSans/SourceHanSansJP-Medium.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}
@font-face {
  font-family: "SourceHanSansJP";
  src: url("fonts/SourceHanSans/SourceHanSansJP-ExtraLight.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 200;
}
@font-face {
  font-family: "SourceHanSansJP";
  src: url("fonts/SourceHanSans/SourceHanSansJP-Heavy.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 900;
}
.SourceHanSans {
  font-family: "SourceHanSansJP", "Noto Sans JP", sans-serif;
}

/* さわらびゴシックフォントの定義 */
@font-face {
  font-family: "SawarabiGothic";
  src: url("fonts/Sawarabi_Gothic/SawarabiGothic-Regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}
.sawarabi {
  font-family: "SawarabiGothic", "Noto Sans JP", sans-serif;
}

/* ========================================
  pxからem/rem自動変換システム
   ======================================== */
/* スクリーンリーダー専用テキスト */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* htmlルート要素の基本設定 */
html {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 100%;
}
@media (max-width: 750px) {
  html {
    font-size: 3.6vw !important;
    margin-top: 0 !important;
  }
}

/* body要素の基本設定 */
body {
  /* 最小高さ設定 */
  min-height: 100vh;
  /* 基本フォントサイズと色 */
  font-size: 100%;
  font-weight: 400;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
  /* 日本語テキストの最適化 */
  word-break: break-word;
  overflow-wrap: break-word;
}

/* モーション設定を尊重（アクセシビリティ配慮） */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
  }
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  /* 画像の品質向上 */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  /* アクセシビリティ向上 */
  vertical-align: middle;
  /* ボーダーとアウトラインの除去 */
  border: none;
  outline: none;
  /* 画像の読み込み中の表示 */
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (max-width: 750px) {
  img {
    /* モバイルでの画像表示最適化 */
    image-rendering: auto;
  }
}

table {
  /* アクセシビリティの基本設定 */
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  /* スクリーンリーダー対応 */
  caption-side: top;
  /* フォーカス可能にする */
}
table:focus-within {
  outline: 2px solid #007acc;
  outline-offset: 2px;
}

/* テーブルキャプション（アクセシビリティ向上） */
caption {
  text-align: left;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
  /* スクリーンリーダーで読み上げられるように */
  display: table-caption;
}

a:hover, a:focus {
  opacity: 0.8;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* テーブルヘッダー */
th {
  /* アクセシビリティ */
  text-align: left;
  font-weight: 600;
  color: #333;
  /* スクリーンリーダー対応 */
  scope: col;
  /* レスポンシブ対応 */
  padding: 0.75rem;
  /* 高コントラスト対応 */
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  /* フォーカス表示 */
}
th:focus {
  outline: 2px solid #007acc;
  outline-offset: -2px;
  background-color: #e3f2fd;
}

/* テーブルセル */
td {
  padding: 1rem;
  border: 2px solid #000;
  vertical-align: middle;
  /* 天地（縦）中央寄せ */
}

/* キーボードナビゲーション対応 */
table:focus-within {
  /* テーブル内のフォーカス可能要素のスタイル */
}
table:focus-within th:focus,
table:focus-within td:focus {
  position: relative;
  z-index: 1;
}

/* 高コントラストモード対応 */
@media (prefers-contrast: high) {
  th,
  td {
    border: 2px solid #000;
  }
  th {
    background-color: #000;
    color: #fff;
  }
}
/* モーション軽減設定対応 */
@media (prefers-reduced-motion: reduce) {
  th:focus,
  td:focus {
    -webkit-transition: none;
    transition: none;
  }
}
/* 高解像度ディスプレイ対応 */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}
/* リストスタイル */
section ul {
  list-style-type: disc !important;
  list-style: disc !important;
}

/* テキストのスタイル */
.bold {
  font-weight: bold;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.left {
  text-align: left;
}

/* セクションタイトルの基本スタイル */
.sec-title {
  text-align: center;
  margin: 0;
}

/* アイコン付きセクションタイトルのスタイル */
.sec-title.-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
  position: relative;
}

/* 左側のアイコン（スカイツリー） */
.sec-title.-icons::before {
  content: "";
  display: block;
  width: 4em;
  height: 4em;
  background-image: url("images/icon_tree.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: -0.5em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* 右側のアイコン（鳥居） */
.sec-title.-icons::after {
  content: "";
  display: block;
  width: 4em;
  height: 4em;
  background-image: url("images/icon_torii.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 3.5em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* 中央のロゴ画像のスタイル調整 */
.sec-title.-icons img {
  max-height: 5em;
  width: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .sec-title.-icons {
    gap: 0.25em;
  }
  .sec-title.-icons::before,
  .sec-title.-icons::after {
    width: 2.75em;
    height: 2.75em;
  }
}
section {
  padding-block: 7.5em;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

/* コンテナの幅設定 */
.w-container {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 4%;
}

.PCnone {
  display: block;
}
@media (min-width: 751px) {
  .PCnone {
    display: none !important;
  }
}

.SPnone {
  display: block;
}
@media (max-width: 750px) {
  .SPnone {
    display: none !important;
  }
}

/* ========================================
   個別セクション固有のスタイル
   ======================================== */
/* header */
.header {
  height: 160px;
}
@media (max-width: 750px) {
  .header {
    padding-block: 0;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9999;
    height: 100px;
  }
}
.header .w-container {
  padding-block: 1.5em;
  height: 100%;
}
@media (max-width: 750px) {
  .header .w-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.header .site-title {
  margin-block: 0;
}
.header .logo {
  display: block;
  max-width: 9em;
  margin: auto;
}
@media (max-width: 750px) {
  .header .logo {
    width: 6.25em;
  }
}

/* ========================================
   ハンバーガーメニュー
   ======================================== */
/* ハンバーガーボタン */
.p-hamburger {
  display: none;
  width: 3rem;
  height: 3rem;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  z-index: 1000;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.p-hamburger:hover, .p-hamburger:focus {
  opacity: 0.8;
}
@media (max-width: 500px) {
  .p-hamburger {
    display: block;
  }
}
.p-hamburger .p-hamburger__line {
  position: relative;
  display: block;
  width: 30px;
  height: 28px;
  margin: 0 auto;
}
.p-hamburger .p-hamburger__line::before, .p-hamburger .p-hamburger__line::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #049b7c;
  -webkit-transition: top 0.3s ease, bottom 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: top 0.3s ease, bottom 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.p-hamburger .p-hamburger__line::before {
  top: 0;
  -webkit-box-shadow: 0 14px 0 #049b7c;
          box-shadow: 0 14px 0 #049b7c;
}
.p-hamburger .p-hamburger__line::after {
  bottom: 0;
}
@media (max-width: 500px) {
  .p-hamburger .u-visuallyHidden {
    display: none;
  }
}
.p-hamburger.is-active .p-hamburger__line::before {
  top: 14px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.p-hamburger.is-active .p-hamburger__line::after {
  bottom: 12px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* グローバルナビゲーション */
@media (min-width: 501px) {
  .p-globalNav {
    display: none;
  }
}
@media (max-width: 500px) {
  .p-globalNav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background-color: #fff;
    -webkit-box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
            box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    z-index: 999;
    overflow-y: auto;
    padding-top: 6.25rem;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  .p-globalNav.is-active {
    display: block;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .p-globalNav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .p-globalNav ul li {
    border-bottom: 1px solid #e0e0e0;
  }
  .p-globalNav ul li a {
    display: block;
    padding: 1.25rem 1.5rem;
    color: #303030;
    text-decoration: none;
    font-family: "KanjyukuGothic", "Noto Sans JP", sans-serif;
    font-size: 1.125rem;
    -webkit-transition: background-color 0.2s ease;
    transition: background-color 0.2s ease;
  }
  .p-globalNav ul li a:hover {
    background-color: #f5f5f5;
  }
}

/* mv */
.mv {
  height: calc(100dvh - 9.785em);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-image: url(./images/img_mv.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 2.5rem 0;
  margin-bottom: 2em;
}
@supports (-webkit-touch-callout: none) {
  .mv {
    height: calc(100svh - 9.785em);
  }
}
@media (max-width: 750px) {
  .mv {
    padding-top: 0;
    margin-top: 100px;
    margin-bottom: 0;
    height: 80dvh;
  }
}
.mv .mv-title {
  font-size: 2.5em;
  color: #fff;
  text-shadow: 0px 0px 6px #303030;
  letter-spacing: 0.4em;
  margin-top: 0;
  margin-bottom: auto;
}
@media (max-width: 750px) {
  .mv .mv-title {
    font-size: 2.25em;
    margin-top: 2.25em;
  }
}
.mv .mv-subtitle {
  font-size: 1.3125em;
  color: #fff;
  text-shadow: 0px 0px 8px #000;
  letter-spacing: 0.1em;
  margin-top: auto;
  margin-bottom: 0;
  text-align: center;
  max-width: 80%;
}
.mv .w-container {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 4%;
}
@media (min-width: 1600px) {
  .mv .w-container {
    max-width: 1600px;
    padding-inline: 4%;
  }
}

/* nav */
.nav {
  padding-inline: 1em;
  padding-bottom: 6.25em;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
@media (max-width: 750px) {
  .nav {
    display: none;
  }
}
.nav .w-container {
  padding-inline: 1%;
}
.nav .menu-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3.5em;
}
@media (max-width: 900px) {
  .nav .menu-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1em;
  }
}
@media (max-width: 400px) {
  .nav .menu-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.nav .menu-list li {
  max-width: 11.25em;
  font-weight: bold;
}
@media (max-width: 900px) {
  .nav .menu-list li {
    max-width: 9.375em;
  }
}
.nav .menu-list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  background-color: #049b7c;
  padding-block: 1.25em;
  border-radius: 16px;
}

/* コンセプト */
.concept {
  padding-block: 5.625em;
}
.concept .imgbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2em;
  margin-bottom: 2em;
}
@media (max-width: 750px) {
  .concept .imgbox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 4.5em;
  }
}
.concept .imgbox img {
  max-width: 12.5em;
}
.concept .imgbox .textbox {
  position: relative;
}
@media (max-width: 750px) {
  .concept .imgbox .textbox {
    font-size: 16px;
  }
}
.concept .imgbox .textbox::after {
  content: "";
  display: inline-block;
  width: 6em;
  height: 6em;
  background-image: url("./images/icon_sento.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: -6em;
  bottom: -10%;
}
@media (max-width: 750px) {
  .concept .imgbox .textbox::after {
    right: 0;
    bottom: -25%;
  }
}
.concept .imgbox .textbox h2 {
  font-size: 1.25em;
  margin-left: 1rem;
  margin-bottom: 0.5em;
}
.concept .gallary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5em;
  list-style: none !important;
  margin-bottom: 2em;
}
@media (max-width: 750px) {
  .concept .gallary {
    grid-template-columns: repeat(2, 1fr);
  }
}
.concept .sns-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5em;
  font-size: 0.9375em;
}
@media (max-width: 750px) {
  .concept .sns-link {
    font-size: 16px;
  }
}

/* movie */
.movie {
  padding-top: 0;
  padding-bottom: 0;
}
.movie .sec-title {
  padding-top: 1em;
  margin-bottom: 1em;
}

/* 動画スライドショー */
.video-slideshow {
  position: relative;
  max-width: 50em;
  margin: 0 auto 4em;
  overflow: hidden;
  /* ナビゲーションボタン */
  /* スライドインジケーター */
  /* レスポンシブ対応 */
}
.video-slideshow .video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  /* 16:9 アスペクト比 */
  overflow: hidden;
}
.video-slideshow .video-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
  z-index: 1;
}
.video-slideshow .video-slide.active {
  opacity: 1;
  z-index: 2;
}
.video-slideshow .video-slide iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-slideshow .nav-btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 50%;
  width: 3em;
  height: 3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 10;
  color: white;
  /* レスポンシブ対応 */
}
.video-slideshow .nav-btn:hover {
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-transform: translateY(-50%) scale(1.1);
          transform: translateY(-50%) scale(1.1);
}
.video-slideshow .nav-btn:focus {
  outline: 2px solid #049b7c;
  outline-offset: 2px;
}
.video-slideshow .nav-btn:active {
  -webkit-transform: translateY(-50%) scale(0.95);
          transform: translateY(-50%) scale(0.95);
}
.video-slideshow .nav-btn svg {
  width: 1.5em;
  height: 1.5em;
}
.video-slideshow .nav-btn.prev-btn {
  left: 1em;
}
.video-slideshow .nav-btn.next-btn {
  right: 1em;
}
@media (max-width: 768px) {
  .video-slideshow .nav-btn {
    width: 2.5em;
    height: 2.5em;
  }
  .video-slideshow .nav-btn svg {
    width: 1.25em;
    height: 1.25em;
  }
  .video-slideshow .nav-btn.prev-btn {
    left: 0.5em;
  }
  .video-slideshow .nav-btn.next-btn {
    right: 0.5em;
  }
}
.video-slideshow .slide-indicators {
  position: absolute;
  bottom: 1em;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
  z-index: 10;
}
.video-slideshow .slide-indicators .indicator {
  width: 0.75em;
  height: 0.75em;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background-color: transparent;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.video-slideshow .slide-indicators .indicator:hover {
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.video-slideshow .slide-indicators .indicator:focus {
  outline: 2px solid #049b7c;
  outline-offset: 2px;
}
.video-slideshow .slide-indicators .indicator.active {
  background-color: white;
  border-color: white;
}
@media (max-width: 750px) {
  .video-slideshow {
    margin: 0 auto 3em;
    border-radius: 0.25em;
  }
  .video-slideshow .slide-indicators {
    bottom: 0.75em;
  }
  .video-slideshow .slide-indicators .indicator {
    width: 0.625em;
    height: 0.625em;
  }
}

/* メイキング動画（横3列レイアウト） */
.making-videos {
  max-width: 50em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: 0 auto 6em;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.making-videos .making-video-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 12.5em;
  overflow: hidden;
}
.making-videos .making-video-item iframe {
  width: 100%;
  height: auto;
  display: block;
  border: none;
  aspect-ratio: 9/16;
  /* スマホのショート動画比率 */
}
@media (max-width: 750px) {
  .making-videos {
    gap: 1.25em;
    margin: 0 auto 1.5em;
  }
  .making-videos .making-video-item {
    max-width: 100%;
  }
}

/* 地図 */
.map {
  background-color: #fafafa;
  margin: 0 calc(-50vw + 50%);
  padding: 0 calc(50vw - 50%);
  padding-bottom: 2em;
}
.map .map-logo {
  padding-top: 2em;
  width: 7.5em;
  margin: auto;
  margin-bottom: 2em;
}
.map .map-senju {
  width: 80%;
  margin-inline: auto;
}
.map .tsunagi {
  font-size: 1.25em;
  padding-block: 1.5rem;
  width: 72%;
  margin: auto;
  position: relative;
  text-align: center;
  /* 上下の緑の点線 */
}
@media (max-width: 750px) {
  .map .tsunagi {
    text-align: left;
    width: 92%;
  }
}
.map .tsunagi::before, .map .tsunagi::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  border-top: 2px dashed #049b7c;
  /* 緑の点線 */
}
.map .tsunagi::before {
  top: 0;
}
.map .tsunagi::after {
  bottom: 0;
}

/* staff */
.staff {
  padding-block: 5em;
}
.staff .sec-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  text-align: center;
  margin-bottom: 2em;
  position: relative;
}
.staff .sec-title:after {
  content: "";
  display: inline-block;
  width: 6rem;
  height: 6rem;
  background-image: url(./images/icon_dango.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 32%;
  bottom: -9%;
}
@media (max-width: 750px) {
  .staff .sec-title:after {
    right: 10%;
  }
}
.staff .profile {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1em;
}
@media (max-width: 750px) {
  .staff .profile {
    grid-template-columns: repeat(2, 1fr);
  }
}
.staff .profile .member {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.staff .profile .member .position {
  font-size: 0.6875em;
  font-family: "KanjyukuGothic", "Noto Sans JP", sans-serif;
  color: #303030;
}
@media (max-width: 750px) {
  .staff .profile .member .position {
    font-size: 13px;
  }
}
.staff .profile .member .name {
  font-size: 1.25em;
  margin-bottom: 1rem;
}
@media (max-width: 750px) {
  .staff .profile .member .name {
    font-size: 20px;
  }
}
.staff .profile .member .text {
  margin-top: auto;
  font-family: "KanjyukuGothic", "Noto Sans JP", sans-serif;
  color: #303030;
  font-size: 0.8125em;
}
@media (max-width: 750px) {
  .staff .profile .member .text {
    margin-top: initial;
  }
}
.staff .profile._sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.staff .profile._sp .member {
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.staff .profile._sp .member._odd {
  margin-top: 4.5em;
}
.staff .profile._sp .member._last {
  margin-top: -4.5em;
}

/* Plan */
.plan {
  background-color: #fafafa;
  /* P用料金プラン表 */
}
.plan .sec-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: inherit;
      -ms-flex-align: inherit;
          align-items: inherit;
  margin-bottom: 2em;
}
@media (max-width: 750px) {
  .plan .table-wrap {
    overflow-x: auto;
    margin-bottom: 2em;
    display: none;
  }
}
.plan .plan-table {
  margin-bottom: 2em;
  width: 50em;
  margin-inline: auto;
}
.plan .plan-table thead {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.plan .plan-table td {
  padding-block: 1.2rem;
  padding-inline: 1.5rem;
}
.plan .plan-table .plan-name {
  width: 20%;
  font-size: 1.25em;
  line-height: 1.2;
}
@media (max-width: 750px) {
  .plan .plan-table .plan-name {
    width: auto;
  }
}
.plan .plan-table .plan-features {
  font-family: "SawarabiGothic", "Noto Sans JP", sans-serif;
}
@media (max-width: 750px) {
  .plan .plan-table .plan-features {
    width: auto;
  }
}
.plan .plan-table .plan-price {
  width: 18%;
  line-height: 1.1;
}
@media (max-width: 750px) {
  .plan .plan-table .plan-price {
    width: auto;
  }
}
.plan .plan-table .plan-price .price-main {
  font-size: 1.25em;
}
.plan .plan-table .plan-price .price-tax {
  font-size: 0.8125em;
}
.plan .option {
  margin-bottom: 5em;
  position: relative;
  /* オプションリスト */
}
@media (max-width: 750px) {
  .plan .option {
    width: 92%;
    margin-inline: auto;
    margin-top: 2rem;
    margin-bottom: 8.75em;
  }
}
.plan .option:after {
  content: "";
  display: inline-block;
  width: 7.5em;
  height: 7.5em;
  background-image: url(./images/icon_onigiri.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 6.25em;
  bottom: -23%;
}
@media (max-width: 750px) {
  .plan .option:after {
    bottom: -32%;
    right: 0;
  }
}
.plan .option .text {
  font-size: 1.25em;
  margin-bottom: 0.5em;
}
.plan .option .option-list {
  margin-left: 2.5em;
  display: grid;
  grid-template-columns: auto auto;
  gap: 3em;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
@media (max-width: 750px) {
  .plan .option .option-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0;
    margin-left: 0.5em;
  }
}
.plan .option .option-list .option-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.plan .option .option-list .option-column li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
}
@media (max-width: 750px) {
  .plan .option .option-list .option-column li {
    font-size: 16px;
    white-space: normal;
    width: auto;
  }
}
.plan .flow img {
  width: 90%;
  margin: auto;
}
@media (max-width: 750px) {
  .plan .flow img {
    width: 100%;
  }
}
.plan .plan-card-sp,
.plan .plan-card-list {
  display: none;
}
@media (max-width: 750px) {
  .plan .plan-card-sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 320px;
    margin: 0 auto;
    padding: 24px 16px;
    background-color: #fff;
    border: 1px solid #333;
    position: relative;
  }
  .plan .plan-card-sp::after {
    content: "";
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: -2px;
    border: 1px solid #333;
    width: 100%;
    height: 100%;
    -webkit-transform: rotate(-2.5deg);
            transform: rotate(-2.5deg);
    pointer-events: none;
    z-index: 0;
  }
  .plan .plan-card-sp .plan-card-header {
    text-align: center;
    font-size: 18px;
    margin-bottom: 2rem;
  }
  .plan .plan-card-sp .plan-card-header .plan-title {
    margin: 0;
  }
  .plan .plan-card-sp .plan-card-header .plan-title .plan-name-primary,
  .plan .plan-card-sp .plan-card-header .plan-title .plan-name-secondary {
    display: block;
  }
  .plan .plan-card-sp .plan-card-header .plan-title .plan-name-separator {
    display: block;
    line-height: 1;
  }
  .plan .plan-card-sp .plan-card-content {
    margin-bottom: 1rem;
  }
  .plan .plan-card-sp .plan-card-content .plan-features {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-family: "SawarabiGothic", "Noto Sans JP", sans-serif;
  }
  .plan .plan-card-sp .plan-card-content .plan-features .feature-item {
    font-size: 16px;
    color: #333;
  }
  .plan .plan-card-sp .plan-card-content .plan-features .feature-item:last-child {
    margin-bottom: 0;
  }
  .plan .plan-card-sp .plan-card-content .plan-features .feature-item .feature-label {
    font-weight: 400;
  }
  .plan .plan-card-sp .plan-card-content .plan-features .feature-item .feature-value {
    font-weight: 400;
  }
  .plan .plan-card-sp .plan-card-content .plan-features .sr-only {
    display: none;
  }
  .plan .plan-card-sp .plan-card-footer {
    text-align: center;
    margin-top: auto;
  }
  .plan .plan-card-sp .plan-card-footer .price-section .price-main {
    line-height: 1;
  }
  .plan .plan-card-sp .plan-card-footer .price-section .price-main .price-amount {
    font-size: 20px;
    font-weight: 700;
    display: block;
  }
  .plan .plan-card-sp .plan-card-footer .price-section .price-tax {
    margin: 0;
  }
  .plan .plan-card-sp .plan-card-footer .price-section .price-tax .price-tax-amount {
    font-size: 16px;
    display: block;
  }
  .plan .plan-card-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1em;
    margin-top: 3rem;
  }
  .plan .plan-card-list .plan-card-item {
    height: 100%;
    list-style: none;
  }
  .plan .plan-card-list .plan-card-sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
  }
  .plan .plan-card-list .plan-card-sp:after {
    content: none;
  }
}

/* Voice*/
.voice {
  background-color: #fafafa;
  padding-top: 2em;
}
.voice .grid-layout {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.5em;
}
@media (max-width: 750px) {
  .voice .grid-layout {
    display: none;
  }
}
.voice .grid-layout .item1 {
  grid-column: span 1;
  width: 9.375rem;
  margin-top: 1em;
}
@media (max-width: 750px) {
  .voice .grid-layout .item1 {
    text-align: center;
  }
}
.voice .grid-layout .item2 {
  grid-column: span 1;
  -ms-flex-line-pack: end;
      align-content: end;
  margin-bottom: 9.375em;
  width: 6.25em;
}
.voice .grid-layout .item3 {
  grid-column: span 3;
}
.voice .grid-layout .item3 p {
  font-size: 0.75em;
  font-family: "SawarabiGothic", "Noto Sans JP", sans-serif;
}
.voice .grid-layout .item3 p:not(:last-child) {
  margin-bottom: 1em;
}
.voice .grid-layout .item4 {
  grid-column: span 6;
  margin-left: 4em;
}
.voice .grid-layout .voice-text p {
  font-size: 0.8125em;
  font-family: "SawarabiGothic", "Noto Sans JP", sans-serif;
}
.voice .grid-layout .grid-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.875rem;
}
.voice .grid-layout .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 1em;
}
.voice .grid-layout .flex .flex-item1 {
  -ms-flex-preferred-size: 6.25em;
      flex-basis: 6.25em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.voice .voice-items {
  display: none;
}
@media (max-width: 750px) {
  .voice .voice-items {
    display: block;
  }
}
@media (max-width: 750px) {
  .voice .voice-items .sec-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 3.5em;
  }
  .voice .voice-items .voice-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1em;
  }
  .voice .voice-items .voice-profile {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
  }
  .voice .voice-items .article-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2em;
    font-size: 16px;
  }
}
.voice .btn-more {
  display: inline-block;
  cursor: pointer;
  background-color: #049b7c;
  color: #fff;
  font-family: "KanjyukuGothic", "Noto Sans JP", sans-serif;
  text-align: center;
  padding: 0.5em 2em;
  border-radius: 16px;
  border: none;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-top: 0.5em;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-size: 1em;
}
.voice .btn-more:hover {
  opacity: 0.8;
}

/* story */
.story {
  padding-block: 5em;
}
.story .story-text {
  font-family: "KanjyukuGothic", "Noto Sans JP", sans-serif;
  font-size: 0.9375em;
}
@media (max-width: 750px) {
  .story .story-text {
    font-size: 16px;
  }
}
.story .story-text p:not(:last-child) {
  margin-bottom: 1.25rem;
}
.story .story-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.story .story-image figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 1em;
}
.story .story-image img {
  max-width: 12.5em;
  height: auto;
}
.story .story-image figcaption {
  font-weight: bold;
  margin-bottom: 1em;
  font-size: 18px;
}
@media (max-width: 750px) {
  .story .story-image figcaption {
    font-size: 16px;
  }
}

/* faq */
.faq {
  padding-block: 5em;
}
@media (max-width: 750px) {
  .faq {
    font-size: 16px;
  }
}
.faq .grid-layout {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}
@media (max-width: 750px) {
  .faq .grid-layout {
    display: block;
  }
}
.faq .grid-layout .item1 {
  grid-column: 1/3;
  margin-left: -0.75em;
}
@media (max-width: 750px) {
  .faq .grid-layout .item1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.faq .grid-layout .item1 img {
  width: 9.375rem;
}
.faq .grid-layout .item2 {
  grid-column: 3/12;
  margin-top: 3em;
}
.faq .grid-layout .item2 h3 {
  font-size: 1em;
  font-family: "KanjyukuGothic", "Noto Sans JP", sans-serif;
  margin-bottom: 1em;
  font-weight: normal;
}
.faq .grid-layout .item2 details.faq-list {
  margin-bottom: 1em;
  margin-left: 1em;
  border-bottom: 1px solid #000;
}
.faq .grid-layout .item2 details.faq-list summary {
  margin-bottom: 1rem;
  cursor: pointer;
}
.faq .grid-layout .item2 .q-fukidashi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.faq .grid-layout .item2 .q-fukidashi:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-top: 0.3em;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid #049b7c;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.faq .grid-layout .item2 details[open] .q-fukidashi::after {
  border-top: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 12px solid #049b7c;
}
.faq .grid-layout .item2 p {
  margin-bottom: 1rem;
}
.faq .grid-layout .item2 .a-fukidashi {
  margin-left: 2em;
}

/* contact */
.contact .sec-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: inherit;
      -ms-flex-align: inherit;
          align-items: inherit;
  margin-bottom: 2em;
}
.contact h3 {
  margin-top: 1em;
  margin-bottom: 2em;
}

/* footer */
.footer .w-container {
  padding-top: 5em;
  padding-bottom: 6.875em;
}
@media (max-width: 750px) {
  .footer .w-container {
    padding-bottom: 2em;
  }
}
.footer .flex-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 2.8125em;
}
@media (max-width: 750px) {
  .footer .flex-layout {
    display: block;
  }
}
.footer .flex-layout .flex-left {
  width: 50%;
}
@media (max-width: 750px) {
  .footer .flex-layout .flex-left {
    width: 100%;
  }
}
@media (max-width: 750px) {
  .footer .flex-layout .flex-left h2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 2em;
  }
}
.footer .flex-layout .flex-right {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.footer .flex-layout .flex-right.map {
  height: 26em;
}
.footer .flex-layout .flex-right.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.footer hgroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
  margin-bottom: 2.5em;
}
.footer hgroup .sub-title {
  font-size: 1.375em;
  font-family: "SourceHanSansJP", "Noto Sans JP", sans-serif;
}
.footer p.fz18 {
  font-size: 1.125em;
}
.footer .textbox {
  margin-bottom: 2em;
  margin-top: 1em;
}
.footer .textbox .tel {
  margin-top: 2em;
}
@media (max-width: 750px) {
  .footer .textbox p {
    font-size: 18px;
  }
}
.footer .icon_line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer .icon_line span.line {
  display: inline-block;
  text-align: center;
  font-size: 0.75em;
}
.footer .map {
  background-color: #fff;
}
@media (max-width: 750px) {
  .footer .SPnone {
    display: none;
  }
}
@media (max-width: 750px) {
  .footer .PCnone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (min-width: 751px) {
  .footer .PCnone {
    display: none;
  }
}

/* ========================================
Fade In Up アニメーション
======================================== */
#fadeinup {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: opacity 2s ease-in-out, -webkit-transform 2s ease-in-out;
  transition: opacity 2s ease-in-out, -webkit-transform 2s ease-in-out;
  transition: opacity 2s ease-in-out, transform 2s ease-in-out;
  transition: opacity 2s ease-in-out, transform 2s ease-in-out, -webkit-transform 2s ease-in-out;
}

#fadeinup.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}