@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の管理にはなるべく使用しないでしてください
*
* ----------------------------

*  ---　「-（ハイフン）」「__（ダブルアンダーバー）」「--（ダブルハイフン）」の基本的な使い分け　---
*  セレクタの階層が移る場合は「-」「__」を使用
*  例）<a class="tel " href="">
*  <span class="tel__replace "><img src="/img/tel_txt.svg"></span>
*  </a>
*  セレクタの階層が移らず、マルチクラスとなる場合（装飾など）は「--」「__」を使用
*  例）<a class="tel tel-icon tel-icon--main tel-replace--bottom" href="">
*  <span class="tel__replace "><img src="/img/tel_txt.svg"></span>
*  </a>
*  
------------------------------*/
/* ボタン作成用
-------------------------*/
/* ===========================================
*  
*  css custom property (common)
* 
* ======================================== */
:root {
  /* グローバルスコープ変数 このシート内であればどこでも使用できます */
  --font-size-base: 14px;
  --font-size-16: clamp(0.875rem, calc(0.8213087248rem + 0.0026845638 * 100vw), 0.95rem);
  --font-size-17: clamp(0.9296875rem, calc(0.8726405201rem + 0.002852349 * 100vw), 1.009375rem);
  --font-size-18: clamp(0.9984375rem, calc(0.9883703859rem + 0.0005033557 * 100vw), 1.0125rem);
  --font-size-20: clamp(1.109375rem, calc(1.0981893177rem + 0.0005592841 * 100vw), 1.125rem);
  --font-size-24: clamp(1.2225rem, calc(1.1312248322rem + 0.0045637584 * 100vw), 1.35rem);
  --font-size-22: clamp(1.120625rem, calc(1.0369560962rem + 0.0041834452 * 100vw), 1.2375rem);
  --font-size-25: clamp(1.19921875rem, calc(1.1349010766rem + 0.0032158837 * 100vw), 1.2890625rem);
  --font-size-26: clamp(1.2471875rem, calc(1.1802971197rem + 0.003344519 * 100vw), 1.340625rem);
  --font-size-27: clamp(1.29515625rem, calc(1.2256931628rem + 0.0034731544 * 100vw), 1.3921875rem);
  --font-size-28: clamp(1.343125rem, calc(1.2710892058rem + 0.0036017897 * 100vw), 1.44375rem);
  --font-size-30: clamp(1.42734375rem, calc(1.2746591862rem + 0.0076342282 * 100vw), 1.640625rem);
  --font-size-32: clamp(1.5225rem, calc(1.3596364653rem + 0.0081431767 * 100vw), 1.75rem);
  --font-size-35: clamp(1.640625rem, calc(1.5231753356rem + 0.0058724832 * 100vw), 1.8046875rem);
  --font-size-36: clamp(1.6875rem, calc(1.5666946309rem + 0.0060402685 * 100vw), 1.85625rem);
  --font-size-40: clamp(1.7375rem, calc(1.5048378076rem + 0.0116331096 * 100vw), 2.0625rem);
  --font-size-45: clamp(1.9546875rem, calc(1.6929425336rem + 0.0130872483 * 100vw), 2.3203125rem);
  --font-size-48: clamp(2.085rem, calc(1.8058053691rem + 0.0139597315 * 100vw), 2.475rem);
  --font-size-50: clamp(1.875rem, calc(1.3716442953rem + 0.0251677852 * 100vw), 2.578125rem);
  --font-size-55: clamp(2.0625rem, calc(1.5088087248rem + 0.0276845638 * 100vw), 2.8359375rem);
  --font-size-56: clamp(2.1rem, calc(1.5362416107rem + 0.0281879195 * 100vw), 2.8875rem);
  --font-size-60: clamp(1.603125rem, calc(0.536010906rem + 0.0533557047 * 100vw), 3.09375rem);
  --font-size-64: clamp(1.71rem, calc(0.5717449664rem + 0.0569127517 * 100vw), 3.3rem);
  /* 幅設定 */
  --min-contents-width: 350px;
  --wide-inner-width: 100%;
  --inner-width: 100%;
  /* border-radius */
  --round-5: 3px;
  --round-10: 8px;
  --round-20: 16px;
  --round-30: 24px;
  --round-full: 999em;
  /* logoの幅 */
  --logo-width: 200px;
  /* mapの高さ */
  --map-height: 56.25vw;
  /* btn defaults */
  --btn-height: 48px;
  --btn-line-height: 1;
  --btn-font-size: var(--font-size-base);
  --btn-font-weight: var(--font-weight-medium);
  --btn-letter-space: var(--letter-spacing-base);
  --btn-width-regular: 200px;
  --btn-width-medium: 240px;
  --btn-width-large: 300px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* 
tel style
-------------------------*/
.tel {
  /* tel　style */
  --tel-font-size: var(--font-size-28);
  --tel-txt-font-size: 0.75em;
  --tel-txt-space: 0.5em;
  --tel-letter-space: var(--letter-spacing-base, 0.05em);
  --tel-color: var(--main-text-color);
  --tel-icon-space: 1.2666666667em;
  --tel-icon-position: 0.5em;
  --tel-icon-width: 1em;
  --tel-icon-height: 1em;
  font-family: var(--font-main, 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 {
  /* tel txt style */
  font-size: var(--tel-txt-font-size, 0.75em);
  margin-right: var(--tel-txt-space, 0.25em);
}
.tel-replace--right {
  /* tel replace 右に配置 */
  display: flex;
  align-items: center;
  gap: var(--tel-replace-space, 10px);
}
.tel-replace--bottom {
  /* tel replace 下に配置 */
  --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__replace {
  /* tel replace txt　style  */
  --tel-replace-size: 12px;
  height: var(--tel-replace-size, 12px);
}
.tel-icon {
  /* icon付き */
  padding-left: var(--tel-icon-space, 1.5em);
  position: relative;
  z-index: 1;
  display: inline-block;
}
.tel-icon::before {
  content: "";
  width: var(--tel-icon-width, 1em);
  height: var(--tel-icon-height, 1em);
  position: absolute;
  top: var(--tel-icon-position, 0.5em);
  left: 0;
  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: 15px;
  --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%;
}

.cmn-time {
  /* 営業時間・定休日をまとめたdl */
  gap: 5px 15px;
  font-size: 12px;
  display: inline-flex;
}
.cmn-time__item {
  gap: 5px 8px;
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--letter-spacing-base);
}
.cmn-time__item dt {
  color: var(--white-color);
  background-color: var(--accent01-color);
  border-radius: 2em;
  padding: 0.0192307692em 5px;
  text-align: center;
  min-width: 64px;
}

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

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

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

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

/* 
title style
-------------------------*/
.cmn-ttl {
  font-size: var(--font-size-30);
  margin-bottom: 48px;
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px 10px;
}
.cmn-ttl__main {
  font-size: var(--ttl-main-size);
  display: inline-block;
  margin-block: -0.25em;
}
.cmn-ttl__icon {
  width: 1.4285714286em;
  display: inline-block;
}
.cmn-ttl__icon > img {
  width: 100%;
}

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

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

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

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

/* 
* カラムスタイル
* flexを使用したカラム指定を行うクラスです
* flx-baseとセットで使用します
* col-container-PCColumnNum-SPColumnNum
-------------------------*/
.col-container-2-1,
.col-container-3-1 {
  /* PC2列　SP1列 */
  /* PC3列　SP1列 */
  /* 上下の余白 */
  --col-item-y-space: 36px;
  /* 左右の余白 */
  --col-item-x-space: 4%;
  gap: var(--col-item-y-space, 40px) var(--col-item-x-space, 40px);
}
.col-container-2-1 > .col-item,
.col-container-3-1 > .col-item {
  width: 100%;
}

.col-container-2-2,
.col-container-3-2,
.col-container-4-2 {
  /* PC2列　SP2列 */
  /* PC3列　SP2列 */
  /* PC4列　SP2列 */
  /* 上下の余白 */
  --col-item-y-space: 36px;
  /* 左右の余白 */
  --col-item-x-space: 4%;
  gap: var(--col-item-y-space, 30px) var(--col-item-x-space, 20px);
}
.col-container-2-2 > .col-item,
.col-container-3-2 > .col-item,
.col-container-4-2 > .col-item {
  width: calc(50% - var(--col-item-x-space) / 2);
}

/* 
テーブルスタイル
-------------------------*/
table {
  --table-replace-size: 12px;
  --table-replace-space: 1em;
}
table .replace-txt {
  /* テーブルタグ内で使用するリプレイステキスト */
  height: var(--table-replace-size);
  margin-left: var(--table-replace-space);
  display: inline-block;
}

.main-table {
  --table-letter-spacing: var(--letter-spacing-base);
  --table-th-font-weight: var(--font-weight-medium);
  --table-th-text-align: center;
  --table-th-x-padding: 1em;
  --table-th-y-padding: 0.8125em;
  --table-th-bg-color: var(--main-color);
  --table-th-color: var(--white-color);
  --table-th-width: 100%;
  --table-td-x-padding: 1em;
  --table-td-y-padding: 0.8125em;
  --table-td-bg-color: var(--white-color);
  --table-td-color: var(--main-text-color);
  --table-td-width: 100%;
  --table-border-color: var(--main-color);
  --table-th-border-color: var(--white-color);
  --table-td-border-color: var(--main-color);
  --table-width: 100%;
  width: var(--table-width);
  letter-spacing: var(--table-letter-spacing);
}
.main-table tr {
  width: 100%;
  display: block;
  border-block: 1px solid var(--table-border-color);
}
.main-table tr:not(:last-child) {
  margin-bottom: 12px;
}
.main-table th,
.main-table td {
  vertical-align: middle;
  display: block;
}
.main-table th {
  width: var(--table-th-width);
  background-color: var(--table-th-bg-color);
  color: var(--table-th-color);
  font-weight: var(--table-th-font-weight);
  text-align: var(--table-th-text-align);
  padding-inline: var(--table-th-x-padding);
  padding-block: var(--table-th-y-padding);
}
.main-table td {
  width: var(--table-td-width);
  background-color: var(--table-td-bg-color);
  color: var(--table-td-color);
  padding-inline: var(--table-td-x-padding);
  padding-block: var(--table-td-y-padding);
}

/*------------------------------
*
* cmn-btn style
*
------------------------------*/
.cmn-btn--primary {
  --btn-padding-y: calc(
    (var(--btn-height) - var(--btn-font-size) * var(--btn-line-height)) / 2
  );
  --btn-padding-x: 1em;
  display: block;
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  letter-spacing: var(--letter-spacing-base);
  line-height: var(--btn-line-height);
  font-family: var(--font-sub);
  text-align: center;
  width: 100%;
  border-radius: 3em;
  padding-block: var(--btn-padding-y);
  padding-inline: var(--btn-padding-x);
  background-color: var(--sub-color);
  color: var(--white-color);
  transition: 0.3s;
}
.cmn-btn--primary:hover {
  background-color: var(--darken-sub-color);
  color: var(--white-color);
  opacity: 1;
}
.cmn-btn--secondary {
  --btn-padding-y: calc(
    (var(--btn-height) - var(--btn-font-size) * var(--btn-line-height)) / 2
  );
  --btn-padding-x: 1em;
  display: block;
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  letter-spacing: var(--letter-spacing-base);
  line-height: var(--btn-line-height);
  font-family: var(--font-sub);
  text-align: center;
  width: 100%;
  border-radius: 3em;
  padding-block: var(--btn-padding-y);
  padding-inline: var(--btn-padding-x);
  background-color: var(--main-color);
  color: var(--white-color);
  transition: 0.3s;
  position: relative;
  z-index: 1;
}
.cmn-btn--secondary::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  height: calc(100% - 2px);
  width: calc(100% - 2px);
  border: 1px solid var(--white-color);
  border-radius: 3em;
}
.cmn-btn--secondary:hover {
  background-color: var(--accent01-color);
  color: var(--white-color);
  opacity: 1;
}
.cmn-btn--secondary:hover::before {
  border-color: var(--white-color);
}
.cmn-btn--arrow-white {
  position: relative;
  z-index: 1;
}
.cmn-btn--arrow-white::after {
  content: "";
  transition: 0.3s;
  position: absolute;
  z-index: 1;
  width: 12px;
  height: 12px;
  top: 50%;
  right: 13px;
  transform: translate(0%, -50%);
  background: url(../img/arrow_white.png) no-repeat center/contain;
}
.cmn-btn--arrow-white:hover::after {
  transform: translate(25%, -50%);
}
.cmn-btn--arrow-orange {
  position: relative;
  z-index: 1;
}
.cmn-btn--arrow-orange::after {
  content: "";
  transition: 0.3s;
  position: absolute;
  z-index: 1;
  width: 12px;
  height: 12px;
  top: 50%;
  right: 13px;
  transform: translate(0%, -50%);
  background: url(../img/arrow_orange.png) no-repeat center/contain;
}
.cmn-btn--arrow-orange:hover::after {
  transform: translate(25%, -50%);
}
.cmn-btn--arrow-yellow {
  position: relative;
  z-index: 1;
}
.cmn-btn--arrow-yellow::after {
  content: "";
  transition: 0.3s;
  position: absolute;
  z-index: 1;
  width: 12px;
  height: 12px;
  top: 50%;
  right: 13px;
  transform: translate(0%, -50%);
  background: url(../img/arrow_yellow.png) no-repeat center/contain;
}
.cmn-btn--arrow-yellow:hover::after {
  transform: translate(25%, -50%);
}
.cmn-btn--icon-mail > span {
  padding-left: 30px;
  position: relative;
  z-index: 1;
  display: inline-block;
}
.cmn-btn--icon-mail > span::before {
  content: "";
  width: 19px;
  height: 14px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../img/icon_mail_white.png) no-repeat center/contain;
}
.cmn-btn-x {
  line-height: 1;
  text-align: center;
  padding: 22px 1em;
  border-radius: var(--round-10);
  width: 200px;
  background-color: var(--black-color);
  color: var(--white-color);
  transition: 0.3s;
}
.cmn-btn-x:hover {
  background-color: rgb(var(--black-color-rgb)/0.7);
  color: var(--white-color);
  opacity: 1;
}
.cmn-btn-x > span {
  padding-left: 2.2777777778em;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.cmn-btn-x > span::before {
  content: "";
  width: 1.3333333333em;
  height: 1.3888888889em;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0% -50%;
  background: url(../img/icon_x_white.svg) no-repeat top center/contain;
}
.cmn-btn-instagram {
  line-height: 1;
  text-align: center;
  padding: 22px 1em;
  border-radius: var(--round-10);
  width: 200px;
  position: relative;
  z-index: 1;
  color: var(--white-color);
  background: url(../img/instagram_btn.png) no-repeat center/cover;
  overflow: hidden;
}
.cmn-btn-instagram::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0;
  transition: 0.3s;
  background: #ff2e82;
}
.cmn-btn-instagram:hover {
  color: var(--white-color);
  opacity: 1;
}
.cmn-btn-instagram:hover::before {
  opacity: 1;
}
.cmn-btn-instagram > span {
  padding-left: 2.2222222222em;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.cmn-btn-instagram > span::before {
  content: "";
  width: 1.3888888889em;
  height: 1.3888888889em;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0% -50%;
  background: url(../img/icon_instagram_white.svg) no-repeat top center/contain;
}
.cmn-btn--rg {
  max-width: var(--btn-width-regular);
  padding: var(--btn-padding-y) var(--btn-padding-x);
}
.cmn-btn--md {
  max-width: var(--btn-width-medium);
  padding: var(--btn-padding-y) var(--btn-padding-x);
}
.cmn-btn--lg {
  max-width: var(--btn-width-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: 48px;
  --pagenation-item-width: 3em;
  --pagenation-item-height: 3em;
  --pagenation-item-font-size: 1em;
  --pagenation-item-font-weight: var(--font-weight-medium);
  --pagenation-item-space: 6px;
  --pagenation-item-bg: var(--gray-color);
  --pagenation-item-color:#b3b3b3;
  --pagenation-item-current-bg: var(--main-color);
  --pagenation-item-current-color: var(--white-color);
  margin-top: var(--pagenation-margin-top);
  display: flex;
  justify-content: center;
}
.pagenation li {
  display: block;
  width: var(--pagenation-item-width);
  height: var(--pagenation-item-height);
  font-size: var(--pagenation-item-font-size);
  line-height: var(--pagenation-item-height);
  font-weight: var(--pagenation-item-font-weight);
  margin: 0 var(--pagenation-item-space);
  color: var(--pagenation-item-color);
  background: var(--pagenation-item-bg);
  text-align: center;
  transition: 0.3s;
  border-radius: var(--round-5);
}
.pagenation li:has(a):hover {
  background-color: var(--pagenation-item-current-bg);
  color: var(--pagenation-item-current-color);
}
.pagenation .current {
  background-color: var(--pagenation-item-current-bg);
  color: var(--pagenation-item-current-color);
}

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

.bread-crumb {
  display: none;
}

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

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

/* ===========================================
*
* main style top page
*
* ======================================== */
.top-page {
  background: url(../img/top/top_bg.png) no-repeat top center/max(960px, 100%);
}

.under-page {
  background: url(../img/top_bg.png) no-repeat top center/max(960px, 100%), url(../img/pattern05.png) repeat center/auto;
}

.under-page.recruitment-page,
.under-page.self-counseling-page {
  background: url(../img/top_bg.png) no-repeat top center/max(960px, 100%), url(../img/top_bg.png) no-repeat top center/max(960px, 100%), url(../img/pattern01.png) repeat center/auto;
}

/*------------------------------
*
* main visual
*
------------------------------*/
.main-visual {
  width: 100%;
  position: relative;
  z-index: 1;
}
.main-visual::after, .main-visual::before {
  content: "";
  position: absolute;
  z-index: 2;
}
.main-visual::before {
  left: 0;
  top: 0;
  max-width: 283px;
  width: 20%;
  aspect-ratio: 283/187;
  background: url(../img/top/mv_tl.png) no-repeat top center/contain;
  translate: 0 -47.0588235294%;
}
.main-visual::after {
  right: 0;
  top: 0;
  max-width: 310px;
  width: 24%;
  aspect-ratio: 310/223;
  background: url(../img/top/mv_tr.png) no-repeat top center/contain;
  translate: 0 -56.0538116592%;
}
.main-visual__inner {
  background-color: var(--white-color);
  border-radius: 12px;
  position: relative;
  z-index: 1;
  padding: 10px;
  height: clamp(180px, 39.5833333333vw, 760px);
  max-width: 1780px;
  width: 92.7083333333%;
  margin-inline: auto;
}
.main-visual__img {
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.main-visual__catch {
  width: 56.484375%;
  max-width: 723px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
}

/*------------------------------
  *
  * top-movie section
  *
  ------------------------------*/
.top-movie {
  margin-top: 70px;
}
.top-movie__container {
  position: relative;
  z-index: 1;
  padding: 32px 0;
}
.top-movie__container::before, .top-movie__container::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  height: 10px;
  width: 100%;
  background: url(../img/colorfull_border.png) repeat-x left center/auto 100%;
}
.top-movie__container::before {
  top: 0px;
}
.top-movie__container::after {
  bottom: 0;
}
.top-movie__video__inner {
  aspect-ratio: 16/9;
  background-color: var(--white-color);
  border-radius: var(--round-5);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.top-movie__video__inner > video,
.top-movie__video__inner iframe {
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background-color: var(--gray-color);
}

/*------------------------------
  *
  * top-information section
  *
  ------------------------------*/
.top-information__container {
  --col-item-x-space: 4%;
  --col-item-y-space: 40px;
}
.top-information-item {
  padding: 32px 5%;
  border-radius: var(--round-20);
  background-color: var(--theme02-color);
  position: relative;
  z-index: 1;
}
.top-information-item::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
}
.top-information-item__ttl {
  margin-bottom: 30px;
}
.top-information-item__ttl .cmn-ttl__main {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.top-information-item__ttl .cmn-ttl__main::after, .top-information-item__ttl .cmn-ttl__main::before {
  content: "";
  width: 100%;
  height: 1px;
  border-bottom: 2px dotted var(--main-text-color);
  flex-shrink: 1;
  display: block;
}
.top-information-item__ttl .cmn-ttl__main > span {
  display: inline-block;
  flex-shrink: 0;
  padding-inline: 1em;
}
.top-information-item__btn {
  width: 240px;
  margin: 30px auto 0;
}
.top-information-item:nth-child(1)::before {
  max-width: 89px;
  width: 20%;
  aspect-ratio: 89/65;
  background: url(../img/top/news_illust.png) no-repeat center/contain;
  right: 0;
  bottom: 0;
  translate: 12.3595505618% 38.4615384615%;
}
.top-information-item:nth-child(2)::before {
  max-width: 79px;
  width: 20%;
  aspect-ratio: 79/68;
  background: url(../img/top/diary_illust.png) no-repeat center/contain;
  right: 0;
  bottom: 0;
  translate: 24.0506329114% 25%;
}

/*------------------------------
  *
  * page-link section
  *
  ------------------------------*/
.page-link {
  background: url(../img/top/link_bg.png) no-repeat center/max(1440px, 100%) 100%;
  position: relative;
  z-index: 1;
}
.page-link__container {
  justify-content: center;
  align-items: flex-start;
  gap: 40px 4%;
}
.page-link-item {
  width: 90%;
}
.page-link-item__img {
  width: 90%;
  margin: 0 auto;
}
.page-link-item__ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: var(--font-size-28);
  letter-spacing: var(--letter-spacing-base);
  line-height: 1;
  margin-top: 1em;
}
.page-link-item__ttl__arrow {
  width: 20px;
}
.page-link-item:nth-child(2) .page-link-item__ttl {
  gap: 0;
}
.page-link-item:nth-child(2) .page-link-item__ttl__main {
  margin-right: -0.25em;
}

/*------------------------------
  *
  * top-greeting section
  *
  ------------------------------*/
.top-greeting__ttl {
  flex-direction: row;
  margin-bottom: 30px;
}
.top-greeting__btn {
  max-width: 240px;
  margin: 36px auto 0;
}
.top-greeting__container {
  flex-direction: column;
  align-items: center;
}
.top-greeting__img {
  max-width: 536px;
  width: 100%;
  margin: 40px auto 0;
}

/*------------------------------
  *
  * top-desc section
  *
  ------------------------------*/
.top-desc {
  background: url(../img/pattern01.png) repeat center/auto;
  position: relative;
  z-index: 1;
}
.top-desc__ttl {
  margin-bottom: 66px;
  text-align: center;
}
.top-desc__ttl .cmn-ttl__main {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.top-desc__ttl .cmn-ttl__main::after, .top-desc__ttl .cmn-ttl__main::before {
  content: "";
  position: absolute;
  z-index: 1;
}
.top-desc__ttl .cmn-ttl__main::before {
  background: url(../img/top/ttl_desc_l.png) no-repeat center/contain;
  width: 1.1714285714em;
  height: 1.0571428571em;
  top: 0;
  left: 0;
  translate: -1.9428571429em -0.3714285714em;
}
.top-desc__ttl .cmn-ttl__main::after {
  background: url(../img/top/ttl_desc_r.png) no-repeat center/contain;
  width: 1em;
  height: 1.1428571429em;
  top: 0;
  right: 0;
  translate: 1.6857142857em 0.4285714286em;
}
.top-desc-item {
  position: relative;
  z-index: 1;
  padding: 24px 5%;
  border-radius: var(--round-20);
}
.top-desc-item__icon {
  width: 64px;
  translate: -50% -31.25%;
  left: 50%;
  top: 0;
  position: absolute;
  z-index: 1;
}
.top-desc-item__btn {
  margin: 24px auto 0;
  max-width: 240px;
}
.top-desc-item__img {
  width: 100%;
  margin-bottom: 24px;
}
.top-desc-item__ttl {
  text-align: center;
  font-size: var(--font-size-25);
  padding: 0.25em 1em;
  background-color: var(--white-color);
  margin-bottom: 20px;
}
.top-desc-item__ttl .cmn-ttl__main {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.top-desc-item__btn {
  width: 240px;
  margin: 30px auto 0;
}
.top-desc-item__sentence {
  color: var(--white-color);
}
.top-desc-item:nth-child(1), .top-desc-item:nth-child(4) {
  background: url(../img/pattern03.png) repeat center/auto;
}
.top-desc-item:nth-child(1) .top-desc-item__ttl, .top-desc-item:nth-child(4) .top-desc-item__ttl {
  color: var(--accent02-color);
}
.top-desc-item:nth-child(2), .top-desc-item:nth-child(3) {
  background: url(../img/pattern04.png) repeat center/auto;
}
.top-desc-item:nth-child(2) .top-desc-item__ttl, .top-desc-item:nth-child(3) .top-desc-item__ttl {
  color: var(--accent01-color);
}
.top-desc__container {
  --col-item-x-space: 40px;
  --col-item-y-space: 40px;
}

/*------------------------------
  *
  * page-link02 section
  *
  ------------------------------*/
.page-link02 {
  background: url(../img/pattern05.png) repeat center/auto;
}
.page-link02__container {
  justify-content: center;
  align-items: flex-start;
  gap: 40px 4%;
}
.page-link02-item {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 390px;
}
.page-link02-item__img {
  width: 80%;
  max-width: 304px;
}
.page-link02-item__ttl {
  width: 90%;
  font-size: clamp(1rem, calc(0.8210290828rem + 0.0089485459 * 100vw), 1.25rem);
  letter-spacing: var(--letter-spacing-base);
  margin-top: -1.6em;
  position: relative;
  z-index: 5;
  color: var(--white-color);
  padding: 0.25em 2em;
  border-radius: 3em;
  text-align: center;
}
.page-link02-item__ttl__icon {
  width: 3.2em;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 50%;
  translate: -37.5% -50%;
}
.page-link02-item__ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 24px;
  width: 12px;
  height: 12px;
  background: url(../img/arrow_white.png) no-repeat center/contain;
}
.page-link02-item:nth-child(1) .page-link02-item__ttl {
  background-size: auto auto;
  background-color: rgb(98, 198, 226);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 7px, rgb(88, 192, 223) 7px, rgb(88, 192, 223) 12px);
}
.page-link02-item:nth-child(2) .page-link02-item__ttl {
  background-size: auto auto;
  background-color: rgb(78, 152, 253);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 7px, rgb(70, 141, 253) 7px, rgb(70, 141, 253) 12px);
}

/*------------------------------
  *
  * contact
  *
  ------------------------------*/
.contact {
  padding-top: 90px;
  background: url(../img/top/contact_bg_b.png) no-repeat bottom center/100%, url(../img/pattern02.png) repeat top center/auto;
}
.contact__ttl {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -39.175257732%;
  font-size: clamp(1rem, calc(0.6420581655rem + 0.0178970917 * 100vw), 1.5rem);
  text-shadow: 0 0 8px rgb(var(--white-color-rgb)/1), 0 0 8px rgb(var(--white-color-rgb)/1), 0 0 8px rgb(var(--white-color-rgb)/1), 0 0 8px rgb(var(--white-color-rgb)/1), 0 0 8px rgb(var(--white-color-rgb)/1), 0 0 8px rgb(var(--white-color-rgb)/1);
}
.contact__ttl .cmn-ttl__main {
  padding-inline: 2.1142857143em;
  height: 2.7714285714em;
  padding-top: 0.3428571429em;
  width: 20.4571428571em;
  margin-block: 0;
  background: url(../img/top/contact_ttl_bg.png) no-repeat top center/contain;
}
.contact__box {
  background-color: var(--white-color);
  border-radius: var(--round-10);
  border: 2px solid #fdd34e;
  position: relative;
  z-index: 1;
  padding: 54px 30px 34px;
  width: 100%;
  margin: 0 auto 32px;
}
.contact__box::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  translate: -50% 0%;
  z-index: -1;
  background: url(../img/flag_l.png) no-repeat left center/contain, url(../img/flag_r.png) no-repeat right center/contain;
  width: 1180px;
  height: 103px;
}
.contact__box::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  background-color: #fffbf0;
  border-radius: var(--round-5);
  z-index: -2;
}
.contact__links {
  --col-item-x-space: 4%;
  --col-item-y-space: 24px;
  justify-content: center;
}
.contact-info {
  align-items: center;
}
.contact-info__time {
  margin-bottom: 16px;
  font-size: var(--font-size-base);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.contact-info__time .cmn-time__item dt {
  padding: 0.0833333333em 14px;
}
.contact-info__main {
  gap: 12px;
  justify-content: center;
}
.contact-info__tel {
  --tel-font-size: var(--font-size-40);
  --tel-icon-space: 1.15em;
  --tel-icon-position: 0.5em;
  --tel-icon-width: 0.875em;
  --tel-icon-height: 0.875em;
  --tel-replace-space: 22px;
}
.contact-info__tel .tel__replace {
  --tel-replace-size: 15px;
}
.contact-info__btn {
  max-width: 200px;
  margin: 0 auto;
}
.contact-bnr {
  padding: 24px 5%;
  border-radius: var(--round-10);
  background-color: var(--white-color);
  transition: 0.3s;
  flex-wrap: nowrap;
  align-items: center;
  max-width: 480px;
}
.contact-bnr:hover {
  background-color: var(--theme02-color);
}
.contact-bnr:hover .contact-bnr__btn {
  background-color: var(--darken-sub-color);
}
.contact-bnr__img {
  width: 40%;
  margin-right: 4%;
  max-width: 180px;
  min-width: 140px;
  flex-shrink: 0;
}
.contact-bnr__right {
  width: 100%;
  flex-shrink: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-bnr__ttl {
  font-size: var(--font-size-24);
  font-weight: var(--font-weight-bold);
  line-height: 1;
  gap: 6px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0.75em;
}
.contact-bnr__ttl__sub {
  font-size: 0.6em;
  color: var(--accent02-color);
}
.contact-bnr__btn {
  pointer-events: none;
  --btn-font-size:clamp(0.6875rem, calc(0.4637863535rem + 0.0111856823 * 100vw), 1rem);
  --btn-height: 40px;
}
.contact-bnr__btn::after {
  right: 10px;
  width: 10px;
  height: 10px;
}

/* ===========================================
  *
  * under page  
  *
  * ======================================== */
/*------------------------------
  *
  * main style sub visual
  *
  ------------------------------*/
.sub-visual {
  width: 100%;
  position: relative;
  z-index: 1;
}
.sub-visual__inner {
  background-color: var(--white-color);
  border-radius: 10px;
  position: relative;
  z-index: 1;
  padding: 10px;
  height: clamp(180px, 35.9375vw, 460px);
  max-width: 1780px;
  width: 92.7083333333%;
  margin-inline: auto;
}
.sub-visual__img {
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.sub-visual__catch {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  font-size: clamp(1.125rem, calc(0.8565436242rem + 0.0134228188 * 100vw), 1.5rem);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-base);
  min-width: 11.4285714286em;
  padding: 0.3071428571em 2.5142857143em;
  text-align: center;
  background-color: var(--theme02-color);
  border: 3px solid var(--accent02-color);
  border-radius: 0.5714285714em;
  white-space: nowrap;
}
.sub-visual__catch::before, .sub-visual__catch::after {
  position: absolute;
  z-index: 1;
  content: "";
}
.sub-visual__catch::before {
  width: 2.1428571429em;
  height: 2.6571428571em;
  background: url(../img/sv_deco_l.png) no-repeat top center/contain;
  top: 0;
  left: 0.2571428571em;
  translate: 0 -23.6559139785%;
}
.sub-visual__catch::after {
  width: 3.0857142857em;
  height: 2.8857142857em;
  background: url(../img/sv_deco_r.png) no-repeat top center/contain;
  top: 0;
  right: 0;
  translate: 23.1481481481% -19.801980198%;
}

/* ===========================================
  *
  * main style guide-page
  *
  * ======================================== */
.cmn-solid-ttl {
  --ttl-bg-color: var(--accent02-color);
  --ttl-color: var(--white-color);
  background-color: var(--ttl-bg-color);
  border-radius: var(--round-10);
  font-weight: var(--font-weight-bold);
  color: var(--ttl-color);
  font-size: var(--font-size-24);
  letter-spacing: var(--letter-spacing-base);
  padding: 0.45em 0.8em;
}

.guide {
  position: relative;
  z-index: 1;
}
.guide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 30px;
  z-index: -1;
  background: url(../img/flag_l.png) no-repeat left center/contain, url(../img/flag_r.png) no-repeat right center/contain;
  width: 90%;
  height: clamp(2.8125rem, calc(0.7990771812rem + 0.1006711409 * 100vw), 5.625rem);
}
.guide-item {
  --col-item-x-space: 4%;
  --col-item-y-space: 24px;
}
.guide-item__ttl {
  margin-bottom: 20px;
}
.guide-item__img {
  border-radius: var(--round-20);
  aspect-ratio: 510/300;
  overflow: hidden;
  width: 100%;
}
.guide-item__sentence {
  --sentence-line-height: 2;
  letter-spacing: var(--letter-spacing-base);
}
.guide-item:not(:last-child) {
  margin-bottom: 48px;
}
.guide-item:nth-child(even) {
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-start;
}

/*------------------------------
  *
  * info
  *
  ------------------------------*/
.info {
  padding: 130px 0 107px;
  background: url(../img/top/desc_l.png) no-repeat left top 20px/24% auto, url(../img/top/desc_r.png) no-repeat right 2% bottom 32px/28% auto, url(../img/pattern06.png) repeat center/auto;
}
.info__container {
  justify-content: center;
  align-items: center;
}
.info-data__item {
  display: flex;
  align-items: flex-start;
}
.info-data__item:not(:last-child) {
  margin-bottom: 10px;
}
.info-data__item dt {
  color: var(--white-color);
  text-align: center;
  display: grid;
  place-content: center;
  font-size: var(--font-size-base);
  padding: 0.9166666667em 1em;
  border-radius: 3em;
  width: 120px;
  background-color: var(--main-color);
}
.info-data__item dd {
  width: calc(120% - 100px);
  padding: 0.9166666667em 1em;
}

/*------------------------------
  *
  * access
  *
  ------------------------------*/
.access {
  background: url(../img/pattern02.png) repeat center/auto;
}
.access__map {
  margin-top: 40px;
  height: var(--map-height);
}
.access__container {
  justify-content: space-between;
  align-items: flex-start;
}
.access-data {
  width: 100%;
}
.access-data__item:not(:last-child) {
  margin-bottom: 14px;
}
.access-data__item dt {
  --ttl-bg-color: var(--accent01-color);
  margin-bottom: 20px;
}
.access-data__item:not(:last-child) {
  margin-bottom: 30px;
}
.access-data__item ul li > strong {
  margin-bottom: 12px;
  display: inline-block;
  font-size: var(--font-size-20);
  line-height: 1.5;
  padding-inline: 0.8em;
  border-radius: 1.5em;
  background-color: var(--theme02-color);
}
.access-data__item ul li > p {
  font-size: var(--font-size-18);
  line-height: 1.667;
  padding-inline: 14px;
}
.access-data__item ul li:not(:last-child) {
  margin-bottom: 14px;
}
.access-item__img {
  width: min(570px, 100%);
  margin: 32px auto 0;
}

/* ===========================================
  *
  * main style policy page
  *
  * ======================================== */
/*------------------------------
  *
  * feature
  *
  ------------------------------*/
.feature__box {
  padding: 56px 5% 48px;
  border-radius: var(--round-20);
  background: url(../img/pattern06.png) repeat center/auto;
}

.check-list li {
  padding: 0.5em 0.75em;
  font-size: var(--font-size-base);
  line-height: 1.667;
  padding-bottom: 14px;
  border-bottom: 1px dotted var(--main-text-color);
  letter-spacing: var(--letter-spacing-base);
}
.check-list li .small {
  font-size: 0.75em;
}
.check-list li > p {
  padding-left: 1.7777777778em;
  position: relative;
  z-index: 1;
}
.check-list li > p::before {
  content: "";
  width: 1.1111111111em;
  height: 1.1111111111em;
  border-radius: 50%;
  background: url(../img/check_mark.png) no-repeat top center/contain;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0% -50%;
}
.check-list li:not(:last-child) {
  margin-bottom: 0.75em;
}

/*------------------------------
  *
  * daily-education
  *
  ------------------------------*/
.daily-education {
  background: url(../img/pattern02.png) repeat center/auto;
  position: relative;
  z-index: 1;
}
.daily-education::after {
  content: "";
  width: 50%;
  max-width: 175px;
  aspect-ratio: 434/416;
  background: url(../img/policy/daily-education_r.png) no-repeat top center/contain;
  position: absolute;
  top: 0;
  right: 0;
  translate: 0 -22.3557692308%;
  z-index: -1;
}
.daily-education-item {
  --col-item-x-space: 4%;
  --col-item-y-space: 24px;
  padding: 24px 5%;
  border-radius: var(--round-10);
  align-items: flex-start;
  color: var(--white-color);
}
.daily-education-item__ttl {
  --ttl-bg-color: var(--white-color);
  --ttl-color: var(--accent02-color);
  margin-bottom: 24px;
}
.daily-education-item__img {
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}
.daily-education-item__sentence {
  --sentence-line-height: 1.667;
}
.daily-education-item:not(:last-child) {
  margin-bottom: 32px;
}
.daily-education-item:nth-child(odd) {
  background-color: var(--accent01-color);
}
.daily-education-item:nth-child(even) {
  background-color: var(--accent02-color);
  flex-direction: row-reverse;
}

/* ===========================================
  *
  * main style daily-schedule page
  *
  * ======================================== */
/*------------------------------
  *
  * daily-schedule
  *
  ------------------------------*/
.daily-schedule__list {
  padding-block: 20px;
  position: relative;
  z-index: 1;
}
.daily-schedule__list::after {
  content: "";
  height: 100%;
  width: 3px;
  position: absolute;
  top: 50%;
  left: 0%;
  translate: 0% -50%;
  background-color: var(--main-text-color);
  display: block;
  z-index: -1;
}
.daily-schedule-item {
  width: calc(100% - 30px);
  padding: 24px 18px;
  border-radius: var(--round-20);
  border: 1px dotted var(--accent02-color);
  background-color: var(--theme02-color);
  position: relative;
  z-index: 1;
  margin-left: auto;
}
.daily-schedule-item::after, .daily-schedule-item::before {
  content: "";
  position: absolute;
  z-index: 1;
}
.daily-schedule-item::after {
  top: 50%;
  width: 30px;
  height: 1px;
  background-color: var(--main-text-color);
  display: block;
  left: 0;
  translate: -100% -50%;
}
.daily-schedule-item::before {
  top: 50%;
  width: 12px;
  height: 12px;
  z-index: 5;
  background-color: var(--accent02-color);
  border-radius: 50%;
  left: -30px;
  translate: -50% -50%;
}
.daily-schedule-item:not(:last-child) {
  margin-bottom: 20px;
}
.daily-schedule-item__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px;
}
.daily-schedule-item__time {
  flex-shrink: 0;
  font-style: var(--round-20);
  color: var(--white-color);
  background-color: var(--main-color);
  border-radius: 1em;
  width: 120px;
  text-align: center;
  padding: 0.25em 0.25em;
  letter-spacing: var(--letter-spacing-regular);
  font-weight: var(--font-weight-bold);
}
.daily-schedule-item__ttl {
  line-height: 1.2;
  font-size: var(--font-size-25);
  width: 100%;
  letter-spacing: var(--letter-spacing-xs);
  font-weight: var(--font-weight-bold);
  padding-bottom: 0.1em;
}
.daily-schedule-item__sentence {
  --sentence-line-height: 1.667;
  letter-spacing: var(--letter-spacing-xs);
}
.daily-schedule-item__sentence .small {
  font-size: 15px;
  line-height: 1.33em;
}
.daily-schedule__note {
  margin-top: 36px;
}

/* ===========================================
  *
  * main style annual-events page
  *
  * ======================================== */
.annual-events__ttl {
  margin-bottom: 60px;
}
.annual-events__list {
  --col-item-x-space: 4%;
  --col-item-y-space: max(12px, 3.6vw);
  align-items: stretch;
}
.annual-events-item {
  background-color: var(--theme01-color);
  border-radius: 20px;
  padding: 24px 4%;
}
.annual-events-item__ttl {
  background-color: var(--accent02-color);
  color: var(--white-color);
  text-align: center;
  width: 4em;
  margin: 0 auto 20px;
  border-radius: 2em;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-20);
  letter-spacing: var(--letter-spacing-regular);
  padding: 0.05em 0.5em;
}
.annual-events-item__img {
  margin: 0 auto 20px;
  max-width: 200px;
  width: 100%;
  border-radius: var(--round-20);
  overflow: hidden;
}
.annual-events-item__sentence {
  text-align: center;
  --sentence-line-height: 1.667;
}
.annual-events__note {
  margin-top: 36px;
}

/* ===========================================
  *
  * main style recruitment page
  *
  * ======================================== */
/*------------------------------
  *
  * recruitment
  *
  ------------------------------*/
.recruitment {
  background: url(../img/recruitment/star.png) repeat-y top 320px center/auto;
}
.recruitment-item {
  background-color: var(--white-color);
  border-radius: var(--round-20);
  padding: 32px 5%;
}
.recruitment-item:not(:last-child) {
  margin-bottom: 32px;
}
.recruitment-item__ttl {
  margin-bottom: 24px;
}
.recruitment-item__flex {
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.recruitment-item__img {
  max-width: 380px;
  width: 90%;
}
.recruitment-item__body {
  flex-shrink: 1;
  font-size: var(--font-size-base);
}
.recruitment-item__sns {
  margin-top: 24px;
  gap: 15px 4%;
  justify-content: center;
}
.recruitment-item__info {
  margin-top: 30px;
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 13px;
  border-radius: var(--round-10);
  background-color: var(--theme02-color);
  gap: 12px 16px;
}
.recruitment__table {
  font-size: var(--font-size-base);
  letter-spacing: var(--letter-spacing-xs);
  width: 100%;
}
.recruitment__table tr {
  display: block;
}
.recruitment__table tr:not(:last-child) {
  border-bottom: 1px solid var(--main-text-color);
  margin-bottom: 16px;
}
.recruitment__table tr:first-child th,
.recruitment__table tr:first-child td {
  padding-top: 0;
}
.recruitment__table tr:last-child th,
.recruitment__table tr:last-child td {
  padding-bottom: 0;
  width: 100%;
}
.recruitment__table th, .recruitment__table td {
  display: block;
}
.recruitment__table th {
  padding-inline: 5px;
  padding-block: 0 8px;
  font-weight: var(--font-weight-bold);
  color: var(--main-color);
}
.recruitment__table td {
  padding-inline: 5px;
  padding-block: 0 16px;
  font-weight: var(--font-weight-medium);
}

/* ===========================================
  *
  * main style self-counseling page
  *
  * ======================================== */
.self-counseling-wrapper {
  background: url(../img/self-counseling/counseling-lead_l.png) no-repeat top 32% left/24% auto, url(../img/self-counseling/counseling-lead_r.png) no-repeat top 32% right/28% auto;
}

.counseling-lead {
  padding-top: 70px;
}
.counseling-lead__ttl {
  margin-bottom: 40px;
}
.counseling-lead__box {
  padding: 48px 5%;
  background-color: var(--white-color);
  border-radius: var(--round-20);
  border: 2px dashed var(--accent02-color);
  position: relative;
  z-index: 1;
}
.counseling-lead__box::after {
  content: "";
  width: 24%;
  max-width: 100px;
  aspect-ratio: 111/96;
  background: url(../img/self-counseling/counseling-lead_deco.png) no-repeat top center/contain;
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  translate: 17.1171171171% 50%;
}
.counseling-lead__sentence {
  --sentence-line-height: 1.667;
}

/*------------------------------
  *
  * event-overview
  *
  ------------------------------*/
.event-overview__container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
}
.event-overview-data__item {
  display: flex;
  align-items: stretch;
}
.event-overview-data__item:not(:last-child) {
  margin-bottom: 10px;
}
.event-overview-data__item dt {
  color: var(--white-color);
  text-align: center;
  display: grid;
  place-content: center;
  font-size: var(--font-size-16);
  padding: 0.9166666667em 0.5em;
  border-radius: var(--round-10);
  width: 100px;
  background-color: var(--accent02-color);
}
.event-overview-data__item dd {
  width: calc(100% - 100px);
  padding: 0.9166666667em 1em;
}
.event-overview-item__note {
  margin-top: 24px;
  font-size: 13px;
  --sentence-line-height: 2;
}

/*------------------------------
* 
* news,blog
* 
------------------------------*/
/*------------------------------
*
* cmn-post
*
------------------------------*/
.cmn-post {
  --post-item-bg-color: var(--white-color);
  --post-width: 100%;
  --post-item-margin: 15px;
  --post-item-flex-margin-space: 8px;
  --post-link-padding: 16px;
  --tag-wrapper-width: calc(100% - 85px);
  --post-title-line: 1;
  --post-title-font-size: 14px;
  --post-date-font-size: 14px;
  width: var(--post-width);
}
.cmn-post-item {
  width: 100%;
  background-color: var(--post-item-bg-color, transparent);
  --hov-bg-color-to: var(--darken-theme-color);
  border-radius: var(--round-10);
}
.cmn-post-item:not(:last-child) {
  margin-bottom: var(--post-item-margin, 15px);
}
.cmn-post__box {
  width: 70%;
}
.cmn-post__box.w-100 {
  width: 100%;
}
.cmn-post__thumb {
  width: 25%;
  aspect-ratio: 1/1;
}
.cmn-post__flex {
  margin-bottom: var(--post-item-flex-margin-space, 12px);
}
.cmn-post__tag-wrapper {
  width: var(--tag-wrapper-width, auto);
}
.cmn-post__link {
  padding: var(--post-link-padding, 20px 30px);
}
.cmn-post__date {
  line-height: 1;
  font-size: var(--post-date-font-size, 16px);
  font-weight: var(--font-weight-medium);
}
.cmn-post__ttl {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: var(--font-weight-medium);
  line-height: 1.2;
  width: 100%;
  font-size: var(--post-title-font-size, 16px);
}

@media screen and (max-width: 500px) {
  .cmn-post {
    --post-item-marign: 24px;
  }
  .cmn-post__box {
    width: 100%;
  }
  .cmn-post__thumb {
    width: 100%;
    margin-bottom: 12px;
  }
}
/*------------------------------
*
* post-card
*
------------------------------*/
.post-cards-list {
  --col-ite-x-space: 4%;
  --col-ite-y-space: 24px;
}

.post-card-item__img {
  aspect-ratio: 34/23;
  overflow: hidden;
  margin-bottom: 16px;
}
.post-card-item__date {
  line-height: 1;
  font-size: 13px;
  padding-left: 24px;
  position: relative;
  z-index: 1;
  color: var(--main-color);
  margin-bottom: 7px;
}
.post-card-item__tag-wrapper {
  margin-bottom: 10px;
}
.post-card-item__ttl {
  font-size: var(--font-size-base);
  line-height: 1.625;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/*---------- detail ここから ----------*/
.tag {
  --tag-font-size: 12px;
  --tag-letter-space: var(--letter-spacing-base);
  --tag-height: 1;
  --tag-color: var(--accent01-color);
  display: inline-block;
  font-size: var(--tag-font-size);
  letter-spacing: var(--tag-letter-space);
  color: var(--tag-color);
  font-weight: var(--font-weight-medium);
  line-height: var(--tag-height);
}
.tag:not(:last-child) {
  position: relative;
  z-index: 1;
}
.tag:not(:last-child)::after {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: var(--main-color);
  display: block;
  position: absolute;
  z-index: 1;
  right: -7px;
  top: 50%;
  translate: 50% -50%;
}
.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: 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
*
------------------------------*/
.post-detail {
  position: relative;
  z-index: 5;
}
.post-detail__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.post-detail__date {
  order: 1;
  margin-bottom: 16px;
  line-height: 1;
}
.post-detail__tag-wrapper {
  order: 2;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 16px;
  gap: 10px;
}
.post-detail__ttl {
  order: 3;
  width: 100%;
  font-size: var(--font-size-24);
  border-left: 5px solid var(--main-color);
  font-weight: var(--font-weight-bold);
  padding-left: 0.75em;
  margin-bottom: 24px;
}
.post-detail__img {
  margin: 0 auto;
  width: 100%;
  margin-bottom: 24px;
}

.news__box, .message__box {
  background-color: var(--theme02-color);
  padding: 36px 5%;
  border-radius: var(--round-10);
}

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

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

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

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

.floating {
  width: 80px;
  position: fixed;
  z-index: 101;
  bottom: 10px;
  right: 10px;
}

/* ===========================================
*
* footer style
*
* ======================================== */
.footer {
  position: relative;
  background: url(../img/footer_bg.png) no-repeat bottom center/max(960px, 100%) auto, var(--theme01-color);
}
.footer-inner {
  flex-direction: column;
  align-items: center;
  padding-block: 64px;
}
.footer__logo {
  margin: 0 auto 20px;
}
.footer__address {
  margin-bottom: 24px;
  text-align: center;
  font-size: var(--font-size-18);
}
.footer-nav {
  width: 100%;
  margin-top: 40px;
}
.footer-nav__list {
  gap: 1em 4%;
  margin: 0 auto;
  max-width: 360px;
  display: flex;
  flex-wrap: wrap;
}
.footer-nav__list:not(:last-child) {
  margin-bottom: 1em;
}
.footer-nav__item {
  width: 100%;
}
.footer-nav__link {
  line-height: 1;
  font-size: 12px;
  padding-bottom: 0.75em;
  --hov-color-to: var(--accent-color, #ffa200);
  border-bottom: 1px solid var(--white-color);
}
.footer-nav__link:hover {
  border-color: var(--accent-color);
}
.footer-nav__link.current {
  color: var(--accent-color);
  border-color: var(--accent-color);
}
.footer-info {
  flex-direction: column;
  width: 100%;
}
.footer__copy {
  font-size: 11px;
  letter-spacing: var(--letter-spacing-base);
  width: 100%;
  display: block;
  text-align: center;
  line-height: 1.2;
  padding: 1em;
  color: var(--white-color);
  background-color: var(--main-color);
}/*# sourceMappingURL=style_sp.css.map */