@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: transparent;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  outline-offset: 8px;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

a {
  text-decoration: none;
  color: inherit;
}

a img {
  -webkit-transition: opacity 1s ease-out;
  transition: opacity 1s ease-out;
}

a img:hover {
  opacity: 0.5;
}

:root {
  --base-font-family: "Noto Sans JP", sans-serif;
  --regular: 400;
  --medium: 500;
  --semibold: 600;
}

/* 色の指定 */
:root {
  --white: #fff;
  --black: #393939;
}

body {
  font-family: var(--base-font-family);
  font-weight: var(--regular);
  color: var(--black);
}

body {
  min-width: 1200px;
  margin: 0 auto;
  max-width: 1920px;
}

@media screen and (max-width: 480px) {
  body {
    min-width: 100%;
  }
}
/*=========================================================
//# 全体フェードインアニメーション
//========================================================*/
html {
  -webkit-animation: fadeInAll 1.8s ease-out;
          animation: fadeInAll 1.8s ease-out;
}

@-webkit-keyframes fadeInAll {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeInAll {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 480px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
.over-wrap {
  overflow-x: hidden;
}

/*=========================================================
//# アニメーション
//========================================================*/
.js-fade-in {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px); /* 下から少し上がる */
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
  will-change: opacity, transform;
}

.js-fade-in.is-delay-1 {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.js-fade-in.is-delay-2 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.js-fade-in.is-delay-3 {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.js-fade-in.is-delay-4 {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.js-fade-in.is-delay-5 {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.js-fade-in.is-delay-6 {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.js-fade-in.is-delay-7 {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

.js-fade-in.is-delay-8 {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

.js-fade-in.is-delay-9 {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

.js-fade-in.is-delay-10 {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

.js-fade-in.is-delay-11 {
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}

.js-fade-in.is-delay-12 {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

.js-fade-in.is-delay-13 {
  -webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
}

.js-fade-in.is-delay-14 {
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}

.js-fade-in.is-delay-15 {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}

.js-fade-in.is-delay-16 {
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}

.js-fade-in.is-delay-17 {
  -webkit-transition-delay: 1.7s;
          transition-delay: 1.7s;
}

.js-fade-in.is-delay-18 {
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
}

.js-fade-in.is-delay-19 {
  -webkit-transition-delay: 1.9s;
          transition-delay: 1.9s;
}

.js-fade-in.is-delay-20 {
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
}

.js-fade-in.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media screen and (max-width: 480px) {
  .js-fade-in.is-delay-1,
  .js-fade-in.is-delay-2,
  .js-fade-in.is-delay-3,
  .js-fade-in.is-delay-4,
  .js-fade-in.is-delay-5,
  .js-fade-in.is-delay-6,
  .js-fade-in.is-delay-7,
  .js-fade-in.is-delay-8,
  .js-fade-in.is-delay-9,
  .js-fade-in.is-delay-10,
  .js-fade-in.is-delay-11,
  .js-fade-in.is-delay-12,
  .js-fade-in.is-delay-13,
  .js-fade-in.is-delay-14,
  .js-fade-in.is-delay-15,
  .js-fade-in.is-delay-16,
  .js-fade-in.is-delay-17,
  .js-fade-in.is-delay-18,
  .js-fade-in.is-delay-19,
  .js-fade-in.is-delay-20 {
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
    -webkit-transition: opacity 0.8s 0.5s ease-out, -webkit-transform 0.8s 0.5s ease-out;
    transition: opacity 0.8s 0.5s ease-out, -webkit-transform 0.8s 0.5s ease-out;
    transition: opacity 0.8s 0.5s ease-out, transform 0.8s 0.5s ease-out;
    transition: opacity 0.8s 0.5s ease-out, transform 0.8s 0.5s ease-out, -webkit-transform 0.8s 0.5s ease-out;
  }
}
.inner {
  max-width: 1250px;
  width: 100%;
  padding-left: 25px;
  padding-right: 25px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 480px) {
  .inner {
    padding-left: 8.8vw;
    padding-right: 8.8vw;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 9999;
  background: #fff;
}

.header li {
  list-style: none;
}

.header__inner {
  max-width: 1920px;
  width: 98%;
  padding: 0 1%;
  height: inherit;
  margin: auto;
  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;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.header__logo {
  width: 122px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.header__logo a {
  display: block;
  width: 100%;
  height: 100%;
}

.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.header__heading {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

p.header__heading-en {
  font-size: 0.875rem;
  font-weight: var(--regular);
  color: #92b497;
  line-height: 1;
}

p.header__heading-jp {
  font-size: 1.10rem;
  font-weight: var(--semibold);
  line-height: 1;
  margin-top: 0.3125rem;
}

@media screen and (max-width: 1149px) {
  .header {
    height: auto;
    min-height: 50px;
  }
  .header__inner {
    width: 100%;
    -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;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header__container {
    -webkit-column-gap: 14px;
       -moz-column-gap: 14px;
            column-gap: 14px;
  }
  .header__logo {
    width: auto;
    padding: 10px 0 0 3%;
  }
  .header__logo img {
    width: 100%;
    max-width: 78px;
  }
  p.header__heading-en {
    font-size: 0.625rem;
    margin-top: 0.5rem;
  }
  p.header__heading-jp {
    font-size: 0.875rem;
    margin-top: 0.1rem;
  }
}
.header__area {
  height: inherit;
}

.header__menu {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  list-style: none;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}

.header__menu ul {
  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;
  width: 600px;
  height: inherit;
}

.header__menu li {
  text-decoration: none;
  padding: 15px 5px;
  display: block;
  position: relative;
}

.header__menu li:last-child {
  padding-right: 0;
}

.header__menu ul li a {
  display: block;
  font-size: 16px;
  color: #010101;
  font-weight: var(--regular);
}

.header__menu ul li:not(.is-current) a:hover {
  color: #666;
}

.header__present-button {
  margin-left: clamp(15px, 6.265vw - 57.05px, 41px);
  max-width: 256px;
  width: 100%;
}

.header__present-button a {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: var(--white);
  font-weight: var(--regular);
  padding: 12px 10px 12px;
  background-color: #3ebba1;
  -webkit-transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.header__present-button a:hover {
  opacity: 0.5;
}

@media screen and (max-width: 1149px) {
  .header__menu {
    -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: start;
    height: auto;
  }
  .header__menu ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    text-align: left;
    padding: 20px 15px 0;
  }
  .header__menu li {
    width: 100%;
    padding: 0;
    margin-bottom: 10px;
    display: block;
  }
  .header__menu ul li a {
    padding: 10px 0 10px 10px;
    width: 100%;
    font-size: 14px;
  }
  .header__present-button {
    margin-left: 0;
    margin-top: 32px;
    padding: 0 15px;
    max-width: 500px;
    width: 100%;
  }
  .header__present-button a {
    display: block;
    font-size: 12px;
    color: var(--white);
    font-weight: var(--regular);
    padding: 12px 0;
    background-color: #3ebba1;
    width: 100%;
  }
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: inherit;
  line-height: 1.5;
}

.header__nav button {
  display: none;
}

@media screen and (max-width: 1149px) {
  .header__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    width: 100%;
    background-color: #fff;
  }
  .header__nav button {
    display: block;
    margin: 0;
    padding: 0;
    outline: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: inherit;
    vertical-align: middle;
    text-align: inherit;
    font: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
  }
}
/*================================
NAVI TEXT link
================================*/
.header__link li a {
  display: block;
  color: #000;
}

.header__link li a:hover {
  opacity: 0.6;
}

.header__link {
  display: none;
}

@media screen and (max-width: 1149px) {
  .header__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 90%;
    margin: auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-top: 1px solid #ccc;
    padding: 20px 0 0;
    font-size: 11px;
  }
  .header__link li {
    width: 100%;
    text-align: left;
    padding: 0 0 0 22px;
    margin-bottom: 25px;
  }
  .header__link li:nth-child(1) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    background: url(../images/common/ico_yoyaku.svg) no-repeat left 3px center;
    background-size: contain;
    margin-left: 3px;
  }
}
/*=================================
GLOBAL MENU HTML
==================================*/
.header__background.is-open-sub {
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 81px;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

@media screen and (max-width: 1149px) {
  .header__background.is-open-sub {
    top: 50px;
  }
  .header__area {
    position: fixed;
    z-index: 999;
    top: 50px;
    right: -120%;
    width: 100%;
    height: auto;
    border-top: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
    background: #FFF;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    overflow-y: auto;
    overflow-x: hidden;
    height: 80vh;
  }
  .header__area.is-panel-active {
    right: 0;
  }
  .header__hamburger {
    display: block;
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }
  .header__hamburger span {
    display: inline-block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #777;
    width: 45%;
  }
  .header__hamburger span:nth-of-type(1) {
    top: 15px;
  }
  .header__hamburger span:nth-of-type(2) {
    top: 23px;
  }
  .header__hamburger span:nth-of-type(3) {
    top: 31px;
  }
  .header__hamburger.is-active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    -webkit-transform: translateY(6px) rotate(-45deg);
            transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .header__hamburger.is-active span:nth-of-type(2) {
    opacity: 0;
  }
  .header__hamburger.is-active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    -webkit-transform: translateY(-6px) rotate(45deg);
            transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
}
/* 現在ページのナビゲーションメニューの文字色を変更 */
.header__menu li.is-current a {
  color: #99b399;
  /* お好きな色に変更できます */
}

.footer {
  background: #fff;
  width: 100%;
  min-width: 810px;
  position: relative;
  z-index: 999;
}

.footer__inner {
  position: relative;
  width: 98%;
  padding: 0;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-line-pack: start;
      align-content: flex-start;
}

.footer__plt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-line-pack: center;
      align-content: center;
  padding: 25px 0 0;
  color: #666;
  position: absolute;
  left: 1%;
}

.footer__plt a {
  max-width: 300px;
  width: 100%;
}

.footer__plt a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer__plt p {
  font-size: 11px;
  padding-left: 20px;
  margin: 0;
  text-align: left;
}

.footer__misawa {
  right: 0;
  text-align: right;
}

.footer__misawa ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-line-pack: center;
      align-content: center;
  margin: 5px 0;
}

.footer__misawa ul li {
  list-style: none;
  font-size: 11px;
  margin-left: 15px;
  width: initial;
}

.footer__misawa ul li::before {
  content: "";
  margin-right: 1px;
  color: #666;
}

.footer__misawa ul li a {
  text-decoration: none;
  color: #666;
}

.footer__hide {
  display: none;
}

.footer__copyright {
  margin: 0 auto;
  padding: 0 0 15px;
  color: #666;
  text-align: right;
  line-height: 13px;
  font-size: 11px;
}

.footer__logo {
  display: block;
  aspect-ratio: 269/74;
  max-width: 269px;
  width: 100%;
  margin-left: auto;
}

@media screen and (max-width: 960px) {
  .footer__plt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__plt p {
    padding: 27px 0 0 0;
  }
}
@media screen and (max-width: 480px) {
  .footer {
    width: 100%;
    min-width: initial !important;
    margin: 0 0 22.6666666667vw;
    padding: 8px 0 10px 0;
    background: #fff;
    text-align: left;
    border-top: none;
    position: relative;
  }
  .footer__inner {
    max-width: 100%;
  }
  .footer__misawa {
    text-align: left;
    position: static;
    width: 100%;
  }
  .footer__misawa ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0 0 15px;
    width: 83%;
    margin: auto;
  }
  .footer__misawa ul li:nth-child(odd) {
    width: 44%;
  }
  .footer__misawa ul li {
    width: 56%;
    margin-left: unset;
  }
  .footer__plt,
  .footer__misawa .footer__logo {
    display: none;
  }
  .footer__copyright {
    text-align: center;
  }
}
.footer-sp {
  display: none;
}

@media screen and (max-width: 480px) {
  .footer-sp {
    display: block;
    width: 100%;
    z-index: 100;
    position: inherit;
    padding: 40px 0 0;
    text-align: center;
  }
  .footer-sp--page {
    padding-top: 0;
  }
  .footer-sp .footer-sp__wrap {
    border-top: 1px solid #eee;
    padding: 40px 0 0;
    background: #fff;
  }
  .footer-sp .footer-sp__wrap-bg {
    width: 60%;
    margin: 0px auto 0;
    display: inline-block;
    vertical-align: top;
  }
  .footer-sp img {
    max-width: 400px;
  }
  .footer-sp__misawa {
    padding: 10px 40px 10px;
  }
  .footer-sp__misawa a img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .footer-sp__plt {
    border-top: 1px solid #ccc;
    padding: 15px 0;
  }
  .footer-sp__plt a img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.mv__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 3.125rem;
     -moz-column-gap: 3.125rem;
          column-gap: 3.125rem;
  position: relative;
}

.mv__body {
  width: 36.35%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.mv__title-area {
  padding-top: 4.6875rem;
  padding-bottom: 9.125rem;
  padding-left: clamp(28px, 28px + 45 * (100vw - 1200px) / 365, 73px);
  background-color: #eff6f0;
  position: relative;
}

.mv__title-area::after {
  content: "";
  position: absolute;
  bottom: -1.25rem;
  right: -0.875rem;
  width: 15.625rem;
  height: 7.9375rem;
  background-image: url(../images/top/mv_img.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.mv__title-en {
  font-size: 1.875rem;
  color: #92b497;
  line-height: 1;
}

.mv__title-jp {
  font-size: clamp(38px, 38px + 8 * (100vw - 1200px) / 365, 46px);
  font-weight: var(--regular);
}

.mv__text {
  padding-left: clamp(28px, 28px + 47 * (100vw - 1200px) / 365, 75px);
  margin-top: 6.5rem;
}

.mv__text p {
  font-size: 1.125rem;
  line-height: 2;
}

.mv__pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
  position: static;
  width: auto;
  text-align: left;
  padding-left: 15.5%;
  margin-top: auto;
  height: 0.9375rem;
}
.mv__pagination .swiper-pagination-bullet.swiper-pagination-bullet {
  width: 2.9375rem;
  height: 0.0625rem;
  border-radius: 0;
  background-color: #cddbcf;
  opacity: 1;
  margin: 0 0.3125rem;
}
.mv__pagination .swiper-pagination-bullet-active.swiper-pagination-bullet-active {
  background-color: #3d5141;
}

.mv__image {
  width: 63.65%;
}

.mv__slider {
  height: inherit;
}

.mv__slides {
  height: inherit;
}

@-webkit-keyframes zoomOut {
  0% {
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes zoomOut {
  0% {
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.swiper-slide-active .mv__slide-wrap,
.swiper-slide-duplicate-active .mv__slide-wrap,
.swiper-slide-prev .mv__slide-wrap {
  -webkit-animation: zoomOut 9s linear 0s normal both;
          animation: zoomOut 9s linear 0s normal both;
}

.mv__slide-wrap {
  aspect-ratio: 996/670;
}

.mv__slide-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

@media screen and (max-width: 480px) {
  .mv__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    -webkit-column-gap: 2.4375rem;
       -moz-column-gap: 2.4375rem;
            column-gap: 2.4375rem;
  }
  .mv__body {
    width: 100%;
    position: relative;
  }
  .mv__title-area {
    padding-top: 14.9333333333vw;
    padding-bottom: 26.6666666667vw;
    padding-left: 8.8vw;
    padding-right: 8.8vw;
    background-color: #eff6f0;
    position: relative;
  }
  .mv__title-area::after {
    content: "";
    position: absolute;
    bottom: -4.6666666667vw;
    right: 3.7333333333vw;
    width: 48.6666666667vw;
    height: 24.8vw;
  }
  .mv__title-en {
    font-size: 5.8666666667vw;
  }
  .mv__title-jp {
    font-size: 9.0666666667vw;
  }
  .mv__text {
    padding-left: 12vw;
    padding-right: 12vw;
    margin-top: 10.8vw;
  }
  .mv__text p {
    font-size: 3.7333333333vw;
    line-height: 1.9;
  }
  .mv__pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
    position: absolute;
    width: 100%;
    text-align: center;
    padding-left: 0;
    margin-top: 0;
    top: -30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: auto;
  }
  .mv__pagination .swiper-pagination-bullet {
    width: 9.2vw;
    height: 0.0625rem;
    border-radius: 0;
    background-color: #cddbcf;
    opacity: 1;
  }
  .mv__pagination .swiper-pagination-bullet-active {
    background-color: #3d5141;
  }
  .mv__image {
    width: 100%;
    height: 101.3333333333vw;
  }
  .mv__slide {
    height: inherit;
  }
  .mv__slide-wrap {
    aspect-ratio: 750/760;
    height: inherit;
  }
  .mv__slide-wrap img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
    display: block;
  }
  .mv__slide-wrap--1 img {
    -o-object-position: 16% center;
       object-position: 16% center;
  }
  .mv__slide-wrap--3 img {
    -o-object-position: 73% center;
       object-position: 73% center;
  }
}
.to-top {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 42px;
  height: 42px;
  bottom: 20px;
  left: auto;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.to-top.is-visible {
  opacity: 1;
}

.to-top a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 480px) {
  .to-top {
    bottom: 100px;
    left: 86%;
    width: 35px;
    height: 35px;
    z-index: 10;
  }
}
.toc__inner.inner {
  max-width: 75.625rem;
}

.toc__content {
  -webkit-box-shadow: 0 0 18px rgba(146, 180, 151, 0.15);
          box-shadow: 0 0 18px rgba(146, 180, 151, 0.15);
  padding: 2.6875rem 3.125rem 2.875rem;
}

.toc__title {
  padding-left: 3.25rem;
  font-size: 1.25rem;
  font-weight: var(--medium);
  color: #92b497;
  position: relative;
}

.toc__title::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 2.3125rem;
  height: 1.875rem;
  background-image: url(../images/common/toc_icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.toc__title::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background-color: #92b497;
}

.toc__lists {
  margin-top: 2.5rem;
  padding: 0 0.6875rem;
}

.toc__lists li + li {
  margin-top: 1.4375rem;
}

.toc__lists--madori li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 2.8125rem;
     -moz-column-gap: 2.8125rem;
          column-gap: 2.8125rem;
}

.toc__lists li a {
  font-size: 1.0625rem;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  color: #000;
  letter-spacing: 0.075em;
  -webkit-transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.toc__lists--madori li a {
  text-indent: -4.5em;
  padding-left: 4.5em;
}

.toc__lists li a:hover {
  opacity: 0.5;
}

.toc__lists--madori li a span {
  margin-right: 1.125rem;
  text-transform: uppercase;
}

.toc__list-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 32.875rem;
  width: 100%;
}

.toc__list-tag {
  font-size: 0.78125rem;
  color: #383838;
}

@media screen and (max-width: 480px) {
  .toc__inner.inner {
    padding-left: 4vw;
    padding-right: 4vw;
  }
  .toc__content {
    padding: 6.6666666667vw 5.3333333333vw;
  }
  .toc__title {
    padding-left: 10vw;
    font-size: 3.7333333333vw;
  }
  .toc__title::before {
    width: 7.4666666667vw;
    height: 6.6666666667vw;
  }
  .toc__title::after {
    bottom: -2.4vw;
  }
  .toc__lists {
    margin-top: 6.6666666667vw;
    padding: 0 1.4666666667vw;
  }
  .toc__lists li + li {
    margin-top: 2.6666666667vw;
  }
  .toc__lists--madori li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 0.6666666667vw;
  }
  .toc__lists li a {
    font-size: 3.2vw;
  }
  .toc__lists--madori li a {
    text-indent: -4.2em;
    padding-left: 4.2em;
  }
  .toc__lists--madori li a span {
    margin-right: 2.4vw;
  }
  .toc__list-tags {
    -webkit-column-gap: 1.0666666667vw;
       -moz-column-gap: 1.0666666667vw;
            column-gap: 1.0666666667vw;
    max-width: 100%;
    padding-left: 13.3333333333vw;
  }
  .toc__list-tag {
    font-size: 2.8vw;
  }
}
.madori__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.4375rem;
     -moz-column-gap: 1.4375rem;
          column-gap: 1.4375rem;
  position: relative;
  z-index: 0;
}

.madori__bg {
  position: absolute;
  top: 7%;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: -1;
}

.madori__bg-box {
  position: relative;
  max-width: 64.8125rem;
  width: 70%;
  height: 18.9375rem;
  background-color: #fbfcf3;
  display: block;
  z-index: -2;
}

.madori__bg-box::before {
  content: "";
  position: absolute;
  top: 27%;
  right: 8.5rem;
  -webkit-transform: translate(100%, -100%);
          transform: translate(100%, -100%);
  width: 19.15625rem;
  height: 13.295rem;
  background-color: #f1f8e8;
}

.madori__image {
  aspect-ratio: 984/366;
  max-width: 61.5rem;
  margin-top: 6.4375rem;
}

.madori__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.madori__heading {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.madori__button {
  margin-top: 6.9375rem;
  text-align: center;
}

@media screen and (max-width: 480px) {
  .madori__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    z-index: 0;
  }
  .madori__bg {
    position: absolute;
    top: auto;
    left: 0;
    bottom: -19.2vw;
    width: 100%;
    height: auto;
    display: block;
  }
  .madori__bg-box {
    position: relative;
    max-width: 100%;
    width: 100%;
    height: 47.8786666667vw;
    background-color: #fbfcf3;
    display: block;
    z-index: auto;
  }
  .madori__bg-box::before {
    display: none;
  }
  .madori__image {
    margin-top: 20vw;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
    width: 100%;
    height: 46.4vw;
  }
  .madori__image img {
    display: inline-block;
    width: auto;
    height: 100%;
    max-width: none;
  }
  .madori__heading {
    max-width: 100%;
    width: 100%;
    padding-left: 8.8vw;
    padding-right: 8.8vw;
    position: relative;
    z-index: 0;
  }
  .madori__heading::before {
    content: "";
    position: absolute;
    top: -10.9333333333vw;
    left: 2.2666666667vw;
    width: 40.8666666667vw;
    height: 28.3626666667vw;
    background-color: #f1f8e8;
    z-index: -1;
  }
  .madori__heading::after {
    content: "";
    position: absolute;
    top: -13.8666666667vw;
    left: 0;
    width: 29.9453333333vw;
    height: 20.784vw;
    background-color: #dbe9ca;
    z-index: -2;
  }
  .madori__button {
    margin-top: 14.9333333333vw;
    text-align: center;
  }
}
/*=========================================================
//# section-title
//========================================================*/
.section-title {
  font-size: 2.375rem;
  font-weight: var(--regular);
  color: #282828;
}
@media screen and (max-width: 480px) {
  .section-title {
    font-size: 6.4vw;
  }
  .section-title.kura__title {
    -webkit-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
    letter-spacing: 0.01em;
  }
}

/*=========================================================
//# section-text
//========================================================*/
.section-text {
  margin-top: 1.3125rem;
}

.section-text p {
  font-size: 1.125rem;
  line-height: 2;
  font-weight: var(--regular);
}

@media screen and (max-width: 480px) {
  .section-text {
    margin-top: 2.8vw;
  }
  .section-text p {
    font-size: 3.7333333333vw;
    line-height: 1.9;
    padding-left: 0.6666666667vw;
  }
}
/*=========================================================
//# button
//========================================================*/
.button a {
  display: inline-block;
  max-width: 22.8125rem;
  width: 100%;
  padding: 2rem 0;
  text-align: center;
  position: relative;
  overflow-x: hidden;
  background-color: #FFF;
}

.button a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #000000;
  z-index: 1;
}

.button a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -30%;
  width: 160%;
  height: 100%;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 1.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-transform 1.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 1.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 1.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 1.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.button a:hover::before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.button a span {
  position: relative;
  z-index: 1;
  font-size: 1.125rem;
}

@media screen and (max-width: 480px) {
  .button a {
    max-width: 66.9173333333vw;
    padding: 2vw 0;
  }
  .button a::after {
    border: 0.1333333333vw solid #000000;
  }
  .button a span {
    font-size: 3.2vw;
  }
}
.button.button--madori a::before {
  background-image: -webkit-gradient(linear, left top, right top, from(#eff8e7), color-stop(20%, #d9f0c5), to(#eff8e7));
  background-image: linear-gradient(90deg, #eff8e7, #d9f0c5 20% 80%, #eff8e7);
}

.button.button--jirei a::before {
  background-image: -webkit-gradient(linear, left top, right top, from(#dbe3dc), color-stop(20%, #bccabf), to(#dbe3dc));
  background-image: linear-gradient(90deg, #dbe3dc, #bccabf 20% 80%, #dbe3dc);
}

.button.button--kura a::before {
  background-image: -webkit-gradient(linear, left top, right top, from(#f4f2ee), color-stop(20%, #e4dacb), to(#f4f2ee));
  background-image: linear-gradient(90deg, #f4f2ee, #e4dacb 20% 80%, #f4f2ee);
}

.button.button--product a::before {
  background-image: -webkit-gradient(linear, left top, right top, from(#64b8a2), color-stop(20%, #2c9985), to(#64b8a2));
  background-image: linear-gradient(90deg, #64b8a2, #2c9985 20% 80%, #64b8a2);
  -webkit-transition: -webkit-transform 1.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-transform 1.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 1.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 1.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 1.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.button.button--product a span {
  -webkit-transition: color 1.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: color 1.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.button.button--product a:hover span {
  color: #FFF;
}

.button.button--present a {
  background-color: #64b8a2;
  color: #FFF;
  max-width: 40.625rem;
  padding-right: 3.8125rem;
  padding-top: 1.8125rem;
  padding-bottom: 1.8125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}

.button.button--present a::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
  left: auto;
  right: 24%;
  width: 4.75rem;
  height: 0.5625rem;
  border: none;
  z-index: auto;
  background-image: url(../images/top/arrow_icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.button.button--present a::before {
  background-image: -webkit-gradient(linear, left top, right top, from(#64b8a2), color-stop(20%, #2c9985), to(#64b8a2));
  background-image: linear-gradient(90deg, #64b8a2, #2c9985 20% 80%, #64b8a2);
}

.button.button--present a span {
  font-size: 1.4rem;
  font-weight: var(--medium);
}

@media screen and (max-width: 480px) {
  .button.button--present a {
    background-color: #64b8a2;
    color: #FFF;
    max-width: 66.6666666667vw;
    padding-right: 8vw;
    padding-top: 2vw;
    padding-bottom: 2vw;
  }
  .button.button--present a::after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translate(100%, -50%);
            transform: translate(100%, -50%);
    left: auto;
    right: 17%;
    width: 9.3333333333vw;
    height: 1.0666666667vw;
    border: none;
    z-index: auto;
    background-image: url(../images/top/arrow_icon.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  .button.button--present a span {
    font-size: 3.2vw;
  }
}
.button.button--post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.875rem;
  max-width: 22.8125rem;
  width: 100%;
  padding: 2rem 0;
  text-align: center;
  position: relative;
  overflow-x: hidden;
  background-color: #fff;
  cursor: pointer;
  list-style: none;
}
.button.button--post::-webkit-details-marker {
  display: none;
}
.button.button--post::marker {
  display: none;
}

.button.button--post::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #000000;
  z-index: 1;
}

.button.button--post::before {
  content: "";
  position: absolute;
  top: 0;
  left: -30%;
  width: 160%;
  height: 100%;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 1.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-transform 1.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 1.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 1.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 1.7s cubic-bezier(0.22, 1, 0.36, 1);
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(20%, #f2f2f2), to(#fff));
  background-image: linear-gradient(90deg, #fff, #f2f2f2 20% 80%, #fff);
}

.button.button--post:hover::before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.button.button--post span {
  position: relative;
  z-index: 1;
  font-size: 1.125rem;
}

.button.button--post .post__more-button-icon {
  display: inline-block;
  -webkit-transform: rotate(90deg) translateX(30%);
          transform: rotate(90deg) translateX(30%);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

.post__more.is-open .button.button--post .post__more-button-icon {
  -webkit-transform: rotate(270deg) translateX(30%);
          transform: rotate(270deg) translateX(30%);
}

@media screen and (max-width: 480px) {
  .button.button--post {
    max-width: 66.9173333333vw;
    padding: 2vw 0;
    gap: 1.8666666667vw;
  }
  .button.button--post span {
    font-size: 3.2vw;
  }
}
.button.button--case a::before {
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(20%, #f2f2f2), to(#fff));
  background-image: linear-gradient(90deg, #fff, #f2f2f2 20% 80%, #fff);
}

@media screen and (max-width: 480px) {
  .button.button--case a {
    max-width: 100%;
  }
}
.jirei {
  position: relative;
  z-index: 0;
}

.jirei::after {
  content: "";
  position: absolute;
  bottom: 16.5%;
  left: 0;
  width: 100%;
  height: 28.125rem;
  background-color: #f0f6f1;
  z-index: -1;
}

.jirei__heading {
  position: relative;
  z-index: 0;
}

.jirei__heading::before {
  content: "";
  position: absolute;
  top: -72%;
  left: -8.7%;
  width: 19.15625rem;
  height: 13.295rem;
  background-color: #dbe3dc;
  z-index: -1;
}

.jirei__pc-slider {
  display: block;
  margin-top: 2.5rem;
}

.jirei__sp-slider {
  display: none;
}

.jirei__sp-thumbnail {
  display: none;
}

.jirei__button {
  margin-top: 8.3125rem;
  text-align: center;
}

@media screen and (max-width: 480px) {
  .jirei::after {
    content: "";
    position: absolute;
    bottom: 22%;
    left: 0;
    width: 100%;
    height: 51.2vw;
    background-color: #f0f6f1;
    z-index: -1;
  }
  .jirei__heading::before {
    content: "";
    position: absolute;
    top: -10.9333333333vw;
    left: -6.5333333333vw;
    width: 40.8666666667vw;
    height: 28.3626666667vw;
    z-index: -1;
  }
  .jirei__heading::after {
    content: "";
    position: absolute;
    top: -13.8666666667vw;
    left: -8.8vw;
    width: 29.9453333333vw;
    height: 20.784vw;
    background-color: #bbcdbe;
    z-index: -2;
  }
  .jirei__pc-slider {
    display: none;
  }
  .jirei__sp-slider {
    display: block;
    margin-top: 16vw;
  }
  .jirei__sp-thumbnail {
    display: block;
    margin-top: 12.5333333333vw;
  }
  .jirei__button {
    margin-top: 14.6666666667vw;
    text-align: center;
  }
}
.kura__heading {
  position: relative;
  z-index: 0;
}

.kura__heading::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -8.7%;
  width: 19.15625rem;
  height: 13.295rem;
  background-color: #f4f2ee;
  z-index: -1;
}

.kura__items {
  width: 100%;
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-column-gap: 1.375rem;
     -moz-column-gap: 1.375rem;
          column-gap: 1.375rem;
}

.kura__item {
  width: 20%;
  position: relative;
}

.kura__item-img {
  aspect-ratio: 590/702;
}

.kura__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.kura__item-text {
  width: clamp(90px, 90px + 22 * (100vw - 1200px) / 365, 112px);
  height: clamp(90px, 90px + 22 * (100vw - 1200px) / 365, 112px);
  display: grid;
  place-items: center;
  position: absolute;
  bottom: -0.75rem;
  left: 0.75rem;
}

.kura__item-text--space {
  background-color: #4a654e;
}

.kura__item-text--home {
  background-color: #736950;
}

.kura__item-text--life {
  background-color: #a37d21;
}

.kura__item-text--security {
  background-color: #616863;
}

.kura__item-text--environment {
  background-color: #00567c;
}

.kura__item-text p {
  text-align: center;
  font-size: clamp(16px, 16px + 2 * (100vw - 1200px) / 365, 18px);
  color: #fff;
}

.kura__button {
  text-align: center;
  margin-top: 9.8125rem;
}

@media screen and (max-width: 480px) {
  .kura__heading::before {
    content: "";
    position: absolute;
    top: -10.9333333333vw;
    left: -6.5333333333vw;
    width: 40.8666666667vw;
    height: 28.3626666667vw;
    background-color: #f4f2ee;
    z-index: -1;
  }
  .kura__heading::after {
    content: "";
    position: absolute;
    top: -13.8666666667vw;
    left: -8.8vw;
    width: 29.9453333333vw;
    height: 20.784vw;
    background-color: #e6e1d6;
    z-index: -2;
  }
  .kura__items {
    overflow-x: auto;
    width: 100%;
    margin-top: 13.3333333333vw;
    gap: 2.6666666667vw;
    padding-bottom: 6.1333333333vw;
  }
  .kura__item {
    position: relative;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    max-width: 40vw;
    width: 100%;
  }
  .kura__item-img {
    aspect-ratio: 590/702;
  }
  .kura__item-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .kura__item-text {
    width: 14.9333333333vw;
    height: 14.9333333333vw;
    display: grid;
    place-items: center;
    position: absolute;
    bottom: -2.1333333333vw;
    left: 2.1333333333vw;
  }
  .kura__item-text--space {
    background-color: #4a654e;
  }
  .kura__item-text--home {
    background-color: #736950;
  }
  .kura__item-text--life {
    background-color: #a37d21;
  }
  .kura__item-text--security {
    background-color: #616863;
  }
  .kura__item-text--environment {
    background-color: #00567c;
  }
  .kura__item-text p {
    text-align: center;
    font-size: 2.4vw;
    color: #fff;
  }
  .kura__button {
    margin-top: 8vw;
    text-align: center;
  }
}
/*=========================================================
//# detail
//========================================================*/
.detail {
  position: relative;
  z-index: 0;
}

.detail::before {
  content: "";
  position: absolute;
  top: 6.625rem;
  left: 0;
  width: 100%;
  height: 20.9375rem;
  background-color: #fafdf1;
  z-index: -2;
}

.detail::after {
  content: "";
  position: absolute;
  top: calc(-16% + 8.125rem);
  right: 0;
  width: 26.125rem;
  height: 26.4375rem;
  background-image: url(../images/top/section_img1.png);
  background-image: -webkit-image-set(url(../images/top/section_img1.webp) type("image/webp"), url(../images/top/section_img1.png) type("image/png"));
  background-image: image-set(url(../images/top/section_img1.webp) type("image/webp"), url(../images/top/section_img1.png) type("image/png"));
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}

.detail__inner.inner {
  max-width: 82.5rem;
}

.detail__heading {
  position: relative;
  z-index: 0;
}

.detail__heading::before {
  content: "";
  position: absolute;
  top: 14%;
  left: -8%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 19.15625rem;
  height: 13.295rem;
  background-color: #f4f6ee;
  z-index: -1;
}

.detail__merit {
  margin-top: 6.75rem;
  max-width: 78.125rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
}

.detail__demerit {
  margin-top: 3rem;
  max-width: 78.125rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
}

.detail__arrow {
  margin-top: 2.9375rem;
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 277px solid transparent;
  border-left: 277px solid transparent;
  border-top: 43px solid #dae7b1;
  border-bottom: 0;
}

.detail__product-wrap {
  margin-top: 2.75rem;
  margin-right: auto;
  margin-left: auto;
  max-width: 78.125rem;
  width: 100%;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
}

@media screen and (max-width: 480px) {
  .detail {
    position: relative;
    z-index: 0;
  }
  .detail::before {
    content: "";
    position: absolute;
    top: 11.0666666667vw;
    left: 0;
    width: 100%;
    height: 44.6666666667vw;
    background-color: #fafdf1;
    z-index: -2;
  }
  .detail::after {
    display: none;
  }
  .detail__heading {
    position: relative;
    z-index: 0;
  }
  .detail__heading::before {
    content: "";
    position: absolute;
    top: 2.6666666667vw;
    left: -6.5333333333vw;
    width: 40.8666666667vw;
    height: 28.3626666667vw;
    background-color: #f4f6ee;
    z-index: -1;
  }
  .detail__heading::after {
    content: "";
    position: absolute;
    top: -4.2666666667vw;
    left: -8.8vw;
    width: 29.9453333333vw;
    height: 20.784vw;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background-color: #dfe3d1;
    z-index: -2;
  }
  .detail__merit {
    margin-top: 12.6666666667vw;
    padding-right: 0;
    padding-left: 0;
  }
  .detail__demerit {
    margin-top: 9.2vw;
    padding-left: 0;
    padding-right: 0;
  }
  .detail__arrow {
    margin-top: 3.4666666667vw;
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 37.3333333333vw solid transparent;
    border-left: 37.3333333333vw solid transparent;
    border-top: 6.1333333333vw solid #dae7b1;
    border-bottom: 0;
  }
  .detail__product {
    margin-top: 8vw;
    max-width: 75rem;
    width: 100%;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
  }
  .detail__product-wrap {
    padding-left: 0;
    padding-right: 0;
  }
}
.merit__title {
  font-size: 1.5rem;
  font-weight: var(--regular);
  padding-left: 0.375rem;
}

.merit__items {
  margin-top: 1.375rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3125rem;
}

.merit__item {
  border: 1px solid #c4cbaf;
}

.merit__img {
  aspect-ratio: 770/520;
}

.merit__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.merit__content {
  padding: 1.6875rem 3.125rem 2.25rem;
}

.merit__sub {
  font-size: 1.5rem;
  font-weight: var(--regular);
  line-height: 1.25;
  text-align: center;
}

.merit__text {
  margin-top: 2rem;
  font-size: 1rem;
  line-height: 1.5;
}

@media screen and (max-width: 480px) {
  .merit__title {
    font-size: 3.7333333333vw;
  }
  .merit__items {
    margin-top: 2.4vw;
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: repeat(3, 1fr);
    gap: 4vw;
  }
  .merit__item {
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2.6666666667vw;
  }
  .merit__img {
    aspect-ratio: 285/220;
    width: 48%;
  }
  .merit__content {
    padding: 0;
    width: 52%;
  }
  .merit__sub {
    font-size: 3.2vw;
    font-weight: var(--regular);
    line-height: 1.5;
    text-align: left;
  }
  .merit__text {
    margin-top: 4vw;
    font-size: clamp(0.625rem, 2.6666666667vw, 1.25rem);
    line-height: 1.2;
    text-align: left;
  }
}
.demerit__title {
  font-size: 1.5rem;
  font-weight: var(--regular);
  padding-left: 0.375rem;
}

.demerit__items {
  margin-top: 1.5625rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3125rem;
}

.demerit__item {
  border: 1px solid #c4cbaf;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  padding: 2.5625rem 1.875rem 2.3125rem;
}

.demerit__img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 5.25rem;
}

.demerit__item:nth-child(1) .demerit__img {
  aspect-ratio: 182/106;
  max-width: 5.25rem;
  width: 100%;
}

.demerit__item:nth-child(2) .demerit__img {
  aspect-ratio: 142/118;
  max-width: 4.4375rem;
  width: 100%;
}

.demerit__item:nth-child(3) .demerit__img {
  aspect-ratio: 116/110;
  max-width: 3.625rem;
  width: 100%;
}

.demerit__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.demerit__text {
  font-size: 1.5rem;
  font-weight: var(--regular);
  line-height: 1.5;
  text-align: center;
}

@media screen and (max-width: 480px) {
  .demerit__title {
    font-size: 3.7333333333vw;
    font-weight: var(--regular);
  }
  .demerit__items {
    margin-top: 3.2vw;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8666666667vw;
  }
  .demerit__item {
    border: 1px solid #c4cbaf;
    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;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    row-gap: 4.6666666667vw;
    padding: 6.8vw 0 3.3333333333vw;
  }
  .demerit__item:nth-child(1) .demerit__img {
    max-width: 12.1333333333vw;
  }
  .demerit__item:nth-child(2) .demerit__img {
    max-width: 9.4666666667vw;
  }
  .demerit__item:nth-child(3) .demerit__img {
    max-width: 7.7333333333vw;
  }
  .demerit__text {
    font-size: 3.2vw;
    text-align: left;
  }
}
.product {
  padding-top: 3.875rem;
  padding-bottom: 2.5625rem;
  border: 1px solid #cbd7cd;
  position: relative;
}

.product__intro {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  background-color: #fff;
  display: inline-block;
  padding: 0 0.3125rem;
}

.product__intro p {
  font-size: 1.5rem;
  text-align: center;
}

.product__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 0;
}

.product__content::before {
  content: "";
  position: absolute;
  top: 15%;
  left: 4.5%;
  width: 8.625rem;
  height: 5.988125rem;
  background-color: #f5ffd6;
  z-index: -1;
}

.product__content::after {
  content: "";
  position: absolute;
  top: 6%;
  left: 3.5%;
  width: 8.625rem;
  height: 5.988125rem;
  background-color: #f4f6ee;
  z-index: -2;
}

.product__catch {
  font-size: 1.875rem;
}

.product__title {
  font-size: 3.25rem;
  font-weight: var(--regular);
  margin-top: -0.9375rem;
}

.product__title .text_l {
  font-size: 5rem;
  color: #4a8900;
  font-weight: var(--regular);
}

.product__title .text_s {
  font-size: 2.25rem;
}

.product__img {
  aspect-ratio: 744/446;
  max-width: 23.75rem;
  width: 100%;
}

.product__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.product__button {
  text-align: center;
}

@media screen and (max-width: 480px) {
  .product {
    padding-top: 13.7333333333vw;
    padding-bottom: 11.7333333333vw;
    padding-left: 6.1333333333vw;
    padding-right: 2.6666666667vw;
    border-top: none;
    border-left: none;
    border-right: none;
    background-color: #fdfef8;
    position: relative;
  }
  .product__intro {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    text-align: center;
    background-color: transparent;
    padding: 0;
    width: 100%;
  }
  .product__intro p {
    font-size: 3.2vw;
    text-align: center;
    position: relative;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  .product__intro p::before,
  .product__intro p::after {
    background-color: #cbd7cd;
    content: "";
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    height: 1px;
  }
  .product__intro p::before {
    margin-right: 3px;
  }
  .product__intro p::after {
    margin-left: 3px;
  }
  .product__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 3.4666666667vw;
  }
  .product__content::before {
    content: "";
    position: absolute;
    top: -0.2666666667vw;
    left: -1.0666666667vw;
    width: 18.4vw;
    height: 12.7746666667vw;
    background-color: #f5ffd6;
    z-index: -1;
  }
  .product__content::after {
    content: "";
    position: absolute;
    top: -1.6vw;
    left: -2.4vw;
    width: 18.4vw;
    height: 12.7746666667vw;
    background-color: #f4f6ee;
    z-index: -2;
  }
  .product__catch {
    font-size: 4vw;
  }
  .product__title {
    font-size: 6.9333333333vw;
    font-weight: var(--regular);
    -webkit-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
    letter-spacing: 0.04em;
    margin-top: -1.3333333333vw;
  }
  .product__title .text_l {
    font-size: 10.6666666667vw;
  }
  .product__title .text_s {
    font-size: 4.8vw;
  }
  .product__img {
    aspect-ratio: 744/446;
    max-width: 65.3333333333vw;
    width: 100%;
  }
  .product__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    display: block;
  }
  .product__button {
    text-align: center;
  }
}
.post {
  background-color: #f0faf2;
  padding-top: 6.125rem;
  padding-bottom: 4.4375rem;
}

.post__heading {
  text-align: center;
}

.post__icon {
  aspect-ratio: 1/1;
  max-width: 3.125rem;
  width: 100%;
  display: inline-block;
}

.post__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.post__title {
  font-size: 1.875rem;
  font-weight: var(--medium);
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  letter-spacing: 0.075em;
  margin-top: 0.125rem;
}

.post__content {
  padding: 0 1.875rem;
  margin-top: 3rem;
}

.post__more {
  margin-top: 4.8125rem;
}

.post__more-button {
  margin-left: auto;
  margin-right: auto;
}

.post__more-items {
  padding-top: 4.4375rem;
}

@media screen and (max-width: 480px) {
  .post {
    padding-top: 12.9333333333vw;
    padding-bottom: 7.8666666667vw;
  }
  .post__heading {
    text-align: center;
  }
  .post__icon {
    aspect-ratio: 1/1;
    max-width: 6.6666666667vw;
    width: 100%;
    display: inline-block;
  }
  .post__icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
  .post__title {
    font-size: 4vw;
    font-weight: var(--medium);
    margin-top: 0;
  }
  .post__content {
    padding: 0;
    margin-top: 6.9333333333vw;
  }
  .post__more {
    margin-top: 13.2vw;
  }
  .post__more-items {
    padding-top: 7.8666666667vw;
  }
}
.post-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 1.875rem;
}

.post-item + .post-item {
  margin-top: 3.125rem;
}

.post-item__content {
  display: block;
  width: 20%;
  aspect-ratio: 1/1;
}

.post-item__content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

@media screen and (max-width: 480px) {
  .post-item {
    overflow-x: auto;
    gap: 4vw;
    padding-bottom: 2vw;
  }
  .post-item + .post-item {
    margin-top: 8.9333333333vw;
  }
  .post-item__content {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 30.9333333333vw;
  }
  .post-item__content a {
    display: block;
    width: 100%;
    aspect-ratio: 1/1;
  }
  .post-item__content a img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
}
.present__title {
  font-size: 1.875rem;
  font-weight: var(--medium);
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  letter-spacing: 0.075em;
  text-align: center;
}

.present--page {
  background-color: #f4f2ee;
  padding-top: 5.375rem;
  padding-bottom: 5.5rem;
}

.present__items {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
}

.present__item {
  display: contents;
}

.present__img {
  grid-row: 1;
  margin-top: auto;
}

.present__img img {
  display: block;
  width: 100%;
  height: auto;
}

.present__content {
  padding: 0.8125rem 2.5rem 2.25rem;
  grid-row: 2;
}

.present__sub-title {
  font-size: 1.125rem;
  font-weight: var(--regular);
/*  padding-left: 1.9375rem; */
  position: relative;
}

.present__sub-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 1.25rem;
  height: 1.25rem;
/*  background-image: url(../images/top/check_icon.svg); */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.present__text {
  margin-top: 0.4375rem;
  font-size: 0.875rem;
  line-height: 1.5714285714;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  letter-spacing: 0.05em;
}

.present__tag {
  display: inline-block;
  margin-top: 1.375rem;
  font-size: 0.625rem;
  padding: 0 1.5rem;
  background-color: #f9fafa;
  border: 1px solid #e5e5e4;
}

.present__button {
  margin-top: 2.75rem;
  text-align: center;
}

@media screen and (max-width: 480px) {
  .present--page {
    background-color: #f4f2ee;
    padding-top: 20vw;
    padding-bottom: 20vw;
  }
  .present__inner.inner {
    padding-left: 4.6666666667vw;
    padding-right: 4.6666666667vw;
  }
  .present__title {
    font-size: 5.0666666667vw;
    text-align: left;
  }
  .present__items {
    margin-top: 10.6666666667vw;
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto;
    gap: 6vw;
  }
  .present__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .present__img {
    margin-top: 0;
    width: 55%;
  }
  .present__img img {
    display: block;
    width: 100%;
    height: auto;
  }
  .present__content {
    padding: 0;
    width: 45%;
  }
  .present__sub-title {
    font-size: clamp(0.75rem, 2.4vw, 1.125rem);
    padding-left: 4.1333333333vw;
  }
  .present__sub-title::before {
    top: 0.125rem;
    width: 2.6666666667vw;
    height: 2.6666666667vw;
  }
  .present__text {
    margin-top: 1.0666666667vw;
    font-size: clamp(0.625rem, 1.8666666667vw, 0.875rem);
  }
  .present__tag {
    display: inline-block;
    margin-top: 2vw;
    font-size: 0.625rem;
    padding: 0.2666666667vw 2.8vw;
  }
  .present__button {
    margin-top: 12.6666666667vw;
    text-align: center;
  }
}
.pc-slider {
  position: relative;
  overflow: visible;
  width: 100%;
}

.pc-slider__items.swiper {
  overflow: visible;
}

.pc-slider__item.swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 38%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.pc-slider__container {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.pc-slider__item.is-center-slide {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  opacity: 1;
  margin-top: 0;
}

.pc-slider__item:not(.is-center-slide) {
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  -webkit-filter: brightness(0.64);
          filter: brightness(0.64);
}

.pc-slider__cap {
  opacity: 0;
  visibility: hidden;
  font-size: 0.9375rem;
  margin-top: 0.625rem;
}

.pc-slider__item.is-center-slide .pc-slider__cap {
  opacity: 1;
  visibility: visible;
}

.pc-slider__img {
  width: 100%;
  aspect-ratio: 844/478;
  overflow: hidden;
  -webkit-transition: none;
  transition: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.pc-slider__item.is-center-slide .pc-slider__img {
  aspect-ratio: 845/476;
}

.pc-slider__img picture,
.pc-slider__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.pc-slider.is-animate .pc-slider__item.is-center-slide {
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.42, 0, 0.58, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.42, 0, 0.58, 1);
  transition: transform 0.8s cubic-bezier(0.42, 0, 0.58, 1);
  transition: transform 0.8s cubic-bezier(0.42, 0, 0.58, 1), -webkit-transform 0.8s cubic-bezier(0.42, 0, 0.58, 1);
}

.pc-slider.is-animate .pc-slider__item.is-center-slide .pc-slider__container {
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.42, 0, 0.58, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.42, 0, 0.58, 1);
  transition: transform 0.8s cubic-bezier(0.42, 0, 0.58, 1);
  transition: transform 0.8s cubic-bezier(0.42, 0, 0.58, 1), -webkit-transform 0.8s cubic-bezier(0.42, 0, 0.58, 1);
}

.pc-slider.is-animate .pc-slider__item:not(.is-center-slide) {
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.42, 0, 0.58, 1), -webkit-filter 0.8s cubic-bezier(0.42, 0, 0.58, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.42, 0, 0.58, 1), -webkit-filter 0.8s cubic-bezier(0.42, 0, 0.58, 1);
  transition: transform 0.8s cubic-bezier(0.42, 0, 0.58, 1), filter 0.8s cubic-bezier(0.42, 0, 0.58, 1);
  transition: transform 0.8s cubic-bezier(0.42, 0, 0.58, 1), filter 0.8s cubic-bezier(0.42, 0, 0.58, 1), -webkit-transform 0.8s cubic-bezier(0.42, 0, 0.58, 1), -webkit-filter 0.8s cubic-bezier(0.42, 0, 0.58, 1);
}

.pc-slider.is-animate .pc-slider__item:not(.is-center-slide) .pc-slider__container {
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.42, 0, 0.58, 1), -webkit-filter 0.8s cubic-bezier(0.42, 0, 0.58, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.42, 0, 0.58, 1), -webkit-filter 0.8s cubic-bezier(0.42, 0, 0.58, 1);
  transition: transform 0.8s cubic-bezier(0.42, 0, 0.58, 1), filter 0.8s cubic-bezier(0.42, 0, 0.58, 1);
  transition: transform 0.8s cubic-bezier(0.42, 0, 0.58, 1), filter 0.8s cubic-bezier(0.42, 0, 0.58, 1), -webkit-transform 0.8s cubic-bezier(0.42, 0, 0.58, 1), -webkit-filter 0.8s cubic-bezier(0.42, 0, 0.58, 1);
}

.pc-slider.is-animate .pc-slider__cap {
  -webkit-transition: opacity 0.6s ease 0.1s, visibility 0.6s ease 0.1s;
  transition: opacity 0.6s ease 0.1s, visibility 0.6s ease 0.1s;
}

.js-pc-slider .is-first-half[data-counthalf="0"] .pc-slider__container,
.js-pc-slider .is-second-half[data-counthalf="0"] .pc-slider__container {
  -webkit-transform: translate3d(clamp(0rem, calc(0rem + (100vw - 75rem) * 0.1317777778), 0rem), 7%, 0);
          transform: translate3d(clamp(0rem, calc(0rem + (100vw - 75rem) * 0.1317777778), 0rem), 7%, 0);
}

.js-pc-slider .is-first-half[data-counthalf="1"] .pc-slider__container {
  -webkit-transform: translate3d(clamp(9.87rem, calc(9.87rem + (100vw - 75rem) * 0.1317777778), 15.8rem), 7%, 0);
          transform: translate3d(clamp(9.87rem, calc(9.87rem + (100vw - 75rem) * 0.1317777778), 15.8rem), 7%, 0);
}

.js-pc-slider .is-first-half[data-counthalf="2"] .pc-slider__container {
  -webkit-transform: translate3d(clamp(19.74rem, calc(19.74rem + (100vw - 75rem) * 0.1317777778), 31.6rem), 7%, 0);
          transform: translate3d(clamp(19.74rem, calc(19.74rem + (100vw - 75rem) * 0.1317777778), 31.6rem), 7%, 0);
}

.js-pc-slider .is-first-half[data-counthalf="3"] .pc-slider__container {
  -webkit-transform: translate3d(clamp(29.61rem, calc(29.61rem + (100vw - 75rem) * 0.1317777778), 47.4rem), 7%, 0);
          transform: translate3d(clamp(29.61rem, calc(29.61rem + (100vw - 75rem) * 0.1317777778), 47.4rem), 7%, 0);
}

.js-pc-slider .is-first-half[data-counthalf="4"] .pc-slider__container {
  -webkit-transform: translate3d(clamp(39.48rem, calc(39.48rem + (100vw - 75rem) * 0.1317777778), 63.2rem), 7%, 0);
          transform: translate3d(clamp(39.48rem, calc(39.48rem + (100vw - 75rem) * 0.1317777778), 63.2rem), 7%, 0);
}

.js-pc-slider .is-first-half[data-counthalf="5"] .pc-slider__container {
  -webkit-transform: translate3d(clamp(49.35rem, calc(49.35rem + (100vw - 75rem) * 0.1317777778), 79rem), 7%, 0);
          transform: translate3d(clamp(49.35rem, calc(49.35rem + (100vw - 75rem) * 0.1317777778), 79rem), 7%, 0);
}

.js-pc-slider .is-first-half[data-counthalf="6"] .pc-slider__container {
  -webkit-transform: translate3d(clamp(59.22rem, calc(59.22rem + (100vw - 75rem) * 0.1317777778), 94.8rem), 7%, 0);
          transform: translate3d(clamp(59.22rem, calc(59.22rem + (100vw - 75rem) * 0.1317777778), 94.8rem), 7%, 0);
}

.js-pc-slider .is-first-half[data-counthalf="7"] .pc-slider__container {
  -webkit-transform: translate3d(clamp(69.09rem, calc(69.09rem + (100vw - 75rem) * 0.1317777778), 110.6rem), 7%, 0);
          transform: translate3d(clamp(69.09rem, calc(69.09rem + (100vw - 75rem) * 0.1317777778), 110.6rem), 7%, 0);
}

.js-pc-slider .is-first-half[data-counthalf="8"] .pc-slider__container {
  -webkit-transform: translate3d(clamp(78.96rem, calc(78.96rem + (100vw - 75rem) * 0.1317777778), 126.4rem), 7%, 0);
          transform: translate3d(clamp(78.96rem, calc(78.96rem + (100vw - 75rem) * 0.1317777778), 126.4rem), 7%, 0);
}

.js-pc-slider .is-first-half[data-counthalf="9"] .pc-slider__container {
  -webkit-transform: translate3d(clamp(88.83rem, calc(88.83rem + (100vw - 75rem) * 0.1317777778), 142.2rem), 7%, 0);
          transform: translate3d(clamp(88.83rem, calc(88.83rem + (100vw - 75rem) * 0.1317777778), 142.2rem), 7%, 0);
}

.js-pc-slider .is-first-half[data-counthalf="10"] .pc-slider__container {
  -webkit-transform: translate3d(clamp(98.7rem, calc(98.7rem + (100vw - 75rem) * 0.1317777778), 158rem), 7%, 0);
          transform: translate3d(clamp(98.7rem, calc(98.7rem + (100vw - 75rem) * 0.1317777778), 158rem), 7%, 0);
}

.js-pc-slider .is-second-half[data-counthalf="1"] .pc-slider__container {
  -webkit-transform: translate3d(calc((clamp(9.87rem, calc(9.87rem + (100vw - 75rem) * 0.1317777778), 15.8rem)) * -1), 7%, 0);
          transform: translate3d(calc((clamp(9.87rem, calc(9.87rem + (100vw - 75rem) * 0.1317777778), 15.8rem)) * -1), 7%, 0);
}

.js-pc-slider .is-second-half[data-counthalf="2"] .pc-slider__container {
  -webkit-transform: translate3d(calc((clamp(19.74rem, calc(19.74rem + (100vw - 75rem) * 0.1317777778), 31.6rem)) * -1), 7%, 0);
          transform: translate3d(calc((clamp(19.74rem, calc(19.74rem + (100vw - 75rem) * 0.1317777778), 31.6rem)) * -1), 7%, 0);
}

.js-pc-slider .is-second-half[data-counthalf="3"] .pc-slider__container {
  -webkit-transform: translate3d(calc((clamp(29.61rem, calc(29.61rem + (100vw - 75rem) * 0.1317777778), 47.4rem)) * -1), 7%, 0);
          transform: translate3d(calc((clamp(29.61rem, calc(29.61rem + (100vw - 75rem) * 0.1317777778), 47.4rem)) * -1), 7%, 0);
}

.js-pc-slider .is-second-half[data-counthalf="4"] .pc-slider__container {
  -webkit-transform: translate3d(calc((clamp(39.48rem, calc(39.48rem + (100vw - 75rem) * 0.1317777778), 63.2rem)) * -1), 7%, 0);
          transform: translate3d(calc((clamp(39.48rem, calc(39.48rem + (100vw - 75rem) * 0.1317777778), 63.2rem)) * -1), 7%, 0);
}

.js-pc-slider .is-second-half[data-counthalf="5"] .pc-slider__container {
  -webkit-transform: translate3d(calc((clamp(49.35rem, calc(49.35rem + (100vw - 75rem) * 0.1317777778), 79rem)) * -1), 7%, 0);
          transform: translate3d(calc((clamp(49.35rem, calc(49.35rem + (100vw - 75rem) * 0.1317777778), 79rem)) * -1), 7%, 0);
}

.js-pc-slider .is-second-half[data-counthalf="6"] .pc-slider__container {
  -webkit-transform: translate3d(calc((clamp(59.22rem, calc(59.22rem + (100vw - 75rem) * 0.1317777778), 94.8rem)) * -1), 7%, 0);
          transform: translate3d(calc((clamp(59.22rem, calc(59.22rem + (100vw - 75rem) * 0.1317777778), 94.8rem)) * -1), 7%, 0);
}

.js-pc-slider .is-second-half[data-counthalf="7"] .pc-slider__container {
  -webkit-transform: translate3d(calc((clamp(69.09rem, calc(69.09rem + (100vw - 75rem) * 0.1317777778), 110.6rem)) * -1), 7%, 0);
          transform: translate3d(calc((clamp(69.09rem, calc(69.09rem + (100vw - 75rem) * 0.1317777778), 110.6rem)) * -1), 7%, 0);
}

.js-pc-slider .is-second-half[data-counthalf="8"] .pc-slider__container {
  -webkit-transform: translate3d(calc((clamp(78.96rem, calc(78.96rem + (100vw - 75rem) * 0.1317777778), 126.4rem)) * -1), 7%, 0);
          transform: translate3d(calc((clamp(78.96rem, calc(78.96rem + (100vw - 75rem) * 0.1317777778), 126.4rem)) * -1), 7%, 0);
}

.js-pc-slider .is-second-half[data-counthalf="9"] .pc-slider__container {
  -webkit-transform: translate3d(calc((clamp(88.83rem, calc(88.83rem + (100vw - 75rem) * 0.1317777778), 142.2rem)) * -1), 7%, 0);
          transform: translate3d(calc((clamp(88.83rem, calc(88.83rem + (100vw - 75rem) * 0.1317777778), 142.2rem)) * -1), 7%, 0);
}

.js-pc-slider .is-second-half[data-counthalf="10"] .pc-slider__container {
  -webkit-transform: translate3d(calc((clamp(98.7rem, calc(98.7rem + (100vw - 75rem) * 0.1317777778), 158rem)) * -1), 7%, 0);
          transform: translate3d(calc((clamp(98.7rem, calc(98.7rem + (100vw - 75rem) * 0.1317777778), 158rem)) * -1), 7%, 0);
}

@media screen and (max-width: 480px) {
  .sp-slider {
    display: block;
    padding-left: 8.8vw;
    position: relative;
  }
  .sp-slider__img {
    aspect-ratio: 693/392;
  }
  .sp-slider__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
  .sp-slider__cap {
    margin-top: 1.3333333333vw;
    opacity: 0;
    -webkit-transition: opacity 2s;
    transition: opacity 2s;
  }
  .swiper-slide-active .sp-slider__cap {
    display: block;
    opacity: 1;
  }
  .sp-slider__cap p {
    font-size: 3.2vw;
    padding-left: 3.0666666667vw;
  }
  .sp-slider__prev.swiper-button-prev,
  .sp-slider__next.swiper-button-next {
    position: absolute;
    top: auto;
    bottom: -40vw;
    color: transparent;
    background-image: url(../images/top/slider_arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 6.6666666667vw;
    width: 14vw;
  }
  .sp-slider__prev.swiper-button-prev {
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
    left: 7.7333333333vw;
  }
  .sp-slider__next.swiper-button-next {
    right: 7.7333333333vw;
  }
}
@media screen and (max-width: 480px) {
  .sp-thumbnail {
    width: 100%;
  }
  .sp-thumbnail__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  .sp-thumbnail__item {
    aspect-ratio: 190/150;
  }
  .sp-thumbnail__item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
}
.fixed-button {
  position: fixed;
  z-index: 1001;
  right: 0;
  top: 70%;
}

.fixed-button a {
  display: block;
  aspect-ratio: 186/135;
  width: 11.625rem;
}

.fixed-button a img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 480px) {
  .fixed-button {
    position: fixed;
    top: auto;
    bottom: 0;
    z-index: 1000;
    width: 100%;
  }
  .fixed-button a {
    width: 100%;
    aspect-ratio: 480/103;
  }
}
.kura-fv__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.kura-fv__body {
  width: 28.75%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.kura-fv__title-area {
  padding-top: 3.25rem;
  padding-bottom: 3.4375rem;
  padding-left: clamp(28px, 28px + 56 * (100vw - 1200px) / 365, 84px);
  background-color: #f4f2ee;
  position: relative;
}

.kura-fv__title-area::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0.0625rem;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  width: 17%;
  height: 100%;
  background-color: #f4f2ee;
}

.kura-fv__title-en {
  font-size: 1.875rem;
  color: #92b497;
  line-height: 1;
}

.kura-fv__title-jp {
  font-size: clamp(38px, 38px + 8 * (100vw - 1200px) / 365, 46px);
  font-weight: var(--regular);
  line-height: 1.15;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  letter-spacing: 0.03em;
  margin-top: 0.625rem;
}

.kura-fv__text {
  padding-left: clamp(28px, 28px + 56 * (100vw - 1200px) / 365, 84px);
  margin-top: 1.875rem;
}

.kura-fv__text p {
  font-size: 1.125rem;
  line-height: 2;
}

.kura-fv__image {
  width: 72.15%;
  aspect-ratio: 2242/1126;
  margin-top: 2.125rem;
}

.kura-fv__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

@media screen and (max-width: 480px) {
  .kura-fv__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    -webkit-column-gap: 2.4375rem;
       -moz-column-gap: 2.4375rem;
            column-gap: 2.4375rem;
  }
  .kura-fv__body {
    width: 100%;
    position: relative;
  }
  .kura-fv__title-area {
    padding-top: 4.8vw;
    padding-bottom: 4.5333333333vw;
    padding-left: 6.9333333333vw;
    padding-right: 4vw;
    max-width: 60%;
    width: 100%;
    margin-top: -17.0666666667vw;
  }
  .kura-fv__title-area::after {
    display: none;
  }
  .kura-fv__title-en {
    font-size: 4vw;
  }
  .kura-fv__title-jp {
    font-size: 6.1333333333vw;
    margin-top: 1.3333333333vw;
  }
  .kura-fv__text {
    padding-left: 9.7333333333vw;
    padding-right: 9.7333333333vw;
    margin-top: 7.4666666667vw;
  }
  .kura-fv__text p {
    font-size: 3.7333333333vw;
    line-height: 1.9;
  }
  .kura-fv__image {
    width: 100%;
    height: 83.7333333333vw;
    aspect-ratio: 760/628;
    margin-top: 0;
  }
  .kura-fv__image img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.about {
  position: relative;
  z-index: 0;
}

.about::after {
  content: "";
  position: absolute;
  top: 35%;
  left: 0;
  width: 100%;
  height: 26.5175rem;
  background-color: #f7faec;
  z-index: -1;
}

.about__container {
  position: relative;
  z-index: 0;
}

.about__title-area {
  display: inline-block;
  position: relative;
}

.about__title-area::before {
  content: "";
  position: absolute;
  top: -29%;
  left: -12.9%;
  width: 11.85875rem;
  height: 8.42125rem;
  background-color: #f5ffd6;
  z-index: -1;
}

.about__title-area::after {
  content: "";
  position: absolute;
  top: -44.5%;
  left: -15.7%;
  width: 11.85875rem;
  height: 8.42125rem;
  background-color: #f4f6ee;
  z-index: -2;
}

.about__catch {
  font-size: 1.875rem;
  color: #282828;
}

.about__title {
  font-size: 3.25rem;
  font-weight: var(--regular);
  margin-top: -0.9375rem;
  line-height: 1.6;
  color: #282828;
}

.about__title .text_l {
  font-size: 5rem;
  color: #4a8900;
  font-weight: var(--regular);
}

.about__title .text_s {
  font-size: 2.25rem;
}

.about__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 5.6875rem;
}

.about__text {
  width: 40%;
}

.about__text p {
  font-size: 1.125rem;
  line-height: 2;
  color: #282828;
}

.about__img {
  aspect-ratio: 744/446;
  position: absolute;
  width: clamp(680px, 680px + 256 * (100vw - 1200px) / 365, 936px);
  top: 8.5625rem;
  right: 0;
}

.about__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.about__items {
  margin-top: 15.4375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.9375rem;
     -moz-column-gap: 0.9375rem;
          column-gap: 0.9375rem;
}

.about__item {
  max-width: 20.625rem;
  width: 100%;
}

.about__item-img {
  aspect-ratio: 660/804;
  width: 100%;
}

.about__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.about__item-cap {
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  margin-top: 0.5625rem;
  color: #282828;
}

@media screen and (max-width: 480px) {
  .about {
    position: relative;
    z-index: 0;
  }
  .about::after {
    top: 25%;
    height: 51.3333333333vw;
  }
  .about__title-area::before {
    top: -28%;
    left: -7.5%;
    width: 25.2986666667vw;
    height: 17.9653333333vw;
  }
  .about__title-area::after {
    top: -44.5%;
    left: -10.5%;
    width: 25.2986666667vw;
    height: 17.9653333333vw;
  }
  .about__catch {
    font-size: 4vw;
  }
  .about__title {
    font-size: 6.6666666667vw;
    margin-top: -1.3333333333vw;
    -webkit-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
    letter-spacing: -0.03em;
  }
  .about__title .text_l {
    font-size: 10.6666666667vw;
  }
  .about__title .text_s {
    font-size: 4.8vw;
  }
  .about__content {
    display: block;
    margin-top: 10.9333333333vw;
  }
  .about__text {
    width: 100%;
  }
  .about__text p {
    font-size: 3.7333333333vw;
    line-height: 1.9;
  }
  .about__img {
    aspect-ratio: 744/446;
    position: static;
    width: 100vw;
    margin: 8.1333333333vw calc(50% - 50vw) 0;
    padding: 0 2.6666666667vw;
  }
  .about__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    display: block;
  }
  .about__items {
    margin-top: 11.8666666667vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 1.4666666667vw;
       -moz-column-gap: 1.4666666667vw;
            column-gap: 1.4666666667vw;
    margin-right: calc(50% - 50vw);
  }
  .about__item {
    max-width: 50%;
    width: 100%;
  }
  .about__item-img {
    aspect-ratio: 660/804;
    width: 100%;
  }
  .about__item-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
  .about__item-cap {
    text-align: center;
    font-size: clamp(0.625rem, 2.4vw, 1.125rem);
    line-height: 1.6666666667;
    margin-top: 0.6666666667vw;
  }
}
.space__inner.inner {
  max-width: 84.375rem;
}

.k-content {
  position: relative;
  z-index: 0;
}

.k-content::after {
  content: "";
  width: 100%;
  height: 14.730625rem;
  position: absolute;
  top: 38%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  z-index: -1;
}

.k-content--space::after {
  background-color: #f0f6f1;
}

.k-content--housework::after {
  background-color: #f5f2ea;
}

.k-content--living::after {
  background-color: #fffae7;
}

.k-content--security::after {
  background-color: #f7f7f7;
}

.k-content--environment::after {
  background-color: #eaf2f6;
  top: 28%;
}

.k-content__sub-area {
  margin-top: 6.25rem;
}

.k-content__sub-area--environment {
  margin-top: 7.5rem;
}

.k-content__long-unit {
  margin-top: 2.6875rem;
}

.k-content__long-unit--environment {
  margin-top: 6.9375rem;
}

.k-content__two-unit {
  margin-top: 2.8125rem;
}

.k-content__one-unit {
  margin-top: 2.6875rem;
}

@media screen and (max-width: 480px) {
  .k-content::after {
    height: 80.2666666667vw;
    top: 16%;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .k-content--environment::after {
    height: 57.4666666667vw;
    top: 12.5%;
  }
  .k-content__sub-area {
    margin-top: 7.2vw;
  }
  .k-content__long-unit {
    margin-top: 10.5333333333vw;
  }
  .k-content__long-unit--environment {
    margin-top: 7.6vw;
  }
  .k-content__two-unit {
    margin-top: 10.5333333333vw;
  }
  .k-content__one-unit {
    margin-top: 10.5333333333vw;
  }
}
.title-unit__inner.inner {
  max-width: 90rem;
}

.title-unit__content {
  display: grid;
  grid-template-columns: 67.6% 29%;
  -webkit-column-gap: 3.4375rem;
     -moz-column-gap: 3.4375rem;
          column-gap: 3.4375rem;
}

.title-unit__wrap {
  position: relative;
}

.title-unit__title-box {
  width: 13.125rem;
  height: 13.125rem;
  display: grid;
  place-items: center;
  position: absolute;
  top: -13%;
  left: 0;
}

.title-unit__title-box--space {
  background-color: #4a654e;
}

.title-unit__title-box--housework {
  background-color: #736950;
}

.title-unit__title-box--living {
  background-color: #a37d21;
}

.title-unit__title-box--security {
  background-color: #616863;
}

.title-unit__title-box--environment {
  background-color: #00567c;
}

.title-unit__title {
  text-align: center;
  font-size: 1.875rem;
  line-height: 1.6;
  color: var(--white);
}

.title-unit__img {
  aspect-ratio: 844/474;
  margin-left: 6.125rem;
}

.title-unit__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.title-unit__heading-wrap {
  margin-top: 6.25rem;
}

.title-unit__heading-wrap--mt {
  margin-top: 3.6875rem;
}

.title-unit__heading {
  font-size: 2.125rem;
  line-height: 1.7647058824;
  font-weight: var(--regular);
  color: var(--black);
}

.title-unit__heading .text-cap {
  font-size: 1.125rem;
  vertical-align: text-top;
  display: inline-block;
  margin-top: 0.1875rem;
}

.title-unit__heading span {
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}

.title-unit__heading-cap {
  font-size: 0.75rem;
  line-height: 1.5;
  margin-top: 0.9375rem;
  padding-left: 1.5em;
  text-indent: -1.5em;
}

@media screen and (max-width: 480px) {
  .title-unit__content {
    display: grid;
    grid-template-columns: auto;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .title-unit__wrap {
    position: relative;
  }
  .title-unit__title-box {
    width: 28vw;
    height: 28vw;
    display: grid;
    place-items: center;
    position: absolute;
    top: -16%;
    left: -8.8vw;
  }
  .title-unit__title {
    font-size: 4vw;
  }
  .title-unit__img {
    aspect-ratio: 844/429;
    margin-right: calc(50% - 50vw);
    margin-left: 0;
  }
  .title-unit__heading-wrap {
    margin-top: 4.5333333333vw;
  }
  .title-unit__heading {
    font-size: 5.3333333333vw;
    line-height: 1.5;
  }
  .title-unit__heading .text-cap {
    font-size: 2.6666666667vw;
    margin-top: 1.0666666667vw;
  }
  .title-unit__heading span {
    -webkit-font-feature-settings: normal;
            font-feature-settings: normal;
  }
  .title-unit__heading-cap {
    font-size: 2.8vw;
    line-height: 1.4285714286;
    margin-top: 3.0666666667vw;
  }
}
.sub-unit__inner.inner {
  max-width: 80rem;
}

.sub-unit__content {
  display: grid;
  grid-template-columns: 23.4375rem 50%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-column-gap: 5.625rem;
     -moz-column-gap: 5.625rem;
          column-gap: 5.625rem;
}

.sub-unit__wrap {
  position: relative;
}

.sub-unit__box {
  width: 7.404375rem;
  height: 7.404375rem;
  display: grid;
  place-items: center;
  position: absolute;
  top: -9%;
  right: 0;
}

.sub-unit__box--space {
  background-color: #4a654e;
}

.sub-unit__box--housework {
  background-color: #736950;
}

.sub-unit__box--living {
  background-color: #a37d21;
}

.sub-unit__box--security {
  background-color: #616863;
}

.sub-unit__box--environment {
  background-color: #00567c;
}

.sub-unit__box p {
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--white);
  text-align: center;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  letter-spacing: 0.05em;
}

.sub-unit__box p span {
  font-size: 1rem;
}

.sub-unit__img {
  aspect-ratio: 600/380;
  margin-right: 0.9375rem;
}

.sub-unit__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.sub-unit__title-area {
  margin-top: 1.1875rem;
}

.sub-unit__title {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: var(--regular);
  color: #18291a;
}

.sub-unit__text {
  font-size: 1.125rem;
  line-height: 1.65;
  font-weight: var(--regular);
  color: var(--black);
  margin-top: 3.125rem;
}

@media screen and (max-width: 480px) {
  .sub-unit__content {
    display: grid;
    grid-template-columns: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .sub-unit__wrap {
    position: relative;
    grid-row: 1;
  }
  .sub-unit__box {
    width: 15.796vw;
    height: 15.796vw;
    display: grid;
    place-items: center;
    position: absolute;
    top: -9%;
    right: 0;
  }
  .sub-unit__box p {
    font-size: 3.2vw;
  }
  .sub-unit__box p span {
    font-size: 2.1333333333vw;
  }
  .sub-unit__img {
    aspect-ratio: 600/380;
    margin-right: 2.1333333333vw;
  }
  .sub-unit__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
  .sub-unit__title-area {
    margin-top: 4.4vw;
    grid-row: 2;
  }
  .sub-unit__title {
    font-size: 4vw;
    line-height: 1.6;
  }
  .sub-unit__text {
    font-size: 3.7333333333vw;
    line-height: 1.9;
    margin-top: 2.8vw;
    width: 100%;
  }
}
.long-unit__inner {
  max-width: 94.375rem;
}

.long-unit__content {
  display: grid;
  grid-template-columns: 59% 21.5625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 4.4375rem;
     -moz-column-gap: 4.4375rem;
          column-gap: 4.4375rem;
}

.long-unit__content--environment {
  grid-template-columns: 59% 25.625rem;
}

.long-unit__img {
  aspect-ratio: 1726/764;
}

.long-unit__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.long-unit__title-area {
  margin-top: 1.25rem;
}

.long-unit__title {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: var(--regular);
  color: #18291a;
}

.long-unit__text {
  font-size: 1.125rem;
  line-height: 1.65;
  font-weight: var(--regular);
  color: var(--black);
  margin-top: 2.125rem;
}

@media screen and (max-width: 480px) {
  .long-unit__content {
    display: grid;
    grid-template-columns: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .long-unit__img {
    margin: 0 calc(50% - 50vw);
  }
  .long-unit__title-area {
    margin-top: 3.3333333333vw;
  }
  .long-unit__title {
    font-size: 4vw;
    line-height: 1.6;
  }
  .long-unit__text {
    font-size: 3.7333333333vw;
    line-height: 1.9;
    margin-top: 2.8vw;
    width: 100%;
  }
}
.two-unit__inner.inner {
  max-width: 78.125rem;
}

.two-unit__content {
  display: grid;
  grid-template-columns: 56% auto;
}

.two-unit__imgs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 0.9375rem;
     -moz-column-gap: 0.9375rem;
          column-gap: 0.9375rem;
}

.two-unit__img {
  aspect-ratio: 660/804;
  max-width: 20.625rem;
}

.two-unit__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.two-unit__img--left {
  grid-column: 1;
}

.two-unit__img--right {
  grid-column: 2;
}

.two-unit__title-area {
  display: grid;
  place-items: center;
}

.two-unit__title-wrap {
  max-width: 25.3125rem;
}

.two-unit__title {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: var(--regular);
  color: #18291a;
}

.two-unit__text {
  font-size: 1.125rem;
  line-height: 1.65;
  font-weight: var(--regular);
  color: var(--black);
  margin-top: 2rem;
}

@media screen and (max-width: 480px) {
  .two-unit__inner.inner {
    max-width: 78.125rem;
  }
  .two-unit__content {
    display: grid;
    grid-template-columns: auto;
  }
  .two-unit__imgs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 2vw;
       -moz-column-gap: 2vw;
            column-gap: 2vw;
    margin-right: calc(50% - 50vw);
  }
  .two-unit__imgs--one {
    grid-template-columns: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-right: 0;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
  .two-unit__title-area {
    display: grid;
    place-items: center;
  }
  .two-unit__img--left {
    grid-column: auto;
  }
  .two-unit__img--right {
    grid-column: auto;
  }
  .two-unit__img--one {
    max-width: 44vw;
  }
  .two-unit__title-wrap {
    max-width: 100%;
    margin-top: 5.3333333333vw;
  }
  .two-unit__title {
    font-size: 4.2666666667vw;
    line-height: 1.6;
  }
  .two-unit__text {
    font-size: 3.7333333333vw;
    line-height: 1.9;
    margin-top: 2.8vw;
    width: 100%;
  }
}
.one-unit__inner.inner {
  max-width: 68.75rem;
}

.one-unit__content {
  display: grid;
  grid-template-columns: auto 25.3125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 4.6875rem;
     -moz-column-gap: 4.6875rem;
          column-gap: 4.6875rem;
}

.one-unit__img {
  aspect-ratio: 1200/760;
}

.one-unit__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.one-unit__title {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: var(--regular);
  color: #18291a;
}

.one-unit__text {
  font-size: 1.125rem;
  line-height: 1.65;
  font-weight: var(--regular);
  color: var(--black);
  margin-top: 2.125rem;
}

@media screen and (max-width: 480px) {
  .one-unit__content {
    grid-template-columns: auto;
  }
  .one-unit__img {
    width: 100%;
  }
  .one-unit__title-area {
    margin-top: 5.3333333333vw;
  }
  .one-unit__title {
    font-size: 4.2666666667vw;
    line-height: 1.5;
  }
  .one-unit__text {
    font-size: 3.7333333333vw;
    line-height: 1.9;
    margin-top: 2.8vw;
    width: 100%;
  }
}
.breadcrumbs {
  padding: 0 clamp(28px, 28px + 47 * (100vw - 1200px) / 365, 75px);
}

.breadcrumbs_lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.breadcrumbs_list {
  font-size: 0.6875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.breadcrumbs_list:not(:last-child) {
  margin-right: 0.25rem;
}

.breadcrumbs_list:not(:last-child)::after {
  content: ">";
  margin-left: 0.25rem;
}

.breadcrumbs_list a {
  -webkit-transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.breadcrumbs_list a:hover {
  opacity: 0.5;
}

@media screen and (max-width: 480px) {
  .breadcrumbs {
    padding: 0 4vw;
  }
  .breadcrumbs_list:not(:last-child) {
    margin-right: 0.5333333333vw;
  }
  .breadcrumbs_list:not(:last-child)::after {
    margin-left: 0.5333333333vw;
  }
}
.jiturei-fv__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.jiturei-fv__body {
  width: 27.75%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.jiturei-fv__title-area {
  padding-top: 3.25rem;
  padding-bottom: 3.4375rem;
  padding-left: clamp(28px, 28px + 56 * (100vw - 1200px) / 365, 84px);
  background-color: #dbe3dc;
  position: relative;
}

.jiturei-fv__title-area::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0.0625rem;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  width: 20%;
  height: 100%;
  background-color: #dbe3dc;
}

.jiturei-fv__title-en {
  font-size: 1.875rem;
  color: #92b497;
  line-height: 1;
}

.jiturei-fv__title-jp {
  font-size: clamp(38px, 38px + 8 * (100vw - 1200px) / 365, 46px);
  font-weight: var(--regular);
  line-height: 1.15;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  letter-spacing: 0.03em;
  margin-top: 0.625rem;
}

.jiturei-fv__text {
  padding-left: clamp(28px, 28px + 56 * (100vw - 1200px) / 365, 84px);
  margin-top: 1.875rem;
}

.jiturei-fv__text p {
  font-size: 1.125rem;
  line-height: 2;
}

.jiturei-fv__image {
  width: 72.15%;
  aspect-ratio: 2266/1042;
  margin-top: 5rem;
}

.jiturei-fv__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

@media screen and (max-width: 480px) {
  .jiturei-fv__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    -webkit-column-gap: 2.4375rem;
       -moz-column-gap: 2.4375rem;
            column-gap: 2.4375rem;
    position: relative;
  }
  .jiturei-fv__body {
    width: 100%;
    display: block;
  }
  .jiturei-fv__title-area {
    padding-top: 4.8vw;
    padding-bottom: 4.5333333333vw;
    padding-left: 6.9333333333vw;
    padding-right: 4vw;
    max-width: 60%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .jiturei-fv__title-area::after {
    display: none;
  }
  .jiturei-fv__title-en {
    font-size: 4vw;
  }
  .jiturei-fv__title-jp {
    font-size: 6.1333333333vw;
    margin-top: 1.3333333333vw;
  }
  .jiturei-fv__text {
    padding-left: 9.7333333333vw;
    padding-right: 9.7333333333vw;
    margin-top: 7.4666666667vw;
    position: relative;
  }
  .jiturei-fv__text p {
    font-size: 3.7333333333vw;
    line-height: 1.9;
  }
  .jiturei-fv__image {
    width: 100%;
    height: 76.1333333333vw;
    aspect-ratio: 677/571;
    margin-top: 10.4vw;
    padding-left: 8.8vw;
  }
}
.case {
  position: relative;
  z-index: 0;
}

.case::before {
  content: "";
  position: absolute;
  top: 14.5%;
  right: 0;
  width: 94%;
  height: 21.0625rem;
  background-color: #f0f6f1;
  z-index: -1;
}

.case__title {
  font-size: 2.125rem;
  line-height: 1.7647058824;
  font-weight: var(--regular);
  color: var(--black);
}

.case__content {
  display: grid;
  grid-template-columns: 54% 1fr;
  -webkit-column-gap: 7.375rem;
     -moz-column-gap: 7.375rem;
          column-gap: 7.375rem;
  margin-top: 3.5rem;
}

.case__large-img {
  aspect-ratio: 844/474;
}

.case__large-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.case__thumbnail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 2.1875rem;
     -moz-column-gap: 2.1875rem;
          column-gap: 2.1875rem;
  margin-top: 1.6875rem;
}

.case__thumbnail-img {
  aspect-ratio: 294/165;
}

.case__thumbnail-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.case__text {
  font-size: 1.125rem;
  line-height: 2;
  margin-top: 4.0625rem;
}

.case__button {
  margin-top: 3.4375rem;
}

@media screen and (max-width: 480px) {
  .case {
    position: relative;
    z-index: 0;
  }
  .case::before {
    content: "";
    position: absolute;
    top: 8%;
    left: 8.8vw;
    right: 0;
    width: 100%;
    height: 89%;
    background-color: #f0f6f1;
    z-index: -1;
  }
  .case__title {
    font-size: 5.3333333333vw;
    line-height: 1.5;
    padding-left: 2vw;
  }
  .case__content {
    grid-template-columns: auto;
    row-gap: 10.6666666667vw;
    margin-top: 7.8666666667vw;
  }
  .case__large-img {
    aspect-ratio: 750/475;
  }
  .case__large-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
  .case__body {
    padding-left: 8.8vw;
    padding-right: 8.8vw;
  }
  .case__thumbnail {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 2.1333333333vw;
       -moz-column-gap: 2.1333333333vw;
            column-gap: 2.1333333333vw;
    margin-top: 0;
  }
  .case__thumbnail-img {
    aspect-ratio: 294/165;
  }
  .case__thumbnail-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
  .case__text {
    font-size: 3.7333333333vw;
    line-height: 1.9;
    margin-top: 7.0666666667vw;
    padding-left: 2vw;
  }
  .case__button {
    margin-top: 13.3333333333vw;
    text-align: center;
  }
}
.j-content__item + .j-content__item {
  margin-top: 10.375rem;
}

@media screen and (max-width: 480px) {
  .j-content__item + .j-content__item {
    margin-top: 20.9333333333vw;
  }
}
.madori-fv__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 0;
}

.madori-fv__image::after {
  content: "";
  position: absolute;
  top: 13%;
  right: 0;
  width: 77.7%;
  height: 18.375rem;
  background-color: #fbfcf3;
  z-index: -2;
}

.madori-fv__body {
  width: 35%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.madori-fv__title-area {
  padding-top: 3.25rem;
  padding-bottom: 3.4375rem;
  padding-left: clamp(28px, 28px + 56 * (100vw - 1200px) / 365, 84px);
  background-color: #f1f8e8;
  min-height: 15.5625rem;
  position: relative;
  z-index: 1;
}

.madori-fv__title-en {
  font-size: 1.875rem;
  color: #92b497;
  line-height: 1;
}

.madori-fv__title-jp {
  font-size: clamp(38px, 38px + 8 * (100vw - 1200px) / 365, 46px);
  font-weight: var(--regular);
  line-height: 1.15;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  letter-spacing: 0.03em;
  margin-top: 0.625rem;
}

.madori-fv__text {
  padding-left: clamp(28px, 28px + 56 * (100vw - 1200px) / 365, 84px);
  margin-top: 1.875rem;
  z-index: 1;
}

.madori-fv__text p {
  font-size: 1.125rem;
  line-height: 2;
}

.madori-fv__image {
  width: 65%;
  aspect-ratio: 1764/656;
  margin-top: 2.9375rem;
}

.madori-fv__image img {
  width: 85%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: 2.8125rem;
}

@media screen and (max-width: 480px) {
  .madori-fv__image::after {
    top: 18%;
    width: calc(100% - 8.8vw);
    height: 39.2vw;
  }
  .madori-fv__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    -webkit-column-gap: 2.4375rem;
       -moz-column-gap: 2.4375rem;
            column-gap: 2.4375rem;
    position: relative;
  }
  .madori-fv__body {
    width: 100%;
    display: block;
  }
  .madori-fv__title-area {
    padding-top: 6.9333333333vw;
    padding-bottom: 4.5333333333vw;
    padding-left: 6.9333333333vw;
    padding-right: 4vw;
    max-width: 60%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    min-height: 28.2666666667vw;
  }
  .madori-fv__title-en {
    font-size: 4vw;
  }
  .madori-fv__title-jp {
    font-size: 6.1333333333vw;
    margin-top: 1.3333333333vw;
  }
  .madori-fv__text {
    padding-left: 9.7333333333vw;
    padding-right: 9.7333333333vw;
    margin-top: 5.4666666667vw;
    position: relative;
  }
  .madori-fv__text p {
    font-size: 3.7333333333vw;
    line-height: 1.9;
  }
  .madori-fv__image {
    width: 100%;
    margin-top: 40vw;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
    width: 100%;
    height: 46.4vw;
    padding-bottom: 3.3333333333vw;
  }
  .madori-fv__image img {
    display: inline-block;
    width: auto;
    height: 100%;
    max-width: none;
  }
}
.m-content__item + .m-content__item {
  margin-top: 7.25rem;
}

@media screen and (max-width: 767px) {
  .m-content__item + .m-content__item {
    margin-top: 15.4666666667vw;
  }
}
.plan__inner.inner {
  max-width: 90.625rem;
}

.plan__title-area {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.plan__title-img {
  aspect-ratio: 886/526;
  width: 27.25rem;
  z-index: 1;
}

.plan__title-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.plan__title-wrap {
  max-width: 61.5rem;
  width: 100%;
  margin-right: -7.4375rem;
  margin-top: 2.8125rem;
}

.plan__title {
  color: var(--white);
  font-weight: var(--regular);
  font-size: 2.375rem;
  background-color: #b9a05e;
  padding-top: 1.25rem;
  padding-bottom: 2.1875rem;
  padding-left: 6.25rem;
  padding-right: 9.375rem;
}

.plan__title span {
  display: block;
  font-size: 1.5rem;
  font-weight: var(--regular);
  color: #735500;
  text-transform: uppercase;
}

.plan__tags {
  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;
  -webkit-column-gap: 0.625rem;
     -moz-column-gap: 0.625rem;
          column-gap: 0.625rem;
  margin-top: 0.625rem;
  padding-left: 6.25rem;
  padding-right: 9.375rem;
}

.plan__tag {
  font-size: 1rem;
  color: #000;
}

.plan__content {
  max-width: 72.5rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-right: 1.8125rem;
  display: grid;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.plan__content--plan1 {
  grid-template-columns: 54.5% 39%;
  margin-top: 15.875rem;
}

.plan__content--plan2 {
  grid-template-columns: 59% 39%;
  margin-top: 15.875rem;
}

.plan__content--plan3 {
  grid-template-columns: 49.5% 39%;
  margin-top: 17.4375rem;
}

.plan__content--plan4 {
  grid-template-columns: 54% 35.5%;
  margin-top: 19.6875rem;
}

.plan__content--plan5 {
  grid-template-columns: 54.5% 35.5%;
  margin-top: 19.0625rem;
}

.plan__partial--plan1 {
  margin-top: 7.1875rem;
}

.plan__partial--plan2,
.plan__partial--plan3 {
  margin-top: 8.4375rem;
}

.plan__partial--plan4 {
  margin-top: 5.25rem;
}

.plan__partial--plan5 {
  margin-top: 6rem;
}

.plan__detail {
  max-width: 70.9375rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.plan__detail--plan2 {
  margin-top: 10.75rem;
}

.plan__detail--plan3 {
  margin-top: 5rem;
}

.plan__detail--plan4 {
  margin-top: 5.625rem;
}

.plan__detail--plan5 {
  margin-top: 4.5625rem;
}

.plan__info {
  margin-top: 2.875rem;
}

.plan__info-title {
  color: #656565;
  font-size: 1.375rem;
  font-weight: var(--medium);
}

.plan__info-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.4375rem;
     -moz-column-gap: 0.4375rem;
          column-gap: 0.4375rem;
  margin-top: 0.875rem;
}

.plan__info-item {
  aspect-ratio: 1/1;
  max-width: 2.875rem;
  width: 100%;
}

.plan__info-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.plan__info-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.1875rem;
     -moz-column-gap: 0.1875rem;
          column-gap: 0.1875rem;
  margin-top: 0.4375rem;
  padding: 0;
  -webkit-transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.plan__info-button:hover {
  opacity: 0.5;
}

.plan__info-button-img {
  aspect-ratio: 1/1;
  max-width: 1.125rem;
  width: 100%;
}

.plan__info-button-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.plan__info-button-text {
  font-size: 0.9375rem;
  color: #a4a4a4;
}

.plan__info-text {
  margin-top: 0.5625rem;
  color: #656565;
  font-size: 1.125rem;
  line-height: 2;
}

.plan__detail-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.plan__button {
  margin-top: 3.125rem;
  text-align: center;
}

.plan__button a {
  display: inline-block;
}

.plan__button-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.plan__button-img {
  aspect-ratio: 360/414;
  max-width: 7.625rem;
  width: 100%;
  margin-left: -1rem;
  z-index: 1;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.plan__button a:hover .plan__button-img {
  -webkit-transform: scale(1.12);
          transform: scale(1.12);
}

.plan__button-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.plan__button a:hover img {
  opacity: 1;
}

.plan__button-text {
  padding: 0.9375rem 1.5625rem;
  background-color: #f1f8e8;
  border: 1px solid #cbd7cd;
  font-size: 1.125rem;
  width: 22.8125rem;
  display: block;
  text-align: center;
  margin-top: 0.625rem;
}

@media screen and (max-width: 480px) {
  .plan__title-area {
    position: relative;
    margin: 0 calc(35% - 50vw);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .plan__title-img {
    aspect-ratio: 886/518;
    width: 59.0666666667vw;
    height: 33.8666666667vw;
    margin-bottom: 0;
  }
  .plan__title-wrap {
    padding-right: 8.8vw;
    margin-right: 0;
    margin-top: -2.6666666667vw;
  }
  .plan__title {
    font-size: 5.0666666667vw;
    padding-top: 4.1333333333vw;
    padding-bottom: 4.1333333333vw;
    padding-left: 24.4vw;
    padding-right: 8.8vw;
    text-align: left;
    width: 100%;
    min-height: 22.6666666667vw;
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .plan__title span {
    font-size: 4.2666666667vw;
  }
  .plan__tags {
    -webkit-column-gap: 3.3333333333vw;
       -moz-column-gap: 3.3333333333vw;
            column-gap: 3.3333333333vw;
    margin-top: 1.3333333333vw;
    padding-left: 24.4vw;
    padding-right: 8.8vw;
  }
  .plan__tag {
    font-size: 3.2vw;
  }
  .plan__content {
    margin-top: 5.7333333333vw;
    padding-right: 0;
    display: grid;
    grid-template-columns: auto;
    row-gap: 8vw;
  }
  .plan__partial {
    margin-top: 0;
  }
  .plan__detail {
    grid-template-columns: auto;
    row-gap: 10.5333333333vw;
    margin-top: 0;
  }
  .plan__info {
    margin-top: 0;
    grid-row: 2;
  }
  .plan__info-title {
    font-size: 4vw;
  }
  .plan__info-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 0.9333333333vw;
       -moz-column-gap: 0.9333333333vw;
            column-gap: 0.9333333333vw;
    margin-top: 3.6vw;
  }
  .plan__info-item {
    max-width: 6.1333333333vw;
    width: 100%;
  }
  .plan__info-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 0.1875rem;
       -moz-column-gap: 0.1875rem;
            column-gap: 0.1875rem;
    margin-top: 0.4375rem;
    padding: 0;
  }
  .plan__info-button-img {
    aspect-ratio: 1/1;
    max-width: 3.7333333333vw;
    width: 100%;
  }
  .plan__info-button-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    display: block;
  }
  .plan__info-button-text {
    font-size: 2.9333333333vw;
    color: #a4a4a4;
  }
  .plan__info-text {
    margin-top: 3.6vw;
    font-size: 3.2vw;
    line-height: 1.9;
  }
  .plan__detail-img {
    grid-row: 1;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 7.8666666667vw;
  }
  .plan__button {
    margin-top: 6.1333333333vw;
    text-align: center;
  }
  .plan__button a {
    width: 100%;
  }
  .plan__button-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 auto;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .plan__button-img {
    max-width: 16.2666666667vw;
    margin-left: -2.6666666667vw;
  }
  .plan__button-text {
    padding: 2.6666666667vw 3.3333333333vw;
    font-size: 3.2vw;
    width: 100%;
  }
}
.overall {
  position: relative;
}

.overall__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

@media screen and (max-width: 480px) {
  .overall__point2 {
    margin-top: 8.6666666667vw;
  }
  .overall__img {
    margin-top: 5.4666666667vw;
  }
}
.point-box {
  max-width: 32.125rem;
  width: 100%;
  min-height: 7.75rem;
  padding: 0.875rem 1.25rem;
  border: 3px solid #c6b17c;
  display: grid;
  place-items: center;
  background-color: #fff;
  z-index: 1;
}

@media screen and (max-width: 480px) {
  .point-box {
    min-height: 24vw;
    max-width: 100%;
    width: 100%;
    padding: 3.0666666667vw 3.0666666667vw;
    border: 0.09375rem solid #c6b17c;
  }
}
.point-text {
  font-size: 1.125rem;
  line-height: 2;
  font-weight: var(--regular);
}

@media screen and (max-width: 480px) {
  .point-text {
    font-size: 3.7333333333vw;
    line-height: 1.9;
  }
}
.partial {
  position: relative;
}

.partial__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

@media screen and (max-width: 480px) {
  .partial__img {
    margin-top: 11.0666666667vw;
    margin-left: auto;
    margin-right: auto;
    width: 71%;
  }
}
.point1 {
  position: absolute;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  top: -3.5625rem;
  left: 1.4375rem;
}

.point1--plan3 {
  top: -5.0625rem;
}

.point1--plan4 {
  top: -7.5rem;
}

.point1--plan5 {
  top: -6.6875rem;
}

.point1__line-area {
  position: absolute;
  top: 100%;
}

.point1--plan1 .point1__line-area {
  left: 6.1875rem;
}

.point1--plan2 .point1__line-area {
  left: 16rem;
}

.point1--plan3 .point1__line-area {
  left: 10.625rem;
}

.point1--plan4 .point1__line-area {
  left: 17.3125rem;
}

.point1--plan5 .point1__line-area {
  left: 13.625rem;
}

.point1__line-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.point1__line {
  width: 3px;
  background-color: #c6b17c;
}

.point1--plan1 .point1__line {
  height: 30.5rem;
}

.point1--plan2 .point1__line {
  height: 22.5rem;
}

.point1--plan3 .point1__line {
  height: 26.25rem;
}

.point1--plan4 .point1__line {
  height: 15.3125rem;
}

.point1--plan5 .point1__line {
  height: 29.875rem;
}

.point1__icon {
  width: 2.75rem;
  height: 2.75rem;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.point1__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

@media screen and (max-width: 480px) {
  .point1 {
    position: relative;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    top: auto;
    left: 0;
  }
  .point1__line-area {
    position: absolute;
    top: 100%;
  }
  .point1--plan1 .point1__line-area {
    left: 16vw;
  }
  .point1--plan2 .point1__line-area {
    left: 33.4666666667vw;
  }
  .point1--plan3 .point1__line-area {
    left: 28vw;
  }
  .point1--plan4 .point1__line-area {
    left: 39.6vw;
  }
  .point1--plan5 .point1__line-area {
    left: 32vw;
  }
  .point1__line-unit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
  .point1__line {
    width: 0.09375rem;
    background-color: #c6b17c;
  }
  .point1--plan1 .point1__line {
    height: 62.6666666667vw;
  }
  .point1--plan2 .point1__line {
    height: 42vw;
  }
  .point1--plan3 .point1__line {
    height: 56vw;
  }
  .point1--plan4 .point1__line {
    height: 22vw;
  }
  .point1--plan5 .point1__line {
    height: 54.4vw;
  }
  .point1__icon {
    width: 5.8666666667vw;
    height: 5.8666666667vw;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.point2 {
  position: absolute;
}

.point2--plan1 {
  top: 38.8125rem;
  right: -33.3125rem;
}

.point2--plan2 {
  top: 38.8125rem;
  right: -30.1875rem;
}

.point2--plan3 {
  top: 37.4375rem;
  right: -36.9375rem;
}

.point2--plan4 {
  top: 35rem;
  right: -33.75rem;
}

.point2--plan5 {
  top: 35.8125rem;
  right: -33.3125rem;
}

.point2__line-area {
  position: absolute;
}

.point2--plan1 .point2__line-area {
  top: -11.625rem;
  left: -16.1875rem;
}

.point2--plan2 .point2__line-area {
  top: -16.4375rem;
  left: -10.5rem;
}

.point2--plan3 .point2__line-area {
  top: -18.1875rem;
  left: -22.375rem;
}

.point2--plan4 .point2__line-area {
  top: -10.25rem;
  left: -15.875rem;
}

.point2--plan5 .point2__line-area {
  top: -16.1875rem;
  left: -18rem;
}

.point2__line-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.point2__icon {
  width: 2.75rem;
  height: 2.75rem;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.point2__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.point2__line {
  display: inline-block;
  background-color: #c6b17c;
  height: 3px;
}

.point2--plan1 .point2__line {
  width: 14.53125rem;
}

.point2--plan2 .point2__line {
  width: 8.875rem;
}

.point2--plan3 .point2__line {
  width: 20.75rem;
}

.point2--plan4 .point2__line {
  width: 14.375rem;
}

.point2--plan5 .point2__line {
  width: 16.375rem;
}

.point2__line-sub {
  position: absolute;
  top: 1.375rem;
  right: 0;
  width: 3px;
  background-color: #c6b17c;
}

.point2--plan1 .point2__line-sub {
  height: 10.375rem;
}

.point2--plan2 .point2__line-sub {
  height: 15.25rem;
}

.point2--plan3 .point2__line-sub {
  height: 16.875rem;
}

.point2--plan4 .point2__line-sub {
  height: 9rem;
}

.point2--plan5 .point2__line-sub {
  height: 14.9375rem;
}

@media screen and (max-width: 480px) {
  .point2 {
    position: relative;
    top: auto;
    right: 0;
  }
  .point2__line-area {
    position: absolute;
    bottom: 100%;
    left: 50vw;
  }
  .point2--plan1 .point2__line-area {
    top: auto;
    left: 50vw;
  }
  .point2--plan2 .point2__line-area {
    top: auto;
    left: 58.6666666667vw;
  }
  .point2--plan3 .point2__line-area {
    top: auto;
    left: 41.0666666667vw;
  }
  .point2--plan4 .point2__line-area {
    top: auto;
    left: 51.4666666667vw;
  }
  .point2--plan5 .point2__line-area {
    top: auto;
    left: 45.6vw;
  }
  .point2__line-unit {
    -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;
    position: relative;
  }
  .point2__icon {
    width: 5.8666666667vw;
    height: 5.8666666667vw;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .point2--plan1 .point2__line {
    width: 0.09375rem;
    height: 61.0666666667vw;
  }
  .point2--plan2 .point2__line {
    width: 0.09375rem;
    height: 44.2666666667vw;
  }
  .point2--plan3 .point2__line {
    width: 0.09375rem;
    height: 72vw;
  }
  .point2--plan4 .point2__line {
    width: 0.09375rem;
    height: 44.5333333333vw;
  }
  .point2--plan5 .point2__line {
    width: 0.09375rem;
    height: 65.0666666667vw;
  }
  .point2__line-sub {
    display: none;
  }
}
.point3 {
  position: absolute;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  left: -3.1875rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: block;
}

.point3--plan1 {
  top: -6.125rem;
}

.point3--plan2 {
  top: -7.375rem;
}

.point3--plan3 {
  top: -8.9375rem;
}

.point3--plan4 {
  top: -8.125rem;
  left: -5.6875rem;
}

.point3--plan5 {
  top: -8.125rem;
  left: -5.6875rem;
}

.point3__line-area {
  position: absolute;
  top: 100%;
  left: 15.9375rem;
}

.point3--plan2 .point3__line-area {
  left: 16.75rem;
}

.point3--plan3 .point3__line-area {
  top: 20.125rem;
  left: -15.75rem;
}

.point3--plan4 .point3__line-area:nth-of-type(1) {
  left: 18.5625rem;
}

.point3--plan4 .point3__line-area:nth-of-type(2) {
  left: 24.125rem;
}

.point3--plan5 .point3__line-area {
  left: 6.8125rem;
}

.point3__line-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.point3--plan3 .point3__line-unit {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.point3__line {
  width: 3px;
  height: 9.125rem;
  background-color: #c6b17c;
}

.point3--plan2 .point3__line {
  height: 11.4375rem;
}

.point3--plan3 .point3__line {
  width: 31rem;
  height: 3px;
}

.point3--plan3 .point3__line-sub {
  position: absolute;
  bottom: 1.375rem;
  right: 0;
  height: 12.8125rem;
  width: 3px;
  background-color: #c6b17c;
}

.point3--plan3 .point3__line-accent {
  display: none;
}

.point3--plan4 .point3__line {
  height: 10.8125rem;
}

.point3--plan5 .point3__line {
  height: 11rem;
}

.point3__icon {
  width: 2.75rem;
  height: 2.75rem;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.point3__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

@media screen and (max-width: 480px) {
  .point3 {
    position: relative;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    top: auto;
    left: 0;
    width: auto;
    display: block;
  }
  .point3__line-area {
    position: absolute;
    top: 100%;
  }
  .point3--plan1 .point3__line-area {
    left: 39.2vw;
  }
  .point3--plan2 .point3__line-area {
    left: 40vw;
  }
  .point3--plan3 .point3__line-area {
    left: auto;
    right: -4vw;
    top: -133.3333333333vw;
  }
  .point3--plan4 .point3__line-area:nth-of-type(1) {
    left: 42.2666666667vw;
  }
  .point3--plan4 .point3__line-area:nth-of-type(2) {
    left: 55.4666666667vw;
  }
  .point3--plan5 .point3__line-area {
    left: 14vw;
  }
  .point3__line-unit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
  .point3__line {
    width: 0.09375rem;
    height: 16.8vw;
    background-color: #c6b17c;
  }
  .point3--plan2 .point3__line {
    height: 19.0666666667vw;
  }
  .point3--plan3 .point3__line {
    width: 23.4666666667vw;
    height: 0.09375rem;
  }
  .point3--plan3 .point3__line-sub {
    position: absolute;
    bottom: auto;
    top: 2.9333333333vw;
    right: 0;
    height: 146.6666666667vw;
    width: 0.09375rem;
    background-color: #c6b17c;
  }
  .point3--plan3 .point3__line-accent {
    display: block;
    position: absolute;
    top: 149.6vw;
    right: 0;
    height: 0.09375rem;
    width: 4vw;
    background-color: #c6b17c;
  }
  .point3--plan4 .point3__line {
    height: 17.7333333333vw;
  }
  .point3--plan5 .point3__line {
    height: 18.6666666667vw;
  }
  .point3__icon {
    width: 5.8666666667vw;
    height: 5.8666666667vw;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.plan-modal {
  border: none;
  padding: 0;
  background: transparent;
  width: 100%;
}

.plan-modal:modal {
  display: block;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

/* backdrop */
.plan-modal::-ms-backdrop {
  background: rgba(255, 255, 255, 0);
  -ms-transition: background 0.3s cubic-bezier(0.33, 1, 0.68, 1);
  transition: background 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}
.plan-modal::backdrop {
  background: rgba(255, 255, 255, 0);
  -webkit-transition: background 0.3s cubic-bezier(0.33, 1, 0.68, 1);
  transition: background 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.plan-modal.is-open::-ms-backdrop {
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

.plan-modal.is-open::backdrop {
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

.plan-modal__container {
  background: var(--white);
  border: 1px solid #e1e1e1;
  opacity: 0;
  -webkit-transition: opacity 0.3s cubic-bezier(0.33, 1, 0.68, 1);
  transition: opacity 0.3s cubic-bezier(0.33, 1, 0.68, 1);
  will-change: opacity;
  max-width: 68.75rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.plan__modal.is-open .plan-modal__container {
  opacity: 1;
}

.plan-modal__close {
  display: block;
  background: transparent;
  border: 0;
  padding: 0;
  position: absolute;
  right: 0.9375rem;
  top: 0.9375rem;
  width: 1.875rem;
  height: 1.875rem;
  aspect-ratio: 1/1;
  cursor: pointer;
}

.plan-modal__close img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.plan-modal__content {
  padding: 2.8125rem 3.125rem;
}

.plan-modal__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 2.1875rem;
  -webkit-column-gap: 1.5625rem;
     -moz-column-gap: 1.5625rem;
          column-gap: 1.5625rem;
}

.plan-modal__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.75rem;
     -moz-column-gap: 0.75rem;
          column-gap: 0.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.plan-modal__item-img {
  aspect-ratio: 1/1;
  max-width: 1.875rem;
  width: 100%;
}

.plan-modal__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.plan-modal__item-text {
  font-size: 0.9375rem;
  color: #656565;
  line-height: 1.2;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}

@media screen and (max-width: 480px) {
  .plan-modal {
    padding: 0 3.3333333333vw;
  }
  .plan-modal__close {
    position: absolute;
    top: 2.6666666667vw;
    right: 3.0666666667vw;
    width: 6.5333333333vw;
    height: 6.5333333333vw;
  }
  .plan-modal__content {
    padding: 12.8vw 3.3333333333vw 8.4vw;
  }
  .plan-modal__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 6vw;
    -webkit-column-gap: 5.3333333333vw;
       -moz-column-gap: 5.3333333333vw;
            column-gap: 5.3333333333vw;
  }
  .plan-modal__item {
    -webkit-column-gap: 2.1333333333vw;
       -moz-column-gap: 2.1333333333vw;
            column-gap: 2.1333333333vw;
  }
  .plan-modal__item-img {
    max-width: 6.2666666667vw;
  }
  .plan-modal__item-text {
    font-size: 3.0666666667vw;
    letter-spacing: 0.025em;
    -webkit-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
  }
}
.faq__title {
  text-align: center;
  font-size: 2.375rem;
  font-weight: var(--regular);
}

.faq__items {
  margin-top: 2.5rem;
}

.faq__item {
  border-bottom: 1px solid #ccc;
  padding: 0.9375rem 0;
}

.faq__heading {
  display: grid;
  list-style-type: none;
  grid-template-columns: 2.5rem 1fr 1.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  font-size: 1.25rem;
  cursor: pointer;
  list-style: none;
}
.faq__heading::-webkit-details-marker {
  display: none;
}
.faq__heading::marker {
  display: none;
}

.faq__heading:before {
  content: "Q.";
}

.faq__heading-icon {
  display: block;
  position: relative;
  -webkit-transform-origin: center 43%;
          transform-origin: center 43%;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  width: 1.5rem;
}

.faq__heading-icon:before,
.faq__heading-icon:after {
  content: "";
  position: absolute;
  display: block;
  width: 14px;
  height: 2px;
  background-color: #000;
}

.faq__heading-icon:before {
  left: 0;
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
}

.faq__heading-icon:after {
  right: 0;
  -webkit-transform: rotate(-35deg);
          transform: rotate(-35deg);
}

.faq__content p {
  font-size: 1rem;
  padding: 1.25rem 0 0 2.5rem;
}

.faq__content-cap {
  font-size: 0.84375rem;
  display: block;
}

.faq__item[open] {
  border-bottom: 1px solid #000;
}

.faq__item[open] .faq__heading-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media screen and (max-width: 480px) {
  .faq__title {
    font-size: 6.4vw;
    line-height: 1.5;
  }
  .faq__items {
    margin-top: 6.6666666667vw;
  }
  .faq__item {
    padding: 3.2vw 0;
  }
  .faq__heading {
    font-size: 3.3333333333vw;
    grid-template-columns: 5.3333333333vw 1fr 0.875rem;
  }
  .faq__heading-icon {
    width: 0.875rem;
  }
  .faq__heading-icon:before,
  .faq__heading-icon:after {
    width: 0.5rem;
    height: 0.05625rem;
  }
  .faq__content p {
    font-size: 2.9333333333vw;
    padding: 2.6666666667vw 0 0 5.3333333333vw;
  }
  .faq__content-cap {
    font-size: 2.6666666667vw;
    display: block;
  }
  .faq__item[open] {
    border-bottom: 1px solid #000;
  }
  .faq__item[open] .faq__heading-icon {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}
.top-mv {
  margin-top: 90px;
}

@media screen and (max-width: 1149px) {
  .top-mv {
    margin-top: 50px;
  }
}
.top-toc {
  margin-top: 8.125rem;
}
@media screen and (max-width: 480px) {
  .top-toc {
    margin-top: 10.1333333333vw;
  }
}

.top-madori {
  margin-top: 5.5rem;
  padding-top: 6.0625rem;
}
@media screen and (max-width: 480px) {
  .top-madori {
    margin-top: 12.6666666667vw;
    padding-top: 13.7333333333vw;
  }
}

.top-jirei {
  margin-top: 12.125rem;
  padding-top: 6.75rem;
}
@media screen and (max-width: 480px) {
  .top-jirei {
    margin-top: 11.7333333333vw;
    padding-top: 13.7333333333vw;
  }
}

.top-kura {
  margin-top: 11.75rem;
  padding-top: 6.9375rem;
}
@media screen and (max-width: 480px) {
  .top-kura {
    margin-top: 13.3333333333vw;
    padding-top: 13.7333333333vw;
  }
}

/*=========================================================
//# top-detail
//========================================================*/
.top-detail {
  margin-top: 8.125rem;
  padding-top: 8.125rem;
}
@media screen and (max-width: 480px) {
  .top-detail {
    margin-top: 12vw;
    padding-top: 13.7333333333vw;
  }
}

.top-post {
  margin-top: 3.75rem;
}

@media screen and (max-width: 480px) {
  .top-post {
    margin-top: 0;
  }
}
.page-kura-fv {
  margin-top: 90px;
}

@media screen and (max-width: 1149px) {
  .page-kura-fv {
    margin-top: 50px;
  }
}
.page-about {
  margin-top: 11rem;
}
@media screen and (max-width: 480px) {
  .page-about {
    margin-top: 21.6vw;
  }
}

.page-space {
  padding-top: 3.8125rem;
  margin-top: 6.3125rem;
}
@media screen and (max-width: 480px) {
  .page-space {
    margin-top: 18.4vw;
    padding-top: 8vw;
  }
}

.page-housework {
  padding-top: 3.8125rem;
  margin-top: 10.75rem;
}

@media screen and (max-width: 480px) {
  .page-housework {
    padding-top: 8vw;
    margin-top: 20.5333333333vw;
  }
}
.page-living {
  padding-top: 3.8125rem;
  margin-top: 11.625rem;
}

@media screen and (max-width: 480px) {
  .page-living {
    padding-top: 8vw;
    margin-top: 20vw;
  }
}
.page-security {
  padding-top: 3.8125rem;
  margin-top: 11.375rem;
}
@media screen and (max-width: 480px) {
  .page-security {
    padding-top: 8vw;
    margin-top: 18.4vw;
  }
}

.page-environment {
  padding-top: 3.8125rem;
  margin-top: 11.1875rem;
}

@media screen and (max-width: 480px) {
  .page-environment {
    padding-top: 8vw;
    margin-top: 20vw;
  }
}
.page-present {
  margin-top: 10.9375rem;
}

@media screen and (max-width: 480px) {
  .page-present {
    margin-top: 13.3333333333vw;
  }
}
.top-breadcrumbs {
  margin-top: 2.5rem;
}

@media screen and (max-width: 480px) {
  .top-breadcrumbs {
    margin-top: 5.3333333333vw;
  }
}
.page-jiturei-fv {
  margin-top: 90px;
}

@media screen and (max-width: 1149px) {
  .page-jiturei-fv {
    margin-top: 50px;
  }
}
.page-j-content {
  margin-top: 4.5rem;
}

@media screen and (max-width: 480px) {
  .page-j-content {
    margin-top: 21.8666666667vw;
  }
}
.page-madori-fv {
  margin-top: 90px;
}

@media screen and (max-width: 1149px) {
  .page-madori-fv {
    margin-top: 50px;
  }
}
.page-m-content {
  margin-top: 11rem;
}

@media screen and (max-width: 480px) {
  .page-m-content {
    margin-top: 21.6vw;
  }
}
.top-faq {
  margin-top: 130px;
}

@media screen and (max-width: 480px) {
  .top-faq {
    margin-top: 24vw;
  }
}/*# sourceMappingURL=style.css.map */