@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: 16px;
  --font-size-18: 18px;
  --font-size-20: 20px;
  --font-size-22: 22px;
  --font-size-24: 24px;
  --font-size-25: 25px;
  --font-size-28: 28px;
  --font-size-30: 30px;
  --font-size-32: 32px;
  --font-size-35: 35px;
  --font-size-36: 36px;
  --font-size-38: 38px;
  --font-size-40: 40px;
  --font-size-45: 45px;
  /* 幅設定 */
  --min-contents-width: 1280px;
  --wide-inner-width: 1280px;
  --inner-width: 1080px;
  --full-width: 100%;
  --half-width: 50%;
  --third-width: 33.333%;
  --quarter-width: 25%;
  --w-600: 600px;
  --w-960: 960px;
  --w-500: 500px;
  --w-520: 520px;
  --w-470: 470px;
  --w-400: 400px;
  --w-300: 300px;
  /* border-radius */
  --round-5: 5px;
  --round-10: 10px;
  --round-20: 20px;
  --round-30: 30px;
  --round-full: 999em;
  /* 1080pxの外側 calc内で使用*/
  --inner-out: 50% - 540px;
  /* 1280pxの外側 calc内で使用*/
  --wide-inner-out: 50% - 640px;
  /* 1920pxの外側 calc内で使用*/
  --max-inner-out: 50% - 960px;
  /* logoの幅 */
  --logo-width: 223px;
  /* mapの高さ */
  --map-height: 400px;
  scroll-padding-top: 100px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tel {
  /* tel　style */
  /* ローカルスコープ変数 */
  --tel-font-size: 30px;
  --tel-txt-font-size: 0.625em;
  --tel-txt-space: 0.5em;
  --tel-letter-space: var(--letter-spacing-base, 0.05em);
  --tel-color: var(--main-text-color);
  --tel-icon-space: 1.1em;
  --tel-icon-position: 0.5em;
  --tel-icon-width: 0.8333333333em;
  --tel-icon-height: 0.8333333333em;
  font-family: var(--font-sub, sans-serif);
  font-weight: var(--font-weight-semibold, 700);
  letter-spacing: var(--tel-letter-space, 0.05);
  font-size: var(--tel-font-size, 28px);
  line-height: 1;
  position: relative;
}
.tel__txt {
  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_main.png) repeat center/contain;
}
.tel-icon--white::before {
  background: url(../img/icon_tel_white.png) repeat center/contain;
}

/*
 snsクラス
-------------------------*/
.sns {
  --sns-icon-space: 20px;
  /* ローカルスコープ変数 */
  --sns-icon-size: 30px;
  gap: var(--sns-icon-space);
}
.sns__icon {
  width: var(--sns-icon-size);
  transition: 0.3s;
}
.sns__icon:hover {
  opacity: 0.7;
}
.sns__icon img {
  width: 100%;
}

/* 
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 {
  --ttl-main-size: 1em;
  /* ローカルスコープ変数 */
  --ttl-sub-size: 0.55em;
  --ttl-sub-space: 0.4em;
  --ttl-color: var(--main-text-color);
  --ttl-sub-color: var(--main-text-color);
  --ttl-margin-bottom: 50px;
  font-size: var(--font-size-40);
  font-family: var(--font-sub);
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--ttl-margin-bottom);
  color: var(--ttl-main-color);
  display: flex;
  flex-direction: column;
  gap: var(--ttl-sub-space) 0;
}
.cmn-ttl--deco::before {
  content: "";
  display: block;
  width: 7.675em;
  height: 1.6em;
  background: url(../img/ttl_deco.png) no-repeat top center/contain;
  margin: 0 auto;
}
.cmn-ttl--deco-small::before {
  content: "";
  display: block;
  width: 1.825em;
  height: 1em;
  background: url(../img/ttl_deco_small.png) no-repeat top center/contain;
  margin: 0 auto;
}
.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);
  margin: -0.25em 0;
  letter-spacing: var(--letter-spacing-xs);
}
.cmn-ttl__main--deco-border {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
}
.cmn-ttl__main--deco-border::after {
  content: "";
  z-index: -1;
  height: 0.325em;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../img/repeat_border.png) repeat-x center/contain;
}
.cmn-ttl__main--deco-border > span {
  display: inline-block;
  padding-inline: 1.2em;
}
.cmn-ttl__sub {
  font-size: var(--ttl-sub-size);
  color: var(--ttl-sub-color);
  line-height: 1;
  margin: -0.25em 0;
  letter-spacing: var(--letter-spacing-xs);
}

.cmn-border-ttl {
  /* ローカルスコープ変数 */
  --ttl-color: var(--main-text-color);
  --ttl-border-color: var(--main-text-color);
  font-size: var(--font-size-30);
  font-family: var(--font-sub);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--letter-spacing-small);
  color: var(--ttl-main-color);
  padding-bottom: calc(20px - 0.25em);
  margin-top: -0.25em;
  border-bottom: 1px solid var(--ttl-border-color);
}

/* 
文章テキスト スタイル
-------------------------*/
.cmn-sentence {
  /* ローカルスコープ変数 */
  --sentence-line-height:1.7647058824em;
  --sentence-p-margin:1.7647058824em;
  font-size: 17px;
  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-round-size: var(--round-10);
  --img-border-color: var(--main-color);
}
.cmn-img img {
  width: 100%;
}
.cmn-img-round {
  border-radius: var(--img-round-size);
  overflow: hidden;
}
.cmn-img-round--tl-bl {
  --img-round: var(--img-round-size) 0 0 var(--img-round-size);
}
.cmn-img-border {
  border: 3px solid var(--img-border-color);
}

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

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

.wide-inner {
  max-width: var(--wide-inner-width);
  width: 94%;
  margin: 0 auto;
}

/* 
* flexを使用したカラムスタイルです
* flx-baseとセットで使用します
* col-container-PCcolumnNum-SPcolumnNum
-------------------------*/
.col-container-2-1 {
  --col-item-y-space: 40px;
  /* ローカルスコープ変数 */
  --col-item-x-space: 40px;
  /* PC2列　SP1列 */
  gap: var(--col-item-y-space, 40px) var(--col-item-x-space, 40px);
}
.col-container-2-1 > .col-item {
  width: calc((100% - var(--col-item-x-space, 40px)) / 2);
}

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

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

.col-container-4-2 {
  --col-item-y-space: 30px;
  /* ローカルスコープ変数 */
  --col-item-x-space: 20px;
  /* 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, 20px) * 3) / 4);
}

table {
  --table-replace-size: 14px;
  /* ローカルスコープ変数 */
  --table-replace-space: 1em;
}
table .replace-txt {
  height: var(--table-replace-size);
  margin-left: var(--table-replace-space);
  display: inline-block;
}

.main-table {
  --table-letter-space: var(--letter-spacing-regular);
  /* ローカルスコープ変数 */
  --table-main-color: var(--darken-main-color);
  --table-sub-color: var(--white-color);
  --table-th-font-weight: var(--font-weight-medium);
  --table-th-position: center;
  --table-th-x-padding: 1.5em;
  --table-th-y-padding: 0.7205882353em;
  --table-td-x-padding: 1.5em;
  --table-td-y-padding: 0.7205882353em;
  --table-cel-y-padding: 0.7205882353em;
  --table-cel-x-padding: 1.5em;
  --table-width: 100%;
  --table-th-width: 300px;
  --table-td-width: calc(100% - var(--table-th-width));
  width: var(--table-width);
  border-block: 1px solid var(--table-main-color, #ffe4e4);
  letter-spacing: var(--table-letter-spacing);
}
.main-table tr {
  width: 100%;
}
.main-table tr:not(:first-child) th {
  border-top: 1px solid var(--table-sub-color);
}
.main-table tr:not(:first-child) td {
  border-top: 1px solid var(--table-main-color);
}
.main-table th,
.main-table td {
  padding: var(--table-cel-y-padding) var(--table-cel-x-padding);
  vertical-align: middle;
}
.main-table th {
  width: var(--table-th-width);
  background-color: var(--table-main-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-padding-y: 0.8455882353em;
  --btn-padding-x: 1.5em;
  --btn-font-size: 17px;
  --btn-font-weight: var(--font-weight-bold, 700);
  --btn-font-letter-space: var(--letter-spacing-regular, 0.05em);
  --btn-weight-regular: 200px;
  --btn-weight-medium: 280px;
  --btn-weight-large: 300px;
  display: block;
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  line-height: 1.25;
  text-align: center;
  width: 100%;
}
.cmn-btn-solid {
  --btn-bgcolor: var(--main-color);
  --btn-color: var(--white-color, #fff);
  --btn-hov-blight: 20%;
  --btn-hov-bgcolor: var(--lighten-main-color);
  --btn-hov-color: var(--white-color, #fff);
  border-radius: var(--round-full);
  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-color: var(--main-text-color);
  --btn-hov-color: var(--white-color);
  --btn-bgcolor: var(--accent-color);
  --btn-hov-bgcolor: var(--darken-accent-color);
}
.cmn-btn-solid--primary.cmn-btn-arrow {
  --btn-arrow-bgcolor: #32b3d9;
}
.cmn-btn-solid--secondary {
  --btn-bgcolor: var(--main-color);
  --btn-hov-bgcolor: var(--darken-main-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.1397058824em;
  --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: 15px;
  --btn-arrow-color: var(--white-color);
  --btn-arrow-bgcolor: transparent;
  position: relative;
  z-index: 1;
}
.cmn-btn-arrow::after {
  content: "";
  transition: 0.3s;
  position: absolute;
  width: calc(var(--btn-arrow-width) * 0.2857);
  height: calc(var(--btn-arrow-height) * 0.5714285);
  top: 50%;
  right: calc(var(--btn-arrow-position) + var(--btn-arrow-width) * 0.2857 / 2);
  transform: translate(-75%, -50%);
  z-index: 1;
  background-color: var(--btn-arrow-color);
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%, 60% 50%);
          clip-path: polygon(0 0, 100% 50%, 0 100%, 60% 50%);
}
.cmn-btn-arrow::before {
  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%);
  z-index: -1;
  background-color: var(--btn-arrow-bgcolor);
  border-radius: 50%;
}
.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);
}
.cmn-btn--center {
  margin: 0 auto;
}
.cmn-btn--left {
  margin-right: auto;
}
.cmn-btn--right {
  margin-left: auto;
}

/*------------------------------
*
* pagenation style
*
------------------------------*/
.pagenation {
  --pagenation-margin-top: 64px;
  --pagenation-item-width: 3em;
  --pagenation-item-height: 3em;
  --pagenation-item-font-size: 1em;
  --pagenation-item-font-weight: var(--font-weight-medium);
  --pagenation-item-space: 6px;
  --pagenation-item-bg: var(--gray-color);
  --pagenation-item-color: var(--main-text-color);
  --pagenation-item-current-bg: var(--darken-accent-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;
}
.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 {
  /* パンくず設定 */
  --bread-letter-space: 0.08em;
  --bread-font-size: 15px;
  --bread-font-weight: var(--letter-spacing-regular, 0.05em);
  --bread-color: var(--main-text-color);
  /* gratere = 「>(大なり)」 */
  --bread-grater-color: var(--main-text-color);
  --bread-grater-content: "＞";
  --bread-grater-space: 0 1em;
  --bread-hov-color: var(--accent-color);
  --bread-link-color: var(--main-text-color);
  --bread-last-item-color: var(--main-text-color);
  --bread-padding: 1em 0 0;
  --bread-bg-color: var(--white-color, transparent);
  --bread-width: 100%;
  width: var(--bread-width, 100%);
  background-color: var(--bread-bg-color, transparent);
}
.bread-clumb--fixed {
  position: fixed;
  top: 0;
  left: 0;
}
.bread-clumb__list {
  display: flex;
  width: 100%;
  font-size: var(--bread-font-size, 14px);
  letter-spacing: var(--bread-letter-space, 0.05em);
  font-weight: var(--bread-font-weight, 400);
  overflow: hidden;
  padding: var(--bread-padding, 1em 0);
}
.bread-clumb__item {
  display: flex;
  align-items: center;
  color: var(--bread-color, #000000);
  white-space: nowrap;
}
.bread-clumb__item:not(:last-child)::after {
  content: var(--bread-grater-content, ">");
  margin: var(--bread-grater-space, 0.5em);
  color: var(--bread-grater-color, #ffe4e4);
}
.bread-clumb__item:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  color: var(--bread-last-item-color);
}
.bread-clumb__link {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all 0.3s;
  line-height: 1.2;
  color: var(--bread-link-color, #000000);
}
.bread-clumb__link:hover {
  opacity: 1;
  color: var(--bread-hov-color, #90d7ec);
}

/*------------------------------
*
* prev next style
*
------------------------------*/
.prev-next__area {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  line-height: 1.2;
  font-size: 16px;
  margin: 64px auto 0;
}
.prev-next__item.prev, .prev-next__item.next {
  width: 8em;
}
.prev-next__item:not(:last-child) {
  margin-right: 1.5em;
}
.prev-next__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 3em;
  color: #b3b3b3;
  background-color: var(--gray-color);
}
.prev-next__link:hover {
  background-color: var(--darken-accent-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(--main-color);
}
.header-inner {
  padding: 10px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  min-width: var(--min-contents-width);
  margin: 0 auto;
  width: 100%;
}
.header__logo {
  width: var(--logo-width);
}
.header-right {
  width: 740px;
}
.header-info {
  width: 100%;
}
.header-info__btn {
  margin-left: 30px;
}

/* ===========================================
*
* nav menu style
*
* ======================================== */
.nav-menu {
  width: 100%;
  background-color: var(--main-color);
  position: relative;
  z-index: 51;
}
.nav-menu__list {
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
}
.nav-menu__item {
  position: relative;
  width: 20%;
}
.nav-menu__item::after {
  content: "";
  width: 1px;
  height: 40px;
  background-color: var(--main-text-color);
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 1;
  transform: translateY(-50%);
}
.nav-menu__item:first-child::before {
  content: "";
  width: 1px;
  height: 40px;
  background-color: var(--main-text-color);
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  transform: translateY(-50%);
}
.nav-menu__link {
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  height: 70px;
  line-height: 1.375em;
}
.nav-menu__link:hover {
  background-color: var(--darken-main-color);
}
.nav-menu__link.current {
  background-color: var(--darken-main-color);
}

/* 
ドロップダウンメニュー
-------------------------*/
.nav-menu__item {
  /* ホバーした時ドロップダウンメニューを表示 */
}
.nav-menu__item.nav-menu__leveltarget .nav-menu__link {
  position: relative;
  z-index: 1;
}
.nav-menu__item.nav-menu__leveltarget .nav-menu__link::after {
  -webkit-clip-path: polygon(100% 0, 50% 100%, 0 0, 50% 60%);
          clip-path: polygon(100% 0, 50% 100%, 0 0, 50% 60%);
  background-color: var(--main-text-color);
  width: 9px;
  height: 5px;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
}
.nav-menu__item.nav-menu__leveltarget:hover .nav-menu__level {
  visibility: visible;
  opacity: 1;
}

.nav-menu__level {
  position: absolute;
  top: calc(100% - 5px);
  left: 0%;
  min-width: 215px;
  opacity: 0;
  z-index: 1;
  font-size: 15px;
  line-height: 1;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 1;
}
.nav-menu__level__item {
  position: relative;
  width: 100%;
}
.nav-menu__level__item:not(:last-child) {
  margin-bottom: 5px;
}
.nav-menu__level__item.nav-menu__leveltarget:hover .nav-menu__level-in {
  visibility: visible;
  opacity: 1;
}
.nav-menu__level__item > .nav-menu__level__link {
  width: 100%;
  position: relative;
  padding: 0.8333333333em 1em;
  line-height: 1;
}
.nav-menu__level__link {
  transition: all 0.3s;
  transition: 0.3s;
  background-color: #b9a499;
  color: var(--white-color);
  text-align: center;
  position: relative;
  z-index: 1;
}
.nav-menu__level__link::before {
  content: "";
  transition: 0.3s;
  position: absolute;
  width: 5px;
  height: 9px;
  top: 50%;
  left: 16px;
  transform: translate(0%, -50%);
  z-index: 1;
  background-color: var(--white-color);
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%, 60% 50%);
          clip-path: polygon(0 0, 100% 50%, 0 100%, 60% 50%);
}
.nav-menu__level__link:hover {
  background-color: var(--main-text-color);
}
.nav-menu__level__link:hover::before {
  transform: translate(25%, -50%);
}
.nav-menu__level__link.current {
  background-color: var(--main-text-color);
}

/* ===========================================
*
* main style  top page
*
* ======================================== */
/*------------------------------
*
* main visual
*
------------------------------*/
.main-visual {
  width: 100%;
  height: 31.5104166667vw;
  max-height: 605px;
  min-height: 500px;
  position: relative;
  z-index: 1;
  background-color: var(--main-color);
}
.main-visual-item__img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -53.475%);
  z-index: 10;
  height: 90.4132231405%;
  width: 1280px;
}

/* 
swiper
-------------------------*/
.main-visual__swiper.swiper {
  height: 100%;
  width: 100%;
}
.main-visual__swiper.swiper-slide {
  width: 100%;
  height: 100%;
}
.main-visual__swiper.swiper .swiper-slide-visible .main-visual-item__catch {
  visibility: visible !important;
}

.top-bg01 {
  padding-top: 70px;
  background-color: var(--main-color);
  position: relative;
  z-index: 1;
}
.top-bg01::after {
  content: "";
  width: 100%;
  height: 1087px;
  background: url(../img/top/greeting_bg.jpg) no-repeat top center/cover;
  left: 0;
  bottom: 0;
  position: absolute;
  z-index: -1;
}

/*------------------------------
*
* top-news
*
------------------------------*/
.top-news {
  position: relative;
  z-index: 1;
  padding: 50px 0;
}
.top-news::before {
  content: "";
  width: calc(1080px + 50% - 540px);
  background-color: #fff;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.top-news__ttl {
  --ttl-margin-bottom: 0;
}
.top-news__container {
  padding-right: 50px;
}
.top-news__head {
  margin-bottom: 30px;
}

.cmn-layout__img {
  width: 50%;
  position: relative;
  height: 400px;
  z-index: 1;
}
.cmn-layout__container {
  position: relative;
  z-index: 1;
}
.cmn-layout__sentence {
  width: 595px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  padding: 40px;
}
.cmn-layout:nth-child(odd) .cmn-layout__sentence {
  right: 0;
}
.cmn-layout:nth-child(even) .cmn-layout__sentence {
  left: 0;
}
.cmn-layout:nth-child(even) .cmn-layout__img {
  margin-left: auto;
}

.deco-border-box {
  color: var(--white-color);
  background: url(../img/repeat_border.png) repeat-x center top 10px/auto, url(../img/repeat_border.png) repeat-x center bottom 10px/auto, var(--main-text-color);
}

/*------------------------------
*
* top-greeting
*
------------------------------*/
.top-greeting__img {
  width: 50%;
  height: 450px;
}
.top-greeting__container {
  position: relative;
  z-index: 1;
}
.top-greeting__sentence {
  width: 55.9375%;
  min-width: 690px;
  padding: 60px 3.90625%;
}

.cmn-border-box {
  color: var(--white-color);
  background: url(../img/repeat_border.png) repeat-x center top 10px/auto, url(../img/repeat_border.png) repeat-x center bottom 10px/auto, var(--main-text-color);
}

.top-bg02 {
  position: relative;
  z-index: 1;
}
.top-bg02::after {
  content: "";
  height: calc(100% - 190px);
  width: 94.7916666667%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  background-color: var(--main-color);
}
.top-bg02::before {
  content: "";
  width: 301px;
  height: 200px;
  background: url(../img/top/pick_up_deco_r.png) no-repeat top center/contain;
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 5%;
  transform: translateY(30%);
}

/*------------------------------
*
* online-shop
*
------------------------------*/
.online-shop {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  border: 1px solid var(--main-text-color);
  padding: 50px;
  background: url(../img/top/shop_bg.png) no-repeat right center/contain, #fcede9;
}
.online-shop::after, .online-shop::before {
  content: "";
  position: absolute;
}
.online-shop::before {
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  border: 1px solid var(--main-text-color);
}
.online-shop::after {
  z-index: 1;
  width: 137px;
  height: 153px;
  background: url(../img/top/shop_deco_r.png) no-repeat top center/contain;
  bottom: 0;
  right: 0;
  transform: translate(15.3284671533%, 1.3071895425%);
}
.online-shop__ttl {
  letter-spacing: 0.04em;
  font-size: var(--font-size-40);
  color: var(--white-color);
  display: inline-block;
  margin-bottom: 20px;
}
.online-shop__ttl > span {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-block: 0.1875em;
  padding-right: 0.55em;
}
.online-shop__ttl > span::after {
  content: "";
  width: calc(100% + 45px);
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  background-color: var(--main-text-color);
}
.online-shop__ttl .small {
  font-size: 0.8em;
}
.online-shop__btn {
  margin-top: 20px;
}

/*------------------------------
*
* top-pickup
*
------------------------------*/
.top-pickup {
  padding-bottom: 210px;
}
.top-pickup__list {
  --col-item-x-space: 30px;
  --col-item-y-space: 30px;
}
.top-pickup-item {
  box-shadow: 10px 10px 0 #ffcece;
  padding: 30px 40px 40px;
}
.top-pickup-item:hover {
  box-shadow: none;
  transform: translate(10px, 10px);
}
.top-pickup-item__ttl {
  margin-bottom: 20px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.top-pickup-item__img {
  margin-bottom: 20px;
  height: 260px;
  width: 100%;
  position: relative;
  z-index: 10;
}
.top-pickup-item__price {
  line-height: 1;
  text-align: right;
  font-size: var(--font-size-22);
}
.top-pickup-item__content {
  margin-top: 20px;
  text-align: center;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.top-pickup__btn {
  margin-top: 60px;
}

/*------------------------------
*
* page-link
*
------------------------------*/
.page-link {
  padding-bottom: 0px;
  box-sizing: border-box;
}
.page-link-item {
  padding: 15px;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  --hov-color-to: var(--darken-accent-color);
}
.page-link-item__box {
  width: 100%;
  height: 490px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.page-link-item:hover .page-link-item__border--tl::after {
  transform: translateX(100%);
}
.page-link-item:hover .page-link-item__border--tl::before {
  transform: translateY(-100%);
}
.page-link-item:hover .page-link-item__border--br::after {
  transform: translateX(-100%);
}
.page-link-item:hover .page-link-item__border--br::before {
  transform: translateY(100%);
}
.page-link-item:hover .page-link-item__border--tr::after, .page-link-item:hover .page-link-item__border--tr::before,
.page-link-item:hover .page-link-item__border--bl::after,
.page-link-item:hover .page-link-item__border--bl::before {
  transform: translate(0%);
}
.page-link-item:hover .page-link-item__en {
  color: var(--main-text-color);
}
.page-link-item:hover .page-link-item__en--bl > span {
  transform: translateX(-100%);
}
.page-link-item:hover .page-link-item__en--br > span {
  transform: translateX(0%);
}
.page-link-item__img {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}
.page-link-item__en {
  font-size: var(--font-size-20);
  position: absolute;
  z-index: 2;
  overflow: hidden;
  line-height: 1;
}
.page-link-item__en > span {
  display: inline-block;
  transition: 0.3s;
}
.page-link-item__en--bl {
  bottom: 20px;
  left: 20px;
  transform: rotate(-90deg) translate(-1em, 0%);
  transform-origin: top left;
}
.page-link-item__en--br {
  bottom: 20px;
  right: 20px;
  transform: rotate(90deg) translate(0%, 1em);
  transform-origin: bottom right;
}
.page-link-item__en--br > span {
  transform: translateX(-100%);
}
.page-link-item__border {
  width: 245px;
  height: 245px;
  position: absolute;
  overflow: hidden;
}
.page-link-item__border::after, .page-link-item__border::before {
  content: "";
  position: absolute;
  transition: 0.3s;
  z-index: 1;
  background-color: var(--main-text-color);
}
.page-link-item__border::after {
  width: 100%;
  height: 1px;
}
.page-link-item__border::before {
  width: 1px;
  height: 100%;
}
.page-link-item__border--tl {
  top: 0px;
  left: 0px;
}
.page-link-item__border--tl::before {
  top: 0;
  left: 0;
}
.page-link-item__border--tl::after {
  top: 0;
  left: 0;
}
.page-link-item__border--tr {
  top: 0px;
  right: 0px;
}
.page-link-item__border--tr::before {
  top: 0;
  right: 0;
  transform: translateY(-100%);
}
.page-link-item__border--tr::after {
  top: 0;
  right: 0;
  transform: translateX(-100%);
}
.page-link-item__border--bl {
  bottom: 0px;
  left: 0px;
}
.page-link-item__border--bl::before {
  bottom: 0;
  left: 0;
  transform: translateY(100%);
}
.page-link-item__border--bl::after {
  bottom: 0;
  left: 0;
  transform: translateX(100%);
}
.page-link-item__border--br {
  bottom: 0px;
  right: 0px;
}
.page-link-item__border--br::before {
  bottom: 0;
  right: 0;
}
.page-link-item__border--br::after {
  bottom: 0;
  left: 0;
}
.page-link-item__ttl {
  font-size: var(--font-size-38);
  position: absolute;
  justify-content: center;
  top: 50%;
  left: 50%;
  z-index: 5;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 200px;
  line-height: 1.18;
  gap: 0.5263157895em;
  background-color: rgba(var(--white-color-rgb), 0.95);
}
.page-link-item__ttl::before {
  position: absolute;
  z-index: 1;
  content: "";
  width: 1.9473684211em;
  height: 1.8421052632em;
  background: url(../img/top/link_deco.png) no-repeat top center/contain;
  top: 0;
  left: 0;
  transform: translate(-20.2702702703%, 14.2857142857%);
}
.page-link-item__ttl__sub {
  font-size: 0.7368421053em;
  margin-bottom: -0.09em;
}
.page-link-item__ttl__main {
  margin-top: -0.09em;
}
.page-link-item__ttl__arrow {
  width: 0.7894736842em;
  height: 0.7894736842em;
  background-color: var(--accent-color);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  border-radius: 50%;
  display: inline-block;
}
.page-link-item__ttl__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 23.3333333333%;
  height: 43.3333333333%;
  z-index: 10;
  background-color: var(--white-color);
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%, 60% 50%);
          clip-path: polygon(0 0, 100% 50%, 0 100%, 60% 50%);
}

/*------------------------------
*
* top-products
*
------------------------------*/
.top-products {
  position: relative;
  z-index: 5;
}
.top-products__container {
  --col-item-x-space: 60px;
  --col-item-y-space: 70px;
}
.top-products-item {
  position: relative;
  z-index: 1;
  height: 180px;
  overflow: inherit;
}
.top-products-item:hover .top-products-item__ttl {
  background-color: var(--lighten-accent-color);
}
.top-products-item__img {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.top-products-item__ttl {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  border: 5px solid var(--white-color);
  background-color: var(--main-color);
  transform: translate(4.7619047619%, 33.3333333333%);
  width: 210px;
  height: 90px;
  font-size: var(--font-size-24);
  gap: 0.5em;
  transition: 0.3s;
}
.top-products-item__ttl__sub {
  font-size: 0.7083333333em;
  margin-bottom: -0.25em;
}
.top-products-item__ttl__main {
  margin-top: -0.25em;
}
.top-products-item__ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(0%, -50%);
  width: 0.2083333333em;
  height: 0.4166666667em;
  z-index: 10;
  background-color: var(--main-text-color);
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%, 60% 50%);
          clip-path: polygon(0 0, 100% 50%, 0 100%, 60% 50%);
}

/*------------------------------
*
* top-message
*
------------------------------*/
.top-message {
  background: url(../img/top/message_bg.jpg) no-repeat top center/cover;
  position: relative;
  z-index: 1;
}
.top-message::before {
  content: "";
  width: 277px;
  height: 217px;
  position: absolute;
  top: 0;
  left: 7.5%;
  z-index: -1;
  transform: translateY(-36.866359447%);
  background: url(../img/top/message_deco_t.png) no-repeat top center/contain;
}
.top-message__sentence {
  width: 550px;
  color: var(--white-color);
  --sentence-line-height: 1.8823529412em;
  background: url(../img/repeat_border.png) repeat-x center top 10px/auto, url(../img/repeat_border.png) repeat-x center bottom 10px/auto, var(--main-text-color);
  text-align: center;
  padding: 60px 40px;
}
.top-message__sentence .big {
  font-size: 1.1764705882em;
}
.top-message__btn {
  margin-top: 50px;
  max-width: 280px;
}

/* ===========================================
*
* under page  
*
* ======================================== */
/*------------------------------
*
* main style sub visual
*
------------------------------*/
.sub-visual {
  width: 100%;
  position: relative;
  z-index: 1;
  height: 400px;
  box-sizing: border-box;
  overflow: hidden;
  background-color: var(--main-color);
}
.sub-visual__img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 96.875%;
  height: 100%;
}
.sub-visual__catch {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  width: 10.8888888889em;
  height: 5.5555555556em;
  display: grid;
  place-content: center;
  font-family: var(--font-sub);
  letter-spacing: var(--letter-spacing-small);
  font-size: var(--font-size-40);
  background: url(../img/sv_catch_bg.png) no-repeat top center/contain;
}

/* ===========================================
*
* main style concept-page
*
* ======================================== */
.concept-antique {
  background: url(../img/concept/concept_bg02.jpg) no-repeat center/cover;
}

.concept-wood {
  background: url(../img/concept/concept_bg04.jpg) no-repeat center/cover;
}

/* ===========================================
*
* main style purchase-page
*
* ======================================== */
.purchase-page .bread-clumb {
  background-color: var(--main-color);
}

/*------------------------------
*
* flow
*
------------------------------*/
.flow {
  background-color: var(--main-color);
  position: relative;
  z-index: 1;
}
.flow::after, .flow::before {
  content: "";
  position: absolute;
  z-index: -1;
}
.flow::before {
  width: 251px;
  height: 197px;
  background: url(../img/purchase/flow_deco_t.png) no-repeat top center/contain;
  top: 30px;
  left: calc(50% - 640px);
}
.flow::after {
  content: "";
  width: 301px;
  height: 200px;
  background: url(../img/purchase/flow_deco_b.png) no-repeat top center/contain;
  right: max(30px, 50% - 840px);
  bottom: 0;
  transform: translateY(50%);
}
.flow__list {
  --col-item-y-space: 40px;
}
.flow-item {
  background-color: var(--white-color);
  padding: 47px 23px 30px;
  position: relative;
  z-index: 1;
}
.flow-item__num {
  font-family: var(--font-sub);
  font-size: var(--font-size-40);
  line-height: 1;
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%) skew(-8deg);
}
.flow-item__ttl {
  font-size: var(--font-size-28);
  text-align: center;
  line-height: 1.25;
  letter-spacing: var(--letter-spacing-small);
  display: grid;
  place-content: center;
  margin-bottom: 20px;
}
.flow-item__content {
  text-align: center;
}
.flow-item:not(:last-child)::after {
  content: "";
  width: 22px;
  height: 25px;
  background-color: var(--accent-color);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(100%, -50%);
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
          clip-path: polygon(100% 50%, 0 0, 0 100%);
}
.flow-item:nth-child(1) .flow-item__ttl, .flow-item:nth-child(2) .flow-item__ttl, .flow-item:nth-child(3) .flow-item__ttl {
  min-height: 3em;
}

/*------------------------------
*
* qa よくあるご質問
*
------------------------------*/
.qa {
  position: relative;
  z-index: 1;
}
.qa-list__item {
  padding: 40px;
  border: 1px solid var(--main-text-color);
}
.qa-list__item:not(:last-child) {
  margin-bottom: 30px;
}
.qa-list__item .question__mark, .qa-list__item .answer__mark {
  width: 1.6666666667em;
  height: 1.6666666667em;
  line-height: 1.6666666667em;
  font-size: var(--font-size-30);
  outline: 1px solid var(--main-text-color);
  outline-offset: -5px;
  font-family: var(--font-sub);
  box-sizing: border-box;
  text-align: center;
}
.qa-list__item .question__content {
  box-sizing: border-box;
  font-size: var(--font-size-35);
  letter-spacing: var(--letter-spacing-xs);
  font-family: var(--font-sub);
  font-weight: var(--font-weight-semibold);
  line-height: 1.4285714286em;
  width: calc(100% - 70px);
}
.qa-list__item .answer {
  margin-top: 30px;
}
.qa-list__item .answer__btn {
  margin-top: 20px;
  max-width: unset;
  display: inline-block;
  width: auto;
  padding-inline: 50px;
}
.qa-list__item .answer__box {
  width: calc(100% - 70px);
}

/* ===========================================
*
* main style table page
* main style chair page
* main style carpet page
* main style lamp page
* main style others page
* main style goods page
*
* ======================================== */
/*------------------------------
*
* product
*
------------------------------*/
.product-contents:not(:last-child) {
  margin-bottom: 100px;
}
.product-contents__ttl {
  margin-bottom: 30px;
  text-align: center;
}
.product-contents__price {
  line-height: 1;
  margin-bottom: 30px;
  font-size: var(--font-size-30);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-small);
  font-family: var(--font-sub);
}
.product-contents__sentence {
  text-align: center;
}
.product-contents__tax {
  margin-top: 30px;
  font-size: 15px;
}
.product-contents__gallery {
  max-width: 910px;
  margin: 50px auto 0;
  align-items: flex-start;
  --col-item-x-space: 10px;
  --col-item-y-space: 10px;
}
.product-contents__thumb, .product-contents__img {
  aspect-ratio: 1/1;
  border: 1px solid #d3d3d3;
}
.product-contents__thumb > img, .product-contents__img > img {
  z-index: 1;
}
.product-contents__list {
  --col-item-x-space: 10px;
  --col-item-y-space: 10px;
}
.product-contents__btn {
  margin-top: 40px;
  text-align: center;
}
.product-contents__btn > .cmn-btn {
  max-width: unset;
  display: inline-block;
  width: auto;
  padding-inline: 70px;
}

/* ===========================================
*
* main style message page
*
* ======================================== */
/*------------------------------
*
* message
*
------------------------------*/
.message {
  position: relative;
  z-index: 1;
}
.message::after, .message::before {
  content: "";
  position: absolute;
  z-index: -1;
}
.message::before {
  background: url(../img/message/message_deco_l.png) no-repeat top center/contain;
  left: max(30px, 50% - 640px);
  bottom: 325px;
  width: 246px;
  height: 192px;
}
.message::after {
  background: url(../img/message/message_deco_r.png) no-repeat top center/contain;
  right: max(30px, 50% - 640px);
  width: 301px;
  height: 200px;
  top: 150px;
}
.message__img {
  width: 540px;
  margin: 0 auto 50px;
}
.message__sentence {
  text-align: center;
}

.recruit {
  background-color: var(--main-color);
}
.recruit-item__ttl {
  font-size: var(--font-size-30);
  letter-spacing: var(--letter-spacing-small);
  font-family: var(--font-sub);
  padding-left: 20px;
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
}
.recruit-item__ttl::before {
  content: "";
  height: 1em;
  width: 4px;
  background-color: var(--main-text-color);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.recruit-item:not(:last-child) {
  margin-bottom: 50px;
}
.recruit-item__dl {
  width: 100%;
}
.recruit-item__dl__item {
  font-size: 17px;
  letter-spacing: var(--letter-spacing-regular);
  line-height: 1.765;
}
.recruit-item__dl__item:not(:last-child) {
  margin-bottom: 10px;
}
.recruit-item__dl__item dt,
.recruit-item__dl__item dd {
  padding: 0.8822058824em 28px;
}
.recruit-item__dl__item dt {
  width: 240px;
  background-color: var(--main-text-color);
  color: var(--white-color);
  display: grid;
  place-content: center;
}
.recruit-item__dl__item dd {
  width: calc(100% - 250px);
  background-color: var(--white-color);
  color: var(--main-text-color);
}

/*------------------------------
* 
* news,blog
* 
------------------------------*/
.cmn-post {
  --post-width: 100%;
  --post-item-marign: 27px;
  --post-item-flex-marign-space: 12px;
  --post-ttl-width: calc(100% - 102px);
  --post-title-line: 1;
  --post-title-font-size: 15px;
  --post-date-font-size: 16px;
  width: var(--post-width);
}
.cmn-post-item {
  width: 100%;
}
.cmn-post-item:not(:last-child) {
  margin-bottom: var(--post-item-marign, 15px);
}
.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__tag-wrapper {
  width: 100%;
  margin-bottom: var(--post-item-flex-marign-space, 12px);
}
.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: var(--post-ttl-width, auto);
  font-size: var(--post-title-font-size, 16px);
}

/*---------- detail ここから ----------*/
.tag {
  --tag-font-size: 15px;
  --tag-letter-space: var(--letter-spacing-base);
  --tag-height: 30px;
  --tag-x-padding: 10px;
  --tag-color: var(--main-text-color);
  --tag-bg-color: var(--main-color);
  display: inline-block;
  font-size: var(--tag-font-size);
  letter-spacing: var(--tag-letter-space);
  color: var(--tag-color);
  background-color: var(--tag-bg-color);
  line-height: var(--tag-height);
  padding: 0 var(--tag-x-padding);
}
.tag-btn-wrapper {
  margin-bottom: 30px;
  gap: 10px;
}
.tag__btn {
  --tag-btn-color: #b3b3b3;
  --tag-btn-bg-color: var(--gray-color);
  --tag-btn-current-color: var(--white-color);
  --tag-btn-current-bg-color: var(--darken-accent-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: 8px 10px;
  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;
  width: 100%;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.post-detail__ttl {
  order: 3;
  width: 100%;
  font-size: var(--font-size-24);
  border-left: 5px solid #ffe4e4;
  font-weight: 700;
  padding-left: 0.75em;
  margin-bottom: 32px;
}
.post-detail__img {
  margin: 0 auto;
  width: 100%;
  margin-bottom: 32px;
}

/*------------------------------
* 
* sitemap
* 
------------------------------*/
.sitemap-list {
  max-width: 600px;
  margin: 0 auto;
}
.sitemap-list__item:not(:last-child) {
  margin-bottom: 5px;
}
.sitemap-list__link {
  width: 100%;
  padding: 0.8em 1em;
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid 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;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s;
}
.sitemap-list__link:hover {
  border-color: var(--main-text-color);
}
.sitemap-list__link:hover::after {
  right: 1em;
  border-color: var(--main-text-color);
}

/*------------------------------
* 
* privacy
* 
------------------------------*/
.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(--main-color);
  padding-left: 0.75em;
}

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

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

/* floating
-------------------------*/
.floating {
  position: fixed;
  right: 10px;
  bottom: 20px;
  width: 228px;
  z-index: 81;
}

/* ===========================================
*
* footer style
*
* ======================================== */
.footer {
  position: relative;
  background: url(../img/footer_bg.jpg) no-repeat bottom center/cover;
}
.footer-inner {
  padding-block: 50px;
}
.footer__logo {
  margin-bottom: 50px;
}
.footer-nav__list {
  gap: 1.6666666667em 1em;
  padding: 20px 0;
  border-block: 1px solid var(--white-color);
}
.footer-nav__link {
  font-size: 17px;
  line-height: 1;
  color: var(--white-color);
}
.footer__copy {
  font-size: 15px;
  letter-spacing: var(--letter-spacing-base);
  width: 100%;
  display: block;
  text-align: center;
  padding: 0.9166666667em 0.5em;
  color: var(--white-color);
  background-color: var(--main-text-color);
}/*# sourceMappingURL=style.css.map */