@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-24: 24px;
  --font-size-25: 25px;
  --font-size-26: 26px;
  --font-size-27: 27px;
  --font-size-28: 28px;
  --font-size-30: 30px;
  --font-size-32: 32px;
  --font-size-36: 36px;
  --font-size-40: 40px;
  /* 幅設定 */
  --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: 280px;
  /* mapの高さ */
  --map-height: 500px;
}

/* ===========================================
*  
*  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: var(--font-size-20);
  --tel-txt-font-size: 0.7em;
  --tel-txt-space: 0;
  --tel-letter-space: var(--letter-spacing-base, 0.05em);
  --tel-color: var(--main-black-color, #222222);
  font-family: var(--font-sub, sans-serif);
  font-weight: var(--font-weight-bold, 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;
}

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

/* arrow 矢印　*/
.arrow {
  --arrow-width: 22px;
  --arrow-height: 7px;
  --arrow-color: var(--main-text-color);
  position: relative;
  z-index: 1;
  width: var(--arrow-width);
  height: var(--arrow-height);
  display: block;
  transition: 0.3s;
}

.arrow::before,
.arrow::after {
  content: "";
  height: 1px;
  background-color: var(--arrow-color);
  display: block;
  position: absolute;
}

.arrow::before {
  width: 100%;
  bottom: 0;
  left: 0;
}

.arrow::after {
  width: 40.9090909091%;
  right: 0;
  bottom: 0%;
  transform-origin: bottom right;
  transform: translateX(0%) rotate(36deg);
}

.arrow--white {
  --arrow-color: var(--white-color);
}

/*------------------------------
*
* cmn-btn style
*
------------------------------*/
.cmn-btn {
  --btn-padding-y: 1.5588235294em;
  --btn-padding-x: 1em;
  --btn-font-size: 17px;
  --btn-font-wight: var(--font-weight-bold, 700);
  --btn-font-letter-space: var(--letter-spacing-base, 0.05em);
  --btn-weight-regular: 360px;
  --btn-weight-medium: 400px;
  --btn-weight-large: 480px;
  display: block;
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-wight);
  font-family: var(--font-sub);
  line-height: 1;
  text-align: center;
  width: 100%;
}

.cmn-btn--rg {
  max-width: var(--btn-weight-regular);
  padding-block: var(--btn-padding-y);
  padding-inline: var(--btn-padding-x);
}

.cmn-btn--md {
  max-width: var(--btn-weight-medium);
  padding-block: var(--btn-padding-y);
  padding-inline: var(--btn-padding-x);
}

.cmn-btn--lg {
  max-width: var(--btn-weight-large);
  padding-block: var(--btn-padding-y);
  padding-inline: var(--btn-padding-x);
  --btn-arrow-position: 110px;
}

.cmn-btn-solid {
  --btn-bgcolor: var(--main-color, #378b46);
  --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(--main-color, #378b46);
  --btn-hov-bgcolor: var(--accent-color);
  --btn-hov-color: var(--main-text-color, #fff);
}

.cmn-btn-solid--primary:hover .arrow {
  --arrow-color: var(--main-text-color);
}

.cmn-btn-solid--secondary {
  --btn-bgcolor: var(--accent-color);
  --btn-color: var(--main-text-color, #fff);
  --btn-hov-bgcolor: var(--main-color);
  --btn-hov-color: var(--white-color, #fff);
}

.cmn-btn-solid--secondary:hover .arrow {
  --arrow-color: var(--main-white-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.8529411765em;
  --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-position: 30px;
  --btn-padding-x: 30px 60px;
  text-align: left;
  position: relative;
  z-index: 1;
}

.cmn-btn-arrow .arrow {
  position: absolute;
  top: 50%;
  right: var(--btn-arrow-position);
  transition: 0.3s;
  transform: translateY(-50%);
}

.cmn-btn-arrow:hover .arrow {
  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--center {
  margin: 0 auto;
}

.cmn-btn--left {
  margin-right: auto;
}

.cmn-btn--right {
  margin-left: auto;
}

/* 
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.5em;
  --ttl-en-size: 0.5em;
  --ttl-gutter: 0.25em;
  --ttl-bgcolor: var(--main-color);
  --ttl-main-color: var(--main-text-color);
  --ttl-sub-color: var(--main-text-color);
  --ttl-en-color: var(--main-text-color);
  --ttl-margin-bottom: 60px;
  font-size: var(--font-size-40);
  font-family: var(--font-sub);
  margin-bottom: var(--ttl-margin-bottom);
  color: var(--ttl-main-color);
  gap: var(--ttl-gutter);
  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-base);
}

.cmn-ttl__main-solid {
  background-color: var(--ttl-bgcolor);
  padding-inline: 0.4em;
}

.cmn-ttl__sub {
  font-size: var(--ttl-sub-size);
  color: var(--ttl-sub-color);
  letter-spacing: var(--letter-spacing-base);
}

.cmn-ttl__sub--border {
  padding: 0.3em 1em;
  border-block: 1px solid var(--ttl-sub-color);
}

.cmn-ttl__sub-solid {
  background-color: var(--ttl-bgcolor);
  line-height: 2;
  padding-inline: 0.6em;
  display: inline-block;
}

.cmn-ttl__en {
  font-size: var(--ttl-en-size);
  color: var(--ttl-en-color);
}

.cmn-border-ttl {
  --ttl-border-color: rgba(var(--black-color-rgb), 0.3);
  /* ローカルスコープ変数 */
  font-size: var(--font-size-20);
  font-family: var(--font-sub);
  font-kerning: var(--font-weight-medium);
  padding-bottom: 5px;
  letter-spacing: var(--letter-spacing-base);
  border-bottom: 1px solid var(--ttl-border-color);
}

.cmn-border-ttl__main {
  display: inline-block;
  padding-left: 1.25em;
  position: relative;
  z-index: 1;
}

.cmn-border-ttl__main::before {
  position: absolute;
  content: "";
  top: 0.75em;
  left: 0;
  transform: translateY(-50%);
  width: 1em;
  height: 0.9em;
  background: url(../img/icon_chekc.png) no-repeat top center/contain;
}

/* 
文章テキスト スタイル
-------------------------*/
.cmn-sentence {
  /* ローカルスコープ変数 */
  --sentence-line-height: 1.647;
  --sentence-p-margin: 1.647em;
  --sentence-font-size: 17px;
  letter-spacing: var(--letter-spacing-base);
  font-size: var(--sentence-font-size);
  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-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 {
  scroll-margin-top: 94px;
  padding: 100px 0;
}

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

.wide-inner {
  max-width: var(--wide-inner-width);
  width: 90%;
  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-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-2>.col-item {
  width: calc((100% - var(--col-item-x-space, 30px) * 2) / 3);
}

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

.col-container-3-1>.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-th-position: left;
  --table-th-x-padding: 20px;
  --table-th-y-padding: 0.8270588235em;
  --table-td-x-padding: 20px;
  --table-td-y-padding: 0.8270588235em;
  --table-cel-y-padding: 0.8270588235em;
  --table-cel-x-padding: 20px;
  --table-width: 100%;
  --table-th-width: 160px;
  --table-td-width: calc(100% - var(--table-th-width));
  width: var(--table-width);
  font-size: 17px;
  letter-spacing: var(--letter-spacing-base);
}

.main-table tr {
  width: 100%;
}

.main-table tr:not(:first-child) th {
  border-top: 1px solid var(--white-color);
}

.main-table tr:not(:first-child) td {
  border-top: 1px solid rgba(var(--main-text-color-rgb), 0.3);
}

.main-table th,
.main-table td {
  padding: var(--table-cel-y-padding) var(--table-cel-x-padding);
  vertical-align: middle;
  line-height: 1.64em;
}

.main-table th {
  width: var(--table-th-width);
  color: var(--white-color);
  text-align: var(--table-th-position);
  background-image: linear-gradient(-90deg, rgb(55, 139, 70) 0%, rgb(46, 116, 58) 100%);
}

.main-table td {
  width: var(--table-td-width);
  background: var(--theme-color);
}

/* チェックアイコン付きリスト */
.check-list {
  width: 100%;
}

.check-list__item {
  position: relative;
  z-index: 1;
  font-size: 17px;
  font-weight: var(--font-weight-regular);
  padding-left: 1.4117647059em;
}

.check-list__item:not(:last-child) {
  margin-bottom: 5px;
}

.check-list__item::after {
  content: "";
  width: 0.9411764706em;
  height: 0.8235294118em;
  background: url(../img/icon_check_main.png) no-repeat top center/contain;
  position: absolute;
  top: 0.75em;
  left: 0;
  transform: translate(0, -50%);
}

/*------------------------------
*
* pagenation style
*
------------------------------*/
.pagenation {
  --pagenation-margin-top: 60px;
  --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(--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;
}

.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: var(--letter-spacing-base);
  --bread-font-size: 14px;
  --bread-font-weight: var(--font-weight-regular, 0.05em);
  --bread-color: var(--main-text-color, #000000);
  /* gratere = 「>(大なり)」 */
  --bread-grater-color: var(--main-text-color, #000000);
  --bread-grater-content: ">";
  --bread-grater-space: 0 0.5em;
  --bread-hov-color: var(--main-color, #ebcd25);
  --bread-link-color: var(--main-text-color, #ebcd25);
  --bread-last-item-color: var(--main-color, #ebcd25);
  --bread-padding: 1.5em 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__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, #378b46);
}

.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, #ebcd25);
}

/*------------------------------
*
* prev next style
*
------------------------------*/
.prev-next__area {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  line-height: 1.2;
  font-size: 16px;
  margin: 60px 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);
  padding: 0.75em 1em;
}

.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;
  text-align: center;
}

.prev-next__link.back {
  text-align: center;
  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);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  border-top: 4px solid var(--main-color);
}

.header-inner {
  padding: 10px 110px 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%;
  height: 90px;
}

.header-right {
  width: 740px;
}

.header-info {
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

.header-nav {
  margin-top: 12px;
  width: 100%;
}

.header-nav__list {
  justify-content: flex-end;
  align-items: center;
  margin-left: auto;
}

.header-nav__item {
  position: relative;
}

.header-nav__item:not(:last-child) {
  border-right: 1px solid var(--main-text-color);
}

.header-nav__item:last-child .header-nav__link {
  padding-right: 0;
}

.header-nav__item:first-child .header-nav__link {
  padding-left: 0;
}

.header-nav__link {
  position: relative;
  text-align: center;
  transition: all 0.3s;
  font-size: 17px;
  line-height: 1;
  font-weight: var(--font-weight-bold);
  font-family: var(--font-sub);
  letter-spacing: var(--letter-spacing-base);
  padding-inline: 14px;
}

.header-nav__link:hover {
  color: var(--main-color);
  opacity: 1;
}

.header-nav__link.current {
  color: var(--main-color);
}

/* ===========================================
*
* main style  top page
*
* ======================================== */
/*------------------------------
*
* main visual
*
------------------------------*/
.main-visual {
  width: 100%;
  height: clamp(533px, 41.6666666667vw, 800px);
  position: relative;
  z-index: 1;
}

/* .main-visual>iframe, */
.main-visual>video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  object-fit: cover;

}

.main-visual__catch {
  width: min(993px, 51.71875%);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 20;
}

.main-visual::before {
  content: "";
  width: min(470px, 24.4791666667%);
  height: 72.625%;
  position: absolute;
  z-index: 10;
  left: 0;
  top: 0;
  background: url(../img/top/mvdeco_r.png) no-repeat top center/contain;
}

/*------------------------------
*
* top-deliver ご自宅やジムにマシンを設置
*
------------------------------*/
.top-deliver {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 100px;
  padding-top: 90px;
}

.top-deliver__ttl {
  --ttl-main-color: var(--white-color);
  --ttl-sub-color: var(--white-color);
}

.top-deliver::after {
  content: "";
  width: calc(1280px + 50% - 640px);
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: -1;
  background: url(../img/top/set_bg.jpg) no-repeat top center/cover;
}

.top-deliver__illust {
  content: "";
  width: 11.8229166667%;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: calc(50% - 540px);
  transform: translateX(-116.2995594714%);
}

.top-deliver__container {
  position: relative;
  z-index: 1;
  padding-left: 100px;
}

.top-deliver__box {
  width: 500px;
}

.top-deliver__btn {
  margin-top: 40px;
  border: 1px solid var(--white-color);
}

.top-deliver__img {
  width: 780px;
  top: 0;
  left: 50%;
  position: absolute;
  z-index: 1;
}

@media screen and (max-width: 1440px) {
  .top-deliver__illust {
    transform: translateX(-105.7268722467%);
    left: 12%;
  }
}

/*------------------------------
*
* top-machine 5コンパウンドの業務用マシン!
*
------------------------------*/
.top-machine {
  position: relative;
  z-index: 1;
  margin-top: 100px;
  background-color: var(--theme-color);
}

.top-machine::after,
.top-machine::before {
  content: "";
  position: absolute;
  z-index: -1;
}

.top-machine .wide-inner {
  width: 95%;
}

.top-machine__ttl {
  --ttl-gutter: 0.25em;
  --ttl-main-color: var(--white-color);
  --ttl-sub-color: var(--white-color);
  --ttl-margin-bottom: 55px;
}

.top-machine__sub-ttl {
  margin-bottom: 20px;
}

.top-machine::before {
  width: 33.9583333333%;
  height: 100%;
  top: -30px;
  left: 0;
  background: url(../img/top/machine_left.png) no-repeat left top/contain;
}

.top-machine::after {
  width: 24.9479166667%;
  max-width: 479px;
  height: 860px;
  bottom: 0;
  right: 0;
  background: url(../img/top/machine_right.png) no-repeat bottom right/contain;
}

.top-machine__right {
  margin-left: auto;
}

.top-machine__box {
  width: 540px;
  margin-left: auto;
}

.top-machine__container {
  position: relative;
  z-index: 1;
  padding-right: 100px;
}

.top-machine__img {
  width: 46.09375%;
  top: -55px;
  z-index: -1;
  position: absolute;
  left: 0;
}

.top-machine__btn {
  margin-top: 40px;
}

@media screen and (max-width: 1560px) {
  .top-machine::after {
    width: 23.3766233766%;
  }
}

/*------------------------------
*
* top-contact 各種お問い合わせはこちら
*
------------------------------*/
.top-contact__ttl {
  --ttl-main-color: var(--white-color);
  --ttl-en-color: var(--white-color);
  --ttl-sub-color: var(--white-color);
  --ttl-margin-bottom: 0;
  --ttl-gutter: 0;
}

.top-contact__ttl .cmn-ttl__en {
  margin-bottom: 20px;
}

.top-contact__ttl .cmn-ttl__sub {
  margin-bottom: 5px;
}

.top-contact__container {
  max-width: 1600px;
  width: 90%;
  box-shadow: 0px 0px 30px 0px rgba(34, 34, 34, 0.3);
}

.top-contact__header {
  padding: 55px 5% 50px;
  position: relative;
  z-index: 1;
  background-color: #338040;
}

.top-contact__header::after {
  content: "";
  width: 995px;
  height: 220px;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 50%;
  transform: translateX(-47.3%);
  background: url(../img/top/contact_illust_l.png) no-repeat bottom left/auto, url(../img/top/contact_illust_r.png) no-repeat bottom right/auto;
}

.top-contact__header__border {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 1px;
  height: 40px;
  display: block;
}

.top-contact__header__border::after,
.top-contact__header__border::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 50%;
  display: block;
  z-index: 1;
  left: 0;
}

.top-contact__header__border::before {
  background-color: #338040;
  top: 0;
}

.top-contact__header__border::after {
  background-color: var(--white-color);
  bottom: 0;
}

.top-contact__sentence {
  text-align: center;
}

.top-contact__box {
  padding: 60px 5%;
}

.top-contact__btns {
  margin-top: 40px;
  gap: 10px;
}

.top-contact__btn {
  max-width: 400px;
  width: calc((100% - 20px) / 3);
  text-align: center;
}

/*------------------------------
*
* top-other その他各種コンテンツはこちら
*
------------------------------*/
.top-other {
  padding-top: 0;
  position: relative;
  z-index: 1;
}

.top-other::before {
  content: "";
  width: 179px;
  height: 200px;
  right: 13.59375%;
  bottom: 630px;
  z-index: -1;
  position: absolute;
  background: url(../img/top/other_deco.png) no-repeat top center/contain;
}

.top-other::after {
  content: "";
  width: 100%;
  height: 690px;
  background: url(../img/top/other_bg.jpg) no-repeat top center/cover;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -2;
}

.top-other__ttl {
  --ttl-main-size: 0.5em;
  --ttl-gutter: 0.25em;
  --ttl-en-color: var(--main-color);
  padding-left: 0.5em;
  border-left: 1px solid var(--main-color);
}

.top-other__container {
  --col-item-x-space: 50px;
  --col-item-y-space: 50px;
}

.top-other-item {
  position: relative;
  z-index: 1;
  overflow: unset;
}

.top-other-item__ttl {
  position: absolute;
  z-index: 1;
  top: 34px;
  left: -21px;
  --ttl-en-color: var(--white-color);
  --ttl-main-color: var(--main-color);
  --ttl-bgcolor: var(--white-color);
  --ttl-en-size: 0.65em;
  --ttl-main-size: 0.75em;
  --ttl-gutter: 0.33em;
}

.top-other-item__ttl .cmn-ttl__main {
  padding-inline: 0.8em;
  line-height: 1.6666666667em;
}

.top-other-item__ttl .cmn-ttl__en {
  text-shadow: 0px 0px 9.6px rgba(34, 34, 34, 0.6);
}

.top-other-item__content {
  width: 100%;
  padding: 18px 32px;
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
  transform: translate(20px, 20px);
}

.top-other-item__img {
  width: 100%;
  height: 320px;
  z-index: 1;
}

.top-other-item__img::after {
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  position: absolute;
  inset: 0;
  background-color: var(--black-color);
  opacity: 0;
  transition: 0.3s;
}

.top-other-item:hover .top-other-item__img::after {
  opacity: 0.5;
}

/*------------------------------
*
* top-news 新着情報
*
------------------------------*/
.top-news {
  padding-bottom: 86px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.top-news::before,
.top-news::after {
  bottom: 86px;
  right: 0;
  content: "";
  position: absolute;
  height: calc(100% - 186px);
  max-width: calc(50% + 640px);
  width: 94%;
}

.top-news::after {
  background-color: #30793d;
  z-index: -2;
}

.top-news::before {
  border: 1px solid var(--theme-color);
  transform: translate(9px, 9px);
  z-index: -1;
}

.top-news__ttl {
  --ttl-en-color: var(--white-color);
  --ttl-main-color: var(--white-color);
  --ttl-main-size: 0.65em;
  --ttl-gutter: 0.225em;
  padding-left: 0.5em;
  border-left: 1px solid var(--white-color);
}

.top-news__container {
  padding-inline: 100px;
  align-items: flex-start;
}

.top-news__box {
  width: 37.037037037%;
  position: relative;
  z-index: 1;
}

.top-news__box::before {
  content: "";
  width: clamp(245px, 16.9791666667vw, 326px);
  height: clamp(323px, 22.3958333333vw, 430px);
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(-90.490797546%, 45%);
  background: url(../img/top/news_illust.png) no-repeat top center/contain;
}

.top-news__btn {
  border: 1px solid var(--white-color);
}

.top-news .cmn-post {
  width: 57.4074074074%;
  color: var(--white-color);
}

.top-news .cmn-post-item {
  border-bottom: 1px solid rgba(var(--white-color-rgb), 0.3);
}

.top-news .cmn-post__date {
  opacity: 0.6;
}

.top-news .cmn-post .tag {
  --tag-color: var(--white-color);
  --tag-border-color: var(--white-color);
}

/* ===========================================
*
* under page  
*
* ======================================== */
/*------------------------------
*
* main style sub visual
*
------------------------------*/
.sub-visual {
  width: 100%;
  position: relative;
  z-index: 1;
  height: 400px;
  box-sizing: border-box;
  overflow: hidden;
}

.sub-visual::after,
.sub-visual::before {
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
}

.sub-visual::before {
  width: min(420px, 21.875%);
  left: 0;
  background: url(../img/sv_deco_l.png) no-repeat top right/auto 100%;
}

.sub-visual::after {
  width: min(778px, 40.5208333333%);
  right: 0;
  background: url(../img/sv_deco_r.png) no-repeat top left/auto 100%;
}

.sub-visual__catch {
  position: absolute;
  top: calc(50% + 45px);
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  display: inline-block;
  font-size: var(--font-size-40);
  letter-spacing: var(--letter-spacing-regular);
}

.sub-visual__catch__main {
  width: 550px;
  font-size: 1em;
  padding: 0.5em 0;
  position: relative;
  z-index: 1;
  display: inline-block;
}

.sub-visual__catch__deco-left,
.sub-visual__catch__deco-right {
  --triangle-width: 2em;
}

.sub-visual__catch__deco-right {
  right: 1px;
  top: 0;
  transform: translateX(100%);
}

.sub-visual__catch__deco-left {
  left: 1px;
  top: 0;
  transform: translateX(-100%);
}

/* ===========================================
*
* main style firt page 初めての方へ
*
* ======================================== */
/*------------------------------
*
* business 事業内容
*
------------------------------*/
.business {
  position: relative;
  z-index: 1;
  margin-top: 100px;
}

.business__ttl {
  --ttl-en-color: var(--white-color);
  --ttl-main-color: var(--white-color);
}

.business::before,
.business::after {
  content: "";
  position: absolute;
}

.business::before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  background: url(../img/first/business_bg.png) no-repeat center/cover, #2e743b;
  max-width: 1280px;
  width: 94%;
  height: 100%;
}

.business::after {
  width: 155px;
  height: 214px;
  background: url(../img/deco_slash01.png) no-repeat top center/contain;
  top: 0;
  left: calc(50% - 540px);
  transform: translateY(-9.3457943925%);
  z-index: 1;
}

.business-item {
  align-items: center;
  justify-content: space-between;
}

.business-item__img {
  width: 50%;
}

.business-item__box {
  width: 50%;
}

.business-item__ttl {
  color: var(--white-color);
  --ttl-border-color: rgba(var(--white-color-rgb), 0.3);
  margin-bottom: 20px;
}

.business-item__ttl,
.business-item__content {
  padding-right: 40px;
}

.business-item__btn {
  margin-top: 30px;
}

.business-item--after {
  /* アフターサービスや部品交換にもご対応 のイラスト調整*/
  position: relative;
  z-index: 1;
}

.business-item--after .business-item__box {
  margin-left: auto;
}

.business-item--after .business-item__img {
  width: 308px;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 146px;
  transform: translateY(-50%);
}

.business-item:nth-child(even) {
  flex-direction: row-reverse;
  justify-content: space-between;
}

.business-item:not(:last-child) {
  margin-bottom: 50px;
}

/*------------------------------
*
* product メインの取り扱い製品
*
------------------------------*/
.product__ttl {
  --ttl-en-color: var(--main-color);
  --ttl-main-color: var(--main-color);
}

.product__list {
  --col-item-x-space: 30px;
  --col-item-y-space: 50px;
}

.product-item__head {
  color: var(--white-color);
  background-color: var(--main-color);
  text-align: center;
  padding: 5px 0 11px;
}

.product-item__box {
  box-shadow: 0px 0px 9.6px 0.4px rgba(34, 34, 34, 0.6);
}

.product-item__ttl {
  font-size: var(--font-size-30);
  font-weight: var(--font-weight-medium);
  font-family: var(--font-sub);
  padding-bottom: 1px;
  padding-inline: 20px;
  position: relative;
  z-index: 1;
}

.product-item__ttl::after {
  content: "";
  height: 1px;
  width: calc(100% - 20px);
  background-color: var(--white-color);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.product-item__img {
  width: 100%;
  aspect-ratio: 1/1;
}

.product-item__content {
  margin-top: 20px;
  text-align: center;
}

.product-item__catch {
  padding-inline: 20px;
  font-size: 14px;
  margin-top: 7px;
}

/* modal modalコンテンツ表示スタイル
-------------------------*/
.modal-contents {
  padding: 60px 6%;
}

.modal-contents__ttl {
  font-size: var(--font-size-30);
  padding: 0.25em 1em;
  margin-bottom: 30px;
}

.modal-contents__flex {
  justify-content: space-between;
  align-items: flex-start;
}

.modal-contents__img {
  width: 40%;
  aspect-ratio: 1/1;
}

.modal-contents__table {
  --table-width: 56%;
  --table-th-width: 140px;
}

.modal-contents__table td p:not(:last-child) {
  margin-bottom: 0.75em;
}

.modal-contents__content {
  margin-top: 30px;
  width: 100%;
}

/*------------------------------
*
* flow トレーニングマシンの購入～設置までの流れ
*
------------------------------*/
.flow {
  background-color: var(--main-color);
  position: relative;
  z-index: 1;
}

.flow::after {
  content: "";
  position: absolute;
  width: 155px;
  height: 214px;
  background: url(../img/deco_slash01.png) no-repeat top center/contain;
  top: 0;
  right: calc(50% - 640px);
  transform: translateY(-30.3738317757%);
  z-index: 1;
}

.flow__ttl {
  --ttl-en-color: var(--white-color);
  --ttl-main-color: var(--white-color);
}

.flow__sentence {
  text-align: center;
  color: var(--white-color);
}

.flow__list {
  margin-top: 40px;
}

.flow-item {
  padding: 25px 30px 30px;
  box-sizing: border-box;
  min-height: 184px;
  width: 100%;
}

.flow-item:not(:last-child) {
  margin-bottom: 10px;
}

.flow-item--contact {
  background: url(../img/first/step_bg01.png) no-repeat center left/auto 100%, var(--white-color);
}

.flow-item--hearing {
  background: url(../img/first/step_bg02.png) no-repeat center left/auto 100%, var(--white-color);
}

.flow-item--meeting {
  background: url(../img/first/step_bg03.png) no-repeat center left/auto 100%, var(--white-color);
}

.flow-item--assembly {
  background: url(../img/first/step_bg04.png) no-repeat center left/auto 100%, var(--white-color);
}

.flow-item--complete {
  background: url(../img/first/step_bg05.png) no-repeat center left/auto 100%, var(--white-color);
}

.flow-item__ttl {
  font-size: var(--font-size-20);
  letter-spacing: var(--letter-spacing-base);
  border-bottom: 2px solid var(--main-color);
  padding-bottom: 5px;
  padding-inline: 4em;
  position: relative;
  z-index: 1;
}

.flow-item__ttl__num {
  position: absolute;
  top: 0.75em;
  left: 0;
  transform: translateY(-50%);
}

.flow-item__ttl__main {
  width: 100%;
  text-align: center;
  display: block;
}

.flow-item__content {
  margin-top: 20px;
}

.flow__illust {
  width: clamp(100px, 13.0208333333%, 250px);
  bottom: 4px;
  right: calc(50% - 540px);
  transform: translateX(52.4%);
  position: absolute;
  z-index: 1;
}

/*------------------------------
*
* qa よくあるご質問
*
------------------------------*/
.qa__ttl {
  --ttl-en-color: var(--main-color);
  --ttl-main-color: var(--main-color);
}

.qa-list__item {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--main-color);
}

.qa-list__item:not(:last-child) {
  margin-bottom: 30px;
}

.qa-list__item .question__mark,
.qa-list__item .answer__mark {
  font-size: var(--font-size-20);
  line-height: 1;
  width: 1.5em;
  height: 1.5em;
  text-align: center;
  box-sizing: border-box;
}

.qa-list__item .question {
  position: relative;
  margin-bottom: 25px;
}

.qa-list__item .question__mark {
  color: var(--white-color);
  background-color: var(--main-color);
  position: relative;
  z-index: 1;
  padding-top: 0.1em;
}

.qa-list__item .question__mark::before {
  content: "";
  width: 1.5em;
  height: 1.55em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.qa-list__item .question__content {
  box-sizing: border-box;
  font-size: var(--font-size-20);
  width: calc(100% - 40px);
  color: var(--main-color);
}

.qa-list__item .answer {
  position: relative;
  margin-left: auto;
  align-items: flex-start;
}

.qa-list__item .answer__content {
  margin-left: auto;
  width: calc(100% - 40px);
  font-size: 17px;
  line-height: 1.7647058824em;
}

/* ===========================================
*
* main style individual page 個人様向けマシン
* main style corporate page 企業様向けマシン
*
* ======================================== */
/*------------------------------
*
* worries このようなお悩み事はございませんか？
*
------------------------------*/
.worries__ttl {
  --ttl-main-color: var(--main-color);
  --ttl-en-color: var(--main-color);
}

.worries__list {
  position: relative;
  z-index: 1;
  padding: 45px 300px;
  font-size: var(--font-size-20);
}

.worries__list::before {
  content: "";
  width: 807px;
  height: 267px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50.3%, 10.1123595506%);
  z-index: -1;
  background: url(../img/individual/worries_illust_l.png) no-repeat top left/auto 97.0037453184%, url(../img/individual/worries_illust_r.png) no-repeat bottom right/auto 96.2546816479%;
}

.worries-item {
  text-align: center;
}

.worries-item:not(:last-child) {
  margin-bottom: 10px;
}

.worries__sentence {
  text-align: center;
  margin-top: 40px;
}

/*------------------------------
*
* recommend おすすめマシン
*
------------------------------*/
.recommend {
  background-color: var(--main-color);
  position: relative;
  z-index: 1;
}

.recommend::after {
  content: "";
  position: absolute;
  width: 155px;
  height: 214px;
  background: url(../img/deco_slash01.png) no-repeat top center/contain;
  top: 0;
  right: calc(50% - 640px);
  transform: translateY(-30.3738317757%);
  z-index: 1;
}

.recommend__ttl {
  --ttl-main-color: var(--white-color);
  --ttl-en-color: var(--white-color);
}

.recommend-contents {
  padding: 30px;
  position: relative;
  z-index: 1;
}

.recommend-contents:not(:last-child) {
  margin-bottom: 40px;
}

.recommend-contents__head {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.recommend-contents__point {
  background-color: var(--accent-color);
  text-align: center;
  display: inline-block;
  font-size: 17px;
  line-height: 28px;
  padding: 18px 15px;
  position: absolute;
  z-index: 1;
  top: -10px;
  right: 0;
  transform: translateX(50px);
  min-width: 236px;
  font-weight: var(--font-weight-regular);
}

.recommend-contents__point::after {
  content: "";
  background-color: #a5901a;
  right: 0;
  bottom: 0;
  transform: translateY(100%);
  width: 20px;
  height: 20px;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  position: absolute;
  z-index: -1;
}

.recommend-contents__ttl {
  font-size: var(--font-size-30);
  padding: 0.25em 240px;
  background-image: linear-gradient(-90deg, rgb(55, 139, 70) 0%, rgb(46, 116, 58) 100%);
}

.recommend-contents__flex {
  justify-content: space-between;
  align-items: flex-start;
  padding-right: 20px;
}

.recommend-contents__img {
  width: 490px;
}

.recommend-contents__illust {
  bottom: 0;
  position: absolute;
}

.recommend-contents__box {
  width: 490px;
  padding-left: 20px;
}

.recommend-contents--individual-3 .recommend-contents__illust {
  left: 356px;
  width: 203px;
}

.recommend-contents--individual-5 .recommend-contents__illust {
  left: 336px;
  width: 300px;
}

.recommend-contents--corporate-5 .recommend-contents__illust {
  left: 331px;
  width: 270px;
}

.recommend-contents--corporate-8 .recommend-contents__illust {
  left: 178px;
  width: 423px;
}

.recommend .machine-feature {
  /* マシンの特徴 */
  margin-top: 30px;
}

.recommend .machine-feature__ttl {
  font-size: var(--font-size-20);
  text-align: center;
  padding: 0.45em 1em;
  border-block: 1px solid var(--main-color);
  margin-bottom: 16px;
  color: var(--main-color);
}

/*------------------------------
*
* intro マシンの導入事例
*
------------------------------*/
.intro {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.intro__illust {
  position: absolute;
  z-index: -1;
  width: 21.875%;
  top: 103px;
  right: calc(50% - 540px);
  transform: translateX(59.2857142857%);
}

.intro__ttl {
  --ttl-main-color: var(--main-color);
  --ttl-en-color: var(--main-color);
}

.intro__sentence {
  text-align: center;
}

.intro__container {
  margin-top: 40px;
}

.intro-contents {
  padding: 40px;
}

.intro-contents__ttl {
  font-size: var(--font-size-30);
  margin-bottom: 23px;
  margin-top: -0.25em;
}

.intro-contents__gallery-wrapper {
  width: 100%;
  overflow: auto;
  padding-bottom: 30px;
  /* ===== Scrollbar CSS ===== */
  /* Firefox */
  scrollbar-width: auto;
  scrollbar-color: #7f7f7f #ffffff;
}

.intro-contents__gallery-wrapper *::-webkit-scrollbar {
  /* Chrome, Edge, and Safari */
  width: 20px;
}

.intro-contents__gallery-wrapper *::-webkit-scrollbar-track {
  background: #ffffff;
}

.intro-contents__gallery-wrapper *::-webkit-scrollbar-thumb {
  background-color: #7f7f7f;
  border-radius: 0px;
  border: 14px solid #28242b;
}

.intro-contents__gallery {
  gap: 30px;
}

.intro-contents__gallery__item {
  width: 1000px;
  height: 700px;
  flex-shrink: 0;
}

.intro-contents__content {
  margin-top: 30px;
}

/* ===========================================
*
* main style company page 会社概要
*
* ======================================== */
/*------------------------------
*
* message 代表挨拶
*
------------------------------*/
.message {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 100px;
  padding-top: 90px;
}

.message__ttl {
  --ttl-main-color: var(--white-color);
  --ttl-en-color: var(--white-color);
}

.message::after {
  content: "";
  width: calc(1280px + 50% - 640px);
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: -1;
  background: url(../img/company/message_bg.jpg) no-repeat 80% 50%/cover;
}

.message__illust {
  content: "";
  width: 11.8229166667%;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: calc(50% - 540px);
  transform: translateX(-116.2995594714%);
}

.message__container {
  position: relative;
  z-index: 1;
}

.message__box {
  width: 510px;
}

.message__img {
  width: 780px;
  height: 480px;
  top: 0;
  left: 50%;
  position: absolute;
  z-index: 1;
}

.message__img::after {
  content: "";
  width: 37.3076923077%;
  height: 54.5833333333%;
  right: 0;
  bottom: 0;
  transform: translate(-12.0274914089%, 56.4885496183%);
  background: url(../img/company/message_img_deco.png) no-repeat top center/contain;
  position: absolute;
  z-index: 1;
}

@media screen and (max-width: 1360px) {
  .message__illust {
    transform: translateX(-105.7268722467%);
  }
}

/*------------------------------
*
* info 会社情報
*
------------------------------*/
.info {
  padding-bottom: 0;
}

.info__ttl {
  --ttl-main-color: var(--main-color);
  --ttl-en-color: var(--main-color);
}

.info__table {
  margin-bottom: 100px;
}

.info__map {
  height: var(--map-height);
}

/*------------------------------
* 
* news,blog
* 
------------------------------*/
.cmn-post {
  --post-width: 100%;
  --post-item-marign: 16px;
  --post-item-flex-marign-space: 10px;
  --post-link-padding: 0px 0px 14px;
  --tag-wrapper-width: calc(100% - 114px);
  --post-title-line: 1;
  --post-title-font-size: 17px;
  --post-date-font-size: 17px;
  width: var(--post-width);
}

.cmn-post-item {
  width: 100%;
  border-bottom: 1px solid var(--gray-color);
}

.cmn-post-item:not(:last-child) {
  margin-bottom: var(--post-item-marign, 15px);
}

.cmn-post__flex {
  margin-bottom: var(--post-item-flex-marign-space, 12px);
}

.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: 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);
  font-family: var(--font-sub);
  font-weight: var(--font-weight-regular);
}

.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);
  font-weight: var(--font-weight-regular);
}

/*---------- detail ここから ----------*/
.tag {
  --tag-font-size: 14px;
  --tag-letter-space: var(--letter-spacing-base);
  --tag-height: 1;
  --tag-x-padding: 8px;
  --tag-color: var(--main-text-color);
  --tag-border-color: var(--main-text-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-regular);
  line-height: var(--tag-height);
}

.tag:not(:last-child) {
  padding-right: var(--tag-x-padding);
  border-right: 1px solid var(--tag-border-color);
}

.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(--main-color);
  --tag-btn-round: 0em;
  --tag-btn-padding: 3em;
  padding: 0.5em 1em;
  border: 1px solid var(--tag-btn-bg-color);
  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 8px;
  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;
  font-weight: var(--font-weight-regular);
}

.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 #378b46;
  font-weight: var(--font-weight-bold);
  font-family: var(--font-sub);
  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 {
  font-size: 15px;
  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 {
  color: var(--main-color);
}

.sitemap-list__link:hover::after {
  right: 1em;
}

/*------------------------------
* 
* privacy
* 
------------------------------*/
.privacy-ttl {
  font-size: 24px;
  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: 0;
  top: 4px;
  z-index: 201;
}

.floating__contact-btn {
  --hov-color-to: var(--white-color, transparent);
  --hov-bg-color-to: var(--main-color, transparent);
  width: 80px;
  display: grid;
  place-items: center;
  height: 240px;
  writing-mode: vertical-lr;
  letter-spacing: var(--letter-spacing-base);
  box-shadow: 0px 0px 30px 0px rgba(34, 34, 34, 0.3);
}

.floating__contact-btn:hover {
  box-shadow: 0px 0px 10px 0px rgba(34, 34, 34, 0.3);
}

/* ===========================================
*
* footer style
*
* ======================================== */
.footer {
  background-color: var(--theme-color);
}

.footer-inner {
  justify-content: space-between;
  padding-block: 50px;
}

.footer__logo {
  --logo-width: 170px;
}

.footer-right {
  width: 667px;
  border-left: 1px solid rgba(var(--main-text-color-rgb), 0.3);
  padding: 15px 0 16px 40px;
}

.footer-nav {
  margin-bottom: 36px;
}

.footer-nav__list {
  align-items: center;
}

.footer-nav__list:not(:last-child) {
  margin-bottom: 0.75em;
}

.footer-nav__item:not(:last-child) {
  border-right: 1px solid var(--main-text-color);
}

.footer-nav__item:first-child .footer-nav__link {
  padding-left: 0;
}

.footer-nav__item:last-child .footer-nav__link {
  padding-right: 0;
}

.footer-nav__link {
  line-height: 1;
  font-family: var(--font-sub);
  font-size: 17px;
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-base);
  padding-inline: 0.7em;
  --hov-color-to: var(--main-color, #378b46);
}

.footer-nav__link.current {
  color: var(--main-color);
}

.footer-info {
  flex-direction: column;
  width: 100%;
}

.footer-info__address {
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1;
}

.footer-info__anchors {
  margin-top: 40px;
  font-family: var(--font-sub);
  font-weight: var(--font-weight-bold);
  font-size: 17px;
}

.footer-info__sns {
  gap: 20px;
}

.footer-info__sns__item {
  padding-bottom: 4px;
  display: inline-block;
  padding-right: 23px;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid var(--main-text-color);
  transition: 0.3s;
}

.footer-info__sns__item::after {
  content: "";
  transition: 0.3s;
  background: url(../img/icon_ex.png) no-repeat top center/contain;
  position: absolute;
  top: 0.75em;
  right: 0;
  transform: translateY(-50%);
  width: 13px;
  height: 13px;
}

.footer-info__sns__item:hover {
  color: var(--main-color);
  border-color: var(--main-color);
}

.footer-info__sns__item:hover::after {
  background: url(../img/icon_ex_main.png) no-repeat top center/contain;
}

.footer-info__official {
  border: 1px solid var(--sub-color);
  background-color: var(--white-color);
  color: var(--sub-color);
  transition: 0.3s;
  text-align: center;
  line-height: 1.64;
  padding: 1em 0.5em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 230px;
  height: 80px;
  margin-right: 20px;
}

.footer-info__official .small {
  font-size: 14px;
}

.footer-info__official:hover {
  background-color: var(--sub-color);
  color: var(--white-color);
}

.footer-bottom {
  font-size: 10px;
  font-weight: var(--font-weight-regular);
  letter-spacing: var(--letter-spacing-none);
  background-color: var(--main-color);
}

.footer-bottom__inner {
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.footer-bottom-nav__list {
  justify-content: flex-end;
  gap: 1em;
}

.footer-bottom-nav__link {
  color: var(--white-color);
  --hov-color-to: var(--accent-color, #378b46);
}

.footer-bottom-nav__link.current {
  color: var(--accent-color);
}

.footer__copy {
  color: var(--white-color);
  background-color: var(--main-color);
}

/*# sourceMappingURL=style.css.map */