@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-21: 1.3125rem;
  --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-37: 2.3125rem;
  --font-size-40: 2.5rem;
  --font-size-42: 2.625rem;
  --font-size-45: 2.8125rem;
  --font-size-46: 2.875rem;
  --font-size-48: 3rem;
  --font-size-50: 3.125rem;
  --font-size-52: 3.25rem;
  --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-15: 15px;
  --round-20: 20px;
  --round-30: 30px;
  --round-full: 999px;
  /* logo width */
  --logo-width: 280px;
  /* map height */
  --map-height: 400px;
  /* btn defaults */
  --btn-height: 60px;
  --btn-line-height: 1;
  --btn-font-size: var(--font-size-18);
  --btn-font-weight: var(--font-weight-medium);
  --btn-letter-space: var(--letter-spacing-none);
  --btn-padding-x: 1em;
  --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: 120px;
  /* breadcrumb settings */
  --bread-letter-space: var(--letter-space-none);
  --bread-font-size: 14px;
  --bread-font-weight: var(--font-weight-regular);
  --bread-color: var(--color-text-base);
  --bread-grater-color: var(--color-text-base);
  --bread-grater-content: "｜";
  --bread-grater-space: 0 0em;
  --bread-hov-color: var(--color-main);
  --bread-link-color: var(--color-text-base);
  --bread-last-item-color: var(--color-text-base);
  --bread-padding: 8px 0;
  --bread-bg-color: var(--color-white);
  --bread-width: 100%;
  /* prev next settings */
  --prev-next-link-width: 10em;
  --prev-next-back-link-width: 8em;
  --prev-next-link-gutter: 1.5em;
  --prev-next-link-padding: 1em 1em;
  --prev-next-link-round: 3em;
  --prev-next-link-color: #b3b3b3;
  --prev-next-link-bg-color: var(--color-white);
  --prev-next-link-hov-color: var(--color-white);
  --prev-next-link-hov-bg-color: var(--color-main);
  --prev-next-link-font-size: var(--font-size-base);
  /* tag btn settings */
  --tag-btn-color: #b3b3b3;
  --tag-btn-bg-color: var(--color-white);
  --tag-btn-current-color: var(--color-white);
  --tag-btn-current-bg-color: var(--color-main);
  --tag-btn-round: 3em;
  --tag-btn-padding: 1em 1.5em;
  --tag-btn-font-size: var(--font-size-15);
  /* pagenation settings */
  --pagenation-margin-top: 56px;
  --pagenation-item-width: 3em;
  --pagenation-item-height: 3em;
  --pagenation-item-round: 5px;
  --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-white);
  --pagenation-item-color: #b3b3b3;
  --pagenation-item-current-color: var(--color-white);
  --pagenation-item-current-bg-color: var(--color-main);
}

html {
  scroll-padding-top: calc(var(--header-height) + 30px);
}

body {
  font-size: var(--font-size-18);
  font-family: var(--font-main);
  line-height: var(--line-height-base);
  letter-spacing: var(--letter-spacing-none);
  font-weight: var(--font-weight-regular);
  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;
  background: url("/img/common/pattern.jpg") repeat center/auto;
}

/* global container
-------------------------*/
/* ===========================================
*
* header style
*
* ======================================== */
.header {
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: url("/img/common/pattern.jpg") repeat center/auto;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 101;
}
.header__inner {
  padding: 0px 0px 5px 12px;
  -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 {
  margin-top: 33px;
}
.header__right {
  width: 900px;
}
.header__contact-btn {
  --btn-height: 60px;
  width: 220px;
  border-radius: 0 0 0 var(--round-15);
}
.header-nav {
  margin-top: 20px;
  margin-right: 16px;
}
.header-nav__item {
  position: relative;
}
.header-nav__item:not(:last-child) {
  margin-right: 35px;
}
.header-nav__link {
  position: relative;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-family: var(--font-sub);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--letter-spacing-none);
  line-height: 1;
}
.header-nav__link:hover {
  color: var(--color-main);
  opacity: 1;
}
.header-nav__link.current {
  color: var(--color-main);
}

.header-nav__item:has(.header-nav__link.dropdown-menu) {
  position: relative;
  z-index: 1;
  padding-left: 18px;
}
.header-nav__item:has(.header-nav__link.dropdown-menu)::before {
  position: absolute;
  z-index: 1;
  content: "";
  width: 9px;
  height: 8px;
  background-color: var(--color-main);
  top: 50%;
  left: 0;
  translate: 0% -50%;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.header-nav .dropdown-menu__list {
  visibility: hidden;
  opacity: 0;
  display: none;
  position: absolute;
  left: 50%;
  bottom: 0px;
  padding-top: 14px;
  translate: -50% 100%;
  z-index: 1;
  -webkit-transition: visibility 0s, opacity 0.3s ease;
  transition: visibility 0s, opacity 0.3s ease;
  width: 130px;
  text-align: center;
}
.header-nav .dropdown-menu__item {
  position: relative;
  z-index: 1;
}
.header-nav .dropdown-menu__item:not(:last-child)::after {
  content: "";
  width: calc(100% - 20px);
  height: 1px;
  background-color: var(--color-white);
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0%;
}
.header-nav .dropdown-menu__item:first-child .dropdown-menu__link {
  border-radius: var(--round-15) var(--round-15) 0 0;
}
.header-nav .dropdown-menu__item:last-child .dropdown-menu__link {
  border-radius: 0 0 var(--round-15) var(--round-15);
}
.header-nav
  .dropdown-menu__item:has(.dropdown-menu__link.dropdown-menu)
  > .dropdown-menu__list {
  bottom: unset;
  top: 0;
  left: 0;
  translate: -100% 0%;
}
.header-nav
  .dropdown-menu__item:has(.dropdown-menu__link.dropdown-menu):hover
  > .dropdown-menu__list {
  visibility: visible;
  opacity: 1;
  display: block;
}
.header-nav .dropdown-menu__link {
  padding: 1em 5px;
  position: relative;
  font-size: var(--font-size-18);
  font-family: var(--font-sub);
  letter-spacing: var(--letter-spacing-none);
  background-color: var(--color-main);
  color: var(--color-white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: block;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.header-nav .dropdown-menu__link:hover,
.header-nav .dropdown-menu__link.current {
  color: var(--color-white);
  background: var(--color-main-darken);
}
.header-nav__item:has(.header-nav__link.dropdown-menu):hover
  > .dropdown-menu__list {
  visibility: visible;
  opacity: 1;
  display: block;
}

.pagetop {
  right: 22px;
  bottom: 16px;
  z-index: 101;
  width: 66px;
  display: block;
  position: fixed;
}

/* ===========================================
*
* footer style
*
* ======================================== */
.footer {
  position: relative;
  background: url("/img/common/pattern02.jpg") repeat center/auto;
}
.footer__inner {
  display: grid;
  place-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
  padding-block: 46px 24px;
}
.footer__logo {
  margin-bottom: 22px;
}
.footer__address {
  font-size: var(--font-size-16);
  text-align: center;
}
.footer-nav {
  margin-top: 54px;
  padding-block: 24px;
  border-block: 1px solid #d1cfcb;
  width: 100%;
}
.footer-nav__list {
  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: 28px 78px;
}
.footer-nav__link {
  line-height: 1;
  font-size: var(--font-size-16);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer-nav__link:hover,
.footer-nav__link.current {
  color: var(--color-main);
}
.footer__copy {
  font-size: 12px;
  letter-spacing: var(--letter-spacing-none);
  width: 100%;
  display: block;
  text-align: center;
  line-height: 1.5;
  margin-top: 24px;
}

/* ===========================================
*  
*  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;
  margin-bottom: 64px;
}
.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(--font-size-50);
  font-weight: var(--font-weight-medium);
  font-family: var(--font-sub);
  letter-spacing: var(--letter-spacing-regular);
  margin-block: -0.25em;
}
.cmn-ttl__main--deco01 {
  position: relative;
  z-index: 1;
}
.cmn-ttl__main--deco01::after {
  content: "";
  width: calc(100% + 4em); /*100% + 100px*/
  height: 1.52em; /*76px*/
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -0.125em;
  margin: auto;
  z-index: -1;
  background: url("/img/common/ttl_flower01_left.png") no-repeat left
      center/contain,
    url("/img/common/ttl_flower01_right.png") no-repeat right center/contain;
}
.cmn-ttl__main--deco02 {
  position: relative;
  z-index: 1;
}
.cmn-ttl__main--deco02::after {
  content: "";
  width: calc(100% + 300px);
  height: 88px;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  margin: auto;
  z-index: -1;
  background: url("/img/common/ttl_flower02_left.png") no-repeat left
      center/contain,
    url("/img/common/ttl_flower02_right.png") no-repeat right center/contain;
}
.cmn-ttl__main--deco03 {
  position: relative;
  z-index: 1;
}
.cmn-ttl__main--deco03::after {
  content: "";
  width: calc(100% + 254px);
  height: 83px;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  margin: auto;
  z-index: -1;
  background: url("/img/common/ttl_flower03_left.png") no-repeat left
      center/contain,
    url("/img/common/ttl_flower03_right.png") no-repeat right center/contain;
}
.cmn-ttl__main--dot-border {
  margin-bottom: 0;
  padding-bottom: 15px;
  background: url("/img/common/ttl_border.png") repeat-x left bottom/auto 0.2em;
}
.cmn-ttl__main--stroke {
  text-shadow: var(--color-white) 2px 0px 0px,
    var(--color-white) 1.75517px 0.958851px 0px,
    var(--color-white) 1.0806px 1.68294px 0px,
    var(--color-white) 0.141474px 1.99499px 0px,
    var(--color-white) -0.832294px 1.81859px 0px,
    var(--color-white) -1.60229px 1.19694px 0px,
    var(--color-white) -1.97998px 0.28224px 0px,
    var(--color-white) -1.87291px -0.701566px 0px,
    var(--color-white) -1.30729px -1.5136px 0px,
    var(--color-white) -0.421592px -1.95506px 0px,
    var(--color-white) 0.567324px -1.91785px 0px,
    var(--color-white) 1.41734px -1.41108px 0px,
    var(--color-white) 1.92034px -0.558831px 0px;
}

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

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

.tel {
  /* tel　style */
  --tel-font-size: var(--font-size-46);
  --tel-txt-space: 0.5em;
  --tel-icon-space: 1.3043478261em;
  --tel-icon-position: 0.5em;
  --tel-icon-width: 1.0434782609em;
  --tel-icon-height: 1.0434782609em;
  font-family: var(--font-sub, sans-serif);
  font-weight: var(--font-weight-medium, 700);
  font-size: var(--tel-font-size, 28px);
  letter-spacing: var(--letter-spacing-none);
  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(-50%);
  transform: translateY(-50%);
}
.tel-icon--main::before {
  background: url(../img/common/icon_tel.png) no-repeat center/contain;
}
.tel-icon--white::before {
  background: url(../img/common/icon_tel_white.png) no-repeat center/contain;
}

/*
 snsクラス
-------------------------*/
.sns {
  --sns-icon-space: 20px;
  --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: 4px;
}
table .replace-txt {
  /* テーブルタグ内で使用するリプレイステキスト */
  height: var(--table-replace-size);
  margin-top: var(--table-replace-space);
}
table .replace-txt > img {
  display: block;
}

.main-table {
  --table-letter-spacing: var(--letter-spacing-none);
  --table-th-font-weight: var(--font-weight-regular);
  --table-th-text-align: left;
  --table-th-x-padding: 0 1em;
  --table-th-y-padding: 0.8220588235em;
  --table-th-bg-color: transparent;
  --table-th-color: var(--color-text-base);
  --table-th-width: 200px;
  --table-td-x-padding: 0px;
  --table-td-y-padding: 0.8220588235em;
  --table-td-bg-color: transparent;
  --table-td-color: var(--color-text-base);
  --table-td-width: calc(100% - var(--table-th-width));
  --table-border-color: #d1cfcb;
  --table-th-border-color: #d1cfcb;
  --table-td-border-color: #d1cfcb;
  --table-width: 100%;
  width: var(--table-width);
  letter-spacing: var(--table-letter-spacing);
  line-height: 1.65;
  font-size: var(--font-size-17);
}
.main-table tr {
  width: 100%;
}
.main-table tr:not(:last-child) th {
  border-bottom: 1px solid var(--table-th-border-color);
}
.main-table tr:not(:last-child) td {
  border-bottom: 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 {
  gap: 6px 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.check-list__item {
  font-size: var(--font-size-18);
  padding-left: 1.3888888889em;
  position: relative;
  letter-spacing: var(--letter-spacing-base);
  z-index: 1;
}
.check-list__item::before {
  content: "";
  width: 0.8888888889em;
  height: 0.6666666667em;
  background: url(../img/common/check_mark.png) no-repeat top center/contain;
  position: absolute;
  top: 0.75em;
  left: 0;
  translate: 0% -50%;
}

/*------------------------------
*
* text
*
------------------------------*/
/* 
文章テキスト スタイル
-------------------------*/
.cmn-sentence {
  /* どこでも変更できるよう変数化 */
  --sentence-line-height: 2;
  --sentence-p-margin: 2em;
  font-size: var(--font-size-18);
  letter-spacing: var(--letter-spacing-regular);
  font-weight: var(--font-weight-regular);
  line-height: var(--sentence-line-height);
  /* 疑似要素でline-height分をネガティブマージンで調整 */
}
.cmn-sentence p::before,
.cmn-sentence p::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.cmn-sentence p::before {
  margin-top: calc((1 - var(--sentence-line-height)) * 0.5em);
}
.cmn-sentence p::after {
  margin-bottom: calc((1 - var(--sentence-line-height)) * 0.5em);
}
.cmn-sentence p:not(:last-child) {
  margin-bottom: var(--sentence-p-margin);
}

/* 
画像
-------------------------*/
.cmn-img img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
.cmn-img--rounded img {
  border-radius: var(--round-15);
}

/* 
* カラムスタイル
* 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-15);
}
.cmn-btn--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;
  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 {
  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-text-base);
  color: var(--color-white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cmn-btn--secondary:hover {
  background-color: var(--color-text-sub);
  color: var(--color-white);
  opacity: 1;
}
.cmn-btn--icon-mail-lg {
  --btn-font-family: var(--font-sub);
}
.cmn-btn--icon-mail-lg > span {
  padding-left: 40px;
  position: relative;
  z-index: 1;
  display: inline-block;
}
.cmn-btn--icon-mail-lg > span::before {
  content: "";
  width: 24px;
  height: 17px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url("/img/common/icon_mail_white.png") no-repeat center/contain;
}
.cmn-btn--icon-mail {
  --btn-font-family: var(--font-sub);
}
.cmn-btn--icon-mail > span {
  padding-left: 32px;
  position: relative;
  z-index: 1;
  display: inline-block;
}
.cmn-btn--icon-mail > span::before {
  content: "";
  width: 20px;
  height: 14px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url("/img/common/icon_mail_white.png") no-repeat center/contain;
}
.cmn-btn--h-lg {
  --btn-height: 72px;
  --btn-font-size: var(--font-size-20);
  --btn-padding-y: calc(
    (var(--btn-height) - var(--btn-font-size) * var(--btn-line-height)) / 2
  );
}
.cmn-btn--arrow-right {
  position: relative;
  z-index: 1;
}
.cmn-btn--arrow-right::after {
  content: "";
  width: 7px;
  height: 10px;
  background: url("/img/common/btn_arrow_right_white.svg") no-repeat top
    center/contain;
  position: absolute;
  right: 10px;
  top: 50%;
  translate: 0 -50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 1;
}
.cmn-btn--arrow-right:hover::after {
  translate: 25% -50%;
}
.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(560px, 43.75vw, 840px);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.mv__catch {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 20;
  width: min(614px, 31.9791666667%);
}

/*------------------------------
*
* main style sv(sub visual)
*
------------------------------*/
.sv {
  width: 100%;
  position: relative;
  z-index: 1;
  height: clamp(310px, 19.7916666667vw, 380px);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}
.sv__catch {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 20;
  font-size: var(--font-size-52);
  font-family: var(--font-sub);
  letter-spacing: var(--letter-spacing-regular);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-sub);
  background: url("/img/common/pattern.png") repeat center/auto;
  width: 720px;
  padding: 31px 10px;
  text-align: center;
  text-shadow: rgb(var(--color-white-rgb) / 0.6) 3px 0px 0px,
    rgb(var(--color-white-rgb) / 0.6) 2.83487px 0.981584px 0px,
    rgb(var(--color-white-rgb) / 0.6) 2.35766px 1.85511px 0px,
    rgb(var(--color-white-rgb) / 0.6) 1.62091px 2.52441px 0px,
    rgb(var(--color-white-rgb) / 0.6) 0.705713px 2.91581px 0px,
    rgb(var(--color-white-rgb) / 0.6) -0.287171px 2.98622px 0px,
    rgb(var(--color-white-rgb) / 0.6) -1.24844px 2.72789px 0px,
    rgb(var(--color-white-rgb) / 0.6) -2.07227px 2.16926px 0px,
    rgb(var(--color-white-rgb) / 0.6) -2.66798px 1.37182px 0px,
    rgb(var(--color-white-rgb) / 0.6) -2.96998px 0.42336px 0px,
    rgb(var(--color-white-rgb) / 0.6) -2.94502px -0.571704px 0px,
    rgb(var(--color-white-rgb) / 0.6) -2.59586px -1.50383px 0px,
    rgb(var(--color-white-rgb) / 0.6) -1.96093px -2.27041px 0px,
    rgb(var(--color-white-rgb) / 0.6) -1.11013px -2.78704px 0px,
    rgb(var(--color-white-rgb) / 0.6) -0.137119px -2.99686px 0px,
    rgb(var(--color-white-rgb) / 0.6) 0.850987px -2.87677px 0px,
    rgb(var(--color-white-rgb) / 0.6) 1.74541px -2.43999px 0px,
    rgb(var(--color-white-rgb) / 0.6) 2.44769px -1.73459px 0px,
    rgb(var(--color-white-rgb) / 0.6) 2.88051px -0.838247px 0px;
}
.sv__catch::after,
.sv__catch::before {
  content: "";
  position: absolute;
  z-index: -1;
}
.sv__catch::after {
  width: calc(100% + 20px);
  height: 79px;
  top: 0;
  left: 50%;
  translate: -50% -6px;
  background: url("/img/sv/sv_catch_deco_left.png") no-repeat top left/contain,
    url("/img/sv/sv_catch_deco_right.png") no-repeat top right/contain;
}
.sv__catch::before {
  width: 542px;
  height: 217px;
  top: 0;
  left: 50%;
  translate: -50% -63px;
  background: url("/img/sv/sv_catch_deco_top.png") no-repeat top center/50px
      auto,
    url("/img/sv/sv_catch_deco_bottom.png") no-repeat bottom center/contain;
}

/*------------------------------
*
* 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-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 2px solid var(--pagenation-item-color);
}
.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);
  border-color: var(--pagenation-item-current-bg-color);
}
.pagenation .current {
  background-color: var(--pagenation-item-current-bg-color);
  color: var(--pagenation-item-current-color);
  border-color: var(--pagenation-item-current-bg-color);
}

/*------------------------------
*
* cmn-post
*
------------------------------*/
.cmn-post {
  --post-item-bg-color: transparent;
  --post-width: 100%;
  --post-item-margin: 20px;
  --post-item-flex-margin-space: 12px;
  --post-link-padding: 0px 0px 24px;
  --post-tags-width: calc(100% - 92px);
  --post-title-font-size: var(--font-size-17);
  --post-date-font-size: var(--font-size-17);
  width: var(--post-width);
}
.cmn-post-item {
  width: 100%;
  background-color: var(--post-item-bg-color, transparent);
}
.cmn-post-item:not(:last-child) {
  border-bottom: 1px solid #d2d2d2;
  margin-bottom: var(--post-item-margin, 15px);
}
.cmn-post-item:not(:last-child) .cmn-post__link {
  padding: var(--post-link-padding, 20px 30px);
}
.cmn-post__box {
  width: calc(100% - 120px);
}
.cmn-post__box.w-100 {
  width: 100%;
}
.cmn-post__thumb {
  width: 100px;
  aspect-ratio: 1/1;
}
.cmn-post__flex {
  margin-bottom: var(--post-item-flex-margin-space, 12px);
}
.cmn-post__tags {
  width: var(--post-tags-width, auto);
  padding-left: 10px;
  border-left: 1px solid var(--color-text-base);
}
.cmn-post__date {
  line-height: 1;
  font-size: var(--post-date-font-size, 16px);
}
.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: var(--font-size-17);
  --tag-height: 1;
  --tag-x-padding: 0px;
  --tag-round: 0px;
  --tag-color: var(--color-text-base);
  --tag-bg-color: transparent;
  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-base);
  font-weight: var(--font-weight-regular);
  line-height: var(--tag-height);
  padding: 0 var(--tag-x-padding);
}

.tag-link {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.tag-link.tag {
  padding: 0;
}
.tag-link > a {
  padding: 0 var(--tag-x-padding);
}
.tag-link:hover {
  background-color: var(--color-sub);
}

.tag-list {
  --tag-space: 8px 10px;
  -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);
  font-weight: var(--font-weight-medium);
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  line-height: 1;
  border: 2px solid var(--tag-btn-color);
}
.tag-btn:hover {
  color: var(--tag-btn-current-color);
  background-color: var(--tag-btn-current-bg-color);
  opacity: 1;
  border-color: var(--tag-btn-current-bg-color);
}
.tag-btn.current {
  color: var(--tag-btn-current-color);
  background-color: var(--tag-btn-current-bg-color);
  border-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);
  border: 3px solid var(--prev-next-link-color);
  font-weight: var(--font-weight-medium);
}
.prev-next__link:hover {
  background-color: var(--prev-next-link-hov-bg-color);
  color: var(--prev-next-link-hov-color);
  opacity: 1;
  border-color: var(--prev-next-link-hov-bg-color);
}
.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
*
* ======================================== */
/*------------------------------
*
* top-news
*
------------------------------*/
.top-news {
  padding: 96px 0;
  position: relative;
  z-index: 1;
}
.top-news::after {
  content: "";
  width: 100%;
  height: calc(100% - 80px);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  background-color: var(--color-white);
}
.top-news__container {
  display: grid;
  padding-inline: 30px 20px;
  grid-template-columns: 220px 1fr;
  grid-template-areas: "title posts" "button posts";
  grid-template-rows: auto;
  gap: 0px 70px;
}
.top-news__ttl {
  font-size: var(--font-size-48);
  font-family: var(--font-sub);
  font-weight: var(--font-weight-medium);
  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: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  justify-items: end;
  line-height: 1;
  gap: 15px;
  margin-bottom: 32px;
  grid-area: title;
}
.top-news__ttl .sm {
  font-size: var(--font-size-32);
}
.top-news__ttl .deco {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.top-news__ttl .deco::after {
  content: "";
  width: 127px;
  height: 42px;
  background: url("/img/top/news_ttl_deco.png") no-repeat top center/contain;
  top: 0;
  left: 0;
  position: absolute;
  translate: -40px -62px;
}
.top-news .cmn-post {
  grid-area: posts;
}
.top-news__btn {
  width: 220px;
  grid-area: button;
  -ms-flex-line-pack: start;
  align-content: start;
}

/*------------------------------
*
* chart
*
------------------------------*/
.chart {
  background-color: var(--color-main);
  padding: 72px 0 93px;
}
.chart__section-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;
  font-family: var(--font-sub);
  gap: 7px;
  color: var(--color-white);
  font-weight: var(--font-weight-medium);
  margin-bottom: 50px;
}
.chart__section-ttl__text {
  font-size: var(--font-size-24);
  letter-spacing: var(--letter-spacing-regular);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: 1em;
  position: relative;
  z-index: 1;
}
.chart__section-ttl__text::after {
  width: 100%;
  height: 23px;
  background: url("/img/common/slash_left_white.svg") no-repeat bottom
      left/contain,
    url("/img/common/slash_right_white.svg") no-repeat bottom right/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: "";
  z-index: -1;
}
.chart__section-ttl__main {
  font-size: var(--font-size-36);
  letter-spacing: var(--letter-spacing-regular);
}

/*------------------------------
*
* message
*
------------------------------*/
.message {
  background: url("/img/top/message_bg_left.png") no-repeat bottom
      left/min(491px, 25.5729166667%) auto,
    url("/img/top/message_bg_right.png") no-repeat bottom
      right/min(491px, 25.5729166667%) auto,
    url("/img/top/arch_bg_bottom.png") no-repeat top center/max(1920px, 100%)
      auto,
    url("/img/common/pattern03.jpg") repeat center/auto;
  padding-top: 86px;
  padding-bottom: 80px;
}
.message__ttl .sm {
  font-size: var(--font-size-42);
}
.message__ttl .dot {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.message__ttl .dot::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: var(--round-full);
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0%;
  background-color: var(--color-text-base);
  display: block;
}
.message__sentence {
  padding: 53px 10px 67px;
  position: relative;
  z-index: 1;
  background-color: var(--color-white);
  border-radius: var(--round-15);
  text-align: center;
}
.message__sentence::after {
  content: "";
  width: 133px;
  height: 146px;
  background: url("/img/top/message_flower.png") no-repeat top center/contain;
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  translate: 30px 12px;
}

/*------------------------------
*
* top-feature
*
------------------------------*/
.top-feature__container {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}
.top-feature-item {
  background: var(--color-white);
  border-radius: var(--round-5);
  position: relative;
  z-index: 1;
  padding: 45px 18px 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.top-feature-item__icon {
  margin-bottom: 13px;
}
.top-feature-item__ttl {
  line-height: 36px;
  font-size: var(--font-size-28);
  letter-spacing: var(--letter-spacing-regular);
  text-align: center;
  min-height: 72px;
  margin-bottom: 30px;
  -ms-flex-line-pack: center;
  align-content: center;
  font-family: var(--font-sub);
  font-weight: var(--font-weight-medium);
}
.top-feature-item__num {
  position: absolute;
  top: 0;
  left: 0;
  width: 55px;
  display: block;
}
.top-feature-item__sentence {
  letter-spacing: var(--letter-spacing-small);
}
.top-feature__btn {
  margin-top: 50px;
  width: 640px;
}

/*------------------------------
*
* top-service
*
------------------------------*/
.top-service {
  position: relative;
  z-index: 1;
  background: url("/img/common/sec_top_yellow.png") no-repeat top
      center/max(1920px, 100%) auto,
    url("/img/top/service_bg_left.png") no-repeat top 90px left/auto,
    url("/img/top/service_bg_right.png") no-repeat top 90px right/auto;
  padding-top: 47px;
}
.top-service__ttl {
  margin-bottom: 150px;
  text-shadow: var(--color-white) 2px 0px 0px,
    var(--color-white) 1.75517px 0.958851px 0px,
    var(--color-white) 1.0806px 1.68294px 0px,
    var(--color-white) 0.141474px 1.99499px 0px,
    var(--color-white) -0.832294px 1.81859px 0px,
    var(--color-white) -1.60229px 1.19694px 0px,
    var(--color-white) -1.97998px 0.28224px 0px,
    var(--color-white) -1.87291px -0.701566px 0px,
    var(--color-white) -1.30729px -1.5136px 0px,
    var(--color-white) -0.421592px -1.95506px 0px,
    var(--color-white) 0.567324px -1.91785px 0px,
    var(--color-white) 1.41734px -1.41108px 0px,
    var(--color-white) 1.92034px -0.558831px 0px;
}

.top-service-item {
  display: grid;
  grid-template-columns: 1fr 570px;
  grid-template-rows: auto;
}
.top-service-item__content {
  padding: 40px 30px;
  background-color: var(--color-white);
  border-radius: var(--round-5);
  display: grid;
  justify-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.top-service-item__tiles {
  display: grid;
  gap: 3px;
  grid-template-columns: repeat(3, 1fr);
}
.top-service-item__tile {
  display: grid;
  justify-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--color-main);
  border-radius: var(--round-5);
  padding: 24px 10px 15px;
}
.top-service-item__tile-icon {
  width: 110px;
  margin-bottom: 10px;
}
.top-service-item__tile-txt {
  font-family: var(--font-sub);
  text-align: center;
  color: var(--color-white);
  font-size: var(--font-size-18);
  line-height: 26px;
  min-height: 52px;
  -ms-flex-line-pack: center;
  align-content: center;
}
.top-service-item__ttl {
  padding-bottom: 5px;
  position: relative;
  z-index: 1;
  padding-left: 45px;
  font-size: var(--font-size-40);
  font-family: var(--font-sub);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--letter-spacing-regular);
  border-bottom: 3px solid var(--color-text-base);
  margin-bottom: 37px;
  width: 100%;
}
.top-service-item__ttl::before {
  content: "";
  width: 34px;
  height: 34px;
  background: url("/img/service/service_ttl_deco.png") no-repeat top
    center/contain;
  position: absolute;
  top: 0.75em;
  left: 0;
  translate: 0% -50%;
}
.top-service-item__sentence {
  width: 100%;
}
.top-service-item__btn {
  width: 100%;
  margin-top: 46px;
}
.top-service-item:nth-child(odd) .top-service-item__content {
  border-radius: 0 0 var(--round-5) var(--round-5);
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
.top-service-item:nth-child(odd) .top-service-item__tiles {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.top-service-item:nth-child(even) .top-service-item__content {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  border-radius: var(--round-5) var(--round-5) 0 0;
}
.top-service-item:nth-child(even) .top-service-item__tiles {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
.top-service-item:not(:last-child) {
  margin-bottom: 60px;
}

.banner-section {
  margin-top: 110px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.banner-item {
  padding: 16px 15px 35px;
  background-color: var(--color-white);
  border-radius: var(--round-5);
  border: 5px solid var(--color-white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.banner-item:hover {
  border-color: var(--color-main);
}
.banner-item__ttl {
  margin-bottom: 27px;
  font-size: var(--font-size-30);
  letter-spacing: var(--letter-spacing-regular);
  font-family: var(--font-sub);
  font-weight: var(--font-weight-medium);
  padding-bottom: 11px;
  border-bottom: 3px solid var(--color-text-base);
  text-align: center;
}
.banner-item__ttl > span {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-left: 40px;
}
.banner-item__ttl > span::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  translate: 0% -50%;
  width: 26px;
  height: 26px;
  background: url("/img/top/arrow.svg") no-repeat top center/contain;
}
.banner-item__sentence {
  text-align: center;
}

/*------------------------------
*
* top-voice
*
------------------------------*/
.top-voice {
  padding-top: 85px;
  padding-bottom: 95px;
  background: url("/img/top/voice_arch.png") no-repeat bottom
      center/max(1920px, 100%) 40px,
    url("/img/common/pattern02.jpg") repeat-x top center/auto;
}
.top-voice__ttl {
  margin-bottom: 70px;
}
.top-voice__cards {
  display: grid;
  gap: 45px;
  grid-template-columns: repeat(3, 1fr);
}
.top-voice__btn {
  width: 500px;
  margin-top: 52px;
}

.voice-card__flex {
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.voice-card__age-gender {
  font-weight: var(--font-weight-medium);
}
.voice-card__thumbnail {
  border-radius: var(--round-15);
  aspect-ratio: 1/1;
  border: 4px solid var(--color-white);
  margin-bottom: 10px;
}
.voice__swiper .voice__swiper-prev,
.voice__swiper .voice__swiper-next {
  width: 40px;
  height: 40px;
  position: absolute;
  z-index: 10;
  top: 50%;
}
.voice__swiper .voice__swiper-prev {
  background: url("/img/top/prev.png") no-repeat top center / contain;
  left: calc(50% - 540px);
  translate: -35% -50%;
}
.voice__swiper .voice__swiper-next {
  background: url("/img/top/next.png") no-repeat top center / contain;
  right: calc(50% - 540px);
  translate: 35% -50%;
}
.voice__swiper .voice__swiper-prev.swiper-button-disabled ,
.voice__swiper .voice__swiper-next.swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}
@media screen and (min-width:1921px) {

  .voice__swiper .voice__swiper-prev {
  left:21.5%;
}
.voice__swiper .voice__swiper-next {
  right: 21.5%;
}
}
/*------------------------------
*
* top-column
*
------------------------------*/
.top-column {
  padding-top: 140px;
  padding-bottom: 70px;
  background-color: var(--color-white);
}
.top-column__ttl {
  font-size: var(--font-size-42);
  letter-spacing: normal;
  font-family: var(--font-sub);
  font-weight: var(--font-weight-medium);
  position: relative;
  z-index: 1;
}
.top-column__ttl::before {
  content: "";
  width: 237px;
  height: 80px;
  background: url("/img/top/column_label.png") no-repeat top center/contain;
  left: 0;
  top: 0;
  translate: -12px -100%;
  position: absolute;
  z-index: 1;
}
.top-column__header {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 15px;
  margin-bottom: 34px;
  border-bottom: 3px solid var(--color-text-base);
}
.top-column__btn {
  width: 210px;
}

.column-post-item:not(:last-child) {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #d1cfcb;
}
.column-post__flex{
  gap: 10px;
  justify-content: flex-start;
  align-items: baseline;
  margin-bottom: 12px;

}
.column-post__date {
  font-size: var(--font-size-17);
  font-weight: var(--font-weight-light);
flex-shrink: 0;
}
.column-post__tags {
    padding-left: 10px;
  border-left: 1px solid var(--color-text-base);
  flex-shrink: 1;
}
.column-post__tag {
  font-size: var(--font-size-17);
  font-weight: var(--font-weight-light);
  letter-spacing: var(--letter-spacing-base);
}
.column-post__ttl {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  font-size: var(--font-size-20);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--letter-spacing-base);
}
.column-post__link {
  transition: .3s;
}
.column-post__link:hover {
  text-decoration: underline !important;
  text-decoration-color: var(--color-main) !important;
  color: var(--color-main);
}

/*------------------------------
*
* info
*
------------------------------*/
.info {
  padding-top: 115px;
  background: url("/img/top/column_botton_arch.png") no-repeat top
    center/max(1920px, 100%);
  padding-bottom: 90px;
}
.info__map {
  margin-top: 60px;
  height: var(--map-height);
}
.info__table {
  --table-th-width: 200px;
}
.info__container {
  display: grid;
  justify-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-template-columns: 1fr 460px;
  gap: 40px;
}
.info__table {
  --table-th-x-padding: 50px 1em;
}
.access {
  margin-top: 100px;
}
.access__sentence {
  text-align: center;
  font-size: var(--font-size-17);
  margin-bottom: 40px;
}
.access__ttl {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 32px;
  font-size: var(--font-size-32);
  letter-spacing: var(--letter-spacing-none);
  font-family: var(--font-sub);
  position: relative;
  z-index: 1;
}
.access__ttl::before {
  content: "";
  width: 28px;
  height: 34px;
  background: url("/img/common/icon_pin.png") no-repeat top center/contain;
  position: absolute;
  top: 50%;
  left: 0;
  translate: -1.2em -50%;
}
.access__map {
  height: var(--map-height);
  width: 100%;
  margin-top: 40px;
}
.access__guide {
  margin-top: 80px;
}
.access__guide-ttl {
  background-color: var(--color-theme);
  text-align: center;
  font-family: var(--font-sub);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--letter-spacing-none);
  padding: 11px 20px;
  border-radius: var(--round-15);
  font-size: var(--font-size-21);
  margin-bottom: 20px;
}
.access__guide-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.access__guide-list__item-txt {
  --sentence-line-height: 1.667;
  margin-top: 15px;
  text-align: center;
}

/* ===========================================
*
* feature-page
*
* ======================================== */
/*------------------------------
*
* welcome
*
------------------------------*/
.welcome {
  padding-top: 80px;
}
.welcome__ttl {
  margin-bottom: 87px;
  gap: 24px;
}
.welcome__ttl__sub {
  display: inline-block;
  padding-inline: 24px;
  position: relative;
  font-size: var(--font-size-24);
  letter-spacing: var(--letter-spacing-regular);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-sub);
  font-family: var(--font-sub);
  z-index: 1;
}
.welcome__ttl__sub::after {
  content: "";
  width: 100%;
  height: 23px;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  background: url("/img/common/slash_left.svg") no-repeat left center/contain,
    url("/img/common/slash_right.svg") no-repeat right center/contain;
}
.welcome__container {
  position: relative;
  z-index: 1;
}
.welcome__container::after {
  content: "";
  width: 292px;
  aspect-ratio: 292/499;
  background: url("/img/feature/feature_illust.png") no-repeat top
    center/contain;
  right: 30px;
  top: -30px;
  position: absolute;
  z-index: 1;
}
.welcome__sentence {
  letter-spacing: var(--letter-spacing-small);
}
.welcome__content {
  width: 720px;
}
.welcome__office {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  line-height: 1.7;
  font-size: var(--font-size-20);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-small);
  margin-top: 28px;
}
.welcome__name {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  line-height: 1.7;
  font-size: var(--font-size-20);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-small);
}

/*------------------------------
*
* feature
*
------------------------------*/
.feature__ttl .big {
  font-size: 1.2em;
}
.feature__links {
  display: grid;
  gap: 45px;
  grid-template-columns: repeat(3, 1fr);
}
.feature__container {
  margin-top: 128px;
}

.feature-item {
  position: relative;
  z-index: 0;
}
.feature-item__content {
  border-radius: var(--round-15);
  padding: 42px 30px 30px;
  background-color: var(--color-white);
  width: 598px;
  position: relative;
  z-index: 1;
}
.feature-item__content::after {
  content: "";
  width: 70px;
  height: 56px;
  background: url("/img/feature/feature_deco.png") no-repeat top center/contain;
  position: absolute;
  top: 0;
  left: 0;
  translate: -19px -23px;
  z-index: 1;
}
.feature-item__img {
  position: absolute;
  z-index: -1;
  width: 560px;
}
.feature-item__header {
  margin-bottom: 32px;
  border-bottom: 3px solid var(--color-text-base);
  padding-bottom: 30px;
  padding-left: 84px;
  position: relative;
  z-index: 1;
  font-size: var(--font-size-32);
}
.feature-item__ttl {
  font-size: 1em;
  font-family: var(--font-sub);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--letter-spacing-regular);
}
.feature-item__num {
  display: inline-block;
  width: 99px;
  position: absolute;
  top: 0.75em;
  left: 0%;
  translate: -12% -50%;
  z-index: -1;
}
.feature-item:nth-child(odd) {
  padding-bottom: 40px;
}
.feature-item:nth-child(odd) .feature-item__img {
  right: 0;
  bottom: 0;
}
.feature-item:nth-child(even) {
  padding-top: 40px;
}
.feature-item:nth-child(even) .feature-item__img {
  top: 0;
  left: 0;
}
.feature-item:nth-child(even) .feature-item__content {
  margin-left: auto;
}
.feature-item:not(:last-child) {
  margin-bottom: 110px;
}

/* ===========================================
*
* service-page
*
* ======================================== */
.service-links {
  border-radius: var(--round-15);
  padding: 40px;
  background: url("/img/common/pattern02.jpg") repeat center/auto;
  max-width: 1080px;
  width: 100%;
  margin: 65px auto 13px;
  display: grid;
  gap: 30px 35px;
  grid-template-columns: repeat(3, 1fr);
}
.service-links__btn {
  --btn-height: 75px;
  --btn-font-size: var(--font-size-21);
  --btn-padding-y: calc(
    (var(--btn-height) - var(--btn-font-size) * var(--btn-line-height)) / 2
  );
}

/*------------------------------
*
* service
*
------------------------------*/
.service:not(:last-child) {
  padding-bottom: 100px;
  margin-bottom: 100px;
  border-bottom: 1px solid #d1cfcb;
}
.service__ttl {
  margin-bottom: 40px;
}
.service__links {
  display: grid;
  gap: 36px 45px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 86px;
  max-width: 1080px;
  margin-inline: auto;
}
/* service-item
-------------------------*/
#other .service-item {
  grid-template-areas: "title image" "sentence image" "links image";
}
#other .service-item__other-links {
  margin-top: 60px;
  display: grid;
  gap: 36px 45px;
}

.service-item {
  border-radius: var(--round-5);
  background-color: var(--color-white);
  padding: 30px 40px 54px;
  width: 1080px;
  margin-inline: auto;
  display: grid;
  grid-template-areas: "title image" "sentence image" "recommend recommend" "links links";
  grid-template-columns: 1fr 320px;
  grid-template-rows: auto;
  gap: 0 40px;
}
.service-item__ttl {
  grid-area: title;
  padding-bottom: 5px;
  position: relative;
  z-index: 1;
  padding-left: 45px;
  font-size: var(--font-size-40);
  font-family: var(--font-sub);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--letter-spacing-regular);
  border-bottom: 3px solid var(--color-text-base);
  margin-bottom: 37px;
}
.service-item__ttl .sm {
  font-size: var(--font-size-37);
  letter-spacing: var(--letter-spacing-base);
}
.service-item__ttl::before {
  content: "";
  width: 34px;
  height: 34px;
  background: url("/img/service/service_ttl_deco.png") no-repeat top
    center/contain;
  position: absolute;
  top: 0.75em;
  left: 0;
  translate: 0% -50%;
}
.service-item__img {
  grid-area: image;
}
.service-item__sentence {
  grid-area: sentence;
}
.service-item__recommend {
  grid-area: recommend;
  margin-top: 60px;
}
.service-item__recommend-ttl {
  background-color: var(--color-theme);
  border-radius: var(--round-15);
  text-align: center;
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-21);
  letter-spacing: var(--letter-spacing-none);
  padding: 12px 20px;
  margin-bottom: 17px;
}
.service-item__links {
  grid-area: links;
  margin-top: 60px;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(2, 1fr);
}
.service-item:not(:last-child) {
  margin-bottom: 120px;
}

/* ===========================================
*
* price-page
*
* ======================================== */
.price-tax-txt {
  margin-block: 75px 50px;
  font-size: var(--font-size-21);
  letter-spacing: var(--letter-spacing-regular);
}

.price-links {
  border-radius: var(--round-15);
  padding: 40px;
  background: url("/img/common/pattern02.jpg") repeat center/auto;
  max-width: 1080px;
  width: 100%;
  margin: 0px auto 38px;
  gap: 30px 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.price-links__btn {
  --btn-height: 75px;
  --btn-font-size: var(--font-size-21);
  --btn-padding-y: calc(
    (var(--btn-height) - var(--btn-font-size) * var(--btn-line-height)) / 2
  );
  width: 310px;
}
.price-links__btn.current a {
  background-color: var(--color-main-darken);
}

/*------------------------------
*
* price
*
------------------------------*/
/* .price:not(:last-child) {
  padding-bottom: 100px;
  margin-bottom: 100px;
  border-bottom: 1px solid #d1cfcb;
} */
.price__ttl {
  margin-bottom: 78px;
}
.price__container {
  border-radius: var(--round-5);
  background-color: var(--color-white);
  padding: 46px 40px 40px;
  width: 1080px;
  margin-inline: auto;
}

/* price-item
-------------------------*/
.price-item {
  gap: 0 40px;
}
.price-item:not(:last-child) {
  padding-bottom: 60px;
  margin-bottom: 60px;
  border-bottom: 1px solid #d1cfcb;
}
.price-item__ttl {
  position: relative;
  z-index: 1;
  padding-left: 25px;
  padding-bottom: 9px;
  font-size: var(--font-size-26);
  font-family: var(--font-sub);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--letter-spacing-regular);
  border-bottom: 3px solid var(--color-text-base);
  margin-bottom: 20px;
}
.price-item__ttl::before {
  content: "";
  width: 18px;
  height: 18px;
  background: url("/img/price/price_ttl_deco.png") no-repeat top center/contain;
  position: absolute;
  top: 0.75em;
  left: 0;
  translate: 0% -50%;
}
.price-item__fee {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 26px;
  gap: 12px;
  font-size: var(--font-size-21);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-regular);
}
.price-item__fee-label {
  line-height: 30px;
  padding: 0 14px;
  border-radius: var(--round-5);
  background-color: var(--color-main);
  color: var(--color-white);
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.price-item__fee-price {
  -ms-flex-negative: 1;
  flex-shrink: 1;
  width: 100%;
}
.price-item__fee-price .sm {
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-18);
}
.price-item__conditions {
  margin-top: 50px;
}
.price-item__condition:not(:last-child) {
  margin-bottom: 50px;
}
.price-item__condition-ttl {
  background-color: var(--color-theme);
  border-radius: var(--round-15);
  font-family: var(--font-sub);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-21);
  letter-spacing: var(--letter-spacing-none);
  padding: 12px 20px;
  margin-bottom: 20px;
}
.price-item__sentence .note {
  padding-left: 1em;
  text-indent: -1em;
}
.price-item__table {
  width: 100%;
  border-collapse: separate;
}
.price-item__table col:nth-child(1),
.price-item__table col:nth-child(2) {
  width: 32%;
}
.price-item__table col:nth-child(3) {
  width: 36%;
}
.price-item__table th,
.price-item__table td {
  -ms-flex-line-pack: center;
  align-content: center;
}
.price-item__table thead th {
  background-color: var(--color-white);
  border: 1px solid var(--color-main);
  background-color: var(--color-main);
  color: var(--color-white);
  font-size: var(--font-size-21);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-regular);
  padding: 15px 5px;
  text-align: center;
}
.price-item__table thead th:not(:last-child) {
  border-right: 1px solid var(--color-white);
}
.price-item__table thead th:first-child {
  border-radius: var(--round-5) 0 0 0;
}
.price-item__table thead th:last-child {
  border-radius: 0 var(--round-5) 0 0;
}
.price-item__table tbody tr:last-child th {
  border-radius: 0 0 0 var(--round-5);
}
.price-item__table tbody tr:last-child td:nth-last-of-type(1) {
  border-radius: 0 0 var(--round-5) 0;
}
.price-item__table tbody th,
.price-item__table tbody td {
  padding: 20px 15px;
  line-height: 30px;
}
.price-item__table tbody th {
  border-left: 1px solid #d1cfcb;
  border-right: 1px solid #d1cfcb;
  border-bottom: 1px solid #d1cfcb;
  font-weight: var(--font-weight-bold);
  text-align: center;
  font-size: var(--font-size-20);
  letter-spacing: var(--letter-spacing-regular);
  padding-inline: 5px;
}
.price-item__table tbody th .sm {
  font-size: var(--font-size-17);
}
.price-item__table tbody td {
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-regular);
  letter-spacing: var(--letter-spacing-regular);
  border-right: 1px solid #d1cfcb;
  border-bottom: 1px solid #d1cfcb;
}
.price-item__table tbody td:not(:nth-last-of-type(1)) {
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-regular);
  text-align: center;
  font-size: var(--font-size-21);
}

/* ===========================================
*
* voice-page
*
* ======================================== */
/*------------------------------
*
* voice
*
------------------------------*/
.voice {
  padding-top: 84px;
}
.voice-item {
  position: relative;
  z-index: 1;
}
.voice-item__link {
  padding: 20px;
  background-color: var(--color-white);
  border-radius: var(--round-15);
  gap: 30px;
  width: 100%;
  -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;
}
.voice-item::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 18px;
  background: url("/img/common/quotation.svg") no-repeat top center/contain;
  width: 16px;
  height: 12px;
}
.voice-item__ttl {
  width: 100%;
}
.voice-item__header {
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.voice-item__content {
  -ms-flex-negative: 1;
  flex-shrink: 1;
  width: 100%;
  padding-top: 25px;
}
.voice-item__thumbnail {
  aspect-ratio: 1/1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 330px;
  border: 4px solid var(--color-white);
}
.voice-item__age-gender {
  font-weight: var(--font-weight-medium);
}
.voice-item__customer-voice {
  line-height: 2;
  font-weight: var(--font-weight-regular);
  letter-spacing: var(--letter-spacing-regular);
}
.voice-item__customer-voice > p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.voice-item:not(:last-child) {
  margin-bottom: 40px;
}
.voice-item__body {
  width: 100%;
}
.voice__tags {
  gap: 8px;
}
.voice__tag {
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--letter-spacing-regular);
  text-align: center;
  color: var(--color-white);
  background-color: var(--color-main);
  line-height: 32px;
  padding-inline: 8px;
  border-radius: var(--round-5);
}

/* voice-single
-------------------------*/
.voice-single-wrapper {
  padding-top: 84px;
  padding-bottom: 45px;
}

.voice-single {
  position: relative;
  z-index: 1;
  padding: 20px 20px 42px 20px;
  background-color: var(--color-white);
  border-radius: var(--round-15);
  gap: 30px;
  width: 100%;
  -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;
}
.voice-single::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 18px;
  background: url("/img/common/quotation.svg") no-repeat top center/contain;
  width: 16px;
  height: 12px;
}
.voice-single__ttl {
  width: 100%;
}
.voice-single__header {
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.voice-single__content {
  -ms-flex-negative: 1;
  flex-shrink: 1;
  width: 100%;
  padding-top: 25px;
}
.voice-single__thumbnail {
  aspect-ratio: 1/1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 330px;
  border: 4px solid var(--color-white);
}
.voice-single__customer-voice {
  line-height: 2;
  font-weight: var(--font-weight-regular);
  letter-spacing: var(--letter-spacing-regular);
}
.voice-single__customer-voice > p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.voice-single:not(:last-child) {
  margin-bottom: 30px;
}
.voice-single__body {
  width: 100%;
}
.voice-single__comment-ttl {
  margin-top: 26px;
  margin-bottom: 14px;
  padding: 7px 14px;
  border-radius: var(--round-15);
  background-color: var(--color-theme);
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--letter-spacing-regular);
}
.voice-single__comment-text {
  line-height: 2;
}

/* ===========================================
*
* guide page
*
* ======================================== */
/*------------------------------
*
* flow
*
------------------------------*/
.flow__ttl {
  margin-bottom: 72px;
}
.flow__item {
  background-color: var(--color-white);
  padding: 16px 30px 48px 18px;
  border-radius: var(--round-10);
}
.flow__item__heading {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
}
.flow__item__ttl {
  padding-top: 15px;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  width: 100%;
}
.flow__item__num {
  width: 99px;
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.flow__item__body {
  padding-left: 106px;
}
.flow__item__actions {
  margin-top: 40px;
  gap: 45px;
}
.flow__item__tel {
  gap: 8px;
}
.flow__item__tel .tel-replace {
  height: 17px;
}
.flow__item__contact-btn {
  width: 390px;
}
.flow__item:not(:last-child) {
  margin-bottom: 100px;
  position: relative;
  z-index: 1;
}
.flow__item:not(:last-child)::after {
  content: "";
  width: 60px;
  height: 21px;
  background: url("/img/guide/flow_arrow.svg") no-repeat top center/contain;
  position: absolute;
  bottom: -50px;
  left: 50%;
  translate: -50% 50%;
}

/*------------------------------
*
* qa よくあるご質問
*
------------------------------*/
.qa {
  position: relative;
  z-index: 1;
  background: url("/img/common/sec_top_yellow.png") no-repeat top
      center/max(1920px, 100%) auto,
    url("/img/common/pattern03.jpg") repeat center/auto;
  padding-top: 47px;
}
.qa__ttl {
  margin-bottom: 150px;
  text-shadow: var(--color-white) 2px 0px 0px,
    var(--color-white) 1.75517px 0.958851px 0px,
    var(--color-white) 1.0806px 1.68294px 0px,
    var(--color-white) 0.141474px 1.99499px 0px,
    var(--color-white) -0.832294px 1.81859px 0px,
    var(--color-white) -1.60229px 1.19694px 0px,
    var(--color-white) -1.97998px 0.28224px 0px,
    var(--color-white) -1.87291px -0.701566px 0px,
    var(--color-white) -1.30729px -1.5136px 0px,
    var(--color-white) -0.421592px -1.95506px 0px,
    var(--color-white) 0.567324px -1.91785px 0px,
    var(--color-white) 1.41734px -1.41108px 0px,
    var(--color-white) 1.92034px -0.558831px 0px;
}
.qa-list__item {
  padding: 30px 30px 45px 26px;
  border-radius: var(--round-5);
  background: var(--color-white);
}
.qa-list__item:not(:last-child) {
  margin-bottom: 80px;
}
.qa-list__item .question__mark,
.qa-list__item .answer__mark {
  width: 63px;
  place-content: center;
  text-align: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 10px;
}
.qa-list__item .question {
  position: relative;
  letter-spacing: 0.05em;
  background-color: var(--main-color);
  color: var(--white-color);
  border-radius: var(--round-10);
}
.qa-list__item .question__content {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: var(--font-size-28);
  letter-spacing: 0;
  font-weight: var(--font-weight-medium);
  font-family: var(--font-sub);
  margin-top: 3px;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  width: 100%;
  padding-bottom: 5px;
  border-bottom: 3px solid var(--color-text-base);
}
.qa-list__item .answer {
  position: relative;
  margin-left: auto;
  margin-top: 28px;
}
.qa-list__item .answer__content {
  padding-top: 10px;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  width: 100%;
}

/*------------------------------
*
* contact
*
------------------------------*/
.contact {
  position: relative;
  z-index: 1;
  padding-block: 0;
}
.contact::after,
.contact::before {
  content: "";
  position: absolute;
  z-index: -2;
  width: 100%;
  left: 0;
}
.contact::after {
  height: 197px;
  background: url("/img/common/pattern02.jpg") repeat center/auto;
  bottom: 0;
}
.contact::before {
  bottom: 197px;
  height: 58px;
  background: url("/img/common/contact_wave.png") no-repeat top
    center/max(1920px, 100%) 100%;
}
.contact__ttl {
  margin-bottom: 45px;
}
.contact__ttl .cmn-ttl__main {
  font-size: var(--font-size-42);
  letter-spacing: var(--letter-spacing-none);
}
.contact__content {
  border-radius: var(--round-15) 0 0 var(--round-15);
  background-color: var(--color-main);
  color: var(--color-white);
  padding: 55px 40px;
  position: relative;
  z-index: 1;
}
.contact__content::before {
  content: "";
  width: 97px;
  height: 69px;
  background: url("/img/common/contact_free.png") no-repeat top center/contain;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  translate: -32px -27px;
}
.contact__sentence {
  --sentence-line-height: 2.1;
  font-size: var(--font-size-17);
  letter-spacing: var(--letter-spacing-none);
}
.contact__actions {
  border-radius: 0 var(--round-15) var(--round-15) 0;
  background-color: 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;
  padding: 50px 60px;
  position: relative;
  z-index: 1;
}
.contact__actions::before {
  content: "";
  width: 134px;
  height: 124px;
  background: url("/img/common/contact_flower.png") no-repeat top center/contain;
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
  translate: 28px 36px;
  pointer-events: none;
}
.contact__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1020px;
  width: 100%;
  margin: 0 auto;
}
.contact__tel {
  gap: 12px;
  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;
}
.contact__tel .tel-replace {
  height: 16px;
  display: block;
}
.contact__tel .tel-replace > img {
  display: block;
}
.contact__btn {
  width: 390px;
  margin-top: 36px;
}

.guide-page .contact {
  background: url("/img/common/pattern03.jpg") repeat center/auto;
}

/* ===========================================
*
* single page
*
* ======================================== */
.single {
  position: relative;
  z-index: 5;
}
.single__head {
  display: grid;
  grid-template-areas: "image line" "image title";
  grid-template-columns: 330px 1fr;
  gap: 0px 30px;
  grid-template-rows: auto auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
  margin-bottom: 60px;
}
.single__head.noimage {
  grid-template-columns: 1fr;
  grid-template-areas: "line" "title";
}
.single__thumbnail {
  aspect-ratio: 33/24;
  border-radius: var(--round-15);
  overflow: hidden;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  grid-area: image;
}
.single__date {
  font-size: var(--font-size-17);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-base);
  line-height: 1;
  text-align: right;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.single__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  padding-left: 10px;
  border-left: 1px solid var(--color-text-base);
}
.single__tags .tag {
  font-size: var(--font-size-17);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-base);
}
.single__flex {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  margin-bottom: 7px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 10px;
  grid-area: line;
  width: 100%;
}
.single__ttl {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  width: 100%;
  font-size: var(--font-size-30);
  font-family: var(--font-sub);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--letter-spacing-regular);
  border-bottom: 3px solid var(--color-text-base);
  padding-bottom: 11px;
  grid-area: title;
  align-self: start;
}
.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.4);
  -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.4);
  border-right: 2px solid rgb(var(--color-text-base-rgb) / 0.4);
  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);
  border-color: var(--color-main);
}
.sitemap-list__link:hover::after {
  right: 1em;
  border-color: var(--color-main);
}

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