@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-19: 1.1875rem;
  --font-size-20: 1.25rem;
  --font-size-22: 1.375rem;
  --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-38: 2.375rem;
  --font-size-40: 2.5rem;
  --font-size-42: 2.625rem;
  --font-size-45: 2.8125rem;
  --font-size-46: 2.875rem;
  --font-size-48: 3rem;
  --font-size-50: 3.125rem;
  --font-size-52: 3.25rem;
  --font-size-54: 3.375rem;
  --font-size-55: 3.4375rem;
  --font-size-56: 3.5rem;
  --font-size-58: 3.625rem;
  --font-size-60: 3.75rem;
  --font-size-64: 4rem;
  --font-size-65: 4.0625rem;
  /* 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: 999px;
  /* logo width */
  --logo-width: 492px;
  /* map height */
  --map-height: 400px;
  /* btn defaults */
  --btn-height: 60px;
  --btn-line-height: 1.5;
  --btn-font-size: var(--font-size-18);
  --btn-font-weight: var(--font-weight-bold);
  --btn-letter-space: 0.06em;
  --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-sub);
  /* header */
  --header-height: 130px;
  /* breadcrumb settings */
  --bread-letter-space: var(--letter-space-small);
  --bread-font-size: var(--font-size-17);
  --bread-font-weight: var(--font-weight-bold);
  --bread-color: var(--color-text-main);
  --bread-grater-color: var(--color-text-main);
  --bread-grater-content: "＞";
  --bread-grater-space: 0 1em;
  --bread-hov-color: var(--color-accent-red);
  --bread-link-color: var(--color-text-main);
  --bread-last-item-color: var(--color-accent-red);
  --bread-padding: 16px 0 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: var(--round-10);
  --prev-next-link-color: #b3b3b3;
  --prev-next-link-bg-color: var(--color-gray);
  --prev-next-link-hov-color: var(--color-white);
  --prev-next-link-hov-bg-color: var(--color-main);
  --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-white);
  --tag-btn-current-bg-color: var(--color-main);
  --tag-btn-round: var(--round-5);
  --tag-btn-padding: 1em 1.5em;
  --tag-btn-font-size: var(--font-size-16);
  /* pagenation settings */
  --pagenation-margin-top: 56px;
  --pagenation-item-width: 3em;
  --pagenation-item-height: 3em;
  --pagenation-item-round: var(--round-5);
  --pagenation-item-font-size: var(--font-size-base);
  --pagenation-item-font-weight: var(--font-weight-bold);
  --pagenation-item-space: 8px;
  --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 {
  scroll-padding-top: var(--header-height);
}

body {
  font-size: var(--font-size-base);
  font-family: "SourceHanSans";
  line-height: var(--line-height-base);
  letter-spacing: var(--letter-spacing-base);
  font-weight: var(--font-weight-bold);
  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;
  padding-bottom: 82px;
}

/* ===========================================
*
* header style
*
* ======================================== */
.header {
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--color-white);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 101;
}
.header__inner {
  padding: 10px 50px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-width: var(--min-contents-width);
  margin: 0 auto;
  width: 100%;
  height: var(--header-height);
}
.header__right {
  width: 640px;
}
.header-info {
  width: 100%;
  gap: 30px;
}
.header-nav {
  margin-top: 22px;
  width: 100%;
}
.header-nav__item {
  position: relative;
}
.header-nav__item:not(:last-child) {
  margin-right: 50px;
}
.header-nav__link {
  position: relative;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: var(--font-size-17);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-small);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header-nav__link:hover {
  color: var(--color-accent-red);
  opacity: 1;
}
.header-nav__link.current {
  color: var(--color-accent-red);
}

/* 
ドロップダウンメニュー
-------------------------*/
.header-nav__item:has(.header-nav__link.dropdown-menu) {
  position: relative;
  z-index: 1;
}

.header-nav .dropdown-menu__list {
  visibility: hidden;
  opacity: 0;
  display: none;
  position: absolute;
  left: 50%;
  bottom: 0px;
  padding-top: 16px;
  translate: -50% 100%;
  z-index: 1;
  -webkit-transition: visibility 0s, opacity 0.3s ease;
  transition: visibility 0s, opacity 0.3s ease;
  width: 150px;
  text-align: center;
}
.header-nav .dropdown-menu__item {
  position: relative;
  z-index: 1;
}
.header-nav
  .dropdown-menu__item:has(.dropdown-menu__link.dropdown-menu)
  > .dropdown-menu__list {
  bottom: unset;
  top: 0;
  left: 0;
  translate: -100% 0%;
}
.header-nav
  .dropdown-menu__item:has(.dropdown-menu__link.dropdown-menu):hover
  > .dropdown-menu__list {
  visibility: visible;
  opacity: 1;
  display: block;
}
.header-nav .dropdown-menu__link {
  padding: 12px 1em;
  position: relative;
  font-size: var(--font-size-18);
  letter-spacing: var(--letter-spacing-small);
  font-weight: var(--font-weight-bold);
  font-family: var(--font-sub);
  background-color: var(--color-bg-gray);
  color: var(--color-text-main);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: block;
}
.header-nav .dropdown-menu__link:hover {
  color: var(--color-white);
  background: var(--color-main);
}
.header-nav .dropdown-menu__link:hover::before {
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(100%)
    saturate(0%) hue-rotate(155deg) brightness(104%) contrast(101%);
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%)
    hue-rotate(155deg) brightness(104%) contrast(101%);
}
.header-nav .dropdown-menu__link.current {
  color: var(--color-white);
  background: var(--color-main);
}
.header-nav .dropdown-menu__link.current::before {
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(100%)
    saturate(0%) hue-rotate(155deg) brightness(104%) contrast(101%);
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%)
    hue-rotate(155deg) brightness(104%) contrast(101%);
}
.header-nav__item:has(.header-nav__link.dropdown-menu):hover
  > .dropdown-menu__list {
  visibility: visible;
  opacity: 1;
  display: block;
}

/* ===========================================
*
* footer style
*
* ======================================== */
.footer {
  position: relative;
  background-color: var(--color-white);
  border-top: 2px solid var(--color-main);
  padding-block: 60px 50px;
}
.footer__inner {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.footer__logo {
  margin-bottom: 40px;
}
.footer__business-info {
  margin-bottom: 30px;
}
.footer__tel {
  margin-bottom: 30px;
}
.footer__left {
  width: 50%;
}
.footer__links {
  gap: 10px;
  --btn-padding-x: 10px;
  --btn-font-size: var(--font-size-16);
}
.footer__line-btn {
  width: 210px;
}
.footer__contact-btn {
  width: 165px;
}
.footer__right {
  width: 48%;
  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: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.footer__banner {
  margin-bottom: 25px;
}
.footer-nav {
  width: 100%;
}
.footer-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 25px 64px;
  width: 370px;
  max-height: 280px;
  margin-left: auto;
}
.footer-nav__link {
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: var(--font-size-15);
  padding-left: 1.6em;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 1;
  letter-spacing: var(--letter-spacing-xs);
}
.footer-nav__link::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: var(--round-full);
  background-color: var(--color-main);
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0% -50%;
}
.footer-nav__link:hover,
.footer-nav__link.current {
  color: var(--color-main);
}
.footer-nav__item .dropdown-menu__list {
  margin-top: 13px;
}
.footer-nav__item .dropdown-menu__item {
  position: relative;
  z-index: 1;
  padding-left: 1em;
}
.footer-nav__item .dropdown-menu__item:not(:last-child) {
  margin-bottom: 15px;
}
.footer-nav__item .dropdown-menu__link {
  position: relative;
  font-size: var(--font-size-13);
  letter-spacing: var(--letter-spacing-small);
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  word-break: keep-all;
  overflow-wrap: anywhere;
  padding-left: 20px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.footer-nav__item .dropdown-menu__link::after {
  content: "";
  width: 10px;
  height: 1px;
  background-color: var(--color-bg-gray);
  position: absolute;
  display: block;
  left: 0;
  top: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  translate: 0 -50%;
}
.footer-nav__item .dropdown-menu__link:hover {
  color: var(--color-main);
}
.footer__bottom {
  margin-top: 45px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #666666;
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-small);
  font-size: var(--font-size-15);
  width: 100%;
}
/* ===========================================
*  
*  main layouts
* 
* ======================================== */
.wrapper {
  position: relative;
  z-index: 1;
}

/* ------------------------------------------------------------------------------
*
* Object
*
* ------------------------------------------------------------------------------ */
/* ----------------------------------------------------
*  Component（共通化されたコンポーネントスタイル）
*  ---------------------------------------------------- */
/* logo
-------------------------*/
.logo {
  width: var(--logo-width);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: block;
}
.logo img {
  width: 100%;
}
.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 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 60px;
  font-size: var(--font-size-42);
  letter-spacing: var(--letter-spacing-small);
  font-weight: var(--font-weight-bold);
  text-align: center;
  line-height: 1.5;
  position: relative;
  padding-inline: 40px;
  z-index: 1;
}
.cmn-ttl::after,
.cmn-ttl::before {
  content: "";
  width: 10px;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  border: 3px solid var(--color-main);
}
.cmn-ttl::before {
  left: 0;
  border-right: none;
}
.cmn-ttl::after {
  right: 0;
  border-left: none;
}

/* cmn-bg-ttl
-------------------------*/
.cmn-bg-ttl {
  font-size: var(--font-size-32);
  font-weight: var(--font-weight-bold);
  background: var(--color-main);
  color: var(--color-white);
  letter-spacing: var(--letter-spacing-base);
  padding: 10px 20px;
}

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

.tel {
  /* tel　style */
  --tel-font-size: var(--font-size-35);
  --tel-icon-space: 1.6em;
  --tel-icon-position: 0.575em;
  --tel-icon-width: 1.37em;
  --tel-icon-height: 0.8em;
  font-weight: var(--font-weight-bold, 700);
  font-size: var(--tel-font-size, 28px);
  letter-spacing: var(--letter-spacing-small);
  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.svg) no-repeat center/contain;
}
.tel-icon--white {
  color: var(--color-white);
}
.tel-icon--white::before {
  background: url(../img/common/icon_tel_white.png) no-repeat center/contain;
}

/*
 snsクラス
-------------------------*/
.sns {
  --sns-icon-space: 25px;
  --sns-icon-size: 50px;
  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%;
}
.sns__icon--mail {
  display: grid;
  place-content: center;
  background-color: var(--color-main);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: var(--round-10);
  height: var(--sns-icon-size);
}
.sns__icon--mail img {
  width: calc(var(--sns-icon-size) / 2);
}
.sns__icon--mail:hover {
  opacity: 1;
  background-color: var(--color-main-lighten);
}

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

.main-table {
  --table-letter-spacing: var(--letter-spacing-small);
  --table-th-text-align: left;
  --table-th-x-padding: 0 1.5em;
  --table-th-y-padding: 1.3552631579em;
  --table-th-bg-color: transparent;
  --table-th-color: var(--color-main);
  --table-th-width: 285px;
  --table-td-x-padding: 0px;
  --table-td-y-padding: 1.3552631579em;
  --table-td-bg-color: transparent;
  --table-td-color: var(--color-text-main);
  --table-td-width: calc(100% - var(--table-th-width));
  --table-border-color: #cdcdcd;
  --table-th-border-color: #cdcdcd;
  --table-td-border-color: #cdcdcd;
  --table-width: 100%;
  width: var(--table-width);
  letter-spacing: var(--table-letter-spacing);
  font-size: var(--font-size-19);
}
.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;
  font-weight: var(--font-weight-bold);
}
.main-table th {
  width: var(--table-th-width);
  background-color: var(--table-th-bg-color);
  color: var(--table-th-color);
  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.765;
  --sentence-p-margin: 1.765em;
  letter-spacing: var(--letter-spacing-small);
  font-weight: var(--font-weight-bold);
  line-height: var(--sentence-line-height);
  font-size: var(--font-size-17);
  /* 疑似要素で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;
}

/*------------------------------
*
* business-info
*
------------------------------*/
.cmn-business-info {
  /* 営業時間・定休日をまとめたdl */
  gap: 15px 10px;
}
.cmn-business-info__item {
  gap: 5px 6px;
}
.cmn-business-info__item dt {
  min-width: 84px;
  font-size: var(--font-size-15);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-small);
  background-color: var(--color-main);
  color: var(--color-white);
  text-align: center;
  border-radius: 1em;
  line-height: 1.6;
}
.cmn-business-info__item dd {
  font-size: var(--font-size-16);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-small);
}

/* 
* カラムスタイル
* 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-10);
}
.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-main);
  color: var(--color-white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cmn-btn--primary:hover {
  background-color: var(--color-main-lighten);
  color: var(--color-white);
  opacity: 1;
}
.cmn-btn--solid {
  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--solid:hover {
  background-color: var(--color-main-lighten);
  color: var(--color-white);
  opacity: 1;
}
.cmn-btn--border {
  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: transparent;
  color: var(--color-text-main);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid var(--color-text-main);
}
.cmn-btn--border:hover {
  background-color: var(--color-text-main);
  color: var(--color-white);
  border-color: var(--color-text-main);
  opacity: 1;
}
.cmn-btn--switch {
  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-white);
  color: var(--color-main);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid var(--color-main);
  -webkit-box-shadow: 5px 5px 0px var(--color-main);
  box-shadow: 5px 5px 0px var(--color-main);
}
.cmn-btn--switch:hover {
  background-color: var(--color-main);
  color: var(--color-white);
  border-color: var(--color-main);
  opacity: 1;
  translate: 5px 5px;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.cmn-btn--icon-line > span {
  padding-left: 40px;
  position: relative;
  z-index: 1;
  display: inline-block;
}
.cmn-btn--icon-line > span::before {
  content: "";
  width: 26px;
  height: 26px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../img/common/icon_line.png) no-repeat center/contain;
}
.cmn-btn--icon-mail > span {
  padding-left: 35px;
  position: relative;
  z-index: 1;
  display: inline-block;
}
.cmn-btn--icon-mail > span::before {
  content: "";
  width: 24px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../img/common/icon_mail_white.png) no-repeat center/contain;
}
.cmn-btn--arrow-right {
  position: relative;
  z-index: 1;
}
.cmn-btn--arrow-right::after {
  content: "";
  width: 23px;
  height: 23px;
  background: url("/img/common/btn_arrow_right.png") no-repeat top
    center/contain;
  position: absolute;
  right: 20px;
  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%;
  height: clamp(640px, 41.6666666667vw, 800px);
  position: relative;
  z-index: 1;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.mv__content {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 640px;
  background: url("/img/common/pattern01.jpg") repeat center/auto;
  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;
}
.mv__catch {
  font-size: var(--font-size-65);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-base);
  line-height: 85px;
  margin-bottom: 35px;
  text-align: center;
  color: var(--color-white);
}
.mv__catch .sm {
  font-size: var(--font-size-54);
}

.mv__submit-btn:disabled {
  opacity: 0.9;
  cursor: not-allowed;
  background-color: #ccc;
  -webkit-box-shadow: 0 8px #aaa;
  box-shadow: 0 8px #aaa;
}

.mv__select-area {
  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;
}

.mv__select-wrapper {
  position: relative;
  display: inline-block;
  min-width: 200px;
}
.mv__select-wrapper::after {
  width: 51px;
  height: 74px;
  background: url("/img/top/select_arrow_down.png") no-repeat top center/contain;
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% calc(100% + 10px);
}

.mv__select {
  width: 100%;
  padding: 10px 105px;
  border: 5px solid #ddd;
  border-radius: 8px;
  background: #fff;
  font-size: 35px;
  line-height: 2;
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-small);
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}

.mv__select:focus {
  border-color: var(--color-link);
}

.mv__select-icons {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 5px;
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 440px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* 3本線アイコン（左側） */
.mv__select-icon--menu {
  left: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2px;
}
.mv__select-icon--menu > img {
  border-radius: 5px 0 0 5px;
}

.mv__select-icon--menu span {
  width: 16px;
  height: 2px;
  background-color: #666;
  border-radius: 1px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

/* 矢印アイコン（右側） */
.mv__select-icon--arrow {
  right: 15px;
  color: #666;
  -webkit-transition: color 0.3s ease, -webkit-transform 0.3s ease;
  transition: color 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, color 0.3s ease;
  transition: transform 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease;
}

.mv__select:focus + .mv__select-icons .mv__select-icon--arrow {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

/* ホバー効果 */
.mv__select-wrapper:hover .mv__select {
  border-color: var(--color-link);
}

.mv__select-wrapper:hover .mv__select-icon--menu span {
  background-color: var(--color-link);
}

.mv__select-wrapper:hover .mv__select-icon--arrow {
  color: var(--color-link);
}

.mv__submit-btn {
  border: none;
  cursor: pointer;
  width: 470px;
  margin-top: 110px;
  border-radius: var(--round-10);
  --btn-height: 110px;
  --btn-line-height: 1.5;
  --btn-font-size: 55px;
  --btn-font-weight: var(--font-weight-bold);
  --btn-padding-y: calc(
    (var(--btn-height) - var(--btn-font-size) * var(--btn-line-height)) / 2
  );
  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-accent-yellow);
  color: var(--color-white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 0px solid transparent;
  -webkit-box-shadow: 0px 8px 0px #ba8d00;
  box-shadow: 0px 8px 0px #ba8d00;
}

/* .disabledが付いていない時のみ光る効果 */
.mv__submit-btn:not(.disabled) {
  -webkit-box-shadow: 0px 8px 0px #ba8d00, 0 0 20px rgba(255, 215, 0, 0.6),
    0 0 40px rgba(255, 215, 0, 0.4), 0 0 60px rgba(255, 215, 0, 0.2);
  box-shadow: 0px 8px 0px #ba8d00, 0 0 20px rgba(255, 215, 0, 0.6),
    0 0 40px rgba(255, 215, 0, 0.4), 0 0 60px rgba(255, 215, 0, 0.2);
  -webkit-animation: glow-pulse 2s infinite alternate;
  animation: glow-pulse 2s infinite alternate;
}

@-webkit-keyframes glow-pulse {
  0% {
    -webkit-box-shadow: 0px 8px 0px #ba8d00, 0 0 20px rgba(255, 215, 0, 0.6),
      0 0 40px rgba(255, 215, 0, 0.4), 0 0 60px rgba(255, 215, 0, 0.2);
    box-shadow: 0px 8px 0px #ba8d00, 0 0 20px rgba(255, 215, 0, 0.6),
      0 0 40px rgba(255, 215, 0, 0.4), 0 0 60px rgba(255, 215, 0, 0.2);
  }
  100% {
    -webkit-box-shadow: 0px 8px 0px #ba8d00, 0 0 30px rgba(255, 215, 0, 0.8),
      0 0 60px rgba(255, 215, 0, 0.6), 0 0 90px rgba(255, 215, 0, 0.4);
    box-shadow: 0px 8px 0px #ba8d00, 0 0 30px rgba(255, 215, 0, 0.8),
      0 0 60px rgba(255, 215, 0, 0.6), 0 0 90px rgba(255, 215, 0, 0.4);
  }
}

@keyframes glow-pulse {
  0% {
    -webkit-box-shadow: 0px 8px 0px #ba8d00, 0 0 20px rgba(255, 215, 0, 0.6),
      0 0 40px rgba(255, 215, 0, 0.4), 0 0 60px rgba(255, 215, 0, 0.2);
    box-shadow: 0px 8px 0px #ba8d00, 0 0 20px rgba(255, 215, 0, 0.6),
      0 0 40px rgba(255, 215, 0, 0.4), 0 0 60px rgba(255, 215, 0, 0.2);
  }
  100% {
    -webkit-box-shadow: 0px 8px 0px #ba8d00, 0 0 30px rgba(255, 215, 0, 0.8),
      0 0 60px rgba(255, 215, 0, 0.6), 0 0 90px rgba(255, 215, 0, 0.4);
    box-shadow: 0px 8px 0px #ba8d00, 0 0 30px rgba(255, 215, 0, 0.8),
      0 0 60px rgba(255, 215, 0, 0.6), 0 0 90px rgba(255, 215, 0, 0.4);
  }
}
/* ホバー時（.disabledが付いていない時のみ） */
.mv__submit-btn:not(.disabled):hover {
  scale: 1.02;
  -webkit-box-shadow: 0px 8px 0px #ba8d00, 0 0 20px rgba(255, 215, 0, 0.6),
    0 0 40px rgba(255, 215, 0, 0.4), 0 0 60px rgba(255, 215, 0, 0.2);
  box-shadow: 0px 8px 0px #ba8d00, 0 0 20px rgba(255, 215, 0, 0.6),
    0 0 40px rgba(255, 215, 0, 0.4), 0 0 60px rgba(255, 215, 0, 0.2);
  -webkit-animation: none;
  animation: none;
}

@-webkit-keyframes glow-intense {
  0% {
    -webkit-box-shadow: 0px 8px 0px #ba8d00, 0 0 40px rgba(255, 215, 0, 0.9),
      0 0 80px rgba(255, 215, 0, 0.7), 0 0 120px rgba(255, 215, 0, 0.5);
    box-shadow: 0px 8px 0px #ba8d00, 0 0 40px rgba(255, 215, 0, 0.9),
      0 0 80px rgba(255, 215, 0, 0.7), 0 0 120px rgba(255, 215, 0, 0.5);
  }
  100% {
    -webkit-box-shadow: 0px 8px 0px #ba8d00, 0 0 50px rgb(255, 215, 0),
      0 0 100px rgba(255, 215, 0, 0.8), 0 0 150px rgba(255, 215, 0, 0.6);
    box-shadow: 0px 8px 0px #ba8d00, 0 0 50px rgb(255, 215, 0),
      0 0 100px rgba(255, 215, 0, 0.8), 0 0 150px rgba(255, 215, 0, 0.6);
  }
}

@keyframes glow-intense {
  0% {
    -webkit-box-shadow: 0px 8px 0px #ba8d00, 0 0 40px rgba(255, 215, 0, 0.9),
      0 0 80px rgba(255, 215, 0, 0.7), 0 0 120px rgba(255, 215, 0, 0.5);
    box-shadow: 0px 8px 0px #ba8d00, 0 0 40px rgba(255, 215, 0, 0.9),
      0 0 80px rgba(255, 215, 0, 0.7), 0 0 120px rgba(255, 215, 0, 0.5);
  }
  100% {
    -webkit-box-shadow: 0px 8px 0px #ba8d00, 0 0 50px rgb(255, 215, 0),
      0 0 100px rgba(255, 215, 0, 0.8), 0 0 150px rgba(255, 215, 0, 0.6);
    box-shadow: 0px 8px 0px #ba8d00, 0 0 50px rgb(255, 215, 0),
      0 0 100px rgba(255, 215, 0, 0.8), 0 0 150px rgba(255, 215, 0, 0.6);
  }
}
/* .disabledスタイル（光らない） */
.mv__submit-btn.disabled {
  background-color: #ccc;
  cursor: not-allowed;
  -webkit-box-shadow: 0px 8px 0px #999;
  box-shadow: 0px 8px 0px #999; /* 通常の影のみ */
  -webkit-animation: none;
  animation: none; /* アニメーション停止 */
}

/* :disabled疑似クラスも対応 */
.mv__submit-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  -webkit-box-shadow: 0px 8px 0px #999;
  box-shadow: 0px 8px 0px #999;
  -webkit-animation: none;
  animation: none;
}

/* 
swiper
-------------------------*/
.mv__swiper.swiper {
  height: clamp(640px, 41.6666666667vw, 800px);
  width: calc(100% - 640px);
  z-index: 1;
}

/*------------------------------
*
* main style sv(sub visual)
*
------------------------------*/
.sv {
  width: 100%;
  position: relative;
  z-index: 1;
  height: clamp(333px, 26.0416666667vw, 500px);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}
.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-52);
  letter-spacing: var(--letter-spacing-base);
  font-weight: var(--font-weight-bold);
  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;
  gap: 10px;
}
.sv__catch > span {
  display: block;
  background-color: var(--color-white);
  color: var(--color-main);
  line-height: 80px;
  padding-inline: 20px;
}

/*------------------------------
*
* 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: transparent;
  --post-width: 100%;
  --post-item-margin: 30px;
  --post-item-flex-margin-space: 12px;
  --post-link-padding: 0 0 30px 0;
  --post-tags-width: calc(100% - 120px);
  --post-title-font-size: var(--font-size-17);
  --post-date-font-size: var(--font-size-17);
  width: var(--post-width);
}
.cmn-post-item {
  width: 100%;
  background-color: var(--post-item-bg-color, transparent);
}
.cmn-post-item:not(:last-child) {
  margin-bottom: var(--post-item-margin, 15px);
  border-bottom: 1px solid #cdcdcd;
}
.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 {
  margin-bottom: var(--post-item-flex-margin-space, 12px);
}
.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-weight: var(--font-weight-bold);
  font-size: var(--post-date-font-size, 16px);
}
.cmn-post__ttl {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  width: 100%;
  font-size: var(--post-title-font-size, 16px);
}

/*------------------------------
*
* tag
*
------------------------------*/
.tag {
  --tag-font-size: var(--font-size-17);
  --tag-height: 1;
  --tag-x-padding: 0px;
  --tag-round: 0px;
  --tag-color: var(--color-accent-red);
  --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-bold);
  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:hover {
  color: var(--color-main);
}

.tag-list {
  --tag-space: 5px 20px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: var(--tag-space);
  padding-left: 20px;
  border-left: 1px solid var(--color-accent-red);
}

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

/* page top btn
-------------------------*/
.page-top-btn {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 61;
  width: 82px;
  }

/* floating
-------------------------*/
.floating {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 51;
  width: 100%;
  background-color: rgb(var(--color-white-rgb) / 0.92);
}
.floating__inner {
  height: 82px;
  display: flex;
  align-items: center;
  /* justify-content: space-between;
  */
  
  
}
.floating__left{
  display: flex;
gap: 10px;
align-items: center;
justify-content: flex-start;
}
.floating__tel{
  --tel-font-size: var(--font-size-30);
}
.floating__business-info  {
  /* margin-left: 10px; */
  gap: 10px;
  font-size: var(--font-size-14);
}
.floating__links {
  gap: 10px;
  --btn-font-size: var(--font-size-16);
  --btn-height: 50px;
    --btn-padding-y: calc(
    (var(--btn-height) - var(--btn-font-size) * var(--btn-line-height)) / 2
  );
  --btn-padding-x:10px;
  margin-left: auto;
}
.floating__line-btn{
  width: 210px;
}
.floating__contact-btn{
  width: 165px;
}

/* ----------------------------------------------------
*  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
*
* ======================================== */
/*------------------------------
*
* banner
*
------------------------------*/
.banner {
  border: 1px solid var(--color-text-main);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.banner__img {
  width: 445px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.banner__content {
  padding: 46px 50px 50px;
  background: url("/img/common/pattern02.png") repeat center/auto;
  position: relative;
  z-index: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  width: 100%;
}
.banner__ttl {
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-40);
  line-height: 1.3;
  letter-spacing: var(--letter-spacing-small);
  padding-bottom: 14px;
  border-bottom: 2px solid var(--color-main);
  margin-bottom: 30px;
}
.banner__point {
  width: 140px;
  height: 140px;
  background-color: var(--color-main);
  color: var(--color-accent-yellow);
  line-height: 1.6;
  font-size: var(--font-size-20);
  text-align: center;
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-xs);
  -ms-flex-line-pack: center;
  align-content: center;
  position: absolute;
  top: 0;
  right: 0;
  translate: -30px -10px;
  z-index: 1;
  border-radius: var(--round-full);
}
.banner__point::before {
  content: "";
  width: 47px;
  height: 25px;
  background: url("/img/top/banner_shine.png") no-repeat top center/contain;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -28px;
}
.banner__sentence {
  --sentence-line-height: 1.667;
  font-size: var(--font-size-18);
}

/*------------------------------
*
* worries
*
------------------------------*/
.worries {
  background: url("/img/top/worries_bg.jpg") no-repeat center/cover;
}
.worries__ttl {
  margin: 0 auto 50px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 2px solid var(--color-main);
  font-size: var(--font-size-38);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-small);
  padding-bottom: 8px;
  color: var(--color-main);
}
.worries__ttl .lg {
  font-size: var(--font-size-48);
}
.worries__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.worries__item {
  background-color: var(--color-white);
  padding: 30px 10px 27px;
}
.worries__item-img {
  width: 160px;
  margin: 0 auto 17px;
}
.worries__item-txt {
  font-size: var(--font-size-24);
  font-weight: var(--font-weight-bold);
  text-align: center;
  letter-spacing: var(--letter-spacing-small);
}
.worries__cta {
  margin-top: 45px;
}
.worries__cta-ttl {
  line-height: 72px;
  letter-spacing: var(--letter-spacing-small);
  font-weight: var(--font-weight-bold);
  text-align: center;
  font-size: var(--font-size-45);
}
.worries__cta-ttl .lg {
  font-size: var(--font-size-54);
}

/*------------------------------
*
* top-intro
*
------------------------------*/
.top-intro__container {
  gap: 40px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.top-intro__img {
  width: 520px;
}
.top-intro__content {
  width: 520px;
}
.top-intro__ttl {
  text-align: center;
  font-size: var(--font-size-52);
  font-weight: var(--font-weight-bold);
  color: var(--color-main);
  margin-bottom: 50px;
}
.top-intro__ttl .lg {
  font-size: 4.6875rem;
}
.top-intro__sentence {
  text-align: center;
  font-size: var(--font-size-18);
  --sentence-line-height: 2;
}

/*------------------------------
*
* top-case
*
------------------------------*/
.top-case {
  background: url("/img/common/pattern01.jpg") repeat center/auto;
}
.top-case__ttl {
  font-size: var(--font-size-45);
  line-height: 72px;
  text-align: center;
  margin-bottom: 56px;
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-small);
}
.top-case__ttl .sm {
  font-size: var(--font-size-38);
}
.top-case__ttl .lg {
  font-size: var(--font-size-48);
}
.top-case .case__swiper {
  max-width: 1450px;
  width: 95%;
  margin: 0 auto;
}
.top-case .case__swiper .case__swiper-prev,
.top-case .case__swiper .case__swiper-next {
  border-radius: var(--round-5);
  width: 40px;
  height: 80px;
  position: absolute;
  z-index: 10;
  top: 50%;
  background-color: var(--color-main);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.top-case .case__swiper .case__swiper-prev:hover,
.top-case .case__swiper .case__swiper-next:hover {
  background-color: var(--color-main-lighten);
}
.top-case .case__swiper .case__swiper-prev::after,
.top-case .case__swiper .case__swiper-next::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 16px;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background-color: var(--color-white);
}
.top-case .case__swiper .case__swiper-prev {
  left: 10px;
  translate: 0% -50%;
}
.top-case .case__swiper .case__swiper-prev::after {
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}
.top-case .case__swiper .case__swiper-next {
  right: 10px;
  translate: 0% -50%;
}
.top-case .case__swiper .case__swiper-next::after {
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.top-case .case__swiper .case__swiper-prev.swiper-button-disabled,
.top-case .case__swiper .case__swiper-next.swiper-button-disabled {
  pointer-events: none;
  background-color: #ccc;
}
.top-case .case__swiper .case-card {
  height: 100%;
}
.top-case .case__swiper .swiper-slide {
  height: auto;
}
.top-case .case__swiper .swiper-wrapper {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

/*------------------------------
*
* top-beginner
*
------------------------------*/
.top-beginner__ttl {
  margin-bottom: 65px;
}
.top-beginner__container {
  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;
  gap: 82px;
}
.top-beginner__img {
  width: 260px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.top-beginner__sentence {
  --sentence-line-height: 1.75;
  font-size: var(--font-size-24);
  font-weight: var(--font-weight-bold);
  background-color: var(--color-theme);
  width: 500px;
  padding: 40px 35px;
  border-radius: var(--round-10);
  position: relative;
  z-index: 1;
  text-align: center;
}
.top-beginner__sentence .marker {
  --marker-start: 50%;
  --marker-end: 50%;
  padding-inline: 0.125em;
  padding-bottom: 0.125em;
}
.top-beginner__sentence::before {
  width: 32px;
  height: 36px;
  background-color: var(--color-theme);
  position: absolute;
  top: 50%;
  right: 0;
  translate: 100% -50%;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: "";
}
.top-beginner__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 65px;
}
.top-beginner__btn-txt {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: 44px;
  position: relative;
  z-index: 1;
  line-height: 1;
  font-size: var(--font-size-20);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-base);
  text-align: center;
  margin: 0 auto 16px;
}
.top-beginner__btn-txt::before {
  content: "";
  height: 26px;
  width: 100%;
  position: absolute;
  left: 50%;
  bottom: 0;
  translate: -50% 0;
  background: url("/img/common/text_slash_left.png") no-repeat left
      center/contain,
    url("/img/common/text_slash_right.png") no-repeat right center/contain;
}

/*------------------------------
*
* top-useful
*
------------------------------*/
.top-useful {
  width: max(1180px, 89.5833333333%);
  margin-inline: auto;
  background-color: var(--color-theme);
}
.top-useful__ttl {
  padding-inline: 36px;
  margin-bottom: 50px;
}
.top-useful__container {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 80px;
}
.top-useful__content {
  width: 340px;
}
.top-useful__sentence {
  text-align: center;
}
.top-useful__img {
  width: 520px;
}
.top-useful__btn {
  margin-top: 50px;
}

/*------------------------------
*
* top-news
*
------------------------------*/
.top-news__btn {
  margin-top: 50px;
  width: 340px;
}

/*------------------------------
*
* info
*
------------------------------*/
.info {
  background-color: #f0f0f0;
}
.top-map {
  height: var(--map-height);
}

/* ===========================================
*
* beginner-page
*
* ======================================== */
/*------------------------------
*
* items
*
------------------------------*/
.items__ttl {
  margin-bottom: 50px;
}
.items__priority-ttl {
  margin-bottom: 35px;
}
.items__priority-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px 40px;
}
.items-card__ttl {
  border-bottom: 2px solid var(--color-main);
  color: var(--color-main);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-20);
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.items-card__img {
  aspect-ratio: 52/31;
  width: 100%;
  margin-bottom: 15px;
}
.items-card__sentence {
  --sentence-line-height: 1.75;
  font-size: var(--font-size-16);
}
.items__other {
  margin-top: 70px;
}
.items__other-ttl {
  margin-bottom: 36px;
}
.items__other-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 38px 20px;
}
.items-tag__ttl {
  border-bottom: 1px solid var(--color-main);
  color: var(--color-main);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-18);
  padding-bottom: 12px;
  margin-bottom: 0px;
}
.items-tag__img {
  aspect-ratio: 20/17;
  width: 100%;
}

/*------------------------------
*
* flow
*
------------------------------*/
.flow {
  background-color: var(--color-theme);
}
.flow-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  gap: 50px;
}
.flow-step:not(:last-child) {
  margin-bottom: 50px;
}
.flow-step__img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 430px;
}
.flow-step__content {
  width: 100%;
}
.flow-step__ttl {
  background-color: var(--color-main);
  color: var(--color-white);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-26);
  padding-block: 13px;
  padding-inline: 20px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}
.flow-step__num {
  font-size: var(--font-size-28);
  color: var(--color-accent-yellow);
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.flow-step__sentence {
  padding-inline: 10px;
}

/*------------------------------
*
* qa よくあるご質問
*
------------------------------*/
.qa-list__item:not(:last-child) {
  margin-bottom: 40px;
}
.qa-list__item .question__mark,
.qa-list__item .answer__mark {
  width: 30px;
  height: 30px;
  text-align: center;
  place-content: center;
  font-weight: var(--font-weight-bold);
  border-radius: var(--round-full);
  font-size: var(--font-size-22);
  line-height: 1;
  padding-bottom: 0.1em;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 14px;
}
.qa-list__item .question {
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-inline: 30px;
  padding-block: 15px;
  margin-bottom: 20px;
}
.qa-list__item .question__content {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: var(--font-size-17);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-small);
  margin-right: 10px;
}
.qa-list__item .answer {
  position: relative;
  padding-inline: 30px;
}
.qa-list__item .answer__content {
  padding-top: 10px;
}

/* ===========================================
*
* useful-page
*
* ======================================== */
.useful-page .cta-wrapper {
  background: var(--color-white);
}

/*------------------------------
*
* benefits
*
------------------------------*/
.benefits {
  position: relative;
  z-index: 1;
  width: max(1180px, 89.5833333333%);
  margin: 100px auto 0;
  padding-top: 70px;
  background: url("/img/common/pattern01.jpg") repeat center/auto;
}
.benefits__ttl {
  font-size: var(--font-size-38);
  font-weight: var(--font-weight-bold);
  line-height: 58px;
  letter-spacing: var(--letter-spacing-small);
  margin-bottom: 46px;
  color: var(--color-white);
  text-align: center;
}
.benefits__ttl .lg {
  font-size: var(--font-size-46);
}
.benefits__item {
  background-color: var(--color-white);
  padding: 40px 60px;
}
.benefits__item:not(:last-child) {
  margin-bottom: 30px;
}
.benefits__item-header {
  margin-bottom: 20px;
  padding-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--color-bg-gray);
}
.benefits__item-ttl {
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-small);
  font-size: var(--font-size-22);
}
.benefits__item-num {
  font-weight: var(--font-weight-bold);
  color: var(--color-accent-red);
  font-size: var(--font-size-40);
  letter-spacing: var(--letter-spacing-small);
  line-height: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

/*------------------------------
*
* tips
*
------------------------------*/
.tips__ttl {
  font-size: var(--font-size-38);
  font-weight: var(--font-weight-bold);
  line-height: 60px;
  letter-spacing: var(--letter-spacing-small);
  margin-bottom: 46px;
  text-align: center;
}
.tips__ttl .lg {
  font-size: var(--font-size-42);
}
.tips__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.tips__item {
  background-color: var(--color-main);
  color: var(--color-white);
  position: relative;
  z-index: 1;
  padding: 47px 20px 40px;
}
.tips__item-num {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  font-size: var(--font-size-58);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-xs);
  display: inline-block;
  color: var(--color-accent-yellow);
}
.tips__item-ttl {
  margin-bottom: 25px;
  font-size: var(--font-size-24);
  min-height: 3em;
  place-content: center;
  text-align: center;
  font-weight: var(--font-weight-bold);
}
.tips__item-sentence {
  font-size: var(--font-size-16);
  --sentence-line-hight: 1.875;
}

.consultation {
  background: var(--color-theme);
}
.consultation__ttl {
  font-size: var(--font-size-38);
  font-weight: var(--font-weight-bold);
  line-height: 60px;
  letter-spacing: var(--letter-spacing-small);
  margin-bottom: 35px;
  text-align: center;
}
.consultation__ttl .lg {
  font-size: var(--font-size-42);
}
.consultation__container {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  gap: 77px;
}
.consultation__img {
  width: 260px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.consultation__sentence {
  --sentence-line-height: 1.75;
  font-size: var(--font-size-20);
  font-weight: var(--font-weight-bold);
  background-color: var(--color-white);
  width: 690px;
  padding: 40px 50px;
  border-radius: var(--round-10);
  position: relative;
  z-index: 1;
}
.consultation__sentence .marker {
  --marker-start: 50%;
  --marker-end: 50%;
  padding-inline: 0.125em;
  padding-bottom: 0.125em;
}
.consultation__sentence::before {
  width: 32px;
  height: 36px;
  background-color: var(--color-white);
  position: absolute;
  top: 50%;
  left: 0;
  translate: -100% -50%;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  content: "";
}

/* ===========================================
*
* precious_metals-page
* watches-page
* jewelry-page
* brand_goods-page
*
* ======================================== */
/*------------------------------
*
* purchase-items
*
------------------------------*/
.purchase-items__content {
  padding: 50px 60px;
  background-color: var(--color-theme);
}
.purchase-items .etc-text {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  line-height: 1;
  font-size: var(--font-size-24);
  margin-top: 20px;
  letter-spacing: var(--letter-spacing-small);
  font-weight: var(--font-weight-bold);
}

/*------------------------------
*
* case
*
------------------------------*/
.case {
  background-color: var(--color-theme);
}
.case__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.case-card {
  background-color: var(--color-white);
  padding-block: 20px;
}
.case-card__thumbnail {
  aspect-ratio: 5/4;
  margin-inline: auto;
  margin-bottom: 17px;
  width: calc(100% - 40px);
}
.case-card__name {
  text-align: center;
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-small);
  font-size: var(--font-size-18);
  margin-bottom: 5px;
  padding-inline: 20px;
}
.case-card__price {
  text-align: center;
  font-size: var(--font-size-26);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-small);
  color: var(--color-accent-red);
  margin-bottom: 14px;
  padding-inline: 20px;
}
.case-card__price .yen {
  font-size: var(--font-size-16);
}
.case-card__content {
  padding-inline: 20px;
  padding-block: 17px 7px;
  border-top: 1px solid var(--color-bg-gray);
  font-size: var(--font-size-15);
  line-height: 1.6;
}

/*------------------------------
*
* feature
*
------------------------------*/
.feature__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  gap: 50px;
}
.feature__item:not(:last-child) {
  margin-bottom: 50px;
}
.feature__item-img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 430px;
}
.feature__item-content {
  width: 100%;
}
.feature__item-ttl {
  background-color: var(--color-main);
  color: var(--color-white);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-20);
  padding-block: 13px;
  padding-inline: 20px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.feature__item-ttl .num {
  font-size: var(--font-size-28);
  color: var(--color-accent-yellow);
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.feature__item-sentence {
  padding-inline: 10px;
}

/*------------------------------
*
* cta
*
------------------------------*/
.cta-wrapper {
  background-color: #f0f0f0;
}

.cta-line-btn {
  --btn-height: 90px;
  --btn-padding-y: calc(
    (var(--btn-height) - var(--btn-font-size) * var(--btn-line-height)) / 2
  );
  --btn-font-size: var(--font-size-20);
  width: 530px;
  margin: 0 auto 80px;
}
.cta-line-btn .cmn-btn--icon-line > span {
  padding-left: 52px;
}
.cta-line-btn .cmn-btn--icon-line > span::before {
  width: 32px;
  height: 32px;
}

.cta {
  background: url("/img/common/pattern01.jpg") repeat center/auto;
  padding: 90px 100px 85px;
  text-align: center;
}
.cta__ttl {
  font-size: var(--font-size-38);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-small);
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--color-accent-yellow);
  position: relative;
  z-index: 1;
  margin-inline: auto;
  margin-bottom: 50px;
  padding-inline: 60px;
}
.cta__ttl::before {
  content: "";
  width: 100%;
  height: 34px;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  background: url("/img/common/contact_ttl_slash_left.png") no-repeat left
      center/contain,
    url("/img/common/contact_ttl_slash_right.png") no-repeat right
      center/contain;
}
.cta .sns__icon--mail {
  --sns-icon-size: 60px;
  background-color: var(--color-accent-red);
}
.cta .sns__icon--mail:hover {
  background-color: var(--color-accent-red-darken);
}

.cta__tel {
  background-color: var(--color-white);
  border-radius: var(--round-10);
  padding: 14px 20px 12px;
  place-content: center;
  height: 60px;
}
.cta__tel .tel {
  --tel-font-size: var(--font-size-32);
  --tel-icon-space: 1.6em;
  --tel-icon-position: 0.5em;
  --tel-icon-width: 1.36em;
  --tel-icon-height: 0.75em;
}
.cta__links {
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px 32px;
}
.cta__business-info {
  font-size: var(--font-size-20);
  margin: 16px auto 0;
  color: var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* ===========================================
*
* 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-main);
  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__item .dropdown-menu__list {
  margin-left: auto;
  width: calc(100% - 1em);
  margin-bottom: 10px;
}
.sitemap-list__item .dropdown-menu__item {
  position: relative;
  z-index: 1;
  padding-left: 1em;
}
.sitemap-list__item .dropdown-menu__link {
  position: relative;
  width: 100%;
  display: block;
  padding: 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;
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: block;
  word-break: keep-all;
  overflow-wrap: anywhere;
  padding-left: 20px;
}
.sitemap-list__item .dropdown-menu__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__item .dropdown-menu__link:hover {
  color: var(--color-main);
  border-color: var(--color-main);
}
.sitemap-list__item .dropdown-menu__link:hover::after {
  right: 1em;
  border-color: var(--color-main);
}
.sitemap-list__item .dropdown-menu__link::before {
  content: "";
  width: 10px;
  height: 1px;
  background-color: var(--color-bg-gray);
  position: absolute;
  display: block;
  left: 0;
  top: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  translate: 0 -50%;
}
.sitemap-list__item .dropdown-menu__link:hover {
  color: var(--color-main);
}
.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.nolink::after {
  display: none;
}
.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-bold);
  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;
}
