@charset "UTF-8";

/* ------------------------------------------------------------------------------
*
* Layout
*
* ------------------------------------------------------------------------------ */
/* ===========================================
*
* base styles
*
* ======================================== */
/* css custom properties
-------------------------*/
:root {
  /* font-size */
  --font-size-11: 0.6875rem;
  --font-size-12: 0.75rem;
  --font-size-13: 0.8125rem;
  --font-size-14: 0.875rem;
  --font-size-15: 0.9375rem;
  --font-size-16: 1rem;
  --font-size-base: 1rem;
  --font-size-17: 1.0625rem;
  --font-size-18: 1.125rem;
  --font-size-20: 1.25rem;
  --font-size-24: 1.5rem;
  --font-size-22: 1.375rem;
  --font-size-25: 1.5625rem;
  --font-size-26: 1.625rem;
  --font-size-27: 1.6875rem;
  --font-size-28: 1.75rem;
  --font-size-30: 1.875rem;
  --font-size-32: 2rem;
  --font-size-35: 2.1875rem;
  --font-size-36: 2.25rem;
  --font-size-40: 2.5rem;
  --font-size-45: 2.8125rem;
  --font-size-48: 3rem;
  --font-size-50: 3.125rem;
  --font-size-55: 3.4375rem;
  --font-size-56: 3.5rem;
  --font-size-60: 3.75rem;
  --font-size-64: 4rem;
  /* width base settings */
  --min-contents-width: 1280px;
  --wide-inner-width: 1280px;
  --inner-width: 1080px;
  /* border-radius */
  --round-5: 5px;
  --round-10: 10px;
  --round-20: 20px;
  --round-30: 30px;
  --round-full: 999px;
  /* logo width */
  --logo-width: 144px;
  /* map height */
  --map-height: 400px;
  /* btn defaults */
  --btn-height: 60px;
  --btn-line-height: 1;
  --btn-font-size: var(--font-size-18);
  --btn-font-weight: var(--font-weight-bold);
  --btn-letter-space: var(--letter-spacing-regular);
  --btn-padding-x: 1.25em;
  --btn-padding-y: calc((var(--btn-height) - var(--btn-font-size) * var(--btn-line-height)) / 2);
  --btn-width-xs: 180px;
  --btn-width-small: 200px;
  --btn-width-regular: 240px;
  --btn-width-medium: 300px;
  --btn-width-large: 350px;
  --btn-width-xl: 400px;
  --btn-font-family: var(--font-main);
  /* header */
  --header-height: 140px;
  /* breadcrumb settings */
  --bread-letter-space: var(--letter-space-base);
  --bread-font-size: 15px;
  --bread-font-weight: var(--font-weight-medium);
  --bread-color: var(--color-text-main);
  --bread-grater-color: var(--color-text-main);
  --bread-grater-content: "/";
  --bread-grater-space: 0 0.5em;
  --bread-hov-color: var(--color-main);
  --bread-link-color: var(--color-text-main);
  --bread-last-item-color: var(--color-main);
  --bread-padding: 1em 0 0;
  --bread-bg-color: transparent;
  --bread-width: 100%;
  /* prev next settings */
  --prev-next-link-width: 10em;
  --prev-next-back-link-width: 8em;
  --prev-next-link-gutter: 1.5em;
  --prev-next-link-padding: 1em 1em;
  --prev-next-link-round: 3em;
  --prev-next-link-color: #b3b3b3;
  --prev-next-link-bg-color: var(--color-gray);
  --prev-next-link-hov-color: var(--color-white);
  --prev-next-link-hov-bg-color: var(--color-main);
  --prev-next-link-font-size: var(--font-size-base);
  /* tag btn settings */
  --tag-btn-color: #b3b3b3;
  --tag-btn-bg-color: var(--color-gray);
  --tag-btn-current-color: var(--color-white);
  --tag-btn-current-bg-color: var(--color-main);
  --tag-btn-round: 3em;
  --tag-btn-padding: 1em 1.5em;
  --tag-btn-font-size: var(--font-size-15);
  /* pagenation settings */
  --pagenation-margin-top: 56px;
  --pagenation-item-width: 3em;
  --pagenation-item-height: 3em;
  --pagenation-item-round: 4px;
  --pagenation-item-font-size: var(--font-size-base);
  --pagenation-item-font-weight: var(--font-weight-medium);
  --pagenation-item-space: 8px;
  --pagenation-item-bg-color: var(--color-gray);
  --pagenation-item-color: #b3b3b3;
  --pagenation-item-current-color: var(--color-white);
  --pagenation-item-current-bg-color: var(--color-main);
  /* spacing */
  --spacing-xs: 10px;
  --spacing-sm: 20px;
  --spacing-md: 30px;
  --spacing-lg: 40px;
  --spacing-xl: 50px;
  --spacing-2xl: 60px;
  --spacing-3xl: 70px;
  --spacing-4xl: 80px;
  --spacing-5xl: 100px;
  --spacing-6xl: 130px;
}

html {
  scroll-padding-top: var(--header-height);
}

body {
  font-size: var(--font-size-base);
  font-family: var(--font-main);
  line-height: var(--line-height-base);
  letter-spacing: var(--letter-spacing-base);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-main);
  min-width: var(--min-contents-width);
  margin: 0 auto;
  position: relative;
  font-style: normal;
  font-optical-sizing: auto;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

/* ===========================================
*
* header style
*
* ======================================== */
.header {
  width: 100%;
  background-color: var(--color-white);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 101;
}

.header__inner {
  padding: 10px 40px;
  box-sizing: border-box;
  min-width: var(--min-contents-width);
  margin: 0 auto;
  width: 100%;
  height: var(--header-height);
}

.header__right {
  width: 980px;
}

.header-info {
  width: 100%;
}

.header__tel-area {
  margin-right: 30px;
}

.header__contact-btn {
  width: 206px;
  margin-right: 40px;
}

.header__contact-btn .cmn-btn--icon-mail {
  --btn-font-size: var(--font-size-15);
  --btn-height: 50px;
}

.header__contact-btn .cmn-btn--icon-mail>span {
  padding-left: 1.8em;
}

.header__contact-btn .cmn-btn--icon-mail>span::before {
  width: 1.2em;
}

.header-nav {
  margin-top: 20px;
  width: 100%;
}

.header-nav__item {
  position: relative;
}

.header-nav__item:not(:last-child) {
  margin-right: 2em;
}

.header-nav__link {
  position: relative;
  text-align: center;
  transition: all 0.3s;
  letter-spacing: var(--letter-spacing-regular);
  line-height: 1;
}

.header-nav__link::after {
  content: "";
  width: 0;
  height: 1px;
  background-color: var(--color-main);
  transition: width 0.3s;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0.5em);
  bottom: 0;
}

.header-nav__link:hover {
  color: var(--color-main);
  opacity: 1;
}

.header-nav__link:hover::after {
  width: 2em;
}

.header-nav__link.current {
  color: var(--color-main);
}

.header-nav__link.current::after {
  width: 2em;
}

/* ===========================================
*
* footer style
*
* ======================================== */
.footer {
  position: relative;
}

.footer__inner {
  padding-block: 80px;
}

.footer__logo {
  --logo-width: 202px;
  margin-inline: auto;
  margin-bottom: 62px;
}

.footer__official-btn {
  width: 514px;
  margin-inline: auto;
  margin-bottom: 60px;
}

.footer-nav {
  padding-top: 20px;
  border-top: 1px solid var(--color-text-main);
}

.footer-nav__list {
  justify-content: center;
  align-items: flex-start;
  gap: 0.75em 2em;
}

.footer-nav__link {
  line-height: 1;
  transition: 0.3s;
  font-size: var(--font-size-18);
  letter-spacing: var(--letter-spacing-regular);
}

.footer-nav__link:hover,
.footer-nav__link.current {
  color: var(--color-main);
}

.footer__copy {
  margin-top: 64px;
  font-size: 10px;
  font-weight: var(--font-weight-regular);
  letter-spacing: var(--letter-spacing-none);
  width: 100%;
  display: block;
  text-align: center;
  line-height: 1.2;
}

/* ===========================================
*  
*  main layouts
* 
* ======================================== */
.wrapper {
  position: relative;
  z-index: 1;
}

/* ------------------------------------------------------------------------------
*
* Object
*
* ------------------------------------------------------------------------------ */
/* ----------------------------------------------------
*  Component（共通化されたコンポーネントスタイル）
*  ---------------------------------------------------- */
/* logo
-------------------------*/
.logo {
  width: var(--logo-width);
  transition: 0.3s;
  display: block;
}

.logo img {
  width: 100%;
  display: block;
}

.logo:hover {
  opacity: 0.7;
}

/* 
inner クラス
-------------------------*/
.inner {
  /* 1080px inner */
  max-width: var(--inner-width);
  width: 100%;
  margin: 0 auto;
}

.wide-inner {
  /* 1280px inner 可変のため子要素は%指定 */
  max-width: var(--wide-inner-width);
  width: 95%;
  margin: 0 auto;
}

/*------------------------------
*
* title
*
------------------------------*/
/* 
imgタイトル
-------------------------*/
/* SP時は高さを個別で指定する必要があります */
.ttl-img--center img {
  margin: 0 auto;
}

.ttl-img--left img {
  margin-right: auto;
}

.ttl-img--right img {
  margin-left: auto;
}

/*
左右にボーダーが付きます。
cmn-ttl要素の専用ラッパークラスです。
*/
.cmn-ttl-border-wrapper {
  gap: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 72px;
}

.cmn-ttl-border-wrapper::after,
.cmn-ttl-border-wrapper::before {
  content: "";
  background-color: var(--color-text-main);
  flex-shrink: 1;
  width: 100%;
  max-width: 276px;
  height: 2px;
  display: block;
}

.cmn-ttl-border-wrapper .cmn-ttl {
  width: fit-content;
  flex-shrink: 0;
  margin-bottom: 0;
}

/* 
title style
-------------------------*/
.cmn-ttl {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-bottom: 70px;
}

.cmn-ttl--center {
  /* 中央揃え */
  align-items: center;
  text-align: center;
}

.cmn-ttl--left {
  /* 左揃え */
  align-items: flex-start;
  text-align: left;
}

.cmn-ttl--right {
  /* 右揃え */
  align-items: flex-end;
  text-align: right;
}

.cmn-ttl__main {
  font-size: var(--font-size-40);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-regular);
  line-height: 1.85;
  margin-block: -0.425em;
  display: inline-block;
}

.cmn-ttl__sub {
  display: inline-block;
}

.cmn-ttl__sub img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* cmn-border-left-ttl
-------------------------*/
.cmn-border-left-ttl {
  font-size: var(--font-size-30);
  color: var(--color-main-dark);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-medium);
  line-height: 1.3;
  padding-left: 0.8em;
  border-left: 4px solid var(--color-main-medium);
}

/*------------------------------
*
* tel style
*
------------------------------*/
a[href^="tel:"] {
  pointer-events: none;
}

.tel-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.tel-replace {
  width: fit-content;
  height: 14px;
}

.tel-replace>img {
  display: block;
}

.tel {
  /* tel　style */
  --tel-font-size: var(--font-size-30);
  --tel-txt-font-size: 0.6666666667em;
  --tel-txt-space: 0;
  font-family: var(--font-main, sans-serif);
  font-weight: var(--font-weight-medium, 700);
  letter-spacing: var(--letter-spacing-regular);
  font-size: var(--tel-font-size, 28px);
  line-height: 1;
  position: relative;
  display: block;
  width: fit-content;
}

.tel__text {
  /* tel txt style */
  font-size: var(--tel-txt-font-size, 0.75em);
  margin-right: var(--tel-txt-space, 0.25em);
}

/*
 snsクラス
-------------------------*/
.sns {
  --sns-icon-space: 20px;
  --sns-icon-size: 35px;
  gap: var(--sns-icon-space);
  display: flex;
  flex-wrap: wrap;
}

.sns__icon {
  width: var(--sns-icon-size);
  transition: 0.3s;
  display: block;
}

.sns__icon:hover {
  opacity: 0.7;
}

.sns__icon img {
  width: 100%;
}

/*------------------------------
*
* table style
*
------------------------------*/
table {
  --table-replace-size: 15px;
  --table-replace-space: .75em;
}

table .replace {
  /* テーブルタグ内で使用するリプレイステキスト */
  height: var(--table-replace-size);
  margin-left: var(--table-replace-space);
  display: inline-block;
}

table .replace>img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-table {
  --table-letter-spacing: var(--letter-spacing-regular);
  --table-th-text-align: right;
  --table-th-x-padding: 1em;
  --table-th-y-padding: 1.1em;
  --table-th-bg-color: transparent;
  --table-th-color: var(--color-main);
  --table-th-width: 164px;
  --table-td-x-padding: 1em;
  --table-td-y-padding: 1.1em;
  --table-td-bg-color: transparent;
  --table-td-color: var(--color-text-main);
  --table-td-width: calc(100% - var(--table-th-width));
  --table-border-color: var(--color-text-main);
  --table-width: 100%;
  width: var(--table-width);
  letter-spacing: var(--table-letter-spacing);
  font-size: var(--font-size-20);
}

.main-table tr {
  width: 100%;
}

.main-table tr:not(:last-child) {
  border-bottom: 1px solid var(--table-border-color);
}

.main-table tr:not(:first-child) th {
  border-top: 1px solid var(--table-th-border-color);
}

.main-table tr:not(:first-child) td {
  border-top: 1px solid var(--table-td-border-color);
}

.main-table th,
.main-table td {
  vertical-align: middle;
  font-weight: var(--font-weight-medium);
}

.main-table th {
  width: var(--table-th-width);
  background-color: var(--table-th-bg-color);
  color: var(--table-th-color);
  text-align: var(--table-th-text-align);
  padding-inline: var(--table-th-x-padding);
  padding-block: var(--table-th-y-padding);
}

.main-table td {
  width: var(--table-td-width);
  background-color: var(--table-td-bg-color);
  color: var(--table-td-color);
  padding-inline: var(--table-td-x-padding);
  padding-block: var(--table-td-y-padding);
}

/*------------------------------
*
* text
*
------------------------------*/
/* 
文章テキスト スタイル
-------------------------*/
.cmn-sentence {
  /* どこでも変更できるよう変数化 */
  --sentence-line-height: 2.3;
  --sentence-p-margin: 1.5em;
  letter-spacing: var(--letter-spacing-regular);
  font-weight: var(--font-weight-medium);
  line-height: var(--sentence-line-height);
  /* 疑似要素でline-height分をネガティブマージンで調整 */
}

.cmn-sentence p::before,
.cmn-sentence p::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}

.cmn-sentence p::before {
  margin-top: calc((1 - var(--sentence-line-height)) * 0.5em);
}

.cmn-sentence p::after {
  margin-bottom: calc((1 - var(--sentence-line-height)) * 0.5em);
}

.cmn-sentence p:not(:last-child) {
  margin-bottom: var(--sentence-p-margin);
}

/* 
画像
-------------------------*/
.cmn-img img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

/* 
* カラムスタイル
* flexを使用したカラム指定を行うクラスです
* flx-baseとセットで使用します
* col-container-PCColumnNum-SPColumnNum
-------------------------*/
.col-container-2-1,
.col-container-2-2 {
  /* PC2列　SP1列 */
  /* PC2列　SP2列 */
  /* 上下の余白 */
  --col-y-space: 40px;
  /* 左右の余白 */
  --col-x-space: 40px;
  gap: var(--col-y-space, 40px) var(--col-x-space, 40px);
}

.col-container-2-1>.col-item,
.col-container-2-2>.col-item {
  width: calc((100% - var(--col-x-space, 40px)) / 2);
}

.col-container-3-1,
.col-container-3-2 {
  /* PC3列　SP1列 */
  /* PC3列　SP2列 */
  /* 上下の余白 */
  --col-y-space: 40px;
  /* 左右の余白 */
  --col-x-space: 30px;
  gap: var(--col-y-space, 40px) var(--col-x-space, 30px);
}

.col-container-3-1>.col-item,
.col-container-3-2>.col-item {
  width: calc((100% - var(--col-x-space, 30px) * 2) / 3);
}

.col-container-4-2 {
  /* PC4列　SP2列 */
  /* 上下の余白 */
  --col-y-space: 30px;
  /* 左右の余白 */
  --col-x-space: 20px;
  gap: var(--col-y-space, 30px) var(--col-x-space, 20px);
}

.col-container-4-2>.col-item {
  width: calc((100% - var(--col-x-space, 20px) * 3) / 4);
}

/*------------------------------
*
* btn style
*
------------------------------*/
.cmn-btn--rounded {
  border-radius: var(--round-20);
}

.cmn-btn--rounded-full {
  border-radius: var(--round-full);
}

.cmn-btn--primary {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: block;
  text-align: center;
  position: relative;
  z-index: 1;
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  line-height: var(--btn-line-height);
  letter-spacing: var(--btn-letter-space);
  font-family: var(--btn-font-family);
  padding-inline: var(--btn-padding-x);
  padding-block: calc((var(--btn-height) - var(--btn-font-size) * var(--btn-line-height)) / 2);
  color: var(--color-white);
  background-color: var(--color-accent);
}

.cmn-btn--primary::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  translate: -100% 0;
  z-index: -1;
  background-color: var(--color-main-darken);
  transition: 0.3s;
}

.cmn-btn--primary:hover::before {
  translate: 0;
}

.cmn-btn--icon-mail>span {
  padding-left: 2em;
  position: relative;
  display: inline-block;
}

.cmn-btn--icon-mail>span::before {
  width: 1em;
  height: 1em;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../img/common/icon_mail_white.png) no-repeat center/contain;
  content: "";
}

.cmn-btn--arrow {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.cmn-btn--arrow::after {
  content: "";
  width: 90px;
  height: 1px;
  background-color: var(--color-white);
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  transition: 0.3s;
}

.cmn-btn--arrow:hover::after {
  translate: 25% -50%;
}

.cmn-btn--text-left {
  padding-inline: 60px;
  text-align: left;
}

.cmn-btn--arrow-down {
  position: relative;
  z-index: 1;
}

.cmn-btn--arrow-down::after {
  content: "";
  width: 15px;
  height: 9px;
  background: url("/img/common/arrow_down_white.svg") no-repeat top center/contain;
  position: absolute;
  right: 20px;
  top: 50%;
  translate: 0 -50%;
  transition: 0.3s;
}

.cmn-btn--arrow-down:hover::after {
  translate: 0 -25%;
}

.cmn-btn--xs {
  max-width: var(--btn-width-xs);
}

.cmn-btn--sm {
  width: var(--btn-width-small);
}

.cmn-btn--rg {
  width: var(--btn-width-regular);
}

.cmn-btn--md {
  width: var(--btn-width-medium);
}

.cmn-btn--lg {
  width: var(--btn-width-large);
}

.cmn-btn--xl {
  width: var(--btn-width-xl);
}

.cmn-btn--center {
  margin: 0 auto;
}

.cmn-btn--left {
  margin-right: auto;
}

.cmn-btn--right {
  margin-left: auto;
}

/*------------------------------
*
* mv main visual
*
------------------------------*/
.mv {
  width: 100%;
  position: relative;
  z-index: 1;
  column-count: 2;
  column-gap: 0;
}

.mv__catch {
  font-size: clamp(32px, 2.0833333333vw, 40px);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-regular);
  line-height: 1.8em;
  column-width: 43.4895833333%;
  height: clamp(259px, 20.3125vw, 389px);
  background-color: var(--color-theme);
  place-content: center;
  margin-top: 17px;
  margin-right: 17px;
}

.mv__catch__main {
  display: block;
  width: fit-content;
  margin-inline: auto;
}

.mv__catch__main::first-letter {
  font-size: 1.25em;
  color: var(--color-main);
}

.mv__img--tl {
  margin-right: 17px;
  height: clamp(283px, 22.0833333333vw, 424px);
  column-width: 43.4895833333%;
}

.mv__img--tr {
  height: clamp(344px, 26.875vw, 516px);
  column-width: 55.625%;
  margin-bottom: 17px;
}

.mv__img--br {
  height: clamp(198px, 15.46875vw, 297px);
  column-width: 55.625%;
}

/*------------------------------
*
* main style sv(sub visual)
*
------------------------------*/
.sv {
  width: 100%;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  overflow: hidden;
  display: grid;
  grid-template-columns: 52.6315789474% 1fr;
  grid-template-rows: clamp(360px, 28.125vw, 540px);
  padding-right: 20px;
  gap: 20px;
}

.sv__catch {
  z-index: 20;
  font-size: var(--font-size-40);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-regular);
  background-color: var(--color-theme);
  text-align: center;
  place-content: center;
  order: 2;
}

.sv__catch::first-letter {
  font-size: 1.25em;
  color: var(--color-main);
}

.sv__img {
  order: 1;
}

/*------------------------------
*
* section-link style
*
------------------------------*/
.section-links__list {
  display: flex;
  justify-content: center;
  gap: 64px 100px;
}

.section-links__item {
  max-width: 406px;
  width: 100%;
}

/*------------------------------
*
* pagenation style
*
------------------------------*/
.pagenation {
  margin-top: var(--pagenation-margin-top);
  display: flex;
  justify-content: center;
}

.pagenation li {
  display: block;
  width: var(--pagenation-item-width);
  height: var(--pagenation-item-height);
  border-radius: var(--pagenation-item-round);
  font-size: var(--pagenation-item-font-size);
  line-height: var(--pagenation-item-height);
  font-weight: var(--pagenation-item-font-weight);
  margin: 0 var(--pagenation-item-space);
  color: var(--pagenation-item-color);
  background: var(--pagenation-item-bg-color);
  text-align: center;
  transition: 0.3s;
}

.pagenation li>a {
  width: var(--pagenation-item-width);
  height: var(--pagenation-item-height);
  display: grid;
  place-content: center;
}

.pagenation li:has(a):hover {
  background-color: var(--pagenation-item-current-bg-color);
  color: var(--pagenation-item-current-color);
}

.pagenation .current {
  background-color: var(--pagenation-item-current-bg-color);
  color: var(--pagenation-item-current-color);
}

/*------------------------------
*
* post-card
*
------------------------------*/
.post-cards-list {
  --col-x-space: 60px;
  --col-y-space: 60px;
}

.post-card-item__thumb {
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-bottom: 28px;
  width: 100%;
}

.post-card-item__date {
  line-height: 1;
  font-size: var(--font-size-18);
  letter-spacing: var(--letter-spacing-regular);
  position: relative;
  display: block;
  z-index: 1;
  color: var(--main-color);
  margin-bottom: 10px;
}

.post-card-item__tags {
  margin-top: 10px;
}

.post-card-item__body {
  width: 100%;
}

.post-card-item__ttl {
  font-size: var(--font-size-20);
  letter-spacing: var(--letter-spacing-regular);
  font-weight: var(--font-weight-medium);
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/*------------------------------
*
* tag
*
------------------------------*/
.tag {
  --tag-font-size: var(--font-size-12);
  --tag-height: 20px;
  --tag-x-padding: 16px;
  --tag-round: 1em;
  --tag-color: var(--color-white);
  --tag-bg-color: var(--color-main);
  display: inline-block;
  font-size: var(--tag-font-size);
  color: var(--tag-color);
  background-color: var(--tag-bg-color);
  border-radius: var(--tag-round);
  letter-spacing: var(--letter-spacing-regular);
  font-weight: var(--font-weight-medium);
  line-height: var(--tag-height);
  padding: 0 var(--tag-x-padding);
}

.tag-link {
  transition: 0.3s;
}

.tag-link.tag {
  padding: 0;
}

.tag-link>a {
  padding: 0 var(--tag-x-padding);
}

.tag-link:hover {
  background-color: var(--color-main-darken);
}

.tag-list {
  --tag-space: 8px;
  justify-content: flex-start;
  gap: var(--tag-space);
}

/*------------------------------
*
* tag btn
*
------------------------------*/
.tag-btns {
  margin-bottom: 40px;
  gap: 16px;
}

.tag-btn {
  padding: var(--tag-btn-padding);
  background-color: var(--tag-btn-bg-color);
  color: var(--tag-btn-color);
  border-radius: var(--tag-btn-round);
  font-size: var(--tag-btn-font-size);
  display: inline-block;
  transition: all 0.3s;
  line-height: 1;
}

.tag-btn:hover {
  color: var(--tag-btn-current-color);
  background-color: var(--tag-btn-current-bg-color);
  opacity: 1;
}

.tag-btn.current {
  color: var(--tag-btn-current-color);
  background-color: var(--tag-btn-current-bg-color);
}

/*------------------------------
*
* tag select
*
------------------------------*/
.tag-select-area {
  position: relative;
  z-index: 1;
  width: fit-content;
}

.tag-select-area::before {
  content: "";
  width: 17px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 36px;
  translate: 0% -50%;
  z-index: 1;
  background: url("/img/course/arrow_pulldown.svg") no-repeat top center/contain;
}

.tag-select-area select,
.tag-select-area option {
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background: transparent;
  cursor: pointer;
  box-shadow: unset;
  outline: unset;
}

.tag-select-area select::before,
.tag-select-area select::after,
.tag-select-area option::before,
.tag-select-area option::after {
  width: 0;
  left: 0;
  display: none;
}

.tag-select-area select:hover,
.tag-select-area select:focus-visible,
.tag-select-area select:focus,
.tag-select-area option:hover,
.tag-select-area option:focus-visible,
.tag-select-area option:focus {
  border-color: var(--color-main);
}

.tag-select-area .tag-select {
  font-size: var(--font-size-18);
  line-height: 1;
  padding: 17px 36px;
  text-align: center;
  color: var(--color-white);
  font-family: var(--font-main);
  font-weight: var(--font-weight-medium);
  background-color: var(--color-accent);
  width: 346px;
}

.tag-select-area .tag-select__option {
  width: 100%;
  text-align: center;
  background-color: var(--color-white);
  color: var(--color-text-main);
}

/*------------------------------
*
* prev next style
*
------------------------------*/
.prev-next__area {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  line-height: 1.2;
}

.prev-next__item.prev,
.prev-next__item.next {
  width: var(--prev-next-link-width);
}

.prev-next__item:not(:last-child) {
  margin-right: var(--prev-next-link-gutter);
}

.prev-next__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: var(--prev-next-link-color);
  background-color: var(--prev-next-link-bg-color);
  padding: var(--prev-next-link-padding);
  font-size: var(--prev-next-link-font-size);
}

.prev-next__link:hover {
  background-color: var(--prev-next-link-hov-bg-color);
  color: var(--prev-next-link-hov-color);
  opacity: 1;
}

.prev-next__link.prev,
.prev-next__link.next {
  justify-content: center;
  align-items: center;
  border-radius: var(--prev-next-link-round);
  text-align: center;
}

.prev-next__link.back {
  text-align: center;
  border-radius: var(--prev-next-link-round);
  justify-content: center;
  width: var(--prev-next-back-link-width);
}

.prev-next__link.prev,
.prev-next__link.next,
.prev-next__link.back {
  transition: all 0.3s;
}

/*------------------------------
*
* breadcrumb style
*
------------------------------*/
.bread-crumb {
  width: var(--bread-width, 100%);
  background-color: var(--bread-bg-color, transparent);
}

.bread-crumb__list {
  display: flex;
  width: 100%;
  font-size: var(--bread-font-size, 14px);
  letter-spacing: var(--bread-letter-space, 0.05em);
  font-weight: var(--bread-font-weight, 400);
  overflow: hidden;
  padding: var(--bread-padding, 1em 0);
}

.bread-crumb__item {
  display: flex;
  align-items: center;
  color: var(--bread-color);
  white-space: nowrap;
}

.bread-crumb__item:not(:last-child)::after {
  content: var(--bread-grater-content, ">");
  margin: var(--bread-grater-space, 0.5em);
  color: var(--bread-grater-color);
}

.bread-crumb__item:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  color: var(--bread-last-item-color);
}

.bread-crumb__link {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all 0.3s;
  line-height: 1.2;
  color: var(--bread-link-color);
}

.bread-crumb__link:hover {
  opacity: 1;
  color: var(--bread-hov-color);
}

/* 
* gallery-list
-------------------------*/
.gallery-list {
  --col-y-space: 55px;
  --col-x-space: 60px;
}

/* 
* gallery-item
-------------------------*/
.gallery-item__img {
  aspect-ratio: 1/1;
  width: 100%;
  margin-bottom: 10px;
}

.gallery-item__ttl {
  font-size: var(--font-size-20);
  letter-spacing: var(--letter-spacing-regular);
  font-weight: var(--font-weight-medium);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 
* voice-list
-------------------------*/
/* 
* gallery-item
-------------------------*/
.voice-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row-reverse;
  padding: 40px;
  gap: 45px;
  background-color: #faf9f7;
}

.voice-item:not(:last-child) {
  margin-bottom: 25px;
}

.voice-item__icon {
  aspect-ratio: 1/1;
  flex-shrink: 0;
  width: 180px;
  overflow: hidden;
  border-radius: 50%;
}

.voice-item__content {
  width: 100%;
  flex-shrink: 1;
}

.voice-item__head {
  line-height: 1;
  margin-bottom: 35px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.voice-item__age,
.voice-item__gender {
  font-size: var(--font-size-18);
  line-height: 1;
  letter-spacing: var(--letter-spacing-regular);
}

.voice-item__age {
  padding-right: 1em;
  margin-right: 1em;
  border-right: 1px solid var(--color-text-main);
}

.voice-item__sentence {
  font-size: var(--font-size-20);
  --sentence-line-height: 1.9;
}

/* pagetop-btn
-------------------------*/
.pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 101;
  width: 66px;
}

/* ----------------------------------------------------
*  Utility（スタイルの調整用クラス　common.cssにあるものは省略）
*  ---------------------------------------------------- */
/* margin style
  -------------------------*/
.mx--center {
  margin-inline: auto;
}

.mt-xs {
  margin-top: var(--spacing-xs);
}

.mt-sm {
  margin-top: var(--spacing-sm);
}

.mt-md {
  margin-top: var(--spacing-md);
}

.mt-lg {
  margin-top: var(--spacing-lg);
}

.mt-xl {
  margin-top: var(--spacing-xl);
}

.mt-2xl {
  margin-top: var(--spacing-2xl);
}

.mt-3xl {
  margin-top: var(--spacing-3xl);
}

.mt-4xl {
  margin-top: var(--spacing-4xl);
}

.mt-5xl {
  margin-top: var(--spacing-5xl);
}

.mt-6xl {
  margin-top: var(--spacing-6xl);
}

.mb-xs {
  margin-bottom: var(--spacing-xs);
}

.mb-sm {
  margin-bottom: var(--spacing-sm);
}

.mb-md {
  margin-bottom: var(--spacing-md);
}

.mb-lg {
  margin-bottom: var(--spacing-lg);
}

.mb-xl {
  margin-bottom: var(--spacing-xl);
}

.mb-2xl {
  margin-bottom: var(--spacing-2xl);
}

.mb-3xl {
  margin-bottom: var(--spacing-3xl);
}

.mb-4xl {
  margin-bottom: var(--spacing-4xl);
}

.mb-5xl {
  margin-bottom: var(--spacing-5xl);
}

.mb-6xl {
  margin-bottom: var(--spacing-6xl);
}

/* padding style
-------------------------*/
.cmn-pd {
  padding: var(--spacing-6xl) 0;
}

.pt-xs {
  margin-top: var(--spacing-xs);
}

.pt-sm {
  margin-top: var(--spacing-sm);
}

.pt-md {
  margin-top: var(--spacing-md);
}

.pt-lg {
  margin-top: var(--spacing-lg);
}

.pt-xl {
  margin-top: var(--spacing-xl);
}

.pt-2xl {
  margin-top: var(--spacing-2xl);
}

.pt-3xl {
  margin-top: var(--spacing-3xl);
}

.pt-4xl {
  margin-top: var(--spacing-4xl);
}

.pt-5xl {
  margin-top: var(--spacing-5xl);
}

.pt-6xl {
  margin-top: var(--spacing-6xl);
}

.pb-xs {
  margin-bottom: var(--spacing-xs);
}

.pb-sm {
  margin-bottom: var(--spacing-sm);
}

.pb-md {
  margin-bottom: var(--spacing-md);
}

.pb-lg {
  margin-bottom: var(--spacing-lg);
}

.pb-xl {
  margin-bottom: var(--spacing-xl);
}

.pb-2xl {
  margin-bottom: var(--spacing-2xl);
}

.pb-3xl {
  margin-bottom: var(--spacing-3xl);
}

.pb-4xl {
  margin-bottom: var(--spacing-4xl);
}

.pb-5xl {
  margin-bottom: var(--spacing-5xl);
}

.pb-6xl {
  margin-bottom: var(--spacing-6xl);
}

/* 
pc時に非表示
-------------------------*/
.pc-none {
  display: none !important;
}

/* ----------------------------------------------------
*  Project （ページごとのスタイルなど）
*  ---------------------------------------------------- */
/* ===========================================
*
* top page style
*
* ======================================== */
/*------------------------------
*
* top-gallery 
*
------------------------------*/
.top-gallery {
  padding-block: 140px;
}

.top-gallery__ttl {
  margin-bottom: 50px;
}

.top-gallery__btn {
  width: 514px;
  margin-top: 55px;
}

/*------------------------------
*
* top-help
*
------------------------------*/
.top-help {
  padding-block: 160px 170px;
  position: relative;
  z-index: 1;
}

.top-help__ttl {
  margin-bottom: 70px;
}

.top-help__ttl .cmn-ttl__main {
  position: relative;
  z-index: 1;
}

.top-help__ttl .cmn-ttl__main::after {
  content: "";
  width: 3.725em;
  height: 2.875em;
  background: url("/img/top/deco_shine.png") no-repeat top center/contain;
  position: absolute;
  top: 0;
  right: 0;
  translate: 2.2em -2.75em;
  z-index: -1;
}

.top-help__imgs {
  width: 41.6666666667%;
  max-width: 800px;
  position: absolute;
  top: 50px;
  right: calc(50% + 60px);
}

.top-help__img01 {
  width: 90.5%;
  height: 558px;
}

.top-help__img02 {
  width: 60%;
  height: 336px;
  margin-top: -20px;
  margin-left: auto;
  z-index: 10;
  position: relative;
}

.top-help__content {
  width: 514px;
  margin-left: auto;
}

.top-help__sentence {
  font-size: var(--font-size-20);
  --sentence-line-height: 2.3;
}

.top-help__btn {
  margin-top: 72px;
}

.intro-course-bg {
  padding-block: 250px 0;
  background: url("/img/top/course_bg_b.png") no-repeat bottom left 85px/28.8% auto, url("/img/top/intro_course_bg.jpg") no-repeat top center/cover;
  position: relative;
  z-index: 3;
}

.intro-course-bg::before {
  width: 100%;
  height: 104px;
  background: url("/img/top/intro_top_wave.png") no-repeat bottom center/max(1920px, 100%) 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  z-index: -2;
}

.intro-course-bg::after {
  content: "";
  width: 394px;
  aspect-ratio: 394/243;
  background: url("/img/top/familly_illust.png") no-repeat top center/contain;
  top: -153px;
  right: 5.7291666667%;
  position: absolute;
  z-index: -1;
}

/*------------------------------
*
* top-intro
*
------------------------------*/
.top-intro {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.top-intro::before,
.top-intro::after {
  content: "";
  position: absolute;
  z-index: -1;
}

.top-intro::before {
  width: 359px;
  aspect-ratio: 359/484;
  background: url("/img/top/intro_deco_r.png") no-repeat top center/contain;
  left: 4.53125%;
  top: 64px;
}

.top-intro::after {
  width: 383px;
  aspect-ratio: 383/289;
  right: 0;
  background: url("/img/top/intro_deco_l.png") no-repeat top center/contain;
  top: 371px;
  right: 3.6458333333%;
}

.top-intro__ttl {
  margin-bottom: 70px;
}

.top-intro__movie {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.top-intro__movie>iframe,
.top-intro__movie>video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 1;
}

/*------------------------------
*
* top-course
*
------------------------------*/
.top-course {
  padding-block: 210px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.top-course::after {
  content: "";
  width: 9.6875%;
  left: max(-40px, 50% - 860px);
  aspect-ratio: 186/418;
  background: url("/img/top/course_illust_l.png") no-repeat top center/contain;
  top: 154px;
  position: absolute;
  z-index: -1;
}

.top-course__sentence {
  font-size: var(--font-size-20);
  --sentence-line-height: 2.3;
}

.top-course__content {
  width: 545px;
}

.top-course__btn {
  width: 514px;
  margin-top: 72px;
}

.top-course__imgs {
  width: 43.0208333333%;
  max-width: 826px;
  position: absolute;
  top: 83px;
  left: calc(50% + 97px);
}

.top-course__imgs::before {
  content: "";
  width: 24.0920096852%;
  aspect-ratio: 199/259;
  background: url("/img/top/course_illust_family.png") no-repeat top center/contain;
  bottom: 0;
  left: 0;
  translate: -42.2110552764% 0;
  position: absolute;
  z-index: 1;
}

.top-course__img01 {
  width: 79.6610169492%;
  height: 365px;
}

.top-course__img02 {
  width: 89.1041162228%;
  height: 430px;
  margin-top: 35px;
  margin-left: auto;
}

/*------------------------------
*
* top-voice
*
------------------------------*/
.top-voice {
  padding-block: 130px 150px;
}

.top-voice__ttl {
  margin-bottom: 70px;
}

.top-voice .voice-item__sentence>p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.top-voice__btn {
  width: 514px;
  margin-top: 72px;
}

/*------------------------------
*
* page-link
*
------------------------------*/
.page-link__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0px;
}

.page-link-item__link {
  position: relative;
  z-index: 1;
  height: 428px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--color-white);
}

.page-link-item__link::after,
.page-link-item__link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

.page-link-item__link::before {
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 1px solid var(--color-white);
  z-index: -1;
}

.page-link-item__link::after {
  width: 100%;
  height: 100%;
  background-color: rgb(var(--color-text-main-rgb)/0.74);
  z-index: -2;
  transition: all 0.3s;
}

.page-link-item__link:hover::after {
  background-color: rgba(58, 70, 31, 0.8);
  mix-blend-mode: multiply;
}

.page-link-item__img {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -3;
  width: 100%;
  height: 100%;
}

.page-link-item__sentence {
  font-size: var(--font-size-20);
  --sentence-line-height: 1.9;
}

/*------------------------------
*
* overview
*
------------------------------*/
.overview {
  padding-bottom: 0;
}

.overview__ttl {
  margin-bottom: 49px;
}

.overview__map {
  margin-top: 109px;
  height: var(--map-height);
}

.overview__table {
  --table-th-width: 164px;
  --table-th-text-align: center;
  --table-th-left: 0;
}

.overview__table .note {
  margin-left: 1em;
  font-size: var(--font-size-16);
}

/*------------------------------
*
* top-news
*
------------------------------*/
.top-news {
  background: url("/img/top/news_bg.jpg") no-repeat top center/cover;
}

.top-news__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 70px;
}

.top-news__ttl {
  margin-bottom: 0;
}

.top-news__btn {
  width: 406px;
}

/*------------------------------
*
* cta
*
------------------------------*/
/* .cta {
  background: url("/img/top/contact_bg.jpg") no-repeat top center/cover;
} */
.cta__box {
  padding: 90px calc(50% - 540px);
  background-color: rgb(var(--color-main-rgb)/0.9);
  position: relative;
  z-index: 1;
}

.cta__box::before {
  content: "";
  width: 179px;
  aspect-ratio: 179/293;
  background: url("/img/top/contact_illust.png") no-repeat top center/contain;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  translate: 30px 48px;
}

.cta__ttl {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-white);
  max-width: 980px;
  margin-inline: auto;
}

.cta__sentence {
  font-size: var(--font-size-20);
  --sentence-line-height: 1.9;
}

.cta__contact-btn {
  --btn-height: 80px;
  --btn-font-size: var(--font-size-24);
  margin-top: 52px;
  width: 780px;
}

.cta__tel-area {
  gap: 12px;
}

.cta__tel-area .tel {
  --tel-font-size: var(--font-size-50);
}

.cta__tel-area .tel__text {
  font-size: 0.62em;
}

.cta__tel-area__note {
  font-size: var(--font-size-14);
  letter-spacing: var(--letter-spacing-regular);
  font-weight: var(--font-weight-regular);
  line-height: 1;
}

.cta__sns {
  --sns-icon-size: 40px;
  margin-top: 10px;
}

.cta__flex {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 35px;
}

/* ===========================================
*
* about-page
*
* ======================================== */
/*------------------------------
*
* greeting
*
------------------------------*/
.greeting {
  padding-block: 140px;
}

.greeting__container {
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: space-between;
}

.greeting__ttl {
  margin-bottom: 70px;
}

.greeting__content {
  width: 605px;
}

.greeting__sentence {
  --sentence-line-height: 1.9;
  font-size: var(--font-size-20);
}

.greeting__img {
  width: 378px;
}

.profile {
  margin-top: 70px;
  padding: 48px 80px;
  display: flex;
  align-items: flex-start;
  gap: 75px;
}

.profile__content {
  width: 372px;
  flex-shrink: 0;
}

.profile__ttl {
  font-size: var(--font-size-28);
  margin-bottom: 45px;
}

.profile__data-item {
  font-size: var(--font-size-20);
  letter-spacing: var(--letter-spacing-regular);
}

.profile__data-item:not(:last-child) {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--color-main);
}

.profile__data-item dt {
  color: var(--color-main);
  line-height: 1;
  margin-bottom: 11px;
}

.profile__data-item dd {
  line-height: 1.9;
}

.profile__img {
  flex-shrink: 1;
  width: 100%;
}

/*------------------------------
*
* car
*
------------------------------*/
.car-wrapper {
  padding-block: 240px 160px;
  background: url("/img/top/intro_course_bg.jpg") no-repeat top center/cover;
  position: relative;
  z-index: 3;
}

.car-wrapper::before {
  width: 100%;
  height: 104px;
  background: url("/img/top/intro_top_wave.png") no-repeat bottom center/max(1920px, 100%) 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  z-index: -2;
}

.car-wrapper::after {
  content: "";
  width: 394px;
  aspect-ratio: 394/243;
  background: url("/img/top/familly_illust.png") no-repeat top center/contain;
  top: -153px;
  right: 5.7291666667%;
  position: absolute;
  z-index: -1;
}

.car {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.car::before,
.car::after {
  content: "";
  position: absolute;
  z-index: -1;
}

.car::before {
  width: 359px;
  aspect-ratio: 359/484;
  background: url("/img/top/intro_deco_r.png") no-repeat top center/contain;
  left: 4.53125%;
  top: 68px;
}

.car::after {
  width: 383px;
  aspect-ratio: 383/289;
  right: 0;
  background: url("/img/top/intro_deco_l.png") no-repeat top center/contain;
  top: 380px;
  right: 3.6458333333%;
}

.car__box {
  padding: 28px 55px;
}

.car__gallery {
  width: 700px;
  overflow: auto;
  margin-top: 94px;
  margin-inline: auto;
  padding-bottom: 54px;
}

.car__gallery-inner {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 40px;
}

.car__gallery-img {
  width: 700px;
  min-width: 700px;
  max-width: 700px;
  aspect-ratio: 1/1;
}

/*------------------------------
*
* reason
*
------------------------------*/
.reason-item {
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 50px;
}

.reason-item:not(:last-child) {
  margin-bottom: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--color-text-main);
}

.reason-item:nth-child(even) {
  flex-direction: row-reverse;
}

.reason-item__content {
  flex-shrink: 1;
  width: 100%;
}

.reason-item__sentence {
  font-size: var(--font-size-20);
  --sentence-line-height: 1.9;
}

.reason-item__note {
  margin-top: 56px;
  --sentence-line-height: 1.5;
}

.reason-item__img {
  flex-shrink: 0;
  width: 446px;
  aspect-ratio: 446/380;
  position: relative;
  z-index: 1;
}

.reason-item__img::after {
  content: "";
  position: absolute;
  bottom: 0;
}

.reason-item__img--01 {
  margin-bottom: 20px;
}

.reason-item__img--01::after {
  right: 0;
  width: 65.6950672646%;
  aspect-ratio: 293/134;
  translate: 19.4539249147% 14.9253731343%;
  background: url("/img/about/reason_illust01.png") no-repeat top center/contain;
}

.reason-item__img--02 {
  margin-bottom: 33px;
}

.reason-item__img--02::after {
  left: 0;
  width: 39.2376681614%;
  aspect-ratio: 175/228;
  translate: -32% 14.4736842105%;
  background: url("/img/about/reason_illust02.png") no-repeat top center/contain;
}

.reason-item__img--03 {
  margin-bottom: 49px;
}

.reason-item__img--03::after {
  right: 0;
  width: 65.4708520179%;
  aspect-ratio: 292/127;
  translate: 28.7671232877% 38.5826771654%;
  background: url("/img/about/reason_illust03.png") no-repeat top center/contain;
}

.reason-item__img--04 {
  margin-bottom: 39px;
}

.reason-item__img--04::after {
  left: 0;
  width: 27.5784753363%;
  aspect-ratio: 123/216;
  translate: -34.9593495935% 18.0555555556%;
  background: url("/img/about/reason_illust04.png") no-repeat top center/contain;
}

.reason-item__img--05 {
  margin-bottom: 49px;
}

.reason-item__img--05::after {
  right: 0;
  width: 52.6905829596%;
  aspect-ratio: 235/136;
  translate: 18.7234042553% 36.0294117647%;
  background: url("/img/about/reason_illust05.png") no-repeat top center/contain;
}

.reason-item__ttl {
  font-size: var(--font-size-30);
  letter-spacing: var(--letter-spacing-regular);
  margin-bottom: 41px;
}

.reason-item__ttl .num {
  font-size: 46px;
  display: inline-block;
  margin-top: -0.25em;
}

/* ===========================================
*
* course-page
*
* ======================================== */
/*------------------------------
*
* course
*
------------------------------*/
.course__flex {
  justify-content: flex-end;
  align-items: center;
  display: flex;
  margin-bottom: 80px;
}

.course__tax-txt {
  width: calc(100% - 692px);
  text-align: center;
  font-size: var(--font-size-20);
  line-height: 1;
  letter-spacing: var(--letter-spacing-regular);
  font-weight: var(--font-weight-medium);
}

.course-section {
  background-color: #faf9f7;
  padding: 53px 50px 40px;
}

.course-section__ttl {
  margin-bottom: 35px;
  border-bottom: 1px solid var(--color-text-main);
  padding-bottom: 23px;
  text-align: center;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-28);
}

.course-section:not(:nth-last-of-type(1)) {
  margin-bottom: 52px;
}

.course-section__list-item:not(:last-child) {
  border-bottom: 1px solid var(--color-text-main);
}

.course-section__list-item__link {
  padding: 15px 35px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  transition: all 0.3s;
  outline: 3px solid transparent;
}

.course-section__list-item__link:hover {
  background-color: var(--color-theme);
  outline-color: var(--color-main);
}

.course-section__list-item__ttl {
  color: var(--color-main);
  flex-shrink: 1;
  width: 100%;
  max-width: 600px;
  font-size: var(--font-size-22);
  letter-spacing: var(--letter-spacing-regular);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.course-section__list-item__price {
  font-size: var(--font-size-22);
  letter-spacing: var(--letter-spacing-regular);
  flex-shrink: 0;
  margin-left: 1em;
}

/* ===========================================
*
* course-single
*
* ======================================== */
.course-single__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1em;
  padding-bottom: 15px;
  padding-inline: 35px;
  border-bottom: 1px solid var(--color-text-main);
  margin-bottom: 48px;
}

.course-single__ttl {
  font-size: var(--font-size-26);
  color: var(--color-main);
  letter-spacing: var(--letter-spacing-regular);
  flex-shrink: 1;
  width: 100%;
}

.course-single__price {
  flex-shrink: 0;
  margin-left: 1em;
  font-size: var(--font-size-26);
  letter-spacing: var(--letter-spacing-regular);
}

.course-single__gallery {
  width: 100%;
  overflow: auto;
  padding-bottom: 30px;
}

.course-single__gallery-list {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 60px;
}

.course-single__gallery-item {
  width: 320px;
  min-width: 320px;
  max-width: 320px;
  position: relative;
  z-index: 1;
}

.course-single__gallery-item:not(:last-child)::after {
  content: "";
  width: 46px;
  height: 46px;
  background: url("/img/course/course_img_arrow.svg") no-repeat top center/contain;
  position: absolute;
  top: 160px;
  right: -30px;
  translate: 50% -50%;
}

.course-single__gallery-img {
  aspect-ratio: 1/1;
  width: 100%;
}

.course-single__gallery-ttl {
  font-size: var(--font-size-20);
  margin-top: 15px;
  letter-spacing: var(--letter-spacing-regular);
}

.course-single__content {
  margin-top: 64px;
  font-size: var(--font-size-20);
}

/* ===========================================
*
* guide-page
*
* ======================================== */
.guide-wrapper {
  padding-block: 140px;
  overflow: hidden;
}

/*------------------------------
*
* guide
*
------------------------------*/
.guide {
  margin-top: var(--spacing-6xl);
}

.guide-section:not(:last-child) {
  margin-bottom: 140px;
}

.guide-section__container {
  justify-content: space-between;
}

.guide-section__left {
  width: 500px;
}

.guide-section__right {
  width: 518px;
  position: relative;
  z-index: 1;
}

.guide-section__img {
  width: 100%;
  aspect-ratio: 518/380;
}

.guide-section__img>img {
  border-radius: var(--round-20);
}

.guide-section__ttl {
  font-size: var(--font-size-30);
  letter-spacing: var(--letter-spacing-regular);
  margin-bottom: 43px;
}

.guide-section__ttl .num {
  font-size: 46px;
  display: inline-block;
  margin-top: -0.25em;
}

.guide-section__sentence {
  font-size: var(--font-size-20);
  --sentence-line-height: 1.9;
}

.guide-section__label {
  left: 24px;
  top: 0;
  translate: 0 -50%;
  position: absolute;
  z-index: 1;
  border: 2px solid var(--color-main);
  min-width: 124px;
  border-radius: var(--round-20);
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-regular);
  line-height: 36px;
  text-align: center;
  padding-inline: 1em;
}

.guide-section__description {
  font-size: var(--font-size-18);
  --sentence-line-height: 2.1;
  margin-top: 36px;
  padding: 40px 32px;
  position: relative;
  z-index: 1;
  background-color: #eff6db;
}

.guide-section__description::after {
  content: "";
  width: 28px;
  height: 24px;
  background-color: #eff6db;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -100%;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.guide-section__cards {
  --col-x-space: 30px;
  --col-y-space: 30px;
  position: relative;
  z-index: 0;
  margin-top: 50px;
  padding-left: 60px;
  padding-bottom: 50px;
  min-height: 606px;
}

.guide-section__cards::after {
  content: "";
  width: calc(100% + max(100px, 50vw - 540px));
  height: calc(100% + 94px);
  border-radius: 50px 0 0 50px;
  background-color: #96b051;
  position: absolute;
  top: 0;
  left: 0;
  translate: 0 -94px;
}

.guide-section__card {
  position: relative;
  z-index: 1;
}

.guide-section__card-label {
  left: 10px;
  top: 0;
  translate: 0 -50%;
  position: absolute;
  z-index: 1;
  border: 2px solid var(--color-main);
  min-width: 124px;
  border-radius: var(--round-20);
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-regular);
  line-height: 36px;
  text-align: center;
  padding-inline: 1em;
}

.guide-section__card-description {
  font-size: var(--font-size-18);
  --sentence-line-height: 2;
  color: var(--color-white);
}

.guide-section__card-img {
  margin-bottom: 30px;
  width: 100%;
  aspect-ratio: 320/294;
}

.guide-section__card-img>img {
  border-radius: var(--round-20);
}

/*------------------------------
*
* gallery
*
------------------------------*/
.gallery {
  margin-top: 140px;
}

/* ===========================================
*
* guide-single
*
* ======================================== */
.guide-single__img {
  margin-inline: auto;
  margin-bottom: 60px;
  aspect-ratio: 866/686;
  width: 866px;
}

.guide-single__sentence {
  font-size: var(--font-size-20);
  --sentence-line-height: 1.9;
}

.guide-single__gallery {
  margin-top: 60px;
}

.guide-single__gallery-list {
  --col-x-space: 60px;
  --col-y-space: 60px;
}

.guide-single__gallery-img {
  aspect-ratio: 1/1;
  width: 100%;
}

/* ===========================================
*
* voice-page
*
* ======================================== */
/*------------------------------
*
* voice
*
------------------------------*/
.voice {
  margin-top: var(--spacing-6xl);
}

/*------------------------------
*
* qa よくあるご質問
*
------------------------------*/
.qa {
  margin-top: var(--spacing-6xl);
}

.qa-list__item:not(:last-child) {
  margin-bottom: 85px;
}

.qa-list__item .question {
  position: relative;
  background-color: var(--color-dark-beige);
  font-size: var(--font-size-22);
  padding: 0.5em 2em;
  line-height: 2;
  margin-bottom: 36px;
  align-items: baseline;
  gap: 0.25em;
}

.qa-list__item .question__mark {
  flex-shrink: 0;
}

.qa-list__item .question__content {
  font-size: var(--font-size-20);
  --sentence-line-height: 1.9;
}

.qa-list__item .answer__content {
  font-size: var(--font-size-20);
  --sentence-line-height: 1.9;
}

/* ===========================================
*
* single page
*
* ======================================== */
.single {
  position: relative;
  z-index: 5;
}

.single__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.single__date {
  order: 1;
  font-size: var(--font-size-15);
  margin-bottom: 12px;
  line-height: 1;
  text-align: right;
  margin-left: auto;
}

.single__tags {
  order: 2;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.single__ttl {
  order: 3;
  width: 100%;
  font-size: var(--font-size-28);
  text-align: center;
  border-bottom: 1px solid var(--color-text-main);
  font-weight: var(--font-weight-bold);
  padding-bottom: 23px;
  margin-bottom: 64px;
}

.single__img {
  margin: 0 auto;
  width: 100%;
  margin-bottom: 32px;
}

.single__footer {
  margin-top: 64px;
  width: 100%;
}

/* ===========================================
*
* site page
*
* ======================================== */
.sitemap-list {
  max-width: 600px;
  margin: 0 auto;
}

.sitemap-list__item:not(:last-child) {
  margin-bottom: 5px;
}

.sitemap-list__link {
  width: 100%;
  padding: 0.8em 1em;
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgb(var(--color-text-main-rgb)/0.4);
  transition: all 0.3s;
}

.sitemap-list__link::after {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid rgb(var(--color-text-main-rgb)/0.4);
  border-right: 2px solid rgb(var(--color-text-main-rgb)/0.4);
  position: absolute;
  top: 50%;
  right: 1.5em;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s;
}

.sitemap-list__link:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.sitemap-list__link:hover::after {
  right: 1em;
  border-color: var(--color-accent);
}

/* ===========================================
*
* privacy page
*
* ======================================== */
.privacy-ttl {
  font-size: var(--font-size-24);
  font-weight: var(--font-weight-medium);
  line-height: 1.5em;
  margin-bottom: 12px;
  border-left: 5px solid var(--color-main);
  padding-left: 0.75em;
}

.privacy-purpose__list {
  margin-top: 16px;
}

.privacy-purpose__list>li {
  line-height: 2;
  padding-left: 1em;
  text-indent: -1em;
}

.privacy-box {
  margin-bottom: 40px;
}

.privacy-box p {
  line-height: 2;
}

.privacy-box:last-child {
  margin-bottom: 0;
}

/*# sourceMappingURL=style.css.map */