@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
:root {
  --color-primary: #635143;
  --font-sans: "Noto Sans JP", sans-serif;
  --font-serif: "Shippori Mincho", serif;
  --font-en: "Cormorant Garamond", serif;
  --font-weight-bold: 500;
  --font-weight-primary: 300;
}

.t-body {
  width: 100%;
  max-width: 100%;
  background: url("../images/page-bg.webp") repeat center/contain;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: var(--font-weight-primary);
  color: var(--color-primary);
  line-height: 150%;
  letter-spacing: 10%;
}
@media screen and (max-width: 979px) {
  .t-body {
    background-image: url("../images/page-bg--sp.webp");
    font-size: 14px;
    letter-spacing: 5%;
  }
}
.t-body h1,
.t-body h2,
.t-body h3,
.t-body h4,
.t-body h5,
.t-body h6 {
  font-family: var(--font-sans);
}

/* ボックスサイズ初期化 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* html / body 初期化 */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  color: #000;
  background: #fff;
  margin: 0;
  padding: 0;
}

/* 各要素の余白をリセット */
body,
h1, h2, h3, h4, h5, h6,
p, ul, ol, li,
figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

/* テキスト要素のフォント系リセット */
address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

/* リストのデフォルトスタイルを削除 */
ul, ol {
  list-style: none;
}

/* テーブルの見た目を初期化 */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

/* フォーム要素をフラットに＆継承設定 */
input,
textarea,
select,
button {
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

/* テキストエリアは縦リサイズ可 */
textarea {
  resize: vertical;
  display: block;
}

/* チェックボックスやラジオボタンはデザイン前提で非表示に */
input[type=checkbox],
input[type=radio] {
  display: none;
}

/* 操作可能な要素にカーソル */
button,
label,
select,
input[type=submit],
input[type=button] {
  cursor: pointer;
}

/* select の三角形を非表示（モダンブラウザ） */
select::-ms-expand {
  display: none;
}

/* aタグの初期スタイルを削除 */
a {
  text-decoration: none;
  color: inherit;
}

/* imgタグの余白・幅の制御 */
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* SVGもblockで扱いやすく */
svg {
  display: block;
}

/* mainタグをblockに（IE対応不要なら削除してOK） */
main {
  display: block;
}

/* なめらかなフォント表示（Mac用） */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.button {
  width: fit-content;
  padding: 12px 24px;
  border: 1px solid var(--color-primary);
  border-radius: 64px;
  display: grid;
  place-items: center;
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-size: 20px;
  letter-spacing: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.button:hover {
  color: var(--color-primary) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 1280px) {
  .button {
    font-size: 18px;
  }
}
@media screen and (max-width: 979px) {
  .button {
    max-width: 360px;
    padding: 16px 28px;
    border-radius: 40px;
    width: 100%;
  }
}

.section-title {
  font-family: var(--font-serif) !important;
  font-size: 28px;
  font-weight: var(--font-weight-bold);
  line-height: 150%;
}
@media screen and (max-width: 1023px) {
  .section-title {
    font-size: 26px;
  }
}
@media screen and (max-width: 979px) {
  .section-title {
    font-size: 24px;
  }
}

.t-feature__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 979px) {
  .t-feature__content {
    display: flex;
    flex-direction: column;
    gap: 56px;
  }
}

.t-feature__image {
  overflow: hidden;
}
.t-feature__image img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 979px) {
  .t-feature__image {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    aspect-ratio: 390/299;
  }
  .t-feature__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

.t-feature__box {
  background-color: rgba(196, 196, 196, 0.5);
  display: grid;
  place-items: center;
}
@media screen and (max-width: 979px) {
  .t-feature__box {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding-block: 104px;
  }
}

.t-feature__body {
  padding-block: 84px 78px;
  padding-left: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  max-width: 100%;
  margin-inline: 0;
}
@media screen and (max-width: 979px) {
  .t-feature__body {
    max-width: 80%;
    margin-inline: auto;
  }
}
@media (max-width: 768px) {
  .t-feature__body {
    max-width: 100%;
    margin-inline: 0;
  }
}
@media screen and (max-width: 979px) {
  .t-feature__body {
    padding-block: 0;
    padding-left: 0;
    gap: 0;
  }
}

.t-feature__head {
  text-align: center;
  padding-bottom: 16px;
  line-height: 100%;
  position: relative;
}
.t-feature__head::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 1px;
  background: var(--color-primary);
}
@media screen and (max-width: 979px) {
  .t-feature__head::after {
    width: 24px;
  }
}

@media screen and (max-width: 979px) {
  .t-feature__info {
    margin-top: 40px;
  }
}

.t-feature__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 979px) {
  .t-feature__list {
    gap: 16px;
  }
}

.t-feature__item {
  display: flex;
  gap: 3px;
  font-weight: var(--font-weight-bold);
}
.t-feature__item::before {
  content: "・";
}
@media screen and (max-width: 979px) {
  .t-feature__item {
    gap: 0;
  }
}

.t-feature__text {
  margin-top: 8px;
  letter-spacing: 5%;
}
@media screen and (max-width: 979px) {
  .t-feature__text {
    margin-top: 16px;
  }
}

@media screen and (max-width: 979px) {
  .t-feature__message {
    margin-top: 24px;
  }
}

.t-inner {
  padding-inline: 30px;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}
@media screen and (max-width: 979px) {
  .t-inner {
    padding-inline: 15px;
  }
}

.t-header {
  height: 90px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transition: background 0.3s ease;
}
.t-header.scrolled {
  background: url("../images/page-bg.webp") repeat center/contain;
}
@media screen and (max-width: 979px) {
  .t-header.scrolled {
    background-image: url("../images/page-bg--sp.webp");
  }
}
@media screen and (max-width: 979px) {
  .t-header {
    height: 60px;
  }
}

.t-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 979px) {
  .t-header__inner {
    justify-content: end;
  }
}

.t-header__drawer {
  display: none;
}
@media screen and (max-width: 979px) {
  .t-header__drawer {
    width: 48px;
    aspect-ratio: 1/1;
    display: grid;
    place-items: center;
    position: relative;
    z-index: 55;
  }
  .t-header__drawer.is-checked .t-header__drawer-bar:nth-child(1) {
    top: 8px;
    transform: rotate(25deg);
  }
  .t-header__drawer.is-checked .t-header__drawer-bar:nth-child(2) {
    top: 8px;
    transform: rotate(-25deg);
  }
}

.t-header__drawer-icon {
  display: block;
  width: 100%;
  height: 16px;
  position: relative;
}

.t-header__drawer-bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  transition: transform 0.3s ease;
}
.t-header__drawer-bar:nth-child(1) {
  top: 0;
}
.t-header__drawer-bar:nth-child(2) {
  top: 14px;
}

.t-header__nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 979px) {
  .t-header__nav {
    background: url("../images/page-bg.webp") repeat center/contain;
    flex-direction: column;
    justify-content: flex-start;
    gap: 40px;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    padding: 100px 20px 20px 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .t-header__nav.is-checked {
    transform: translateX(0);
  }
}

.t-header__nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 979px) {
  .t-header__nav-list {
    max-width: 360px;
    margin-inline: auto;
    flex-direction: column;
    align-items: start;
    justify-content: start;
  }
}

.t-header__nav-link {
  color: var(--color-primary);
  font-family: var(--font-serif);
  line-height: 100%;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.t-header__nav-link:hover {
  color: var(--color-primary) !important;
  opacity: 0.8;
}

.t-footer {
  background-color: rgba(196, 196, 196, 0.4);
}

.t-footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.t-footer__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.t-footer__text {
  font-family: var(--font-serif);
  font-size: 18px;
}
@media screen and (max-width: 979px) {
  .t-footer__text {
    font-size: 16px;
  }
}

.t-footer__title {
  font-family: var(--font-en);
  font-size: 48px;
  line-height: 130%;
}
@media screen and (max-width: 979px) {
  .t-footer__title {
    font-size: 40px;
  }
}

.t-footer__line {
  width: 35px;
}
@media screen and (max-width: 979px) {
  .t-footer__line {
    width: 40px;
  }
}

.t-footer__line-link img {
  aspect-ratio: 1/1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.t-footer__line-link:hover img {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(6, 199, 85, 0.2);
}

.t-fv {
  padding-block: 226px 230px;
  background: url("../images/fv.webp") no-repeat center/cover;
}
@media screen and (max-width: 979px) {
  .t-fv {
    padding-block: 263px 160px;
    background-image: url("../images/fv-sp.webp");
  }
}

.t-fv__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 56px;
}
@media screen and (max-width: 979px) {
  .t-fv__content {
    gap: 96px;
  }
}

.t-fv__title {
  text-align: center;
}

.t-fv__title-sub {
  font-family: var(--font-serif) !important;
  font-size: 18px;
  line-height: 100%;
}
@media screen and (max-width: 979px) {
  .t-fv__title-sub {
    font-size: 16px;
  }
}

.t-fv__title-main {
  margin-top: 4px;
  font-family: var(--font-en) !important;
  font-size: 90px;
  line-height: 130%;
}
@media screen and (max-width: 979px) {
  .t-fv__title-main {
    margin-top: 8px;
    font-size: 56px;
  }
}

.t-fv__disc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 100%;
}
@media screen and (max-width: 979px) {
  .t-fv__disc {
    font-size: 13px;
  }
}

.t-fv__text {
  font-weight: var(--font-weight-bold);
}

.t-fv__disc {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.t-award {
  padding-block: 14px;
  background-color: #f2f2f2;
}
@media screen and (max-width: 979px) {
  .t-award {
    padding-block: 12px;
  }
}

.t-award__text {
  letter-spacing: 0%;
  text-align: center;
}
.t-award__text a {
  margin-right: 7px;
  display: inline-block;
  color: var(--color-primary);
  border-bottom: 1px solid;
  font-weight: var(--font-weight-bold);
  transition: color 0.3s ease, opacity 0.3s ease;
}
.t-award__text a:hover {
  color: var(--color-primary) !important;
  opacity: 0.8;
}
@media screen and (max-width: 979px) {
  .t-award__text a {
    margin-right: 0;
  }
}
@media screen and (max-width: 500px) {
  .t-award__text {
    font-size: 12px;
  }
}

.t-intro__lead {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-family: var(--font-serif);
}
@media screen and (max-width: 979px) {
  .t-intro__lead {
    gap: 16px;
  }
}

.t-intro__lead-text {
  font-size: 28px;
  text-align: center;
}
@media screen and (max-width: 979px) {
  .t-intro__lead-text {
    font-size: 19px;
  }
}

.t-intro__disc {
  margin-top: 56px;
  font-size: 14px;
  text-align: center;
}
@media screen and (max-width: 979px) {
  .t-intro__disc {
    margin-top: 48px;
  }
}

.t-intro__action {
  margin-top: 40px;
  display: grid;
  place-items: center;
}

.t-worries {
  position: relative;
}

.t-worries__top {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 64px;
}
@media screen and (max-width: 1280px) {
  .t-worries__top {
    gap: 33px;
  }
}
@media screen and (max-width: 979px) {
  .t-worries__top {
    flex-direction: column;
    align-items: start;
    gap: 32px;
  }
}

.t-worries__head {
  padding-right: 33px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  flex-shrink: 0;
}
.t-worries__head::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 72px;
  background-color: var(--color-primary);
}
@media screen and (max-width: 979px) {
  .t-worries__head {
    padding-right: 0;
    gap: 8px;
  }
  .t-worries__head::after {
    display: none;
  }
}

.t-worries__text {
  letter-spacing: 5%;
  flex-grow: 1;
}
@media screen and (max-width: 979px) {
  .t-worries__text {
    padding-left: 16px;
    border-left: 1px solid;
  }
}

.t-worries__bottom {
  margin-top: 88px;
}
@media screen and (max-width: 979px) {
  .t-worries__bottom {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
}

.t-worries__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 979px) {
  .t-worries__list {
    gap: 16px;
  }
}

.t-worries__item {
  display: flex;
  gap: 3px;
  font-weight: var(--font-weight-bold);
}
.t-worries__item::before {
  content: "・";
}
@media screen and (max-width: 979px) {
  .t-worries__item {
    gap: 0;
  }
}

.t-worries__deco--pc {
  position: absolute;
  width: 60%;
  height: 280px;
  right: 0;
  bottom: 120px;
  overflow: hidden;
}
.t-worries__deco--pc img {
  height: 100%;
  object-fit: cover;
  aspect-ratio: 923/261;
}
@media screen and (max-width: 1023px) {
  .t-worries__deco--pc {
    width: 55%;
  }
}
@media screen and (max-width: 979px) {
  .t-worries__deco--pc {
    display: none;
  }
}

.t-worries__deco--sp {
  display: none;
}
@media screen and (max-width: 979px) {
  .t-worries__deco--sp {
    display: block;
    width: 100%;
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
  .t-worries__deco--sp img {
    aspect-ratio: 390/109;
  }
}

.t-reason {
  border-bottom: 1px solid;
}

.t-reason__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: center;
}
@media screen and (max-width: 979px) {
  .t-reason__content {
    gap: 32px;
  }
}

.t-reason__message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.t-reason__text span {
  font-weight: var(--font-weight-bold);
}
@media screen and (max-width: 979px) {
  .t-reason__text {
    text-align: center;
  }
}

.t-message__content {
  margin-top: 40px;
  display: flex;
  gap: 10%;
}
@media screen and (max-width: 979px) {
  .t-message__content {
    margin-top: 32px;
    flex-direction: column;
    gap: 40px;
  }
}

.t-message__profile {
  width: 50%;
  max-width: 422px;
  flex-shrink: 0;
}
@media screen and (max-width: 979px) {
  .t-message__profile {
    width: 100%;
    max-width: 100%;
  }
}

.t-message__image {
  overflow: hidden;
}
.t-message__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 422/527;
}
@media screen and (max-width: 979px) {
  .t-message__image {
    width: 61%;
  }
  .t-message__image img {
    aspect-ratio: 211/263;
  }
}
@media screen and (max-width: 500px) {
  .t-message__image {
    max-width: 211px;
  }
}

.t-message__info {
  margin-top: 32px;
}

.t-message__info-title {
  font-weight: var(--font-weight-bold);
}

.t-message__info-list {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 979px) {
  .t-message__info-list {
    margin-top: 16px;
    gap: 16px;
  }
}

.t-message__body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 979px) {
  .t-message__body {
    width: 100%;
  }
}

.t-message__actions {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 979px) {
  .t-message__actions {
    margin-top: 56px;
  }
}

.t-message__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
}
@media screen and (max-width: 979px) {
  .t-message__action {
    gap: 11px;
  }
}

.t-message__action-button {
  width: 178px;
}
@media screen and (max-width: 979px) {
  .t-message__action-button {
    width: 360px;
  }
}

.t-message__action-text {
  font-weight: var(--font-weight-bold);
}

.t-process {
  padding-block: 120px;
  background-color: rgba(249, 249, 249, 0.5);
  position: relative;
  overflow: hidden;
}
.t-process::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/process-bg.webp") no-repeat center center/cover;
  z-index: 0;
}
.t-process .section-title,
.t-process .t-process__content {
  position: relative;
  z-index: 5;
}
@media (max-width: 768px) {
  .t-process::after {
    width: 100%;
    height: 560px;
    background-image: url("../images/process-bg--sp.webp");
    background-position: top right;
    background-size: contain;
  }
}
@media screen and (max-width: 979px) {
  .t-process {
    padding-block: 80px 0;
  }
}

.t-process__content {
  margin-top: 40px;
}
@media screen and (max-width: 979px) {
  .t-process__content {
    margin-top: 28px;
  }
}

.t-process__intro {
  width: 50%;
  margin-right: auto;
}
@media screen and (max-width: 1280px) {
  .t-process__intro {
    width: 60%;
  }
}
@media screen and (max-width: 979px) {
  .t-process__intro {
    width: 100%;
    margin-right: 0;
  }
}

.t-process__message {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.t-process__text {
  font-size: 15px;
}
@media screen and (max-width: 979px) {
  .t-process__text {
    font-size: 14px;
  }
}

.t-process__target {
  padding: 72px 77px 72px 115px;
  width: 57%;
  margin-left: auto;
  background: url("../images/process__target-bg.webp") no-repeat center/contain;
}
@media screen and (max-width: 1280px) {
  .t-process__target {
    width: 650px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .t-process__target {
    margin-top: 56px;
    padding-inline: 0;
    padding-block: 49px 64px;
    max-width: 480px;
    background: transparent;
    position: relative;
  }
  .t-process__target::before {
    content: "";
    position: absolute;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    width: 130%;
    height: 100%;
    right: -50px;
    top: 0;
    background: url("../images/process__target-bg.webp") no-repeat center/contain;
    z-index: -1;
  }
}
@media screen and (max-width: 500px) {
  .t-process__target {
    max-width: 100%;
  }
  .t-process__target::before {
    width: 150vw;
    left: -150px;
  }
}

.t-process__box {
  display: flex;
  flex-direction: column;
  gap: 27px;
}
@media screen and (max-width: 979px) {
  .t-process__box {
    gap: 32px;
  }
}

.t-process__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 979px) {
  .t-process__list {
    gap: 16px;
  }
}

.t-process__item {
  display: flex;
  align-items: center;
  gap: 3px;
  font-weight: var(--font-weight-bold);
}
.t-process__item::before {
  content: "・";
}
.t-process__item span {
  font-weight: 400;
}
@media screen and (max-width: 500px) {
  .t-process__item span {
    display: none;
  }
}

.t-flow__head {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 979px) {
  .t-flow__head {
    gap: 35px;
    text-align: center;
  }
}

.t-flow__steps {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media screen and (max-width: 979px) {
  .t-flow__steps {
    display: flex;
    flex-direction: column;
  }
}

.t-flow__step {
  padding-block: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #f2f2f2;
  position: relative;
}
.t-flow__step::before, .t-flow__step::after {
  content: "";
  position: absolute;
  top: 0;
  width: 35px;
  height: 100%;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.t-flow__step::before {
  left: 0;
  background: url("../images/page-bg.webp") repeat center/contain;
}
.t-flow__step::after {
  right: -35px;
  background-color: #f2f2f2;
  z-index: 5;
}
.t-flow__step:nth-child(1) {
  padding-left: 30px;
}
.t-flow__step:nth-child(1)::before {
  display: none;
}
.t-flow__step:nth-child(2) {
  padding-left: 53px;
}
.t-flow__step:nth-child(3) {
  padding-inline: 53px 20px;
}
.t-flow__step:nth-child(3)::after {
  display: none;
}
@media screen and (max-width: 1280px) {
  .t-flow__step {
    font-size: 15px;
  }
}
@media screen and (max-width: 979px) {
  .t-flow__step {
    padding-block: 64px 40px;
    gap: 24px;
    font-size: 14px;
  }
  .t-flow__step::before, .t-flow__step::after {
    left: 0;
    width: 100%;
    height: 25px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
  .t-flow__step::before {
    top: 0;
  }
  .t-flow__step::after {
    bottom: -25px;
    top: auto;
  }
  .t-flow__step:nth-child(1), .t-flow__step:nth-child(2), .t-flow__step:nth-child(3) {
    padding-inline: 16px;
  }
}

.t-flow__step-title {
  display: flex;
  flex-direction: column;
  font-weight: var(--font-weight-bold);
}
@media screen and (max-width: 979px) {
  .t-flow__step-title {
    flex-direction: row;
  }
}

.t-flow__theme {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 979px) {
  .t-flow__theme {
    gap: 54px;
  }
}

.t-flow__theme-cards {
  margin-inline: auto;
  max-width: 80%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 64px;
  row-gap: 80px;
}
@media screen and (max-width: 1280px) {
  .t-flow__theme-cards {
    max-width: 85%;
  }
}
@media (max-width: 768px) {
  .t-flow__theme-cards {
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 56px;
  }
}

.t-flow__theme-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
}
.t-flow__theme-card--1 {
  gap: 33px;
}
.t-flow__theme-card--1 .t-flow__theme-image {
  width: 120px;
}
.t-flow__theme-card--1 .t-flow__theme-image img {
  aspect-ratio: 120/60;
}
@media screen and (max-width: 979px) {
  .t-flow__theme-card--1 {
    gap: 25px;
  }
  .t-flow__theme-card--1 .t-flow__theme-image {
    width: 85px;
  }
  .t-flow__theme-card--1 .t-flow__theme-image img {
    aspect-ratio: 85/43;
  }
}
.t-flow__theme-card--2 {
  gap: 16px;
}
.t-flow__theme-card--2 .t-flow__theme-image {
  width: 120px;
}
.t-flow__theme-card--2 .t-flow__theme-image img {
  aspect-ratio: 120/94;
}
@media screen and (max-width: 979px) {
  .t-flow__theme-card--2 .t-flow__theme-image {
    width: 94px;
  }
  .t-flow__theme-card--2 .t-flow__theme-image img {
    aspect-ratio: 94/73;
  }
}
.t-flow__theme-card--3 {
  gap: 18px;
}
.t-flow__theme-card--3 .t-flow__theme-image {
  width: 87px;
}
.t-flow__theme-card--3 .t-flow__theme-image img {
  aspect-ratio: 87/90;
}
@media screen and (max-width: 979px) {
  .t-flow__theme-card--3 {
    gap: 16px;
  }
  .t-flow__theme-card--3 .t-flow__theme-image {
    width: 74px;
  }
  .t-flow__theme-card--3 .t-flow__theme-image img {
    aspect-ratio: 74/76;
  }
}
.t-flow__theme-card--4 {
  gap: 32px;
}
.t-flow__theme-card--4 .t-flow__theme-image {
  width: 96px;
}
.t-flow__theme-card--4 .t-flow__theme-image img {
  aspect-ratio: 96/48;
}
@media screen and (max-width: 979px) {
  .t-flow__theme-card--4 {
    gap: 24px;
  }
  .t-flow__theme-card--4 .t-flow__theme-image {
    width: 78px;
  }
  .t-flow__theme-card--4 .t-flow__theme-image img {
    aspect-ratio: 78/39;
  }
}
.t-flow__theme-card--5 {
  gap: 16px;
}
.t-flow__theme-card--5 .t-flow__theme-image {
  width: 66px;
}
.t-flow__theme-card--5 .t-flow__theme-image img {
  aspect-ratio: 66/80;
}
@media screen and (max-width: 979px) {
  .t-flow__theme-card--5 .t-flow__theme-image {
    width: 61px;
  }
  .t-flow__theme-card--5 .t-flow__theme-image img {
    aspect-ratio: 61/74;
  }
}
.t-flow__theme-card--6 {
  gap: 16px;
}
.t-flow__theme-card--6 .t-flow__theme-image {
  width: 80px;
}
.t-flow__theme-card--6 .t-flow__theme-image img {
  aspect-ratio: 1/1;
}
@media screen and (max-width: 979px) {
  .t-flow__theme-card--6 {
    gap: 15px;
  }
  .t-flow__theme-card--6 .t-flow__theme-image {
    width: 63px;
  }
}

.t-flow__theme-name {
  text-align: center;
  font-weight: var(--font-weight-bold);
}

.t-belief {
  padding-block: 120px;
  background-color: rgba(249, 249, 249, 0.5);
  position: relative;
}
.t-belief::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/belief-bg.webp") no-repeat center right/cover;
  z-index: 0;
}
@media screen and (max-width: 979px) {
  .t-belief {
    padding-block: 80px 0;
    background-color: transparent;
    position: static;
  }
  .t-belief::after {
    display: none;
  }
}

.t-belief__content {
  position: relative;
  z-index: 5;
}

@media screen and (max-width: 979px) {
  .t-belief__catch {
    padding-bottom: 80px;
    position: relative;
  }
  .t-belief__catch::before, .t-belief__catch::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: calc(100% + 80px);
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
  .t-belief__catch::before {
    background-color: rgba(249, 249, 249, 0.5);
    z-index: -1;
  }
  .t-belief__catch::after {
    background: url("../images/belief-bg.webp") no-repeat center right/cover;
    z-index: -1;
  }
}

.t-belief__head {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 979px) {
  .t-belief__head {
    flex-direction: column;
    gap: 40px;
  }
}

.t-belief__lead,
.t-belief__item {
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 150%;
  font-weight: var(--font-weight-bold);
}
@media screen and (max-width: 979px) {
  .t-belief__lead,
  .t-belief__item {
    font-size: 24px;
  }
}

.t-belief__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 979px) {
  .t-belief__list {
    gap: 16px;
  }
}

.t-belief__conclusion {
  margin-top: 24px;
  margin-left: auto;
  padding-right: 90px;
  text-align: right;
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 150%;
  font-weight: var(--font-weight-bold);
}
@media screen and (max-width: 1280px) {
  .t-belief__conclusion {
    padding-right: 0;
  }
}
@media screen and (max-width: 979px) {
  .t-belief__conclusion {
    margin-top: 46px;
    padding-left: 60px;
    padding-right: 0;
    margin-left: 0;
    font-size: 24px;
    text-align: left;
  }
}

.t-belief__body {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 607px;
}
@media screen and (max-width: 979px) {
  .t-belief__body {
    margin-top: 56px;
    max-width: 100%;
  }
}

.t-therapy {
  padding-block: 120px;
}
@media screen and (max-width: 979px) {
  .t-therapy {
    padding-block: 80px 0;
  }
}

.t-therapy__inner {
  padding-inline: 30px;
  max-width: 1350px;
  margin-inline: auto;
}
@media screen and (max-width: 979px) {
  .t-therapy__inner {
    padding-inline: 15px;
  }
}

.t-therapy__content {
  padding: 89px 64px 120px 64px;
  background-color: #f2f2f2;
}
@media screen and (max-width: 1023px) {
  .t-therapy__content {
    padding-inline: 20px;
  }
}
@media screen and (max-width: 979px) {
  .t-therapy__content {
    padding: 56px 10px 80px 10px;
  }
}

.t-therapy__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
@media screen and (max-width: 979px) {
  .t-therapy__head {
    gap: 32px;
  }
}

.t-therapy__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
@media screen and (max-width: 979px) {
  .t-therapy__title {
    gap: 8px;
  }
}

.t-therapy__lead {
  text-align: center;
}

.t-therapy__methods {
  margin-top: 80px;
  margin-inline: auto;
  max-width: 87%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media screen and (max-width: 1280px) {
  .t-therapy__methods {
    max-width: 100%;
    gap: 20px;
  }
}
@media screen and (max-width: 979px) {
  .t-therapy__methods {
    margin-top: 40px;
    max-width: none;
    gap: 8px;
  }
}
@media (max-width: 768px) {
  .t-therapy__methods {
    max-width: 375px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media screen and (max-width: 500px) {
  .t-therapy__methods {
    max-width: 200px;
    grid-template-columns: repeat(1, 1fr);
    gap: 56px;
  }
}

.t-therapy__method {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  gap: 16px;
}
.t-therapy__method:nth-child(1) img, .t-therapy__method:nth-child(2) img {
  width: 50px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 500px) {
  .t-therapy__method:nth-child(1) img, .t-therapy__method:nth-child(2) img {
    width: 58px;
  }
}
.t-therapy__method:nth-child(3) img {
  width: 64px;
  aspect-ratio: 64/50;
}
@media screen and (max-width: 500px) {
  .t-therapy__method:nth-child(3) img {
    width: 75px;
  }
}
.t-therapy__method:nth-child(4) img {
  width: 56px;
  aspect-ratio: 56/50;
}
@media screen and (max-width: 500px) {
  .t-therapy__method:nth-child(4) img {
    width: 66px;
  }
}

.t-therapy__method-name {
  text-align: center;
  font-weight: var(--font-weight-bold);
  min-height: 48px;
}
@media screen and (max-width: 1280px) {
  .t-therapy__method-name {
    font-size: 14px;
  }
}
@media screen and (max-width: 979px) {
  .t-therapy__method-name {
    font-size: 13px;
  }
}

.t-therapy__main {
  margin-top: 40px;
  padding: 40px 58px;
  background-color: #e4e4e4;
}
@media screen and (max-width: 979px) {
  .t-therapy__main {
    margin-top: 48px;
    padding: 40px 16px;
  }
}

.t-therapy__box-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.t-therapy__box-head img {
  width: 45px;
}
@media screen and (max-width: 979px) {
  .t-therapy__box-head {
    flex-direction: row;
    align-items: center;
    justify-content: start;
  }
  .t-therapy__box-head img {
    width: 48px;
  }
}

.t-therapy__box-title {
  font-weight: var(--font-weight-bold);
}

.t-therapy__main-body {
  margin-top: 40px;
  display: flex;
  gap: 8px;
}
@media screen and (max-width: 979px) {
  .t-therapy__main-body {
    margin-top: 32px;
    flex-direction: column;
    gap: 16px;
  }
}

.t-therapy__main-text--second {
  margin-right: auto;
  margin-top: auto;
  height: fit-content;
}
@media screen and (max-width: 979px) {
  .t-therapy__main-text--second {
    margin-left: 0;
    padding-left: 178px;
  }
}

.t-therapy__main-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 979px) {
  .t-therapy__main-list {
    gap: 16px;
  }
}

.t-therapy__main-item {
  display: flex;
  align-items: center;
  gap: 3px;
  font-weight: var(--font-weight-bold);
}
.t-therapy__main-item::before {
  content: "・";
}

.t-therapy__main-message {
  margin-top: 40px;
}

.t-therapy__sub {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1280px) {
  .t-therapy__sub {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    background-color: transparent;
  }
}

.t-therapy__card {
  padding: 32px 40px;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 1280px) {
  .t-therapy__card {
    padding: 40px 16px;
    gap: 32px;
  }
  .t-therapy__card .t-therapy__box-head {
    flex-direction: row;
    align-items: center;
    justify-content: start;
  }
  .t-therapy__card .t-therapy__box-head img {
    width: 48px;
  }
}

.t-therapy__action {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.t-therapy__action-text {
  font-weight: var(--font-weight-bold);
}

.t-suitable__main {
  max-width: 848px;
  margin-inline: auto;
  padding: 56px 69px;
  border: 1px solid;
}
@media screen and (max-width: 979px) {
  .t-suitable__main {
    padding-inline: 16px;
    max-width: 100%;
    margin-inline: 0;
  }
}

.t-suitable__main-head {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.t-suitable__list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 979px) {
  .t-suitable__list {
    margin-top: 24px;
  }
}

.t-suitable__item {
  display: flex;
  gap: 3px;
  font-weight: var(--font-weight-bold);
}
.t-suitable__item::before {
  content: "・";
}
@media screen and (max-width: 979px) {
  .t-suitable__item {
    gap: 0;
  }
}

.t-suitable__sub {
  margin-top: 40px;
  margin-inline: auto;
  width: fit-content;
}
@media screen and (max-width: 979px) {
  .t-suitable__sub {
    width: 100%;
    margin-inline: 0;
  }
}

.t-suitable__sub-body {
  margin-top: 24px;
}

.t-suitable__sub-message {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 979px) {
  .t-suitable__sub-message {
    margin-top: 40px;
  }
}

.t-info {
  background: url("../images/info-bg.webp") no-repeat center right/cover;
}
@media screen and (max-width: 979px) {
  .t-info {
    background-image: url("../images/info-bg--sp.webp");
  }
}

.t-info__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.t-price__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 1280px) {
  .t-price__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
}

.t-price__head {
  padding: 32px;
  display: grid;
  place-items: center;
  position: relative;
}
.t-price__head::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/price.webp") no-repeat center/cover;
  opacity: 0.5;
  z-index: 0;
}
@media screen and (max-width: 1280px) {
  .t-price__head {
    padding-block: 240px;
  }
}
@media screen and (max-width: 979px) {
  .t-price__head {
    padding-block: 149px;
  }
}

.t-price__title,
.t-price__note {
  position: relative;
  z-index: 5;
}

.t-price__title {
  font-family: var(--font-serif) !important;
  font-size: 28px;
  line-height: 150%;
  text-align: center;
}
@media screen and (max-width: 979px) {
  .t-price__title {
    font-size: 24px;
  }
}

.t-price__note {
  position: absolute;
  bottom: 32px;
  right: 32px;
}
@media screen and (max-width: 979px) {
  .t-price__note {
    display: none;
  }
}

.t-price__note-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.t-price__box {
  padding: 40px 27px;
  border-top: 1px solid;
}
.t-price__box:last-child {
  padding-inline: 0;
  border-bottom: 1px solid;
}
@media screen and (max-width: 1280px) {
  .t-price__box:first-child {
    border: none;
  }
}
@media screen and (max-width: 979px) {
  .t-price__box {
    padding-inline: 15px;
  }
  .t-price__box:last-child {
    padding-block: 0;
  }
}

.t-price__box-content {
  max-width: 87%;
  margin-right: auto;
}
@media screen and (max-width: 1280px) {
  .t-price__box-content {
    max-width: 100%;
    margin-right: 0;
  }
}

.t-price__plan {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.t-price__plan-head {
  display: flex;
  gap: 30px;
  font-family: "Inter", sans-serif;
  font-weight: var(--font-weight-bold);
}
@media screen and (max-width: 979px) {
  .t-price__plan-head {
    gap: 24px;
  }
}

.t-price__plan-title,
.t-price__plan-price {
  font-family: "Inter", sans-serif;
  font-weight: var(--font-weight-bold);
}

.t-price__plans {
  max-width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: start;
}
.t-price__plans .t-price__plan {
  flex: 1;
  padding-inline: 30px 10px;
}
.t-price__plans .t-price__plan:not(:first-child) {
  border-left: 1px solid;
}
.t-price__plans .t-price__plan-head {
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 979px) {
  .t-price__plans {
    flex-direction: column;
  }
  .t-price__plans .t-price__plan {
    padding-block: 40px;
    padding-inline: 15px;
    width: 100%;
  }
  .t-price__plans .t-price__plan:not(:first-child) {
    border-left: none;
    border-top: 1px solid;
  }
  .t-price__plans .t-price__plan-head {
    flex-direction: row;
  }
}

.t-price__payment {
  margin-top: 120px;
}
@media screen and (max-width: 979px) {
  .t-price__payment {
    margin-top: 80px;
  }
}

.t-price__payment-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .t-price__payment-content {
    flex-direction: column;
    align-items: start;
    gap: 24px;
  }
}

.t-price__payment-body {
  padding-left: 40px;
  position: relative;
}
.t-price__payment-body::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 72px;
  width: 1px;
  background: var(--color-primary);
}
@media (max-width: 768px) {
  .t-price__payment-body {
    padding-left: 0;
  }
  .t-price__payment-body::before {
    display: none;
  }
}

.t-price__payment-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 979px) {
  .t-price__payment-list {
    gap: 16px;
  }
}

.t-price__payment-item {
  font-weight: var(--font-weight-bold);
}
.t-price__payment-item span {
  display: inline-block;
  margin-left: 16px;
  font-weight: 400;
}
@media screen and (max-width: 979px) {
  .t-price__payment-item span {
    margin-left: 8px;
  }
}

.t-price__payment-text {
  margin-top: 8px;
}
@media screen and (max-width: 979px) {
  .t-price__payment-text {
    margin-top: 16px;
  }
}

.t-reserve {
  padding-top: 120px;
  overflow: hidden;
}
@media screen and (max-width: 979px) {
  .t-reserve {
    padding-top: 80px;
  }
}

.t-reserve__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
@media screen and (max-width: 979px) {
  .t-reserve__head {
    align-items: start;
  }
}

.t-reserve__message {
  margin-top: 24px;
  max-width: 85%;
  margin-inline: auto;
  padding: 85px 162px 91px 163px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: url("../images/reserve-bg.webp") no-repeat center center/contain;
}
@media screen and (max-width: 1280px) {
  .t-reserve__message {
    max-width: 782px;
    padding: 64px 142px 70px 150px;
  }
}
@media screen and (max-width: 979px) {
  .t-reserve__message {
    padding-block: 64px;
    padding-inline: 0;
    max-width: 70%;
    margin-inline: auto;
    gap: 16px;
    background: transparent;
    position: relative;
  }
  .t-reserve__message::before {
    content: "";
    position: absolute;
    top: -5%;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 115%;
    background: url("../images/reserve-bg.webp") no-repeat center/contain;
    z-index: -1;
  }
}
@media (max-width: 768px) {
  .t-reserve__message {
    max-width: 480px;
  }
  .t-reserve__message::before {
    top: -12%;
    height: 130%;
  }
}
@media screen and (max-width: 500px) {
  .t-reserve__message {
    max-width: 360px;
  }
  .t-reserve__message::before {
    content: "";
    position: absolute;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-left: 0;
    width: 150vw;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    z-index: -1;
    background-image: url("../images/reserve-bg--sp.webp");
  }
}

.t-reserve__message-title {
  font-weight: var(--font-weight-bold);
}

.t-reserve__message-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.t-cancel {
  padding-top: 120px;
}
@media screen and (max-width: 979px) {
  .t-cancel {
    padding-top: 80px;
  }
}

.t-cancel__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.t-cancel__head-message {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}
@media screen and (max-width: 500px) {
  .t-cancel__head-message {
    max-width: 100%;
  }
}

.t-cancel__cards {
  margin-top: 80px;
  margin-inline: auto;
  max-width: 735px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 80px;
}
@media screen and (max-width: 979px) {
  .t-cancel__cards {
    gap: 40px;
  }
}

.t-cancel__box {
  max-width: 735px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 979px) {
  .t-cancel__box {
    max-width: 100%;
    width: 100%;
  }
}

.t-cancel__box-title {
  font-weight: var(--font-weight-bold);
}

.t-cancel__box-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 979px) {
  .t-cancel__box-body {
    gap: 16px;
  }
}

.t-cancel__action {
  margin-top: 80px;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 979px) {
  .t-cancel__action {
    margin-top: 40px;
  }
}

.t-partnership {
  padding-top: 120px;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1280px) {
  .t-partnership {
    padding-bottom: 406px;
  }
}
@media screen and (max-width: 979px) {
  .t-partnership {
    padding-top: 80px;
  }
}
@media (max-width: 768px) {
  .t-partnership {
    padding-bottom: 306px;
  }
}
@media screen and (max-width: 500px) {
  .t-partnership {
    padding-bottom: 280px;
  }
}

.t-partnership__deco {
  position: absolute;
  right: -96px;
  bottom: 0;
  max-width: 731px;
  width: 52%;
  height: auto;
  display: grid;
  align-items: end;
}
@media screen and (max-width: 1280px) {
  .t-partnership__deco {
    width: 68%;
    right: -90px;
  }
}
@media (max-width: 768px) {
  .t-partnership__deco {
    width: 100%;
    max-width: 500px;
  }
}
@media screen and (max-width: 500px) {
  .t-partnership__deco {
    right: -60px;
  }
}

.t-partnership__content {
  width: 55%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 1280px) {
  .t-partnership__content {
    width: 100%;
  }
}

.t-partnership__body {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
@media screen and (max-width: 979px) {
  .t-partnership__body {
    gap: 16px;
  }
}

.t-attention__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.t-attention__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.t-attention__text span {
  font-weight: var(--font-weight-bold);
}

.t-access {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
  .t-access {
    grid-template-columns: repeat(1, 1fr);
  }
}

.t-access__map {
  overflow: hidden;
}
.t-access__map iframe {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .t-access__map iframe {
    aspect-ratio: 390/318;
  }
}

.t-access__body {
  padding: 113px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 768px) {
  .t-access__body {
    padding-block: 24px 40px;
    padding-inline: 15px;
  }
}

.t-access__text {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 500px) {
  .t-access__text {
    gap: 6px;
  }
}

.u-visually-hidden {
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  border: 0 !important;
  padding: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  margin: -1px !important;
}

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

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

.hidden-xl {
  display: block;
}
@media screen and (max-width: 1280px) {
  .hidden-xl {
    display: none;
  }
}

@media screen and (max-width: 500px) {
  .hidden-sm {
    display: none;
  }
}

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

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

.u-ptb-120 {
  padding-block: 120px;
}
@media screen and (max-width: 979px) {
  .u-ptb-120 {
    padding-block: 80px;
  }
}