@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-34: 2.125rem;
  --font-size-35: 2.1875rem;
  --font-size-36: 2.25rem;
  --font-size-40: 2.5rem;
  --font-size-42: 2.625rem;
  --font-size-45: 2.8125rem;
  --font-size-48: 3rem;
  --font-size-50: 3.125rem;
  --font-size-54: 3.375rem;
  --font-size-55: 3.4375rem;
  --font-size-56: 3.5rem;
  --font-size-60: 3.75rem;
  --font-size-64: 4rem;
  /* width base settings */
  --min-contents-width: 1280px;
  --wide-inner-width: 1280px;
  --inner-width: 1080px;
  /* border-radius */
  --round-5: 5px;
  --round-10: 10px;
  --round-20: 20px;
  --round-30: 30px;
  --round-full: 999px;
  /* logo width */
  --logo-width: 216px;
  /* map height */
  --map-height: 350px;
  /* btn defaults */
  --btn-height: 100px;
  --btn-line-height: 1;
  --btn-font-size: var(--font-size-18);
  --btn-font-weight: var(--font-weight-medium);
  --btn-letter-space: var(--letter-spacing-none);
  --btn-padding-x: .75em;
  --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: 120px;
  /* breadcrumb settings */
  --bread-letter-space: var(--letter-space-none);
  --bread-font-size: 15px;
  --bread-font-weight: var(--font-weight-medium);
  --bread-color: var(--color-text-main);
  --bread-grater-color: var(--color-text-main);
  --bread-grater-content: "/";
  --bread-grater-space: 0 0.5em;
  --bread-hov-color: var(--color-green);
  --bread-link-color: var(--color-text-main);
  --bread-last-item-color: var(--color-text-main);
  --bread-padding: 1em 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: 3em;
  --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-dark-lime-green);
  --prev-next-link-font-size: var(--font-size-base);
  /* tag btn settings */
  --tag-btn-color: #b3b3b3;
  --tag-btn-bg-color: var(--color-white);
  --tag-btn-current-color: var(--color-white);
  --tag-btn-current-bg-color: var(--color-dark-lime-green);
  --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: 4px;
  --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-white);
  --pagenation-item-current-bg-color: var(--color-dark-lime-green);
}

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-none);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-main);
  min-width: var(--min-contents-width);
  margin: 0 auto;
  position: relative;
  font-style: normal;
  font-optical-sizing: auto;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  background: url("/img/pattern/pat02.jpg") repeat center/auto;
}

/* ===========================================
*
* header style
*
* ======================================== */
.header {
  width: 100%;
  align-items: center;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 101;
  background: url("/img/pattern/pat02.jpg") repeat center/auto;
}
.header__inner {
  padding: 10px 40px;
  box-sizing: border-box;
  min-width: var(--min-contents-width);
  margin: 0 auto;
  width: 100%;
  height: var(--header-height);
}
.header__right {
  width: 740px;
}
.header__info {
  gap: 28px;
}
.header__line-btn {
  --btn-height: 60px;
  --btn-font-size: var(--font-size-16);
  justify-content: center;
  align-items: center;
  gap: 0.75em;
  width: 273px;
  padding-block: calc((var(--btn-height) - 32px) / 2) !important;
  display: flex !important;
}
.header__line-btn::before, .header__line-btn::after {
  content: "";
  display: block;
}
.header__line-btn::before {
  width: 30px;
  height: 30px;
  background: url("/img/common/icon_line.svg") no-repeat top center/contain;
}
.header__line-btn::after {
  width: 18px;
  height: 10px;
  background: url("/img/common/arrow_black.png") no-repeat top center/contain;
}
.header-nav {
  margin-top: 18px;
  width: 100%;
}
.header-nav__item {
  position: relative;
}
.header-nav__item:not(:last-child) {
  margin-right: 2em;
}
.header-nav__link {
  position: relative;
  text-align: center;
  transition: all 0.3s;
  padding-left: 1em;
}
.header-nav__link::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: var(--round-full);
  background-color: var(--color-lime-green);
  transition: background-color 0.3s;
  position: absolute;
  left: 0;
  transform: translate(0%, -50%);
  top: 50%;
}
.header-nav__link:hover::after {
  background-color: var(--color-green);
}
.header-nav__link.current::after {
  background-color: var(--color-green);
}

/* ===========================================
*
* nav menu style
*
* ======================================== */
.nav-menu {
  width: 100%;
  box-sizing: border-box;
  background-color: var(--color-main);
  position: relative;
  z-index: 5;
}
.nav-menu__list {
  display: flex;
  justify-content: space-between;
}
.nav-menu__item {
  width: 20%;
  position: relative;
  z-index: 1;
}
.nav-menu__link {
  position: relative;
  text-align: center;
  transition: all 0.3s;
  padding-block: 1em;
  color: var(--color-white);
}
.nav-menu__link:hover {
  color: var(--color-accent);
  opacity: 1;
}
.nav-menu__link.current {
  color: var(--color-accent);
}
.nav-menu__link.current::after {
  width: 2em;
}

/* ===========================================
*
* footer style
*
* ======================================== */
.footer {
  position: relative;
  background-color: var(--color-white);
  padding-bottom: 100px;
}
.footer__inner {
  display: grid;
  gap: 40px 100px;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "left nav" "copy nav";
}
.footer__logo {
  margin-bottom: 40px;
}
.footer__left {
  grid-area: left;
}
.footer-nav {
  display: flex;
  justify-content: flex-end;
  gap: 0 70px;
  grid-area: nav;
}
.footer-nav__item:not(:last-child) {
  margin-bottom: 40px;
}
.footer-nav__link {
  line-height: 1;
  font-size: var(--font-size-16);
  transition: 0.3s;
  display: block;
  width: fit-content;
  padding-left: 1em;
  position: relative;
  z-index: 1;
}
.footer-nav__link::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-lime-green);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  transition: 0.3s;
}
.footer-nav__link:hover::before, .footer-nav__link.current::before {
  background-color: var(--color-green);
}
.footer__info {
  flex-direction: column;
  gap: 30px;
}
.footer__address {
  font-size: var(--font-size-18);
  line-height: 2;
  margin-block: -0.5em;
}
.footer__contact-btn {
  margin-top: 40px;
  width: 300px;
}
.footer__copy {
  grid-area: copy;
  font-size: var(--font-size-14);
  width: 100%;
  display: block;
  line-height: 1;
  color: var(--color-dark-lime-green);
}

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

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

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

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

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

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

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

/* 
title style
-------------------------*/
.cmn-ttl {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: var(--font-size-42);
  margin-bottom: 70px;
}
.cmn-ttl--deco-tree::before {
  content: "";
  width: 102px;
  height: 44px;
  background: url("/img/common/ttl_tree.png") no-repeat top center/contain;
  display: block;
}
.cmn-ttl--center {
  /* 中央揃え */
  align-items: center;
  text-align: center;
}
.cmn-ttl--left {
  /* 左揃え */
  align-items: flex-start;
  text-align: left;
}
.cmn-ttl--right {
  /* 右揃え */
  align-items: flex-end;
  text-align: right;
}
.cmn-ttl__main {
  font-size: 1em;
  font-weight: var(--font-weight-bold);
  line-height: 1.66;
  margin-block: -0.33em;
  display: inline-block;
  position: relative;
  z-index: 1;
}

/* cmn-border-right-ttl
-------------------------*/
.cmn-border-right-ttl {
  font-size: var(--font-size-30);
  color: var(--color-green);
  letter-spacing: var(--letter-spacing-none);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}
.cmn-border-right-ttl span {
  flex-shrink: 0;
  display: block;
  width: fit-content;
}
.cmn-border-right-ttl::after {
  content: "";
  height: 4px;
  width: 100%;
  flex-shrink: 1;
  background: var(--color-lime-green);
}

/* cmn-border-bottom-ttl
-------------------------*/
.cmn-border-bottom-ttl {
  font-size: var(--font-size-30);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-none);
  padding-bottom: 7px;
  border-bottom: 4px solid var(--color-lime-green);
}

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

.tel-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.tel-replace {
  width: fit-content;
  height: 12px;
}
.tel-replace > img {
  display: block;
}

.tel {
  /* tel　style */
  --tel-font-size: var(--font-size-34);
  --tel-icon-space: 1em;
  --tel-icon-position: 0.6125em;
  --tel-icon-width: 0.7058823529em;
  --tel-icon-height: 0.7058823529em;
  font-family: var(--font-main, sans-serif);
  font-weight: var(--font-weight-bold, 700);
  font-size: var(--tel-font-size, 28px);
  line-height: 1;
  position: relative;
  display: block;
  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;
  transform: translateY(-50%);
}
.tel-icon--main {
  color: var(--color-green);
}
.tel-icon--main::before {
  background: url(../img/common/icon_tel_main.png) no-repeat center/contain;
}

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

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

.main-table {
  --table-letter-spacing: var(--letter-spacing-none);
  --table-th-text-align: left;
  --table-th-x-padding: 20px;
  --table-th-y-padding: 0.8055555556em;
  --table-th-bg-color:transparent;
  --table-th-color: var(--color-green);
  --table-th-width: 180px;
  --table-td-x-padding: 0 20px;
  --table-td-y-padding: 0.8055555556em;
  --table-td-bg-color:transparent;
  --table-td-color: var(--color-text-main);
  --table-td-width: calc(100% - var(--table-th-width));
  --table-border-color: var(--color-lime-green);
  --table-th-border-color: var(--color-lime-green);
  --table-td-border-color: var(--color-lime-green);
  --table-width: 100%;
  width: var(--table-width);
  letter-spacing: var(--table-letter-spacing);
  line-height: 2;
  font-size: var(--font-size-18);
}
.main-table tr {
  width: 100%;
}
.main-table tr:not(:last-child) {
  border-bottom: 1px solid var(--table-border-color);
}
.main-table th,
.main-table td {
  font-weight: var(--font-weight-medium);
}
.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.666;
  --sentence-p-margin: 1.66em;
  font-size: var(--font-size-18);
  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-sentence--high {
  --sentence-line-height: 2;
  --sentence-p-margin: 2em;
}

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

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

/*------------------------------
*
* check list style
*
------------------------------*/
.check-list__item {
  line-height: 2em;
  padding-left: 1.7777777778em;
  position: relative;
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--letter-spacing-none);
  font-size: var(--font-size-18);
  z-index: 1;
}
.check-list__item::before {
  content: "";
  width: 1.1111111111em;
  height: 1.1111111111em;
  background: url(../img/common/icon_check.png) no-repeat top center/contain;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0% -50%;
}

/* 
* カラムスタイル
* 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 {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
  position: relative;
  z-index: 1;
  border-radius: var(--btn-height);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  line-height: var(--btn-line-height);
  letter-spacing: var(--btn-letter-space);
  font-family: var(--btn-font-family);
  padding-inline: var(--btn-padding-x);
  padding-block: calc((var(--btn-height) - var(--btn-font-size) * var(--btn-line-height)) / 2);
  background-color: var(--color-light-orange);
  color: var(--color-text-main);
  transition: 0.3s;
}
.cmn-btn--primary:hover {
  background-color: var(--color-dark-lime-green);
  color: var(--color-text-main);
  opacity: 1;
}
.cmn-btn--primary:hover .cmn-btn__arrow-orange {
  background: url("/img/common/arrow_dark-lime-green.png") no-repeat center/18px auto, var(--color-white);
}
.cmn-btn--white {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
  position: relative;
  z-index: 1;
  border-radius: var(--btn-height);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  line-height: var(--btn-line-height);
  letter-spacing: var(--btn-letter-space);
  font-family: var(--btn-font-family);
  padding-inline: var(--btn-padding-x);
  padding-block: calc((var(--btn-height) - var(--btn-font-size) * var(--btn-line-height)) / 2);
  background-color: var(--color-white);
  color: var(--color-text-main);
  transition: 0.3s;
}
.cmn-btn--white:hover {
  background-color: var(--color-light-orange);
  color: var(--color-white);
  opacity: 1;
}
.cmn-btn--white:hover .cmn-btn__arrow-white {
  background: url("/img/common/arrow_light-orange.png") no-repeat center/18px auto, var(--color-white);
}
.cmn-btn__arrow {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 20px;
  translate: 0% -50%;
  display: block;
  width: 40px;
  height: 40px;
  border-radius: var(--round-full);
  transition: 0.3s;
}
.cmn-btn__arrow-white {
  background: url("/img/common/arrow_white.png") no-repeat center/18px auto, var(--color-light-orange);
}
.cmn-btn__arrow-orange {
  background: url("/img/common/arrow_light-orange.png") no-repeat center/18px auto, var(--color-white);
}
.cmn-btn--border-primary {
  display: block;
  text-align: center;
  position: relative;
  z-index: 1;
  border-radius: var(--btn-height);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  line-height: var(--btn-line-height);
  letter-spacing: var(--btn-letter-space);
  font-family: var(--btn-font-family);
  padding-inline: var(--btn-padding-x);
  padding-block: calc((var(--btn-height) - var(--btn-font-size) * var(--btn-line-height)) / 2);
  background-color: var(--color-white);
  color: var(--color-text-main);
  transition: 0.3s;
  border: 1px solid var(--color-light-orange);
}
.cmn-btn--border-primary:hover {
  background-color: var(--color-light-orange);
  color: var(--color-text-main);
  border-color: var(--color-light-orange);
  opacity: 1;
}
.cmn-btn--icon-line > span {
  padding-left: 45px;
  position: relative;
  display: inline-block;
}
.cmn-btn--icon-line > span::before {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../img/common/icon_line.svg) no-repeat center/contain;
  content: "";
}
.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: min(1640px, 90%);
  height: clamp(640px, 40.1041666667vw, 770px);
  position: relative;
  z-index: 1;
  margin-top: 20px;
  margin-inline: auto;
}
.mv__copy {
  position: absolute;
  top: 50%;
  left: max(0px, 50% - 790px);
  transform: translate(0%, -50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.mv__catch {
  font-size: var(--font-size-54);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.mv__catch > span {
  display: inline-block;
  padding: 0 30px;
  line-height: 100px;
  border-radius: 16px;
}
.mv__txt {
  font-size: var(--font-size-24);
  text-shadow: var(--color-white) 4px 0px 0px, var(--color-white) 3.87565px 0.989616px 0px, var(--color-white) 3.51033px 1.9177px 0px, var(--color-white) 2.92676px 2.72656px 0px, var(--color-white) 2.16121px 3.36588px 0px, var(--color-white) 1.26129px 3.79594px 0px, var(--color-white) 0.282949px 3.98998px 0px, var(--color-white) -0.712984px 3.93594px 0px, var(--color-white) -1.66459px 3.63719px 0px, var(--color-white) -2.51269px 3.11229px 0px, var(--color-white) -3.20457px 2.39389px 0px, var(--color-white) -3.69721px 1.52664px 0px, var(--color-white) -3.95997px 0.56448px 0px, var(--color-white) -3.97652px -0.432781px 0px, var(--color-white) -3.74583px -1.40313px 0px, var(--color-white) -3.28224px -2.28625px 0px, var(--color-white) -2.61457px -3.02721px 0px, var(--color-white) -1.78435px -3.57996px 0px, var(--color-white) -0.843183px -3.91012px 0px, var(--color-white) 0.150409px -3.99717px 0px, var(--color-white) 1.13465px -3.8357px 0px, var(--color-white) 2.04834px -3.43574px 0px, var(--color-white) 2.83468px -2.82216px 0px, var(--color-white) 3.44477px -2.03312px 0px, var(--color-white) 3.84068px -1.11766px 0px, var(--color-white) 3.9978px -0.132717px 0px;
}
.mv__txt .lg {
  font-size: var(--font-size-28);
}
.mv__txt::before {
  content: "";
  width: 70px;
  height: 16px;
  background: url("/img/top/mv_dot.png") no-repeat top center/contain;
  display: block;
  margin-bottom: 30px;
}
.mv__movie {
  width: max(980px, 50% - 640px + 980px);
  height: 100%;
  border-radius: 60px;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
}
.mv__movie > iframe,
.mv__movie > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/*------------------------------
*
* main style sv(sub visual)
*
------------------------------*/
.sv {
  position: relative;
  z-index: 1;
  height: clamp(310px, 22.3958333333vw, 430px);
  width: min(1640px, 90%);
  box-sizing: border-box;
  overflow: hidden;
}
.sv__catch {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(0%, -50%);
  z-index: 20;
  font-size: var(--font-size-54);
  letter-spacing: var(--letter-spacing-none);
  font-weight: var(--font-weight-medium);
  color: var(--color-white);
  text-align: center;
  padding: 0.3611111111em 30px;
  background-color: var(--color-dark-lime-green);
  border-radius: 16px;
  width: 700px;
}
.sv__img {
  position: absolute;
  top: 0;
  right: 0;
  width: 71.3414634146%;
  height: 100%;
}
.sv__img > img {
  border-radius: 60px;
}

/*------------------------------
*
* pagenation style
*
------------------------------*/
.pagenation {
  margin-top: var(--pagenation-margin-top);
  display: flex;
  justify-content: center;
}
.pagenation li {
  display: block;
  width: var(--pagenation-item-width);
  height: var(--pagenation-item-height);
  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;
  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-width: 100%;
  --post-item-margin: 30px;
  --post-item-flex-margin-space: 14px;
  --post-link-padding: 0px;
  --post-tags-width: calc(100% - 90px);
  --post-title-font-size:var(--font-size-18);
  --post-date-font-size:var(--font-size-18);
  width: var(--post-width);
}
.cmn-post-item {
  width: 100%;
}
.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 {
  margin-bottom: var(--post-item-flex-margin-space, 12px);
  padding-inline: 30px;
}
.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;
  display: block;
  width: fit-content;
  margin-left: auto;
  color: var(--color-green);
  font-size: var(--post-date-font-size, 16px);
  text-align: right;
}
.cmn-post__ttl {
  line-height: 1.2;
  width: 100%;
  font-size: var(--post-title-font-size, 16px);
  padding: 15px 30px;
  border-radius: var(--round-30);
  background: var(--color-white);
  font-weight: var(--font-weight-medium);
}
.cmn-post__ttl > span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}

/*------------------------------
*
* tag
*
------------------------------*/
.tag {
  --tag-font-size: var(--font-size-18);
  --tag-height: 1;
  --tag-x-padding: 0px;
  --tag-round: 0px;
  --tag-color: var(--color-orange);
  --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);
  line-height: var(--tag-height);
  padding: 0 var(--tag-x-padding);
}

.tag-link {
  transition: 0.3s;
}
.tag-link.tag {
  padding: 0;
  border-radius: var(--round-30);
  border: 1px solid var(--color-orange);
}
.tag-link > a {
  padding: 0.25em 0.75em;
  display: block;
  width: fit-content;
}
.tag-link:hover {
  --tag-color: var(--color-white);
  --tag-bg-color: var(--color-orange);
}

.tag-list {
  --tag-space: .25em 1em;
  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;
  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: flex;
  justify-content: 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: flex;
  align-items: center;
  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 {
  justify-content: 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);
  justify-content: center;
  width: var(--prev-next-back-link-width);
}
.prev-next__link.prev, .prev-next__link.next, .prev-next__link.back {
  transition: all 0.3s;
}

/*------------------------------
*
* breadcrumb style
*
------------------------------*/
.bread-crumb {
  width: var(--bread-width, 100%);
  background-color: var(--bread-bg-color, transparent);
}
.bread-crumb__list {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  font-size: var(--bread-font-size, 14px);
  letter-spacing: var(--bread-letter-space, 0.05em);
  font-weight: var(--bread-font-weight, 400);
  overflow: hidden;
  padding: var(--bread-padding, 1em 0);
}
.bread-crumb__item {
  display: flex;
  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;
  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: 120px 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
*
* ======================================== */
.top-greeting {
  position: relative;
  z-index: 1;
  padding-bottom: 80px;
}
.top-greeting::after, .top-greeting::before {
  content: "";
  position: absolute;
  z-index: -1;
}
.top-greeting::before {
  width: 238px;
  aspect-ratio: 238/140;
  background: url("/img/common/family_illust.png") no-repeat top center/contain;
  bottom: 0;
  left: 50%;
  translate: -75% 0;
  z-index: 2;
}
.top-greeting::after {
  background: url("/img/common/house_illust.png") no-repeat top center/contain;
  bottom: 0;
  right: min(0px, 50% - 960px);
  aspect-ratio: 581/80;
  width: 581px;
  position: absolute;
  z-index: -1;
}
.top-greeting__inner {
  max-width: 1460px;
  width: 95%;
  position: relative;
  z-index: 1;
}
.top-greeting__inner::before {
  content: "";
  position: absolute;
  z-index: -1;
  background: url("/img/common/deco_tree01.png") no-repeat top center/contain;
  top: 0;
  left: 0;
  translate: -132px -21px;
  width: 174px;
  aspect-ratio: 174/151;
}
.top-greeting__ttl {
  margin-bottom: 100px;
}
.top-greeting__container {
  justify-content: space-between;
  flex-direction: row-reverse;
}
.top-greeting__content {
  width: 740px;
  flex-shrink: 0;
}
.top-greeting__img {
  margin-top: 140px;
  width: min(760px, 100% - 780px);
}

/*------------------------------
*
* area
*
------------------------------*/
.area {
  background: url("/img/common/bg_round_top.png") no-repeat bottom center/max(1920px, 100%) auto, url("/img/pattern/pat03.jpg") repeat center/auto;
  padding-bottom: 220px;
  position: relative;
  z-index: 1;
}
.area::after {
  content: "";
  position: absolute;
  right: calc(50% - 630px);
  bottom: 70px;
  z-index: 1;
  width: 257px;
  aspect-ratio: 257/75;
  background: url("/img/common/deco_tree02.png") no-repeat top center/contain;
}
.area__sub-ttl {
  padding-left: 46px;
  position: relative;
  z-index: 1;
  font-size: var(--font-size-30);
  margin-bottom: 34px;
}
.area__sub-ttl::before {
  content: "";
  position: absolute;
  width: 0.8666666667em;
  height: 1.4em;
  z-index: -1;
  background: url("/img/common/icon_pinn.png") no-repeat top center/contain;
  position: absolute;
  top: 50%;
  left: 0%;
  translate: 0% -50%;
}
.area__container {
  align-items: center;
  justify-content: space-between;
}
.area__content {
  width: 525px;
}
.area__img {
  width: 510px;
}
.area__item {
  margin-bottom: 25px;
}
.area__item--fukui, .area__item--toyama {
  padding-right: 10px;
}
.area__item:last-of-type(1) {
  margin-bottom: 0px;
}
.area__prefecture {
  font-size: var(--font-size-24);
  margin-bottom: 15px;
}
.area__city {
  font-size: var(--font-size-18);
  line-height: 2;
}
.area__city li:not(:last-child) {
  padding-right: 1em;
  position: relative;
}
.area__city li:not(:last-child)::after {
  content: "";
  width: 3px;
  height: 3px;
  display: block;
  border-radius: 50%;
  background: var(--color-text-main);
  position: absolute;
  right: 0.5em;
  top: 50%;
  translate: 50% -50%;
}

/*------------------------------
*
* top-seven
*
------------------------------*/
.top-seven {
  background: url("/img/pattern/pat03.jpg") repeat center/auto;
  padding-top: 0;
  position: relative;
  z-index: 2;
}
.top-seven__ttl {
  margin-top: -14px;
}
.top-seven__ttl:before {
  content: "";
  width: 3.4047619048em;
  height: 2.4761904762em;
  background: url("/img/common/rofu_illust.png") no-repeat top center/contain;
  display: block;
}
.top-seven::before {
  content: "";
  width: 100%;
  height: 900px;
  background: url("/img/common/bg_pat_round01.png") no-repeat bottom center/max(1920px, 100%) auto, var(--color-base-ecru);
  z-index: -1;
  position: absolute;
}
.top-seven__list {
  display: grid;
  gap: 60px;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas: "item01 item02" "item03 item04" "sub-list sub-list";
}
.top-seven__list>li:has(.top-seven__sub-list) {

  grid-area: sub-list;
}
.top-seven__sub-list {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas: "item05 item06 item07";
  margin-top: 30px;
}
.top-seven__list
.top-seven__sub-list .top-seven-item {
  overflow: unset;
  background-color: var(--color-white);
  padding: 44px 20px;
  font-size: var(--font-size-18);
}
.top-seven__sub-list .top-seven-item:nth-child(1) {
  grid-area: item05;
}
.top-seven__sub-list .top-seven-item:nth-child(2) {
  grid-area: item06;
}
.top-seven__sub-list .top-seven-item:nth-child(3) {
  grid-area: item07;
}
.top-seven__sub-list .top-seven-item__number {
  left: 50%;
  top: 0;
  translate: -50% -50%;
  border-radius: 30px;
}
.top-seven-item {
  display: block;
  border: 4px solid var(--color-dark-lime-green);
  border-radius: var(--round-30);
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.top-seven-item--has-link {
  height: 340px;
  padding: 30px 45px;
  display: grid;
  align-items: end;
}
.top-seven-item--has-link .top-seven-item__number {
  border-radius: 0 30px 30px 0;
  left: -4px;
  top: 30px;
}
.top-seven-item__btn {
  --btn-font-size: var(--font-size-30);
}
.top-seven-item > img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.top-seven-item__number {
  font-size: var(--font-size-30);
  text-align: center;
  width: 130px;
  height: 56px;
  place-content: center;
  line-height: 1;
  position: absolute;
  z-index: 10;
}
.top-seven-item:nth-child(1) {
  grid-area: item01;
}
.top-seven-item:nth-child(2) {
  grid-area: item02;
}
.top-seven-item:nth-child(3) {
  grid-area: item03;
}
.top-seven-item:nth-child(4) {
  grid-area: item04;
}

/*------------------------------
*
* top-case
*
------------------------------*/
.top-case {
  position: relative;
  padding-top: 0;
  z-index: 1;
  overflow: hidden;
  background: url("/img/pattern/pat03.jpg") repeat center/auto;
}
.top-case::before, .top-case::after {
  content: "";
  position: absolute;
  z-index: -1;
}
.top-case::before {
  background: url("/img/common/house_illust.png") no-repeat top center/contain;
  bottom: 0;
  left: min(0px, 50% - 960px);
  aspect-ratio: 581/80;
  width: 581px;
  position: absolute;
  z-index: -1;
}
.top-case::after {
  background: url("/img/top/case_br.png") no-repeat top center/contain;
  bottom: 0;
  right: min(100px, 50% - 860px);
  width: 468px;
  aspect-ratio: 468/140;
}
.top-case__inner {
  min-width: 1220px;
}
.top-case__btn {
  margin: 70px auto 0;
  width: 420px;
}

.case__container {
  --col-x-space: 40px;
  --col-y-space: 40px;
}

.case-article__link {
  display: block;
  border-radius: var(--round-30);
  background: var(--color-white);
  border: 4px solid var(--color-white);
  padding: 32px 26px;
  width: 100%;
}
.case-article__link:hover {
  border-color: var(--color-green);
}
.case-article__ttl {
  font-size: var(--font-size-24);
  margin-top: 24px;
  text-align: center;
}
.case-article__ttl > span {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.case-article__item {
  position: relative;
  z-index: 1;
}
.case-article__item--before {
  margin-bottom: -32px;
  z-index: 5;
  width: 55.8823529412%;
}
.case-article__item--before .case-article__img {
  border-radius: 50%;
  width: 100%;
  border: 4px solid var(--color-white);
  aspect-ratio: 1/1;
  width: 190px;
}
.case-article__item--before .case-article__img > img {
  border-radius: 50%;
}
.case-article__item--before .case-article__label {
  width: 100px;
  top: 36px;
  right: 0;
  translate: 110% 0;
}
.case-article__item--after .case-article__label {
  width: 90px;
  top: -10px;
  right: 40px;
  translate: 0 -100%;
}
.case-article__item--after .case-article__img {
  width: 100%;
  aspect-ratio: 340/250;
}
.case-article__item--after .case-article__img > img {
  border-radius: var(--round-30);
}
.case-article__label {
  position: absolute;
  z-index: 1;
}

/*------------------------------
*
* top-guide
*
------------------------------*/
.top-guide {
  background-color: var(--color-white);
}
.top-guide__list {
  --col-x-space: 30px;
  --col-y-space: 30px;
}
.top-guide-item__img {
  border-radius: var(--round-30);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.top-guide-item__ttl {
  width: fit-content;
  margin-bottom: 20px;
  border-bottom: 4px solid var(--color-base-ecru);
  font-size: var(--font-size-30);
}
/*------------------------------
*
* top-thanks
*
------------------------------*/
.thanks {
  background-color: var(--color-white);
  padding-block: 60px 180px;
  position: relative;
  z-index: 1;
}
.thanks::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: max(480px, 50% - 540px + 380px);
  height: calc(100% - 120px);
  border-radius: 120px 0 0 120px;
  z-index: -1;
  background: url("/img/common/deco_tree03.png") no-repeat top 70px left 256px/auto, url("/img/common/house_illust.png") no-repeat bottom right/auto, url("/img/pattern/pat02.jpg") repeat center/auto;
}
.thanks__container {
  justify-content: space-between;
  align-items: center;
}
.thanks__ttl {
  margin-bottom: 70px;
}
.thanks__img {
  width: 490px;
}
.thanks__content {
  width: 520px;
}
.thanks__btn {
  width: 420px;
  margin-top: 70px;
}

/*------------------------------
*
* top-news
*
------------------------------*/
.top-news {
  padding-block: 100px;
}
.top-news__ttl {
  gap: 20px;
  margin-bottom: 100px;
}
.top-news__ttl::before {
  background: url("/img/common/ttl_deco_tree.png") no-repeat top center/contain;
  display: block;
  width: 2.4285714286em;
  height: 1.0476190476em;
  content: "";
}
.top-news__head {
  width: 320px;
  flex-direction: column;
  align-items: center;
}
.top-news__btn {
  width: 100%;
}
.top-news .cmn-post {
  width: 700px;
}

/*------------------------------
*
* cta
*
------------------------------*/
.cta {
  padding-block: 100px;
  background: url("/img/common/bg_round_white.png") no-repeat bottom center/max(1920px, 100%) auto, url("/img/pattern/pat01.jpg") repeat center/auto;
}
.cta__ttl {
  margin-bottom: 60px;
  margin-inline: auto;
  width: fit-content;
  flex-direction: row;
  gap: 70px;
}
.cta__ttl::after, .cta__ttl::before {
  display: block;
  width: 105px;
  height: 49px;
  content: "";
}
.cta__ttl::before {
  background: url("/img/common/cta_ttl_l.png") no-repeat top center/contain;
}
.cta__ttl::after {
  background: url("/img/common/cta_ttl_r.png") no-repeat top center/contain;
}
.cta__box {
  padding-inline: 80px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}
.cta__box::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% - 20px);
  border-radius: var(--round-30);
  background: url("/img/common/house_deco02.png") no-repeat bottom left 20px/auto, rgba(252, 240, 220, 0.4);
}
.cta__container {
  margin-top: 40px;
  gap: 20px;
}
.cta-item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  border-width: 1px;
  border-style: solid;
  border-radius: 50px;
}
.cta-item--tel {
  width: 360px;
}
.cta-item--line {
  width: 263px;
  gap: 20px;
}
.cta-item--mail {
  width: 254px;
  gap: 15px;
}
.cta-item--mail::after {
  width: 18px;
  height: 10px;
  content: "";
  background: url("/img/common/arrow_black.png") no-repeat top center/contain;
}
.cta-item-btn {
  transition: 0.3s;
}
.cta-item-btn:hover {
  opacity: 0.7;
}

/* ===========================================
*
* case-studies-page
*
* ======================================== */
.case-studies {
  overflow: hidden;
}

/* ===========================================
*
* case-single
*
* ======================================== */
.case-single {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}
.case-single__left {
  width: 340px;
}
.case-single__content {
  width: calc(100% - 410px);
}

/* ===========================================
*
* company page
*
* ======================================== */
/*------------------------------
*
* business
*
------------------------------*/
.business {
  overflow: hidden;
}
.business::after {
  content: "";
  position: absolute;
  z-index: -1;
  background: url("/img/common/house_illust.png") no-repeat top center/contain;
  bottom: 0;
  right: min(0px, 50% - 960px);
  aspect-ratio: 581/80;
  width: 581px;
}
.business-item {
  display: grid;
  grid-template-columns: 440px 1fr;
  align-items: center;
  padding-left: 40px;
  gap: 64px;
}
.business-item:not(:last-child) {
  margin-bottom: 50px;
}
.business-item__num {
  font-size: var(--font-size-30);
  width: 70px;
  height: 70px;
  padding-bottom: 0.1em;
  border-radius: 50%;
  line-height: 1;
  place-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 24px;
}
.business-item__num::before {
  content: "";
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border-radius: 50%;
  border: 1px dashed var(--color-white);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
}
.business-item__ttl {
  font-size: var(--font-size-30);
  margin-bottom: 24px;
}
/*------------------------------
*
* info
*
------------------------------*/
.info {
  background: url("/img/pattern/pat03.jpg") repeat center/auto;
  position: relative;
  z-index: 1;
}
.info::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 238px;
  aspect-ratio: 238/140;
  background: url("/img/common/family_illust.png") no-repeat top center/contain;
  bottom: 0;
  right: calc(50% - 580px);
  z-index: 2;
}
.info__map {
  margin-top: 60px;
  height: var(--map-height);
}
.info__box {
  padding: 56px 90px;
  border-radius: var(--round-30);
}
.info__table {
  --table-th-width: 200px;
}

/* ===========================================
*
* single page
*
* ======================================== */
.single-wrapper {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.single {
  position: relative;
  z-index: 5;
  padding: 80px 70px;
  border-radius: var(--round-30);
  background: var(--color-white);
}
.single__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.single__date {
  order: 1;
  font-size: var(--font-size-18);
  color: var(--color-green);
  margin-bottom: 12px;
  line-height: 1;
  text-align: right;
  margin-left: auto;
}
.single__tags {
  order: 2;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 0.25em 0.5em;
  margin-bottom: 24px;
  font-size: var(--font-size-18);
}
.single__ttl {
  order: 3;
  width: 100%;
  font-size: var(--font-size-24);
  font-weight: var(--font-weight-medium);
}
.single__ttl > span {
  padding-block: 3px;
}
.single__ttl {
  margin-bottom: 50px;
}
.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: flex;
  align-items: center;
  border-bottom: 1px solid rgb(var(--color-text-main-rgb)/0.4);
  transition: all 0.3s;
}
.sitemap-list__link::after {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid rgb(var(--color-text-main-rgb)/0.4);
  border-right: 2px solid rgb(var(--color-text-main-rgb)/0.4);
  position: absolute;
  top: 50%;
  right: 1.5em;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s;
}
.sitemap-list__link:hover {
  color: var(--color-green);
  border-color: var(--color-green);
}
.sitemap-list__link:hover::after {
  right: 1em;
  border-color: var(--color-green);
}

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

.privacy-purpose__list {
  margin-top: 16px;
}
.privacy-purpose__list > li {
  line-height: 2;
  padding-left: 1em;
  text-indent: -1em;
}

.privacy-box {
  margin-bottom: 40px;
}
.privacy-box p {
  line-height: 2;
}

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

/* ===========================================
*
* services-page
*
* ======================================== */
.service-links {
  padding-top: 120px;
}
.service-links__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}
.service-links__item {
  width: 340px;
  /* 上段2列 */
}
.service-links__item:nth-child(1), .service-links__item:nth-child(2) {
  grid-column: span 3;
}
.service-links__item {
  /* 上段を中央揃え */
}
.service-links__item:nth-child(1) {
  grid-column: 2/4;
}
.service-links__item:nth-child(2) {
  grid-column: 4/6;
}
.service-links__item {
  /* 下段3列 */
}
.service-links__item:nth-child(3), .service-links__item:nth-child(4), .service-links__item:nth-child(5) {
  grid-column: span 2;
}

.services-wrapper {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.services-wrapper::after {
  content: "";
  position: absolute;
  z-index: -1;
  background: url("/img/common/house_illust.png") no-repeat top center/contain;
  bottom: 0;
  right: min(0px, 50% - 960px);
  aspect-ratio: 581/80;
  width: 581px;
  position: absolute;
  z-index: -1;
}

.service:not(:last-child) {
  margin-bottom: 120px;
}
.service__ttl {
  margin-bottom: 70px;
}
.service__flex {
  align-items: center;
  justify-content: space-between;
}
.service__img {
  width: 510px;
  aspect-ratio: 51/34;
  border-radius: var(--round-30);
  overflow: hidden;
  border: 4px solid var(--color-dark-lime-green);
}
.service__sub-ttl {
  font-size: var(--font-size-30);
  font-weight: var(--font-weight-medium);
  color: var(--color-green);
  border-bottom: 4px solid var(--color-lime-green);
  line-height: 1;
  padding-bottom: 16px;
  margin-block: 70px 50px;
  width: fit-content;
}
.service__check-list {
  padding-inline: 80px;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 18px 40px;
}
.service__btn {
  margin-top: 70px;
  width: 420px;
}

.vacant {
  background-color: var(--color-base-ecru);
}
.vacant__ttl {
  margin-bottom: 50px;
}
.vacant__sentence {
  text-align: center;
}

/* ===========================================
*
* guide-page
*
* ======================================== */
.section-deco-tree {
  position: relative;
  z-index: 1;
}
.section-deco-tree::before {
  content: "";
  position: absolute;
  z-index: -1;
  background: url("/img/common/deco_tree01.png") no-repeat top center/contain;
  top: 100px;
  left: 5.2083333333%;
  width: 174px;
  aspect-ratio: 174/151;
}

.guide-links {
  padding-top: 120px;
}
.guide-links__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
/*------------------------------
*
* price
*
------------------------------*/
.price {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.price::after {
  content: "";
  position: absolute;
  z-index: -1;
  background: url("/img/common/house_illust.png") no-repeat top center/contain;
  bottom: 0;
  right: min(0px, 50% - 960px);
  aspect-ratio: 581/80;
  width: 581px;
  position: absolute;
  z-index: -1;
}
.price__container {
  border-radius: var(--round-30);
  padding: 90px 100px;
}
.price-item {
  border-bottom: 1px solid var(--color-lime-green);
  padding-bottom: 24px;
}
.price-item__header {
  display: flex;
  align-content: center;
  justify-content: space-between;
  gap: 5px 40px;
  margin-bottom: 18px;
}
.price-item__ttl {
  flex-shrink: 1;
  width: 100%;
  font-size: var(--font-size-24);
}
.price-item__price {
  flex-shrink: 0;
  text-align: right;
  margin-left: auto;
  font-size: var(--font-size-24);
}
.price-item__price .sm{
  font-size: var(--font-size-16);
}
.price-item__note-list{
  font-size: var(--font-size-18);
  color: #727272;
  line-height: 2;
  margin-block: -.5em;
  padding-inline: 10px;
}
.price-item__note-list > li{
  position: relative;
  z-index: 1;
  padding-left: 1em;
}
.price-item__note-list > li::before{
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #727272;
  position: absolute;
  left: .5em;
  top: 1em;
  transform: translate(-50%,-50%);
}
.price-item__sentence {
  padding-inline: 10px;
}
.price-item:not(:last-child) {
  margin-bottom: 18px;
}

.price-section:nth-of-type(1) {
  margin-top: 97px;
}
.price-section:not(:nth-last-of-type(1)) {
  margin-bottom: 58px;
}
.price-section__ttl {
  margin-bottom: 30px;
}
.price-section__sentence, .price-section__list {
  padding-inline: 10px;
}
.price-section__list {
  margin-top: 15px;
  font-size: var(--font-size-18);
  line-height: 2;
}

/*------------------------------
*
* flow
*
------------------------------*/
.flow {
  background: url("/img/common/bg_round_top.png") no-repeat bottom center/max(1920px, 100%) auto, url("/img/pattern/pat03.jpg") repeat center/auto;
  padding-bottom: 220px;
  position: relative;
  z-index: 1;
}
.flow::after {
  content: "";
  position: absolute;
  right: calc(50% - 630px);
  bottom: 70px;
  z-index: 1;
  width: 257px;
  aspect-ratio: 257/75;
  background: url("/img/common/deco_tree02.png") no-repeat top center/contain;
}
.flow-item {
  padding-inline: 30px;
}
.flow-item:not(:last-child) {
  margin-bottom: 50px;
}
.flow-item__header {
  gap: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.flow-item__num {
  flex-shrink: 0;
  font-size: var(--font-size-30);
  width: 70px;
  height: 70px;
  padding-bottom: 0.1em;
  border-radius: 50%;
  line-height: 1;
  place-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
  display: block;
}
.flow-item__num::before {
  content: "";
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border-radius: 50%;
  border: 1px dashed var(--color-white);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
}
.flow-item__ttl {
  width: 100%;
  flex-shrink: 1;
}
.flow-item__body {
  width: calc(100% - 94px);
  margin-left: auto;
}
.flow-item__actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
  gap: 20px;
}

/*------------------------------
*
* qa よくあるご質問
*
------------------------------*/
.qa {
  position: relative;
  z-index: 1;
  background-color: var(--color-base-ecru);
  padding-top: 0;
}
.qa__ttl {
  margin-top: -14px;
}
.qa__ttl:before {
  content: "";
  width: 3.4047619048em;
  height: 2.4761904762em;
  background: url("/img/common/rofu_illust.png") no-repeat top center/contain;
  display: block;
}
.qa-list__item:not(:last-child) {
  margin-bottom: 50px;
}
.qa-list__item .question__mark {
  letter-spacing: 0;
  font-size: var(--font-size-42);
  margin-right: 10px;
  flex-shrink: 0;
  line-height: 1;
  align-items: center;
  margin-top: -0.125em;
}
.qa-list__item .question {
  position: relative;
  padding: 10px 30px;
  background-color: var(--color-white);
  border-radius: var(--round-30);
  cursor: pointer;
}
.qa-list__item .question.current .question__toggle::after {
  opacity: 0;
}
.qa-list__item .question__content {
  box-sizing: border-box;
  font-size: var(--font-size-24);
  width: 100%;
  flex-shrink: 1;
}
.qa-list__item .question__toggle {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: var(--color-light-orange);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  margin-left: 12px;
}
.qa-list__item .question__toggle::before, .qa-list__item .question__toggle::after {
  content: "";
  background-color: var(--color-white);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  transition: 0.3s;
}
.qa-list__item .question__toggle::before {
  width: 16px;
  height: 2px;
}
.qa-list__item .question__toggle::after {
  width: 2px;
  height: 16px;
}
.qa-list__item .answer {
  position: relative;
  padding: 0 30px;
  margin-top: 30px;
}
/* ===========================================
*
* staff-page
*
* ======================================== */
.staff-wrapper {
  overflow: hidden;
}
.staff-wrapper::after {
  content: "";
  position: absolute;
  z-index: -1;
  background: url("/img/common/house_illust.png") no-repeat top center/contain;
  bottom: 0;
  aspect-ratio: 581/80;
  width: 581px;
  right: min(0px, 50% - 960px);
}

/*------------------------------
*
* reason
*
------------------------------*/
.reason {
  margin-bottom: 120px;
}
.reason__flex {
  justify-content: space-between;
  align-items: center;
}
.reason__sentence {
  width: 525px;
}
.reason__img {
  width: 490px;
}

/*------------------------------
*
* gest
*
------------------------------*/
.gest {
  margin-bottom: 120px;
}
.gest__flex {
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
}
.gest__sentence {
  width: 620px;
}
.gest__img {
  width: 400px;
}

/*------------------------------
*
* staff
*
------------------------------*/
.staff {
  margin-bottom: 120px;
}
.staff__sentence {
  text-align: center;
}

/*------------------------------
*
* connection
*
------------------------------*/
.connection {
  margin-bottom: 120px;
}
.connection__sentence {
  text-align: center;
}

/*------------------------------
*
* goal
*
------------------------------*/
.goal__sentence {
  text-align: center;
}

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