@charset "UTF-8";
@import "reset.css";
/* =========================================================
@extendされるパーツ
========================================================= */
/* clearfix
--------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght@100..700&display=block");
.clearfix {
  *zoom: 1;
}
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/* border-box
--------------------------------------------------------- */
.isBorderBox {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@-webkit-keyframes mainVisTxt-fadein {
  0% {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes mainVisTxt-fadein {
  0% {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes zoomOut {
  0% {
    -webkit-transform: scale(1.18);
            transform: scale(1.18);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes zoomOut {
  0% {
    -webkit-transform: scale(1.18);
            transform: scale(1.18);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes fade-in {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}
@-webkit-keyframes fade-out {
  0% {
    visibility: visible;
    opacity: 1;
  }
  100% {
    visibility: hidden;
    opacity: 0;
  }
}
@keyframes fade-out {
  0% {
    visibility: visible;
    opacity: 1;
  }
  100% {
    visibility: hidden;
    opacity: 0;
  }
}
@-webkit-keyframes fade-up {
  0% {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fade-up {
  0% {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fade-down {
  0% {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fade-down {
  0% {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fade-left {
  0% {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  100% {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fade-left {
  0% {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  100% {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes fade-right {
  0% {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  100% {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fade-right {
  0% {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  100% {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.js-scroll-curtain {
  background-color: #FFF;
  background-color: #EEE;
  --duration: .5s;
  position: relative;
  -webkit-transition: clip-path var(--duration);
  transition: clip-path var(--duration);
}
.js-scroll-curtain::before {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-transition: clip-path 0.5s var(--duration);
  transition: clip-path 0.5s var(--duration);
  clip-path: inset(0);
  background: rgb(242, 238, 234);
  background: linear-gradient(120deg, rgb(242, 238, 234) 48%, rgb(240, 226, 216) 71%, rgb(234, 219, 200) 100%);
}
.js-scroll-curtain[data-dir=LeftToRight] {
  clip-path: inset(0 100% 0 0);
}
.js-scroll-curtain[data-dir=LeftToRight].is-active::before {
  clip-path: inset(0 0 0 100%);
}
.js-scroll-curtain[data-dir=RightToLeft] {
  clip-path: inset(0 0 0 100%);
}
.js-scroll-curtain[data-dir=RightToLeft].is-active::before {
  clip-path: inset(0 100% 0 0);
}
.js-scroll-curtain[data-dir=TopToBottom] {
  clip-path: inset(0 0 100% 0);
}
.js-scroll-curtain[data-dir=TopToBottom].is-active::before {
  clip-path: inset(100% 0 0 0);
}
.js-scroll-curtain[data-dir=BottomToTop] {
  clip-path: inset(100% 0 0 0);
}
.js-scroll-curtain[data-dir=BottomToTop].is-active::before {
  clip-path: inset(0 0 100% 0);
}
.js-scroll-curtain.is-active {
  clip-path: inset(0);
}

#interview-vol02 .js-scroll-curtain::before {
  background: rgb(255, 196, 211);
  background: linear-gradient(120deg, rgb(241, 237, 233) 56%, rgb(255, 211, 223) 82%, rgb(255, 196, 211) 100%);
}

#interview-vol03 .js-scroll-curtain::before {
  background: rgb(205, 170, 204);
  background: linear-gradient(120deg, rgb(217, 218, 228) 56%, rgb(218, 187, 211) 81%, rgb(205, 170, 204) 100%);
}

#interview-vol04 .js-scroll-curtain::before {
  background: rgb(171, 178, 204);
  background: linear-gradient(120deg, rgb(233, 231, 239) 56%, rgb(209, 213, 222) 81%, rgb(171, 178, 204) 100%);
}

html {
  font-size: 62.5%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  overflow-x: clip;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #202020;
  line-height: 2;
  letter-spacing: 0.1em;
  background-color: #FEFFF9;
}

img {
  width: 100%;
  vertical-align: bottom;
}

ruby > rt {
  color: #666;
}

main {
  display: block; /* IE対策に追加 */
}

/* ブラウザのスクロールバーを常に表示させることでカクカクッとなるのを防ぐ */
html {
  overflow-y: scroll;
}

/* 汎用margin padding用 */
.mab01 {
  margin-bottom: 5px;
}

.mab02 {
  margin-bottom: 10px;
}

.mab03 {
  margin-bottom: 15px;
}

.mab04 {
  margin-bottom: 20px;
}

.mab05 {
  margin-bottom: 25px;
}

.mab06 {
  margin-bottom: 30px;
}

/* ローディングの背景部分のCSS */
.loader {
  background: #fff;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99999;
}

/* ローディングのアニメーション部分のCSS */
.spinner {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

#top .spinner {
  position: absolute;
  width: 150px;
  height: 100px;
  top: 50%;
  left: 50%;
  text-align: center;
  background-image: url(../img/common/logo-hdr-main.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  -webkit-animation: logo-fade-in 0.5s 1 ease-in-out forwards;
          animation: logo-fade-in 0.5s 1 ease-in-out forwards;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  #top .spinner {
    width: 115px;
    height: 56px;
    text-align: center;
    background-size: 115px auto;
  }
}
#top .spinner .double-bounce1, #top .spinner .double-bounce2 {
  display: none;
}

@-webkit-keyframes logo-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes logo-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #4A5E4A;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2s infinite ease-in-out;
  animation: sk-bounce 2s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.swiper-pagination-bullet {
  background-color: #fff;
}

.swiper-pagination-bullet-active {
  background-color: #fff;
}

@-webkit-keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
header {
  border-bottom: #DCDCDC solid 1px;
}
header .inr__spacer {
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
header .inr__spacer .header__logo {
  display: block;
  width: 200px;
}
header .inr__spacer .header__logo a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1;
}
header .inr__spacer .header__logo a .header__title {
  font-size: 2.2rem;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 10px;
}
header .inr__spacer .header__logo a .header__subcatch {
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #666;
  display: block;
}
header .inr__spacer .header__nav {
  display: block;
  width: calc(100% - 200px);
}
header .inr__spacer .header__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
header .inr__spacer .header__nav ul li:not(:first-child) {
  margin-left: 35px;
}
header .inr__spacer .header__nav ul li a {
  text-decoration: none;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 34px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-weight: 500;
}
header .inr__spacer .header__nav ul li.contact a {
  padding: 0 20px;
  color: #fff;
  background-color: #867C6D;
  border-radius: 17px;
}

#global-menu a:hover, #global-menu a:focus-visible {
  color: rgb(154.2, 79.8676923077, 0);
}
#global-menu .contact a:hover, #global-menu .contact a:focus-visible {
  background: rgb(100.2518518519, 92.7703703704, 81.5481481481);
  color: white;
}

@media screen and (max-width: 1280px) {
  .header .inr__spacer .header__nav ul li:not(:first-child) {
    margin-left: 20px;
  }
}
.header__toggle {
  display: none;
}

@media screen and (max-width: 768px) {
  .header {
    position: relative;
    z-index: 30;
    background: #FEFFF9;
  }
  .header .inr__spacer {
    height: auto;
    min-height: 88px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0 12px;
    padding: 0 24px;
  }
  .header .inr__spacer .header__logo {
    width: auto;
  }
  .header .inr__spacer .header__nav {
    width: 100%;
  }
  .header .inr__spacer .header__nav ul {
    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: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    padding: 12px 0 24px;
  }
  .header .inr__spacer .header__nav ul li:not(:first-child) {
    margin-left: 0;
  }
  .header .inr__spacer .header__nav ul li a {
    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;
    min-height: 52px;
    font-size: 1.4rem;
    border-bottom: 1px solid #DCDCDC;
  }
  .header .inr__spacer .header__nav ul li a::after {
    content: "chevron_right";
    display: inline-block;
    font-family: "Material Symbols Outlined";
    font-size: 20px;
    font-weight: 200;
    font-style: normal;
    line-height: 1;
    -webkit-font-feature-settings: "liga";
            font-feature-settings: "liga";
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    direction: ltr;
  }
  .header .inr__spacer .header__nav ul li.contact a {
    margin-top: 18px;
    border: 0;
    border-radius: 26px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 12px;
  }
  .header.nav-ready .header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    background: #FEFFF9;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
    -webkit-transition: max-height 0.25s ease, opacity 0.2s ease, visibility 0.25s, -webkit-transform 0.25s ease;
    transition: max-height 0.25s ease, opacity 0.2s ease, visibility 0.25s, -webkit-transform 0.25s ease;
    transition: max-height 0.25s ease, opacity 0.2s ease, transform 0.25s ease, visibility 0.25s;
    transition: max-height 0.25s ease, opacity 0.2s ease, transform 0.25s ease, visibility 0.25s, -webkit-transform 0.25s ease;
  }
  .header.is-menu-open .header__nav {
    max-height: min(440px, 100dvh - 89px);
    overflow-y: auto;
    visibility: visible;
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-box-shadow: 0 14px 18px rgba(32, 32, 32, 0.08);
            box-shadow: 0 14px 18px rgba(32, 32, 32, 0.08);
  }
  .header__toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 44px;
    min-height: 52px;
    color: #202020;
  }
  .header__toggle .header__toggle__icon {
    position: relative;
    display: block;
    width: 24px;
    height: 20px;
  }
  .header__toggle .header__toggle__icon span {
    position: absolute;
    left: 0;
    width: 24px;
    height: 1px;
    background: currentColor;
    top: 9px;
    -webkit-transition: opacity 0.2s ease, -webkit-transform 0.25s ease;
    transition: opacity 0.2s ease, -webkit-transform 0.25s ease;
    transition: transform 0.25s ease, opacity 0.2s ease;
    transition: transform 0.25s ease, opacity 0.2s ease, -webkit-transform 0.25s ease;
  }
  .header__toggle .header__toggle__icon span:first-child {
    -webkit-transform: translateY(-7px);
            transform: translateY(-7px);
  }
  .header__toggle .header__toggle__icon span:last-child {
    -webkit-transform: translateY(7px);
            transform: translateY(7px);
  }
  .header__toggle[aria-expanded=true] .header__toggle__icon span:first-child {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .header__toggle[aria-expanded=true] .header__toggle__icon span:nth-child(2) {
    opacity: 0;
  }
  .header__toggle[aria-expanded=true] .header__toggle__icon span:last-child {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .header.nav-ready .header__nav, .header__toggle .header__toggle__icon span {
    -webkit-transition: none;
    transition: none;
  }
}
footer {
  border-top: #DCDCDC solid 1px;
}
footer .footer__menu .inr__spacer {
  padding: 50px 40px;
}
footer .footer__menu .inr__spacer .footer__menu__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
footer .footer__menu .inr__spacer .footer__menu__items .footer__menu__logo {
  width: 240px;
}
footer .footer__menu .inr__spacer .footer__menu__items .footer__menu__logo a {
  text-decoration: none;
  font-size: 1.9rem;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}
footer .footer__menu .inr__spacer .footer__menu__items .footer__menu__items__navwrp .footer__menu__items__navwrp__copy {
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  margin-bottom: 10px;
}
footer .footer__menu .inr__spacer .footer__menu__items .footer__menu__items__navwrp ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
footer .footer__menu .inr__spacer .footer__menu__items .footer__menu__items__navwrp ul li:not(:last-child) {
  margin-right: 20px;
}
footer .footer__menu .inr__spacer .footer__menu__items .footer__menu__items__navwrp ul li a {
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  text-decoration: none;
}
footer .footer__menu .inr__spacer .footer__menu__items .footer__menu__items__navwrp ul li a:hover, footer .footer__menu .inr__spacer .footer__menu__items .footer__menu__items__navwrp ul li a:focus-visible {
  color: rgb(154.2, 79.8676923077, 0);
}
footer .footer__cr {
  background-color: #F3F0EA;
}
footer .footer__cr .inr__spacer {
  padding: 25px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
}
footer .footer__cr .inr__spacer .cr {
  width: 34%;
  font-weight: 500;
}
footer .footer__cr .inr__spacer ul {
  width: 66%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
footer .footer__cr .inr__spacer ul li {
  margin-left: 10px;
}
footer .footer__cr .inr__spacer ul li a:hover, footer .footer__cr .inr__spacer ul li a:focus-visible {
  color: rgb(154.2, 79.8676923077, 0);
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .footer .footer__menu .inr__spacer {
    padding: 36px 24px 32px;
  }
  .footer .footer__menu .inr__spacer .footer__menu__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
  .footer .footer__menu .inr__spacer .footer__menu__items .footer__menu__logo {
    width: auto;
  }
  .footer .footer__menu .inr__spacer .footer__menu__items .footer__menu__items__navwrp {
    width: 100%;
  }
  .footer .footer__menu .inr__spacer .footer__menu__items .footer__menu__items__navwrp .footer__menu__items__navwrp__copy {
    max-width: 28em;
    text-wrap: balance;
    margin-bottom: 24px;
    font-size: 1.6rem;
    line-height: 1.9;
  }
  .footer .footer__menu .inr__spacer .footer__menu__items .footer__menu__items__navwrp ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-top: 1px solid #DCDCDC;
  }
  .footer .footer__menu .inr__spacer .footer__menu__items .footer__menu__items__navwrp ul li:not(:last-child) {
    margin-right: 0;
  }
  .footer .footer__menu .inr__spacer .footer__menu__items .footer__menu__items__navwrp ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
    min-height: 52px;
    padding: 4px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-bottom: 1px solid #DCDCDC;
    font-size: 1.4rem;
  }
  .footer .footer__menu .inr__spacer .footer__menu__items .footer__menu__items__navwrp ul li a::after {
    content: "chevron_right";
    display: inline-block;
    font-family: "Material Symbols Outlined";
    font-size: 20px;
    font-weight: 200;
    font-style: normal;
    line-height: 1;
    -webkit-font-feature-settings: "liga";
            font-feature-settings: "liga";
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    direction: ltr;
  }
  .footer .footer__menu .inr__spacer .footer__menu__items .footer__menu__items__navwrp ul li.contact a {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 20px;
    padding: 4px 20px;
    border: 0;
    border-radius: 26px;
    background: #867C6D;
    color: #fff;
  }
  .footer .footer__menu .inr__spacer .footer__menu__items .footer__menu__items__navwrp ul li.contact a:hover, .footer .footer__menu .inr__spacer .footer__menu__items .footer__menu__items__navwrp ul li.contact a:focus-visible {
    background: rgb(100.2518518519, 92.7703703704, 81.5481481481);
    color: white;
  }
  .footer .footer__cr .inr__spacer {
    padding: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
  .footer .footer__cr .inr__spacer ul {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(0, 1fr) 12px minmax(0, 1fr);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .footer .footer__cr .inr__spacer ul li {
    margin-left: 0;
  }
  .footer .footer__cr .inr__spacer ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6px;
    min-height: 46px;
    padding: 0 12px;
    border: 1px solid #DCDCDC;
    border-radius: 6px;
    font-family: "Inter", sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.03em;
    text-decoration: none;
  }
  .footer .footer__cr .inr__spacer ul li a::after {
    content: "open_in_new";
    display: inline-block;
    font-family: "Material Symbols Outlined";
    font-size: 15px;
    font-weight: 200;
    font-style: normal;
    line-height: 1;
    -webkit-font-feature-settings: "liga";
            font-feature-settings: "liga";
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    direction: ltr;
  }
  .footer .footer__cr .inr__spacer .cr {
    width: 100%;
    text-align: center;
    color: #666;
  }
}
.page-loader {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  place-items: center;
  background: #fff;
  opacity: 1;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.page-loader .page-loader__logo {
  color: #202020;
  font: 500 2.2rem/1.4 "Inter", sans-serif;
  letter-spacing: 0.1em;
  -webkit-animation: loadingLogoIn 0.5s ease-in-out both;
          animation: loadingLogoIn 0.5s ease-in-out both;
}

.is-page-loading .page-loader {
  display: -ms-grid;
  display: grid;
  -webkit-animation: loadingSafetyExit 0.4s 6s forwards;
          animation: loadingSafetyExit 0.4s 6s forwards;
}

.is-page-loading .page-loader.is-leaving {
  opacity: 0;
  pointer-events: none;
}

@-webkit-keyframes loadingLogoIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(4px);
            transform: translateY(4px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes loadingLogoIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(4px);
            transform: translateY(4px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes loadingSafetyExit {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
@keyframes loadingSafetyExit {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-loader {
    -webkit-transition: none;
    transition: none;
  }
  .page-loader .page-loader__logo {
    -webkit-animation: none;
            animation: none;
  }
}
a {
  color: #000;
  -webkit-transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
  text-decoration: underline;
}
a:hover, a:focus-visible {
  color: rgb(154.2, 79.8676923077, 0);
  text-decoration: none;
}

a[href] img {
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

a[href]:hover img, a[href]:focus-visible img {
  opacity: 0.8;
}

.pc button:hover {
  opacity: 0.7;
}

a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid #C36500;
  outline-offset: 5px;
}

[id] {
  scroll-margin-top: var(--anchor-offset, 24px);
}

li {
  list-style: none;
}

button {
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

@media screen and (max-width: 1280px) {
  br.pc-only {
    display: none;
  }
}

br.sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  br.sp-only {
    display: inline;
  }
}

span.tax {
  font-size: 1rem;
}

.fade {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all ease-in-out 1.2s;
  transition: all ease-in-out 1.2s;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
.fade.scroll-in {
  visibility: visible;
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

.skiplink {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 8px 16px;
  background: #FEFFF9;
  font-size: 1.4rem;
  -webkit-transform: translateY(-200%);
          transform: translateY(-200%);
}
.skiplink:focus {
  -webkit-transform: none;
          transform: none;
}

.inr__spacer {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.content__main > :not(.ctawrp) {
  margin-top: 60px;
}

.content__main__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 400;
  margin-bottom: 30px;
}
.content__main__header .sub {
  font-size: 1.4rem;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  line-height: 26px;
  margin-bottom: 2px;
}
.content__main__header .main {
  font-size: 3rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  line-height: 1.4;
}

body:has(> .local__menu) {
  --anchor-offset: 94px;
}

.local__menu {
  position: sticky;
  top: 0;
  z-index: 20;
  -webkit-box-shadow: 0 1px 0 rgba(134, 124, 109, 0.12);
          box-shadow: 0 1px 0 rgba(134, 124, 109, 0.12);
  background: #F3F0EA;
  margin-bottom: 40px;
}
.local__menu nav {
  overflow-x: auto;
}
.local__menu nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 100%;
  height: 70px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
.local__menu a {
  font-size: 1.4rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.secondaly__hero__wrp {
  border: 1px solid #DCDCDC;
  border-radius: 10px;
  padding: 48px 50px 48px 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.secondaly__hero__wrp .secondaly__hero__ph {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  width: 54%;
  aspect-ratio: 3/2;
  border-radius: 10px;
  overflow: hidden;
}
.secondaly__hero__wrp .secondaly__hero__ph img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.secondaly__hero__wrp .secondaly__hero__txt {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 38.5%;
  margin-right: 7.5%;
  min-width: 0;
}

.secondaly__hero__txt__subcatch, .hero__txt__subcatch, .page__intro__eyebrow {
  margin-bottom: 2px;
  color: #C36500;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

.secondaly__hero__txt__maincopy, .hero__txt__maincopy, .page__intro {
  margin-bottom: 20px;
}
.secondaly__hero__txt__maincopy h1, .hero__txt__maincopy h1, .page__intro h1 {
  font-size: 3.6rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  line-height: 1.48;
}

.secondaly__hero__txt__description, .hero__txt__description, .page__intro__description {
  font-size: 1.4rem;
  color: #666;
  line-height: 1.86;
}
.secondaly__hero__txt__description p, .hero__txt__description p, .page__intro__description p {
  text-align: justify;
}

.split__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 80px minmax(0, 1fr);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
}
.split__content > * {
  min-width: 0;
}

.split__photo {
  aspect-ratio: 3/2;
  border-radius: 10px;
  overflow: hidden;
}
.split__photo img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.summary__cards > ul, .about__steps {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 40px minmax(0, 1fr) 40px minmax(0, 1fr);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}
.summary__cards > ul > li, .about__steps > li {
  min-width: 0;
  padding: 28px 30px;
  border: 1px solid #DCDCDC;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.summary__cards > ul .item__sub, .about__steps .item__sub {
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  color: #C36500;
}
.summary__cards > ul h3, .about__steps h3 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 10px;
}
.summary__cards > ul .item__description, .summary__cards > ul .item__outline, .about__steps .item__description, .about__steps .item__outline {
  font-size: 1.4rem;
  color: #666;
  line-height: 2;
}

.summary__cards .item__outline {
  margin-bottom: 10px;
}
.summary__cards .item__price {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 12px;
}
.summary__cards .pertime {
  font-size: 1.4rem;
  white-space: nowrap;
}
.summary__cards .item__description {
  margin-bottom: 15px;
}

.item__btmlink a, .steps__notes a {
  font-size: 1.4rem;
  font-weight: 600;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}
.item__btmlink a > span, .steps__notes a > span {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.item__btmlink a:hover > span, .item__btmlink a:focus-visible > span, .steps__notes a:hover > span, .steps__notes a:focus-visible > span {
  text-decoration: none;
}
.item__btmlink a::after, .steps__notes a::after {
  content: "chevron_forward";
  display: inline-block;
  font-family: "Material Symbols Outlined";
  font-size: 22px;
  font-weight: 200;
  font-style: normal;
  line-height: 1;
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  direction: ltr;
  padding-left: 2px;
}

.flow__items > ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 40px minmax(0, 1fr) 40px minmax(0, 1fr) 40px minmax(0, 1fr);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
}
.flow__items > ul > li {
  min-width: 0;
  padding: 22px;
  border: 1px solid #DCDCDC;
  border-radius: 10px;
  background: rgba(243, 240, 234, 0.5);
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.flow__items > ul > li:not(:last-child)::after {
  content: "arrow_forward";
  display: inline-block;
  font-family: "Material Symbols Outlined";
  font-size: 24px;
  font-weight: 200;
  font-style: normal;
  line-height: 1;
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  direction: ltr;
  position: absolute;
  top: calc(50% - 12px);
  right: -33px;
}
.flow__items > ul .item__sub {
  font-size: 1.1rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: #C36500;
}
.flow__items > ul .item__sub span {
  font-size: 1.8rem;
}
.flow__items > ul h3, .flow__items > ul h4 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 10px;
}
.flow__items > ul .item__description, .flow__items > ul .item__desc {
  font-size: 1.4rem;
  line-height: 1.8;
}

.prset__content {
  background: #F3F0EA;
  border-radius: 10px;
}
.prset__content > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.prset__content > ul > li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  min-height: 280px;
  padding: 48px 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  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;
  text-align: center;
  position: relative;
}
.prset__content > ul > li::before {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 44px;
          flex: 0 0 44px;
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
}
.prset__content > ul > li:nth-child(1)::before {
  content: "potted_plant";
  display: inline-block;
  font-family: "Material Symbols Outlined";
  font-size: 44px;
  font-weight: 200;
  font-style: normal;
  line-height: 1;
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  direction: ltr;
}
.prset__content > ul > li:nth-child(2)::before {
  content: "heart_smile";
  display: inline-block;
  font-family: "Material Symbols Outlined";
  font-size: 44px;
  font-weight: 200;
  font-style: normal;
  line-height: 1;
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  direction: ltr;
}
.prset__content > ul > li:nth-child(3)::before {
  content: "partner_exchange";
  display: inline-block;
  font-family: "Material Symbols Outlined";
  font-size: 44px;
  font-weight: 200;
  font-style: normal;
  line-height: 1;
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  direction: ltr;
}
.prset__content > ul > li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: calc(50% - 25px);
  height: 50px;
  width: 1px;
  background: rgba(134, 124, 109, 0.3);
}
.prset__content > ul > li h2, .prset__content > ul > li h3 {
  font-size: 1.9rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.prset__content > ul > li .item__description {
  max-width: 300px;
  font-size: 1.4rem;
  line-height: 1.86;
}

.faq__items ul {
  display: -ms-grid;
  display: grid;
  gap: 20px;
}
.faq__items li {
  padding: 24px 40px;
  border: 1px solid #DCDCDC;
  border-radius: 10px;
}
.faq__items dt, .faq__items dd {
  font-size: 1.6rem;
  line-height: 26px;
}
.faq__items dt {
  font-weight: 700;
  padding-bottom: 24px;
  border-bottom: 1px solid #DCDCDC;
}
.faq__items dd {
  margin: 0;
  padding-top: 22px;
}

.ctawrp {
  max-width: 1280px;
  margin: 60px auto 80px;
  padding: 0 40px;
}
.ctawrp .inr__spacer {
  min-height: 360px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 60px;
  background: #867C6D;
  color: white;
  border-radius: 10px;
  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;
}
.ctawrp .cta__header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  text-align: center;
}
.ctawrp .cta__header .sub {
  margin-bottom: 15px;
}
.ctawrp .cta__txt {
  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;
  max-width: 440px;
}
.ctawrp .cta__description {
  margin-bottom: 20px;
  font-size: 1.4rem;
  text-align: center;
}
.ctawrp .business__btnwrp a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 34px;
  padding: 0 20px;
  border-radius: 17px;
  background: white;
  color: #867C6D;
  font-size: 1.4rem;
  text-decoration: none;
}
.ctawrp .business__btnwrp a:hover, .ctawrp .business__btnwrp a:focus-visible {
  background: #202020;
  color: white;
}

@media screen and (max-width: 1280px) {
  .secondaly__hero__wrp {
    padding: 36px;
  }
  .secondaly__hero__wrp .secondaly__hero__txt {
    width: 45%;
    margin-right: 5%;
  }
  .secondaly__hero__wrp .secondaly__hero__ph {
    width: 50%;
  }
  .secondaly__hero__txt__maincopy h1, .hero__txt__maincopy h1, .page__intro h1 {
    font-size: clamp(2.3rem, 2.55vw, 3.2rem);
  }
  .split__content {
    gap: 40px;
  }
  .summary__cards > ul, .about__steps {
    gap: 24px;
  }
  .summary__cards > ul > li, .about__steps > li {
    padding: 24px;
  }
  .flow__items > ul {
    -ms-grid-columns: minmax(0, 1fr) 40px minmax(0, 1fr);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 40px;
  }
  .flow__items > ul > li:nth-child(2)::after {
    display: none;
  }
  .prset__content > ul > li {
    padding: 36px 24px;
  }
}
@media screen and (max-width: 768px) {
  .inr__spacer {
    padding-right: 24px;
    padding-left: 24px;
  }
  .content__main > :not(.ctawrp) {
    margin-top: 44px;
  }
  .content__main__header {
    margin-bottom: 24px;
  }
  .content__main__header .sub {
    font-size: 1.2rem;
  }
  .content__main__header .main {
    font-size: 2.4rem;
    line-height: 1.6;
  }
  body:has(> .local__menu) {
    --anchor-offset: 82px;
  }
  .local__menu {
    margin-bottom: 24px;
  }
  .local__menu nav ul {
    height: 58px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 24px;
  }
  .local__menu a {
    font-size: 1.2rem;
  }
  .secondaly__hero__wrp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 28px 24px;
    gap: 24px;
  }
  .secondaly__hero__wrp .secondaly__hero__txt, .secondaly__hero__wrp .secondaly__hero__ph {
    width: 100%;
    margin: 0;
  }
  .secondaly__hero__txt__maincopy h1, .hero__txt__maincopy h1, .page__intro h1 {
    font-size: clamp(2rem, 4.9vw, 3.2rem);
    line-height: 1.6;
  }
  .split__content {
    -ms-grid-columns: minmax(0, 1fr);
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }
  .summary__cards > ul, .about__steps {
    -ms-grid-columns: minmax(0, 1fr);
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }
  .summary__cards > ul h3, .about__steps h3 {
    font-size: 2rem;
  }
  .flow__items > ul {
    -ms-grid-columns: minmax(0, 1fr);
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }
  .flow__items > ul > li:not(:last-child)::after {
    display: block;
    top: auto;
    bottom: -33px;
    right: calc(50% - 12px);
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .prset__content > ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .prset__content > ul > li {
    min-height: 0;
    padding: 32px 24px;
  }
  .prset__content > ul > li:not(:last-child)::after {
    width: 50px;
    height: 1px;
    top: auto;
    bottom: 0;
    right: calc(50% - 25px);
  }
  .faq__items li {
    padding: 24px;
  }
  .faq__items dt, .faq__items dd {
    font-size: 1.4rem;
    line-height: 2;
  }
  .faq__items dt {
    padding-bottom: 18px;
  }
  .faq__items dd {
    padding-top: 18px;
  }
  .ctawrp {
    padding: 0 24px;
    margin: 44px auto;
  }
  .ctawrp .inr__spacer {
    min-height: 300px;
    padding: 40px 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
.price__tax {
  font-size: 1.4rem;
}

.summary__cards .price__from {
  font-size: 1.8rem;
}

.local__menu a[href="#faq"] {
  color: #C36500;
}

.page__intro {
  margin-top: 40px;
}
.page__intro .page__intro__inner {
  padding: 48px 60px;
  border: 1px solid #DCDCDC;
  border-radius: 10px;
  background: rgba(243, 240, 234, 0.35);
}
.page__intro h1 {
  margin-bottom: 20px;
}
.page__intro .page__intro__description {
  max-width: 740px;
}

.pill__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 34px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #867C6D;
  color: white;
  font-family: inherit;
  font-size: 1.4rem;
  line-height: 1.6;
  text-decoration: none;
  text-align: center;
}
.pill__link--outline {
  background: transparent;
  color: #202020;
  border-color: #DCDCDC;
}
.pill__link:hover, .pill__link:focus-visible {
  background: rgb(100.2518518519, 92.7703703704, 81.5481481481);
  border-color: rgb(100.2518518519, 92.7703703704, 81.5481481481);
  color: white;
}

.external__link {
  font-size: 1.4rem;
  text-underline-offset: 4px;
}
.external__link::after {
  content: "open_in_new";
  display: inline-block;
  font-family: "Material Symbols Outlined";
  font-size: 16px;
  font-weight: 200;
  font-style: normal;
  line-height: 1;
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  direction: ltr;
  margin-left: 5px;
  vertical-align: -2px;
}

.summary__cards--two > ul {
  -ms-grid-columns: (minmax(0, 1fr))[2];
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.filter__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}

.filter__button {
  min-height: 44px;
  padding: 8px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #DCDCDC;
  border-radius: 24px;
  background: transparent;
  color: #202020;
  font-family: inherit;
  font-size: 1.4rem;
  line-height: 1.6;
}
.filter__button[aria-pressed=true] {
  background: #867C6D;
  border-color: #867C6D;
  color: white;
}
.filter__button:hover {
  border-color: #867C6D;
}

[hidden] {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  a, a[href] img {
    -webkit-transition: none;
    transition: none;
  }
}
@media screen and (max-width: 1280px) {
  .page__intro .page__intro__inner {
    padding: 36px;
  }
}
@media screen and (max-width: 768px) {
  .page__intro {
    margin-top: 24px;
  }
  .page__intro .page__intro__inner {
    padding: 28px 24px;
  }
  .summary__cards--two > ul {
    -ms-grid-columns: minmax(0, 1fr);
    grid-template-columns: minmax(0, 1fr);
  }
  .pill__link {
    min-height: 44px;
  }
  .filter__button {
    font-size: 1.2rem;
    padding: 8px 14px;
  }
}
.page__home .home__hero {
  background: rgba(243, 240, 234, 0.35);
  border-bottom: #DCDCDC solid 1px;
}
.page__home .home__hero .inr__spacer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
}
.page__home .home__hero .hero__ph {
  position: relative;
  min-width: 0;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  width: 58%;
  aspect-ratio: 3/2;
  border-radius: 10px;
  overflow: hidden;
}
.page__home .home__hero .hero__ph img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page__home .home__hero .hero__slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.page__home .home__hero .hero__slider img {
  display: block;
}
.page__home .home__hero .hero__slider .swiper-slide-active img {
  -webkit-animation: heroZoomOut 5.5s ease-out forwards;
          animation: heroZoomOut 5.5s ease-out forwards;
}
.page__home .home__hero .hero__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: auto;
  left: auto;
  right: 20px;
  bottom: 20px;
  padding: 8px 0;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .page__home .home__hero .hero__pagination {
    right: 10px;
    bottom: 10px;
    padding: 0 0;
  }
}
.page__home .home__hero .hero__pagination .circle-pagination {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 3px;
  background: transparent;
  opacity: 0.333;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
@media screen and (max-width: 768px) {
  .page__home .home__hero .hero__pagination .circle-pagination {
    width: 32px;
    height: 32px;
  }
}
.page__home .home__hero .hero__pagination .circle-svg {
  position: absolute;
  inset: 0;
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 768px) {
  .page__home .home__hero .hero__pagination .circle-svg {
    width: 32px;
    height: 32px;
  }
}
.page__home .home__hero .hero__pagination .circle-svg circle {
  fill: transparent;
  stroke: white;
  stroke-width: 2;
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
}
.page__home .home__hero .hero__pagination .circle-text {
  position: relative;
  z-index: 1;
  color: white;
  font: 600 1.4rem/1 "Inter", sans-serif;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .page__home .home__hero .hero__pagination .circle-text {
    font: 600 1.1rem/1 "Inter", sans-serif;
  }
}
.page__home .home__hero .hero__pagination .swiper-pagination-bullet-active {
  opacity: 1;
}
.page__home .home__hero .hero__pagination .swiper-pagination-bullet-active .circle-svg circle {
  -webkit-animation: heroCircleProgress 5s linear forwards;
          animation: heroCircleProgress 5s linear forwards;
}
.page__home .home__hero .hero__txt {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 38%;
  margin-right: 4%;
  min-width: 0;
}
.page__home .home__hero .hero__txt__description {
  max-width: 400px;
  margin-bottom: 24px;
  color: #202020;
}
.page__home .home__hero .hero__txt__additionallink ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.page__home .home__hero .hero__txt__additionallink ul a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 34px;
  padding: 0 20px;
  border: 1px solid #202020;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 20px;
  background: #202020;
  color: white;
  text-decoration: none;
  font-size: 1.4rem;
}
.page__home .home__hero .hero__txt__additionallink ul .contact a {
  background: transparent;
  color: #202020;
}
.page__home .home__hero .hero__txt__additionallink ul a:hover, .page__home .home__hero .hero__txt__additionallink ul a:focus-visible {
  background: rgb(100.2518518519, 92.7703703704, 81.5481481481);
  border-color: rgb(100.2518518519, 92.7703703704, 81.5481481481);
  color: white;
}
.page__home .content__main > .home__foryou {
  margin-top: 30px;
}
.page__home .foryou__onayami__items {
  padding: 20px 0;
  margin-bottom: 30px;
  border-top: 1px solid #DCDCDC;
  border-bottom: 1px solid #DCDCDC;
}
.page__home .foryou__onayami__items ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr))[5];
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.page__home .foryou__onayami__items li {
  padding: 13px 28px 20px;
  border-left: 1px solid #DCDCDC;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.8;
}
.page__home .foryou__onayami__items li:last-child {
  border-right: 1px solid #DCDCDC;
}
.page__home .foryou__onayami__items .items__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 3px;
}
.page__home .foryou__onayami__items .items__icon::before {
  content: "check";
  display: inline-block;
  font-family: "Material Symbols Outlined";
  font-size: 24px;
  font-weight: 200;
  font-style: normal;
  line-height: 1;
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  direction: ltr;
  color: #C36500;
}
.page__home .foryou__onayami__note {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
}
.page__home .service__menu__items > ul > li {
  min-height: 354px;
}
.page__home .service__menu__items > ul > li:first-child {
  border: 2px solid #C36500;
  background: #F9F7F1;
}
.page__home .service__menu__items .item__price {
  font-size: 2rem;
}
.page__home .steps__items {
  margin-bottom: 20px;
}
.page__home .steps__items > ul > li {
  min-height: 232px;
}
.page__home .steps__notes {
  font-size: 1.6rem;
}
.page__home .home__priceguide__inr {
  position: relative;
}
.page__home .priceguide__btm__note {
  font-size: 1.4rem;
  text-align: right;
  margin: -20px 0 30px;
}
.page__home .priceguide__items > ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr))[3];
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #DCDCDC;
  border-bottom: 1px solid #DCDCDC;
}
.page__home .priceguide__items > ul > li {
  padding: 30px 35px;
  min-width: 0;
  min-height: 326px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.page__home .priceguide__items > ul > li:first-child {
  background: #F9F7F1;
}
.page__home .priceguide__items > ul > li:not(:last-child) {
  border-right: 1px solid #DCDCDC;
}
.page__home .priceguide__items > ul .item__sub {
  margin-bottom: 10px;
}
.page__home .priceguide__items > ul .item__sub span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 40px;
  border: 1px solid #999;
  padding: 0 20px;
  border-radius: 24px;
  font-size: 1.1rem;
  font-weight: 600;
}
.page__home .priceguide__items > ul h3 {
  font-size: 1.8rem;
  font-weight: 700;
}
.page__home .priceguide__items > ul h4 {
  font-size: 2.4rem;
  margin-bottom: 15px;
}
.page__home .priceguide__items > ul .pertime {
  font-size: 1.4rem;
  white-space: nowrap;
}
.page__home .priceguide__items > ul .item__description {
  padding-top: 20px;
  border-top: 1px solid #DCDCDC;
  font-size: 1.4rem;
  color: #666;
}
.page__home .priceguide__items > ul .item__description p {
  text-align: justify;
}
.page__home .home__about .about__sub, .page__home .home__about .business__sub, .page__home .home__business .about__sub, .page__home .home__business .business__sub {
  font-size: 1.4rem;
  font-family: "Inter", sans-serif;
  line-height: 26px;
  margin-bottom: 2px;
}
.page__home .home__about h3, .page__home .home__business h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 20px;
}
.page__home .home__about .about__description, .page__home .home__about .business__description, .page__home .home__business .about__description, .page__home .home__business .business__description {
  font-size: 1.4rem;
  color: #666;
  margin-bottom: 20px;
}
.page__home .home__about .about__btnwrp a, .page__home .home__about .business__btnwrp a, .page__home .home__business .about__btnwrp a, .page__home .home__business .business__btnwrp a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 34px;
  padding: 0 20px;
  border-radius: 17px;
  background: #867C6D;
  color: white;
  font-size: 1.4rem;
  text-decoration: none;
}
.page__home .home__about .about__btnwrp a:hover, .page__home .home__about .about__btnwrp a:focus-visible, .page__home .home__about .business__btnwrp a:hover, .page__home .home__about .business__btnwrp a:focus-visible, .page__home .home__business .about__btnwrp a:hover, .page__home .home__business .about__btnwrp a:focus-visible, .page__home .home__business .business__btnwrp a:hover, .page__home .home__business .business__btnwrp a:focus-visible {
  background: rgb(100.2518518519, 92.7703703704, 81.5481481481);
  color: white;
}
.page__home .home__business .business__ph {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.page__home .home__business .business__txt {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.page__home .media__itemswrp ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.page__home .media__itemswrp ul a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 44px;
  padding: 0 30px;
  border: 1px solid #202020;
  border-radius: 10px;
  font-size: 1.6rem;
  text-decoration: none;
}
.page__home .media__itemswrp ul li:not(.media__more) a:hover, .page__home .media__itemswrp ul li:not(.media__more) a:focus-visible {
  background: rgb(100.2518518519, 92.7703703704, 81.5481481481);
  border-color: rgb(100.2518518519, 92.7703703704, 81.5481481481);
  color: white;
}
.page__home .media__itemswrp ul .media__more a {
  padding: 0 10px;
  border: 0;
  font-size: 1.4rem;
}
.page__home .home__topics .content__main__header {
  margin-bottom: 60px;
}
.page__home .topics__more {
  margin-top: 30px;
  text-align: right;
}
.page__home .topics__more a {
  line-height: 2;
}
.page__home .topics__itemswrp {
  max-width: 1160px;
  margin: 0 auto;
}
.page__home .topics__itemswrp li {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px dotted #666;
}
.page__home .topics__itemswrp dl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 250px 30px minmax(0, 1fr);
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 30px;
}
.page__home .topics__itemswrp dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 30px;
  font-size: 1.4rem;
}
.page__home .topics__itemswrp .topics__date {
  white-space: nowrap;
}
.page__home .topics__itemswrp .topics__category span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: #F3F0EA;
  padding: 0 10px;
  font-size: 1.2rem;
  white-space: nowrap;
}
.page__home .topics__itemswrp dd {
  font-size: 1.4rem;
  line-height: 2;
  margin: 0;
}
@media screen and (max-width: 1280px) {
  .page__home .foryou__onayami__items li {
    padding: 12px;
  }
  .page__home .service__menu__items .item__price {
    font-size: 1.8rem;
  }
  .page__home .service__menu__items h3 {
    font-size: 2rem;
  }
  .page__home .priceguide__items > ul > li {
    padding: 24px;
  }
}
@media screen and (max-width: 768px) {
  .page__home .home__hero .inr__spacer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 28px;
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .page__home .home__hero .hero__txt, .page__home .home__hero .hero__ph {
    width: 100%;
    margin: 0;
  }
  .page__home .home__hero .hero__txt__description {
    max-width: none;
  }
  .page__home .home__hero .hero__txt__additionallink ul a {
    font-size: 1.2rem;
    padding: 0 14px;
  }
  .page__home .foryou__onayami__items ul {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .page__home .foryou__onayami__items li {
    border: 0;
    padding: 16px 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
  }
  .page__home .foryou__onayami__items li:last-child {
    border-right: 0;
  }
  .page__home .foryou__onayami__items li + li {
    border-top: 1px solid #DCDCDC;
  }
  .page__home .foryou__onayami__items li br {
    display: none;
  }
  .page__home .foryou__onayami__note, .page__home .steps__notes {
    font-size: 1.4rem;
  }
  .page__home .service__menu__items > ul > li, .page__home .steps__items > ul > li {
    min-height: 0;
  }
  .page__home .priceguide__btm__note {
    margin: -10px 0 20px;
  }
  .page__home .priceguide__items > ul {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .page__home .priceguide__items > ul > li {
    min-height: 0;
  }
  .page__home .priceguide__items > ul > li:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid #DCDCDC;
  }
  .page__home .home__about h3, .page__home .home__business h3 {
    font-size: 2.4rem;
  }
  .page__home .home__business .business__ph {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .page__home .media__itemswrp ul a {
    padding: 0 18px;
    font-size: 1.4rem;
    line-height: 40px;
  }
  .page__home .home__topics .content__main__header {
    margin-bottom: 30px;
  }
  .page__home .topics__itemswrp dl {
    -ms-grid-columns: minmax(0, 1fr);
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }
}

@-webkit-keyframes heroZoomOut {
  from {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes heroZoomOut {
  from {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes heroCircleProgress {
  from {
    stroke-dashoffset: 120;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes heroCircleProgress {
  from {
    stroke-dashoffset: 120;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page__home .home__hero .hero__slider .swiper-slide-active img {
    -webkit-animation: none;
            animation: none;
  }
  .page__home .home__hero .hero__pagination .circle-pagination {
    -webkit-transition: none;
    transition: none;
  }
  .page__home .home__hero .hero__pagination .swiper-pagination-bullet-active .circle-svg circle {
    -webkit-animation: none;
            animation: none;
    stroke-dashoffset: 0;
  }
}
.page__service .content__main > .service__priceguide {
  margin-top: 40px;
}
.page__service .priceguide__items .item__btmlink a::after {
  content: "arrow_downward";
}
.page__service .find__items > ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 40px minmax(0, 1fr) 40px minmax(0, 1fr);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}
.page__service .find__items > ul > li {
  padding: 30px;
  border: 1px solid #DCDCDC;
  border-radius: 10px;
  min-width: 0;
  position: relative;
}
.page__service .find__items > ul > li::before {
  position: absolute;
  right: 20px;
  top: 20px;
  color: #867C6D;
}
.page__service .find__items > ul > li:nth-child(1)::before {
  content: "shelves";
  display: inline-block;
  font-family: "Material Symbols Outlined";
  font-size: 66px;
  font-weight: 100;
  font-style: normal;
  line-height: 1;
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  direction: ltr;
}
.page__service .find__items > ul > li:nth-child(2)::before {
  content: "inventory_2";
  display: inline-block;
  font-family: "Material Symbols Outlined";
  font-size: 66px;
  font-weight: 100;
  font-style: normal;
  line-height: 1;
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  direction: ltr;
}
.page__service .find__items > ul > li:nth-child(3)::before {
  content: "cleaning_services";
  display: inline-block;
  font-family: "Material Symbols Outlined";
  font-size: 66px;
  font-weight: 100;
  font-style: normal;
  line-height: 1;
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  direction: ltr;
}
.page__service .find__items > ul .item__sub {
  font-size: 1.4rem;
  margin-bottom: 24px;
}
.page__service .find__items > ul h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 18px;
}
.page__service .find__items > ul .item__numb {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  border: 3px solid #202020;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 50%;
  font-size: 1.4rem;
  font-family: "Inter", sans-serif;
  margin-right: 8px;
}
.page__service .find__items .item__description li, .page__service .set__contents__recommend__desc li {
  font-size: 1.4rem;
  line-height: 2;
  color: #666;
  padding-left: 20px;
  position: relative;
}
.page__service .find__items .item__description li::before, .page__service .set__contents__recommend__desc li::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background: #202020;
  border-radius: 50%;
  top: 12px;
  left: 4px;
}
.page__service .service__plan {
  background: #F3F0EA;
  border-radius: 10px;
  padding: 50px;
}
.page__service .service__plan__cta {
  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;
  gap: 24px;
  margin-top: 40px;
  padding: 28px;
  background: #FEFFF9;
  border: 1px solid #DCDCDC;
  border-radius: 10px;
}
.page__service .service__plan__cta .service__plan__cta__txt {
  min-width: 0;
}
.page__service .service__plan__cta h3 {
  margin-bottom: 8px;
  font-family: "Noto Serif JP", serif;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.6;
}
.page__service .service__plan__cta p {
  color: #666;
  font-size: 1.4rem;
  line-height: 1.86;
}
.page__service .service__plan__cta .pill__link {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-height: 48px;
  padding: 12px 24px;
}
.page__service .set__hdr {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 50px minmax(0, 1fr);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  margin-bottom: 30px;
}
.page__service .set__txt {
  min-width: 0;
}
.page__service .set__txt h2 {
  margin-bottom: 20px;
  font-weight: 400;
}
.page__service .set__title__sub {
  display: block;
  font-size: 1.4rem;
  font-family: "Inter", sans-serif;
  color: #C36500;
  line-height: 26px;
  margin-bottom: 2px;
}
.page__service .set__title__main {
  display: block;
  font-size: 3rem;
  line-height: 1.4;
  font-family: "Noto Serif JP", serif;
}
.page__service .set__desc {
  font-size: 1.4rem;
  line-height: 1.86;
}
.page__service .set__note {
  margin-top: 20px;
  padding: 20px;
  font-size: 1.4rem;
  line-height: 1.86;
  border: 1px solid #C36500;
  border-radius: 10px;
}
.page__service .set__note h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.page__service .set__contents > div + div {
  margin-top: 50px;
}
.page__service .set__contents > div > h3 {
  font-size: 2rem;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  margin-bottom: 20px;
  line-height: 1.6;
}
.page__service .set__contents > div > h3::before {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.page__service .set__contents__price > h3::before {
  content: "currency_yen";
  display: inline-block;
  font-family: "Material Symbols Outlined";
  font-size: 32px;
  font-weight: 100;
  font-style: normal;
  line-height: 1;
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  direction: ltr;
}
.page__service .set__contents__recommend > h3::before {
  content: "person";
  display: inline-block;
  font-family: "Material Symbols Outlined";
  font-size: 32px;
  font-weight: 100;
  font-style: normal;
  line-height: 1;
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  direction: ltr;
}
.page__service .set__contents__flow > h3::before {
  content: "linear_scale";
  display: inline-block;
  font-family: "Material Symbols Outlined";
  font-size: 32px;
  font-weight: 100;
  font-style: normal;
  line-height: 1;
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  direction: ltr;
}
.page__service .price__table__scroll {
  max-width: 760px;
  overflow-x: auto;
}
.page__service .set__contents__price table {
  width: 100%;
  border-collapse: collapse;
}
.page__service .set__contents__price table th, .page__service .set__contents__price table td {
  padding: 20px 15px;
  border-bottom: 1px dotted #868686;
  font-size: 1.4rem;
  text-align: center;
}
.page__service .set__contents__price table th {
  font-weight: 400;
  padding-top: 10px;
  padding-bottom: 10px;
}
.page__service .set__contents__price table th:first-child {
  text-align: left;
}
.page__service .set__contents__price table .price__system {
  text-align: left;
}
.page__service .set__contents__price table .price__system h4 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
}
.page__service .set__contents__price table .price__system p {
  font-size: 1.3rem;
  color: #505050;
}
.page__service .set__contents__price table .price__time {
  font-weight: 700;
  white-space: nowrap;
}
.page__service .set__contents__price table .price__charge {
  font-weight: 700;
  white-space: nowrap;
}
.page__service .set__contents__price table .price {
  font-size: 1.8rem;
}
.page__service .price__undertable__note {
  font-size: 1.4rem;
  margin-top: 10px;
  line-height: 1.86;
}
.page__service .set__contents__recommend__desc {
  max-width: 505px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: rgba(255, 255, 255, 0.5);
  padding: 20px 24px;
  border: 1px solid #DCDCDC;
  border-radius: 10px;
}
.page__service .service__plan .flow__items > ul > li {
  background: rgba(255, 255, 255, 0.5);
  min-height: 180px;
}
.page__service .housekeeping__rates {
  max-width: 760px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr))[2];
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid #DCDCDC;
  border-radius: 10px;
  padding: 20px 0;
}
.page__service .housekeeping__rates > div {
  padding: 0 28px;
}
.page__service .housekeeping__rates > div + div {
  border-left: 1px solid #DCDCDC;
}
.page__service .housekeeping__rates h4 {
  font-size: 1.4rem;
  font-weight: 500;
}
.page__service .housekeeping__rates p {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.8;
}
.page__service .housekeeping__rates small {
  font-size: 1.2rem;
  font-weight: 400;
  margin-left: 14px;
  white-space: nowrap;
}
.page__service .service__area__note {
  font-size: 1.4rem;
  margin-top: 24px;
  line-height: 2;
}
.page__service .service__terms__contents {
  border-radius: 10px;
  overflow: hidden;
}
.page__service .service__terms__contents table {
  width: 100%;
  border-collapse: collapse;
  background: #F3F0EA;
  font-size: 1.4rem;
}
.page__service .service__terms__contents th, .page__service .service__terms__contents td {
  padding: 24px 30px;
  text-align: left;
  border-bottom: 1px solid white;
  line-height: 2;
}
.page__service .service__terms__contents th {
  background: #867C6D;
  color: white;
  font-weight: 500;
  padding-top: 13px;
  padding-bottom: 13px;
}
.page__service .service__terms__contents td:first-child {
  width: 170px;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 1280px) {
  .page__service .find__items > ul {
    gap: 24px;
  }
  .page__service .find__items > ul > li {
    padding: 24px;
  }
  .page__service .find__items > ul h3 {
    font-size: 2rem;
  }
  .page__service .find__items > ul .item__sub {
    margin-bottom: 40px;
  }
  .page__service .service__plan {
    padding: 36px;
  }
  .page__service .service__plan__cta {
    -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;
  }
  .page__service .set__hdr {
    gap: 30px;
  }
  .page__service .set__note {
    padding: 16px;
  }
  .page__service .set__title__main {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 768px) {
  .page__service .find__items > ul {
    -ms-grid-columns: minmax(0, 1fr);
    grid-template-columns: minmax(0, 1fr);
  }
  .page__service .find__items > ul .item__sub {
    margin-bottom: 24px;
  }
  .page__service .service__plan {
    padding: 28px 24px;
  }
  .page__service .service__plan__cta {
    gap: 20px;
    margin-top: 32px;
    padding: 24px 20px;
  }
  .page__service .service__plan__cta h3 {
    font-size: 2rem;
  }
  .page__service .service__plan__cta .pill__link {
    width: 100%;
    padding: 12px;
  }
  .page__service .set__hdr {
    -ms-grid-columns: minmax(0, 1fr);
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    margin-bottom: 30px;
  }
  .page__service .set__title__main {
    font-size: 2.4rem;
  }
  .page__service .set__contents > div + div {
    margin-top: 36px;
  }
  .page__service .set__contents > div > h3 {
    font-size: 1.8rem;
  }
  .page__service .set__contents__price table {
    min-width: 560px;
  }
  .page__service .set__contents__price table th, .page__service .set__contents__price table td {
    padding: 16px 12px;
  }
  .page__service .set__contents__price table .price__system h4 {
    font-size: 1.6rem;
  }
  .page__service .set__contents__recommend__desc {
    padding: 20px 16px;
  }
  .page__service .service__plan .flow__items > ul > li {
    min-height: 0;
  }
  .page__service .housekeeping__rates {
    -ms-grid-columns: minmax(0, 1fr);
    grid-template-columns: minmax(0, 1fr);
    padding: 0 20px;
  }
  .page__service .housekeeping__rates > div {
    padding: 20px 0;
  }
  .page__service .housekeeping__rates > div + div {
    border-left: 0;
    border-top: 1px solid #DCDCDC;
  }
  .page__service .housekeeping__rates small {
    display: block;
    margin: 0;
  }
  .page__service .service__terms__contents th, .page__service .service__terms__contents td {
    padding: 16px;
  }
  .page__service .service__terms__contents td:first-child {
    width: 70px;
    font-size: 1.4rem;
  }
}

.price__scroll__hint {
  display: none;
}
@media screen and (max-width: 768px) {
  .price__scroll__hint {
    display: block;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 8px;
  }
}

.page__about .about__description {
  font-size: 1.4rem;
  color: #666;
  line-height: 2;
}
.page__about .about__profile__job {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  display: inline-block;
}
.page__about .about__profile__qualifications {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 20px;
}
.page__about .about__profile__qualifications li {
  background-color: #F3F0EA;
  border-radius: 20px;
  padding: 5px 20px;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  line-height: 2;
}
.page__about .about__note {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 34px;
  border: 1px solid #DCDCDC;
  border-radius: 10px;
  padding: 24px 36px;
  min-height: 114px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 30px;
}
.page__about .about__note::before {
  content: "check_circle";
  display: inline-block;
  font-family: "Material Symbols Outlined";
  font-size: 44px;
  font-weight: 200;
  font-style: normal;
  line-height: 1;
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  direction: ltr;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 44px;
          flex: 0 0 44px;
  width: 44px;
  height: 44px;
}
.page__about .about__note p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
}
.page__about .about__note strong {
  color: #C36500;
  font-weight: 700;
}
.page__about .about__steps > li {
  min-height: 190px;
}
.page__about .about__steps .item__sub {
  margin-bottom: 8px;
}
.page__about .about__message__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 165px 46px minmax(0, 1fr);
  grid-template-columns: 165px minmax(0, 1fr);
  gap: 46px;
  padding: 50px 90px;
  border: 1px solid #DCDCDC;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 420px;
}
.page__about .about__message__content .about__message__portrait {
  padding-top: 6px;
}
.page__about .about__message__content .about__message__portrait img {
  width: 165px;
  height: 165px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.page__about .about__message__content h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 15px;
}
.page__about .about__message__content .about__description {
  line-height: 32px;
}
.page__about .about__message__content .about__message__signature {
  margin-top: 24px;
}
.page__about .content__main > .about__roles {
  margin-top: 30px;
}
.page__about .about__roles__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 28px 44px 28px minmax(0, 1fr);
  grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28px;
}
.page__about .about__roles__items .about__roles__exchange {
  display: block;
  width: 44px;
  height: 44px;
}
.page__about .about__roles__items .about__roles__exchange::before {
  content: "sync_alt";
  display: inline-block;
  font-family: "Material Symbols Outlined";
  font-size: 44px;
  font-weight: 200;
  font-style: normal;
  line-height: 1;
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  direction: ltr;
}
.page__about .about__roles__items .about__role {
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  padding: 20px 28px 28px;
  background-color: #F3F0EA;
  border: 1px solid #DCDCDC;
  border-radius: 10px;
  min-height: 170px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.page__about .about__roles__items .about__role .about__role__heading {
  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;
  gap: 12px;
  margin-bottom: 4px;
}
.page__about .about__roles__items .about__role h3 {
  font-size: 2.2rem;
  line-height: 1.5;
  font-weight: 700;
}
.page__about .about__roles__items .about__role p {
  font-size: 1.4rem;
  color: #666;
  line-height: 2;
}
.page__about .about__roles__items .about__role .about__role__avatars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: 6px;
}
.page__about .about__roles__items .about__role .about__role__avatars .about__role__avatar {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #D9D9D9;
}
.page__about .content__main > .about__members {
  margin-top: 80px;
}
.page__about .about__members__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 40px minmax(0, 1fr) 40px minmax(0, 1fr);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}
.page__about .about__member {
  border: 1px solid #DCDCDC;
  border-radius: 10px;
  overflow: hidden;
}
.page__about .about__member .about__member__ph {
  position: relative;
  aspect-ratio: 5/3;
  background-color: #D9D9D9;
  overflow: hidden;
}
.page__about .about__member .about__member__role {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 8px 16px;
  border-radius: 20px;
  background-color: #867C6D;
  color: #fff;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  line-height: 20px;
}
.page__about .about__member .about__member__role--housekeeping {
  background-color: #60758A;
}
.page__about .about__member .about__member__txt {
  padding: 22px 28px 28px;
}
.page__about .about__member h3 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 6px;
}
.page__about .about__member .about__member__specialty {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 2px;
}
.page__about .about__member .about__member__specialty span {
  color: #C36500;
}
.page__about .about__member .about__member__message {
  font-size: 1.4rem;
  color: #666;
  line-height: 2;
}
.page__about .about__member .about__member__tags {
  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: 9px;
  margin-top: 18px;
}
.page__about .about__member .about__member__tags li {
  font-size: 1.2rem;
  background-color: #F3F0EA;
  border-radius: 3px;
  padding: 0 20px;
  line-height: 28px;
}
.page__about .about__commitment__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 40px minmax(0, 1fr) 40px minmax(0, 1fr) 40px minmax(0, 1fr);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
}
.page__about .about__commitment__items > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid #DCDCDC;
  border-radius: 10px;
  background-color: rgba(243, 240, 234, 0.5);
  padding: 18px 22px 22px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 232px;
}
.page__about .about__commitment__items > li::before {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 44px;
          flex: 0 0 44px;
  width: 44px;
  height: 44px;
  margin-bottom: 7px;
}
.page__about .about__commitment__items > li:nth-of-type(1)::before {
  content: "groups";
  display: inline-block;
  font-family: "Material Symbols Outlined";
  font-size: 44px;
  font-weight: 200;
  font-style: normal;
  line-height: 1;
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  direction: ltr;
}
.page__about .about__commitment__items > li:nth-of-type(2)::before {
  content: "forum";
  display: inline-block;
  font-family: "Material Symbols Outlined";
  font-size: 44px;
  font-weight: 200;
  font-style: normal;
  line-height: 1;
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  direction: ltr;
}
.page__about .about__commitment__items > li:nth-of-type(3)::before {
  content: "trending_up";
  display: inline-block;
  font-family: "Material Symbols Outlined";
  font-size: 44px;
  font-weight: 200;
  font-style: normal;
  line-height: 1;
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  direction: ltr;
}
.page__about .about__commitment__items > li:nth-of-type(4)::before {
  content: "favorite";
  display: inline-block;
  font-family: "Material Symbols Outlined";
  font-size: 44px;
  font-weight: 200;
  font-style: normal;
  line-height: 1;
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  direction: ltr;
}
.page__about .about__commitment__items h3 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 6px;
}
.page__about .about__commitment__items p {
  font-size: 1.4rem;
  line-height: 25px;
}
.page__about .about__proof {
  margin-top: 40px;
}
@media screen and (max-width: 1280px) {
  .page__about .about__profile__job {
    display: block;
    margin-top: 8px;
    font-size: 1.6rem;
  }
  .page__about .about__profile__qualifications {
    gap: 10px;
  }
  .page__about .about__steps, .page__about .about__members__items {
    gap: 24px;
  }
  .page__about .about__steps > li {
    padding: 24px;
  }
  .page__about .about__message__content {
    padding: 40px;
    gap: 32px;
  }
  .page__about .about__roles__items {
    gap: 18px;
  }
  .page__about .about__roles__items .about__role .about__role__heading {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 12px;
  }
  .page__about .about__member .about__member__txt {
    padding: 22px;
  }
  .page__about .about__commitment__items {
    -ms-grid-columns: minmax(0, 1fr) 24px minmax(0, 1fr);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
  .page__about .about__commitment__items > li {
    min-height: 0;
    padding: 24px;
  }
}
@media screen and (max-width: 768px) {
  .page__about .about__why .about__split__ph {
    -ms-grid-row: 1;
    grid-row: 1;
  }
  .page__about .about__profile__job {
    font-size: 1.4rem;
  }
  .page__about .about__profile__qualifications li {
    padding: 5px 14px;
    font-size: 1.1rem;
  }
  .page__about .about__note {
    padding: 22px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 16px;
  }
  .page__about .about__note::before {
    font-size: 30px;
    width: 30px;
    height: 30px;
    -ms-flex-preferred-size: 30px;
        flex-basis: 30px;
  }
  .page__about .about__note p {
    font-size: 1.4rem;
  }
  .page__about .about__steps {
    -ms-grid-columns: minmax(0, 1fr);
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }
  .page__about .about__steps > li {
    min-height: 0;
  }
  .page__about .about__steps h3 {
    font-size: 2rem;
  }
  .page__about .about__message__content {
    -ms-grid-columns: minmax(0, 1fr);
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    padding: 28px 24px;
  }
  .page__about .about__message__content .about__message__portrait {
    padding-top: 0;
  }
  .page__about .about__message__content .about__message__portrait img {
    margin: 0 auto;
    width: 132px;
    height: 132px;
  }
  .page__about .about__message__content h3 {
    font-size: 2.2rem;
  }
  .page__about .about__message__content .about__description {
    line-height: 2;
  }
  .page__about .about__message__content .about__description p + p {
    margin-top: 14px;
  }
  .page__about .about__roles__items {
    -ms-grid-columns: minmax(0, 1fr);
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }
  .page__about .about__roles__items .about__role {
    padding: 22px;
    min-height: 0;
  }
  .page__about .about__roles__items .about__role h3 {
    font-size: 2rem;
  }
  .page__about .about__roles__items .about__role .about__role__avatars .about__role__avatar {
    width: 36px;
    height: 36px;
  }
  .page__about .about__roles__items .about__roles__exchange {
    -ms-grid-column-align: center;
        justify-self: center;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .page__about .about__members__items {
    -ms-grid-columns: minmax(0, 1fr);
    grid-template-columns: minmax(0, 1fr);
  }
  .page__about .about__member .about__member__txt {
    padding: 24px;
  }
  .page__about .about__commitment__items {
    -ms-grid-columns: minmax(0, 1fr);
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }
  .page__about .about__proof {
    margin-top: 30px;
  }
}

#self-introduction #about01-message {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  #self-introduction #about01-message {
    margin-bottom: 40px;
  }
}
#self-introduction #about01-message .inr-spacer {
  width: 100%;
  max-width: 1360px;
  padding: 0 40px;
  margin: 40px auto 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #self-introduction #about01-message .inr-spacer {
    margin: 20px auto 0;
    padding: 0 30px;
  }
}
#self-introduction #about01-message .inr-spacer .inr-content {
  max-width: 980px;
  margin: 0 auto;
}
#self-introduction #about01-message .inr-spacer .inr-content .ph {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #self-introduction #about01-message .inr-spacer .inr-content .ph {
    margin-bottom: 20px;
  }
}
#self-introduction #about01-message .inr-spacer .inr-content .txt .message-wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.6rem;
  max-width: 720px;
}
#self-introduction #about01-message .inr-spacer .inr-content .txt .message-wrp .catch {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #self-introduction #about01-message .inr-spacer .inr-content .txt .message-wrp .catch {
    margin-bottom: 15px;
  }
}
#self-introduction #about01-message .inr-spacer .inr-content .txt .message-wrp .catch h2 {
  text-align: center;
  font-size: 2.6rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  #self-introduction #about01-message .inr-spacer .inr-content .txt .message-wrp .catch h2 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  #self-introduction #about01-message .inr-spacer .inr-content .txt .message-wrp .catch h2 br {
    display: none;
  }
}
#self-introduction #about01-message .inr-spacer .inr-content .txt .message-wrp .message-desc {
  font-weight: 300;
}
#self-introduction #about01-message .inr-spacer .inr-content .txt .message-wrp .message-desc p {
  text-align: center;
}
@media screen and (max-width: 768px) {
  #self-introduction #about01-message .inr-spacer .inr-content .txt .message-wrp .message-desc p {
    font-size: 1.4rem;
    text-align: justify;
  }
}
@media screen and (max-width: 768px) {
  #self-introduction #about01-message .inr-spacer .inr-content .txt .message-wrp .message-desc p br {
    display: none;
  }
}
#self-introduction #about01-profile .inr-spacer,
#self-introduction #about01-question .inr-spacer {
  width: 100%;
  max-width: 1360px;
  padding: 0 40px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #self-introduction #about01-profile .inr-spacer,
  #self-introduction #about01-question .inr-spacer {
    padding: 0 30px;
  }
}
#self-introduction #about01-profile .inr-spacer .inr-content,
#self-introduction #about01-question .inr-spacer .inr-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  border-top: #EDEDED solid 1px;
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  #self-introduction #about01-profile .inr-spacer .inr-content,
  #self-introduction #about01-question .inr-spacer .inr-content {
    padding: 30px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#self-introduction #about01-profile .inr-spacer .inr-content .sec-ttl,
#self-introduction #about01-question .inr-spacer .inr-content .sec-ttl {
  width: 32%;
  margin-right: 3%;
}
@media screen and (max-width: 768px) {
  #self-introduction #about01-profile .inr-spacer .inr-content .sec-ttl,
  #self-introduction #about01-question .inr-spacer .inr-content .sec-ttl {
    width: 100%;
    margin-right: 0;
    margin-bottom: 8px;
  }
}
#self-introduction #about01-profile .inr-spacer .inr-content .sec-ttl .catch,
#self-introduction #about01-question .inr-spacer .inr-content .sec-ttl .catch {
  font-size: 1rem;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  #self-introduction #about01-profile .inr-spacer .inr-content .sec-ttl .catch,
  #self-introduction #about01-question .inr-spacer .inr-content .sec-ttl .catch {
    font-size: 1.2rem;
    font-weight: 300;
  }
}
#self-introduction #about01-profile .inr-spacer .inr-content .sec-ttl h2,
#self-introduction #about01-question .inr-spacer .inr-content .sec-ttl h2 {
  font-size: 2.6rem;
  line-height: 1.6;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  #self-introduction #about01-profile .inr-spacer .inr-content .sec-ttl h2,
  #self-introduction #about01-question .inr-spacer .inr-content .sec-ttl h2 {
    font-size: 2.4rem;
    font-weight: 300;
  }
}
#self-introduction #about01-profile .inr-spacer .inr-content .sec-description,
#self-introduction #about01-question .inr-spacer .inr-content .sec-description {
  width: 65%;
}
#self-introduction #about01-profile .inr-spacer .inr-content .sec-description.scroll-in,
#self-introduction #about01-question .inr-spacer .inr-content .sec-description.scroll-in {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
@media screen and (max-width: 768px) {
  #self-introduction #about01-profile .inr-spacer .inr-content .sec-description,
  #self-introduction #about01-question .inr-spacer .inr-content .sec-description {
    width: 100%;
  }
}
#self-introduction #about01-profile .inr-spacer .inr-content .sec-description .ph,
#self-introduction #about01-question .inr-spacer .inr-content .sec-description .ph {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #self-introduction #about01-profile .inr-spacer .inr-content .sec-description .ph,
  #self-introduction #about01-question .inr-spacer .inr-content .sec-description .ph {
    margin-bottom: 20px;
  }
}
#self-introduction #about01-profile .inr-spacer .inr-content .sec-description .txt .name-hdr .catch,
#self-introduction #about01-question .inr-spacer .inr-content .sec-description .txt .name-hdr .catch {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  #self-introduction #about01-profile .inr-spacer .inr-content .sec-description .txt .name-hdr .catch,
  #self-introduction #about01-question .inr-spacer .inr-content .sec-description .txt .name-hdr .catch {
    font-size: 1.1rem;
  }
}
#self-introduction #about01-profile .inr-spacer .inr-content .sec-description .txt .name-hdr h1,
#self-introduction #about01-question .inr-spacer .inr-content .sec-description .txt .name-hdr h1 {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #self-introduction #about01-profile .inr-spacer .inr-content .sec-description .txt .name-hdr h1,
  #self-introduction #about01-question .inr-spacer .inr-content .sec-description .txt .name-hdr h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }
}
#self-introduction #about01-profile .inr-spacer .inr-content .sec-description .txt .name-hdr h1 .kana,
#self-introduction #about01-question .inr-spacer .inr-content .sec-description .txt .name-hdr h1 .kana {
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  #self-introduction #about01-profile .inr-spacer .inr-content .sec-description .txt .name-hdr h1 .kana,
  #self-introduction #about01-question .inr-spacer .inr-content .sec-description .txt .name-hdr h1 .kana {
    font-size: 1.2rem;
  }
}
#self-introduction #about01-profile .inr-spacer .inr-content .sec-description .txt .certification,
#self-introduction #about01-question .inr-spacer .inr-content .sec-description .txt .certification {
  font-size: 1.6rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #self-introduction #about01-profile .inr-spacer .inr-content .sec-description .txt .certification,
  #self-introduction #about01-question .inr-spacer .inr-content .sec-description .txt .certification {
    font-size: 1.4rem;
    font-weight: 300;
  }
}
#self-introduction #about01-profile .inr-spacer .inr-content .sec-description .txt .certification h2,
#self-introduction #about01-question .inr-spacer .inr-content .sec-description .txt .certification h2 {
  font-weight: 400;
  margin-bottom: 5px;
  padding-left: 8px;
  border-left: #d9d9d9 solid 5px;
  line-height: 1.5;
}
#self-introduction #about01-profile .inr-spacer .inr-content .sec-description .txt .certification ul li .mini,
#self-introduction #about01-question .inr-spacer .inr-content .sec-description .txt .certification ul li .mini {
  font-size: 1.1rem;
}
#self-introduction #about01-profile .inr-spacer .inr-content .sec-description .txt .description,
#self-introduction #about01-question .inr-spacer .inr-content .sec-description .txt .description {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  #self-introduction #about01-profile .inr-spacer .inr-content .sec-description .txt .description,
  #self-introduction #about01-question .inr-spacer .inr-content .sec-description .txt .description {
    font-size: 1.4rem;
    font-weight: 300;
  }
}
#self-introduction #about01-profile .inr-spacer .inr-content .sec-description .txt .description p:not(:last-child),
#self-introduction #about01-question .inr-spacer .inr-content .sec-description .txt .description p:not(:last-child) {
  margin-bottom: 1em;
}
#self-introduction #about01-profile .inr-spacer .inr-content .sec-description .question-list .ac,
#self-introduction #about01-question .inr-spacer .inr-content .sec-description .question-list .ac {
  border-bottom: #EDEDED solid 1px;
}
#self-introduction #about01-profile .inr-spacer .inr-content .sec-description .question-list .ac .ac-parent,
#self-introduction #about01-question .inr-spacer .inr-content .sec-description .question-list .ac .ac-parent {
  cursor: pointer;
  position: relative;
  padding: 20px 60px 20px 0;
}
@media screen and (max-width: 768px) {
  #self-introduction #about01-profile .inr-spacer .inr-content .sec-description .question-list .ac .ac-parent,
  #self-introduction #about01-question .inr-spacer .inr-content .sec-description .question-list .ac .ac-parent {
    padding: 20px 40px 20px 0;
  }
}
#self-introduction #about01-profile .inr-spacer .inr-content .sec-description .question-list .ac .ac-parent:after,
#self-introduction #about01-question .inr-spacer .inr-content .sec-description .question-list .ac .ac-parent:after {
  content: "\f067";
  font-weight: 600;
  font-family: "Line Awesome Brands", "Line Awesome Free";
  font-size: 2.4rem;
  position: absolute;
  display: inline-block;
  top: 20px;
  right: 20px;
}
@media screen and (max-width: 768px) {
  #self-introduction #about01-profile .inr-spacer .inr-content .sec-description .question-list .ac .ac-parent:after,
  #self-introduction #about01-question .inr-spacer .inr-content .sec-description .question-list .ac .ac-parent:after {
    padding: 0 0 0 0;
    font-size: 1.4rem;
    right: 10px;
  }
}
#self-introduction #about01-profile .inr-spacer .inr-content .sec-description .question-list .ac .ac-parent.open:after,
#self-introduction #about01-question .inr-spacer .inr-content .sec-description .question-list .ac .ac-parent.open:after {
  content: "\f068";
}
#self-introduction #about01-profile .inr-spacer .inr-content .sec-description .question-list .ac .ac-parent p,
#self-introduction #about01-question .inr-spacer .inr-content .sec-description .question-list .ac .ac-parent p {
  font-size: 2.4rem;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  #self-introduction #about01-profile .inr-spacer .inr-content .sec-description .question-list .ac .ac-parent p,
  #self-introduction #about01-question .inr-spacer .inr-content .sec-description .question-list .ac .ac-parent p {
    font-size: 1.4rem;
  }
}
#self-introduction #about01-profile .inr-spacer .inr-content .sec-description .question-list .ac .ac-child,
#self-introduction #about01-question .inr-spacer .inr-content .sec-description .question-list .ac .ac-child {
  padding: 0 0 40px;
}
#self-introduction #about01-profile .inr-spacer .inr-content .sec-description .question-list .ac .ac-child p,
#self-introduction #about01-question .inr-spacer .inr-content .sec-description .question-list .ac .ac-child p {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  #self-introduction #about01-profile .inr-spacer .inr-content .sec-description .question-list .ac .ac-child p,
  #self-introduction #about01-question .inr-spacer .inr-content .sec-description .question-list .ac .ac-child p {
    font-size: 1.4rem;
    font-weight: 300;
  }
}

.page__corporate .secondaly__hero__txt > .pill__link {
  margin-top: 24px;
}
.page__corporate .corporate__photo {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
}
.page__corporate .corporate__photo img {
  display: block;
  height: auto;
}
.page__corporate .corporate__story {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1.7fr) 60px minmax(0, 1fr);
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  gap: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 40px;
}
.page__corporate .corporate__description h3 {
  font-size: 2.2rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.page__corporate .corporate__description p {
  font-size: 1.4rem;
  line-height: 2;
  color: #666;
}
.page__corporate .corporate__achievement {
  padding: 32px;
  border-radius: 10px;
  background: #F3F0EA;
  text-align: center;
  font-size: 1.4rem;
}
.page__corporate .corporate__achievement .corporate__achievement__number {
  font-size: 1.8rem;
}
.page__corporate .corporate__achievement .corporate__achievement__number strong {
  font-size: 4.4rem;
  font-weight: 500;
  color: #C36500;
  padding: 0 8px;
}
.page__corporate .corporate__achievement .corporate__achievement__date {
  font-size: 1.2rem;
  color: #666;
}
.page__corporate .corporate__product {
  position: relative;
}
.page__corporate .corporate__product .item__sub, .page__corporate .corporate__product h3 {
  padding-right: 54px;
}
.page__corporate .corporate__product::before {
  color: #867C6D;
  position: absolute;
  right: 28px;
  top: 28px;
}
.page__corporate .corporate__product--kids::before {
  content: "shelves";
  display: inline-block;
  font-family: "Material Symbols Outlined";
  font-size: 54px;
  font-weight: 200;
  font-style: normal;
  line-height: 1;
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  direction: ltr;
}
.page__corporate .corporate__product--mamihapi::before {
  content: "chair";
  display: inline-block;
  font-family: "Material Symbols Outlined";
  font-size: 54px;
  font-weight: 200;
  font-style: normal;
  line-height: 1;
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  direction: ltr;
}
@media screen and (max-width: 1280px) {
  .page__corporate .corporate__story {
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .page__corporate .corporate__story {
    -ms-grid-columns: minmax(0, 1fr);
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    margin-top: 28px;
  }
  .page__corporate .corporate__description h3 {
    font-size: 2rem;
  }
  .page__corporate .corporate__product::before {
    font-size: 40px;
    right: 20px;
    top: 20px;
  }
}

.page__media .media__status {
  margin: 24px 0 30px;
  color: #666;
  font-size: 1.3rem;
}
.page__media .media__group {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 280px 60px minmax(0, 1fr);
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 60px;
  padding: 40px 0;
  border-top: 1px solid #DCDCDC;
}
.page__media .media__group[hidden] {
  display: none;
}
.page__media .media__label {
  color: #C36500;
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.page__media .media__group__heading h2 {
  font-size: 2.6rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  line-height: 1.5;
  overflow-wrap: anywhere;
}
.page__media .media__description {
  color: #666;
  font-size: 1.4rem;
  margin-top: 20px;
}
.page__media .media__articles {
  display: -ms-grid;
  display: grid;
  gap: 20px;
}
.page__media .media__articles > li {
  padding: 24px 30px;
  border: 1px solid #DCDCDC;
  border-radius: 10px;
  font-size: 1.4rem;
  line-height: 2;
  overflow-wrap: anywhere;
}
.page__media .media__articles p + p {
  margin-top: 12px;
}
.page__media .media__articles a {
  font-weight: 500;
}
@media screen and (max-width: 1280px) {
  .page__media .media__group {
    -ms-grid-columns: 230px 40px minmax(0, 1fr);
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .page__media .media__group {
    -ms-grid-columns: minmax(0, 1fr);
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    padding: 28px 0;
  }
  .page__media .media__group__heading h2 {
    font-size: 2.4rem;
  }
  .page__media .media__articles > li {
    padding: 22px 24px;
  }
  .page__media .media__description {
    margin-top: 12px;
  }
}

#media-index .page-ttl-wrp {
  margin-bottom: 0;
}
#media-index .page-ttl-wrp .inr-spacer {
  height: auto;
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  #media-index .page-ttl-wrp .inr-spacer {
    margin-top: 20px;
  }
}
#media-index .page-ttl-wrp .inr-spacer .txt {
  width: 100%;
  max-width: 1112px;
  margin: 0 auto;
  padding: 45px 0;
  border-top: none;
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  #media-index .page-ttl-wrp .inr-spacer .txt {
    width: 100%;
    padding: 0 0 0 0;
    margin-right: 0;
    border-top: none;
    border-bottom: none;
    margin-bottom: 20px;
  }
}
#media-index main {
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  #media-index main {
    padding-bottom: 60px;
  }
}
#media-index #media-index-wrp {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #media-index #media-index-wrp {
    margin-bottom: 20px;
    padding: 0 30px;
  }
}
#media-index #media-index-wrp .inr-spacer {
  max-width: 1112px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 40px;
  border-bottom: #EDEDED solid 1px;
}
@media screen and (max-width: 768px) {
  #media-index #media-index-wrp .inr-spacer {
    padding: 0 0 20px;
  }
}
#media-index #media-index-wrp .inr-spacer .swiper {
  max-width: 100%;
  width: 100%;
}
#media-index #media-index-wrp .inr-spacer .swiper .swiper-wrapper {
  max-width: 100%;
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#media-index #media-index-wrp .inr-spacer .swiper .swiper-wrapper .swiper-slide {
  width: auto; /* 各スライドの幅を自動で調整します */
  white-space: nowrap; /* もしスライド内のテキストが折り返されるのを避けたい場合 */
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0 0;
  background-color: #EEE;
  line-height: 50px;
  font-size: 1.3rem;
  border-radius: 10px;
  cursor: pointer;
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #media-index #media-index-wrp .inr-spacer .swiper .swiper-wrapper .swiper-slide {
    font-size: 1.1rem;
    line-height: 40px;
    border-radius: 5px;
  }
}
#media-index #media-index-wrp .inr-spacer .swiper .swiper-wrapper .swiper-slide:has(.active) {
  background-color: #333;
  color: #FFF;
}
#media-index #media-index-wrp .inr-spacer .swiper .swiper-wrapper .swiper-slide:hover {
  background-color: #333;
  color: #FFF;
}
#media-index #media-index-wrp .inr-spacer .swiper .swiper-wrapper .swiper-slide span {
  padding: 0 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  #media-index .item-sec {
    padding: 0 30px;
  }
}
#media-index .item-sec .inr-spacer {
  max-width: 1112px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-bottom: #EDEDED solid 1px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
}
@media screen and (max-width: 768px) {
  #media-index .item-sec .inr-spacer {
    padding: 0px 0 25px;
    margin-bottom: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#media-index .item-sec .inr-spacer .category-ttl {
  width: 32%;
  margin-right: 3%;
}
@media screen and (max-width: 768px) {
  #media-index .item-sec .inr-spacer .category-ttl {
    width: 100%;
    margin-right: 0;
  }
}
#media-index .item-sec .inr-spacer .category-ttl h2 {
  font-size: 2.4rem;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  #media-index .item-sec .inr-spacer .category-ttl h2 {
    font-size: 2rem;
  }
}
#media-index .item-sec .inr-spacer .items-wrp {
  width: 65%;
  font-size: 1.6rem;
}
#media-index .item-sec .inr-spacer .items-wrp.scroll-in {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
@media screen and (max-width: 768px) {
  #media-index .item-sec .inr-spacer .items-wrp {
    width: 100%;
    font-size: 1.4rem;
    font-weight: 300;
  }
}
#media-index .item-sec .inr-spacer .items-wrp .description {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #media-index .item-sec .inr-spacer .items-wrp .description {
    margin-bottom: 10px;
  }
}
#media-index .item-sec .inr-spacer .items-wrp .items ul li {
  padding-left: 1.5em;
  line-height: 1.6;
  position: relative;
}
#media-index .item-sec .inr-spacer .items-wrp .items ul li:not(:last-child) {
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  #media-index .item-sec .inr-spacer .items-wrp .items ul li:not(:last-child) {
    margin-bottom: 8px;
  }
}
#media-index .item-sec .inr-spacer .items-wrp .items ul li:before {
  display: inline-block;
  content: "\f192";
  font-size: 1.8rem;
  font-weight: 600;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 600;
  font-family: "Line Awesome Brands", "Line Awesome Free";
}
#media-index .item-sec .inr-spacer .items-wrp .items ul li .note {
  font-size: 1.3rem;
}
@media screen and (max-width: 768px) {
  #media-index .item-sec .inr-spacer .items-wrp .items ul li .note {
    font-size: 1rem;
  }
}

.page__contact .content__main {
  margin-bottom: 80px;
}
.page__contact .contact__layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 0.8fr) 80px minmax(0, 1.2fr);
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 80px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.page__contact .contact__guidance {
  font-size: 1.4rem;
  color: #666;
}
.page__contact .contact__guidance .content__main__header {
  color: #202020;
}
.page__contact .contact__guidance > p + p {
  margin-top: 16px;
}
.page__contact .contact__line {
  background: #F3F0EA;
  border-radius: 10px;
  padding: 30px;
  margin-top: 30px;
}
.page__contact .contact__line h3 {
  font-size: 1.8rem;
  font-weight: 500;
  color: #202020;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.page__contact .contact__line h3::before {
  content: "chat_bubble";
  display: inline-block;
  font-family: "Material Symbols Outlined";
  font-size: 30px;
  font-weight: 200;
  font-style: normal;
  line-height: 1;
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  direction: ltr;
}
.page__contact .contact__line .pill__link {
  margin-top: 20px;
}
.page__contact .contact__panel {
  min-width: 0;
  padding: 40px;
  border: 1px solid #DCDCDC;
  border-radius: 10px;
  font-size: 1.4rem;
}
.page__contact .contact__preview__notice {
  padding: 18px 20px;
  margin-bottom: 30px;
  background: #F3F0EA;
  border-radius: 10px;
  font-size: 1.2rem;
}
.page__contact .contact__preview__notice p {
  margin-bottom: 6px;
}
.page__contact .contact__required__note {
  color: #666;
  margin-bottom: 24px;
}
.page__contact .required__label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0 8px;
  border-radius: 3px;
  background: #F3F0EA;
  color: #C36500;
  font-size: 1.1rem;
  font-weight: 500;
  margin-left: 12px;
}
.page__contact .contact__required__note .required__label {
  margin: 0 8px 0 0;
}
.page__contact .contact__field {
  margin-bottom: 24px;
}
.page__contact .contact__field label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  margin-bottom: 10px;
}
.page__contact .contact__field input, .page__contact .contact__field textarea {
  display: block;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 12px 16px;
  border: 1px solid #DCDCDC;
  border-radius: 6px;
  color: #202020;
  background: white;
  font-family: inherit;
  font-size: 1.6rem;
  line-height: 1.8;
}
.page__contact .contact__field input:focus-visible, .page__contact .contact__field textarea:focus-visible {
  outline: 2px solid #C36500;
  outline-offset: 2px;
}
.page__contact .contact__field textarea {
  resize: vertical;
  min-height: 180px;
}
.page__contact .contact__hint {
  font-size: 1.2rem;
  margin-top: 6px;
  color: #666;
}
.page__contact .contact__actions {
  text-align: center;
  margin-top: 30px;
}
.page__contact .contact__review h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  font-weight: 400;
  margin-bottom: 20px;
}
.page__contact .contact__review__items {
  margin-top: 30px;
}
.page__contact .contact__review__items > div {
  padding: 20px 0;
  border-bottom: 1px solid #DCDCDC;
}
.page__contact .contact__review__items dt {
  color: #666;
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.page__contact .contact__review__items dd {
  margin: 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 1280px) {
  .page__contact .contact__layout {
    gap: 40px;
    -ms-grid-columns: minmax(0, 1fr) 40px minmax(0, 1.4fr);
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  }
  .page__contact .contact__panel {
    padding: 30px;
  }
}
@media screen and (max-width: 768px) {
  .page__contact .content__main {
    margin-bottom: 44px;
  }
  .page__contact .contact__layout {
    -ms-grid-columns: minmax(0, 1fr);
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }
  .page__contact .contact__panel, .page__contact .contact__line {
    padding: 24px;
  }
  .page__contact .contact__preview__notice {
    padding: 16px;
  }
}

#contact-index .page-ttl-wrp {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  #contact-index .page-ttl-wrp {
    margin-bottom: 0;
  }
}
#contact-index .page-ttl-wrp .inr-spacer {
  height: auto;
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  #contact-index .page-ttl-wrp .inr-spacer {
    margin: 20px auto 0;
    padding: 0 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
  }
}
#contact-index .page-ttl-wrp .inr-spacer .txt {
  width: 100%;
  max-width: 1112px;
  margin: 0 auto;
  padding: 45px 0;
  border-top: none;
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  #contact-index .page-ttl-wrp .inr-spacer .txt {
    width: 100%;
    margin-right: 0;
    border-top: none;
    border-bottom: none;
    padding: 0 0;
    margin-bottom: 20px;
  }
}
#contact-index .page-ttl-wrp .inr-spacer .txt p {
  text-align: justify;
}
#contact-index main {
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  #contact-index main {
    padding-bottom: 60px;
  }
}
#contact-index #contact-form-wrp {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #contact-index #contact-form-wrp {
    padding: 0 30px;
    margin-bottom: 0;
  }
}
#contact-index #contact-form-wrp .inr-spacer {
  max-width: 780px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 40px;
}
#contact-index #contact-form-wrp .inr-spacer .lead-wrp {
  font-size: 1.6rem;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #contact-index #contact-form-wrp .inr-spacer .lead-wrp {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 20px;
  }
}
#contact-index #contact-form-wrp .inr-spacer .must-ico {
  color: #CC3300;
}
#contact-index #contact-form-wrp .inr-spacer .contact-form-wrp {
  padding: 50px 70px;
  background-color: #DFDFDF;
  border-radius: 10px;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  #contact-index #contact-form-wrp .inr-spacer .contact-form-wrp {
    padding: 20px 20px;
    font-size: 1.4rem;
    font-weight: 300;
  }
}
#contact-index #contact-form-wrp .inr-spacer .contact-form-wrp p {
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  #contact-index #contact-form-wrp .inr-spacer .contact-form-wrp p {
    margin-bottom: 12px;
  }
}
#contact-index #contact-form-wrp .inr-spacer .contact-form-wrp input[type=text],
#contact-index #contact-form-wrp .inr-spacer .contact-form-wrp input[type=email],
#contact-index #contact-form-wrp .inr-spacer .contact-form-wrp input[type=tel],
#contact-index #contact-form-wrp .inr-spacer .contact-form-wrp textarea {
  color: #666;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 8px;
  font-size: 1.6rem;
  border: #ccc solid 1px;
}
#contact-index #contact-form-wrp .inr-spacer .contact-form-wrp input[type=text]::-webkit-input-placeholder, #contact-index #contact-form-wrp .inr-spacer .contact-form-wrp input[type=email]::-webkit-input-placeholder, #contact-index #contact-form-wrp .inr-spacer .contact-form-wrp input[type=tel]::-webkit-input-placeholder, #contact-index #contact-form-wrp .inr-spacer .contact-form-wrp textarea::-webkit-input-placeholder {
  color: #ccc;
}
#contact-index #contact-form-wrp .inr-spacer .contact-form-wrp input[type=text]::-moz-placeholder, #contact-index #contact-form-wrp .inr-spacer .contact-form-wrp input[type=email]::-moz-placeholder, #contact-index #contact-form-wrp .inr-spacer .contact-form-wrp input[type=tel]::-moz-placeholder, #contact-index #contact-form-wrp .inr-spacer .contact-form-wrp textarea::-moz-placeholder {
  color: #ccc;
}
#contact-index #contact-form-wrp .inr-spacer .contact-form-wrp input[type=text]:-ms-input-placeholder, #contact-index #contact-form-wrp .inr-spacer .contact-form-wrp input[type=email]:-ms-input-placeholder, #contact-index #contact-form-wrp .inr-spacer .contact-form-wrp input[type=tel]:-ms-input-placeholder, #contact-index #contact-form-wrp .inr-spacer .contact-form-wrp textarea:-ms-input-placeholder {
  color: #ccc;
}
#contact-index #contact-form-wrp .inr-spacer .contact-form-wrp input[type=text]::-ms-input-placeholder, #contact-index #contact-form-wrp .inr-spacer .contact-form-wrp input[type=email]::-ms-input-placeholder, #contact-index #contact-form-wrp .inr-spacer .contact-form-wrp input[type=tel]::-ms-input-placeholder, #contact-index #contact-form-wrp .inr-spacer .contact-form-wrp textarea::-ms-input-placeholder {
  color: #ccc;
}
#contact-index #contact-form-wrp .inr-spacer .contact-form-wrp input[type=text]::placeholder,
#contact-index #contact-form-wrp .inr-spacer .contact-form-wrp input[type=email]::placeholder,
#contact-index #contact-form-wrp .inr-spacer .contact-form-wrp input[type=tel]::placeholder,
#contact-index #contact-form-wrp .inr-spacer .contact-form-wrp textarea::placeholder {
  color: #ccc;
}
#contact-index #contact-form-wrp .inr-spacer .contact-form-wrp .submit-wrp {
  text-align: center;
}
#contact-index #contact-form-wrp .inr-spacer .contact-form-wrp input[type=submit] {
  display: inline-block;
  cursor: pointer;
  width: 50%;
  height: 60px;
  line-height: 60px;
  margin: 0 auto;
  font-size: 1.6rem;
  color: #fff;
  background-color: #444;
  border: none;
  border-radius: 5px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 768px) {
  #contact-index #contact-form-wrp .inr-spacer .contact-form-wrp input[type=submit] {
    width: 100%;
    font-size: 1.4rem;
  }
}
/*# sourceMappingURL=style.css.map */