@charset "UTF-8";
/* ------------------------------------------------------------------------------
*
* Layout
*
* ------------------------------------------------------------------------------ */
/* ===========================================
*
* base styles
*
* ======================================== */
/* css custom properties
-------------------------*/
:root {
  /* font-size 1rem = 16px */
  --font-size-base: 1rem;
  --font-size-17: 1.0625rem;
  --font-size-18: 1.125rem;
  --font-size-20: 1.25rem;
  --font-size-24: 1.5rem;
  --font-size-22: 1.375rem;
  --font-size-25: 1.5625rem;
  --font-size-26: 1.625rem;
  --font-size-27: 1.6875rem;
  --font-size-28: 1.75rem;
  --font-size-30: 1.875rem;
  --font-size-32: 2rem;
  --font-size-35: 2.1875rem;
  --font-size-36: 2.25rem;
  --font-size-40: 2.5rem;
  --font-size-45: 2.8125rem;
  --font-size-48: 3rem;
  --font-size-50: 3.125rem;
  --font-size-55: 3.4375rem;
  --font-size-56: 3.5rem;
  --font-size-60: 3.75rem;
  --font-size-64: 4rem;
  /* width base settings */
  --min-contents-width: 1280px;
  --wide-inner-width: 1280px;
  --inner-width: 1080px;
  /* border-radius */
  --round-5: 5px;
  --round-10: 10px;
  --round-20: 20px;
  --round-30: 30px;
  --round-full: 999em;
  /* logo width */
  --logo-width: 167px;
  /* map height */
  --map-height: 350px;
  /* btn defaults */
  --btn-height: 60px;
  --btn-line-height: 1;
  --btn-font-size: var(--font-size-base);
  --btn-font-weight: var(--font-weight-bold);
  --btn-letter-space: var(--letter-spacing-base);
  --btn-padding-x: 1em;
  --btn-padding-y: calc(
    (var(--btn-height) - var(--btn-font-size) * var(--btn-line-height)) / 2
  );
  --btn-width-xs: 180px;
  --btn-width-small: 200px;
  --btn-width-regular: 240px;
  --btn-width-medium: 300px;
  --btn-width-large: 350px;
  --btn-width-xl: 400px;
  --btn-font-family: var(--font-main);
  /* header */
  --header-height: 100px;
  /* breadcrumb settings */
  --bread-letter-space: var(--letter-space-base);
  --bread-font-size: 15px;
  --bread-font-weight: var(--font-weight-medium);
  --bread-color: var(--color-text-main);
  --bread-grater-color: var(--color-text-main);
  --bread-grater-content: "/";
  --bread-grater-space: 0 0.5em;
  --bread-hov-color: var(--color-accent);
  --bread-link-color: var(--color-text-main);
  --bread-last-item-color: var(--color-accent);
  --bread-padding: 1em 0 0;
  --bread-bg-color: transparent;
  --bread-width: 100%;
  /* prev next settings */
  --prev-next-link-width: 8em;
  --prev-next-link-gutter: 1.5em;
  --prev-next-link-padding: 0.75em 1em;
  --prev-next-link-round: 3em;
  --prev-next-link-color: #b3b3b3;
  --prev-next-link-bg-color: var(--color-gray);
  --prev-next-link-hov-color: var(--color-main);
  --prev-next-link-hov-bg-color: var(--color-white);
  /* pagenation settings */
  --pagenation-margin-top: 64px;
  --pagenation-item-width: 3em;
  --pagenation-item-height: 3em;
  --pagenation-item-round: 50%;
  --pagenation-item-font-size: var(--font-size-base);
  --pagenation-item-font-weight: var(--font-weight-medium);
  --pagenation-item-space: 6px;
  --pagenation-item-bg-color: var(--color-gray);
  --pagenation-item-color: #b3b3b3;
  --pagenation-item-current-color: var(--color-white);
  --pagenation-item-current-bg-color: var(--color-main);
}

html {
  padding-top: var(--header-height);
  scroll-padding-top: var(--header-height);
}

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(--color-text-main);
  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;
}

/* ===========================================
*
* header style
*
* ======================================== */
.header {
  width: 100%;
  background-color: var(--color-white);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  overflow: hidden;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}
.header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0%;
  z-index: -1;
  width: 1672px;
  height: 100%;
  background: url("/img/common/header_deco_left.png") no-repeat top left/auto, url("/img/common/header_deco_right.png") no-repeat bottom right/auto;
}
.header__inner {
  padding: 10px 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  width: 100%;
  max-width: 1080px;
  height: var(--header-height);
}
.header__right {
  width: 850px;
}
.header-info__contact-btn {
  margin-left: 16px;
  width: 200px;
  position: relative;
  z-index: 1;
}
.header-info__contact-btn::after {
  content: "";
  width: 82px;
  height: 49px;
  position: absolute;
  bottom: 0;
  right: 0;
  translate: 73.1707317073% 8.1632653061%;
  background: url("/img/common/deco_bird.png") no-repeat top center/contain;
}
.header-nav {
  margin-right: 20px;
}
.header-nav__item {
  position: relative;
  z-index: 1;
}
.header-nav__item:not(:last-child) {
  margin-right: 1em;
}
.header-nav__link {
  position: relative;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: var(--font-weight-bold);
}
.header-nav__link::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: var(--color-yellow);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -120%;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header-nav__link:hover {
  color: var(--color-main);
  opacity: 1;
}
.header-nav__link:hover::before {
  opacity: 1;
}
.header-nav__link.current {
  color: var(--color-main);
}
.header-nav__link.current::before {
  opacity: 1;
}

.pagetop{
  position: fixed;
  z-index: 101;

  right: 30px;
  bottom: 30px;
  width: 95px;
}
.pagetop > {
width: 100%;
}

/* ===========================================
*
* footer style
*
* ======================================== */
.footer {
  padding-block: 40px;
}
.footer-nav {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 25px;
  border-bottom: 1px dashed var(--color-main);
}
.footer-nav__list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0px 22px;
}
.footer-nav__link {
  line-height: 1;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-base);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer-nav__link:hover {
  opacity: 0.7;
}
.footer__bottom {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  max-width: 1080px;
  margin: 20px auto 0;
}
.footer__official-link {
  padding-right: 2em;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--color-main);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-base);
  font-size: var(--font-size-base);
  display: inline-block;
  position: relative;
  z-index: 1;
}
.footer__official-link::after {
  content: "";
  width: 1.0625em;
  height: 1.0625em;
  position: absolute;
  top: 0.75em;
  right: 0;
  translate: 0% -50%;
  background: url("/img/common/icon_window.png") no-repeat top center/contain;
}
.footer__official-link .small {
  font-size: 0.875rem;
}
.footer__copy {
  font-size: 0.875rem;
  letter-spacing: var(--letter-spacing-none);
  font-weight: var(--font-weight-regular);
}

/* ===========================================
*  
*  main layouts
* 
* ======================================== */
.wrapper {
  position: relative;
  z-index: 1;
}

/* ------------------------------------------------------------------------------
*
* Object
*
* ------------------------------------------------------------------------------ */
/* ----------------------------------------------------
*  Component（共通化されたコンポーネントスタイル）
*  ---------------------------------------------------- */
/* logo
-------------------------*/
.logo {
  width: var(--logo-width);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.logo a {
  display: block;
}
.logo img {
  width: 100%;
  display: block;
}
.logo:hover {
  opacity: 0.7;
}

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

.wide-inner {
  /* 1280px inner 可変のため子要素は%指定 */
  max-width: var(--wide-inner-width);
  width: 95%;
  margin: 0 auto;
}

/*------------------------------
*
* title
*
------------------------------*/
/* 
imgタイトル
-------------------------*/
/* SP時は高さを個別で指定する必要があります */
.ttl-img > img {
  display: block;
}

.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 {
  font-size: var(--font-size-40);
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.cmn-ttl--center {
  /* 中央揃え */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.cmn-ttl--left {
  /* 左揃え */
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
}
.cmn-ttl--right {
  /* 右揃え */
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  text-align: right;
}
.cmn-ttl__main {
  font-weight: var(--font-weight-black);
  margin-block: -0.25em;
  display: inline-block;
}

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

.tel {
  /* tel　style */
  --tel-font-size: var(--font-size-30);
  --tel-icon-space: 1.4em;
  --tel-icon-position: 0.5em;
  --tel-icon-width: 1.1em;
  --tel-icon-height: 0.9333333333em;
  font-family: var(--font-sub, sans-serif);
  font-weight: var(--font-weight-bold, 700);
  font-size: var(--tel-font-size, 28px);
  line-height: 1;
  position: relative;
  letter-spacing: var(--letter-spacing-none);
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.tel-icon {
  /* icon付き */
  padding-left: var(--tel-icon-space, 1.5em);
  position: relative;
  z-index: 1;
  display: inline-block;
}
.tel-icon::before {
  content: "";
  width: var(--tel-icon-width, 1em);
  height: var(--tel-icon-height, 1em);
  position: absolute;
  top: var(--tel-icon-position, 0.5em);
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.tel-icon--main::before {
  background: url(../img/common/icon_tel_main.png) no-repeat center/contain;
}
.tel-icon--white::before {
  background: url(../img/common/icon_tel_white.png) no-repeat center/contain;
}

/*
 snsクラス
-------------------------*/
.sns {
  --sns-icon-space: 20px;
  --sns-icon-size: 30px;
  gap: var(--sns-icon-space);
}
.sns__icon {
  width: calc(var(--sns-icon-size) * 2);
  height: calc(var(--sns-icon-size) * 2);
  background-color: var(--color-main);
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: grid;
  place-content: center;
}
.sns__icon:hover {
  background-color: var(--color-main-darken);
}
.sns__icon img {
  width: var(--sns-icon-size);
}

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

.main-table {
  --table-letter-spacing: var(--letter-spacing-regular);
  --table-th-font-weight: var(--font-weight-medium);
  --table-th-text-align: center;
  --table-th-x-padding: 1.5em;
  --table-th-y-padding: 1.125em;
  --table-th-bg-color: var(--color-main);
  --table-th-color: var(--color-white);
  --table-th-width: 300px;
  --table-td-x-padding: 1.5em;
  --table-td-y-padding: 1.125em;
  --table-td-bg-color: var(--color-white);
  --table-td-color: var(--color-text-main);
  --table-td-width: calc(100% - var(--table-th-width));
  --table-border-color: var(--color-main);
  --table-th-border-color: var(--color-white);
  --table-td-border-color: var(--color-main);
  --table-width: 100%;
  width: var(--table-width);
  border-block: 1px solid var(--table-border-color);
  letter-spacing: var(--table-letter-spacing);
}
.main-table tr {
  width: 100%;
}
.main-table tr:not(:first-child) th {
  border-top: 1px solid var(--table-th-border-color);
}
.main-table tr:not(:first-child) td {
  border-top: 1px solid var(--table-td-border-color);
}
.main-table th,
.main-table td {
  vertical-align: middle;
}
.main-table th {
  width: var(--table-th-width);
  background-color: var(--table-th-bg-color);
  color: var(--table-th-color);
  font-weight: var(--table-th-font-weight);
  text-align: var(--table-th-text-align);
  padding-inline: var(--table-th-x-padding);
  padding-block: var(--table-th-y-padding);
}
.main-table td {
  width: var(--table-td-width);
  background-color: var(--table-td-bg-color);
  color: var(--table-td-color);
  padding-inline: var(--table-td-x-padding);
  padding-block: var(--table-td-y-padding);
}

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

/* 
画像
-------------------------*/
.cmn-img img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

/*------------------------------
*
* time
*
------------------------------*/
.cmn-time {
  /* 営業時間・定休日をまとめたdl */
  gap: 5px 18px;
  font-size: 13px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.cmn-time__item {
  gap: 5px 10px;
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-medium);
}
.cmn-time__item dt {
  color: var(--main-color);
  background-color: var(--color-theme);
  padding: mg(24, 13, 1.5) 5px;
  text-align: center;
  min-width: 95px;
}

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

.col-container-3-1,
.col-container-3-2 {
  /* PC3列　SP1列 */
  /* PC3列　SP2列 */
  /* 上下の余白 */
  --col-y-space: 40px;
  /* 左右の余白 */
  --col-x-space: 30px;
  gap: var(--col-y-space, 40px) var(--col-x-space, 30px);
}
.col-container-3-1 > .col-item,
.col-container-3-2 > .col-item {
  width: calc((100% - var(--col-x-space, 30px) * 2) / 3);
}

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

/*------------------------------
*
* btn style
*
------------------------------*/
.cmn-btn--round {
  border-radius: 1rem;
}
.cmn-btn--round-full {
  border-radius: 9999px;
}
.cmn-btn--primary {
  display: block;
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  letter-spacing: var(--btn-letter-space);
  line-height: var(--btn-line-height);
  font-family: var(--btn-font-family);
  text-align: center;
  padding-block: var(--btn-padding-y);
  padding-inline: var(--btn-padding-x);
  position: relative;
  z-index: 1;
  display: block;
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  letter-spacing: var(--btn-letter-space);
  line-height: var(--btn-line-height);
  font-family: var(--btn-font-family);
  text-align: center;
  padding-block: var(--btn-padding-y);
  padding-inline: var(--btn-padding-x);
  position: relative;
  z-index: 1;
  background-color: var(--color-main);
  color: var(--color-white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cmn-btn--primary:hover {
  background-color: var(--color-main-darken);
  color: var(--color-white);
  opacity: 1;
}
.cmn-btn--secondary {
  display: block;
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  letter-spacing: var(--btn-letter-space);
  line-height: var(--btn-line-height);
  font-family: var(--btn-font-family);
  text-align: center;
  padding-block: var(--btn-padding-y);
  padding-inline: var(--btn-padding-x);
  position: relative;
  z-index: 1;
  background-color: var(--color-yellow);
  color: var(--color-main);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cmn-btn--secondary:hover {
  background-color: var(--color-yellow-darken);
  color: var(--color-main);
  opacity: 1;
}
.cmn-btn--icon-line > span {
  padding-left: 2.375em;
  position: relative;
  z-index: 1;
  display: inline-block;
}
.cmn-btn--icon-line > span::before {
  content: "";
  width: 1.875em;
  height: 1.875em;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/common/icon_line.svg) no-repeat center/contain;
}
.cmn-btn--icon-mail > span {
  padding-left: 1.375em;
  position: relative;
  z-index: 1;
  display: inline-block;
}
.cmn-btn--icon-mail > span::before {
  content: "";
  width: 1.25em;
  height: 1em;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/common/icon_mail.png) no-repeat center/contain;
}
.cmn-btn--icon-question > span {
  padding-left: 2.0833333333em;
  position: relative;
  z-index: 1;
  display: inline-block;
}
.cmn-btn--icon-question > span::before {
  content: "";
  width: 1.5416666667em;
  height: 1.4583333333em;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/common/icon_question.png) no-repeat center/contain;
}
.cmn-btn--arrow > span {
  display: inline-block;
  padding-right: 40px;
  position: relative;
  z-index: 1;
}
.cmn-btn--arrow > span::after {
  content: "";
  width: 1.5416666667em;
  height: 1.4583333333em;
  background: url(../img/common/arrow_right_yellow.png) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0% -50%;
}
.cmn-btn--xs {
  max-width: var(--btn-width-xs);
}
.cmn-btn--sm {
  width: var(--btn-width-small);
}
.cmn-btn--rg {
  width: var(--btn-width-regular);
}
.cmn-btn--md {
  width: var(--btn-width-medium);
}
.cmn-btn--lg {
  width: var(--btn-width-large);
}
.cmn-btn--xl {
  width: var(--btn-width-xl);
}
.cmn-btn--center {
  margin: 0 auto;
}
.cmn-btn--left {
  margin-right: auto;
}
.cmn-btn--right {
  margin-left: auto;
}

/*------------------------------
*
* mv main visual
*
------------------------------*/
.mv {
  width: 100%;
  height: clamp(466px, 36.4583333333vw, 700px);
  position: relative;
  z-index: 1;
}
.mv__catch {
  position: absolute;
  white-space: nowrap;
  bottom: 13.1428571429%;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  z-index: 20;
}

/*------------------------------
*
* main style sv(sub visual)
*
------------------------------*/
.sv {
  width: 100%;
  position: relative;
  z-index: 1;
  height: 300px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  background-color: var(--color-pale-sky);
}
.sv::before {
  content: "";
  width: 82px;
  height: 157px;
  background: url("/img/sv/sv_deco_right.png") no-repeat top center/contain;
  bottom: 0;
  left: max(10px, 50% - 650px);
  position: absolute;
  z-index: -1;
}
.sv__img {
  position: absolute;
  right: calc(50% - 540px);
  top: 0;
  height: 100%;
  width: 488px;
}
.sv__catch {
  position: absolute;
  top: 50%;
  left: calc(50% - 540px);
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  z-index: 20;
  font-size: var(--font-size-60);
  letter-spacing: var(--letter-spacing-regular);
  color: var(--color-orange);
  text-shadow: rgb(255, 255, 255) 10px 0px 0px, rgb(255, 255, 255) 9.95004px 0.998334px 0px, rgb(255, 255, 255) 9.80067px 1.98669px 0px, rgb(255, 255, 255) 9.55336px 2.9552px 0px, rgb(255, 255, 255) 9.21061px 3.89418px 0px, rgb(255, 255, 255) 8.77583px 4.79426px 0px, rgb(255, 255, 255) 8.25336px 5.64642px 0px, rgb(255, 255, 255) 7.64842px 6.44218px 0px, rgb(255, 255, 255) 6.96707px 7.17356px 0px, rgb(255, 255, 255) 6.2161px 7.83327px 0px, rgb(255, 255, 255) 5.40302px 8.41471px 0px, rgb(255, 255, 255) 4.53596px 8.91207px 0px, rgb(255, 255, 255) 3.62358px 9.32039px 0px, rgb(255, 255, 255) 2.67499px 9.63558px 0px, rgb(255, 255, 255) 1.69967px 9.8545px 0px, rgb(255, 255, 255) 0.707372px 9.97495px 0px, rgb(255, 255, 255) -0.291995px 9.99574px 0px, rgb(255, 255, 255) -1.28844px 9.91665px 0px, rgb(255, 255, 255) -2.27202px 9.73848px 0px, rgb(255, 255, 255) -3.2329px 9.463px 0px, rgb(255, 255, 255) -4.16147px 9.09297px 0px, rgb(255, 255, 255) -5.04846px 8.63209px 0px, rgb(255, 255, 255) -5.88501px 8.08496px 0px, rgb(255, 255, 255) -6.66276px 7.45705px 0px, rgb(255, 255, 255) -7.37394px 6.75463px 0px, rgb(255, 255, 255) -8.01144px 5.98472px 0px, rgb(255, 255, 255) -8.56889px 5.15501px 0px, rgb(255, 255, 255) -9.04072px 4.2738px 0px, rgb(255, 255, 255) -9.42222px 3.34988px 0px, rgb(255, 255, 255) -9.70958px 2.39249px 0px, rgb(255, 255, 255) -9.89993px 1.4112px 0px, rgb(255, 255, 255) -9.99135px 0.415807px 0px, rgb(255, 255, 255) -9.98295px -0.583741px 0px, rgb(255, 255, 255) -9.8748px -1.57746px 0px, rgb(255, 255, 255) -9.66798px -2.55541px 0px, rgb(255, 255, 255) -9.36457px -3.50783px 0px, rgb(255, 255, 255) -8.96758px -4.4252px 0px, rgb(255, 255, 255) -8.481px -5.29836px 0px, rgb(255, 255, 255) -7.90968px -6.11858px 0px, rgb(255, 255, 255) -7.25932px -6.87766px 0px, rgb(255, 255, 255) -6.53644px -7.56803px 0px, rgb(255, 255, 255) -5.74824px -8.18277px 0px, rgb(255, 255, 255) -4.90261px -8.71576px 0px, rgb(255, 255, 255) -4.00799px -9.16166px 0px, rgb(255, 255, 255) -3.07333px -9.51602px 0px, rgb(255, 255, 255) -2.10796px -9.7753px 0px, rgb(255, 255, 255) -1.12153px -9.93691px 0px, rgb(255, 255, 255) -0.123887px -9.99923px 0px, rgb(255, 255, 255) 0.87499px -9.96165px 0px, rgb(255, 255, 255) 1.86512px -9.82453px 0px, rgb(255, 255, 255) 2.83662px -9.58924px 0px, rgb(255, 255, 255) 3.77978px -9.25815px 0px, rgb(255, 255, 255) 4.68517px -8.83455px 0px, rgb(255, 255, 255) 5.54374px -8.32267px 0px, rgb(255, 255, 255) 6.34693px -7.72764px 0px, rgb(255, 255, 255) 7.0867px -7.0554px 0px, rgb(255, 255, 255) 7.75566px -6.31267px 0px, rgb(255, 255, 255) 8.34713px -5.50686px 0px, rgb(255, 255, 255) 8.8552px -4.64602px 0px, rgb(255, 255, 255) 9.27478px -3.73877px 0px, rgb(255, 255, 255) 9.6017px -2.79415px 0px, rgb(255, 255, 255) 9.83268px -1.82162px 0px, rgb(255, 255, 255) 9.96542px -0.830894px 0px;
}

/*------------------------------
*
* pagenation style
*
------------------------------*/
.pagenation {
  margin-top: var(--pagenation-margin-top);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagenation li {
  display: block;
  width: var(--pagenation-item-width);
  height: var(--pagenation-item-height);
  border-radius: var(--pagenation-item-round);
  font-size: var(--pagenation-item-font-size);
  line-height: var(--pagenation-item-height);
  font-weight: var(--pagenation-item-font-weight);
  margin: 0 var(--pagenation-item-space);
  color: var(--pagenation-item-color);
  background: var(--pagenation-item-bg-color);
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pagenation li > a {
  width: var(--pagenation-item-width);
  height: var(--pagenation-item-height);
  display: grid;
  place-content: center;
}
.pagenation li:has(a):hover {
  background-color: var(--pagenation-item-current-bg-color);
  color: var(--pagenation-item-current-color);
}
.pagenation .current {
  background-color: var(--pagenation-item-current-bg-color);
  color: var(--pagenation-item-current-color);
}

/*------------------------------
*
* post-card
*
------------------------------*/
.post-cards-list {
  --col-x-space: 30px;
  --col-y-space: 40px;
}

.post-card-item__thumb {
  aspect-ratio: 26/18;
  overflow: hidden;
  margin-bottom: 16px;
  border-radius: var(--round-20);
}
.post-card-item__date {
  line-height: 1;
  font-size: var(--font-size-base);
  position: relative;
  z-index: 1;
  font-family: var(--font-sub);
}
.post-card-item__body {
  width: 100%;
}
.post-card-item__flex {
  gap: 8px 12px;
  margin-bottom: 14px;
}
.post-card-item__ttl {
  font-size: var(--font-size-base);
  width: 100%;
  font-weight: var(--font-weight-bold);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/*------------------------------
*
* tag
*
------------------------------*/
.tag {
  --tag-font-size: 14px;
  --tag-height: 1;
  --tag-x-padding: 0px;
  --tag-round: 0px;
  --tag-color: var(--color-main);
  --tag-bg-color:transparent;
  display: inline-block;
  font-size: var(--tag-font-size);
  color: var(--tag-color);
  background-color: var(--tag-bg-color);
  border-radius: var(--tag-round);
  letter-spacing: var(--letter-spacing-regular);
  font-weight: var(--font-weight-regular);
  line-height: var(--tag-height);
  padding: 0 var(--tag-x-padding);
}

.tag-link {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  --tag-height: 24px;
  --tag-x-padding:10px;
  --tag-color: var(--color-white);
  --tag-bg-color: var(--color-main);
}
.tag-link.tag {
  padding: 0;
}
.tag-link > a {
  padding: 0 var(--tag-x-padding);
}
.tag-link:hover {
  background-color: var(--color-main-darken);
}

.tag-list {
  --tag-space: 8px 10px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: var(--tag-space);
}

/*------------------------------
*
* tag btn
*
------------------------------*/
.tag-btns {
  margin-bottom: 40px;
  gap: 10px;
}

.tag-btn {
  --tag-btn-color: #b3b3b3;
  --tag-btn-bg-color: var(--color-gray);
  --tag-btn-current-color: var(--color-white);
  --tag-btn-current-bg-color: var(--color-main);
  --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;
  -webkit-transition: all 0.3s;
  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);
}

/*------------------------------
*
* prev next style
*
------------------------------*/
.prev-next__area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  line-height: 1.2;
}
.prev-next__item.prev, .prev-next__item.next {
  width: var(--prev-next-link-width);
}
.prev-next__item:not(:last-child) {
  margin-right: var(--prev-next-link-gutter);
}
.prev-next__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  color: var(--prev-next-link-color);
  background-color: var(--prev-next-link-bg-color);
  padding: var(--prev-next-link-padding);
}
.prev-next__link:hover {
  background-color: var(--color-main);
  color: var(--color-white);
  opacity: 1;
}
.prev-next__link.prev, .prev-next__link.next {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: var(--prev-next-link-round);
  text-align: center;
}
.prev-next__link.back {
  text-align: center;
  border-radius: var(--prev-next-link-round);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.prev-next__link.prev, .prev-next__link.next, .prev-next__link.back {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/*------------------------------
*
* breadcrumb style
*
------------------------------*/
.bread-crumb {
  width: var(--bread-width, 100%);
  background-color: var(--bread-bg-color, transparent);
}
.bread-crumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  font-size: var(--bread-font-size, 14px);
  letter-spacing: var(--bread-letter-space, 0.05em);
  font-weight: var(--bread-font-weight, 400);
  overflow: hidden;
  padding: var(--bread-padding, 1em 0);
}
.bread-crumb__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--bread-color);
  white-space: nowrap;
}
.bread-crumb__item:not(:last-child)::after {
  content: var(--bread-grater-content, ">");
  margin: var(--bread-grater-space, 0.5em);
  color: var(--bread-grater-color);
}
.bread-crumb__item:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  color: var(--bread-last-item-color);
}
.bread-crumb__link {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  line-height: 1.2;
  color: var(--bread-link-color);
}
.bread-crumb__link:hover {
  opacity: 1;
  color: var(--bread-hov-color);
}

/* ----------------------------------------------------
*  Utility（スタイルの調整用クラス　common.cssにあるものは省略）
*  ---------------------------------------------------- */
/* margin style
  -------------------------*/
.mx--center {
  margin-inline: auto;
}

.mt-tiny {
  margin-top: 10px;
}

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

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

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

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

.mt-2xl {
  margin-top: 60px;
}

.mt-3xl {
  margin-top: 70px;
}

.mt-4xl {
  margin-top: 80px;
}

.mt-huge {
  margin-top: 100px;
}

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

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

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

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

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

.mb-2xl {
  margin-bottom: 60px;
}

.mb-3xl {
  margin-bottom: 70px;
}

.mb-4xl {
  margin-bottom: 80px;
}

.mb-huge {
  margin-bottom: 100px;
}

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

.pt-tiny {
  margin-top: 10px;
}

.pt-sm {
  margin-top: 20px;
}

.pt-md {
  margin-top: 30px;
}

.pt-lg {
  margin-top: 40px;
}

.pt-xl {
  margin-top: 50px;
}

.pt-2xl {
  margin-top: 60px;
}

.pt-3xl {
  margin-top: 70px;
}

.pt-4xl {
  margin-top: 80px;
}

.pt-huge {
  margin-top: 100px;
}

.pb-tiny {
  margin-bottom: 10px;
}

.pb-sm {
  margin-bottom: 20px;
}

.pb-md {
  margin-bottom: 30px;
}

.pb-lg {
  margin-bottom: 40px;
}

.pb-xl {
  margin-bottom: 50px;
}

.pb-2xl {
  margin-bottom: 60px;
}

.pb-3xl {
  margin-bottom: 70px;
}

.pb-4xl {
  margin-bottom: 80px;
}

.pb-huge {
  margin-bottom: 100px;
}

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

/* ----------------------------------------------------
*  Project （ページごとのスタイルなど）
*  ---------------------------------------------------- */
/* ===========================================
*
* top page style
*
* ======================================== */
/*------------------------------
*
* recruit
*
------------------------------*/
.recruit {
  padding: 90px 0 140px;
  background: url("/img/top/flag_repeat.png") repeat-x top center/auto;
}
.recruit__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
  text-align: center;
}
.recruit__ttl__sub {
  margin-bottom: 16px;
  font-weight: var(--font-weight-black);
  letter-spacing: var(--letter-spacing-base);
  font-size: var(--font-size-20);
  line-height: 1.8;
  width: 10.65em;
  background: url("/img/top/recruit_ttl_bg.png") no-repeat top center/contain;
}
.recruit__ttl__main {
  font-size: var(--font-size-56);
  letter-spacing: var(--letter-spacing-regular);
  line-height: 1;
}

/*------------------------------
*
* top-news
*
------------------------------*/
.top-news__container {
  padding: 80px calc(50% - 540px);
  background-color: var(--color-pale-sky);
  border-radius: var(--round-30);
  position: relative;
  z-index: 1;
}
.top-news__container::after, .top-news__container::before {
  content: "";
  z-index: -1;
  position: absolute;
}
.top-news__container::before {
  width: 130px;
  aspect-ratio: 130/80;
  background: url("/img/top/news_cloud_left.png") no-repeat top center/contain;
  bottom: 121px;
  left: 0;
  translate: -50% 0;
}
.top-news__container::after {
  width: 348px;
  aspect-ratio: 348/187;
  background: url("/img/top/news_cloud_right.png") no-repeat top center/contain;
  top: 0;
  right: 0;
  translate: 114px -59px;
}
.top-news__ttl {
  position: absolute;
  top: 34px;
  z-index: 1;
  right: calc(50% + 310px);
}
.top-news__btn {
  margin-top: 184px;
  width: 190px;
}
.top-news .post-cards-list {
  width: 820px;
  --col-x-space: 20px;
  --col-y-space: 36px;
}

/*------------------------------
*
* intro
*
------------------------------*/
.intro {
  padding-top: 140px;
  padding-bottom: 140px;
  position: relative;
  z-index: 1;
}
.intro::after, .intro::before {
  content: "";
  position: absolute;
  z-index: -1;
}
.intro::before {
  width: 626px;
  aspect-ratio: 626/767;
  top: 100px;
  left: calc(50% - 960px);
  background: url("/img/top/intro_bg_left.png") no-repeat top center/contain;
}
.intro::after {
  width: 653px;
  aspect-ratio: 653/792;
  top: 115px;
  right: calc(50% - 960px);
  background: url("/img/top/intro_bg_right.png") no-repeat top center/contain;
}
.intro__ttl {
  margin-bottom: 60px;
}
.intro__ttl::before {
  content: "";
}
.intro__sentence {
  text-align: center;
}
.intro__card-container {
  --col-x-space: 30px;
  --col-y-space: 60px;
  margin-top: 140px;
  position: relative;
  z-index: 1;
}
.intro__card-container::after, .intro__card-container::before {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.intro__card-container::before {
  width: 258px;
  aspect-ratio: 258/459;
  background: url("/img/top/intro_baloon_left.png") no-repeat top center/contain;
  bottom: -55px;
  left: -238px;
  z-index: 1;
}
.intro__card-container::after {
  width: 128px;
  aspect-ratio: 128/328;
  background: url("/img/top/intro_baloon_right.png") no-repeat top center/contain;
  top: -38px;
  right: -187px;
}
.intro__card {
  border-radius: 26px;
  border: 6px solid #e2c68e;
  background: url("/img/top/link_bg.png") no-repeat top center/cover;
}
.intro__card__ttl {
  font-family: var(--font-sub);
  text-align: center;
  font-size: var(--font-size-36);
  letter-spacing: var(--letter-spacing-base);
  line-height: 1;
  margin-bottom: 24px;
  text-align: center;
  display: inline-block;
  padding-right: 1.1111111111em;
  position: relative;
  z-index: 1;
}
.intro__card__ttl::before {
  content: "";
  width: 0.8888888889em;
  height: 0.8888888889em;
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0% -50%;
  background: url("/img/common/arrow_right_main.png") no-repeat top center/contain;
}
.intro__card__ttl .small {
  font-size: 0.8333333333em;
}
.intro__card__content {
  position: relative;
  z-index: 1;
  border-radius: 0 0 var(--round-20) var(--round-20);
  padding: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.intro__card__icon {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -80%;
}
.intro__card__img {
  border-radius: var(--round-20) var(--round-20) 0 0;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 328/228;
}
.intro__card__img > img {
  -o-object-position: bottom center;
     object-position: bottom center;
}
/* cta-box 
-------------------------*/
.cta-box {
  padding: 40px 80px 32px;
  border-radius: var(--round-20);
  position: relative;
  z-index: 1;
  border: 8px solid var(--color-yellow);
  background-color: #fffaf3;
}
.cta-box::before, .cta-box::after {
  content: "";
  position: absolute;
  z-index: 1;
}
.cta-box::after {
  width: 92px;
  aspect-ratio: 92/79;
  background: url("/img/top/recruit_deco_right.png") no-repeat top center/contain;
  top: 0;
  right: 0;
  translate: 34.7826086957% -44.3037974684%;
}
.cta-box::before {
  width: 110px;
  aspect-ratio: 110/94;
  background: url("/img/top/recruit_deco_left.png") no-repeat top center/contain;
  bottom: 0;
  left: 0;
  translate: -43.6363636364% 24.4680851064%;
}

/* cta-actions
-------------------------*/
.cta-actions {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 30px;
}
.cta-actions__btn {
  width: 430px;
  --btn-height: 80px;
  --btn-font-size: var(--font-size-24);
  position: relative;
  z-index: 1;
}
.cta-actions__btn::before {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.cta-actions__btn__note {
  text-align: center;
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-14);
  letter-spacing: var(--letter-spacing-base);
  margin-top: 12px;
}
.cta-actions__btn--guide::before {
  width: 62px;
  aspect-ratio: 62/102;
  background: url("/img/top/recruit_illust01.png") no-repeat top center/contain;
  left: 0;
  top: 0;
  translate: 38px -100%;
}
.cta-actions__btn--contact::before {
  width: 123px;
  aspect-ratio: 123/74;
  background: url("/img/top/recruit_illust02.png") no-repeat top center/contain;
  right: 0;
  bottom: 0;
  translate: 27px 37px;
}
.cta-actions__btn--contact .cmn-btn--icon-mail > span {
  padding-left: 1.5em;
}

/*------------------------------
*
* top-tips
*
------------------------------*/
.top-tips {
  padding-top: 0;
  padding-bottom: 140px;
}
.top-tips__container {
  border-radius: var(--round-30);
  border: 8px solid var(--color-orange);
  padding: 72px calc(50% - 540px);
  background-color: #fffaf3;
  position: relative;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 1;
}
.top-tips__container::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 211px;
  aspect-ratio: 211/221;
  background: url("/img/top/tips_illust_bambi.png") no-repeat top center/contain;
  bottom: -28px;
  left: -114px;
}
.top-tips__right {
  width: 460px;
  position: relative;
  z-index: 1;
}
.top-tips__right::after, .top-tips__right::before {
  content: "";
  position: absolute;
  z-index: 5;
}
.top-tips__right::before {
  width: 157px;
  aspect-ratio: 157/141;
  background: url("/img/top/tips_illust_rabit.png") no-repeat top center/contain;
  bottom: -100px;
  left: -83px;
}
.top-tips__right::after {
  width: 257px;
  aspect-ratio: 257/269;
  background: url("/img/top/tips_illust_bear.png") no-repeat top center/contain;
  bottom: -100px;
  right: -185px;
}
.top-tips__ttl {
  margin-bottom: 60px;
}
.top-tips__ttl__sub {
  margin-bottom: 14px;
  display: block;
}
.top-tips__btn {
  width: 320px;
  margin: 186px auto 0;
  position: relative;
  z-index: 10;
}
.top-tips__img {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -155px;
  width: 500px;
  z-index: 1;
}

/*------------------------------
*
* unknown
*
------------------------------*/
.unknown {
  background: url("/img/top/flag_repeat.png") repeat-x top center/auto;
  padding-bottom: 140px;
  position: relative;
  z-index: 1;
}
.unknown::after, .unknown::before {
  content: "";
  position: absolute;
  z-index: -1;
}
.unknown::before {
  width: 123px;
  aspect-ratio: 123/262;
  background: url("/img/top/unknown_left.png") no-repeat top center/contain;
  top: 186px;
  left: calc(50% - 772px);
}
.unknown::after {
  width: 204px;
  aspect-ratio: 204/332;
  background: url("/img/top/unknown_left.png") no-repeat top center/contain;
  top: 116px;
  right: calc(50% - 823px);
}
.unknown__ttl {
  margin-bottom: 60px;
}
.unknown__sentence {
  text-align: center;
  margin-bottom: 40px;
}

/* ===========================================
*
* philosophy page
*
* ======================================== */
/*------------------------------
*
* philosophy
*
------------------------------*/
.philosophy-contents {
  padding: 80px calc(50% - 540px);
  border-radius: var(--round-30);
}
.philosophy-contents__flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.philosophy-contents:nth-of-type(odd) {
  background: url("/img/philosophy/philosophy_contents_deco_right.png") no-repeat top right 30px/auto, var(--color-theme);
}
.philosophy-contents:nth-of-type(odd) .philosophy-contents__flex {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.philosophy-contents:nth-of-type(even) {
  background: url("/img/philosophy/philosophy_contents_deco_left.png") no-repeat top left 30px/auto, var(--color-theme);
}
.philosophy-contents:not(:last-child) {
  margin-bottom: 80px;
}

.philosophy__thumb {
  width: 520px;
}
.philosophy__content {
  width: 525px;
}
.philosophy__head {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.philosophy__num {
  display: block;
  width: 113px;
  margin-bottom: 18px;
}
.philosophy__ttl {
  font-size: var(--font-size-36);
  font-weight: var(--font-weight-black);
  letter-spacing: var(--letter-spacing-regular);
  line-height: 1.33;
  text-align: center;
}
.philosophy__gallery {
  margin-top: 60px;
  --col-x-space: 30px;
  --col-y-space: 30px;
}
.philosophy__sentence{
  font-size: var(--font-size-24);
}
/*------------------------------
*
* contact
*
------------------------------*/
.contact {
  padding: 80px 0 60px;
  background-color: var(--color-pale-sky);
  z-index: 20;
  position: relative;
}
.contact::after, .contact::before {
  content: "";
  position: absolute;
  z-index: -1;
}
.contact::before {
  width: min(318px, 16.5625%);
  aspect-ratio: 318/694;
  top: -93px;
  left: max(-30px, 50% - 885px);
  background: url("/img/common/contact_baloon_left.png") no-repeat top center/contain;
}
.contact::after {
  width: min(230px, 11.9791666667%);
  aspect-ratio: 230/571;
  top: -36px;
  right: max(-25px, 50% - 898px);
  background: url("/img/common/contact_baloon_right.png") no-repeat top center/contain;
}
.contact__container {
  --col-x-space: 30px;
  --col-y-space: 30px;
}
.contact-item {
  background-color: var(--color-white);
  border-radius: var(--round-30);
  padding: 40px;
  position: relative;
  z-index: 1;
}
.contact-item::after, .contact-item::before {
  z-index: -1;
  position: absolute;
  content: "";
}
.contact-item__ttl {
  margin-bottom: 40px;
}
.contact-item__ttl > img {
  display: block;
}
.contact-item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.contact-item__location {
  font-weight: var(--font-weight-regular);
  line-height: 1;
  margin-bottom: 20px;
}
.contact-item__map-link {
  padding-left: 1.5em;
  position: relative;
  z-index: 1;
  display: inline-block;
  line-height: 1;
  margin-bottom: 20px;
}
.contact-item__map-link::before {
  content: "";
  position: absolute;
  top: 0.6125em;
  left: 0;
  translate: 0% -50%;
  width: 1em;
  height: 1.5em;
  background: url("/img/common/icon_pin.png") no-repeat top center/contain;
}
.contact-item__map-link > span {
  text-decoration-thickness: 2px !important;
}
.contact-item__tel .replace-txt {
  display: block;
  width: 100%;
  height: 13px;
  margin-top: 12px;
}
.contact-item__tel .replace-txt > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.contact-item--arai::before {
  width: 104px;
  aspect-ratio: 104/191;
  background: url("/img/common/contact_baloon01.png") no-repeat top center/contain;
  top: 0;
  right: 0;
  translate: -25% -61.2565445026%;
}
.contact-item--arai::after {
  width: 166px;
  aspect-ratio: 166/90;
  background: url("/img/common/contact_cloud01.png") no-repeat top center/contain;
  bottom: 0;
  left: 0;
  translate: -53.6144578313% 42.2222222222%;
}
.contact-item--nakano::before {
  width: 68px;
  aspect-ratio: 68/173;
  background: url("/img/common/contact_baloon02.png") no-repeat top center/contain;
  bottom: 0;
  right: 0;
  translate: 20.5882352941% 46.8208092486%;
}
.contact-item--nakano::after {
  width: 297px;
  aspect-ratio: 297/179;
  background: url("/img/common/contact_cloud02.png") no-repeat top center/contain;
  top: 0;
  right: 0;
  translate: 20.202020202% -78.7709497207%;
}
.contact-list {
  margin-top: 36px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5em 1em;
  font-weight: var(--font-weight-regular);
}
/* ===========================================
*
* message-page
*
* ======================================== */
/*------------------------------
*
* chairman-bnr
*
------------------------------*/
.chairman-bnr {
  background-color: var(--color-theme);
  border: 8px solid var(--color-orange);
  border-radius: var(--round-30);
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 50px;
  margin-block: 80px;
  width: 740px;
}
.chairman-bnr::after, .chairman-bnr::before {
  content: "";
  position: absolute;
  z-index: 1;
}
.chairman-bnr::before {
  width: 211px;
  aspect-ratio: 211/221;
  bottom: 0;
  left: 0;
  translate: -44.3438914027% 10px;
  background: url("/img/message/bnr_left_illust.png") no-repeat top center/contain;
}
.chairman-bnr::after {
  width: 143px;
  aspect-ratio: 143/333;
  top: 0;
  right: 0;
  translate: 46.1538461538% -12.9129129129%;
  background: url("/img/message/bnr_right_illust.png") no-repeat top center/contain;
}
.chairman-bnr__img {
  width: 320px;
}
.chairman-bnr__name {
  font-size: var(--font-size-30);
  font-weight: var(--font-weight-black);
  letter-spacing: var(--letter-spacing-base);
  text-align: center;
}
.chairman-bnr__name::before {
  content: "";
  margin: 0 auto 17px;
  display: block;
  background: url("/img/common/ttl_flag.png") no-repeat top center/contain;
  width: 6.5333333333em;
  height: 1.3333333333em;
}

/*------------------------------
*
* message
*
------------------------------*/
.message {
  padding-top: 0;
}

.message-contents {
  padding: 80px calc(50% - 540px);
  border-radius: var(--round-30);
  background-color: var(--color-theme);
}
.message-contents__ttl {
  font-size: var(--font-size-36);
  font-weight: var(--font-weight-black);
  letter-spacing: var(--letter-spacing-regular);
  text-align: center;
  margin-bottom: 41px;
}
.message-contents__ttl::before {
  content: "";
  margin: 0 auto 15px;
  display: block;
  background: url("/img/common/ttl_flag.png") no-repeat top center/contain;
  width: 5.4444444444em;
  height: 1.1111111111em;
}
.message-contents:not(:last-child) {
  margin-bottom: 80px;
}

.message-comment {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.message-comment__icon {
  width: 130px;
}
.message-comment__text {
  width: 900px;
  padding: 32px;
  border: 8px solid var(--color-sub);
  border-radius: var(--round-30);
  background-color: var(--color-white);
  position: relative;
  z-index: 1;
}
.message-comment__text::before {
  content: "";
  width: 27px;
  height: 29px;
  background: url("/img/message/msg_baloon.png") no-repeat top center/contain;
  position: absolute;
  left: 0;
  top: 32px;
  translate: -26px 0;
}
.message-comment__img {
  width: 740px;
  margin: 40px auto 0;
  position: relative;
  z-index: 1;
}
.message-comment__img::before, .message-comment__img::after {
  position: absolute;
  z-index: 1;
  content: "";
}
.message-comment__img::before {
  width: 257px;
  aspect-ratio: 257/269;
  bottom: 0;
  left: 0;
  translate: -200px 0;
  background: url("/img/message/msg_left_illust.png") no-repeat top center/contain;
}
.message-comment__img::after {
  width: 234px;
  aspect-ratio: 234/300;
  bottom: 0;
  right: 0;
  translate: 217px 0;
  background: url("/img/message/msg_right_illust.png") no-repeat top center/contain;
}
.message-comment__img > img {
  border-radius: var(--round-30);
}
.message-comment:not(:last-child) {
  margin-bottom: 50px;
}

/* ===========================================
*
* daily page
*
* ======================================== */
/*------------------------------
*
* daily
*
------------------------------*/
.daily-contents {
  padding: 80px calc(50% - 540px);
  background-color: var(--color-theme);
  border-radius: var(--round-30);
  position: relative;
  z-index: 1;
}
.daily-contents::before {
  content: "";
  width: 1080px;
  height: 188px;
  background: url("/img/daily/daily_cloud_left.png") no-repeat bottom left/30.1851851852% auto, url("/img/daily/daily_cloud_right.png") no-repeat top right/32.2222222222% auto;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  z-index: -2;
}
.daily-contents__ttl {
  text-align: center;
  font-weight: var(--font-weight-black);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.daily-contents__ttl__time {
  font-size: var(--font-size-20);
  letter-spacing: var(--letter-spacing-base);
  line-height: 1;
  width: 8.3em;
  height: 2.45em;
  padding-left: 1.1em;
  padding-top: 1em;
  margin-bottom: 16px;
  background: url("/img/daily/tag.png") no-repeat top center/contain;
}
.daily-contents__ttl__main {
  font-size: var(--font-size-36);
  letter-spacing: var(--letter-spacing-regular);
  line-height: 1.33;
}
.daily-contents:not(:last-child) {
  margin-bottom: 80px;
}
.daily-contents:not(:last-child)::after {
  content: "";
  background: url("/img/daily/daily_border.png") no-repeat top center/contain;
  width: 4px;
  height: 53px;
  display: block;
  position: absolute;
  bottom: -40px;
  left: 50%;
  translate: -50% 50%;
}

.daily-item-wrapper {
  margin-top: 40px;
}

.daily-item {
  --col-x-space: 30px;
  --col-y-space: 30px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  padding: 40px;
  border-radius: var(--round-30);
  background: var(--color-white);
}
.daily-item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px;
}
.daily-item__gallery {
  max-width: 420px;
  width: 100%;
  --col-x-space: 20px;
  --col-y-space: 20px;
}
.daily-item__head {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.daily-item__num {
  display: block;
  width: 113px;
  margin-bottom: 18px;
}
.daily-item:not(:last-child) {
  margin-bottom: 40px;
}

/* ===========================================
*
* parenting-tips page
*
* ======================================== */
/*------------------------------
*
* tips
*
------------------------------*/
.tips-contents {
  padding: 80px calc(50% - 540px);
  border-radius: var(--round-30);
  background: url("/img/parenting-tips/tip_bg_right.png") no-repeat top right 30px/auto, url("/img/parenting-tips/tip_bg_left.png") no-repeat top 100px left/auto, var(--color-theme);
}
.tips-contents__ttl {
  font-size: var(--font-size-36);
  font-weight: var(--font-weight-black);
  letter-spacing: var(--letter-spacing-regular);
  text-align: center;
  margin-bottom: 41px;
}
.tips-contents__ttl::before {
  content: "";
  margin: 0 auto 15px;
  display: block;
  background: url("/img/common/ttl_flag.png") no-repeat top center/contain;
  width: 5.4444444444em;
  height: 1.1111111111em;
}
.tips-contents__video {
  margin-top: 50px;
}
.tips-contents__video__ttl {
  line-height: 1;
  font-size: var(--font-size-30);
  font-weight: var(--font-weight-black);
  letter-spacing: var(--letter-spacing-regular);
  color: var(--color-orange);
  text-align: center;
  margin-bottom: 30px;
}
.tips-contents__video__main {
  overflow: hidden;
  border-radius: var(--round-30);
  aspect-ratio: 75/42;
  margin: 0 auto;
  width: 750px;
  position: relative;
  z-index: 1;
}
.tips-contents__video__main > video,
.tips-contents__video__main > iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 1;
}
.tips-contents__sentence {
  text-align: center;
}
.tips-contents:not(:last-child) {
  margin-bottom: 80px;
}

.tips-item__ttl {
  font-size: var(--font-size-30);
  font-weight: var(--font-weight-black);
  letter-spacing: var(--letter-spacing-regular);
  line-height: 1.5;
  color: var(--color-white);
  background-color: var(--color-orange);
  border-radius: var(--round-30) var(--round-30) 0 0;
  padding: 0.5833333333em 1em;
  text-align: center;
}
.tips-item__body {
  background-color: var(--color-white);
  border-radius: 0 0 var(--round-30) var(--round-30);
  padding: 40px;
  background-color: var(--color-white);
}
.tips-item__flex {
  --col-x-space: 30px;
  --col-y-space: 30px;
}
.tips-item:not(:last-child) {
  margin-bottom: 50px;
}

.tips-point {
  margin-top: 30px;
}
.tips-point__ttl {
  text-align: center;
  margin-bottom: 24px;
}
.tips-point__list {
  --col-x-space: 20px;
  --col-y-space: 20px;
}
.tips-point__list-item {
  height: 140px;
  position: relative;
  z-index: 1;
  border-radius: var(--round-20);
  background-color: var(--color-pale-sky);
  padding-inline: 90px 20px;
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-black);
  line-height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.tips-point__list-item::before {
  content: "";
  background: no-repeat top center/contain;
  width: 60px;
  height: 142px;
  top: -10px;
  left: 20px;
  position: absolute;
  z-index: 1;
}
.tips-point__list-item:nth-child(1)::before {
  background-image: url("/img/parenting-tips/num01.png");
}
.tips-point__list-item:nth-child(2)::before {
  background-image: url("/img/parenting-tips/num02.png");
}
.tips-point__list-item:nth-child(3)::before {
  background-image: url("/img/parenting-tips/num03.png");
}

/* ===========================================
*
* single page
*
* ======================================== */
.single {
  position: relative;
  z-index: 5;
}
.single__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.single__date {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-bottom: 16px;
  font-family: var(--font-sub);
  line-height: 1;
  font-family: var(--font-sub);
}
.single__tags {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 24px;
}
.single__ttl {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  width: 100%;
  font-size: var(--font-size-24);
  border-left: 5px solid var(--color-orange);
  font-weight: var(--font-weight-bold);
  padding-left: 0.75em;
  margin-bottom: 32px;
}
.single__img {
  margin: 0 auto;
  width: 100%;
  margin-bottom: 32px;
}
.single__footer {
  margin-top: 64px;
  width: 100%;
}

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

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

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

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