@charset "UTF-8";
/* ===========================================
*  
*  省略ルール
*  以下記載のものを省略して使用
※ 　
* ======================================== */
/*------------------------------
* 
* txt : text
* bg  : background
* cmn : common
* img : image
* bnr : banner
* ttl : title
* num : number
* btn : button
* flx : flex
* col : column
* mg  : margin
* mt  : margin-top
* mb  : margin-bottom
* pd  : padding
* pt  : padding-top
* pb  : padding-bottom
* rg  : regular
* md  : medium
* lg  : large
* nm  : normal
* hov : hover
* 
* この定義と別で使用する場合は個別でコメント残すこと

* ----------------------------

*  ---　CSSカスタムプロパティの使用についての注意・共有事項　---
*  ※こちらの命名に関してはわかりやすさを担保するため、省略ルールの限りではありません
*  ※基本的に
*   要素名（クラス名）+ タグ名 + xy方向（topやleftまたは論理値） + CSSプロパティ名 でできるだけ直感的にわかるよう命名しています。
※　
*  ※全体で使用できるものは:rootで定義しています（グローバルスコープ変数）
*  ※親要素で宣言されたものは、その内のみ利用可能なため、その点に注意してください（ローカルスコープ変数）
*  ※CSSカスタムプロパティはurlに使用するとブラウザで異なる挙動を取るため、background-imageの管理にはなるべく使用しないでしてください
*
------------------------------*/
/* ===========================================
*  
*  css custom property (common)
* 
* ======================================== */
:root {
  /* グローバルスコープ変数。このシート内であればどこでも使用できます */
  /* font font-size */
  --font-size-base: clamp(0.875rem, calc(0.8213087248rem + 0.0026845638 * 100vw), 0.95rem);
  --font-size-18: clamp(0.9984375rem, calc(0.9883703859rem + 0.0005033557 * 100vw), 1.0125rem);
  --font-size-20: clamp(1.109375rem, calc(1.0981893177rem + 0.0005592841 * 100vw), 1.125rem);
  --font-size-22: clamp(1.120625rem, calc(1.0369560962rem + 0.0041834452 * 100vw), 1.2375rem);
  --font-size-24: clamp(1.2225rem, calc(1.1312248322rem + 0.0045637584 * 100vw), 1.35rem);
  --font-size-25: clamp(1.19921875rem, calc(1.1349010766rem + 0.0032158837 * 100vw), 1.2890625rem);
  --font-size-26: clamp(1.2471875rem, calc(1.1802971197rem + 0.003344519 * 100vw), 1.340625rem);
  --font-size-27: clamp(1.29515625rem, calc(1.2256931628rem + 0.0034731544 * 100vw), 1.3921875rem);
  --font-size-28: clamp(1.343125rem, calc(1.2710892058rem + 0.0036017897 * 100vw), 1.44375rem);
  --font-size-30: clamp(1.42734375rem, calc(1.2746591862rem + 0.0076342282 * 100vw), 1.640625rem);
  --font-size-32: clamp(1.5225rem, calc(1.3596364653rem + 0.0081431767 * 100vw), 1.75rem);
  --font-size-35: clamp(1.640625rem, calc(1.5231753356rem + 0.0058724832 * 100vw), 1.8046875rem);
  --font-size-36: clamp(1.6875rem, calc(1.5666946309rem + 0.0060402685 * 100vw), 1.85625rem);
  --font-size-40: clamp(1.7375rem, calc(1.5048378076rem + 0.0116331096 * 100vw), 2.0625rem);
  --font-size-50: clamp(1.875rem, calc(1.3716442953rem + 0.0251677852 * 100vw), 2.578125rem);
  /* 幅設定 */
  --min-contents-width: 350px;
  --wide-inner-width: 100%;
  --inner-width: 100%;
  --full-width: 100%;
  --half-width: 48%;
  --third-width: 48%;
  --quarter-width: 48%;
  --w-600: 48%;
  --w-960: 100%;
  --w-500: 48%;
  --w-520: 48%;
  --w-470: 48%;
  --w-400: 48%;
  --w-300: 48%;
  /* border-radius */
  --round-5: 3px;
  --round-10: 8px;
  --round-20: 16px;
  --round-30: 24px;
  --round-full: 999em;
  /* 1080pxの外側 calc内で使用*/
  --inner-out: 3%;
  /* 1280pxの外側 calc内で使用*/
  --wide-inner-out: 3%;
  /* 1920pxの外側 calc内で使用*/
  --max-inner-out: 3%;
  /* logoの幅 */
  --logo-width: 230px;
  /* mapの高さ */
  --map-height: 56.25vw;
}

/* ===========================================
*  
*  default styles
* 
* ======================================== */
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(--main-text-color);
  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/pattern/greeting_bg.png) repeat center/auto;
}

/* ===========================================
*
* common-styles
*
* ======================================== */
/* 
margin クラス
-------------------------*/
.mt-min {
  margin-top: 8px;
}

.mt-smr {
  margin-top: clamp(0.875rem, calc(0.6960290828rem + 0.0089485459 * 100vw), 1.125rem);
}

.mt-sm {
  margin-top: clamp(1.3125rem, calc(1.1782718121rem + 0.0067114094 * 100vw), 1.5rem);
}

.mt-nm {
  margin-top: clamp(1.75rem, calc(1.5710290828rem + 0.0089485459 * 100vw), 2rem);
}

.mt-rg {
  margin-top: clamp(2.1875rem, calc(1.9637863535rem + 0.0111856823 * 100vw), 2.5rem);
}

.mt-md {
  margin-top: clamp(2.625rem, calc(2.3565436242rem + 0.0134228188 * 100vw), 3rem);
}

.mt-lg {
  margin-top: clamp(3.0625rem, calc(2.7493008949rem + 0.0156599553 * 100vw), 3.5rem);
}

.mt-lgr {
  margin-top: clamp(3.5rem, calc(3.1420581655rem + 0.0178970917 * 100vw), 4rem);
}

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

.mb-smr {
  margin-bottom: clamp(0.875rem, calc(0.6960290828rem + 0.0089485459 * 100vw), 1.125rem);
}

.mb-sm {
  margin-bottom: clamp(1.3125rem, calc(1.1782718121rem + 0.0067114094 * 100vw), 1.5rem);
}

.mb-nm {
  margin-bottom: clamp(1.75rem, calc(1.5710290828rem + 0.0089485459 * 100vw), 2rem);
}

.mb-rg {
  margin-bottom: clamp(2.1875rem, calc(1.9637863535rem + 0.0111856823 * 100vw), 2.5rem);
}

.mb-md {
  margin-bottom: clamp(2.625rem, calc(2.3565436242rem + 0.0134228188 * 100vw), 3rem);
}

.mb-lg {
  margin-bottom: clamp(3.0625rem, calc(2.7493008949rem + 0.0156599553 * 100vw), 3.5rem);
}

.mb-lgr {
  margin-bottom: clamp(3.5rem, calc(3.1420581655rem + 0.0178970917 * 100vw), 4rem);
}

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

.logo {
  width: var(--logo-width);
  transition: 0.3s;
}
.logo:hover {
  opacity: 0.7;
}

/* 
tel style
-------------------------*/
.tel {
  /* tel　style */
  /* ローカルスコープ変数 */
  --tel-font-size: var(--font-size-28);
  --tel-txt-font-size: 0.625em;
  --tel-txt-space: 0.5em;
  --tel-letter-space: 0.04em;
  --tel-color: var(--main-text-color);
  --tel-icon-space: 0.7428571429em;
  --tel-icon-position: 0.5em;
  --tel-icon-width: 0.6285714286em;
  --tel-icon-height: 0.8571428571em;
  font-family: var(--font-sub, sans-serif);
  font-weight: var(--font-weight-medium, 700);
  letter-spacing: var(--tel-letter-space, 0.05);
  font-size: var(--tel-font-size, 28px);
  line-height: 1;
  position: relative;
}
.tel__txt {
  font-size: var(--tel-txt-font-size, 0.75em);
  margin-right: var(--tel-txt-space, 0.25em);
}
.tel__replace {
  /* tel replace txt　style */
  --tel-replace-size: 12px;
  height: var(--tel-replace-size, 12px);
}
.tel-replace--right {
  display: flex;
  align-items: center;
  gap: var(--tel-replace-space, 10px);
}
.tel-replace--bottom {
  /* tel replace txt　style */
  --tel-replace-size: 12px;
  --tel-replace-space: 20px;
  padding-bottom: var(--tel-replace-space, 20px);
}
.tel-replace--bottom .tel__replace {
  position: absolute;
  left: 0;
  bottom: 0;
}
.tel-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;
  transform: translateY(-50%);
}
.tel-icon--main::before {
  background: url(../img/icon_tel.png) repeat center/contain;
}

/*
 snsクラス
-------------------------*/
.sns {
  display: flex;
  align-items: center;
  gap: 20px;
}
.sns__icon {
  width: 30px;
  transition: 0.3s;
}
.sns__icon:hover {
  opacity: 0.7;
}
.sns__icon img {
  width: 100%;
}

.cmn-times {
  gap: 6px 14px;
  font-size: 12px;
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.05em;
  display: flex;
}
.cmn-times__item {
  gap: 7px;
}
.cmn-times__item dt {
  color: var(--white-color);
  background-color: var(--sub-color);
  padding: 0.03125em 5px;
  border-radius: 2em;
  text-align: center;
  min-width: 65px;
}

/* 
imgタイトル
-------------------------*/
/* SP時は高さを個別で指定する必要があります */
.ttl-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.ttl-img--center img {
  -o-object-position: center center;
     object-position: center center;
}

.ttl-img--left img {
  -o-object-position: center left;
     object-position: center left;
}

.ttl-img--right img {
  -o-object-position: center right;
     object-position: center right;
}

/* 
title style
-------------------------*/
.cmn-ttl {
  --ttl-main-size: 1em;
  /* ローカルスコープ変数 */
  --ttl-sub-size: 0.5em;
  --ttl-sub-space: 1em;
  --ttl-color: var(--main-text-color);
  --ttl-sub-color: var(--main-color);
  --ttl-margin-bottom: 40px;
  --ttl-shadow-color: var(--white-color);
  --ttl-shadow-color-rgb: var(--white-color-rgb);
  font-family: var(--font-sub);
  font-size: var(--font-size-30);
  margin-bottom: var(--ttl-margin-bottom);
  color: var(--ttl-main-color);
  line-height: 1.5;
  display: flex;
  flex-direction: column;
}
.cmn-ttl--center {
  align-items: center;
  text-align: center;
}
.cmn-ttl--left {
  align-items: flex-start;
  text-align: left;
}
.cmn-ttl--right {
  align-items: flex-end;
  text-align: right;
}
.cmn-ttl__main {
  font-size: var(--ttl-main-size);
  letter-spacing: var(--letter-spacing-none);
}
.cmn-ttl__main--shadow {
  text-shadow: 0px 0px 8px rgba(var(--ttl-shadow-color-rgb), 1), 0px 0px 8px rgba(var(--ttl-shadow-color-rgb), 1), 0px 0px 8px rgba(var(--ttl-shadow-color-rgb), 1), 0px 0px 8px rgba(var(--ttl-shadow-color-rgb), 1), 0px 0px 8px rgba(var(--ttl-shadow-color-rgb), 0.8), 0px 0px 8px rgba(var(--ttl-shadow-color-rgb), 0.5), 0px 0px 4px rgba(var(--ttl-shadow-color-rgb), 1);
}
.cmn-ttl__main--deco-border {
  padding-inline: 1em;
  display: inline-block;
  background: url(../img/ttl_deco_border_l.png) no-repeat bottom 0.25em left/0.7em auto, url(../img/ttl_deco_border_r.png) no-repeat bottom 0.25em right/0.7em auto;
}
.cmn-ttl__main--deco-flag {
  padding-inline: 3.05em;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.cmn-ttl__main--deco-flag::before {
  content: "";
  width: 100%;
  height: 1.55em;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -67.5%);
  background: url(../img/ttl_flag_l.png) no-repeat center left/2.375em auto, url(../img/ttl_flag_r.png) no-repeat center right/2.375em auto;
}
.cmn-ttl__sub {
  font-size: var(--ttl-sub-size);
  margin-bottom: var(--ttl-sub-space);
  color: var(--ttl-sub-color);
  line-height: 1;
  text-transform: uppercase;
}

/* border-bottom付きタイトル */
.cmn-border-bottom-ttl {
  /* ローカルスコープ変数 */
  --ttl-main-size: 1em;
  --ttl-border-color: var(--main-text-color);
  --ttl-border-style: 2px dotted;
  --ttl-shadow-color: var(--white-color);
  --ttl-shadow-color-rgb: var(--white-color-rgb);
  font-size: var(--font-size-24);
  font-family: var(--font-sub);
  border-bottom: var(--ttl-border-style) var(--ttl-border-color);
  padding-bottom: 13px;
}
.cmn-border-bottom-ttl__main {
  font-size: var(--ttl-main-size);
  letter-spacing: var(--letter-spacing-none);
}
.cmn-border-bottom-ttl__main--shadow {
  text-shadow: 0px 0px 8px rgba(var(--ttl-shadow-color-rgb), 1), 0px 0px 8px rgba(var(--ttl-shadow-color-rgb), 1), 0px 0px 8px rgba(var(--ttl-shadow-color-rgb), 1), 0px 0px 8px rgba(var(--ttl-shadow-color-rgb), 1), 0px 0px 8px rgba(var(--ttl-shadow-color-rgb), 0.8), 0px 0px 8px rgba(var(--ttl-shadow-color-rgb), 0.5), 0px 0px 4px rgba(var(--ttl-shadow-color-rgb), 1);
}

/* border付きタイトル 中央*/
.cmn-border-ttl {
  /* ローカルスコープ変数 */
  --ttl-main-size: 1em;
  --ttl-border-color: var(--main-text-color);
  --ttl-border-style: 2px dotted;
  --ttl-margin-bottom: 50px;
  --ttl-shadow-color: var(--white-color);
  --ttl-shadow-color-rgb: var(--white-color-rgb);
  font-size: var(--font-size-30);
  font-family: var(--font-sub);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: var(--ttl-margin-bottom);
}
.cmn-border-ttl__main {
  font-size: var(--ttl-main-size);
  letter-spacing: var(--letter-spacing-none);
  display: inline-block;
  padding-inline: 0.6em;
  flex-shrink: 0;
}
.cmn-border-ttl__main--shadow {
  text-shadow: 0px 0px 8px rgba(var(--ttl-shadow-color-rgb), 1), 0px 0px 8px rgba(var(--ttl-shadow-color-rgb), 1), 0px 0px 8px rgba(var(--ttl-shadow-color-rgb), 1), 0px 0px 8px rgba(var(--ttl-shadow-color-rgb), 1), 0px 0px 8px rgba(var(--ttl-shadow-color-rgb), 0.8), 0px 0px 8px rgba(var(--ttl-shadow-color-rgb), 0.5), 0px 0px 4px rgba(var(--ttl-shadow-color-rgb), 1);
}
.cmn-border-ttl::before, .cmn-border-ttl::after {
  content: "";
  width: 50%;
  height: 0;
  border-bottom: var(--ttl-border-style) var(--ttl-border-color);
  display: block;
  flex-shrink: 1;
}

/* テキストの上にdotを配置する */
.txt-dot--top {
  position: relative;
  display: inline-block;
  text-align: center;
  line-height: 1.5;
}
.txt-dot--top::before {
  content: "";
  width: 3px;
  height: 3px;
  display: block;
  border-radius: 50%;
  background-color: var(--sub-color);
  position: relative;
  top: 0.125em;
  left: 48%;
  transform: translate(-50%, -50%);
}

/* 
文章テキスト スタイル
-------------------------*/
.cmn-sentence {
  /* ローカルスコープ変数 */
  --sentence-line-height: 2;
  --sentence-p-margin: 1.75em;
  letter-spacing: var(--letter-spacing-base);
  font-weight: var(--font-weight-medium);
  line-height: var(--sentence-line-height);
  /* 疑似要素でline-height分をネガティブマージンで調整 */
}
.cmn-sentence p::before, .cmn-sentence p::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.cmn-sentence p::before {
  margin-top: calc((1 - var(--sentence-line-height)) * 0.5em);
}
.cmn-sentence p::after {
  margin-bottom: calc((1 - var(--sentence-line-height)) * 0.5em);
}
.cmn-sentence p:not(:last-child) {
  margin-bottom: var(--sentence-p-margin);
}

/* 
画像
-------------------------*/
.cmn-img > img {
  width: 100%;
}

/* 
共通padding
-------------------------*/
.cmn-pd {
  padding: 75px 0;
}

/* 
inner クラス
-------------------------*/
.inner,
.wide-inner {
  width: 100%;
  padding: 0 5%;
  margin: 0 auto;
}

/* 
カラムスタイル
-------------------------*/
.col-container-2-1 {
  /* PC2列　SP1列 */
  --col-item-y-space: 36px;
  /* ローカルスコープ変数 */
  --col-item-x-space: 4%;
  /* PC2列　SP1列 */
  gap: var(--col-item-y-space, 40px) var(--col-item-x-space, 40px);
}
.col-container-2-1 > .col-item {
  width: 100%;
}

.col-container-2-2 {
  /* PC2列　SP2列 */
  --col-item-y-space: 36px;
  /* ローカルスコープ変数 */
  --col-item-x-space: 4%;
  /* PC4列　SP2列 */
  gap: var(--col-item-y-space, 30px) var(--col-item-x-space, 20px);
}
.col-container-2-2 > .col-item {
  width: calc(50% - var(--col-item-x-space) / 2);
}

.col-container-3-2 {
  /* PC3列　SP2列 */
  --col-item-y-space: 36px;
  /* ローカルスコープ変数 */
  --col-item-x-space: 4%;
  /* PC3列　SP2列 */
  gap: var(--col-item-y-space, 40px) var(--col-item-x-space, 30px);
}
.col-container-3-2 > .col-item {
  width: calc((100% - var(--col-item-x-space, 30px) * 1) / 2);
}

.col-container-4-2 {
  /* PC4列　SP2列 */
  --col-item-y-space: 36px;
  /* ローカルスコープ変数 */
  --col-item-x-space: 4%;
  /* PC4列　SP2列 */
  gap: var(--col-item-y-space, 30px) var(--col-item-x-space, 20px);
}
.col-container-4-2 > .col-item {
  width: calc((100% - var(--col-item-x-space, 30px) * 1) / 2);
}

table .replace-txt {
  height: 12px;
  margin-top: 3px;
  display: block;
}

.main-table {
  /* ローカルスコープ変数 */
  --table-letter-space: var(--letter-spacing-base);
  --table-main-color: var(--main-color);
  --table-sub-color: var(--white-color);
  --table-th-font-weight: var(--font-weight-medium);
  --table-th-position: left;
  --table-th-x-padding: 1em;
  --table-th-y-padding: 0.8125em;
  --table-td-x-padding: 1em;
  --table-td-y-padding: 0.8125em;
  --table-cel-y-padding: 0.8125em;
  --table-cel-x-padding: 1em;
  --table-width: 100%;
  --table-th-width: 100%;
  --table-td-width: 100%;
  width: var(--table-width);
  letter-spacing: var(--table-letter-spacing);
}
.main-table tr {
  width: 100%;
  display: block;
  border-block: 1px solid var(--table-main-color, #5d8bbd);
}
.main-table tr:not(:last-child) {
  margin-bottom: 12px;
}
.main-table th,
.main-table td {
  padding: var(--table-cel-y-padding) var(--table-cel-x-padding);
  display: block;
}
.main-table th {
  width: var(--table-th-width);
  background-color: var(--table-main-color);
  color: var(--table-sub-color);
  font-weight: var(--table-th-font-weight);
  text-align: var(--table-th-position);
}
.main-table td {
  width: var(--table-td-width);
  background: var(--table-sub-color);
}
.main-table--color-sub {
  --table-main-color: var(--accent-color);
  --table-sub-color: var(--white-color);
}

/*------------------------------
*
* cmn-btn style
*
------------------------------*/
.cmn-btn {
  /* デフォフォルトの糸 */
  --btn-font-size: var(--font-size-base, 16px);
  --btn-font-weight: var(--font-weight-medium, 700);
  --btn-font-letter-space: var(--letter-spacing-base, 0.05em);
  --btn-weight-small: 220px;
  --btn-weight-regular: 280px;
  --btn-weight-medium: 320px;
  --btn-weight-large: 360px;
  --btn-height: 48px;
  --btn-padding-y: calc((var(--btn-height) - var(--btn-font-size)) / 2);
  --btn-padding-x: 1em;
  display: block;
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  border-radius: 5em;
  line-height: 1;
  text-align: center;
  width: 100%;
}
.cmn-btn-solid {
  --btn-bgcolor: var(--main-color, #5d8bbd);
  --btn-color: var(--white-color, #fff);
  --btn-hov-blight: 20%;
  --btn-hov-bgcolor: var(--lighten-main-color);
  --btn-hov-color: var(--white-color, #fff);
  background-color: var(--btn-bgcolor);
  color: var(--btn-color);
  transition: 0.3s;
}
.cmn-btn-solid:hover {
  background-color: var(--btn-hov-bgcolor);
  color: var(--btn-hov-color);
  opacity: 1;
}
.cmn-btn-solid--primary {
  --btn-bgcolor: var(--sub-color);
  --btn-hov-bgcolor: var(--main-color);
}
.cmn-btn-solid--secondary {
  --btn-bgcolor: var(--main-color);
  --btn-hov-bgcolor: var(--sub-color);
}
.cmn-btn-solid--tertiary {
  --btn-bgcolor: var(--main-text-color);
  --btn-hov-bgcolor: var(--sub-color);
}
.cmn-btn-solid--line {
  --btn-bgcolor: var(--line-green-color);
  --btn-hov-bgcolor: var(--darken-line-green-color);
  --line-btn-width: 220px;
  --line-btn-padding-y: 1.375em;
  --line-btn-padding-x: 1em;
  max-width: var(--line-btn-width);
  padding: var(--line-btn-padding-y) var(--line-btn-padding-x);
}
.cmn-btn-arrow {
  --btn-arrow-width: 14px;
  --btn-arrow-height: 14px;
  --btn-arrow-position: 16px;
  position: relative;
}
.cmn-btn-arrow::after {
  content: "";
  transition: 0.3s;
  position: absolute;
  width: var(--btn-arrow-width);
  height: var(--btn-arrow-height);
  top: 50%;
  right: var(--btn-arrow-position);
  transform: translate(0, -50%);
  background: url(../img/btn_arrow_white.png) no-repeat center/contain;
}
.cmn-btn-arrow:hover::after {
  transform: translate(50%, -50%);
}
.cmn-btn-icon {
  --icon-btn-width: var(--btn-weight-large);
  --icon-btn-padding-y: 1.375em;
  --icon-btn-padding-x: 1em;
  --icon-space: 1.5em;
  --icon-width: 1em;
  --icon-height: 1em;
  width: 350px;
  max-width: var(--icon-btn-width);
  padding: var(--icon-btn-padding-y) var(--icon-btn-padding-x);
}
.cmn-btn-icon > span {
  padding-left: var(--icon-space);
  position: relative;
  z-index: 1;
}
.cmn-btn-icon > span::before {
  content: "";
  width: var(--icon-width);
  height: var(--icon-height);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.cmn-btn-icon--line {
  --icon-width: 1.875em;
  --icon-height: 1.875em;
  --icon-space: 3.125em;
  background-color: var(--white-color);
  color: var(--main-color);
}
.cmn-btn-icon--line:hover {
  opacity: 0.7;
}
.cmn-btn-icon--line > span::before {
  background: url(../img/icon_line.png) no-repeat center/contain;
}
.cmn-btn--sm {
  max-width: var(--btn-weight-small);
  padding: var(--btn-padding-y) var(--btn-padding-x);
}
.cmn-btn--rg {
  max-width: var(--btn-weight-regular);
  padding: var(--btn-padding-y) var(--btn-padding-x);
}
.cmn-btn--md {
  max-width: var(--btn-weight-medium);
  padding: var(--btn-padding-y) var(--btn-padding-x);
}
.cmn-btn--lg {
  max-width: var(--btn-weight-large);
  padding: var(--btn-padding-y) var(--btn-padding-x);
  --btn-arrow-position: 110px;
}
.cmn-btn--center {
  margin: 0 auto;
}
.cmn-btn--left {
  margin-right: auto;
}
.cmn-btn--right {
  margin-left: auto;
}

/*------------------------------
*
* pagenation style
*
------------------------------*/
.pagenation {
  --pagenation-margin-top: 48px;
  --pagenation-item-width: 3em;
  --pagenation-item-height: 3em;
  --pagenation-item-font-size: 1em;
  --pagenation-item-font-weight: var(--font-weight-medium);
  --pagenation-item-space: 6px;
  --pagenation-item-bg: var(--white-color);
  --pagenation-item-color: var(--main-text-color);
  --pagenation-item-current-bg: var(--main-color);
  --pagenation-item-current-color: var(--white-color);
  margin-top: var(--pagenation-margin-top);
  display: flex;
  justify-content: center;
}
.pagenation li {
  display: block;
  width: var(--pagenation-item-width);
  height: var(--pagenation-item-height);
  font-size: var(--pagenation-item-font-size);
  line-height: var(--pagenation-item-height);
  font-weight: var(--pagenation-item-font-weight);
  margin: 0 var(--pagenation-item-space);
  color: var(--pagenation-item-color);
  background: var(--pagenation-item-bg);
  text-align: center;
  transition: 0.3s;
  border-radius: var(--round-5);
}
.pagenation li:has(a):hover {
  background-color: var(--pagenation-item-current-bg);
  color: var(--pagenation-item-current-color);
}
.pagenation .current {
  background-color: var(--pagenation-item-current-bg);
  color: var(--pagenation-item-current-color);
}

/*------------------------------
*
* breadclumb style
*
------------------------------*/
.wrapper {
  position: relative;
  z-index: 1;
}

.bread-clumb {
  display: none;
}

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

/* ===========================================
*
* header style
*
* ======================================== */
.header {
  width: 100%;
  align-items: center;
  background-color: var(--white-color);
}
.header-inner {
  padding: 10px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  min-width: var(--min-contents-width);
  margin: 0 auto;
  width: 100%;
  height: 80px;
}

/* ===========================================
*
* main style  top page
*
* ======================================== */
/*------------------------------
*
* main visual
*
------------------------------*/
.main-visual {
  width: 100%;
  height: 72.2222222222vw;
  min-height: 252px;
  position: relative;
  z-index: 1;
  background-color: var(--gray-color);
}
.main-visual__catch {
  width: 64%;
  max-width: 633px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -47.5%);
  z-index: 20;
}

/*------------------------------
*
* symptoms
*
------------------------------*/
.symptoms__box {
  padding: 56px 6%;
  background: url(../img/top/trouble_bg.png) no-repeat top center/100%, url(../img/top/symptoms_box_bg.png) repeat center/auto;
  outline: 2px dotted var(--main-color);
  outline-offset: -6px;
}
.symptoms__ttl {
  margin-bottom: 36px;
}
.symptoms__figures {
  justify-content: center;
  width: 100%;
  position: relative;
  z-index: 1;
}
.symptoms__figure--house {
  width: 100%;
}
.symptoms__figure--men {
  /* width: 36%; */
  /* margin-top: -4%;
   */
   position: absolute;
   z-index: 1;
   top: 0;left: 3%;
   width: 25%;
   transform: translateY(-25%);
}
.symptoms-list {
  --col-item-x-space: 4%;
  --col-item-y-space: 32px;
  margin-top: 48px;
}
.symptoms-list__item__img {
  aspect-ratio: 26/20;
  margin-bottom: 8px;
}
.symptoms-list__item__ttl {
  letter-spacing: var(--letter-spacing-none);
  font-family: var(--font-sub);
  justify-content: center;
  font-size: clamp(0.8125rem, calc(0.4993008949rem + 0.0156599553 * 100vw), 1.25rem);
  gap: 0 0.25em;
}
.symptoms-list__item__ttl .num {
  width: 1.4em;
  height: 1.4em;
  background-color: var(--main-color);
  color: var(--white-color);
  border-radius: var(--round-full);
  display: grid;
  place-content: center;
  padding-bottom: 0.1em;
  box-sizing: border-box;
}

/*------------------------------
*
* sign
*
------------------------------*/
.sign {
  padding-top: 15px;
}
.sign__container {
  justify-content: flex-start;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.sign__container::before {
  content: "";
  width: 179px;
  height: 162px;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  transform: translate(-125.6983240223%, 13.5802469136%);
  background: url(../img/top/sign_illust_png) no-repeat top center/contain;
}
.sign__img {
  width: 90%;
  margin: 32px auto 0;
  max-width: 450px;
  border-radius: var(--round-10);
  overflow: hidden;
}
.sign__box {
  width: 608px;
}
.sign__sub-ttl {
  margin-bottom: 24px;
  padding-bottom: 0.4em;
}
.sign__sub-ttl .soild-txt {
  display: inline-block;
  border-radius: 3em;
  padding: 0.05em 0.48em;
  margin-inline: 0.12em;
}

/*------------------------------
*
* entrust
*
------------------------------*/
.entrust {
  padding-top: 45px;
}
.entrust__box {
  padding: 28% 6% 56px;
  position: relative;
  z-index: 1;
  background: url(../img/top/entrust_border_t.png) repeat-x top center/auto, url(../img/top/entrust_border_b.png) repeat-x bottom center/auto, url(../img/top/entrust_box_bg.jpg) repeat center/auto;
}
.entrust__ttl {
  position: absolute;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -41.935483871%);
  width: min(480px, 90%);
}
.entrust__sub-ttl {
  font-size: var(--font-size-22);
  margin-bottom: 20px;
}
.entrust__container {
  justify-content: space-between;
}
.entrust__left {
  width: 100%;
}
.entrust__figures {
  width: 100%;
  margin-top: 48px;
  justify-content: space-between;
  align-items: flex-start;
}
.entrust__figure {
  width: 48.1481481481%;
  border-radius: var(--round-10);
  overflow: hidden;
}
.entrust__figure:nth-child(2) {
  margin-top: 10%;
}
.entrust__btn {
  margin: 36px auto 0;
}

/*------------------------------
*
* top-area
*
------------------------------*/
.top-area {
  background: url(../img/top/area_bg.png) no-repeat top center/cover;
}
.top-area__container {
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.top-area__ttl {
  margin-bottom: 36px;
}
.top-area__sentence {
  padding: 32px 6%;
  width: 90%;
  max-width: 640px;
}
.top-area__img {
  max-width: 240px;
  width: 60%;
}

/*------------------------------
*
* top-service
*
------------------------------*/
.top-service {
  background: url(../img/pattern/service_bg.png) repeat top center/auto;
}
.top-service-list {
  --col-item-x-space: 3%;
  --col-item-y-space: 36px;
  justify-content: center;
}
.top-service-list__item__img {
  width: 100%;
  margin-bottom: 8px;
}
.top-service-list__item__ttl {
  font-size: var(--font-size-22);
  text-align: center;
  margin-bottom: 12px;
  font-family: var(--font-sub);
  text-shadow: 0px 0px 8px rgba(var(--ttl-shadow-color-rgb), 1), 0px 0px 8px rgba(var(--ttl-shadow-color-rgb), 1), 0px 0px 8px rgba(var(--ttl-shadow-color-rgb), 1), 0px 0px 8px rgba(var(--ttl-shadow-color-rgb), 1), 0px 0px 8px rgba(var(--ttl-shadow-color-rgb), 0.8), 0px 0px 8px rgba(var(--ttl-shadow-color-rgb), 0.5), 0px 0px 4px rgba(var(--ttl-shadow-color-rgb), 1);
}
.top-service-list__item__btn {
  --btn-height: 48px;
  --btn-font-size: 13px;
  --btn-arrow-position: 12px;
  --btn-arrow-width: 12px;
  --btn-arrow-height: 12px;
  margin: 0 auto;
}
.top-service__btns {
  margin-top: 48px;
  width: 100%;
  gap: 20px;
  padding: 2.5em 0;
  border-block: 1px dashed var(--main-text-color);
  justify-content: center;
}
.top-service__btn {
  --btn-height: 4em;
  --btn-font-size: var(--font-size-20);
  position: relative;
  z-index: 1;
  font-family: var(--font-semi);
  font-weight: var(--font-weight-bold);
  max-width: 320px;
}
.top-service__btn::before {
  content: "";
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: 2px dotted var(--white-color);
  position: absolute;
  border-radius: var(--round-full);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -2;
}
.top-service__btn::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
}
.top-service__btn--voice::after {
  width: 4.16em;
  height: 3.64em;
  background: url(../img/top/service_btn_icon01.png) no-repeat top center/contain;
  transform: translate(15.3846153846%, 3.2967032967%);
}
.top-service__btn--work::after {
  width: 3.12em;
  height: 3.6em;
  background: url(../img/top/service_btn_icon02.png) no-repeat top center/contain;
  transform: translate(-19.2307692308%, 0%);
}
.top-service__btn--company::after {
  width: 3.48em;
  height: 3.72em;
  background: url(../img/top/service_btn_icon03.png) no-repeat top center/contain;
  transform: translate(-4.5977011494%, 0%);
}

/*------------------------------
*
* top-news
*
------------------------------*/
.top-news__ttl {
  margin-bottom: 36px;
  align-items: center;
}
.top-news__box {
  width: 100%;
}
.top-news .cmn-post {
  width: 100%;
}
.top-news__btn {
  margin: 30px auto 0;
}

/* ===========================================
*
* under page  
*
* ======================================== */
/*------------------------------
*
* main style sub visual
*
------------------------------*/
.sub-visual {
  width: 100%;
  position: relative;
  z-index: 1;
  height: 36vw;
  min-height: 160px;
  box-sizing: border-box;
  overflow: hidden;
}
.sub-visual__catch {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  font-size: var(--font-size-32);
  letter-spacing: var(--letter-spacing-none);
  font-family: var(--font-sub);
  text-align: center;
  padding: 0.475em 1.7em;
  white-space: nowrap;
  border: 1px solid var(--main-color);
  background-color: var(--white-color);
}
.sub-visual__catch::before, .sub-visual__catch::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sub-visual__catch::before {
  z-index: -2;
  width: calc(100% - 0.4em);
  height: calc(100% - 0.4em);
  background-color: var(--theme-color);
}
.sub-visual__catch::after {
  z-index: -1;
  width: calc(100% + 0.8em);
  height: 1.6em;
  background: url(../img/sv_catch_deco_l.png) no-repeat left center/contain, url(../img/sv_catch_deco_r.png) no-repeat right center/contain;
}
.business-page .sub-visual > img{
  object-position: 60% 50%;
}
.work-page .sub-visual > img{
  object-position: 75% 50%;
}
/*------------------------------
*
* news section
*
------------------------------*/
/* ===========================================
*
* main style about-page
*
* ======================================== */
/*------------------------------
*
* greeting
*
------------------------------*/
.greeting__container {
  justify-content: center;
}
.greeting__sentence {
  width: 100%;
}
.greeting__img {
  width: 100%;
  max-width: 500px;
  margin: 36px auto 0;
}

/*------------------------------
*
* strength
*
------------------------------*/
.strength {
  background: url(../img/pattern/service_bg.png) repeat center/auto;
}
.strength__ttl .big {
  font-size: 1.25em;
}
.strength__img {
  max-width: 500px;
  width: 100%;
}
.strength-list {
  margin-top: 48px;
  --col-item-y-space: 36px;
}
.strength-list__item__ttl {
  font-size: var(--font-size-24);
  font-family: var(--font-sub);
  letter-spacing: var(--letter-spacing-none);
  display: flex;
  align-items: center;
  padding: 0.25em 0.5em;
  border-radius: var(--round-10);
  margin-bottom: 18px;
}
.strength-list__item__ttl .num {
  width: 1.4em;
  height: 1.4em;
  font-size: 0.8333333333em;
  border-radius: var(--round-full);
  display: grid;
  place-content: center;
  padding-bottom: 0.1em;
  box-sizing: border-box;
  flex-shrink: 0;
  margin-right: 0.4em;
}
.strength-list__item__ttl .main {
  flex-shrink: 1;
}

/* ===========================================
*
* main style business page
*
* ======================================== */
/*------------------------------
*
* business
*
------------------------------*/
.business:not(:last-child) {
  margin-bottom: 64px;
}
.business__container {
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}
.business-item {
  max-width: 520px;
  width: 100%;
  background: url(../img/business/business_box_bg.jpg) repeat center/auto;
  padding: 30px 5%;
  border: 1px solid var(--main-color);
}
.business-item__ttl {
  font-size: var(--font-size-25);
  margin-bottom: 20px;
}
.business-item__ttl__main {
  display: inline-block;
  border-radius: 3em;
  padding: 0.05em 1em;
}
.business__img {
  width: 520px;
}

/*------------------------------
*
* business-other
*
------------------------------*/
.business-other {
  margin-top: 80px;
  padding: 30px 6%;
}
.business-other__ttl {
  margin-bottom: 30px;
}
.business-other-list {
  --col-item-x-space: 40px;
  --col-item-y-space: 40px;
}
.business-other-list__item__ttl {
  margin-bottom: 18px;
  font-size: var(--font-size-24);
  padding: 0.0833333333em 1em;
}
.business-other-list__item__img {
  margin-bottom: 18px;
}

/* ===========================================
*
* main style voice page
*
* ======================================== */
/*------------------------------
*
* voice
*
------------------------------*/
.voice {
  background: url(../img/pattern/service_bg.png) repeat center/auto;
}
.voice-item {
  padding: 36px 6%;
  outline: 2px dotted var(--sub-color);
  outline-offset: -8px;
}
.voice-item__ttl {
  font-size: var(--font-size-25);
  padding: 0.25em 0.75em;
  letter-spacing: var(--letter-spacing-base);
  border-radius: var(--round-5);
  margin-bottom: 18px;
}
.voice-item__content {
  --sentence-line-height: 1.875;
}
.voice-item:not(:last-child) {
  margin-bottom: 20px;
}

/* ===========================================
*
* main style　work page
*
* ======================================== */
/*------------------------------
*
*　work
*
------------------------------*/
.work {
  background: url(../img/pattern/service_bg.png) repeat center/auto;
}
.work-item {
  padding: 36px 6%;
  outline: 2px dotted var(--sub-color);
  outline-offset: -8px;
}
.work-item__ttl {
  font-size: var(--font-size-25);
  padding: 0.0833333333em 1em;
  letter-spacing: var(--letter-spacing-base);
  border-radius: var(--round-5);
  margin-bottom: 20px;
  text-align: center;
}
.work-item__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.work-item__label {
  display: inline-block;
  width: 6em;
  padding: 0.25em;
  font-size: var(--font-size-18);
  letter-spacing: var(--letter-spacing-none);
  border-radius: 3em;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 5;
}
.work-item__before .work-item__img {
  position: relative;
  z-index: 1;
}
.work-item__before .work-item__img::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translate(-50%, 50%);
  background-color: var(--main-color);
  width: 36px;
  height: 20px;
  -webkit-clip-path: polygon(100% 0%, 0 0, 50% 100%);
          clip-path: polygon(100% 0%, 0 0, 50% 100%);
}
.work-item__img {
  aspect-ratio: 3/2;
  width: 100%;
}
.work-item:not(:last-child) {
  margin-bottom: 36px;
}

/* ===========================================
*
* main style company page
*
* ======================================== */
/*------------------------------
*
* info
*
------------------------------*/
.info__data {
  line-height: 1.875;
}
.info__data__item {
  justify-content: space-between;
  align-items: stretch;
}
.info__data__item:not(:last-child) {
  margin-bottom: 10px;
}
.info__data__item dt,
.info__data__item dd {
  padding-block: 0.625em;
  padding-inline: 1em;
}
.info__data__item dt {
  width: 96px;
  border-radius: var(--round-10);
  font-size: var(--font-size-base);
  text-align: center;
  flex-shrink: 0;
  display: grid;
  place-content: center;
}
.info__data__item dd {
  width: calc(100% - 96px);
  flex-shrink: 1;
}

/*------------------------------
*
* map
*
------------------------------*/
.map {
  padding-top: 0;
}
.map__googlemap {
  height: var(--map-height);
}

/*------------------------------
* 
* news,blog
* 
------------------------------*/
.cmn-post {
  --post-item-bg-color: var(--white-color);
  --post-width: 100%;
  --post-item-marign: 10px;
  --post-item-flex-marign-space: 8px;
  --post-link-padding: 18px 6% 16px;
  --tag-wrapper-width: calc(100% - 94px);
  --post-title-line: 1;
  --post-title-font-size: 14px;
  --post-date-font-size: 14px;
  width: var(--post-width);
}
.cmn-post-item {
  width: 100%;
  background-color: var(--post-item-bg-color, transparent);
  border-radius: var(--round-10);
}
.cmn-post-item:not(:last-child) {
  margin-bottom: var(--post-item-marign, 15px);
}
.cmn-post__box {
  width: 75%;
}
.cmn-post__box.w-100 {
  width: 100%;
}
.cmn-post__thumb {
  width: 20%;
  aspect-ratio: 1/1;
}
.cmn-post__flex {
  margin-bottom: var(--post-item-flex-marign-space, 12px);
}
.cmn-post__tag-wrapper {
  width: var(--tag-wrapper-width, auto);
}
.cmn-post__link {
  padding: var(--post-link-padding, 20px 30px);
}
.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);
}

/*---------- detail ここから ----------*/
.tag {
  --tag-font-size: 14px;
  --tag-letter-space: var(--letter-spacing-base);
  --tag-height: 1;
  --tag-color: var(--main-color);
  display: inline-block;
  font-size: var(--tag-font-size);
  letter-spacing: var(--tag-letter-space);
  color: var(--tag-color);
  font-weight: var(--font-weight-medium);
  line-height: var(--tag-height);
}
.tag-btn-wrapper {
  margin-bottom: 30px;
  gap: 8px;
}
.tag__btn {
  --tag-btn-color: #b3b3b3;
  --tag-btn-bg-color: var(--white-color);
  --tag-btn-current-color: var(--white-color);
  --tag-btn-current-bg-color: var(--main-color);
  --tag-btn-round: 3em;
  --tag-btn-padding: 3em;
  padding: 0.5em 1em;
  background-color: var(--tag-btn-bg-color);
  color: var(--tag-btn-color);
  border-radius: var(--tag-btn-round);
  display: inline-block;
  transition: all 0.3s;
}
.tag__btn:hover {
  color: var(--tag-btn-current-color);
  background-color: var(--tag-btn-current-bg-color);
  opacity: 1;
}
.tag__btn.current {
  color: var(--tag-btn-current-color);
  background-color: var(--tag-btn-current-bg-color);
}
.tag-wrapper {
  --tag-space: .5em 0.75em;
  justify-content: flex-start;
  gap: var(--tag-space);
}

.post-detail {
  position: relative;
  z-index: 5;
}
.post-detail__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.post-detail__date {
  order: 1;
  margin-bottom: 16px;
  line-height: 1;
}
.post-detail__tag-wrapper {
  order: 2;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 16px;
  gap: 10px;
}
.post-detail__ttl {
  order: 3;
  width: 100%;
  font-size: var(--font-size-24);
  border-left: 5px solid var(--main-color);
  font-weight: var(--font-weight-bold);
  padding-left: 0.75em;
  margin-bottom: 24px;
}
.post-detail__img {
  margin: 0 auto;
  width: 100%;
  margin-bottom: 24px;
}

/*------------------------------
* 
* sitemap
* 
------------------------------*/
.sitemap-list {
  max-width: 560px;
  margin: 0 auto;
}
.sitemap-list__item:not(:last-child) {
  margin-bottom: 5px;
}
.sitemap-list__link {
  width: 100%;
  padding: 0.8em 1em;
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--main-color);
  transition: all 0.3s;
}
.sitemap-list__link::after {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid var(--main-color);
  border-right: 2px solid var(--main-color);
  position: absolute;
  top: 50%;
  right: 1.5em;
  transition: all 0.3s;
  transform: translateY(-50%) rotate(45deg);
}
.sitemap-list__link:hover {
  color: var(--main-color);
}
.sitemap-list__link:hover::after {
  right: 1em;
}

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

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

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

/* ===========================================
*
* footer style
*
* ======================================== */
.footer {
  position: relative;
  background: url(../img/footer_illust_r.png) no-repeat bottom 40px center/min(400px, 100%) auto, var(--main-color);
}
.footer-inner {
  flex-direction: column;
  align-items: center;
  padding-block: 72px 56px;
}
.footer__logo {
  width: var(--logo-width);
  margin-bottom: 36px;
}
.footer-nav {
  width: 100%;
}
.footer-nav__list {
  gap: 1em 4%;
  margin: 0 auto;
  max-width: 360px;
}
.footer-nav__item {
  width: 48%;
}
.footer-nav__link {
  line-height: 1;
  font-size: 12px;
  padding-bottom: 0.75em;
  color: var(--white-color);
  --hov-color-to: var(--main-text-color, #5d8bbd);
  border-bottom: 1px solid var(--white-color);
}
.footer-nav__link:hover {
  border-color: var(--main-text-color);
}
.footer-nav__link.current {
  color: var(--main-text-color);
  border-color: var(--main-text-color);
}
.footer-info {
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.footer-info__box {
  max-width: 600px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  border-radius: var(--round-10);
  margin: 0 auto 30px;
  padding: 28px 5%;
  gap: 15px 20px;
}
.footer-info__address {
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--white-color);
  text-align: center;
}
.footer__copy {
  font-size: 10px;
  letter-spacing: var(--letter-spacing-base);
  width: 100%;
  display: block;
  text-align: center;
  line-height: 1.2;
  padding: 1em;
  color: var(--white-color);
  background-color: var(--main-color);
}/*# sourceMappingURL=style_sp.css.map */