@charset "UTF-8";
/* ------------------------------------------------------------------------------
*
* Layout
*
* ------------------------------------------------------------------------------ */
/* ===========================================
*
* base styles
*
* ======================================== */
/* css custom properties
-------------------------*/
:root {
  /* font font-size */
  --font-size-base: 16px;
  --font-size-17: 17px;
  --font-size-18: 18px;
  --font-size-20: 20px;
  --font-size-24: 24px;
  --font-size-22: 22px;
  --font-size-25: 25px;
  --font-size-26: 26px;
  --font-size-27: 27px;
  --font-size-28: 28px;
  --font-size-30: 30px;
  --font-size-32: 32px;
  --font-size-35: 35px;
  --font-size-36: 36px;
  --font-size-40: 40px;
  --font-size-45: 45px;
  --font-size-46: 46px;
  --font-size-48: 48px;
  --font-size-50: 50px;
  --font-size-55: 55px;
  --font-size-56: 56px;
  --font-size-60: 60px;
  --font-size-64: 64px;
  /* 幅設定 */
  --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: 999em;
  /* logoの幅 */
  --logo-width: 156px;
  /* btn defaults */
  --btn-height: 60px;
  --btn-line-height: 1.5;
  --btn-font-size: var(--font-size-17);
  --btn-font-weight: var(--font-weight-bold);
  --btn-letter-space: var(--letter-spacing-base);
  --btn-width-xs: 180px;
  --btn-width-small: 200px;
  --btn-width-regular: 240px;
  --btn-width-medium: 300px;
  --btn-width-large: 350px;
  --btn-width-xl: 400px;
  /* header */
  --header-height: 120px;
}

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

body {
  font-size: var(--font-size-17);
  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: transparent;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 101;
}
.header__inner {
  padding: 10px 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: var(--min-contents-width);
  margin: 0 auto;
  width: 100%;
  height: var(--header-height);
}
.header__logo {
  width: var(--logo-width);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.header__right {
  margin-left: auto;
}
.header__btn {
  height: 60px;
  width: 200px;
  border-radius: 0 30px 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  font-weight: var(--font-weight-bold);
  background-color: var(--color-main);
  color: var(--color-white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__btn img {
  width: 20px;
}
.header__btn:hover {
  background-color: var(--color-main-lighten);
  color: var(--color-white);
  opacity: 1;
}
.header__sns {
  margin-left: 20px;
}
.header-nav {
  padding: 0px 40px 0px 50px;
  border-radius: 30px 0 0 30px;
  font-weight: var(--font-weight-bold);
  font-family: var(--font-sub);
  background: var(--color-white);
}
.header-nav__item {
  position: relative;
}
.header-nav__item:not(:last-child) {
  margin-right: 1em;
}
.header-nav__link {
  position: relative;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  line-height: 60px;
  rotate: -0.05deg;
}
.header-nav__link:hover {
  color: var(--color-sub);
  opacity: 1;
}
.header-nav__link.current {
  color: var(--color-sub);
}

/* 
ドロップダウンメニュー
-------------------------*/
.floating {
  position: fixed;
  right: 0;
  top: 140px;
  z-index: 51;
}
.floating__btn {
  width: 60px;
  height: 220px;
  color: var(--color-white);
  background-color: var(--color-accent);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 20px 0 0 20px;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  font-family: var(--font-sub);
  font-weight: var(--font-weight-bold);
  rotate: -0.05deg;
}
.floating__btn:hover {
  background-color: var(--color-main);
}

/* ===========================================
*
* footer style
*
* ======================================== */
.footer {
  position: relative;
  background-color: var(--color-theme);
}
.footer__inner {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-block: 80px;
}
.footer__logo {
  width: var(--logo-width);
}
.footer__flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__btn {
  width: 200px;
}
.footer__actions {
  margin-left: 27px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__sns {
  margin-left: 20px;
}
.footer-nav {
  width: 540px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0 40px;
}
.footer-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 23px 0;
  padding-left: 20px;
  border-left: 1px dashed rgb(var(--color-main-rgb)/0.4);
}
.footer-nav__link {
  line-height: 1;
  font-size: 17px;
  rotate: -0.05deg;
  font-family: var(--font-sub);
  font-weight: var(--font-weight-bold);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer-nav__link.current, .footer-nav__link:hover {
  color: var(--color-sub);
}
.footer__copy {
  font-size: 14px;
  letter-spacing: var(--letter-spacing-base);
  width: 100%;
  display: block;
  line-height: 1.2;
  margin-top: 27px;
  color: rgb(var(--color-main-rgb)/0.6);
}

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

/* ------------------------------------------------------------------------------
*
* Object
*
* ------------------------------------------------------------------------------ */
/* ----------------------------------------------------
*  Component（共通化されたコンポーネントスタイル）
*  ---------------------------------------------------- */
/* logo
-------------------------*/
.logo {
  width: var(--logo-width);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.logo img {
  width: 100%;
}
.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;
}

/* 
title style
-------------------------*/
.cmn-ttl {
  color: var(--color-main);
  font-family: var(--font-sub);
  font-size: var(--font-size-46);
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px 18px;
}
.cmn-ttl--center {
  /* 中央揃え */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.cmn-ttl--left {
  /* 左揃え */
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
}
.cmn-ttl--right {
  /* 右揃え */
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  text-align: right;
}
.cmn-ttl__main {
  font-size: var(--ttl-main-size);
  font-weight: var(--font-weight-bold);
  margin-block: -0.25em;
  display: inline-block;
}
.cmn-ttl__sub {
  font-size: var(--font-size-30);
  font-weight: var(--font-weight-bold);
  display: inline-block;
  line-height: 1;
  text-transform: lowercase;
}
.cmn-ttl__bubble {
  display: inline-block;
  margin-bottom: 10px;
  font-family: var(--font-main);
  color: var(--color-white);
  font-size: var(--font-size-20);
  font-weight: var(--font-weight-bold);
  padding: 0.5em 1.5em;
  border-radius: 3em;
  position: relative;
  z-index: 1;
  background: var(--color-main);
}
.cmn-ttl__bubble::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 100%;
  width: 16px;
  background: var(--color-main);
  height: 10px;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
}

/* cmn-border-bottom-ttl
-------------------------*/
.cmn-border-bottom-ttl {
  border-bottom: 1px solid rgb(var(--color-main-rgb)/0.4);
  font-size: var(--font-size-20);
  rotate: -0.05deg;
  font-family: var(--font-sub);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-base);
  padding-bottom: 0.5em;
}

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

.tel {
  /* tel　style */
  --tel-font-size: 30px;
  --tel-txt-font-size: 0.625em;
  --tel-txt-space: 0.5em;
  --tel-letter-space: var(--letter-spacing-base, 0.05em);
  --tel-color: var(--color-text-main);
  --tel-icon-space: 1.1em;
  --tel-icon-position: 0.5em;
  --tel-icon-width: 0.8333333333em;
  --tel-icon-height: 0.8333333333em;
  --tel-replace-size: 12px;
  --tel-replace-space: 20px;
  font-family: var(--font-sub, sans-serif);
  font-weight: var(--font-weight-semibold, 700);
  letter-spacing: var(--tel-letter-space, 0.05);
  font-size: var(--tel-font-size, 28px);
  line-height: 1;
  position: relative;
}
.tel__txt {
  /* tel txt style */
  font-size: var(--tel-txt-font-size, 0.75em);
  margin-right: var(--tel-txt-space, 0.25em);
}
.tel-replace--right {
  /* tel replace 右に配置 */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--tel-replace-space, 10px);
}
.tel-replace--bottom {
  /* tel replace 下に配置 */
  padding-bottom: var(--tel-replace-space, 20px);
}
.tel-replace--bottom .tel__replace {
  position: absolute;
  left: 0;
  bottom: 0;
}
.tel__replace {
  /* tel replace txt　style  */
  height: var(--tel-replace-size, 12px);
}
.tel-icon {
  /* icon付き */
  padding-left: var(--tel-icon-space, 1.5em);
  position: relative;
  z-index: 1;
  display: inline-block;
}
.tel-icon::before {
  content: "";
  width: var(--tel-icon-width, 1em);
  height: var(--tel-icon-height, 1em);
  position: absolute;
  top: var(--tel-icon-position, 0.5em);
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.tel-icon--main::before {
  background: url(../img/icon_tel_main.png) repeat center/contain;
}
.tel-icon--white::before {
  background: url(../img/icon_tel_white.png) repeat center/contain;
}

/*
 snsクラス
-------------------------*/
.sns {
  --sns-icon-space: 20px;
  --sns-icon-size: 30px;
  gap: var(--sns-icon-space);
}
.sns__icon {
  width: calc(var(--sns-icon-size) * 2);
  height: calc(var(--sns-icon-size) * 2);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: var(--color-main);
  border-radius: 50%;
  display: grid;
  place-content: center;
}
.sns__icon:hover {
  background-color: var(--color-main-lighten);
}
.sns__icon img {
  width: var(--sns-icon-size);
}

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

.main-table {
  --table-letter-spacing: var(--letter-spacing-regular);
  --table-th-font-weight: var(--font-weight-medium);
  --table-th-text-align: center;
  --table-th-x-padding: 1.5em;
  --table-th-y-padding: 1.125em;
  --table-th-bg-color: var(--color-main);
  --table-th-color: var(--color-white);
  --table-th-width: 300px;
  --table-td-x-padding: 1.5em;
  --table-td-y-padding: 1.125em;
  --table-td-bg-color: var(--color-white);
  --table-td-color: var(--color-text-main);
  --table-td-width: calc(100% - var(--table-th-width));
  --table-border-color: var(--color-main);
  --table-th-border-color: var(--color-white);
  --table-td-border-color: var(--color-main);
  --table-width: 100%;
  width: var(--table-width);
  border-block: 1px solid var(--table-border-color);
  letter-spacing: var(--table-letter-spacing);
}
.main-table tr {
  width: 100%;
}
.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;
}
.main-table th {
  width: var(--table-th-width);
  background-color: var(--table-th-bg-color);
  color: var(--table-th-color);
  font-weight: var(--table-th-font-weight);
  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);
}

/*------------------------------
*
* check list style
*
------------------------------*/
.check-list {
  border-top: 1px dashed rgb(var(--color-main-rgb)/0.4);
  padding-top: 20px;
}
.check-list__item {
  border-bottom: 1px dashed rgb(var(--color-main-rgb)/0.4);
  text-align: center;
  padding-bottom: 20px;
}
.check-list__item p {
  line-height: 1.5;
  padding-left: 2.25em;
  position: relative;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-20);
  letter-spacing: var(--letter-spacing-regular);
  z-index: 1;
  display: inline-block;
}
.check-list__item p::before {
  content: "";
  width: 1.5em;
  height: 1.5em;
  background: url(../img/check_mark.png) no-repeat top center/contain;
  position: absolute;
  top: 0.75em;
  left: 0;
  translate: 0% -50%;
}
.check-list__item:not(:last-child) {
  margin-bottom: 20px;
}

/*------------------------------
*
* text
*
------------------------------*/
/* 
文章テキスト スタイル
-------------------------*/
.cmn-sentence {
  /* どこでも変更できるよう変数化 */
  --sentence-line-height: 1.65;
  --sentence-p-margin: 1.65em;
  letter-spacing: var(--letter-spacing-base);
  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 {
  width: 100%;
}

/*------------------------------
*
* time
*
------------------------------*/
.cmn-time {
  /* 営業時間・定休日をまとめたdl */
  gap: 5px 18px;
  font-size: 13px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.cmn-time__item {
  gap: 5px 10px;
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-medium);
}
.cmn-time__item dt {
  color: var(--main-color);
  background-color: var(--color-theme);
  padding: mg(24, 13, 1.5) 5px;
  text-align: center;
  min-width: 95px;
}

/* 
* カラムスタイル
* 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--primary {
  --btn-padding-x: 1.5em;
  --btn-padding-y: calc((var(--btn-height) - var(--btn-font-size) * var(--btn-line-height)) / 2);
  display: block;
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  letter-spacing: var(--letter-spacing-base);
  line-height: var(--btn-line-height);
  font-family: var(--font-sub);
  text-align: center;
  border-radius: 3em;
  padding-block: var(--btn-padding-y);
  padding-inline: var(--btn-padding-x);
  position: relative;
  z-index: 1;
  rotate: -0.05deg;
  background-color: var(--color-main);
  color: var(--color-white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cmn-btn--primary:hover {
  background-color: var(--color-main-darken);
  color: var(--color-white);
  opacity: 1;
}
.cmn-btn--secondary {
  --btn-padding-x: 1.5em;
  --btn-padding-y: calc((var(--btn-height) - var(--btn-font-size) * var(--btn-line-height)) / 2);
  display: block;
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  letter-spacing: var(--letter-spacing-base);
  line-height: var(--btn-line-height);
  font-family: var(--font-sub);
  text-align: center;
  border-radius: 3em;
  padding-block: var(--btn-padding-y);
  padding-inline: var(--btn-padding-x);
  position: relative;
  z-index: 1;
  rotate: -0.05deg;
  background-color: var(--color-accent);
  color: var(--color-white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cmn-btn--secondary:hover {
  background-color: var(--color-sub-darken);
  color: var(--color-white);
  opacity: 1;
}
.cmn-btn--tertiary {
  --btn-padding-x: 1.5em;
  --btn-padding-y: calc((var(--btn-height) - var(--btn-font-size) * var(--btn-line-height)) / 2);
  display: block;
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  letter-spacing: var(--letter-spacing-base);
  line-height: var(--btn-line-height);
  font-family: var(--font-sub);
  text-align: center;
  border-radius: 3em;
  padding-block: var(--btn-padding-y);
  padding-inline: var(--btn-padding-x);
  position: relative;
  z-index: 1;
  rotate: -0.05deg;
  background-color: var(--color-sub);
  color: var(--color-white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cmn-btn--tertiary:hover {
  background-color: var(--color-sub-darken);
  color: var(--color-white);
  opacity: 1;
}
.cmn-btn--arrow-white {
  position: relative;
  z-index: 1;
}
.cmn-btn--arrow-white::after {
  content: "";
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  z-index: 1;
  width: 7px;
  height: 11px;
  top: 50%;
  right: 20px;
  translate: 0% -50%;
  background: url(../img/arrow_right_white.png) no-repeat center/contain;
}
.cmn-btn--arrow-white:hover::after {
  translate: 25% -50%;
}
.cmn-btn--icon-calender > span {
  padding-left: 42px;
  position: relative;
  z-index: 1;
  display: inline-block;
}
.cmn-btn--icon-calender > span::before {
  content: "";
  width: 28px;
  height: 27px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/icon_calender_white.png) no-repeat center/contain;
}
.cmn-btn--icon-mail > span {
  padding-left: 30px;
  position: relative;
  z-index: 1;
  display: inline-block;
}
.cmn-btn--icon-mail > span::before {
  content: "";
  width: 20px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/icon_mail_white.png) no-repeat center/contain;
}
.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;
}

/*一覧、もっと見るボタン*/
.view-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-family: var(--font-sub);
  font-weight: var(--font-bold);
  letter-spacing: var(--letter-spacing-base);
}
.view-btn > span {
  display: inline-block;
  rotate: -0.05deg;
}
.view-btn:hover {
  opacity: 0.7;
}

/*------------------------------
*
* main visual
*
------------------------------*/
.main-visual {
  width: 100%;
  height: 740px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.main-visual__content {
  position: absolute;
  top: calc(50% + 60px);
  left: calc(50% - 540px);
  -webkit-transform: translate(0%, -46%);
          transform: translate(0%, -46%);
  z-index: 20;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.main-visual__catch {
  font-size: var(--font-size-50);
  letter-spacing: var(--letter-spacing-base);
  line-height: 1.4;
  margin-bottom: 20px;
}
.main-visual__img {
  position: absolute;
  z-index: -1;
  width: 1533px;
  top: 128px;
  left: 50%;
  translate: -52.4% 0;
}
.main-visual__counseling {
  font-size: var(--font-size-24);
  gap: 9px;
}
.main-visual__counseling img {
  width: 68px;
  position: relative;
  z-index: 5;
}
.main-visual__counseling > span {
  display: inline-block;
  position: relative;
  z-index: 1;
  line-height: 1;
}
.main-visual__counseling > span::after {
  content: "";
  border-radius: var(--round-10);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  background-color: var(--color-white);
  width: 15em;
  height: 2.2916666667em;
}
.main-visual__txt {
  line-height: 28px;
  margin-top: 35px;
}

/*------------------------------
*
* main style page visual
*
------------------------------*/
.page-visual {
  width: 100%;
  position: relative;
  z-index: 1;
  height: 380px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  background: var(--color-pale-blue);
}
.page-visual__img {
  width: 1533px;
  height: 274px;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 50%;
  translate: -53% 0;
}
.page-visual__catch {
  position: absolute;
  z-index: 20;
  top: 230px;
  left: calc(50% - 540px);
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  width: 1080px;
  line-height: 1;
  font-size: var(--font-size-50);
  letter-spacing: var(--letter-spacing-base);
}

/*------------------------------
*
* pagenation style
*
------------------------------*/
.pagenation {
  --pagenation-margin-top: 64px;
  --pagenation-item-width: 3em;
  --pagenation-item-height: 3em;
  --pagenation-item-font-size: 1em;
  --pagenation-item-font-weight: var(--font-weight-medium);
  --pagenation-item-space: 6px;
  --pagenation-item-bg: var(--color-gray);
  --pagenation-item-color: #b3b3b3;
  --pagenation-item-current-color: var(--color-white);
  --pagenation-item-current-bg: var(--color-main);
  margin-top: var(--pagenation-margin-top);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagenation li {
  display: block;
  width: var(--pagenation-item-width);
  height: var(--pagenation-item-height);
  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);
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 4px;
}
.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: var(--pagenation-item-current-color);
}
.pagenation .current {
  background-color: var(--pagenation-item-current-bg);
  color: var(--pagenation-item-current-color);
}

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

.post-card-item__img {
  aspect-ratio: 286/202;
  overflow: hidden;
  margin-bottom: 16px;
  border-radius: 24px;
}
.post-card-item__date {
  line-height: 1;
  font-size: var(--font-size-17);
  font-weight: var(--font-weight-bold);
  color: rgb(var(--color-main-rgb)/0.4);
  position: relative;
  rotate: -0.05deg;
  z-index: 1;
}
.post-card-item__flex {
  margin-bottom: 14px;
}
.post-card-item__tags {
  width: calc(100% - 120px);
}
.post-card-item__ttl {
  font-size: var(--font-size-base);
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/*------------------------------
*
* tag
*
------------------------------*/
.tag {
  --tag-font-size: 14px;
  --tag-letter-space: var(--letter-spacing-base);
  --tag-height: 1;
  --tag-x-padding: 7px;
  --tag-round: 0px;
  --tag-color: var(--color-main);
  --tag-bg-color: transparent;
  display: inline-block;
  font-size: var(--tag-font-size);
  letter-spacing: var(--tag-letter-space);
  color: var(--tag-color);
  background-color: var(--tag-bg-color);
  border-radius: var(--tag-round);
  font-weight: var(--font-weight-medium);
  line-height: var(--tag-height);
  padding: 0 var(--tag-x-padding);
}
.tag:not(:first-child) {
  border-left: 1px solid var(--tag-color);
}
.tag:first-child {
  padding-left: 0;
}

.tag-link {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  --tag-x-padding: 7px;
  --tag-height: 2;
  --tag-round: 2px;
  --tag-color: var(--color-white);
  --tag-bg-color: var(--color-main);
}
.tag-link:hover {
  background-color: var(--color-sub);
}

.tag-list {
  --tag-space: 7px 0;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: var(--tag-space);
}

.tag-link-list {
  --tag-space: 7px ;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: var(--tag-space);
}
.tag-link-list .tag:first-child {
  padding-left: 7px;
}

/*------------------------------
*
* tag btn
*
------------------------------*/
.tag-btns {
  margin-bottom: 30px;
  gap: 10px;
}

.tag-btn {
  --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: 3em;
  padding: 0.5em 1em;
  background-color: var(--tag-btn-bg-color);
  color: var(--tag-btn-color);
  border-radius: var(--tag-btn-round);
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.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);
}

/*------------------------------
*
* prev next style
*
------------------------------*/
.prev-next__area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  line-height: 1.2;
}
.prev-next__item.prev, .prev-next__item.next {
  width: 8em;
}
.prev-next__item:not(:last-child) {
  margin-right: 1.5em;
}
.prev-next__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 3em;
  color: #b3b3b3;
  background-color: var(--color-gray);
}
.prev-next__link:hover {
  background-color: var(--color-main);
  color: var(--color-white);
  opacity: 1;
}
.prev-next__link.prev, .prev-next__link.next {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 2em;
  text-align: center;
}
.prev-next__link.back {
  text-align: center;
  padding: 0.75em 1.5em;
  border-radius: 3em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.prev-next__link.prev, .prev-next__link.next, .prev-next__link.back {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/*------------------------------
*
* breadcrumb style
*
------------------------------*/
.bread-crumb {
  /* パンくず設定 */
  --bread-letter-space: var(--letter-space-base);
  --bread-font-size: 15px;
  --bread-font-weight: var(--font-weight-regular);
  --bread-color: var(--color-text-main);
  /* gratere = 「>(大なり)」 */
  --bread-grater-color: var(--color-text-main);
  --bread-grater-content: ">";
  --bread-grater-space: 0 0.5em;
  --bread-hov-color: var(--color-sub);
  --bread-link-color: var(--color-text-main);
  --bread-last-item-color: var(--color-sub);
  --bread-padding: 1em 0 0;
  --bread-bg-color: transparent;
  --bread-width: 100%;
  width: var(--bread-width, 100%);
  background-color: var(--bread-bg-color, transparent);
}
.bread-crumb--fixed {
  position: fixed;
  top: 0;
  left: 0;
}
.bread-crumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          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;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  line-height: 1.2;
  color: var(--bread-link-color);
}
.bread-crumb__link:hover {
  opacity: 1;
  color: var(--bread-hov-color);
}

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

.mt-min {
  margin-top: 10px;
}

.mt-smr {
  margin-top: 20px;
}

.mt-sm {
  margin-top: 30px;
}

.mt-nm {
  margin-top: 40px;
}

.mt-rg {
  margin-top: 50px;
}

.mt-md {
  margin-top: 60px;
}

.mt-lg {
  margin-top: 70px;
}

.mt-lgr {
  margin-top: 80px;
}

.mb-min {
  margin-bottom: 10px;
}

.mb-smr {
  margin-bottom: 20px;
}

.mb-sm {
  margin-bottom: 30px;
}

.mb-nm {
  margin-bottom: 40px;
}

.mb-rg {
  margin-bottom: 50px;
}

.mb-md {
  margin-bottom: 60px;
}

.mb-lg {
  margin-bottom: 70px;
}

.mb-lgr {
  margin-bottom: 80px;
}

/* padding style
-------------------------*/
.cmn-pd {
  padding: 100px 0;
}

.pt-min {
  margin-top: 10px;
}

.pt-smr {
  margin-top: 20px;
}

.pt-sm {
  margin-top: 30px;
}

.pt-nm {
  margin-top: 40px;
}

.pt-rg {
  margin-top: 50px;
}

.pt-md {
  margin-top: 60px;
}

.pt-lg {
  margin-top: 70px;
}

.pt-lgr {
  margin-top: 80px;
}

.pb-min {
  margin-bottom: 10px;
}

.pb-smr {
  margin-bottom: 20px;
}

.pb-sm {
  margin-bottom: 30px;
}

.pb-nm {
  margin-bottom: 40px;
}

.pb-rg {
  margin-bottom: 50px;
}

.pb-md {
  margin-bottom: 60px;
}

.pb-lg {
  margin-bottom: 70px;
}

.pb-lgr {
  margin-bottom: 80px;
}

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

/* ----------------------------------------------------
*  Project （ページごとのスタイルなど）
*  ---------------------------------------------------- */
/* ===========================================
*
* top page style
*
* ======================================== */
/*------------------------------
*
* top-news
*
------------------------------*/
.top-news {
  position: relative;
  z-index: 1;
  padding-top: 0;
}
.top-news::before {
  content: "";
  height: 180px;
  width: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
  left: 0;
  background-color: var(--color-pale-blue);
}
.top-news__ttl {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 0;
  font-size: var(--font-size-30);
}
.top-news__header {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}
.top-news__box {
  padding: 60px 80px;
  border-radius: var(--round-30);
  background-color: var(--color-white);
}
.top-news .post-cards-list {
  --col-x-space: 30px;
  --col-y-space: 30px;
}

/*------------------------------
*
* counseling-bnr
*
------------------------------*/
.counseling-bnr__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin-bottom: 18px;
}
.counseling-bnr__ttl__main {
  display: inline-block;
}
.counseling-bnr__ttl__sub {
  font-size: var(--font-size-20);
  color: var(--color-white);
  padding: 0.65em 1.3em;
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-bottom: 13px;
}
.counseling-bnr__ttl__sub::after, .counseling-bnr__ttl__sub::before {
  content: "";
  position: absolute;
  width: 17px;
  height: 17px;
  bottom: 0;
  right: 0;
}
.counseling-bnr__ttl__sub::after {
  background-color: var(--color-white);
  z-index: -2;
}
.counseling-bnr__ttl__sub::before {
  z-index: -1;
  background-color: var(--color-light-blue);
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
          clip-path: polygon(0 0, 0% 100%, 100% 0);
}
.counseling-bnr__ttl__main {
  font-size: var(--font-size-30);
}
.counseling-bnr__ttl__main .small {
  font-size: var(--font-size-20);
}
.counseling-bnr__img {
  width: 828px;
}

/*------------------------------
*
* top-worries
*
------------------------------*/
.top-worries {
  padding-top: 0;
}
.top-worries__ttl .cmn-ttl__bubble {
  color: var(--color-main);
  background-color: var(--color-white);
}
.top-worries__ttl .cmn-ttl__bubble::after {
  background-color: var(--color-white);
}
.top-worries__ttl .cmn-ttl__main {
  color: var(--color-white);
}
.top-worries__ttl .cmn-ttl__sub {
  color: rgb(var(--color-white-rgb)/0.4);
}
.top-worries__box {
  padding: 80px calc(50% - 540px) 0;
  position: relative;
  z-index: 1;
}
.top-worries__box::after {
  border-radius: 50px;
  content: "";
  width: 100%;
  height: calc(100% - 44px);
  position: absolute;
  top: 0%;
  left: 50%;
  translate: -50% 0%;
  z-index: -1;
  background-color: var(--color-main);
}
.top-worries__box::before {
  content: "";
  width: 1022px;
  height: 568px;
  background: url(../img/top/worries_illust.png) no-repeat top center/contain;
  position: absolute;
  top: 308px;
  left: 50%;
  translate: -52% 0%;
}
.top-worries__check-list {
  width: 540px;
  border-color: rgb(var(--color-white-rgb)/0.4);
}
.top-worries__check-list .check-list__item {
  border-color: rgb(var(--color-white-rgb)/0.4);
}
.top-worries__note {
  color: rgb(var(--color-white-rgb)/0.4);
  line-height: 1;
  margin-top: 40px;
}
.top-worries__txt {
  width: 520px;
  height: 246px;
  background: url(../img/top/worries_cloud_bg.png) no-repeat top center/contain;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 50px auto 0;
}
.top-worries__txt > small,
.top-worries__txt strong {
  display: inline-block;
}
.top-worries__txt > strong {
  font-size: var(--font-size-24);
  margin-top: 14px;
}

/*------------------------------
*
* top-about
*
------------------------------*/
.top-about {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.top-about::after {
  content: "";
  width: 141px;
  height: 438px;
  background: url(../img/top/about_right_deco.png) no-repeat top center/contain;
  position: absolute;
  top: 220px;
  left: calc(50% + 560px);
}
.top-about__ttl .cmn-ttl__main > span {
  display: block;
}
.top-about__ttl > small {
  font-size: var(--font-size-26);
  line-height: 1;
  display: block;
  margin-top: 12px;
}
.top-about__content {
  width: 540px;
  margin-left: auto;
}
.top-about__btn {
  width: 260px;
  margin-top: 40px;
}
.top-about__img {
  position: absolute;
  right: calc(50% + 50px);
  top: 214px;
  z-index: 1;
}

/*------------------------------
*
* top-service
*
------------------------------*/
.top-service {
  padding-top: 0;
  padding-bottom: 120px;
  position: relative;
  z-index: 1;
}
.top-service .inner {
  max-width: 1600px;
  width: 90%;
}
.top-service::after {
  content: "";
  width: 100%;
  height: 250px;
  background-color: var(--color-white);
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0%;
  z-index: -1;
}
.top-service__box {
  padding: 120px 10%;
  border-radius: 50px;
  background: url(../img/top/en_service.svg) no-repeat top center/auto, var(--color-pale-blue);
}
.top-service-item:not(:last-child) {
  margin-bottom: 70px;
}
.top-service-item__ttl {
  padding: 19px 1em;
  font-size: var(--font-size-36);
  border-radius: var(--round-30) var(--round-30) 0 0;
}
.top-service-item__body {
  padding: 50px;
  border-radius: 0 0 var(--round-30) var(--round-30);
}
.top-service-item__flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.top-service-item__img {
  translate: 0 -30px;
}
.top-service-item__sentence {
  width: calc(100% - 348px);
}
.top-service-item__btn {
  width: 260px;
  margin: 40px auto 0;
}
.top-service .conditions {
  padding: 25px 30px 30px;
  background: var(--color-theme);
  border-radius: 24px;
  margin-top: 40px;
}
.top-service .conditions__ttl {
  font-size: var(--font-size-24);
  rotate: -0.05deg;
  font-family: var(--font-sub);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-base);
  margin-bottom: 13px;
  text-align: center;
}
.top-service .conditions__ttl::after {
  content: "";
  width: 47px;
  height: 3px;
  background-color: var(--color-sub);
  border-radius: 2px;
  display: block;
  margin: 10px auto 0;
}
.top-service .conditions__txt {
  font-size: var(--font-size-20);
}

/*------------------------------
*
* top-voice
*
------------------------------*/
.top-voice {
  padding-top: 0;
  padding-bottom: 120px;
}
.top-voice .voice-contents {
  padding: 80px calc(50% - 540px);
  border-radius: 50px;
  margin-top: 0;
}
.top-voice .voice {
  padding: 0;
}
.top-voice .voice:not(:last-child) {
  margin-bottom: 50px;
}
.top-voice__btn {
  width: 260px;
  margin: 40px auto 0;
}

/*------------------------------
*
* contact-section
*
------------------------------*/
.contact {
  padding: 120px 0;
  background: url(../img/top/en_contact.svg) no-repeat top center/auto, url(../img/top/contact_deco_bg.png) no-repeat top 167px left calc(50% + 275px + 291px)/auto, var(--color-sub);
}
.contact__sentence {
  color: var(--color-white);
  margin-bottom: 40px;
}
.contact__copy {
  margin-bottom: 16px;
}
.contact__box {
  padding: 40px;
  width: 800px;
  border-radius: 40px;
  position: relative;
  z-index: 1;
  text-align: center;
}
.contact__box::before {
  content: "";
  width: 261px;
  height: 310px;
  background: url(../img/top/contact_deco_left.png) no-repeat top center/contain;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  translate: -220px 27px;
}
.contact__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.contact__actions .reserve-btn {
  --btn-font-size: var(--font-size-24);
  --btn-height: 100px;
  width: 600px;
}
.contact__actions .form-btn {
  --btn-height: 80px;
  width: 340px;
}

/* ===========================================
*
* about-page
*
* ======================================== */
/*------------------------------
*
* concept
*
------------------------------*/
.concept {
  position: relative;
  z-index: 1;
}
.concept__ttl .cmn-ttl__main > span {
  display: block;
}
.concept__ttl > small {
  font-size: var(--font-size-26);
  line-height: 1;
  display: block;
  margin-top: 12px;
}
.concept__content {
  width: 540px;
  margin-left: auto;
}
.concept__illust {
  position: absolute;
  z-index: 1;
  bottom: 100px;
  right: calc(50% + 50px);
  width: 578px;
}

/*------------------------------
*
* feature
*
------------------------------*/
.about-page .feature-item:nth-child(1) {
  background: url(../img/about/feature_bg01.png) no-repeat bottom right/auto, var(--color-white);
}
.about-page .feature-item:nth-child(2) {
  background: url(../img/about/feature_bg02.png) no-repeat bottom right/auto, var(--color-white);
}
.about-page .feature-item:nth-child(3) {
  background: url(../img/about/feature_bg03.png) no-repeat bottom 22px right 42px/auto, var(--color-white);
}
.about-page .feature-item:nth-child(4) {
  background: url(../img/about/feature_bg04.png) no-repeat bottom right 20px/auto, var(--color-white);
}
.about-page .feature__concept {
  margin-left: auto;
  width: 540px;
}

/*------------------------------
*
* intro
*
------------------------------*/
.intro__box {
  padding: 80px calc(50% - 540px);
  border-radius: 50px;
}
.intro__img {
  width: 490px;
}
.intro__sentence {
  width: 540px;
}
.intro__container {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.career {
  margin-top: 50px;
}
.career__ttl {
  padding: 7px 1em;
  font-size: var(--font-size-24);
  border-radius: var(--round-30) var(--round-30) 0 0;
}
.career__body {
  padding: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  border-radius: 0 0 var(--round-30) var(--round-30);
}

/* ===========================================
*
* counseling-page
*
* ======================================== */
/*------------------------------
*
* worries
*
------------------------------*/
.worries-item {
  padding: 71px calc(50% - 540px) 80px;
  border-radius: 50px;
  position: relative;
  z-index: 1;
  min-height: 650px;
}
.worries-item__ttl {
  font-size: var(--font-size-36);
  margin-bottom: 31px;
}
.worries-item__content {
  width: 540px;
}
.worries-item .check-list {
  border-color: rgb(var(--color-white-rgb)/0.4);
}
.worries-item .check-list__item {
  border-color: rgb(var(--color-white-rgb)/0.4);
}
.worries-item:nth-child(1) .worries-item__content {
  margin-left: auto;
}
.worries-item:nth-child(1) .worries-item__illust {
  width: 428px;
  position: absolute;
  z-index: 1;
  right: calc(50% + 64px);
  bottom: 0;
}
.worries-item:nth-child(2) .worries-item__illust {
  width: 428px;
  position: absolute;
  z-index: 1;
  left: calc(50% + 76px);
  bottom: 0;
}
.worries-item:not(:last-child) {
  margin-bottom: 50px;
}
.worries__copy {
  font-size: var(--font-size-24);
  text-align: center;
  margin-top: 50px;
}
.worries__copy::before {
  content: "";
  margin: 0 auto 24px;
  width: 54px;
  height: 64px;
  background: url(../img/counseling/worries_arrow.png) no-repeat top center/contain;
  display: block;
}

/*------------------------------
*
* about-counseling
*
------------------------------*/
.about-counseling {
  position: relative;
  z-index: 1;
}
.about-counseling__content {
  width: 540px;
  margin-left: auto;
}
.about-counseling__img {
  width: 339px;
  position: absolute;
  z-index: 1;
  right: calc(50% + 110px);
  bottom: 100px;
}

/*------------------------------
*
* service
*
------------------------------*/
.service__box {
  border-radius: 50px;
  padding: 75px calc(50% - 540px);
}
.service-item:not(:last-child) {
  margin-bottom: 40px;
}
.service-item__ttl {
  padding: 19px 1em;
  font-size: var(--font-size-36);
  border-radius: var(--round-30) var(--round-30) 0 0;
}
.service-item__body {
  padding: 50px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  border-radius: 0 0 var(--round-30) var(--round-30);
}
.service-item__img {
  aspect-ratio: 286/210;
  width: 286px;
  overflow: hidden;
  border-radius: var(--round-20);
}
.service-item__content {
  width: calc(100% - 348px);
}

/*------------------------------
*
* feature
*
------------------------------*/
.counseling-page .feature__list {
  --col-x-space: 40px;
  --col-y-space: 40px;
}
.counseling-page .feature-item:not(:last-child) {
  margin-bottom: 0;
}

/*------------------------------
*
* qa よくあるご質問
*
------------------------------*/
.qa {
  position: relative;
  z-index: 1;
}
.qa__ttl .cmn-ttl__sub {
  text-transform: uppercase;
}
.qa-list {
  padding: 80px calc(50% - 540px);
  border-radius: 50px;
}
.qa-list__item:not(:last-child) {
  margin-bottom: 40px;
}
.qa-list__item .question__mark, .qa-list__item .answer__mark {
  margin-right: 17px;
}
.qa-list__item .question {
  position: relative;
  letter-spacing: 0.05em;
  background-color: var(--main-color);
  color: var(--white-color);
  margin-bottom: 24px;
  border-radius: var(--round-10);
}
.qa-list__item .question__content {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: var(--font-size-24);
  padding: 10px 0;
  border-bottom: 2px solid var(--color-sub);
  width: 1000px;
  padding-top: 10px;
}
.qa-list__item .answer {
  position: relative;
}
.qa-list__item .answer__content {
  width: 1000px;
}

/* ===========================================
*
* dispatch-page
*
* ======================================== */
/*------------------------------
*
* recommend
*
------------------------------*/
.recommend__box {
  position: relative;
  z-index: 1;
  border-radius: 50px;
  padding: 80px;
}
.recommend__box::before, .recommend__box::after {
  content: "";
  position: absolute;
  z-index: -1;
}
.recommend__box::before {
  width: 218px;
  height: 484px;
  position: absolute;
  top: 50%;
  left: 0;
  translate: -28px -50%;
  background: url(../img/dispatch/recom_left_illust.png) no-repeat top center/contain;
}
.recommend__box::after {
  width: 324px;
  height: 492px;
  position: absolute;
  top: 50%;
  right: 0;
  translate: 39px -50.5%;
  background: url(../img/dispatch/recom_right_illust.png) no-repeat top center/contain;
}
.recommend__check-list {
  width: 540px;
}

/*------------------------------
*
* about-dispatch
*
------------------------------*/
.about-dispatch {
  position: relative;
  z-index: 1;
}
.about-dispatch__content {
  width: 540px;
  margin-left: auto;
}
.about-dispatch__img {
  width: 542px;
  position: absolute;
  z-index: 1;
  right: calc(50% + 45px);
  bottom: 0;
}

/*------------------------------
*
* feature
*
------------------------------*/
.feature-item {
  border-radius: var(--round-30);
  padding: 34px 40px 40px;
  position: relative;
  z-index: 1;
}
.feature-item:not(:last-child) {
  margin-bottom: 40px;
}
.feature-item__num {
  position: absolute;
  z-index: 1;
  left: 30px;
  top: -10px;
  width: 60px;
}
.feature-item__ttl {
  font-size: var(--font-size-24);
  rotate: -0.05deg;
  font-family: var(--font-sub);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-base);
  margin-bottom: 27px;
  text-align: center;
}
.feature-item__ttl::after {
  content: "";
  width: 47px;
  height: 3px;
  background-color: var(--color-sub);
  border-radius: 2px;
  display: block;
  margin: 10px auto 0;
}

/*------------------------------
*
* fee
*
------------------------------*/
.fee-contents__ttl{
  font-size: var(--font-size-30);
  padding: 0.25em 1em;
  border-radius: var(--round-10);
  margin-bottom: 30px;

}
.fee-contents:not(:last-child) {
  margin-bottom: 50px;
}
.fee-item {
  border-radius: var(--round-30);
  padding: 34px 40px 40px;
}
.fee-item:not(:last-child) {
  margin-bottom: 30px;
}
.fee-item__ttl {
  font-size: var(--font-size-24);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-sub);
}
.fee-item__price {
  line-height: 1;
  margin-bottom: 20px;
}

/* ===========================================
*
* voice page
*
* ======================================== */
.voice-page .page-visual__img {
  height: 323px;
}

/*------------------------------
*
* voice
*
------------------------------*/
.voice-txt {
  margin-bottom: 80px;
}

.voice-link-list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

.voice-link-list__btn {
  width: 360px;
}

.voice-contents {
  margin-top: 80px;
}

.voice {
  padding: 71px calc(50% - 540px) 80px;
  border-radius: 50px;
}
.voice:not(:last-child) {
  margin-bottom: 70px;
}
.voice__ttl {
  font-size: var(--font-size-36);
  letter-spacing: var(--letter-spacing-base);
  margin-bottom: 31px;
  letter-spacing: var(--letter-spacing-base);
  padding-left: 1.1111111111em;
  position: relative;
  z-index: 1;
}
.voice__ttl::before {
  content: "";
  width: 0.5555555556em;
  height: 0.5555555556em;
  border-radius: 4px;
  background-color: var(--color-main);
  position: absolute;
  top: 0.75em;
  left: 0;
  translate: 0% -50%;
}
.voice-item {
  padding: 40px;
  border-radius: 24px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.voice-item:not(:last-child) {
  margin-bottom: 30px;
}
.voice-item__img {
  width: 260px;
  margin-right: 30px;
  aspect-ratio: 26/18;
  border-radius: var(--round-20);
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.voice-item__content {
  -ms-flex-negative: 1;
      flex-shrink: 1;
  width: 100%;
}
.voice-item__ttl {
  margin-bottom: 16px;
}
.voice-item__info {
  line-height: 1;
  margin-bottom: 18px;
}

/* ===========================================
*
* single page
*
* ======================================== */
.single {
  position: relative;
  z-index: 5;
}
.single__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.single__date {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-bottom: 16px;
  line-height: 1;
  color: rgb(var(--color-main-rgb)/0.4);
}
.single__tags {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 24px;
}
.single__ttl {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  width: 100%;
  font-size: var(--font-size-24);
  border-left: 5px solid var(--color-main);
  font-weight: var(--font-weight-bold);
  padding-left: 0.75em;
  margin-bottom: 32px;
}
.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid var(--color-main);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.sitemap-list__link::after {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid var(--color-main);
  border-right: 2px solid var(--color-main);
  position: absolute;
  top: 50%;
  right: 1.5em;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.sitemap-list__link:hover {
  color: var(--color-main);
}
.sitemap-list__link:hover::after {
  right: 1em;
}

/* ===========================================
*
* 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-box {
  margin-bottom: 40px;
}

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