@charset "UTF-8";
/* ------------------------------------------------------------------------------
*
* Layout
*
* ------------------------------------------------------------------------------ */
/* ===========================================
*
* base styles
*
* ======================================== */
/* css custom properties
-------------------------*/
:root {
  /* font-size */
  --font-size-11: 0.6875rem;
  --font-size-12: 0.75rem;
  --font-size-13: 0.8125rem;
  --font-size-14: 0.875rem;
  --font-size-15: 0.9375rem;
  --font-size-16: 1rem;
  --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-40: 40px;
  --round-full: 999px;
  /* logo width */
  --logo-width: 104px;
  /* 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: 1.5em;
  --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-nav-height: 48px;
  --header-top-height: 70px;
  --header-height: calc(var(--header-nav-height) + var(--header-top-height) + 2px); /* 2px はborder分*/
  /* breadcrumb settings */
  --bread-letter-space: var(--letter-space-base);
  --bread-font-size: var(--font-size-15);
  --bread-font-weight: var(--font-weight-medium);
  --bread-color: var(--color-text-base);
  --bread-grater-color: var(--color-text-base);
  --bread-grater-content: "＞";
  --bread-grater-space: 0 0.25em;
  --bread-hov-color: var(--color-text-base);
  --bread-link-color: var(--color-orange);
  --bread-last-item-color: var(--color-text-base);
  --bread-padding: 14px 0;
  --bread-bg-color: transparent;
  --bread-width: 100%;
  /* prev next settings */
  --prev-next-link-width: 10em;
  --prev-next-back-link-width: 8em;
  --prev-next-link-gutter: 1.5em;
  --prev-next-link-padding: 1em 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-text-base);
  --prev-next-link-hov-bg-color: var(--color-yellow);
  --prev-next-link-font-size: var(--font-size-base);
  /* tag btn settings */
  --tag-btn-color: #b3b3b3;
  --tag-btn-bg-color: var(--color-gray);
  --tag-btn-current-color: var(--color-text-base);
  --tag-btn-current-bg-color: var(--color-yellow);
  --tag-btn-round: 3em;
  --tag-btn-padding: 1em 1.5em;
  --tag-btn-font-size: var(--font-size-15);
  /* pagenation settings */
  --pagenation-margin-top: 56px;
  --pagenation-item-width: 3em;
  --pagenation-item-height: 3em;
  --pagenation-item-round: 5px;
  --pagenation-item-font-size: var(--font-size-base);
  --pagenation-item-font-weight: var(--font-weight-medium);
  --pagenation-item-space: 8px;
  --pagenation-item-bg-color: var(--color-gray);
  --pagenation-item-color: #b3b3b3;
  --pagenation-item-current-color: var(--color-text-base);
  --pagenation-item-current-bg-color: var(--color-yellow);
}

html {
  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-base);
  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: sticky;
  top: 0;
  left: 0;
  z-index: 101;
}
.header__top {
  padding: 0px 0px 0px 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: var(--min-contents-width);
  margin: 0 auto;
  width: 100%;
  height: var(--header-top-height);
}
.header__right {
  width: 740px;
}
.header__info {
  width: 100%;
}
.header__tel {
  margin-right: 10px;
  display: grid;
  grid-template-areas: "text replace" "tel replace";
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
}
.header__tel .tel {
  --tel-font-size: var(--font-size-25);
  grid-area: tel;
}
.header__tel-txt {
  line-height: 1;
  font-size: var(--font-size-14);
  letter-spacing: var(--letter-spacing-base);
  color: var(--color-orange);
  grid-area: text;
}
.header__tel .replace-txt {
  width: 119px;
  grid-area: replace;
}
.header__business-info {
  margin-right: 20px;
}
.header__sns {
  margin-right: 20px;
}
.header__contact-btn {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  gap: 10px;
  padding: 10px 1em;
  height: var(--header-top-height);
  background: var(--color-yellow);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: var(--font-weight-bold);
}
.header__contact-btn:hover {
  background: var(--color-gold);
}
.header__contact-btn .mail-icon {
  width: 20px;
  display: block;
}
.header-nav {
  border-top: 2px solid var(--color-orange);
  width: 100%;
  background: url("/img/pattern/yellow_stripe.png") repeat center/auto;
}
.header-nav__list {
  max-width: 1080px;
  margin: 0 auto;
  height: var(--header-nav-height);
}
.header-nav__item {
  position: relative;
}
.header-nav__item:not(:last-child)::after {
  content: "";
  width: 2px;
  height: 100%;
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0% -50%;
  background: url("/img/common/nav_border.svg") no-repeat top center/contain;
}
.header-nav__link {
  position: relative;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  line-height: 28px;
  padding-inline: 30px;
  font-size: var(--font-size-16);
  letter-spacing: var(--letter-spacing-base);
  font-weight: var(--font-weight-medium);
}
.header-nav__link::after {
  content: "";
  width: 0;
  height: 1px;
  background-color: var(--color-orange);
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0.25em);
          transform: translate(-50%, 0.25em);
  bottom: 0;
}
.header-nav__link:hover {
  color: var(--color-orange);
  opacity: 1;
}
.header-nav__link:hover::after {
  width: 2em;
}
.header-nav__link.current {
  color: var(--color-orange);
}
.header-nav__link.current::after {
  width: 2em;
}

/* ===========================================
*
* footer style
*
* ======================================== */
.footer {
  position: relative;
  padding-block: 100px 80px;
  background: url("/img/common/footer_deco_left.png") no-repeat bottom left 50px/min(801px, 41.71875%), url("/img/common/footer_deco_right.png") no-repeat bottom right 80px/min(680px, 35.4166666667%), var(--color-yellow);
}
.footer__inner {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__container {
  background-color: var(--color-white);
  padding: 60px;
  border-radius: var(--round-20);
}
.footer__logo {
  margin: 0 auto 32px;
}
.footer__info {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer__address {
  margin-bottom: 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 24px;
  position: relative;
  z-index: 1;
}
.footer__address::before {
  content: "";
  width: 14px;
  height: 20px;
  background: url("/img/common/icon_pin_yellow.png") no-repeat top center/contain;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0% -50%;
}
.footer__tel {
  display: grid;
  grid-template-areas: "tel replace";
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
  margin-bottom: 16px;
}
.footer__tel .tel {
  --tel-font-size: var(--font-size-25);
  grid-area: tel;
}
.footer__tel-txt {
  line-height: 1;
  font-size: var(--font-size-14);
  letter-spacing: var(--letter-spacing-base);
  color: var(--color-orange);
  grid-area: text;
}
.footer__tel .replace-txt {
  width: 202px;
  grid-area: replace;
}
.footer-nav {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--color-text-base);
}
.footer-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px 0px;
}
.footer-nav__item:not(:last-child) {
  border-right: 1px solid var(--color-tan);
}
.footer-nav__item.nav-item--contact {
  border-right: 0;
}
.footer-nav__link {
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding-inline: 24px;
  display: block;
}
.footer-nav__link:hover, .footer-nav__link.current {
  color: var(--color-main);
}
.footer__copy {
  font-size: 12px;
  letter-spacing: var(--letter-spacing-base);
  width: 100%;
  display: block;
  text-align: center;
  margin-top: 30px;
  color: var(--color-text-base);
}

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

/* ------------------------------------------------------------------------------
*
* Object
*
* ------------------------------------------------------------------------------ */
/* ----------------------------------------------------
*  Component（共通化されたコンポーネントスタイル）
*  ---------------------------------------------------- */
/* logo
-------------------------*/
.logo {
  width: var(--logo-width);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.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--center img {
  margin: 0 auto;
}

.ttl-img--left img {
  margin-right: auto;
}

.ttl-img--right img {
  margin-left: auto;
}

/* 
title style
-------------------------*/
.cmn-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  font-size: var(--font-size-35);
  margin-bottom: 60px;
}
.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--deco-shine::before {
  content: "";
  display: block;
  width: 3.1142857143em;
  height: 1.3142857143em;
  background: url("/img/common/ttl_shine.png") no-repeat top center/contain;
}
.cmn-ttl--deco-shine-white::before {
  content: "";
  display: block;
  width: 3.1142857143em;
  height: 1.3142857143em;
  background: url("/img/common/ttl_shine_white.png") no-repeat top center/contain;
}
.cmn-ttl__main {
  font-size: 1em;
  font-weight: var(--font-weight-medium);
  font-family: var(--font-sub);
  letter-spacing: var(--letter-spacing-base);
  line-height: 55px;
  display: inline-block;
}
.cmn-ttl__main--deco-flag {
  padding-inline: 4em;
  position: relative;
  z-index: 1;
}
.cmn-ttl__main--deco-flag::after {
  content: "";
  width: 100%;
  height: 2.6857142857em;
  background: url("/img/common/ttl_flag_left.png") no-repeat top left/contain, url("/img/common/ttl_flag_right.png") no-repeat top right/contain;
  top: 27.5px;
  left: 50%;
  translate: -50% -50%;
  position: absolute;
  z-index: -1;
}
.cmn-ttl__main--deco-star {
  padding-inline: 1.4285714286em;
  position: relative;
  z-index: 1;
}
.cmn-ttl__main--deco-star::after {
  content: "";
  width: 100%;
  height: calc(100% + 30px);
  background: url("/img/common/ttl_deco_kira_left.png") no-repeat top 15px left/auto, url("/img/common/ttl_deco_kira_right.png") no-repeat bottom right/auto;
  top: 27.5px;
  left: 50%;
  translate: -50% -50%;
  position: absolute;
  z-index: -1;
}
.cmn-ttl__img-en {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
}
.cmn-ttl__img-en > img {
  display: block;
}
.cmn-ttl__img-en--deco {
  padding-inline: 2em;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.cmn-ttl__img-en--deco::after {
  content: "";
  width: 100%;
  height: 11px;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  background: url("/img/common/ttl_en_side_right.svg") no-repeat right center/auto 11px, url("/img/common/ttl_en_side_left.svg") no-repeat left center/auto 11px;
}
.cmn-ttl__img-en--deco-yellow {
  padding-inline: 2em;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.cmn-ttl__img-en--deco-yellow::after {
  content: "";
  width: 100%;
  height: 11px;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  background: url("/img/common/ttl_en_side_yellow_right.svg") no-repeat right center/auto 11px, url("/img/common/ttl_en_side_yellow_left.svg") no-repeat left center/auto 11px;
}
.cmn-ttl__img-en--deco-white {
  padding-inline: 2em;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.cmn-ttl__img-en--deco-white::after {
  content: "";
  width: 100%;
  height: 11px;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  background: url("/img/common/ttl_en_side_white_right.svg") no-repeat right center/auto 11px, url("/img/common/ttl_en_side_white_left.svg") no-repeat left center/auto 11px;
}

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

.tel {
  /* tel　style */
  --tel-font-size: 30px;
  --tel-icon-space: 30px;
  --tel-icon-position: 0.5em;
  --tel-icon-width: 25px;
  --tel-icon-height: 25px;
  letter-spacing: var(--letter-spacing-base);
  font-family: var(--font-sub, sans-serif);
  font-weight: var(--font-weight-medium, 700);
  font-size: var(--tel-font-size, 28px);
  line-height: 1;
  position: relative;
  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.png) no-repeat center/contain;
}

/*
 snsクラス
-------------------------*/
.sns {
  --sns-icon-space: 15px;
  --sns-icon-size: 30px;
  gap: var(--sns-icon-space);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.sns__icon {
  width: var(--sns-icon-size);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: block;
}
.sns__icon:hover {
  opacity: 0.7;
}
.sns__icon img {
  width: 100%;
}

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

.main-table {
  --table-letter-spacing: var(--letter-spacing-base);
  --table-th-font-weight: var(--font-weight-medium);
  --table-th-text-align: left;
  --table-th-x-padding: 50px;
  --table-th-y-padding: 0.59375em;
  --table-th-bg-color: var(--color-tan);
  --table-th-color: var(--color-white);
  --table-th-width: 300px;
  --table-td-x-padding: 50px;
  --table-td-y-padding: 0.78125em;
  --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-tan);
  --table-th-border-color: var(--color-white);
  --table-td-border-color: var(--color-tan);
  --table-width: 100%;
  width: var(--table-width);
  border-block: 2px solid var(--table-border-color);
  letter-spacing: var(--table-letter-spacing);
  line-height: 2.1875;
}
.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);
  font-weight: var(--font-weight-medium);
}

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

/* 
画像
-------------------------*/
.cmn-img {
  /* imgの基本スタイルの指定 */
  --img-round-size: var(--round-10);
}
.cmn-img img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
.cmn-img--rounded img {
  border-radius: var(--img-round-size);
}

/*------------------------------
*
* business-info
*
------------------------------*/
.cmn-business-info {
  /* 営業時間・定休日をまとめたdl */
  font-size: var(--font-size-16);
  background-color: var(--color-beige);
  padding: 10px;
  border-radius: var(--round-5);
  font-weight: var(--font-weight-medium);
  display: grid;
  gap: 10px;
}
.cmn-business-info__item {
  gap: 10px;
  display: grid;
  line-height: 1;
}
.cmn-business-info__item dt {
  padding: mg(24, 13, 1.5) 5px;
  text-align: center;
}
.cmn-business-info__item--row {
  grid-template-areas: "dt dd";
}
.cmn-business-info__item--row dt {
  grid-area: dt;
  padding-right: 6px;
  border-right: 1px solid var(--color-text-base);
}
.cmn-business-info__item--row dd {
  grid-area: dd;
}
.cmn-business-info__item--column {
  grid-template-columns: 1fr;
}
.cmn-business-info__item--column dt {
  padding-bottom: 5px;
  border-bottom: 1px solid var(--color-text-base);
}
.cmn-business-info--column {
  grid-template-columns: 1fr;
}
.cmn-business-info--sm {
  gap: 8px;
  font-size: var(--font-size-13);
}
.cmn-business-info--sm .cmn-business-info__item {
  gap: 5px;
}

/*------------------------------
*
* check list style
*
------------------------------*/
.check-list__item {
  padding: 25px 30px 25px 60px;
  position: relative;
  font-weight: var(--font-weight-md);
  letter-spacing: var(--letter-spacing-base);
  font-size: var(--font-size-20);
  font-family: var(--font-sub);
  z-index: 1;
}
.check-list__item::before {
  content: "";
  width: 1.2em;
  height: 1.2em;
  background: url(../img/common/check_mark.png) no-repeat top center/contain;
  position: absolute;
  position: absolute;
  top: 50%;
  translate: 0% -50%;
  left: 20px;
}
.check-list__item--bubble-border {
  border-radius: var(--round-10);
  border: 2px solid var(--color-tan);
}
.check-list__item--bubble-border::after {
  content: "";
  width: 57px;
  aspect-ratio: 57/25;
  background: url("/img/common/check_list_bubble.png") no-repeat top center/contain;
  right: 60px;
  bottom: 0;
  translate: 0% 100%;
  position: absolute;
  z-index: 1;
}
.check-list__item:not(:last-child) {
  margin-bottom: 40px;
}

/* 
* カラムスタイル
* 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--rounded {
  border-radius: var(--round-20);
}
.cmn-btn--rounded-full {
  border-radius: var(--round-full);
}
.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;
  background-color: var(--color-yellow);
  color: var(--color-text-base);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 0px solid transparent;
  -webkit-box-shadow: 5px 5px 0px var(--color-beige);
          box-shadow: 5px 5px 0px var(--color-beige);
}
.cmn-btn--primary:hover {
  background-color: var(--color-orange);
  color: var(--color-white);
  border-color: transparent;
  opacity: 1;
  translate: 5px 5px;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.cmn-btn--icon-line > span {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 1;
  margin-inline: auto;
}
.cmn-btn--icon-line > span::before {
  content: "";
  width: 30px;
  height: 30px;
  background: url("/img/common/icon_line.svg") no-repeat top center/contain;
  position: absolute;
  top: 50%;
  left: -50%;
  translate: 0% -50%;
}
.cmn-btn--arrow-right {
  position: relative;
  z-index: 1;
}
.cmn-btn--arrow-right::after {
  content: "";
  width: 18px;
  height: 20px;
  background: url("/img/common/arrow_right.png") no-repeat top center/contain;
  position: absolute;
  right: 30px;
  top: 50%;
  translate: 0 -50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cmn-btn--arrow-right:hover::after {
  translate: 25% -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%;
  position: relative;
  z-index: 1;
  padding-bottom: 60px;
}
.mv::after {
  content: "";
  width: 100%;
  height: 440px;
  background-color: var(--color-yellow);
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
}
.mv__catch {
  width: 48.8020833333%;
  max-width: 937px;
  position: absolute;
  right: 10px;
  bottom: 0;
  translate: 0 3.75%;
  z-index: 20;
}

/* 
swiper
-------------------------*/
.mv__swiper.swiper {
  width: calc(50% + 540px);
  margin-left: 0;
  margin-right: auto;
  height: clamp(560px, 43.75vw, 840px);
}
.mv__swiper.swiper-slide {
  width: 100%;
  height: 100%;
}

.mv__swiper.swiper .swiper-slide img {
  border-radius: 0 0 var(--round-40) 0;
}

/*------------------------------
*
* main style sv(sub visual)
*
------------------------------*/
.sv {
  width: 100%;
  position: relative;
  z-index: 1;
  height: clamp(360px, 23.4375vw, 450px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
}
.sv::after {
  content: "";
  width: 100%;
  height: 260px;
  background-color: var(--color-yellow);
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
}
.sv__img {
  border-radius: 0 0 var(--round-40) 0;
  overflow: hidden;
  position: absolute;
  width: calc(50% + 540px);
  height: 100%;
  left: 0;
  top: 0;
  z-index: 0;
}
.sv__catch {
  position: absolute;
  right: max(40px, 50% - 880px);
  bottom: 50px;
  z-index: 20;
  padding-inline: 1em;
  height: 160px;
  -ms-flex-line-pack: center;
      align-content: center;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  border-radius: var(--round-20);
  background-color: var(--color-white);
  font-family: var(--font-sub);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-40);
  letter-spacing: var(--letter-spacing-base);
}
.sv__catch::after {
  content: "";
  border: 2px dashed var(--color-gold);
  border-radius: calc(var(--round-20) - 5px);
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
}

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

/*------------------------------
*
* cmn-post
*
------------------------------*/
.cmn-post {
  --post-item-bg-color: var(--color-white);
  --post-width: 100%;
  --post-item-margin: 10px;
  --post-item-flex-margin-space: 13px;
  --post-link-padding: 20px;
  --post-title-font-size: var(--font-size-16);
  --post-date-font-size: var(--font-size-16);
  width: var(--post-width);
}
.cmn-post-item {
  border-radius: var(--round-10);
  border: 1px solid var(--color-text-base);
  width: 100%;
  background-color: var(--post-item-bg-color, transparent);
}
.cmn-post-item:not(:last-child) {
  margin-bottom: var(--post-item-margin, 15px);
}
.cmn-post__box {
  width: calc(100% - 120px);
}
.cmn-post__box.w-100 {
  width: 100%;
}
.cmn-post__thumb {
  width: 100px;
  aspect-ratio: 1/1;
}
.cmn-post__flex {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 10px;
  margin-bottom: 10px;
}
.cmn-post__flex .cmn-post__date {
  border-right: 2px solid var(--color-text-base);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 10px;
}
.cmn-post__tags {
  width: var(--post-tags-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-bold);
  letter-spacing: var(--letter-spacing-base);
}
.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);
}
.cmn-post__grid {
  display: grid;
  grid-template-columns: 104px 1fr;
  grid-template-areas: "date tags" "date title";
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 8px 10px;
  width: 100%;
}
.cmn-post__grid.notags {
  grid-template-areas: "date title";
}
.cmn-post__grid .cmn-post__date {
  border-right: 2px solid var(--color-text-base);
  -ms-flex-line-pack: center;
      align-content: center;
  grid-area: date;
}
.cmn-post__grid .cmn-post__ttl {
  grid-area: title;
}
.cmn-post__grid .cmn-post__tags {
  grid-area: tags;
}

/*------------------------------
*
* tag
*
------------------------------*/
.tag {
  --tag-font-size: 13px;
  --tag-height: 20px;
  --tag-x-padding: 5px;
  --tag-round: var(--round-5);
  --tag-color: var(--color-yellow);
  --tag-bg-color: var(--color-text-base);
  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-medium);
  line-height: var(--tag-height);
  padding: 0 var(--tag-x-padding);
}

.tag-link {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.tag-link.tag {
  padding: 0;
}
.tag-link > a {
  padding: 0 var(--tag-x-padding);
}
.tag-link:hover {
  background-color: var(--color-orange);
  color: var(--color-text-base);
}

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

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

.tag-btn {
  padding: var(--tag-btn-padding);
  background-color: var(--tag-btn-bg-color);
  color: var(--tag-btn-color);
  border-radius: var(--tag-btn-round);
  font-size: var(--tag-btn-font-size);
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  line-height: 1;
}
.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);
  font-size: var(--prev-next-link-font-size);
}
.prev-next__link:hover {
  background-color: var(--prev-next-link-hov-bg-color);
  color: var(--prev-next-link-hov-color);
  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;
  width: var(--prev-next-back-link-width);
}
.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;
  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
*
* ======================================== */
/*------------------------------
*
* trouble
*
------------------------------*/
.trouble {
  padding-top: 115px;
  padding-bottom: 112px;
  background: url("/img/top/worries_bg.jpg") no-repeat bottom center/max(1920px, 100%) auto;
  position: relative;
  z-index: 10;
}
.trouble::before {
  content: "";
  width: 34px;
  height: 150px;
  background: url("/img/top/worries_arrow.png") no-repeat top center/contain;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 52%;
  z-index: 10;
}
.trouble__ttl {
  gap: 15px;
  margin-bottom: 0px;
  position: relative;
  z-index: 10;
}
.trouble__ttl .cmn-ttl__main {
  line-height: 72px;
  position: relative;
  z-index: 1;
}
.trouble__ttl .cmn-ttl__main::after {
  content: "";
  width: 2.3142857143em;
  height: 1.9142857143em;
  position: absolute;
  right: 0;
  top: 0;
  translate: -82% 0;
  background: url("/img/top/ttl_worries_deco.png") no-repeat top center/contain;
}
.trouble__ttl__deco {
  display: inline-block;
  position: relative;
  z-index: 1;
  color: var(--color-white);
  width: 5.4571428571em;
  margin-right: 24px;
}
.trouble__ttl__deco img {
  display: block;
}
.trouble__ttl__deco::after {
  content: "";
  width: 6.7142857143em;
  height: 3.5714285714em;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -52% -61%;
  z-index: -1;
  background: url("/img/top/ttl_worries_deco02.png") no-repeat top center/contain;
}
.trouble__img {
  margin-top: -84px;
  margin-inline: auto;
  width: 1310px;
  translate: 2.5% 0;
}

/*------------------------------
*
* about
*
------------------------------*/
.about {
  padding-top: 115px;
  padding-bottom: 136px;
  position: relative;
}
.about__ttl {
  margin-bottom: 44px;
  position: relative;
  z-index: 1;
}
.about__ttl::after {
  content: "";
  width: 780px;
  height: 94px;
  background: url("/img/common/ttl_flag_left.png") no-repeat left center/contain, url("/img/common/ttl_flag_right.png") no-repeat right center/contain;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -56%;
}
.about__container {
  position: relative;
  z-index: 1;
}
.about__container::after, .about__container::before {
  content: "";
  position: absolute;
  z-index: -1;
}
.about__container::before {
  width: 150px;
  aspect-ratio: 150/220;
  background: url("/img/top/about_illust_left.png") no-repeat top center/contain;
  left: 0;
  top: 0;
  translate: 0 calc(-100% + 15px);
}
.about__container::after {
  width: 150px;
  aspect-ratio: 150/207;
  background: url("/img/top/about_illust_right.png") no-repeat top center/contain;
  right: 0;
  top: 0;
  translate: 0 calc(-100% + 15px);
}
.about__cases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 680px;
  gap: 20px;
  margin-bottom: 40px;
}
.about__sentence {
  max-width: 670px;
  width: 100%;
}
.about__container {
  position: relative;
  z-index: 1;
}
.about__img {
  position: absolute;
  left: calc(50% + 190px);
  top: -35px;
  width: 640px;
}

/*------------------------------
*
* feature
*
------------------------------*/
.feature {
  padding-top: 134px;
  padding-bottom: 250px;
  background: url("/img/common/wave_top.png") no-repeat top center/max(1920px, 100%), url("/img/pattern/bg_kabe.png") repeat center/auto;
}
.feature__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.feature__list-item {
  padding: 40px 50px 50px;
  border-radius: var(--round-20);
  position: relative;
  z-index: 1;
}
.feature__list-item::after {
  content: "";
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  border-radius: var(--round-10);
  border: 1px dashed var(--color-text-base);
}
.feature__list-item__num {
  position: absolute;
  top: 0;
  right: 20px;
  z-index: 10;
  width: 51px;
}
.feature__list-item__ttl {
  font-size: var(--font-size-25);
  line-height: 77px;
  letter-spacing: var(--letter-spacing-base);
  text-align: center;
  background: url("/img/top/feature_item_ttl_bg.png") no-repeat top center/contain;
  margin-bottom: 30px;
}
.feature__list-item:nth-child(1) {
  background: url("/img/top/feature_bg_top.png") no-repeat top right/auto, url("/img/top/feature_icon01.png") no-repeat bottom 20px right 20px/auto, var(--color-white);
}
.feature__list-item:nth-child(2) {
  background: url("/img/top/feature_bg_top.png") no-repeat top right/auto, url("/img/top/feature_icon02.png") no-repeat bottom 20px right 20px/auto, var(--color-white);
}
.feature__list-item:nth-child(3) {
  background: url("/img/top/feature_bg_top.png") no-repeat top right/auto, url("/img/top/feature_icon03.png") no-repeat bottom 20px right 20px/auto, var(--color-white);
}
.feature__list-item:nth-child(4) {
  background: url("/img/top/feature_bg_top.png") no-repeat top right/auto, url("/img/top/feature_icon04.png") no-repeat bottom 20px right 20px/auto, var(--color-white);
}

/*------------------------------
*
* area
*
------------------------------*/
.area {
  position: relative;
  z-index: 10;
  padding-top: 360px;
  padding-bottom: 125px;
}
.area::after {
  content: "";
  width: 650px;
  height: 128px;
  position: absolute;
  z-index: -1;
  bottom: 10px;
  right: 0;
  background: url("/img/common/house.png") no-repeat top center/contain;
}
.area::before {
  content: "";
  width: calc(580px + 50% - 540px);
  height: 732px;
  border-radius: 0 0 var(--round-10) 0;
  background-color: var(--color-yellow);
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
}
.area__ttl {
  grid-area: title;
  margin-top: 25px;
  margin-bottom: 40px;
}
.area__img {
  border-radius: var(--round-20);
  overflow: hidden;
  width: min(1500px, 80%);
  height: 450px;
  position: absolute;
  top: -150px;
  left: 50%;
  translate: -50% 0%;
}
.area__container {
  display: grid;
  grid-template-areas: "title map" "text map" "illust map";
  grid-template-columns: 560px 1fr;
  gap: 0px 104px;
}
.area__sentence {
  grid-area: text;
  text-align: center;
}
.area__illust {
  grid-area: illust;
  display: grid;
  place-content: center;
  margin-top: 50px;
}
.area__illust > img {
  width: 356px;
}
.area__map {
  grid-area: map;
}

/*------------------------------
*
* top-flow
*
------------------------------*/
.top-flow {
  padding-block: 150px 120px;
  background: url("/img/common/wave_top.png") no-repeat top center/max(1920px, 100%), url("/img/pattern/yellow_stripe.png") repeat center/auto;
}
.top-flow__ttl .cmn-ttl__main--deco-flag::after {
  height: 2.6857142857em;
  width: 780px;
}
.top-flow__box {
  background-color: var(--color-white);
  border-radius: var(--round-20);
  padding: 54px 120px 80px;
  position: relative;
  z-index: 1;
}
.top-flow__box::after, .top-flow__box::before {
  content: "";
  position: absolute;
  z-index: -1;
}
.top-flow__box::before {
  left: 0;
  bottom: 0;
  translate: -100px 50px;
  width: 230px;
  aspect-ratio: 230/374;
  background: url("/img/top/flow_illust_left.png") no-repeat top center/contain;
}
.top-flow__box::after {
  right: 0;
  bottom: 0;
  translate: 100px 70px;
  width: 209px;
  aspect-ratio: 209/408;
  background: url("/img/top/flow_illust_right.png") no-repeat top center/contain;
}
.top-flow__list {
  display: grid;
  gap: 60px;
  grid-template-columns: repeat(5, 1fr);
}
.top-flow-item {
  position: relative;
  z-index: 1;
  text-align: center;
  display: grid;
  justify-items: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: var(--font-size-30);
  letter-spacing: var(--letter-spacing-base);
  padding: 90px 10px 20px;
  border-radius: 60px;
  background: url("/img/top/step_bg.jpg") no-repeat top center/cover;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}
.top-flow-item:not(:last-child)::after {
  content: "";
  width: 20px;
  height: 30px;
  background-color: var(--color-tan);
  position: absolute;
  top: 50%;
  right: -30px;
  translate: 50% -50%;
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
          clip-path: polygon(100% 50%, 0 0, 0 100%);
}
.top-flow-item__step {
  width: 84px;
  position: absolute;
  top: -22px;
  left: 50%;
  translate: -50% 0%;
}

/*------------------------------
*
* page-link
*
------------------------------*/
.page-link {
  max-width: 1320px;
  width: 95%;
  margin: 80px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.page-link__link:nth-child(2) {
  margin-top: 50px;
}

/*------------------------------
*
* cta
*
------------------------------*/
.cta {
  background: url("/img/top/contact_bg.jpg") no-repeat top center/cover;
  padding: 120px 0;
}
.cta__ttl {
  margin-bottom: 40px;
}
.cta__ttl .cmn-ttl__main--deco-flag::after {
  height: 2.1714285714em;
  width: 780px;
  translate: -50% -75%;
}
.cta__sentence {
  text-align: center;
  margin-bottom: 40px;
}
.cta__box {
  position: relative;
  z-index: 1;
  border-radius: var(--round-20);
  background: rgb(var(--color-yellow-rgb)/0.9);
  -webkit-box-shadow: 0px 0px 30px 0px rgba(90, 61, 33, 0.2);
          box-shadow: 0px 0px 30px 0px rgba(90, 61, 33, 0.2);
  padding: 74px 82px 60px;
}
.cta__box::after {
  content: "";
  border-radius: var(--round-20);
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  border: 2px dashed var(--color-white);
}
.cta__container {
  background-color: var(--color-white);
  border-radius: var(--round-10);
  padding: 60px 80px 80px;
  position: relative;
  z-index: 1;
}
.cta__container::before {
  content: "";
  width: 150px;
  height: 151px;
  background: url("/img/top/contact_illust01.png") no-repeat top center/contain;
  position: absolute;
  z-index: -1;
  right: 0;
  top: 0;
  translate: 0 -100%;
}
.cta__container::after {
  content: "";
  width: 113px;
  height: 140px;
  background: url("/img/top/contact_illust02.png") no-repeat top center/contain;
  position: absolute;
  z-index: -1;
  left: 50px;
  bottom: 0;
}
.cta__actions {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  padding-bottom: 40px;
  border-bottom: 2px solid var(--color-text-base);
  margin-bottom: 30px;
}
.cta__actions-left {
  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;
  gap: 10px;
}
.cta__actions-btns {
  width: 340px;
}
.cta__btn {
  --btn-height: 70px;
  --btn-padding-y: calc(
    (var(--btn-height) - var(--btn-font-size) * var(--btn-line-height)) / 2
  );
}
.cta__btn:not(:last-child) {
  margin-bottom: 20px;
}
.cta__tel {
  margin-right: 10px;
  display: grid;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
}
.cta__tel .tel {
  --tel-font-size: var(--font-size-25);
}
.cta__tel-txt {
  line-height: 1;
  font-size: var(--font-size-14);
  letter-spacing: var(--letter-spacing-base);
  color: var(--color-orange);
  grid-area: text;
}
.cta__tel .replace-txt {
  height: 12px;
}
.cta__tel .replace-txt > img {
  display: block;
}
.cta__sos-ttl {
  font-size: var(--font-size-30);
  letter-spacing: var(--letter-spacing-base);
  position: relative;
  z-index: 1;
  padding: 0.5833333333em 0 0.4166666667em;
  margin-bottom: 25px;
}
.cta__sos-ttl::before {
  content: "";
  width: 13.6666666667em;
  height: 2.4333333333em;
  background: url("/img/top/contact_service_ttl_bg.png") no-repeat top center/contain;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0%;
  z-index: -1;
}
.cta__sos-sentence {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta__sos-sentence::after {
  content: "";
  background: url("/img/top/contact_text_deco.png") no-repeat top center/contain;
  width: 49px;
  height: 49px;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  translate: 40px -45px;
}

/*------------------------------
*
* top-news
*
------------------------------*/
.top-news {
  padding: 120px 0;
  position: relative;
  z-index: 1;
  background: url("/img/pattern/yellow_stripe.png") repeat center/auto;
}
.top-news::after {
  content: "";
  width: calc(50% - 540px + 480px);
  height: 100%;
  background-color: var(--color-white);
  border-radius: 0 9999px 9999px 0px;
  left: 0;
  top: 0;
  position: absolute;
  z-index: -1;
}
.top-news__container {
  display: grid;
  grid-template-areas: "title post" "button post";
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
  gap: 0px 40px;
  grid-template-columns: 1fr 740px;
  position: relative;
  z-index: 1;
}
.top-news__container::after {
  content: "";
  width: 169px;
  height: 96px;
  background: url("/img/top/news_illust.png") no-repeat top center/contain;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  translate: -80px 100%;
}
.top-news__ttl {
  grid-area: title;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-bottom: 60px;
}
.top-news__btn {
  grid-area: button;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  width: 240px;
  --btn-height: 50px;
  --btn-padding-y: calc(
    (var(--btn-height) - var(--btn-font-size) * var(--btn-line-height)) / 2
  );
}
.top-news .cmn-post {
  grid-area: post;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

/* ===========================================
*
* about-page
*
* ======================================== */
/*------------------------------
*
* staff
*
------------------------------*/
.staff {
  overflow: hidden;
}
.staff__container {
  position: relative;
  z-index: 1;
}
.staff__container::before {
  content: "";
  width: 113px;
  height: 140px;
  background: url("/img/about/staff_illust.png") no-repeat top center/contain;
  right: 290px;
  top: 0;
  translate: 0 -100%;
  position: absolute;
  z-index: -1;
}

.staff-profile {
  display: grid;
  grid-template-areas: "header image" "content image";
  grid-template-columns: 1fr 540px;
  grid-template-rows: auto 1fr;
  gap: 0px 40px;
}
.staff-profile:not(:last-child) {
  margin-bottom: 64px;
}
.staff-profile__header {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--color-text-base);
  grid-area: header;
}
.staff-profile__postion {
  font-size: var(--font-size-20);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.staff-profile__name {
  font-size: var(--font-size-25);
  margin-left: 1em;
}
.staff-profile__content {
  grid-area: content;
}
.staff-profile__img {
  grid-area: image;
  position: relative;
  z-index: 1;
}
.staff-profile__img::after {
  content: "";
  width: 41.8518518519%;
  height: 40.3333333333%;
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  translate: 48.6725663717% 28.9256198347%;
  background: url("/img/about/staff_img_deco.png") no-repeat top center/contain;
}
.staff-profile__section {
  padding: 20px 30px 40px 30px;
  border-radius: var(--round-10);
  border: 2px solid var(--color-tan);
}
.staff-profile__section-ttl {
  translate: -30px 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 20px;
  min-width: 150px;
  line-height: 31px;
  font-size: var(--font-size-20);
  letter-spacing: var(--letter-spacing-base);
  padding-inline: 20px;
  background-color: var(--color-yellow);
  position: relative;
  z-index: 1;
}
.staff-profile__section-ttl::after {
  content: "";
  width: 10px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--color-white);
  -webkit-clip-path: polygon(0 50%, 100% 0, 100% 100%);
          clip-path: polygon(0 50%, 100% 0, 100% 100%);
}
.staff-profile__section:not(:last-child) {
  margin-bottom: 20px;
}
.staff-profile__qualification-list {
  margin-top: -4px;
}
.staff-profile__qualification-item {
  padding-left: 18px;
  position: relative;
  z-index: 1;
}
.staff-profile__qualification-item::after {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 0.75em;
  left: 0;
  translate: 0% -50%;
  background-color: var(--color-orange);
  border-radius: 50%;
}
.staff-profile__qualification-item:not(:last-child) {
  margin-bottom: 12px;
}

/*------------------------------
*
* info
*
------------------------------*/
.info {
  padding-top: 134px;
  background: url("/img/common/wave_top.png") no-repeat top center/max(1920px, 100%), url("/img/pattern/bg_kabe.png") repeat center/auto;
}
.info__ttl .cmn-ttl__main--deco-flag::after {
  width: 640px;
  height: 76px;
}

/*------------------------------
*
* access
*
------------------------------*/
.access__ttl {
  margin-bottom: 40px;
}
.access__ttl .cmn-ttl__main {
  position: relative;
  z-index: 1;
}
.access__ttl .cmn-ttl__main::before {
  content: "";
  width: 22px;
  height: 30px;
  background: url("/img/about/icon_pin.png") no-repeat top center/contain;
  position: absolute;
  top: 50%;
  left: 0;
  translate: -200% -50%;
}
.access__map {
  height: var(--map-height);
}

/* ===========================================
*
* services-page
*
* ======================================== */
.services-page .bread-crumb {
  background: url("/img/pattern/bg_kabe.png") repeat center/auto;
}

/*------------------------------
*
* service
*
------------------------------*/
.service-wrapper {
  background: url("/img/pattern/bg_kabe.png") repeat center/auto;
}

.service {
  background-color: var(--color-white);
  border-radius: var(--round-20);
  position: relative;
  z-index: 1;
  padding: 64px 80px 90px;
}
.service::before {
  content: "";
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  border: 2px dashed rgb(var(--color-text-base-rgb)/0.5);
  border-radius: calc(var(--round-20) - 5px);
}
.service:not(:nth-last-of-type(1)) {
  margin-bottom: 80px;
}
.service__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.service-card {
  width: calc(50% - 20px);
  border-radius: var(--round-10);
  border: 2px solid var(--color-tan);
  padding: 20px;
}
.service-card__img {
  width: 100%;
  height: 240px;
  margin-bottom: 10px;
  border-radius: var(--round-10);
  overflow: hidden;
}
.service-card__content {
  background: url("/img/pattern/yellow_stripe.png") repeat center/auto;
  padding: 26px 30px;
  border-radius: var(--round-5);
}
.service-card__content-item {
  padding-left: 18px;
  position: relative;
  z-index: 1;
}
.service-card__content-item:not(:last-child) {
  margin-bottom: 12px;
}
.service-card__content-item::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  translate: 0% -50%;
  width: 8px;
  height: 8px;
  border: 2px solid var(--color-orange);
  border-radius: 50%;
}
.service-card--lg {
  width: 656px;
}
.service-card--lg .service-card__img {
  height: 280px;
}

.services__note {
  line-height: 2.1875;
  margin-top: 71px;
}
.services__note p {
  padding-left: 1em;
  text-indent: -1em;
}

/* ===========================================
*
* works page
*
* ======================================== */
/*------------------------------
*
* works
*
------------------------------*/
.works-article__ttl {
  padding: 0.45em 30px;
  background: var(--color-yellow);
  font-size: var(--font-size-25);
  letter-spacing: var(--letter-spacing-base);
  font-weight: var(--font-weight-medium);
  border-radius: var(--round-10);
  font-family: var(--font-sub);
  margin-bottom: 40px;
}
.works-article__ttl > span {
  padding-left: 20px;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.works-article__ttl > span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-white);
  position: absolute;
  top: 0.75em;
  left: 0;
  translate: 0% -50%;
}
.works-article__content {
  --col-x-space: 120px;
  position: relative;
  z-index: 1;
}
.works-article__content::after {
  content: "";
  width: 28px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  background: url("/img/common/arrow_right.png") no-repeat top center/contain;
}
.works-article__item {
  --item-color: var(--color-tan);
  position: relative;
  z-index: 1;
}
.works-article__item--before {
  --item-color: var(--color-tan);
}
.works-article__item--before .works-article__img::before {
  background-image: url("/img/works/before_pin.png");
}
.works-article__item--after {
  --item-color: var(--color-orange);
}
.works-article__item--after .works-article__img::before {
  background-image: url("/img/works/after_pin.png");
}
.works-article__img {
  border: 2px solid var(--item-color);
  padding: 3px;
  aspect-ratio: 48/30;
  position: relative;
  z-index: 1;
}
.works-article__img::before {
  content: "";
  width: 24px;
  height: 35px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  z-index: 2;
}
.works-article__img > img {
  display: block;
}
.works-article__label {
  position: absolute;
  left: 0;
  top: 20px;
  width: 107px;
  z-index: 10;
}
.works-article__sentence {
  margin-top: 30px;
}
.works-article:not(:last-child) {
  margin-bottom: 80px;
}

/* ===========================================
*
* corporate page
*
* ======================================== */
/*------------------------------
*
* worries
*
------------------------------*/
.worries {
  overflow: hidden;
}
.worries__container {
  display: grid;
  grid-template-areas: "list image" "illust image";
  grid-template-columns: 570px 1fr;
  gap: 0px 50px;
}
.worries__list {
  grid-area: list;
}
.worries__list .check-list__item {
  width: 510px;
}
.worries__list .check-list__item:nth-child(even) {
  margin-left: auto;
}
.worries__illust {
  grid-area: illust;
  display: grid;
  place-content: center;
  margin-top: 30px;
}
.worries__illust > img {
  width: 226px;
}
.worries__img {
  grid-area: image;
  position: relative;
  z-index: 1;
}
.worries__img::after {
  content: "";
  width: 49.1304347826%;
  height: 46.5384615385%;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  translate: 48.6725663717% -33.0578512397%;
  background: url("/img/corporate/worries_img_deco_right.png") no-repeat top center/contain;
}

/*------------------------------
*
* lifesupport
*
------------------------------*/
.lifesupport {
  padding-top: 134px;
  background: url("/img/common/wave_top.png") no-repeat top center/max(1920px, 100%), url("/img/pattern/yellow_stripe.png") repeat center/auto;
}
.lifesupport__ttl {
  margin-bottom: 30px;
}
.lifesupport__container {
  position: relative;
  z-index: 1;
  min-height: 370px;
  padding-block: 40px;
}
.lifesupport__box {
  padding: 60px;
  width: 560px;
  margin-left: calc(50% - 540px);
  position: relative;
  z-index: 1;
  border-radius: var(--round-10);
  background-color: var(--color-white);
}
.lifesupport__box::after {
  content: "";
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border-radius: var(--round-10);
  border: 2px dashed rgb(var(--color-text-base-rgb)/0.5);
}
.lifesupport__box::before {
  content: "";
  width: 145px;
  height: 236px;
  background: url("/img/corporate/lifesupport_illust.png") no-repeat top center/contain;
  position: absolute;
  bottom: 0;
  left: 0;
  translate: -100px 120px;
  z-index: 1;
}
.lifesupport__img {
  width: clamp(680px, 47.9166666667%, 920px);
  z-index: -1;
  height: 100%;
  position: absolute;
  top: 0;
  left: calc(50% - 60px);
  border-radius: var(--round-10);
  overflow: hidden;
}

/*------------------------------
*
* other
*
------------------------------*/
.other {
  position: relative;
  z-index: 1;
}
.other::after {
  content: "";
  width: 650px;
  height: 128px;
  position: absolute;
  z-index: -1;
  bottom: 30px;
  right: 0;
  background: url("/img/common/house.png") no-repeat top center/contain;
}
.other__container {
  display: grid;
  grid-template-columns: 590px 1fr;
  gap: 60px;
}
.other__img {
  height: 260px;
  border-radius: var(--round-10);
  overflow: hidden;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.other__sentence {
  margin-top: 20px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

/*------------------------------
*
* sos
*
------------------------------*/
.sos {
  background: url("/img/pattern/yellow_stripe.png") repeat center/auto;
  position: relative;
  z-index: 1;
}
.sos::after {
  content: "";
  height: 100%;
  width: 46.875%;
  top: 0;
  right: 0;
  z-index: -1;
  position: absolute;
  background: url("/img/corporate/sos_img.jpg") no-repeat center/cover;
  border-radius: 9999px 0 0 9999px;
}
.sos__ttl {
  margin-bottom: 40px;
  text-align: center;
}
.sos__ttl__main {
  line-height: 77px;
  background: url("/img/corporate/sos_ttl_bg.png") no-repeat top center/contain;
  text-align: center;
  width: 100%;
  font-family: var(--font-sub);
  font-weight: var(--font-weight-medium);
  color: var(--color-white);
}
.sos__sentence {
  padding: 60px 40px;
  border-radius: var(--round-10);
  text-align: center;
}
.sos__box {
  border-radius: var(--round-20);
  position: relative;
  z-index: 1;
  background-color: var(--color-yellow);
  padding: 80px 60px 40px;
}
.sos__box::after {
  content: "";
  border-radius: var(--round-20);
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  border: 2px dashed var(--color-white);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
}
.sos__sentence {
  background-color: var(--color-white);
  border-radius: var(--round-10);
}

/* ===========================================
*
* 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;
  font-size: var(--font-size-15);
  margin-bottom: 12px;
  line-height: 1;
  text-align: right;
  margin-left: auto;
}
.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-28);
  border-left: 5px solid var(--color-orange);
  font-weight: var(--font-weight-bold);
  padding-left: 0.75em;
  margin-bottom: 56px;
}
.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-base-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-base-rgb)/0.4);
  border-right: 2px solid rgb(var(--color-text-base-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-orange);
  border-color: var(--color-orange);
}
.sitemap-list__link:hover::after {
  right: 1em;
  border-color: var(--color-orange);
}

/* ===========================================
*
* 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-orange);
  padding-left: 0.75em;
}

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

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