@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: 280px;
  /* map height */
  --map-height: 350px;
  /* btn defaults */
  --btn-height: 56px;
  --btn-line-height: 1;
  --btn-font-size: var(--font-size-base);
  --btn-font-weight: var(--font-weight-medium);
  --btn-letter-space: var(--letter-spacing-base);
  --btn-padding-x: 0.5em;
  --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: 130px;
  /* breadcrumb settings */
  --bread-letter-space: var(--letter-space-base);
  --bread-font-size: var(--font-size-13);
  --bread-font-weight: var(--font-weight-medium);
  --bread-color: var(--color-primary);
  --bread-grater-color: var(--color-text-base);
  --bread-grater-content: "＞";
  --bread-grater-space: 0 0.5em;
  --bread-hov-color: var(--color-text-primary);
  --bread-link-color: var(--color-primary);
  --bread-last-item-color: var(--color-text-base);
  --bread-padding: 18px 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: 16px;
  --prev-next-link-padding: 1em 1em;
  --prev-next-link-round: var(--round-5);
  --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-tertiary);
  --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-tertiary);
  --tag-btn-round: var(--round-5);
  --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: var(--round-5);
  --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-tertiary);
}

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-base);
  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;
  -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__right {
  width: 800px;
}
.header__info {
  gap: 20px;
}
.header__btns {
  gap: 10px;
}
.header__line-btn {
  width: 260px;
}
.header__contact-btn {
  width: 180px;
}
.header-nav {
  margin-top: 20px;
  width: 100%;
}
.header-nav__item:not(:last-child) {
  position: relative;
  z-index: 1;
}
.header-nav__item:not(:last-child)::after {
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-radius: var(--round-full);
  background-color: var(--color-secondary);
  position: absolute;
  top: 50%;
  translate: 50% -50%;
  right: 0;
}
.header-nav__link {
  position: relative;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding-inline: 1.5em;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
}
.header-nav__link:hover {
  color: var(--color-primary);
  opacity: 1;
}
.header-nav__link.current {
  color: var(--color-primary);
}

/* ===========================================
*
* footer style
*
* ======================================== */
.footer {
  position: relative;
  background-color: var(--color-primary);
  padding-block: 40px;
}
.footer__inner {
  padding-block: 80px 60px;
  padding-inline: 5.2083333333%;
  background-color: var(--color-white);
  border-radius: var(--round-10);
}
.footer__top {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer-nav {
  margin-top: 60px;
  width: 100%;
  border-top: 1px solid var(--color-secondary);
  padding-top: 20px;
}
.footer-nav__list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2em;
  width: 100%;
}
.footer-nav__link {
  line-height: 1;
  font-size: var(--font-size-14);
  letter-spacing: var(--letter-spacing-base);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer-nav__link:hover, .footer-nav__link.current {
  color: var(--color-primary);
}
.footer__tel {
  --tel-font-size: var(--font-size-40);
}
.footer__copy {
  font-size: var(--font-size-12);
  letter-spacing: var(--letter-spacing-base);
  width: 100%;
  display: block;
  text-align: center;
  margin-top: 60px;
  color: var(--color-primary);
}

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

/* ------------------------------------------------------------------------------
*
* Object
*
* ------------------------------------------------------------------------------ */
/* ----------------------------------------------------
*  Component（共通化されたコンポーネントスタイル）
*  ---------------------------------------------------- */
/* logo
-------------------------*/
.logo {
  width: var(--logo-width);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: block;
}
.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 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  font-size: var(--font-size-35);
  margin-bottom: 60px;
}
.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: 1em;
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-base);
  font-family: var(--font-sub);
  margin-block: -0.25em;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.cmn-ttl__sub {
  color: var(--color-main);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-30);
  letter-spacing: var(--letter-spacing-base);
  font-weight: var(--font-weight-regular);
  font-family: var(--font-en);
  color: var(--color-text-secondary);
  margin-block: -0.25em;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: 1.8em;
  position: relative;
  z-index: 1;
}
.cmn-ttl__sub::before {
  content: "";
  width: 100%;
  height: 4px;
  background: url("/img/common/ttl_border_left.png") no-repeat left center/contain, url("/img/common/ttl_border_right.png") no-repeat right center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
}

/* 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);
}

/* cmn-border-bottom-ttl
-------------------------*/
.cmn-border-bottom-ttl {
  font-size: var(--font-size-30);
  font-family: var(--font-sub);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--letter-spacing-base);
  padding-bottom: 3px;
  border-bottom: 1px solid var(--color-tertiary);
}

/* cmn-bg-ttl
-------------------------*/
.cmn-bg-ttl {
  --ttl-bg-color: var(--color-primary);
  --ttl-color: var(--color-white);
  font-size: var(--font-size-30);
  color: var(--ttl-color);
  background-color: var(--ttl-bg-color);
  font-weight: var(--font-weight-medium);
  font-family: var(--font-sub);
  letter-spacing: var(--letter-spacing-medium);
  padding: 10px 20px;
  border-radius: var(--round-10);
  text-align: center;
}

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

.tel {
  /* tel　style */
  --tel-font-size: 40px;
  --tel-icon-space: 1em;
  --tel-icon-position: 0.5em;
  --tel-icon-width: 0.75em;
  --tel-icon-height: 0.75em;
  font-family: var(--font-sub, sans-serif);
  font-weight: var(--font-weight-black, 700);
  font-size: var(--tel-font-size, 28px);
  line-height: 1;
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.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(-42.5%);
          transform: translateY(-42.5%);
}
.tel-icon--main::before {
  background: url(../img/common/icon_tel_main.png) no-repeat center/contain;
}

.tel-area__txt {
  background-color: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  font-size: var(--font-size-14);
  letter-spacing: var(--letter-spacing-base);
  line-height: 23px;
  padding-inline: 10px;
  border-radius: var(--round-5);
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 10px;
  position: relative;
  z-index: 1;
}
.tel-area__txt::after {
  content: "";
  width: 11px;
  height: 9px;
  background: url("/img/common/tel_bubble.png") no-repeat top center/contain;
  position: absolute;
  right: 10px;
  bottom: 0;
  translate: 0 100%;
}
.tel-area .tel {
  --tel-font-size: var(--font-size-28);
}

/*
 snsクラス
-------------------------*/
.sns {
  --sns-icon-space: 15px;
  --sns-icon-size: 30px;
  gap: var(--sns-icon-space);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.sns__icon {
  width: var(--sns-icon-size);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: block;
}
.sns__icon:hover {
  opacity: 0.7;
}
.sns__icon img {
  width: 100%;
}

/*------------------------------
*
* 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-base);
  --table-th-text-align: left;
  --table-th-x-padding: 30px;
  --table-th-y-padding: 0.8125em;
  --table-th-bg-color: var(--color-primary);
  --table-th-color: var(--color-white);
  --table-th-width: 300px;
  --table-td-x-padding: 30px;
  --table-td-y-padding: 0.8125em;
  --table-td-bg-color: var(--color-white);
  --table-td-color: var(--color-text-base);
  --table-td-width: calc(100% - var(--table-th-width));
  --table-border-color: var(--color-primary);
  --table-th-border-color: var(--color-white);
  --table-td-border-color: var(--color-primary);
  --table-width: 100%;
  width: var(--table-width);
  border: 2px solid var(--table-border-color);
  letter-spacing: var(--table-letter-spacing);
  line-height: 1.875;
}
.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;
  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.1875;
  --sentence-p-margin: 2.1875em;
  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);
}

/* shine-txt
-------------------------*/
.shine-txt {
  position: relative;
  z-index: 1;
  padding-inline: 25px;
  font-size: var(--font-size-25);
  font-weight: var(--font-weight-bold);
  font-family: var(--font-sub);
  letter-spacing: var(--letter-spacing-base);
  text-align: center;
  padding-inline: 2.2em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 1;
}
.shine-txt::after {
  content: "";
  width: 100%;
  height: 3.16em;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 1;
  background: url("/img/common/shine_deco_left.png") no-repeat left center/contain, url("/img/common/shine_deco_right.png") no-repeat right center/contain;
}

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

/*------------------------------
*
* business-info
*
------------------------------*/
.cmn-business-info {
  /* 営業時間・定休日をまとめたdl */
  gap: 5px 18px;
  font-size: 13px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.cmn-business-info__item {
  gap: 5px 10px;
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-medium);
}
.cmn-business-info__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--rounded {
  border-radius: var(--round-5);
}
.cmn-btn--rounded-full {
  border-radius: var(--round-full);
}
.cmn-btn--primary {
  display: block;
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  letter-spacing: var(--btn-letter-space);
  line-height: var(--btn-line-height);
  font-family: var(--btn-font-family);
  text-align: center;
  padding-block: var(--btn-padding-y);
  padding-inline: var(--btn-padding-x);
  position: relative;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: var(--color-text-base);
  border: 2px solid var(--color-primary);
}
.cmn-btn--primary:hover {
  background-color: rgb(var(--color-secondary-rgb)/0.3);
  opacity: 1;
}
.cmn-btn--bg-primary {
  --btn-height: 70px;
  --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(--btn-letter-space);
  line-height: var(--btn-line-height);
  font-family: var(--btn-font-family);
  text-align: center;
  padding-block: var(--btn-padding-y);
  padding-inline: var(--btn-padding-x);
  position: relative;
  z-index: 1;
  background-color: var(--color-tertiary);
  color: var(--color-white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cmn-btn--bg-primary:hover {
  background-color: var(--color-tertiary-darken);
  opacity: 1;
}
.cmn-btn--line {
  display: block;
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  letter-spacing: var(--btn-letter-space);
  line-height: var(--btn-line-height);
  font-family: var(--btn-font-family);
  text-align: center;
  padding-block: var(--btn-padding-y);
  padding-inline: var(--btn-padding-x);
  position: relative;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: var(--color-text-base);
  border: 2px solid var(--color-line);
}
.cmn-btn--line:hover {
  background-color: rgb(var(--color-tertiary-rgb)/0.2);
  opacity: 1;
}
.cmn-btn--icon-line > span {
  padding-left: 45px;
  position: relative;
  z-index: 1;
  display: inline-block;
}
.cmn-btn--icon-line > span::before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/common/icon_line.svg) no-repeat center/contain;
}
.cmn-btn--icon-mail > span {
  padding-left: 2.25em;
  position: relative;
  z-index: 1;
  display: inline-block;
}
.cmn-btn--icon-mail > span::before {
  content: "";
  width: 1.5em;
  height: 1.25em;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/common/icon_mail.png) no-repeat center/contain;
}
.cmn-btn--arrow-down {
  position: relative;
  z-index: 1;
}
.cmn-btn--arrow-down::after {
  content: "";
  width: 13px;
  height: 10px;
  background: url("/img/common/arrow_down_white.svg") no-repeat top center/contain;
  position: absolute;
  right: 30px;
  top: 50%;
  translate: 0 -50%;
  -webkit-transition: 0.3s;
  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%;
  height: clamp(533px, 41.6666666667vw, 800px);
  position: relative;
  z-index: 1;
}
.mv::before {
  content: "";
  height: 4.75%;
  width: 100%;
  background: url("/img/pattern/wave_bottom.png") repeat-x top center/contain;
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 31;
}
.mv::after {
  content: "";
  max-width: 219px;
  width: 11.40625%;
  aspect-ratio: 219/351;
  position: absolute;
  bottom: 0;
  left: calc(50% + min(316px, 16.4583333333%));
  background: url("/img/top/mv_illust_staff.png") no-repeat top center/contain;
  z-index: 21;
}
.mv__catch {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 20;
  width: min(757px, 39.4270833333%);
  translate: -0.4623513871% -0.9536784741%;
}
.mv__catch::after {
  content: "";
  width: 25.2311756935%;
  height: 23.1607629428%;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  translate: -31.4136125654% 50.5882352941%;
  background: url("/img/top/mv_illust_box.png") no-repeat top center/contain;
}

/*------------------------------
*
* main style sv(sub visual)
*
------------------------------*/
.sv {
  width: 100%;
  position: relative;
  z-index: 1;
  height: clamp(300px, 20.8333333333vw, 400px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.sv::before {
  content: "";
  height: 9.5%;
  width: 100%;
  background: url("/img/pattern/wave_bottom.png") repeat-x top center/contain;
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 31;
}
.sv__catch {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 20;
  font-size: 56px;
  font-size: var(--font-size-40);
  font-family: var(--font-sub);
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-base);
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 600px;
  padding: 0.25em 1em;
  border-radius: var(--round-10);
  background: url("/img/pattern/pattern_stripe02.png") repeat center/auto;
  -webkit-box-shadow: 3.536px 3.536px 0px 0px rgb(var(--color-white-rgb)/0.7);
          box-shadow: 3.536px 3.536px 0px 0px rgb(var(--color-white-rgb)/0.7);
}
.sv__catch::after {
  content: "";
  width: 3.475em;
  height: 1.55em;
  background: url("/img/sv/sv_illust.png") no-repeat top center/contain;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  translate: -71.9424460432% 64.5161290323%;
}

/*------------------------------
*
* pagenation style
*
------------------------------*/
.pagenation {
  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);
  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;
  -webkit-transition: 0.3s;
  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);
}

/*------------------------------
*
* cmn-post
*
------------------------------*/
.cmn-post {
  --post-item-bg-color: var(--color-theme);
  --post-width: 100%;
  --post-item-margin: 10px;
  --post-link-padding: 30px 20px 10px;
  --post-tags-width: 100%;
  --post-title-font-size: var(--font-size-base);
  --post-date-font-size: var(--font-size-base);
  width: var(--post-width);
}
.cmn-post-item {
  width: 100%;
  padding-top: 32px;
  position: relative;
  z-index: 1;
}
.cmn-post-item:not(:last-child) {
  margin-bottom: var(--post-item-margin, 15px);
}
.cmn-post__link {
  background-color: var(--post-item-bg-color, transparent);
  border-radius: 0 var(--round-10);
  min-height: 78px;
}
.cmn-post__link.flx-base {
  padding-block: 20px;
}
.cmn-post__box {
  width: calc(100% - 120px);
}
.cmn-post__box.w-100 {
  width: 100%;
}
.cmn-post__thumb {
  width: 100px;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--round-5);
}
.cmn-post__tags {
  margin-top: 10px;
  width: var(--post-tags-width, auto);
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.cmn-post__link {
  padding: var(--post-link-padding, 20px 30px);
}
.cmn-post__date {
  font-size: var(--post-date-font-size, 16px);
  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: var(--font-weight-bold);
  padding-inline: 15px;
  border-radius: var(--round-10) var(--round-10) 0 0;
  display: inline-block;
  line-height: 32px;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}
.cmn-post__ttl {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.2;
  width: 100%;
  font-size: var(--post-title-font-size, 16px);
}

/*------------------------------
*
* tag
*
------------------------------*/
.tag {
  --tag-font-size: 13px;
  --tag-height:20px;
  --tag-x-padding: 5px;
  --tag-round:var(--round-5);
  --tag-color: var(--color-primary);
  --tag-bg-color: var(--color-white);
  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 {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  --tag-color:var(--color-white);
  --tag-bg-color: var(--color-primary);
}
.tag-link.tag {
  padding: 0;
}
.tag-link > a {
  padding: 0 var(--tag-x-padding);
}
.tag-link:hover {
  background-color: var(--color-theme);
  color: var(--color-primary);
}

.tag-list {
  --tag-space: 5px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          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;
  -webkit-transition: all 0.3s;
  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);
}

/*------------------------------
*
* 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: var(--prev-next-link-width);
}
.prev-next__item:not(:last-child) {
  margin-right: var(--prev-next-link-gutter);
}
.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%;
  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 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: 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);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: var(--prev-next-back-link-width);
}
.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 {
  width: var(--bread-width, 100%);
  background-color: var(--bread-bg-color, transparent);
}
.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-inline: auto;
}

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

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

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

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

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

.mt-2xl {
  margin-top: 60px;
}

.mt-3xl {
  margin-top: 70px;
}

.mt-4xl {
  margin-top: 80px;
}

.mt-huge {
  margin-top: 100px;
}

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

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

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

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

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

.mb-2xl {
  margin-bottom: 60px;
}

.mb-3xl {
  margin-bottom: 70px;
}

.mb-4xl {
  margin-bottom: 80px;
}

.mb-huge {
  margin-bottom: 100px;
}

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

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

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

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

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

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

.pt-2xl {
  margin-top: 60px;
}

.pt-3xl {
  margin-top: 70px;
}

.pt-4xl {
  margin-top: 80px;
}

.pt-huge {
  margin-top: 100px;
}

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

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

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

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

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

.pb-2xl {
  margin-bottom: 60px;
}

.pb-3xl {
  margin-bottom: 70px;
}

.pb-4xl {
  margin-bottom: 80px;
}

.pb-huge {
  margin-bottom: 100px;
}

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

/* ----------------------------------------------------
*  Project （ページごとのスタイルなど）
*  ---------------------------------------------------- */
/* ===========================================
*
* top page style
*
* ======================================== */
/*------------------------------
*
* greeting
*
------------------------------*/
.greeting {
  position: relative;
  z-index: 0;
  padding-block: 138px 200px;
}
.greeting::before {
  content: "";
  z-index: -1;
  width: min(287px, 17.5%);
  aspect-ratio: 287/184;
  bottom: 40px;
  left: max(10px, 50% - 750px);
  position: absolute;
  background: url("/img/top/greeting_illust_left.png") no-repeat top center/contain;
}
.greeting__ttl {
  font-size: var(--font-size-35);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-base);
  line-height: 60px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.greeting__ttl::before, .greeting__ttl::after {
  content: "";
  position: absolute;
  z-index: -1;
}
.greeting__ttl::before {
  width: 1.2285714286em;
  height: 1.1428571429em;
  background: url("/img/top/greeting_ttl_deco_left.png") no-repeat top center/contain;
  top: 0;
  left: 0;
  translate: -85% -70%;
}
.greeting__ttl::after {
  width: 0.8857142857em;
  height: 1.0285714286em;
  background: url("/img/top/greeting_ttl_deco_right.png") no-repeat top center/contain;
  bottom: 0;
  right: 0;
  translate: 20% -20%;
}
.greeting__sentence {
  width: 450px;
  position: relative;
  z-index: 1;
}
.greeting__img {
  position: absolute;
  top: 120px;
  left: calc(50% + 20px);
  z-index: 1;
  width: calc(520px + 50% - 540px);
  height: 500px;
}
.greeting__img > img {
  border-radius: var(--round-20) 0 0 var(--round-20);
}
.greeting__img::after {
  content: "";
  height: 100%;
  width: calc(100% + 10px);
  position: absolute;
  z-index: -1;
  right: 0;
  top: 10px;
  background: url("/img/pattern/pattern_stripe01.png") repeat center/auto;
  border-radius: var(--round-20) 0 0 var(--round-20);
}

/*------------------------------
*
* worries
*
------------------------------*/
.worries {
  background: url("/img/pattern/wave_top.png") repeat-x top center/auto 38px, url("/img/top/worries_curve.png") no-repeat bottom center/max(1920px, 100%) auto, var(--color-theme);
  padding-block: 150px;
  position: relative;
  z-index: 1;
}
.worries::before {
  content: "";
  width: 1460px;
  height: 171px;
  position: absolute;
  bottom: 140px;
  background: url("/img/common/building_illust_left.png") no-repeat left bottom/auto 100%, url("/img/common/building_illust_right.png") no-repeat right bottom/auto 97%;
  left: 50%;
  translate: -45% 0;
}
.worries__ttl {
  position: relative;
  z-index: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.worries__ttl::before {
  content: "";
  width: 1.2571428571em;
  height: 1.2571428571em;
  background: url("/img/top/worries_ttl_deco_left.png") no-repeat top center/contain;
  position: absolute;
  top: 0;
  left: 0;
  translate: -95% -100%;
}
.worries__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  position: relative;
  z-index: 1;
}
.worries__list::after {
  content: "";
  width: 339px;
  aspect-ratio: 339/256;
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  translate: 100px 30px;
  background: url("/img/top/worries_illust02.png") no-repeat top center/contain;
}
.worries__list-item {
  width: 340px;
  height: 270px;
  text-align: center;
  padding-bottom: 20px;
  padding-inline: 20px;
  font-size: var(--font-size-22);
  line-height: 40px;
  place-content: center;
  background: url("/img/top/worries_item_bg.png") no-repeat top center/contain;
  position: relative;
  z-index: 1;
}
.worries__list-item:nth-child(1)::before {
  content: "";
  width: 36.4705882353%;
  aspect-ratio: 124/156;
  position: absolute;
  top: 0;
  left: 0;
  background: url("/img/top/worries_illust01.png") no-repeat top center/contain;
  translate: -8.064516129% -51.2820512821%;
}
.worries__list-item:nth-child(4) {
  margin-left: 90px;
}

/*------------------------------
*
* recommend
*
------------------------------*/
.recommend {
  position: relative;
  z-index: 10;
  padding-block: 150px 120px;
}
.recommend::before {
  content: "";
  background: url("/img/top/worries_arrow.png") no-repeat top center/contain;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  width: 34px;
  height: 150px;
}
.recommend__ttl {
  position: relative;
  z-index: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.recommend__ttl::before {
  content: "";
  position: absolute;
  z-index: -2;
  height: 3.1714285714em;
  width: calc(100% + 2.0571428571em);
  background: url("/img/common/star_left.png") no-repeat top left/0.8857142857em auto, url("/img/common/star_right.png") no-repeat bottom right/0.8857142857em auto;
  bottom: 0;
  left: 50%;
  translate: -50% 30%;
}
.recommend__box {
  position: relative;
  z-index: 1;
  background-color: var(--color-text-bg);
  padding: 40px 100px;
  border-radius: 100px;
}
.recommend__box::after, .recommend__box::before {
  content: "";
  position: absolute;
}
.recommend__box::before {
  z-index: -1;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  border-radius: 100px;
  border: 2px dashed rgb(var(--color-white-rgb)/0.7);
}
.recommend__box::after {
  width: 261px;
  aspect-ratio: 261/306;
  bottom: 0;
  left: 0;
  translate: -100px 40px;
  background: url("/img/top/recommend_illust01.png") no-repeat top center/contain;
}
.recommend__sentence {
  text-align: center;
  color: var(--color-white);
  font-size: var(--font-size-20);
  --sentence-line-height: 2;
}
.recommend__actions {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-inline: auto;
  max-width: 1000px;
  margin-top: 30px;
  --col-x-space: 0px;
  --col-y-space: 0px;
  position: relative;
  z-index: 10;
}
.recommend__actions::before {
  content: "";
  width: 2px;
  height: 100%;
  background-color: var(--color-secondary);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 1;
}
.recommend__actions-item {
  display: grid;
  place-content: center;
  padding-block: 10px;
}
.recommend__tel {
  --tel-font-size: var(--font-size-40);
  font-weight: var(--font-weight-black);
}
.recommend__btns {
  width: 300px;
  --btn-height: 66px;
  --btn-padding-y: calc(
    (var(--btn-height) - var(--btn-font-size) * var(--btn-line-height)) / 2
  );
}
.recommend__contact-btn {
  margin-bottom: 20px;
}

.page-link {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  z-index: 1;
  margin-top: 80px;
  gap: 30px;
}
.page-link::after, .page-link::before {
  content: "";
  position: absolute;
  z-index: -1;
}
.page-link::before {
  background: url("/img/top/recommend_illust03.png") no-repeat top center/contain;
  aspect-ratio: 108/98;
  width: 108px;
  top: 0;
  left: 0;
  translate: -70px -108px;
}
.page-link::after {
  background: url("/img/top/recommend_illust02.png") no-repeat top center/contain;
  width: 245px;
  aspect-ratio: 245/208;
  top: 0;
  right: 0;
  translate: 50px calc(-100% + 20px);
}
.page-link__item {
  --page-link-item-theme: var(--color-primary);
  padding-top: 20px;
  position: relative;
  z-index: 1;
}
.page-link__item-img {
  border-radius: var(--round-10);
  border: 2px solid var(--page-link-item-theme);
  background: var(--color-white);
  padding: 3px;
}
.page-link__item-img__inner {
  aspect-ratio: 34/23;
  border-radius: calc(var(--round-10) - 2px);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.page-link__item-img__inner::after {
  content: "";
  width: 40px;
  height: 40px;
  background: url("/img/top/page_link_arrow.png") no-repeat top center/contain;
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
}
.page-link__item-ttl {
  --ttl-bg-color: var(--page-link-item-theme);
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0%;
  z-index: 10;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 300px;
  margin-inline: auto;
  font-weight: var(--font-weight-medium);
}
.page-link__item-ttl::after {
  content: "";
  width: 27px;
  height: 15px;
  position: absolute;
  bottom: 0;
  right: 40px;
  translate: 0 100%;
  z-index: 0;
}
.page-link__item:nth-child(odd) .page-link__item-ttl::after {
  background: url("/img/common/bubble_primary_dark.png") no-repeat top center/contain;
}
.page-link__item:nth-child(even) {
  --page-link-item-theme: var(--color-tertiary);
}
.page-link__item:nth-child(even) .page-link__item-ttl::after {
  background: url("/img/common/bubble_secondary_dark.png") no-repeat top center/contain;
}
.page-link__item-sentence {
  margin-top: 30px;
}

/*------------------------------
*
* reason
*
------------------------------*/
.reason-outer {
  padding-block: 120px 280px;
  background: url("/img/top/reason_bg_top.png") no-repeat top left/min(1599px, 83.28125%) auto, url("/img/pattern/wave_bottom.png") repeat-x bottom center/auto 38px, url("/img/pattern/pattern01.jpg") repeat center/auto;
}

.reason__ttl {
  margin-bottom: 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.reason__ttl .cmn-ttl__main {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.reason__ttl .cmn-ttl__main::before {
  content: "";
  position: absolute;
  z-index: -2;
  height: 1.8571428571em;
  width: 1.1428571429em;
  background: url("/img/common/icon_hint.png") no-repeat top center/contain;
  top: 50%;
  left: 0;
  translate: -171.4285714286% -50%;
}
.reason__box {
  padding: 100px 80px;
  border-radius: var(--round-20);
  background: url("/img/pattern/pattern_stripe02.png") repeat center/auto;
  position: relative;
  z-index: 1;
}
.reason__box::after {
  content: "";
  background: url("/img/top/reason_deco.png") no-repeat top center/contain;
  translate: -20px -20px;
  position: absolute;
  z-index: 1;
  width: 91px;
  aspect-ratio: 91/75;
  bottom: 0;
  left: 0;
}
.reason-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px 80px;
  z-index: 1;
  position: relative;
}
.reason-list::after {
  content: "";
  width: 226px;
  aspect-ratio: 226/224;
  background: url("/img/common/man_gray_suit_illust.png") no-repeat top center/contain;
  top: 0;
  right: 20px;
  translate: 0 calc(-100% + 50px);
  position: absolute;
  z-index: -1;
}
.reason-list__item__box {
  background: url("/img/pattern/pattern_stripe03.png") repeat center/auto;
  border-radius: var(--round-10);
  padding-block: 25px 30px;
  text-align: center;
  padding-bottom: 23px;
  min-height: 433px;
}
.reason-list__item__inner {
  border-bottom: 2px solid var(--color-white);
  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;
  min-height: 265px;
}
.reason-list__item__num {
  font-size: var(--font-size-25);
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}
.reason-list__item__num .num {
  font-size: var(--font-size-40);
}
.reason-list__item__txt {
  color: var(--color-white);
  font-size: var(--font-size-25);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: 1.48em;
  position: relative;
  z-index: 1;
  line-height: 1;
  margin-bottom: 14px;
  text-align: center;
  margin-inline: auto;
}
.reason-list__item__txt::after {
  content: "";
  width: 100%;
  height: 1.08em;
  background: url("/img/common/deco_slash_white_left.png") no-repeat left center/contain, url("/img/common/deco_slash_white_right.png") no-repeat right center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
}
.reason-list__item__ttl {
  color: var(--color-white);
  font-size: var(--font-size-28);
  line-height: 45px;
  min-height: 90px;
  place-content: center;
  margin-top: 22px;
}
.reason-list__item__icon {
  margin-bottom: 30px;
  width: 160px;
  margin-inline: auto;
}

/*------------------------------
*
* counsel
*
------------------------------*/
.counsel {
  margin-top: 100px;
}
.counsel__ttl {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: 2.4857142857em;
  position: relative;
  z-index: 1;
  line-height: 60px;
  text-shadow: var(--color-white) 4px 0px 0px, var(--color-white) 3.87565px 0.989616px 0px, var(--color-white) 3.51033px 1.9177px 0px, var(--color-white) 2.92676px 2.72656px 0px, var(--color-white) 2.16121px 3.36588px 0px, var(--color-white) 1.26129px 3.79594px 0px, var(--color-white) 0.282949px 3.98998px 0px, var(--color-white) -0.712984px 3.93594px 0px, var(--color-white) -1.66459px 3.63719px 0px, var(--color-white) -2.51269px 3.11229px 0px, var(--color-white) -3.20457px 2.39389px 0px, var(--color-white) -3.69721px 1.52664px 0px, var(--color-white) -3.95997px 0.56448px 0px, var(--color-white) -3.97652px -0.432781px 0px, var(--color-white) -3.74583px -1.40313px 0px, var(--color-white) -3.28224px -2.28625px 0px, var(--color-white) -2.61457px -3.02721px 0px, var(--color-white) -1.78435px -3.57996px 0px, var(--color-white) -0.843183px -3.91012px 0px, var(--color-white) 0.150409px -3.99717px 0px, var(--color-white) 1.13465px -3.8357px 0px, var(--color-white) 2.04834px -3.43574px 0px, var(--color-white) 2.83468px -2.82216px 0px, var(--color-white) 3.44477px -2.03312px 0px, var(--color-white) 3.84068px -1.11766px 0px, var(--color-white) 3.9978px -0.132717px 0px;
  margin-bottom: 187px;
}
.counsel__ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  width: 100%;
  height: 3.1428571429em;
  background: url("/img/common/shine_deco_left.png") no-repeat left center/contain, url("/img/common/shine_deco_right.png") no-repeat right center/contain;
}
.counsel__container {
  position: relative;
  z-index: 1;
}
.counsel__map {
  top: -130px;
  left: 374px;
  position: absolute;
  z-index: -2;
}
.counsel__box {
  width: 420px;
  padding: 40px;
  background: var(--color-white);
  position: relative;
  z-index: 1;
  border-radius: var(--round-10);
}
.counsel__box::before, .counsel__box::after {
  content: "";
  position: absolute;
  z-index: -1;
}
.counsel__box::before {
  width: 420px;
  aspect-ratio: 420/244;
  background: url("/img/top/counseling_illust.png") no-repeat top center/contain;
  position: absolute;
  bottom: 0;
  left: 0;
  translate: -70px 224px;
}
.counsel__box::after {
  width: 42px;
  height: 24px;
  background: url("/img/common/bubble_white.png") no-repeat top center/contain;
  bottom: 0;
  right: 0;
  translate: -60px 100%;
}
.counsel__box-flag {
  position: absolute;
  left: 0;
  top: 0;
  translate: -10px -100%;
  width: 247px;
  z-index: 1;
}

/*------------------------------
*
* top-news
*
------------------------------*/
.top-news {
  background: url("/img/top/news_bg.png") no-repeat bottom right/min(1377px, 71.71875%) auto;
  padding-block: 120px;
}
.top-news__ttl {
  margin-bottom: 50px;
  gap: 10px;
  grid-area: title;
}
.top-news__ttl .cmn-ttl__main {
  margin-block: 0;
  font-size: var(--font-size-30);
  line-height: 50px;
  width: 270px;
  height: 196px;
  background: url("/img/top/news_ttl_bg.png") no-repeat top center/contain;
  place-content: center;
  text-align: center;
}
.top-news__btn {
  grid-area: button;
  max-width: 250px;
  width: 100%;
}
.top-news__btn a > span {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.top-news__btn a > span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: -28px -50%;
  width: 10px;
  height: 13px;
  background: url("/img/common/arrow_right_white.svg") no-repeat top center/contain;
}
.top-news__container {
  display: grid;
  grid-template-areas: "title post" "button post";
  grid-template-columns: 270px 1fr;
  gap: 0px 90px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
}
.top-news .cmn-post {
  grid-area: post;
}

/* ===========================================
*
* about-page
*
* ======================================== */
/*------------------------------
*
* about-links
*
------------------------------*/
.about-links__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
/*------------------------------
*
* feature
*
------------------------------*/
.feature {
  padding-top: 0;
  position: relative;
  z-index: 1;
  padding-bottom: 120px;
}
.feature::before {
  content: "";
  width: 287px;
  aspect-ratio: 287/184;
  background: url("/img/common/box_vase_deco.png") no-repeat top center/contain;
  bottom: 30px;
  left: calc(50% - 540px);
  translate: -20px 0;
  position: absolute;
  z-index: -1;
}
.feature__container {
  background: var(--color-theme);
  border-radius: var(--round-20);
  padding: 80px;
  position: relative;
  z-index: 1;
}
.feature__container::before, .feature__container::after {
  content: "";
  position: absolute;
  z-index: -1;
}
.feature__container::before {
  width: 216px;
  aspect-ratio: 216/171;
  background: url("/img/common/building_illust_left.png") no-repeat top center/contain;
  bottom: 0;
  left: 0;
  translate: -20px -10px;
}
.feature__container::after {
  width: 166px;
  aspect-ratio: 166/266;
  background: url("/img/common/man_yellow_jacket_ware_illust.png") no-repeat top center/contain;
  right: 0;
  bottom: 0;
  translate: 38px 0;
}
.feature__ttl {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-block: 0px 70px;
  font-size: var(--font-size-35);
  letter-spacing: var(--letter-spacing-base);
  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;
  position: relative;
  z-index: 1;
  padding-inline: 2.4571428571em;
}
.feature__ttl .cross {
  letter-spacing: var(--letter-spacing-none);
}
.feature__ttl__sub {
  font-size: var(--font-size-30);
  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: 4px;
  margin-bottom: 20px;
}
.feature__ttl__main {
  font-size: 1em;
  --marker-start: 45%;
  --marker-end: 45%;
}
.feature__ttl .lg {
  font-size: var(--font-size-40);
}
.feature__ttl .bg-double-tone--primary {
  display: inline-block;
  border-radius: 1em;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background-color: var(--color-primary);
  color: var(--color-white);
  line-height: 40px;
  padding-inline: 0.5em;
}
.feature__ttl .bg-double-tone--primary::after {
  content: "";
  width: 100%;
  height: 50%;
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  background-color: #1595d7;
}
.feature__ttl::after {
  content: "";
  width: 100%;
  height: 3.1142857143em;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  background: url("/img/common/shine_deco_left02.png") no-repeat left center/contain, url("/img/common/shine_deco_right02.png") no-repeat right center/contain;
}
.feature__ttl::before {
  content: "";
  position: absolute;
  z-index: -2;
  height: 4.6857142857em;
  width: calc(100% - 2.6857142857em);
  background: url("/img/common/star_left_white.png") no-repeat top left/0.8857142857em auto, url("/img/common/star_right_white.png") no-repeat bottom right/0.8857142857em auto;
  top: 50%;
  left: 50%;
  translate: -48% -45%;
}
.feature__sentence {
  text-align: center;
}
.feature .point-list {
  margin-top: 90px;
}

.point-list {
  --col-x-space: 80px;
  --col-y-space: 45px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.point-list__item__box {
  background: url("/img/pattern/pattern_stripe03.png") repeat center/auto;
  border-radius: var(--round-10);
  padding-block: 25px 30px;
}
.point-list__item__num {
  font-size: var(--font-size-25);
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}
.point-list__item__num .num {
  font-size: var(--font-size-40);
}
.point-list__item__txt {
  color: var(--color-white);
  font-size: var(--font-size-25);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: 1.88em;
  position: relative;
  z-index: 1;
  line-height: 1;
  margin-bottom: 14px;
  text-align: center;
  margin-inline: auto;
}
.point-list__item__txt::after {
  content: "";
  width: 100%;
  height: 1.08em;
  background: url("/img/common/deco_slash_white_left.png") no-repeat left center/contain, url("/img/common/deco_slash_white_right.png") no-repeat right center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
}
.point-list__item__ttl {
  margin-bottom: 20px;
  color: var(--color-white);
  font-size: var(--font-size-30);
  border-bottom: 2px solid var(--color-white);
  text-align: center;
  padding-bottom: 23px;
}
.point-list__item__icon {
  margin-bottom: 30px;
  width: 160px;
  margin-inline: auto;
}
.point-list__item__sentence {
  --sentence-line-height: 1.875em;
  padding: 20px;
  border-radius: var(--round-10);
  background-color: rgb(var(--color-white-rgb)/0.9);
  width: calc(100% - 60px);
  margin-inline: auto;
}

/*------------------------------
*
* flow
*
------------------------------*/
.flow {
  padding-block: 120px;
  background: url("/img/pattern/wave_top.png") repeat-x top center/auto 38px, url("/img/pattern/pattern01.jpg") repeat center/auto;
  position: relative;
  z-index: 1;
}
.flow::before {
  content: "";
  width: 225px;
  aspect-ratio: 225/224;
  background: url("/img/common/man_gray_suit_illust.png") no-repeat top center/contain;
  position: absolute;
  z-index: 3;
  bottom: 0;
  right: calc(50% - 540px);
  translate: 30px 0;
}
.flow-item {
  background-color: var(--color-text-bg);
  position: relative;
  z-index: 1;
  border-radius: var(--round-20);
  padding: 43px 80px 40px;
}
.flow-item::before {
  content: "";
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border-radius: var(--round-10);
  border: 2px dashed rgb(var(--color-white-rgb)/0.7);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
}
.flow-item__num {
  font-size: var(--font-size-25);
  line-height: 40px;
  height: 40px;
  place-content: center;
  padding-bottom: 0.1em;
  border-radius: var(--round-10) 0;
  background-color: var(--color-white);
  padding-inline: 20px;
  position: absolute;
  top: 10px;
  left: 10px;
}
.flow-item__num .num {
  line-height: 40px;
  font-size: var(--font-size-40);
}
.flow-item__ttl {
  font-size: var(--font-size-30);
  letter-spacing: var(--letter-spacing-base);
  margin-bottom: 23px;
}
.flow-item__box {
  padding: 30px;
  border-radius: var(--round-10);
}
.flow-item__sentence {
  text-align: center;
  --sentence-line-height: 1.875em;
}
.flow-item__actions {
  margin-top: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.flow-item__btns {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.flow-item__line-btn, .flow-item__contact-btn {
  width: 250px;
}
.flow-item:not(:last-child) {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}
.flow-item:not(:last-child)::after {
  content: "";
  width: 20px;
  height: 52px;
  position: absolute;
  bottom: -40px;
  left: 50%;
  translate: -50% 50%;
  background: url("/img/about/flow_arrow.png") no-repeat top center/contain;
}

/*------------------------------
*
* staff
*
------------------------------*/
.staff-item {
  border-radius: var(--round-20);
  border: 2px solid var(--color-primary);
  padding: 30px 60px 50px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 40px;
}
.staff-item__img {
  width: 380px;
  aspect-ratio: 38/34;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.staff-item__img > img {
  border-radius: var(--round-10);
}
.staff-item__ttl {
  margin-bottom: 30px;
}
.staff-item__profile {
  margin-bottom: 28px;
}
.staff-item__profile-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px 20px;
}
.staff-item__profile-item:not(:last-child) {
  margin-bottom: 10px;
}
.staff-item__profile-item dt {
  background-color: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100px;
  line-height: 25px;
  border-radius: 1em;
}
.staff-item__profile-item dd {
  line-height: 30px;
}
.staff-item__sentence {
  --sentence-line-height: 1.875em;
}
.staff-item:not(:last-child) {
  margin-bottom: 40px;
}

/*------------------------------
*
* faq よくあるご質問
*
------------------------------*/
.faq {
  position: relative;
  z-index: 1;
  padding-block: 120px 200px;
  background: url("/img/pattern/wave_top.png") repeat-x top center/auto 38px, var(--color-theme);
}
.faq::after {
  content: "";
  width: 1020px;
  height: 190px;
  background: url("/img/common/couple_in_trouble_illust.png") no-repeat left bottom/contain, url("/img/common/man_dark_gray_suit_illust.png") no-repeat right bottom/contain;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0%;
}
.faq-list__item:not(:last-child) {
  margin-bottom: 60px;
}
.faq-list__item .question__mark, .faq-list__item .answer__mark {
  width: 40px;
  height: 50px;
  padding-bottom: 10px;
  place-content: center;
  text-align: center;
  font-size: var(--font-size-25);
  letter-spacing: var(--letter-spacing-none);
  position: absolute;
  z-index: 1;
  top: 0;
  left: 20px;
  padding-right: 0.1em;
}
.faq-list__item .question__mark::after, .faq-list__item .answer__mark::after {
  width: 100%;
  height: 10px;
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.faq-list__item .question {
  position: relative;
  z-index: 1;
  letter-spacing: 0.05em;
  padding: 25px 40px 25px 80px;
  border-radius: var(--round-10);
  background-color: var(--main-color);
  color: var(--white-color);
  background-color: var(--color-text-bg);
  width: 980px;
  border-radius: var(--round-10);
  margin-bottom: 20px;
}
.faq-list__item .question__mark::after {
  background-color: var(--color-text-bg);
}
.faq-list__item .question__content {
  font-size: var(--font-size-20);
  letter-spacing: var(--letter-spacing-base);
}
.faq-list__item .question::after {
  background: url("/img/common/bubble_primary.png") no-repeat top center/contain;
  width: 42px;
  height: 24px;
  position: absolute;
  left: 80px;
  bottom: 0;
  translate: 0 100%;
  content: "";
}
.faq-list__item .answer {
  position: relative;
  padding: 25px 40px 25px 80px;
  width: 930px;
  border-radius: var(--round-10);
  margin-left: auto;
  background-color: var(--color-white);
}
.faq-list__item .answer__mark::after {
  background-color: var(--color-white);
}

/* ===========================================
*
* service-page
*
* ======================================== */
.banner-wrapper {
  padding-block: 100px 20px;
}

.banner {
  width: 800px;
  margin-inline: auto;
  display: block;
  border-radius: var(--round-10);
  border: 4px solid var(--color-primary);
  place-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.banner__page-name {
  font-size: var(--font-size-35);
  color: var(--color-white);
  font-family: var(--font-sub);
  font-weight: var(--font-weight-bold);
  text-shadow: 0px 0px 10px var(--color-text-base);
  text-align: center;
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 10;
}
.banner__page-name::after, .banner__page-name::before {
  content: "";
  position: absolute;
  z-index: 10;
}
.banner__page-name::before {
  width: 123px;
  aspect-ratio: 123/101;
  position: absolute;
  top: 50%;
  left: 0;
  translate: -144px -50%;
  background: url("/img/service/banner_illust.png") no-repeat top center/contain;
}
.banner__page-name::after {
  width: 40px;
  height: 40px;
  content: "";
  background: url("/img/service/banner_arrow.png") no-repeat top center/contain;
  position: absolute;
  top: 50%;
  right: 0;
  translate: 70px -50%;
}

/*------------------------------
*
* service
*
------------------------------*/
.service {
  padding-bottom: 120px;
}
.service__ttl {
  position: relative;
  z-index: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.service__ttl::after {
  content: "";
  width: 3.0857142857em;
  height: 2.8em;
  position: absolute;
  z-index: -1;
  right: 0;
  translate: 138.8888888889% -50%;
  background: url("/img/common/jewelry_watch_illust.png") no-repeat top center/contain;
  right: 0;
  top: 50%;
}
.service-item {
  --service-item-theme: var(--color-primary);
  position: relative;
  z-index: 1;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-inline: calc(50% - 540px);
}
.service-item::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  height: calc(100% - 50px);
  width: calc(50% - 20px);
  background-color: var(--color-theme);
}
.service-item__ttl {
  --ttl-bg-color: var(--service-item-theme);
  position: relative;
  z-index: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 300px;
  margin-block: 20px 70px;
  margin-inline: auto;
}
.service-item__ttl::after {
  content: "";
  width: 27px;
  height: 15px;
  position: absolute;
  bottom: 0;
  right: 40px;
  translate: 0 100%;
  z-index: 0;
}
.service-item__content {
  width: 420px;
}
.service-item__img {
  border-radius: var(--round-10);
  border: 2px solid var(--service-item-theme);
  background: var(--color-white);
  width: 600px;
  padding: 3px;
}
.service-item__img-inner {
  height: 290px;
  border-radius: calc(var(--round-10) - 2px);
  overflow: hidden;
}
.service-item:nth-child(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  padding-bottom: 20px;
}
.service-item:nth-child(odd)::after {
  right: 0;
  border-radius: var(--round-20) 0 0 var(--round-20);
}
.service-item:nth-child(odd) .service-item__ttl::after {
  background: url("/img/common/bubble_primary_dark.png") no-repeat top center/contain;
}
.service-item:nth-child(even) {
  --service-item-theme: var(--color-tertiary);
  padding-bottom: 50px;
}
.service-item:nth-child(even)::after {
  left: 0;
  border-radius: 0 var(--round-20) var(--round-20) 0;
}
.service-item:nth-child(even) .service-item__ttl::after {
  background: url("/img/common/bubble_secondary_dark.png") no-repeat top center/contain;
}
.service-item:not(:last-child) {
  margin-bottom: 60px;
}

/*------------------------------
*
* fee
*
------------------------------*/
.fee {
  position: relative;
  z-index: 1;
  padding-block: 120px;
  background: url("/img/pattern/wave_top.png") repeat-x top center/auto 38px, url("/img/pattern/pattern01.jpg") repeat center/auto;
}
.fee::after {
  content: "";
  width: 187px;
  aspect-ratio: 187/267;
  background: url("/img/common/man_blue_suit_illust.png") no-repeat top center/contain;
  left: calc(50% - 480px);
  bottom: 0;
  z-index: 1;
  position: absolute;
}
.fee__container {
  gap: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.fee-item {
  background-color: var(--color-white);
  padding: 40px 20px;
  border-radius: var(--round-20);
}
.fee-item__ttl {
  font-size: var(--font-size-30);
  margin-bottom: 30px;
  line-height: 1;
}
.fee-item__box {
  background-color: var(--color-theme);
  border-radius: var(--round-10);
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}
.fee-item__list {
  line-height: 1.667;
}
.fee-item__list > li {
  padding-left: 30px;
  font-size: var(--font-size-18);
  position: relative;
  z-index: 1;
}
.fee-item__list > li:not(:last-child) {
  margin-bottom: 20px;
}
.fee-item__list > li::before {
  content: "";
  position: absolute;
  top: 0.9375em;
  left: 0;
  translate: 0% -50%;
  width: 20px;
  height: 18px;
  background: url("/img/common/icon_star.png") no-repeat top center/contain;
}
.fee-item__truck {
  width: 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.fee-item__data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 20px;
  padding-inline: 10px;
}
.fee-item__data-ttl {
  width: 100px;
  border-radius: var(--round-5);
  background: var(--color-primary);
  text-align: center;
  place-content: center;
  color: var(--color-white);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.fee-item__data-list {
  line-height: 1.875;
  width: 100%;
}
.fee-item__price {
  margin-top: 30px;
  font-weight: var(--font-weight-black);
  font-size: var(--font-size-30);
  border: 2px solid var(--color-primary);
  border-radius: var(--round-10);
  color: var(--color-primary);
  padding: 12.5px 1em;
}
.fee-item__price .yen {
  font-size: var(--font-size-20);
}
.fee-item--kei {
  width: 520px;
}
.fee-item--2t {
  width: 520px;
}
.fee-item--2t2t {
  right: 560px;
}
.fee__note {
  text-align: center;
  margin-top: 60px;
  border-block: 1px solid var(--color-tertiary);
  padding-block: 1em;
  display: block;
}

/* ===========================================
*
* works page
*
* ======================================== */
/*------------------------------
*
* works
*
------------------------------*/
.works {
  padding-bottom: 120px;
}
.works__container {
  display: grid;
  gap: 30px 40px;
  grid-template-columns: repeat(2, 1fr);
}

.works-article__link {
  border-radius: var(--round-20);
  background-color: var(--color-white);
  border: 2px solid var(--color-primary);
  padding: 35px 20px 38px;
  display: block;
}
.works-article__ttl {
  border-bottom: 1px solid var(--color-tertiary);
  font-size: var(--font-size-20);
  letter-spacing: var(--letter-spacing-base);
  font-weight: var(--font-weight-medium);
  font-family: var(--font-sub);
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.works-article__ttl > span {
  display: block;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.works-article__images {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.works-article__images::after {
  content: "";
  width: 46px;
  height: 45px;
  position: absolute;
  bottom: 5px;
  left: 77px;
  z-index: -1;
  background: url("/img/works/works_arrow.png") no-repeat top center/contain;
}
.works-article__item {
  position: relative;
  z-index: 1;
}
.works-article__img {
  aspect-ratio: 1/1;
  position: relative;
  z-index: 1;
}
.works-article__img > img {
  border-radius: var(--round-10);
}
.works-article__label {
  position: absolute;
  left: 0;
  top: 17px;
  width: 87px;
  z-index: 10;
}
.works-article__data {
  margin-top: 28px;
}
.works-article__data-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px 20px;
}
.works-article__data-item:not(:last-child) {
  margin-bottom: 10px;
}
.works-article__data-item dt {
  background-color: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100px;
  line-height: 25px;
  border-radius: 1em;
}
.works-article__data-item dd {
  line-height: 30px;
}

/* ===========================================
*
* works-single page
*
* ======================================== */
.works-single__images {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 100px;
  position: relative;
  z-index: 1;
  padding-inline: 20px;
}
.works-single__images::after {
  content: "";
  width: 55px;
  height: 30px;
  position: absolute;
  left: 430px;
  top: 50%;
  translate: -50% calc(-50% + 10px);
  z-index: 1;
  background: url("/img/works/works_detail_arrow.png") no-repeat top center/contain;
}
.works-single__item {
  position: relative;
  z-index: 1;
}
.works-single__img {
  aspect-ratio: 36/24;
  position: relative;
  z-index: 1;
}
.works-single__img > img {
  border-radius: var(--round-10);
}
.works-single__label {
  position: absolute;
  left: 0;
  top: 17px;
  width: 87px;
  z-index: 10;
}
.works-single__data {
  margin-top: 28px;
}
.works-single__data-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px 20px;
}
.works-single__data-item:not(:last-child) {
  margin-bottom: 10px;
}
.works-single__data-item dt {
  background-color: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100px;
  line-height: 25px;
  border-radius: 1em;
}
.works-single__data-item dd {
  line-height: 30px;
}

/* ===========================================
*
* company page
*
* ======================================== */
/*------------------------------
*
* info
*
------------------------------*/
.info {
  position: relative;
  z-index: 0;
}
.info::after {
  content: "";
  height: 171px;
  max-width: 1400px;
  width: 95%;
  position: absolute;
  bottom: 10px;
  left: 50%;
  translate: -50% 0%;
  background: url("/img/common/building_illust_left.png") no-repeat left bottom/216px auto, url("/img/common/building_illust_right.png") no-repeat right bottom/206px auto;
}
.info__map {
  margin-top: 60px;
  height: var(--map-height);
}
.info__img {
  position: absolute;
  top: 233px;
  left: calc(50% + 100px);
  z-index: 1;
  width: calc(440px + 50% - 540px);
  height: 500px;
}
.info__img > img {
  border-radius: var(--round-20) 0 0 var(--round-20);
}
.info__img::after {
  content: "";
  height: 100%;
  width: calc(100% + 10px);
  position: absolute;
  z-index: -1;
  right: 0;
  top: 10px;
  background: url("/img/pattern/pattern_stripe01.png") repeat center/auto;
  border-radius: var(--round-20) 0 0 var(--round-20);
}
.info__table {
  width: 570px;
  --table-th-width: 210px;
}
.info-access {
  margin-top: 100px;
}
.info-access__ttl {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 32px;
  font-size: var(--font-size-30);
  padding-left: 1.4em;
  position: relative;
  z-index: 1;
}
.info-access__ttl::before {
  content: "";
  width: 0.7333em;
  height: 1em;
  background: url("/img/common/icon_pin.png") no-repeat top center/contain;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0% -50%;
}
.info-access__map {
  height: var(--map-height);
  border-radius: var(--round-20);
}

/*------------------------------
*
* area
*
------------------------------*/
.area {
  padding-top: 120px;
  background: url("/img/pattern/wave_top.png") repeat-x top center/auto 38px, url("/img/pattern/pattern01.jpg") repeat center/auto;
  position: relative;
  z-index: 1;
  padding-bottom: 156px;
}
.area__txt {
  margin-bottom: 137px;
}
.area__box {
  width: 376px;
  margin-left: auto;
  margin-right: 120px;
}
.area__box::after {
  content: "";
  width: 417px;
  aspect-ratio: 417/244;
  background: url("/img/company/area_illust.png") no-repeat top center/contain;
  display: block;
  margin: 45px auto 0;
  display: block;
  translate: -41px 0;
}
.area__box-label {
  width: 200px;
  font-size: var(--font-size-20);
  padding: 2px 0;
  border-radius: 1em;
  margin-bottom: 16px;
}
.area__box-location {
  font-size: var(--font-size-18);
}
.area__box-textarea {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 40px;
  border-radius: var(--round-10);
  position: relative;
  z-index: 1;
  margin-inline: auto;
}
.area__box-textarea::after {
  content: "";
  width: 42px;
  height: 24px;
  background: url("/img/company/area_bubble.png") no-repeat top center/contain;
  right: 25px;
  bottom: 0;
  translate: 0 100%;
  position: absolute;
  z-index: 1;
}
.area__img {
  position: absolute;
  z-index: -1;
  top: 287px;
  left: calc(50% - 540px);
  width: 859px;
}

/* ===========================================
*
* single page
*
* ======================================== */
.single {
  position: relative;
  z-index: 5;
  padding: 57px 60px 60px;
  border-radius: var(--round-20);
  background-color: var(--color-white);
  border: 2px solid var(--color-primary);
}
.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;
  margin-bottom: 30px;
}
.single__date {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  font-size: var(--font-size-15);
  margin-bottom: 12px;
  line-height: 1;
  text-align: right;
  margin-left: auto;
}
.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;
  font-size: var(--font-size-25);
  font-family: var(--font-sub);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--letter-spacing-base);
  padding-bottom: 14px;
  padding-inline: 10px;
  border-bottom: 1px solid var(--color-tertiary);
  width: 100%;
}
.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 rgb(var(--color-text-base-rgb)/0.3);
  -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 rgb(var(--color-text-base-rgb)/0.3);
  border-right: 2px solid rgb(var(--color-text-base-rgb)/0.3);
  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-primary);
  border-color: var(--color-primary);
}
.sitemap-list__link:hover::after {
  right: 1em;
  border-color: var(--color-primary);
}

/* ===========================================
*
* privacy page
*
* ======================================== */
.privacy-ttl {
  font-size: var(--font-size-24);
  font-weight: var(--font-weight-medium);
  font-family: var(--font-sub);
  line-height: 1.5em;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--color-tertiary);
  padding-bottom: 0.5em;
}

.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;
}