@charset "UTF-8";
/*---------------------------------------------------------------------------------
CSS構成
// 編集は案件フォルダに格納しているSCSSで行う

// 絶対に変更しないCSS
- animate.min.css           animate.cssを利用するためのCSS ※基本触らない
- bootstrap.min.css         Bootstrapコンポーネントを利用するためのCSS ※基本触らない
- bootstrap-icons.min.css
- destyle.css               全てのブラウザ固有CSSをリセットするCSS ※基本触らない
- swiper.min.css            swiperを利用するためのCSS ※基本触らない

// メインで利用しているCSS
- common.css                SCSSを集約したCSS

// SCSS構成
- external                  外部ライブラリを上書きする
- foundation                基本の文字設定や、Webフォントの読み込みなど ※基本触らない
- global                    @mixin, @function, 変数など ※基本触らない
- layout                    各ページを構成する大枠のレイアウト ※基本触らない
- object                    パーツやブロック
    ├─component             繰り返し使用される小さな単位のパーツ
    ├─project               セクションや大きなブロック
    └─utility               補助的にcomponentやprojectを調整する（レスポンシブの表示切替用クラスなど）
---------------------------------------------------------------------------------*/
@import "yakuhanjp/dist/css/yakuhanjp.css";

/* ================================================================
external
================================================================ */
/* 
destyle-custom
---------------------------------------------------------------- */
*,
::before,
::after {
  min-width: initial;
}

/* 
bootstrap-custom
---------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
  font-size: initial;
  line-height: 1;
}

p {
  margin: 0;
}

address {
  margin: 0;
}

a {
  color: #000;
  text-decoration: none;
}

ul,
ol,
dl {
  padding: 0;
  margin: 0;
}

dt,
dd {
  margin: 0;
  font-weight: 400;
}

/* 
swiper-custom
---------------------------------------------------------------- */
.swiper-fade .swiper-slide {
  transition-property: opacity !important;
}

/* ================================================================
foundation
================================================================ */
/* 
base
---------------------------------------------------------------- */
html {
  overflow-x: hidden;
}

body {
  font-family: "YakuHanJP", "LINE Seed JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-size: clamp(1rem, 0.875rem + 0.2vw, 1.125rem);
  letter-spacing: 0.1em;
  line-height: 1.75;
  color: #27201a;
  font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
  background-color: #f8f7f3;
  overflow-x: hidden;
  background-color: #f8f7f3;
  background-image: url(../img/common/bg.png);
  background-repeat: repeat;
  background-size: 5%;
  background-position: initial;
}

p {
  line-height: 1.75;
}

div {
  line-height: 1;
}

span {
  display: inline-block;
}

a {
  display: inline-block;
  vertical-align: bottom;
  color: #27201a;
}

img,
picture,
svg {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

use {
  display: inline-block;
  width: 100%;
  height: auto;
}

ul,
ol,
dl {
  padding: 0;
  margin: 0;
}

/* 
.svg-sprites
---------------------------------------------------------------- */
.svg-sprites {
  display: block;
  width: 0;
  height: 0;
}

/* 
br
---------------------------------------------------------------- */
.smBr {
  display: none;
}

@media screen and (max-width: 575px) {
  .smBr {
    display: block;
  }
}

.mdBr {
  display: none;
}

@media screen and (max-width: 767px) {
  .mdBr {
    display: block;
  }
}

.lgBr {
  display: none;
}

@media screen and (max-width: 991px) {
  .lgBr {
    display: block;
  }
}

.xlBr {
  display: none;
}

@media screen and (max-width: 1199px) {
  .xlBr {
    display: block;
  }
}

.xxlBr {
  display: none;
}

@media screen and (max-width: 1399px) {
  .xxlBr {
    display: block;
  }
}

/* 
p
---------------------------------------------------------------- */
.marker {
  position: relative;
}

.marker::before {
  content: "";
  display: inline-block;
  width: 105%;
  height: 0.45em;
  background-color: #cae1bb;
  position: absolute;
  bottom: -0.1em;
  left: -2.5%;
  z-index: -10;
}

.bold {
  font-weight: 700;
}

.strong {
  font-weight: 700;
  font-size: clamp(1.25rem, 1.125rem + 0.3vw, 1.5rem);
}

p span {
  display: inline;
}

.color_green {
  color: #468b46;
}

/* 
form
---------------------------------------------------------------- */
form {
  font-size: clamp(1rem, 1rem + 0.1vw, 1.125rem);
}

input[type=text],
textarea,
select {
  width: 100%;
  padding: 0.3em 0.6em 0.4em 0.6em;
  border: 1px solid rgba(202, 202, 202, 0.7);
  border-radius: 0.2em;
  background-color: #f8f7f3;
  transition: border 0.2s, background-color 0.2s;
}

input[type=text]::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  color: #cacaca;
}

input[type=text]::placeholder,
textarea::placeholder,
select::placeholder {
  color: #cacaca;
}

input[type=text]:focus,
textarea:focus,
select:focus {
  outline: none;
  border: 1px solid #e2eadc;
  background-color: #f3f7ef;
}

.select {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}

.select select {
  padding: 0.3em 1.7em 0.4em 0.6em;
}

.select::before {
  content: "";
  width: 0;
  height: 0;
  margin: auto;
  border-width: 0.3em 0.3em 0 0.3em;
  border-style: solid;
  border-color: #27201a transparent transparent transparent;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0.6em;
  pointer-events: none;
}

input[type=radio] {
  width: 1em;
  aspect-ratio: 1/1;
  margin-bottom: 0.2em;
  border: 1px solid #cacaca;
  border-radius: 50%;
  position: relative;
  transition: border 0.3s, background-color 0.3s;
  cursor: pointer;
}

input[type=radio]::before {
  content: "";
  display: inline-block;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  background-color: #468b46;
  position: absolute;
  inset: 0;
  margin: auto;
  opacity: 0;
  visibility: hidden;
}

input[type=radio]:checked {
  border: 1px solid #468b46;
  background-color: #f3f7ef;
}

input[type=radio]:checked::before {
  opacity: 1;
  visibility: visible;
}

input[type=checkbox] {
  width: 1em;
  aspect-ratio: 1/1;
  margin-bottom: 0.3em;
  border: 1px solid #cacaca;
  border-radius: 0.1em;
  position: relative;
  transition: border 0.3s, background-color 0.3s;
}

input[type=checkbox]::before {
  content: "";
  display: inline-block;
  width: 0.7em;
  height: 0.4em;
  border-bottom: 0.15em solid #f8f7f3;
  border-left: 0.15em solid #f8f7f3;
  border-radius: 0.1em;
  rotate: -45deg;
  position: absolute;
  top: 0.15em;
  left: 0.1em;
  opacity: 0;
  visibility: hidden;
}

input[type=checkbox]:checked {
  background-color: #468b46;
  border-color: #468b46;
}

input[type=checkbox]:checked::before {
  opacity: 1;
  visibility: visible;
}

input[type=file] {
  line-height: 1.5;
  transition: filter 0.3s;
}

@media (hover: hover) {
  input[type=file]:hover {
    filter: brightness(0.9);
  }
}

textarea {
  resize: none;
}

@media (hover: hover) {

  input:not([type=file]):not([type=checkbox]):hover,
  select:hover,
  textarea:hover {
    border: 1px solid rgba(70, 139, 70, 0.6);
    background-color: #f3f7ef;
  }
}

.label-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5em 1.2em;
}

.label-wrap .label {
  width: -moz-max-content;
  width: max-content;
}

.red {
  font-size: clamp(0.875rem, 0.875rem + 0.1vw, 1rem);
  color: #468b46;
}

.birth-text {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  vertical-align: middle;
}

/* policy */
.policy {
  margin-top: 6em;
}

.policy .title {
  font-size: clamp(1.125rem, 1.125rem + 0.2vw, 1.375rem);
  text-align: center;
}

.policy .privacy-box {
  height: 20em;
  margin-top: 2em;
  border: 1px solid #cacaca;
  padding: 1em 1.6em;
  background-color: #f8f7f3;
  border-radius: 0.2em;
  font-size: clamp(0.875rem, 0.875rem + 0.1vw, 1rem);
  line-height: 1.5;
  overflow-y: scroll;
  overflow-x: clip;
}

.policy .privacy-box p {
  line-height: 1.5;
}

.policy .privacy-box p:not(:first-child) {
  margin-top: 1.5em;
}

.policy .privacy-box strong {
  line-height: 2;
}

.policy ul {
  margin-top: 0.8em;
}

.policy li {
  padding-left: 1em;
  position: relative;
  line-height: 1.5;
}

.policy li::before {
  content: "";
  display: inline-block;
  width: 0.2em;
  height: 0.2em;
  background-color: #27201a;
  border-radius: 50%;
  position: absolute;
  top: 0.65em;
  left: 0.3em;
}

.policy .link {
  color: #468b46;
  text-decoration: underline;
}

/* agree-box */
.agree-box {
  width: -moz-max-content;
  width: max-content;
  margin-top: 2em;
  margin-inline: auto;
  text-align: center;
}

/* button[type="submit"] */
.formBtn {
  text-align: center;
  margin-top: 2em;
}

button[type=submit] {
  padding: 1em;
  border: 1px solid #468b46;
  border-radius: 0.2em;
  transition: filter 0.3s;
}

button[type=submit].confirmation, button[type=submit].send {
  background-color: #468b46;
  color: #ffffff;
}

button[type=submit].back {
  background-color: #f8f7f3;
  color: #468b46;
}

@media (hover: hover) {
  button[type=submit]:hover {
    filter: brightness(0.8);
  }
}

/* ================================================================
layout
================================================================ */
/* .l-wrapper */
.l-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* .l-header */
.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
}

/* .l-main */
.l-main {
  /* l-main内の要素が存在しない場合、
     親要素のサイズをl-mainに割り当てる */
  flex: 1;
}

/* .l-container */
.l-container {
  max-width: calc(99.375rem + clamp(1rem, 0.612rem + 1.9vw, 2.5rem) * 2);
  padding: 0 clamp(1rem, 0.612rem + 1.9vw, 2.5rem);
  margin-inline: auto;
}

/* .l-footer */
.l-footer {
  /* 1ページ内のコンテンツ高さが100vhに満たない場合
     p-footerを画面最下部に寄せる */
  justify-self: end;
}

/* ================================================================
object
================================================================ */
/* 
.c-swiper
---------------------------------------------------------------- */
/* fade */
.c-swiper-fade {
  position: relative;
  /* slide */
}

.c-swiper-fade .slide {
  height: 100%;
}

.c-swiper-fade .slide .swiper,
.c-swiper-fade .slide .swiper-wrapper,
.c-swiper-fade .slide .swiper-slide {
  height: 100%;
}

.c-swiper-fade .slide .media {
  height: 100%;
}

.c-swiper-fade .slide .media img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-swiper-loop {
  /* slide */
}

.c-swiper-loop .slide {
  overflow-x: clip;
  height: 100%;
}

.c-swiper-loop .slide .swiper,
.c-swiper-loop .slide .swiper-wrapper,
.c-swiper-loop .slide .swiper-slide {
  height: 100%;
}

.c-swiper-loop .slide .swiper {
  overflow: visible;
}

.c-swiper-loop .slide .swiper-wrapper {
  transition-timing-function: linear !important;
}

.c-swiper-loop .slide .swiper-slide {
  width: -moz-max-content;
  width: max-content;
}

.c-swiper-loop .slide .media {
  height: 100%;
}

.c-swiper-loop .slide .media img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-swiper-loop .slide .text {
  font-size: 100px;
}

.c-swiper-gallery .gallery-main {
  position: relative;
  width: 100%;
  /* slide */
}

.c-swiper-gallery .gallery-main .slide {
  height: 100%;
}

.c-swiper-gallery .gallery-main .slide .swiper,
.c-swiper-gallery .gallery-main .slide .swiper-wrapper,
.c-swiper-gallery .gallery-main .slide .swiper-slide {
  height: 100%;
}

.c-swiper-gallery .gallery-main .slide .media {
  height: 100%;
}

.c-swiper-gallery .gallery-main .slide .media img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 7s 1s ease-out;
}

.c-swiper-gallery .gallery-main .slide.swiper-slide[class*=-active] .slide__media img {
  transition-delay: 0s;
  transform: scale(1.05);
}

.c-swiper-gallery .gallery-main {
  /* navigation */
}

.c-swiper-gallery .gallery-main .navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto;
  position: absolute;
  inset: 0;
  z-index: 10;
}

.c-swiper-gallery .gallery-thumb {
  margin-top: 10px;
  /* slide */
}

.c-swiper-gallery .gallery-thumb .slide {
  height: 100%;
}

.c-swiper-gallery .gallery-thumb .slide .swiper,
.c-swiper-gallery .gallery-thumb .slide .swiper-wrapper,
.c-swiper-gallery .gallery-thumb .slide .swiper-slide {
  height: 100%;
}

.c-swiper-gallery .gallery-thumb .slide .media {
  height: 100%;
}

.c-swiper-gallery .gallery-thumb .slide .media img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-swiper-gallery .gallery-thumb .slide .swiper-slide {
  overflow: hidden;
  transition: 0.3s;
  cursor: pointer;
}

.c-swiper-gallery .gallery-thumb .slide .swiper-slide .thumb-media {
  width: 100%;
  height: 100%;
}

.c-swiper-gallery .gallery-thumb .slide .swiper-slide .thumb-media img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.3s;
}

@media (hover: hover) {
  .c-swiper-gallery .gallery-thumb .slide .swiper-slide:hover {
    opacity: 0.8;
    transform: scale(0.97);
  }

  .c-swiper-gallery .gallery-thumb .slide .swiper-slide:hover img {
    transform: scale(1.03);
  }
}

.c-swiper-gallery .gallery-thumb .slide .swiper-slide[class*=-thumb-active] {
  opacity: 0.8;
  transform: scale(0.97);
}

.c-swiper-gallery .gallery-thumb .slide .swiper-slide[class*=-thumb-active] img {
  transform: scale(1.03);
}

.c-swiper-gallery .gallery-thumb {
  /* scrollbar */
}

.c-swiper-gallery .gallery-thumb .scrollbar {
  height: 10px;
  margin-top: 10px;
}

.c-swiper-gallery .gallery-thumb .scrollbar .swiper-scrollbar-drag {
  height: 100%;
  background-color: #000;
}

.c-swiper-slider {
  position: relative;
  /* slide */
}

.c-swiper-slider .slide {
  height: 100%;
}

.c-swiper-slider .slide .swiper,
.c-swiper-slider .slide .swiper-wrapper,
.c-swiper-slider .slide .swiper-slide {
  height: 100%;
}

.c-swiper-slider .slide .media img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-swiper-slider {
  /* pagination */
}

.c-swiper-slider .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: to-rem(12);
}

.c-swiper-slider .pagination .swiper-pagination-bullet {
  display: block;
  width: to-rem(8);
  height: to-rem(8);
  background-color: #cacaca;
  border-radius: 1000px;
  transition: background-color 0.3s;
  position: relative;
}

.c-swiper-slider .pagination .swiper-pagination-bullet::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 1000px;
  position: absolute;
  top: 0;
  left: 0;
}

.c-swiper-slider .pagination .swiper-pagination-bullet[class*=-active] {
  background-color: #468b46;
}

@media (hover: hover) {
  .c-swiper-slider .pagination .swiper-pagination-bullet:not([class*=-active]):hover {
    filter: brightness(0.92);
  }
}

.c-swiper-slider {
  /* navigation */
}

.c-swiper-slider .navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}

@media (hover: hover) {
  .c-swiper-slider .navigation .arrow:hover {
    opacity: 0.8;
  }
}

/* 
.c-logo
---------------------------------------------------------------- */
.c-logo {
  font-size: 1rem;
}

.c-logo a {
  display: flex;
  align-items: end;
  gap: 0.2em;
  font-weight: 700;
}

.c-logo .inc {
  margin-bottom: 0.1em;
}

.c-logo .company-name {
  font-size: 1.75em;
}

/* 
.c-hamburger
---------------------------------------------------------------- */
.c-hamburger {
  display: none;
}

@media screen and (max-width: 991px) {
  .c-hamburger {
    display: block;
    width: 3.25rem;
    aspect-ratio: 1/1;
    background-color: #468b46;
    border-radius: 50%;
    position: relative;
    right: 0;
    z-index: 100;
    cursor: pointer;
  }

  .c-hamburger span {
    width: 55%;
    height: 1px;
    background-color: #f8f7f3;
    position: absolute;
    left: 22.5%;
    transition: inset 0.4s, rotate 0.4s, opacity 0.4s;
  }

  .c-hamburger span:nth-child(1) {
    top: 17px;
  }

  .c-hamburger span:nth-child(2) {
    top: calc(50% - 0.5px);
  }

  .c-hamburger span:nth-child(3) {
    bottom: 17px;
  }

  .c-hamburger.is-active span:nth-child(1) {
    top: 26px;
    rotate: 20deg;
  }

  .c-hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }

  .c-hamburger.is-active span:nth-child(3) {
    bottom: 25px;
    rotate: -20deg;
  }
}

/* 
.c-button
---------------------------------------------------------------- */
.c-button {
  min-width: 15rem;
  min-height: 3em;
  padding: 1.25rem 2rem;
  border-radius: 1000px;
  background-color: #468b46;
  font-size: clamp(1rem, 0.875rem + 0.2vw, 1.125rem);
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  line-height: 1 !important;
  transition: filter 0.25s;
}

.c-button .title {
  display: none;
}

.c-button .text-box {
  width: 100%;
  height: 1em;
  position: relative;
  overflow: hidden;
}

.c-button .text {
  width: 100%;
  height: 100%;
  line-height: 1 !important;
  position: absolute;
  top: 0;
  left: 0;
}

.c-button .text::before, .c-button .text::after {
  content: attr(data-text);
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
  position: absolute;
  left: 0;
  right: 0;
}

.c-button .text::before {
  top: 1em;
}

.c-button .text::after {
  top: 0;
}

.c-button .subtitle {
  display: none;
}

@media (hover: hover) {
  .c-button:hover {
    filter: brightness(0.9);
  }

  .c-button:hover .text::before {
    transform: translateY(-1em);
    transition: transform 0.25s ease-in-out 0.1s;
  }

  .c-button:hover .text::after {
    transform: translateY(-1em);
    transition: transform 0.25s ease-in-out;
  }
}

.c-button--subtitle .subtitle {
  display: block;
  font-size: clamp(0.75rem, 0.625rem + 0.2vw, 0.875rem);
  font-weight: 400;
  margin-top: 0.5em;
}

.c-button--open {
  position: relative;
}

.c-button--open::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-top: auto;
  margin-bottom: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2em;
  z-index: 10;
  -webkit-mask-image: url(../img/common/icon-open.svg);
  mask-image: url(../img/common/icon-open.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: #ffffff;
}

/* 
.c-arrow
---------------------------------------------------------------- */
/* 
.c-page-top
---------------------------------------------------------------- */
.c-page-top {
  position: fixed;
  bottom: clamp(1.25rem, 0.5rem + 1.6vw, 2.5rem);
  right: clamp(1.25rem, 0.5rem + 1.6vw, 2.5rem);
}

/* 
.c-bullet
---------------------------------------------------------------- */
.c-bullet li {
  padding-left: 1.2em;
  line-height: 1.5;
  position: relative;
}

.c-bullet li::before {
  content: "";
  display: inline-block;
  width: 0.3em;
  height: 0.3em;
  background-color: #468b46;
  border-radius: 50%;
  position: absolute;
  top: 0.6em;
  left: 0.35em;
}

/* 
.c-tel
---------------------------------------------------------------- */
/* 
.c-table
---------------------------------------------------------------- */
.c-table {
  width: 100%;
  line-height: 1.5;
}

.c-table tr {
  display: flex;
  width: 100%;
}

.c-table th,
.c-table td {
  padding: 1.6em;
  vertical-align: top;
}

.c-table th {
  flex-shrink: 0;
  width: 25%;
  font-weight: 400;
  background-color: #e2eadc;
  border-bottom: 1px solid #ffffff;
}

.c-table td {
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
}

.c-table--contact th,
.c-table--contact td {
  place-content: center;
}

@media screen and (max-width: 575px) {
  .c-table tr {
    flex-direction: column;
  }

  .c-table tr:last-child td {
    padding-bottom: 0;
  }

  .c-table th,
  .c-table td {
    padding: 1em 1.6em;
  }

  .c-table th {
    width: 100%;
  }

  .c-table--contact th {
    padding-inline: 0.8em;
  }

  .c-table--contact td {
    padding-inline: 0;
  }
}

/* 
.c-paging
---------------------------------------------------------------- */
/* 
.c-desc
---------------------------------------------------------------- */
.c-desc {
  margin-top: clamp(2.25rem, 1.375rem + 1.9vw, 3.75rem);
}

.c-desc p:not(:first-child) {
  margin-top: 1.6em;
}

/* 
.c-section-title
---------------------------------------------------------------- */
.c-section-title {
  font-size: clamp(1.25rem, 0.75rem + 1vw, 2rem);
  font-weight: 700;
}

.c-section-title--hidden {
  display: none;
}

/* 
.c-section-title
---------------------------------------------------------------- */
.c-lower-section-title {
  display: flex;
  gap: clamp(0.75rem, 0.5rem + 0.6vw, 1.25rem);
  align-items: center;
  margin-right: calc(50% - 50dvw);
  font-size: clamp(1.5rem, 1.25rem + 0.6vw, 2rem);
  font-weight: 700;
}

.c-lower-section-title .text span {
  display: block;
  width: -moz-max-content;
  width: max-content;
}

.c-lower-section-title .text span:not(:first-child) {
  margin-top: 0.6em;
}

.c-lower-section-title .text .lg {
  font-size: 1.33em;
}

.c-lower-section-title .line {
  display: block;
  width: 100%;
  height: 8px;
  background-color: #468b46;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-image: url(../img/common/mask-line.svg);
  mask-image: url(../img/common/mask-line.svg);
}

@media screen and (max-width: 767px) {
  .c-lower-section-title {
    display: block;
    font-size: clamp(1.125rem, 0.877rem + 1.3vw, 1.5rem);
  }

  .c-lower-section-title .line {
    height: 4px;
    margin-top: 0.6em;
  }
}

/* 
.c-banner
---------------------------------------------------------------- */
.c-banner {
  height: clamp(6.25rem, 3.875rem + 4.9vw, 10rem);
  overflow: hidden;
  position: relative;
  border-radius: clamp(0.5rem, 0.375rem + 0.3vw, 0.75rem);
}

.c-banner .banner-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: scale 0.4s;
}

.c-banner .banner-bg::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 39, 18, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  transition: background-color 0.4s;
}

.c-banner .banner-bg img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-banner a {
  display: grid;
  grid-template-columns: auto max-content;
  gap: clamp(0.5rem, -0.25rem + 2.2vw, 2.5rem);
  place-items: center;
  place-content: center;
  width: 100%;
  height: 100%;
  padding: 6% 10%;
  color: #ffffff;
  position: relative;
  z-index: 10;
}

.c-banner .symbol {
  text-align: right;
}

.c-banner .symbol .icon-bus {
  width: clamp(2rem, 1.625rem + 1.1vw, 3rem);
  margin-bottom: -8%;
}

.c-banner .symbol .icon-fish {
  width: clamp(3rem, 2rem + 2.8vw, 5.5rem);
}

.c-banner .symbol .icon-calendar {
  width: clamp(2.125rem, 1.688rem + 1.2vw, 3.1875rem);
}

.c-banner .text {
  font-size: clamp(0.875rem, 0.625rem + 0.5vw, 1.25rem);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  margin-right: 1em;
}

.c-banner .icon-open {
  width: 1em;
  position: absolute;
  right: 6%;
}

@media (hover: hover) {
  .c-banner:hover .banner-bg {
    scale: 1.1;
  }

  .c-banner:hover .banner-bg::before {
    background-color: rgba(18, 39, 18, 0.6);
  }
}

@media screen and (max-width: 575px) {
  .c-banner a {
    gap: 1.25rem;
  }
}

/* 
.p-nav
---------------------------------------------------------------- */
.p-nav .nav-lower,
.p-nav .nav-bg {
  display: none;
}

.p-nav .nav-list {
  display: flex;
  align-items: center;
  gap: clamp(1.75rem, 1.25rem + 1vw, 2.5rem);
}

.p-nav .nav-item {
  font-size: clamp(0.875rem, 0.875rem + 0.1vw, 1rem);
}

.p-nav .nav-item a {
  transition: color 0.3s;
}

@media (hover: hover) {
  .p-nav .nav-item a:hover {
    color: #468b46;
  }
}

.p-nav .nav-item.is-current a {
  color: #468b46;
}

@media screen and (max-width: 991px) {
  .p-nav .nav-lower {
    display: block;
    width: 100dvw;
    height: 100dvh;
    background-color: rgba(26, 32, 26, 0.4);
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
  }

  .p-nav .nav-main {
    width: clamp(19.5rem, 13.299rem + 31vw, 32.5rem);
    height: 80dvh;
    border-radius: clamp(0.75rem, 0.206rem + 2.7vw, 1.5rem);
    background-color: #f4efe8;
    position: fixed;
    top: 4px;
    right: calc(clamp(19.5rem, 13.299rem + 31vw, 32.5rem) * -1);
    transition: inset 0.4s ease-in-out;
  }

  .p-nav .nav-list {
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    height: 100%;
  }

  .p-nav .nav-item {
    font-size: 1rem;
    font-weight: 700;
  }

  .p-nav.is-active .nav-lower {
    opacity: 1;
    visibility: visible;
  }

  .p-nav.is-active .nav-main {
    right: 4px;
  }
}

/* 
.p-header
---------------------------------------------------------------- */
.p-header {
  height: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 0.612rem + 1.9vw, 2.5rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.p-header .header-logo a {
  transition: color 0.4s;
}

.p-header.is-appeared {
  opacity: 1;
  visibility: visible;
}

.p-header.is-light .header-logo a {
  color: #ffffff;
}

@media screen and (max-width: 991px) {
  .p-header {
    height: 4.5rem;
    background-color: transparent;
    background-image: initial;
  }
}

/* 
.p-footer
---------------------------------------------------------------- */
.p-footer {
  margin-top: clamp(8.25rem, 4.875rem + 7.1vw, 13.75rem);
  position: relative;
}

.p-footer::before {
  content: "";
  width: clamp(28.75rem, 8.063rem + 43.1vw, 61.9375rem);
  aspect-ratio: 79.16/45.19;
  background-color: #f6f3ee;
  -webkit-mask-image: url(../img/common/wave02.svg);
  mask-image: url(../img/common/wave02.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
  position: absolute;
  z-index: -10;
  top: calc(clamp(12.5rem, 10.125rem + 11.9vw, 25rem) * -1);
  left: clamp(-5rem, -5.25rem + 1.2vw, -3.75rem);
}

.p-footer {
  /* &__access */
}

.p-footer__access {
  padding: clamp(3rem, 1.75rem + 2.6vw, 5rem) 0;
  background-color: #e2eadc;
}

.p-footer .banner-list {
  display: flex;
  align-items: stretch;
  gap: clamp(0.5rem, -0.25rem + 2.2vw, 2.5rem);
  margin-top: clamp(1.5rem, 0.875rem + 1.3vw, 2.5rem);
}

.p-footer .c-banner {
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
}

.p-footer .c-banner:nth-child(1) .banner-bg img {
  -o-object-position: 0 28%;
  object-position: 0 28%;
}

.p-footer .c-banner:nth-child(2) .banner-bg img {
  -o-object-position: 0 20%;
  object-position: 0 20%;
}

.p-footer .c-banner:nth-child(3) .banner-bg img {
  -o-object-position: 0 50%;
  object-position: 0 50%;
}

.p-footer {
  /* &__footer */
}

.p-footer__footer {
  padding: clamp(2.25rem, 1.375rem + 1.9vw, 3.75rem) 0;
  background-color: #376437;
  font-size: clamp(0.875rem, 0.75rem + 0.2vw, 1rem);
  color: #ffffff;
}

.p-footer__footer .l-container {
  display: grid;
  grid-template-columns: repeat(2, auto);
  place-content: space-between;
}

.p-footer__footer a {
  color: #ffffff;
  transition: opacity 0.3s;
}

@media (hover: hover) {
  .p-footer__footer a:hover {
    opacity: 0.8;
  }
}

.p-footer .info {
  grid-column: 1;
}

.p-footer .info .footer-logo {
  font-size: clamp(1.25rem, 1.125rem + 0.3vw, 1.5rem);
}

.p-footer .info .address {
  margin-top: 1.5em;
  line-height: 1.5;
}

.p-footer .footer-nav {
  grid-column: 2;
}

.p-footer .footer-nav .nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 0.875rem + 1.3vw, 2.5rem);
  justify-content: end;
}

.p-footer .copy-right {
  grid-column: 1/3;
  margin-top: 1em;
}

@media screen and (max-width: 767px) {
  .p-footer {
    /* &__access */
    /* &__footer */
  }

  .p-footer__footer .l-container {
    place-content: center;
  }

  .p-footer .info {
    grid-column: 1/2;
    text-align: center;
  }

  .p-footer .footer-nav {
    display: none;
  }
}

@media screen and (max-width: 575px) {
  .p-footer {
    /* &__access */
  }

  .p-footer .banner-list {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* 
.p-lower-header
---------------------------------------------------------------- */
.p-lower-header {
  margin-top: 3.75rem;
  font-size: clamp(1.625rem, 1.125rem + 1.1vw, 2.5rem);
  overflow-x: clip;
  position: relative;
}

.p-lower-header::before {
  content: "";
  width: clamp(28.75rem, 9.063rem + 41vw, 60.3125rem);
  aspect-ratio: 79.16/45.19;
  background-color: #f6f3ee;
  -webkit-mask-image: url(../img/common/wave01.svg);
  mask-image: url(../img/common/wave01.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
  position: absolute;
  z-index: -10;
  top: 0;
  right: calc(clamp(0.75rem, -0.375rem + 2.3vw, 2.5rem) * -1);
}

@media screen and (max-width: 767px) {
  .p-lower-header::before {
    top: calc(clamp(-1.875rem, -3.216rem + 6.7vw, 0rem) * -1);
    right: clamp(-5.625rem, -7.876rem + 11.2vw, -2.5rem);
  }
}

.p-lower-header::after {
  content: "";
  width: clamp(28.75rem, 8.063rem + 43.1vw, 61.9375rem);
  aspect-ratio: 79.16/45.19;
  background-color: #f6f3ee;
  -webkit-mask-image: url(../img/common/wave02.svg);
  mask-image: url(../img/common/wave02.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
  position: absolute;
  z-index: -10;
  top: calc(clamp(10.125rem, 1.625rem + 17.7vw, 23.75rem) * -1);
  left: calc(clamp(13.125rem, 10.75rem + 5vw, 17rem) * -1);
  z-index: -20;
}

@media screen and (max-width: 767px) {
  .p-lower-header::after {
    top: clamp(-14.5rem, -17.651rem + 15.7vw, -10.125rem);
    left: clamp(-15rem, -16.337rem + 6.7vw, -13.125rem);
  }
}

.p-lower-header .lower-title {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
  z-index: 10;
}

.p-lower-header .lower-title .circle {
  width: clamp(15rem, 6.375rem + 17.9vw, 28.75rem);
  color: #f4efe8;
  position: relative;
}

.p-lower-header .lower-title .ja {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto;
  padding-bottom: 1em;
  font-size: clamp(1.5rem, 1rem + 1vw, 2.25rem);
  font-weight: 700;
  color: #27201a;
  writing-mode: vertical-rl;
  position: absolute;
  inset: 0;
}

.p-lower-header .img {
  height: clamp(16.25rem, 6.125rem + 21.1vw, 32.5rem);
  overflow: hidden;
  margin-top: calc(clamp(11.25rem, 9.125rem + 10.7vw, 22.5rem) * -1);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-image: url(../img/common/rectangle-landscape.svg);
  mask-image: url(../img/common/rectangle-landscape.svg);
  position: relative;
}

.p-lower-header .img::before {
  content: "";
  display: inline-block;
  width: clamp(9.875rem, 8rem + 9.4vw, 19.75rem);
  height: auto;
  aspect-ratio: 1/1;
  background-color: #f8f7f3;
  background-image: url(../img/common/bg.png);
  background-repeat: repeat;
  background-size: 5%;
  background-position: initial;
  border-radius: 50%;
  position: absolute;
  z-index: 20;
  top: 0;
  left: calc(50% - clamp(10rem, 8.375rem + 8.3vw, 18.75rem) / 2);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-image: url(../img/common/frame-circle.svg);
  mask-image: url(../img/common/frame-circle.svg);
}

.p-lower-header .img::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 32, 26, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.p-lower-header .img img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-lower-header .wave {
  position: relative;
}

.p-lower-header .wave::before {
  content: "";
  width: clamp(28.75rem, 9.063rem + 41vw, 60.3125rem);
  aspect-ratio: 79.16/45.19;
  background-color: #f6f3ee;
  -webkit-mask-image: url(../img/common/wave01.svg);
  mask-image: url(../img/common/wave01.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
  position: absolute;
  z-index: -10;
  top: calc(clamp(6.25rem, -1.25rem + 15.6vw, 18.25rem) * -1);
  right: calc(clamp(3.75rem, 0.375rem + 7.1vw, 9.25rem) * -1);
}

@media screen and (max-width: 767px) {
  .p-lower-header .wave::before {
    top: clamp(-12.25rem, -16rem + 7.8vw, -6.25rem);
    right: clamp(-11.25rem, -15.875rem + 9.7vw, -3.75rem);
  }
}

@media screen and (max-width: 991px) {
  .p-lower-header {
    margin-top: 1.75rem;
  }
}

@media screen and (max-width: 575px) {
  .p-lower-header {
    margin-top: 4.5rem;
  }
}

/* 
.p-invitation
---------------------------------------------------------------- */
.p-invitation {
  margin: clamp(7.5rem, 4.375rem + 6.5vw, 12.5rem) calc(50% - 50dvw) calc(clamp(8.25rem, 4.875rem + 7.1vw, 13.75rem) * -1);
  padding: clamp(6rem, 3.5rem + 5.2vw, 10rem) calc(50dvw - 50%);
  color: #ffffff;
  text-align: center;
  position: relative;
}

.p-invitation::before {
  content: "";
  width: clamp(28.75rem, 8.063rem + 43.1vw, 61.9375rem);
  aspect-ratio: 79.16/45.19;
  background-color: #f6f3ee;
  -webkit-mask-image: url(../img/common/wave02.svg);
  mask-image: url(../img/common/wave02.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
  position: absolute;
  z-index: -10;
  top: calc(clamp(10rem, 8.125rem + 9.5vw, 20rem) * -1);
  left: clamp(-4.875rem, -5.125rem + 1.1vw, -3.75rem);
}

.p-invitation .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.p-invitation .bg img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-invitation .bg::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 39, 18, 0.4);
  position: absolute;
  top: 0;
  left: 0;
}

.p-invitation .title {
  font-size: clamp(1.5rem, 0.875rem + 1.3vw, 2.5rem);
  font-weight: 700;
  position: relative;
  z-index: 10;
}

.p-invitation .desc {
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 575px) {
  .p-invitation .desc {
    font-size: 0.875rem;
  }
}

/* 
animation
---------------------------------------------------------------- */
/*========= ローディング画面のためのCSS ===============*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #f4efe8;
  z-index: 9999999;
  text-align: center;
  color: #27201a;
}

#splash-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#splash-logo::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: auto;
  aspect-ratio: 171.6/185.9;
  background-image: url(../img/common/circle-dark.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  inset: 0;
  margin: auto;
  z-index: -10;
}

#splash,
#splash-logo {
  display: none;
}

/*========= 画面遷移のためのCSS ===============*/
body {
  background: #f4efe8;
  /*遷移アニメーションと同じ色を指定*/
}

body.appear {
  background-color: #f8f7f3;
  background-image: url(../img/common/bg.png);
  background-repeat: repeat;
  background-size: 5%;
  background-position: initial;
}

/*画面遷移アニメーション*/
.splashbg1,
.splashbg2 {
  display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg1,
body.appear .splashbg2 {
  display: block;
}

/*右に消えるエリア*/
body.appear .splashbg1 {
  animation-name: PageAnime;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 50%;
  transform: scaleX(1);
  background-color: #f4efe8;
  /*伸びる背景色の設定*/
}

@keyframes PageAnime {
  0% {
    transform-origin: left;
    transform: scaleX(1);
  }

  50% {
    transform-origin: right;
  }

  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}

/*左に消えるエリア*/
body.appear .splashbg2 {
  animation-name: PageAnime2;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  right: 50%;
  transform: scaleX(1);
  background-color: #f4efe8;
  /*伸びる背景色の設定*/
}

@keyframes PageAnime2 {
  0% {
    transform-origin: right;
    transform: scaleX(1);
  }

  50% {
    transform-origin: left;
  }

  100% {
    transform-origin: left;
    transform: scaleX(0);
  }
}

/*画面遷移の後現れるコンテンツ設定*/
#wrapper {
  opacity: 0;
  /*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #wrapper {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  opacity: 0;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* 
@media print
---------------------------------------------------------------- */
@media print {
  body {
    min-width: 992px;
  }

  .l-wrapper {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    background-attachment: scroll;
  }

  *::before,
  *::after {
    -webkit-print-color-adjust: exact !important;
    color-adjust: exact !important;
    background-image: block !important;
    box-shadow: none !important;
  }

  .l-container,
  section {
    page-break-before: avoid;
  }

  section+section.new-none:not(:root) {
    page-break-before: avoid;
  }

  .new-page {
    page-break-before: always;
  }

  .p-header {
    position: absolute;
  }

  .js-fade,
  .js-blur {
    opacity: 1;
    visibility: visible;
    filter: blur(0rem);
  }

  .js-fade.is-appeared,
  .js-blur.is-appeared {
    animation: initial;
  }

  .js-rellax {
    transform: translate3d(0px, 0px, 0px) !important;
  }
}

/* ================================================================
page
================================================================ */
/* 
top
---------------------------------------------------------------- */
/* .p-mv */
.p-mv {
  display: grid;
  grid-template-columns: max-content 1fr;
  grid-template-rows: max-content auto;
  justify-content: space-between;
  width: min(100%, 2000px);
  margin-inline: auto;
}

.p-mv .mv-menu {
  grid-column: 1;
  grid-row: 1;
  height: -moz-fit-content;
  height: fit-content;
  padding: clamp(1.25rem, 0.5rem + 1.6vw, 2.5rem) 0 0 clamp(1.25rem, -0.25rem + 3.2vw, 3.75rem);
  position: relative;
  z-index: 20;
}

.p-mv .mv-menu .mv-logo {
  font-size: clamp(1.25rem, 1.125rem + 0.3vw, 1.5rem);
}

.p-mv .mv-menu .mv-nav {
  margin-top: clamp(2rem, 1.375rem + 1.9vw, 3.75rem);
  font-size: clamp(1rem, 0.875rem + 0.3vw, 1.25rem);
}

.p-mv .mv-menu .mv-nav .nav-list {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 1rem + 0.6vw, 1.75rem);
}

.p-mv .mv-menu .mv-nav .nav-list a {
  transition: color 0.3s;
}

@media (hover: hover) {
  .p-mv .mv-menu .mv-nav .nav-list a:hover {
    color: #468b46;
  }
}

.p-mv .copy {
  grid-column: 1;
  grid-row: 2;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0 0 clamp(3.75rem, 2.25rem + 3.2vw, 6.25rem) clamp(1.25rem, -3.375rem + 9.7vw, 8.75rem);
  margin-top: clamp(2.25rem, 1.375rem + 1.9vw, 3.75rem);
  font-weight: 700;
  line-height: 1;
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 1199px) {
  .p-mv .copy {
    padding-left: clamp(1.25rem, -0.25rem + 3.2vw, 3.75rem);
  }
}

.p-mv .copy::before {
  content: "";
  display: block;
  width: clamp(18rem, 12rem + 15vw, 30rem);
  aspect-ratio: 171.6/185.9;
  background-image: url(../img/common/circle.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50px;
  transform: translate(-30%, -50%);
  z-index: -10;
  pointer-events: none;
}

.p-mv .copy>span {
  display: block;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
}

.p-mv .copy .badge {
  padding: 10px 20px;
  background-color: #468b46;
  color: #ffffff;
  font-size: clamp(0.8125rem, 0.625rem + 0.4vw, 1rem);
  font-weight: 700;
  line-height: 1;
}

.p-mv .copy .main {
  margin-top: 20px;
  font-size: clamp(1.375rem, 0.625rem + 1.5vw, 2.25rem);
  line-height: 1.5;
}

.p-mv .copy .main .line {
  display: block;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
}

.p-mv .copy .main .line+.line {
  margin-top: 8px;
}

.p-mv .copy .main .lg {
  display: inline-block;
  font-size: 1.55em;
}

.p-mv .copy .sub {
  margin-top: 20px;
  font-size: clamp(0.8125rem, 0.6875rem + 0.3vw, 1rem);
  font-weight: 700;
  line-height: 1.8;
}

.p-mv .copy .pcBr {
  display: block;
}

.catch_ad_1 {
  display: none;
}

.catch_ad_2 {
  display: block;
}

@media screen and (max-width: 991px) {
  .catch_ad_1 {
    display: block;
  }
}

@media screen and (max-width: 575px) {
  .catch_ad_2 {
    display: none;
  }
}

.p-mv .mv-swiper {
  grid-column: 2;
  grid-row: 1/3;
  width: 100%;
  min-width: 0;
  position: relative;
}

.p-mv .mv-swiper::before {
  content: "";
  width: clamp(28.75rem, 9.063rem + 41vw, 60.3125rem);
  aspect-ratio: 79.16/45.19;
  background-color: #f6f3ee;
  -webkit-mask-image: url(../img/common/wave01.svg);
  mask-image: url(../img/common/wave01.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
  position: absolute;
  z-index: -10;
  top: calc(clamp(4.5rem, 0.5rem + 11vw, 14.25rem) * -1);
  left: calc(clamp(14.25rem, 11.5rem + 7.6vw, 21rem) * -1);
}

.p-mv .mv-swiper::after {
  content: "";
  width: clamp(28.75rem, 9.063rem + 41vw, 60.3125rem);
  aspect-ratio: 79.16/45.19;
  background-color: #f6f3ee;
  -webkit-mask-image: url(../img/common/wave01.svg);
  mask-image: url(../img/common/wave01.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
  position: absolute;
  z-index: -10;
  bottom: calc(clamp(3.25rem, 1.5rem + 4.9vw, 7.625rem) * -1);
  left: calc(clamp(7.125rem, 3.75rem + 9.3vw, 15.375rem) * -1);
}

.p-mv .mv-swiper .slide {
  -webkit-mask-image: url(../img/top/frame-mv.svg);
  mask-image: url(../img/top/frame-mv.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: top right;
  mask-position: top right;
}

.p-mv .mv-swiper .swiper-slide .media img {
  transition: 7s 1s ease-out;
}

.p-mv .mv-swiper .swiper-slide[class*=-active] .media img {
  transition-delay: 0s;
  transform: scale(1.03);
}

.p-mv .mv-swiper .time {
  display: flex;
  display: none;
  gap: 1.5em;
  padding: 0.4em 0.6em;
  background-color: #468b46;
  font-size: clamp(0.875rem, 0.75rem + 0.2vw, 1rem);
  color: #ffffff;
  position: absolute;
  top: clamp(1rem, 0.612rem + 1.9vw, 2.5rem);
  right: clamp(1rem, 0.612rem + 1.9vw, 2.5rem);
  z-index: 10;
}

.p-mv .mv-swiper .time dt,
.p-mv .mv-swiper .time dd {
  width: -moz-max-content;
  width: max-content;
}

@media screen and (max-width: 575px) {
  .p-mv .mv-menu {
    display: none;
  }

  .p-mv .copy {
    grid-column: 1/3;
    grid-row: 2;
    margin-top: -1.25rem;
    padding: 0 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .p-mv .copy::before {
    width: 100%;
    max-width: 20rem;
    top: 50%;
    left: 0;
    transform: translate(-15%, -50%);
  }

  .p-mv .copy>span {
    width: 100%;
    max-width: 100%;
  }

  .p-mv .copy .badge {
    width: -moz-fit-content;
    width: fit-content;
    padding: 8px 16px;
    font-size: clamp(0.6875rem, 0.541rem + 0.73vw, 0.8125rem);
  }

  .p-mv .copy .main {
    font-size: clamp(1rem, 0.683rem + 1.59vw, 1.375rem);
    margin-top: 16px;
  }

  .p-mv .copy .main .line {
    width: 100%;
    max-width: 100%;
  }

  .p-mv .copy .main .lg {
    font-size: 2.1em;
  }

  .p-mv .copy .sub {
    font-size: clamp(0.6875rem, 0.587rem + 0.51vw, 0.8125rem);
    margin-top: 16px;
    line-height: 1.7;
  }

  .p-mv .copy .pcBr {
    display: none;
  }

  .p-mv .mv-swiper {
    grid-column: 1/3;
    grid-row: 1;
    width: 100%;
    height: 54dvh;
    margin-inline: auto 0;
  }

  .p-mv .mv-swiper::after {
    bottom: -50%;
    right: -4%;
    left: initial;
  }

  .p-mv .mv-swiper .slide {
    -webkit-mask-image: url(../img/top/frame-mv-sp.svg);
    mask-image: url(../img/top/frame-mv-sp.svg);
  }
}

/* .p-top-feature */
.p-top-feature {
  display: grid;
  grid-template-columns: auto max-content auto;
  margin: 0 calc(50% - 50dvw);
  padding: clamp(9.75rem, 4.875rem + 10.1vw, 17.5rem) 0 clamp(4.5rem, 2.625rem + 3.9vw, 7.5rem) 0;
  overflow-x: clip;
}

.p-top-feature .imgs {
  position: relative;
}

.p-top-feature .imgs .feature-img {
  position: absolute;
}

.p-top-feature .imgs .feature-img img {
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-image: url(../img/common/frame-circle.svg);
  mask-image: url(../img/common/frame-circle.svg);
}

.p-top-feature .imgs .feature-img::before {
  content: "";
  display: inline-block;
  width: 92%;
  height: auto;
  aspect-ratio: 334/275;
  background-image: url(../img/common/shadow-circle.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 6%;
  left: 0;
  z-index: -10;
}

.p-top-feature .imgs--left {
  grid-column: 1;
}

.p-top-feature .imgs--left .feature-img:nth-child(1) img {
  width: clamp(12.5rem, 6.75rem + 15.9vw, 26.625rem);
}

.p-top-feature .imgs--left .feature-img:nth-child(2) img {
  width: clamp(15rem, 7rem + 22.3vw, 34.875rem);
}

.p-top-feature .imgs--left .feature-img:nth-child(3) img {
  width: clamp(8.5rem, 4.875rem + 10vw, 17.375rem);
}

.p-top-feature .imgs--right {
  grid-column: 3;
}

.p-top-feature .imgs--right .feature-img:nth-child(1) img {
  width: clamp(14.25rem, 4.875rem + 26.1vw, 37.5rem);
}

.p-top-feature .imgs--right .feature-img:nth-child(2) img {
  width: clamp(8.375rem, 5rem + 9.4vw, 16.75rem);
}

.p-top-feature .imgs--right .feature-img:nth-child(3) img {
  width: clamp(12.5rem, 7.75rem + 13.3vw, 24.375rem);
}

.p-top-feature .desc {
  grid-column: 2;
  font-size: clamp(1rem, 0.875rem + 0.3vw, 1.25rem);
  font-weight: 700;
  text-align: center;
  position: relative;
}


/* ========== 左カラム ========== */

.p-top-feature .imgs--left .feature-img:nth-child(1) {
  bottom: clamp(30rem, 28rem + 4vw, 34rem);
  right: clamp(-5rem, -8rem + 18vw, 13rem);
}

.p-top-feature .imgs--left .feature-img:nth-child(2) {
  top: clamp(26rem, 25.75rem + 0.8vw, 26.75rem);
  right: clamp(-5rem, -6.75rem + 10.4vw, 6.25rem);
}

.p-top-feature .imgs--left .feature-img:nth-child(3) {
  bottom: clamp(16rem, 14rem + 7vw, 22rem);
  right: clamp(-4rem, -3rem + 3.5vw, 1rem);
}

/* ========== 右カラム ========== */

.p-top-feature .imgs--right .feature-img:nth-child(1) {
  top: clamp(-7rem, -8.5rem + 2vw, -4.5rem);
  left: clamp(-4rem, -1.25rem + 6vw, 6.25rem);
}

.p-top-feature .imgs--right .feature-img:nth-child(2) {
  top: clamp(16rem, 12rem + 8vw, 24rem);
  left: clamp(-3rem, -2.625rem + 3.5vw, 1.75rem);
}

.p-top-feature .imgs--right .feature-img:nth-child(3) {
  top: clamp(24rem, 21rem + 6vw, 30rem);
  left: clamp(-4rem, -8rem + 22vw, 16rem);
}

.p-top-feature .desc::before {
  content: "";
  width: clamp(28.75rem, 8.063rem + 43.1vw, 61.9375rem);
  aspect-ratio: 79.16/45.19;
  background-color: #f6f3ee;
  -webkit-mask-image: url(../img/common/wave02.svg);
  mask-image: url(../img/common/wave02.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
  position: absolute;
  z-index: -10;
  top: calc(clamp(-0.625rem, -3.375rem + 7.7vw, 6.25rem) * -1);
  left: calc(clamp(23.125rem, 9.875rem + 36.7vw, 55.75rem) * -1);
}

.p-top-feature .desc::after {
  content: "";
  width: clamp(28.75rem, 9.063rem + 41vw, 60.3125rem);
  aspect-ratio: 79.16/45.19;
  background-color: #f6f3ee;
  -webkit-mask-image: url(../img/common/wave01.svg);
  mask-image: url(../img/common/wave01.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
  position: absolute;
  z-index: -10;
  bottom: calc(clamp(6.75rem, 5.25rem + 4.2vw, 10.5rem) * -1);
  right: calc(clamp(20.75rem, 6.875rem + 38.5vw, 55rem) * -1);
}

.p-top-feature .desc p {
  line-height: 2;
}

.p-top-feature .desc p:not(:first-child) {
  margin-top: clamp(2.25rem, 1.375rem + 1.9vw, 3.75rem);
}

.p-top-feature .desc .button {
  margin-top: clamp(3.75rem, 2.25rem + 3.2vw, 6.25rem);
}

@media screen and (max-width: 575px) {
  .p-top-feature {
    grid-template-columns: 1fr;
    padding: clamp(7.5rem, 4.375rem + 6.5vw, 12.5rem) 0 0 0;
  }

  .p-top-feature .imgs {
    display: grid;
    grid-template-columns: repeat(3, auto);
  }

  .p-top-feature .imgs .feature-img {
    position: relative;
  }

  .p-top-feature .imgs .feature-img:nth-child(n) {
    top: initial;
    bottom: initial;
    right: initial;
    left: initial;
    width: 100%;
  }

  .p-top-feature .imgs .feature-img:nth-child(n) img {
    width: 100%;
  }

  .p-top-feature .imgs--left {
    grid-column: 1;
    grid-row: 1;
  }

  .p-top-feature .imgs--left .feature-img:nth-child(2n-1) {
    translate: 0 2.5rem;
  }

  .p-top-feature .imgs--right {
    grid-column: 1;
    grid-row: 3;
  }

  .p-top-feature .imgs--right .feature-img:nth-child(2n-1) {
    translate: 0 -2.5rem;
  }

  .p-top-feature .desc {
    grid-column: 1;
    grid-row: 2;
    margin: clamp(2.25rem, 1.375rem + 1.9vw, 3.75rem) 0 3.75rem;
  }

  .p-top-feature .desc::before {
    top: clamp(-8.25rem, -8.25rem + 0vw, -8.25rem);
    left: clamp(-15rem, -25.203rem + 51vw, -6.875rem);
  }

  .p-top-feature .desc::after {
    bottom: clamp(6.25rem, 6.25rem + 0vw, 6.25rem);
    right: clamp(-10.625rem, -19.239rem + 43.1vw, -3.75rem);
  }

  .p-top-feature .desc .button {
    margin-top: clamp(2.25rem, 1.375rem + 1.9vw, 3.75rem);
  }
}

/* .p-top-catalog */
.p-top-catalog {
  display: grid;
  gap: clamp(2rem, -4.375rem + 8.5vw, 6.25rem);
  justify-content: center;
  padding-top: clamp(7.5rem, 4.375rem + 6.5vw, 12.5rem);
}

.p-top-catalog .title {
  grid-column: 1;
  font-size: clamp(2.4rem, 1.5vw, 3rem);
  font-weight: 700;
  line-height: 2;
  position: relative;
}

.p-top-catalog .title .br-control {
  display: none;
}

.p-top-catalog .title::before {
  content: "";
  width: clamp(28.75rem, 8.063rem + 43.1vw, 61.9375rem);
  aspect-ratio: 79.16/45.19;
  background-color: #f6f3ee;
  -webkit-mask-image: url(../img/common/wave02.svg);
  mask-image: url(../img/common/wave02.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
  position: absolute;
  z-index: -10;
  top: -48%;
  left: -38%;
}

.p-top-catalog .desc {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  margin-top: 0;
  position: relative;
  max-width: 35vw;
}

@media screen and (max-width: 991px) {
  .p-top-catalog .desc {
    max-width: 100%;
  }
}

.p-top-catalog .desc::before {
  content: "";
  width: clamp(28.75rem, 9.063rem + 41vw, 60.3125rem);
  aspect-ratio: 79.16/45.19;
  background-color: #f6f3ee;
  -webkit-mask-image: url(../img/common/wave01.svg);
  mask-image: url(../img/common/wave01.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
  position: absolute;
  z-index: -10;
  bottom: calc(clamp(6.25rem, -0.5rem + 10.9vw, 13.125rem) * -1);
  right: calc(clamp(3.125rem, -12.875rem + 25.8vw, 19.375rem) * -1);
}

.p-top-catalog .desc p {
  line-height: 2;
}

.p-top-catalog .desc p:first-child {
  font-size: clamp(1.125rem, 1rem + 0.2vw, 1.25rem);
}

.p-top-catalog .desc .button {
  margin-top: clamp(2.25rem, 1.375rem + 1.9vw, 3.75rem);
  align-self: end;
}

@media screen and (max-width: 1199px) {
  .p-top-catalog .title {
    font-size: clamp(1.875rem, -1.097rem + 4.8vw, 2.5rem);
  }

  .p-top-catalog .title .br-control {
    display: block;
  }
}

@media screen and (max-width: 991px) {
  .p-top-catalog {
    display: block;
  }

  .p-top-catalog .title {
    font-size: clamp(1.875rem, 0.578rem + 2.7vw, 2.25rem);
    text-align: center;
  }

  .p-top-catalog .title .br-control {
    display: none;
  }

  .p-top-catalog .desc {
    margin-top: clamp(2.25rem, 1.375rem + 1.9vw, 3.75rem);
    text-align: center;
  }

  .p-top-catalog .desc .button {
    align-self: center;
  }
}

@media screen and (max-width: 575px) {
  .p-top-catalog .title {
    font-size: clamp(1.5rem, 1.013rem + 2.4vw, 1.875rem);
    text-align: justify;
  }

  .p-top-catalog .title br,
  .p-top-catalog .title .br-control {
    display: none;
  }
}

.p-top-catalog .catalog-features {
  margin-top: 1.6em;
  display: flex;
  flex-direction: column;
  gap: 0.75em;
  list-style: none;
  padding: 0;
}

@media screen and (max-width: 991px) {
  .p-top-catalog .catalog-features {
    align-items: center;
  }
}

@media screen and (max-width: 450px) {
  .p-top-catalog .catalog-features {
    align-items: flex-start;
    text-align: left;
  }

  .p-top-catalog .catalog-features li {
    align-items: flex-start;
  }
}

.p-top-catalog .catalog-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5em;
  line-height: 1.5;
  font-weight: bold;
}

.p-top-catalog .catalog-features .list-icon {
  width: 1.1em;
  height: auto;
  flex-shrink: 0;
  margin-top: 0.2em;
}

/* .p-top-loop */
.p-top-loop {
  margin-inline: calc(50% - 50dvw);
  margin-top: clamp(3rem, 1.75rem + 2.6vw, 5rem);
  -webkit-mask-image: url(../img/common/rectangle-landscape.svg);
  mask-image: url(../img/common/rectangle-landscape.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
}

.p-top-loop .media {
  width: clamp(20rem, 7.75rem + 19.8vw, 32.5rem);
  aspect-ratio: 1.4142/1;
}

@media screen and (max-width: 991px) {
  .p-top-loop .media {
    width: clamp(15rem, 12.629rem + 11.9vw, 20rem);
    aspect-ratio: 1/1;
  }
}

/* .p-top-forCustomer */
.p-top-forCustomer {
  position: relative;
}

.p-top-forCustomer::before {
  content: "";
  width: clamp(28.75rem, 9.063rem + 41vw, 60.3125rem);
  aspect-ratio: 79.16/45.19;
  background-color: #f6f3ee;
  -webkit-mask-image: url(../img/common/wave01.svg);
  mask-image: url(../img/common/wave01.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
  position: absolute;
  z-index: -10;
  top: calc(clamp(14.5rem, 9.5rem + 10.4vw, 22.5rem) * -1);
  right: calc(clamp(8.75rem, -3.75rem + 26vw, 28.75rem) * -1);
}

/* ================================================================
.p-top-forCustomer .vendor
================================================================ */
.p-top-forCustomer .vendor {
  display: block;
  width: 100dvw;
  margin-left: calc(50% - 50dvw);
  margin-top: clamp(6rem, 3.5rem + 5.2vw, 10rem);
  padding-bottom: clamp(3rem, 1.75rem + 2.6vw, 5rem);
  background-color: #e2eadc;
  -webkit-mask-image: url(../img/common/rectangle-landscape.svg);
  mask-image: url(../img/common/rectangle-landscape.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
}

/* 内側コンテンツをcontainer幅に揃える */
/* 内側コンテンツをcontainer幅に揃える */
.p-top-forCustomer .vendor-header,
.p-top-forCustomer .vendor-boxes,
.p-top-forCustomer .vendor-cta-wrap {
  max-width: calc(99.375rem + clamp(1rem, 0.612rem + 1.9vw, 2.5rem) * 2);
  padding-inline: clamp(1rem, 0.612rem + 1.9vw, 2.5rem);
  margin-inline: auto;
}

.p-top-forCustomer .vendor-cta-wrap {
  margin-top: clamp(1rem, 0.5rem + 1vw, 1.5rem);
  padding-bottom: clamp(3rem, 1.75rem + 2.6vw, 5rem);
}

/* vendor-header */
.p-top-forCustomer .vendor-header {
  padding-top: clamp(3rem, 1.75rem + 2.6vw, 5rem);
  padding-bottom: clamp(2rem, 1rem + 2vw, 3rem);
  text-align: center;
}
@media screen and (max-width: 575px) {
.p-top-forCustomer .vendor-header p{
  text-align: left;
}}

.p-top-forCustomer .vendor-header .c-section-title {
  font-size: clamp(1.5rem, 1rem + 1vw, 2rem);
}

.p-top-forCustomer .vendor-header .desc {
  margin-top: 1em;
}

/* vendor-boxes */
.p-top-forCustomer .vendor-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 0.5rem + 1vw, 1.5rem);
}

/* message box */
.p-top-forCustomer .vendor-boxes .message {
  background-color: #f3f7ef;
  border-radius: 0.6em;
  padding: clamp(1.5rem, 0.875rem + 1.3vw, 2.5rem);
  position: relative;
  overflow: hidden;

}

.p-top-forCustomer .vendor-boxes .message::before {
  content: "";
  display: inline-block;
  width: clamp(8rem, 6rem + 4vw, 12rem);
  height: auto;
  aspect-ratio: 1/1;
  background-image: url(../img/top/track.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  bottom: -10px;
  right: 10px;
  pointer-events: none;
  z-index: 0;
}

.p-top-forCustomer .vendor-boxes .message .box-title {
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.5rem);
  font-weight: 700;
}

.p-top-forCustomer .vendor-boxes .message .desc {
  margin-top: 1em;
}

.p-top-forCustomer .vendor-boxes .message .delivery-list {
  margin-top: 1em;
}

.p-top-forCustomer .vendor-boxes .message .truck-img {
  width: clamp(8rem, 6rem + 4vw, 12rem);
  position: absolute;
  bottom: -20px;
  right: 10px;
  pointer-events: none;
}

/* area box */
.p-top-forCustomer .vendor-boxes .area {
  padding: clamp(1.5rem, 0.875rem + 1.3vw, 2.5rem);
    background-color: #f3f7ef;
  border-radius: 0.6em;
  position: relative;
  overflow: hidden;
  -webkit-mask-image: url(../img/common/rectangle-landscape.svg);
  mask-image: url(../img/common/rectangle-landscape.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
}

.p-top-forCustomer .vendor-boxes .area .title {
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.5rem);
  font-weight: 700;
}

.p-top-forCustomer .vendor-boxes .area::before {
  content: "";
  display: inline-block;
  width: clamp(8rem, 6rem + 4.4vw, 19rem);
  height: auto;
  aspect-ratio: 677.21/752.45;
  background-image: url(../img/top/map-kanto.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  bottom: 0.5rem;
  right: 10px;
  z-index: -10;
}


.p-top-forCustomer .vendor-boxes .area-list {
  margin-top: 1.3em;
}

.p-top-forCustomer .vendor-boxes .area-item:not(:first-child) {
  margin-top: 1em;
}

/* vendor-cta */
.p-top-forCustomer .vendor-cta {
  text-align: center;
  background-color: #f3f7ef;
  padding: clamp(2.5rem, 1.5rem + 2vw, 4rem) clamp(1.5rem, 0.875rem + 1.3vw, 2.5rem);
  border-radius: 0.6em;
  position: relative;
  overflow: hidden;
    isolation: isolate; /* 追加 */
}

.p-top-forCustomer .vendor-cta::before {
  content: "";
  display: inline-block;
  width: clamp(6rem, 4rem + 4vw, 10rem);
  height: auto;
  aspect-ratio: 1/1;
  background-image: url(../img/top/mail.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  bottom: -5px;
  right: 15px;
  pointer-events: none;
  z-index: -1;
}

.p-top-forCustomer .vendor-cta .cta-title {
  font-size: clamp(1.5rem, 1rem + 1vw, 2rem);
  font-weight: 700;
}

.p-top-forCustomer .vendor-cta .desc {
  margin-top: 1em;
}

.p-top-forCustomer .vendor-cta .button {
  margin-top: clamp(1.5rem, 0.875rem + 1.3vw, 2.5rem);
  font-size: clamp(0.875rem, 0.75rem + 0.3vw, 1.125rem);
  min-width: 320px;
  padding-inline: clamp(1.25rem, 0.5rem + 1.5vw, 2.5rem);
}

/* ================================================================
responsive
================================================================ */
@media screen and (max-width: 767px) {
  .p-top-forCustomer .vendor-boxes {
    grid-template-columns: 1fr;
  }

  .p-top-forCustomer .vendor-cta p br {
    display: none;
  }
}

@media screen and (max-width: 575px) {
  .p-top-forCustomer .vendor-cta .button {
    width: 100%;
    font-size: 0.875rem;
    min-width: initial;
  }
}

.p-top-forCustomer .private {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0 clamp(2.5rem, -2.375rem + 7.9vw, 7.5rem);
  margin-top: clamp(3rem, 1.75rem + 2.6vw, 5rem);
  margin-right: calc(50% - 50dvw);
}

.p-top-forCustomer .private .img {
  grid-column: 2;
  grid-row: 1/4;
  position: relative;
}

.p-top-forCustomer .private .img .media {
  height: clamp(48.75rem, 33.875rem + 24vw, 63.875rem);
  overflow: hidden;
  position: absolute;
  top: calc((clamp(3rem, 1.75rem + 2.6vw, 5rem) + clamp(2.25rem, 0.75rem + 2.4vw, 3.75rem)) * -1);
  left: 0;
}

.p-top-forCustomer .private .img img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: calc(clamp(3.125rem, 5.125rem + -4.1vw, 0rem) * -1);
  object-position: calc(clamp(3.125rem, 5.125rem + -4.1vw, 0rem) * -1);
  -webkit-mask-image: url(../img/common/rectangle-square.svg);
  mask-image: url(../img/common/rectangle-square.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
}

.p-top-forCustomer .private .title {
  grid-column: 1;
  line-height: 1.75;
}

.p-top-forCustomer .private>.title {
  position: relative;
}

.p-top-forCustomer .private>.title::before {
  content: "";
  width: clamp(28.75rem, 8.063rem + 43.1vw, 61.9375rem);
  aspect-ratio: 79.16/45.19;
  background-color: #f6f3ee;
  -webkit-mask-image: url(../img/common/wave02.svg);
  mask-image: url(../img/common/wave02.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
  position: absolute;
  z-index: -10;
  top: calc(clamp(10.5rem, 3.75rem + 14vw, 21.25rem) * -1);
  right: calc(clamp(12rem, -0.75rem + 26.6vw, 32.5rem) * -1);
}

.p-top-forCustomer .private .desc {
  grid-column: 1;
  margin-top: clamp(1.5rem, 0.875rem + 1.3vw, 2.5rem);
}

.p-top-forCustomer .private .access {
  grid-column: 1;
  width: -moz-max-content;
  width: max-content;
  margin-top: clamp(2.25rem, 1.375rem + 1.9vw, 3.75rem);
  padding: clamp(2.25rem, 1.375rem + 1.9vw, 3.75rem);
  border: 1px solid #468b46;
  border-radius: 0.6em;
}

.p-top-forCustomer .private .access .title {
  font-size: clamp(1.125rem, 0.875rem + 0.5vw, 1.5rem);
  font-weight: 700;
  line-height: 1;
}

.p-top-forCustomer .private .access .info {
  margin-top: 1.4em;
}

.p-top-forCustomer .private .access .time {
  display: flex;
  gap: 1.25em;
  width: -moz-max-content;
  width: max-content;
  margin-top: 0.6em;
  font-size: clamp(0.75rem, 0.625rem + 0.2vw, 0.875rem);
}

.p-top-forCustomer .private .access .button {
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
  margin-top: 1.4em;
}

@media screen and (max-width: 1199px) {
  .p-top-forCustomer .vendor {
    grid-template-columns: min-content 1fr;
    height: -moz-fit-content;
    height: fit-content;
  }

  .p-top-forCustomer .vendor .message .button {
    min-width: 20rem;
  }

  .p-top-forCustomer .vendor .area .title {
    line-height: 1.5;
  }

  .p-top-forCustomer .private {
    grid-template-columns: min-content 1fr;
  }

  .p-top-forCustomer .private .desc {
    text-align: justify;
  }

  .p-top-forCustomer .private .desc br {
    display: none;
  }

  .p-top-forCustomer .private .access .time {
    flex-direction: column;
    gap: 0.5em;
  }
}

@media screen and (max-width: 767px) {
  .p-top-forCustomer .vendor {
    grid-template-columns: 1fr;
    margin-right: calc(50% - 50dvw);
  }

  .p-top-forCustomer .vendor .message {
    grid-column: 1/3;
    grid-row: 1;
  }

  .p-top-forCustomer .vendor .area {
    grid-column: 1/3;
    grid-row: 2;
  }

  .p-top-forCustomer .private {
    grid-template-columns: 100%;
    margin-right: initial;
    margin-top: calc(clamp(2.25rem, 1.375rem + 1.9vw, 3.75rem) * -1);
  }

  .p-top-forCustomer .private .img {
    grid-column: 1;
    grid-row: 1;
    height: clamp(12.5rem, 8.919rem + 17.9vw, 17.5rem);
    margin-right: calc(50% - 50dvw);
    overflow: hidden;
  }

  .p-top-forCustomer .private .img .media {
    height: auto;
    top: calc(clamp(0.625rem, -1.626rem + 11.2vw, 3.75rem) * -1);
    left: 0;
  }

  .p-top-forCustomer .private .img .media img {
    -o-object-position: initial;
    object-position: initial;
  }

  .p-top-forCustomer .private .c-section-title.title {
    margin-top: clamp(1.5rem, 0.875rem + 1.3vw, 2.5rem);
  }

  .p-top-forCustomer .private .c-section-title.title br {
    display: none;
  }
}

@media screen and (max-width: 767px) and (max-width: 575px) {
  .p-top-forCustomer .private .c-section-title.title br {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .p-top-forCustomer .private .access {
    width: 100%;
    padding: clamp(1.5rem, 0.875rem + 1.3vw, 2.5rem) clamp(1rem, 0.75rem + 1.2vw, 2.25rem);
  }

  .p-top-forCustomer .private .access .address {
    word-break: break-all;
  }

  .p-top-forCustomer .private .access .time {
    flex-direction: row;
    gap: 1em;
    width: initial;
    line-height: 1.2;
  }

  .p-top-forCustomer .private .access .time dt {
    flex-shrink: 0;
  }
}

@media screen and (max-width: 575px) {
  .p-top-forCustomer .vendor .message {
    text-align: start;
  }

  .p-top-forCustomer .vendor .message .button {
    max-width: initial;
    min-width: initial;
  }

  .p-top-forCustomer .private .access .button {
    font-size: 0.875rem;
    padding: 1.25rem 1.25rem;
  }
}

/* 
feature
---------------------------------------------------------------- */
/* .p-lower-header */
.p-lower-header .img--feature img {
  -o-object-position: 0 60%;
  object-position: 0 60%;
}

/* ================================================================
   .p-feature-people
================================================================ */
.p-feature-people {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, -2.25rem + 6.8vw, 6.25rem);
  padding: clamp(7.5rem, 4.375rem + 6.5vw, 12.5rem) 0;
  overflow-y: clip;
  position: relative;
}

.p-feature-people::before {
  content: "";
  width: clamp(28.75rem, 8.063rem + 43.1vw, 61.9375rem);
  aspect-ratio: 79.16/45.19;
  background-color: #f6f3ee;
  -webkit-mask-image: url(../img/common/wave02.svg);
  mask-image: url(../img/common/wave02.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
  position: absolute;
  z-index: -10;
  bottom: calc(clamp(-5.625rem, -11.5rem + 16.2vw, 8.75rem) * -1);
  left: calc(clamp(12.5rem, 7.5rem + 14vw, 25rem) * -1);
}

.p-feature-people .text .title {
  width: max-content;
  font-size: clamp(1.25rem, 1rem + 1.2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.5;
}

/* icons */
.p-feature-people__icons {
  margin-top: 2em;
}

.p-feature-people__icons .icon-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 0.5em;
  list-style: none;
  padding: 0;
  margin: 0 0 1.25em;
  align-items: end;
}

.p-feature-people__icons .icon-list::after {
  content: "など、";
  display: flex;
  align-items: flex-end;
  font-size: clamp(0.75rem, 0.6rem + 0.4vw, 0.9rem);
  font-weight: 700;
  padding-bottom: 1em;
}

.p-feature-people__icons .icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5em;
  font-size: clamp(0.875rem, 0.75rem + 0.5vw, 1.05rem);
  font-weight: 700;
  text-align: center;
  background-color: #fffbf2;
  border-radius: 12px;
  padding: 1em;
}

.p-feature-people__icons .icon-item--text {
  background-color: transparent;
  padding: 1em 0;
  justify-content: flex-end;
  font-size: clamp(0.75rem, 0.6rem + 0.4vw, 0.9rem);
}

.p-feature-people__icons .icon-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.p-feature-people__icons .icon-desc {
  font-size: clamp(0.8125rem, 0.75rem + 0.3vw, 1.8rem);
  line-height: 1.8;
}

/* slider */
.p-feature-people .people-slider {
  width: 100%;
  min-width: 0;
  aspect-ratio: 4/3;
  margin-top: 3em;
  position: relative;
}

.p-feature-people .people-slider::before,
.p-feature-people .people-slider::after {
  content: "";
  display: inline-block;
  width: 50%;
  height: auto;
  aspect-ratio: 334/275;
  background-image: url(../img/common/shadow-circle.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  z-index: -10;
}

.p-feature-people .people-slider::before {
  bottom: -10%;
  left: -8%;
}

.p-feature-people .people-slider::after {
  top: -3%;
  right: -3%;
}

.p-feature-people .people-slider .slide {
  -webkit-mask-image: url(../img/common/rectangle-landscape.svg);
  mask-image: url(../img/common/rectangle-landscape.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
}

/* responsive */
@media screen and (max-width: 1399px) {
  .p-feature-people__icons .icon-list {
    grid-template-columns: repeat(2, 1fr) auto;
    grid-template-rows: auto auto;
  }

  .p-feature-people__icons .icon-item:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }

  .p-feature-people__icons .icon-item:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }

  .p-feature-people__icons .icon-list::after {
    grid-column: 3;
    grid-row: 2;
  }
}

@media screen and (max-width: 1199px) {
  .p-feature-people .people-slider {
    aspect-ratio: 1.4142/1;
  }

  .p-feature-people .people-slider .slide {
    -webkit-mask-image: url(../img/common/rectangle-square.svg);
    mask-image: url(../img/common/rectangle-square.svg);
  }
}

@media screen and (max-width: 991px) {
  .p-feature-people {
    grid-template-columns: 1fr;
  }

  .p-feature-people .text {
    grid-column: 1;
    grid-row: 1;
  }

  .p-feature-people .text .c-desc {
    text-align: justify;
  }

  .p-feature-people .text .c-desc br {
    display: none;
  }

  .p-feature-people__icons .icon-item img {
    width: 90px;
    height: 90px;
  }

  .p-feature-people .people-slider {
    grid-column: 1;
    grid-row: 2;
    margin-top: 0;
    aspect-ratio: 1.4142/1;
  }
}

@media screen and (max-width: 767px) {
  .p-feature-people__icons .icon-item img {
    width: 80px;
    height: 80px;
  }

  .p-feature-people .people-slider {
    aspect-ratio: 1/1.25;
  }
}

@media screen and (max-width: 575px) {
  .p-feature-people::before {
    display: none;
  }
}


/* ================================================================
   .p-feature-consultation
================================================================ */
.p-feature-consultation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: max-content max-content 1fr;
  gap: 0 clamp(2rem, -0.625rem + 5.5vw, 6.25rem);
  margin-left: calc(50% - 50dvw);
  position: relative;
}

.p-feature-consultation::before {
  content: "";
  width: clamp(28.75rem, 9.063rem + 41vw, 60.3125rem);
  aspect-ratio: 79.16/45.19;
  background-color: #f6f3ee;
  -webkit-mask-image: url(../img/common/wave01.svg);
  mask-image: url(../img/common/wave01.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
  position: absolute;
  z-index: -10;
  top: calc(clamp(11.25rem, 2.625rem + 17.9vw, 25rem) * -1);
  right: calc(clamp(10rem, -1.75rem + 24.4vw, 28.75rem) * -1);
}

.p-feature-consultation::after {
  content: "";
  width: clamp(28.75rem, 8.063rem + 43.1vw, 61.9375rem);
  aspect-ratio: 79.16/45.19;
  background-color: #f6f3ee;
  -webkit-mask-image: url(../img/common/wave02.svg);
  mask-image: url(../img/common/wave02.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
  position: absolute;
  z-index: -10;
  bottom: calc(clamp(-1.875rem, -4.25rem + 4.9vw, 1.875rem) * -1);
  right: clamp(6.25rem, 3.125rem + 6.5vw, 11.25rem);
}

/* title / desc */
.p-feature-consultation .title {
  grid-column: 2;
  grid-row: 1;
  width: max-content;
  font-size: clamp(1.25rem, 1rem + 1.2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.5;
}

.p-feature-consultation .c-desc {
  grid-column: 2;
  grid-row: 2;
}

/* image */
.p-feature-consultation .img {
  overflow: hidden;
  -webkit-mask-image: url(../img/common/rectangle-square.svg);
  mask-image: url(../img/common/rectangle-square.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
}

.p-feature-consultation .img--lg {
  grid-column: 1;
  grid-row: 1 / 4;
  width: 100%;
  aspect-ratio: 4/3;
}

.p-feature-consultation .img--sm {
  grid-column: 2;
  grid-row: 5;
  width: clamp(8.75rem, -0.75rem + 15.3vw, 18.375rem);
  aspect-ratio: 1/1.4142;
  margin-top: clamp(1.5rem, 1rem + 1vw, 2.5rem);
  margin-inline: auto calc(clamp(0rem, -3.875rem + 6.3vw, 4rem) * -1);
}

/* cards */
.p-feature-consultation__cards {
  grid-column: 2;
  grid-row: 3 / 5;
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 0.75em;
  margin-top: 2em;
}

.p-feature-consultation__cards .card-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75em;
  flex: 1;
  background-color: #fffbf2;
  border-radius: 12px;
  padding: 1.25em;
}

.p-feature-consultation__cards .card-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background-color: #468b46;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  align-self: center;
}

.p-feature-consultation__cards .card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.p-feature-consultation__cards .card-title {
  font-weight: 700;
  font-size: clamp(0.875rem, 0.75rem + 0.3vw, 1rem);
  line-height: 1.4;
  margin-bottom: 0.5em;
  color: #27201a;
  text-align: center;
}

.p-feature-consultation__cards .card-desc {
  font-size: clamp(0.8125rem, 0.75rem + 0.15vw, 0.9375rem);
  line-height: 1.75;
  color: #27201a;
}

/* responsive */
@media screen and (max-width: 991px) {
  .p-feature-consultation {
    grid-template-columns: 1fr;
    margin-left: initial;
  }

  .p-feature-consultation .title {
    grid-column: 1;
    grid-row: 1;
  }

  .p-feature-consultation .img--lg {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    height: auto;
    max-height: 28rem;
    aspect-ratio: 1.7321/1;
    margin-top: clamp(1.5rem, 0.875rem + 1.3vw, 2.5rem);
  }

  .p-feature-consultation .img--lg img {
    height: 100%;
    object-fit: cover;
  }

  .p-feature-consultation .c-desc {
    grid-column: 1;
    grid-row: 3;
    text-align: justify;
  }

  .p-feature-consultation .c-desc .br-control {
    display: none;
  }

  .p-feature-consultation__cards {
    grid-column: 1;
    grid-row: 4;
    flex-direction: row;
  }

  .p-feature-consultation .img--sm {
    grid-column: 1;
    grid-row: 5;
    width: clamp(6.25rem, 4.484rem + 8.9vw, 8.75rem);
    margin-top: clamp(0.75rem, -3.033rem + 10.5vw, 2rem);
    position: relative;
    z-index: -10;
  }
}

@media screen and (max-width: 767px) {
  .p-feature-consultation::before {
    top: -9.25rem;
    right: -2.5rem;
  }

  .p-feature-consultation::after {
    bottom: calc(clamp(4.25rem, 3.343rem + 4.5vw, 5.5rem) * -1);
    left: clamp(-11.25rem, -17.504rem + 31.3vw, -2.5rem);
    right: initial;
  }

  .p-feature-consultation {
    margin-left: initial;
  }

  .p-feature-consultation .img--lg {
    margin-left: calc(50% - 50dvw);
    width: calc(100% + clamp(1rem, 0.612rem + 1.9vw, 2.5rem));
    max-height: 20rem;
  }

  .p-feature-consultation__cards {
    flex-direction: column;
  }
}

@media screen and (max-width: 575px) {
  .p-feature-consultation__cards {
    flex-direction: column;
  }
}
/* .p-feature-philosophy */
.p-feature-philosophy {
  display: grid;
  grid-template-columns: 1fr max-content max-content;
  grid-template-rows: max-content auto;
  gap: 0 clamp(1.5rem, -3.75rem + 6vw, 3.75rem);
   margin-top: clamp(6.25rem, 4.25rem + 4.2vw, 10rem);
  margin-right: calc(50% - 50dvw);
  padding: clamp(4.5rem, 2.625rem + 3.9vw, 7.5rem) 0 clamp(4.5rem, 2.625rem + 3.9vw, 7.5rem) clamp(1rem, 0.612rem + 1.9vw, 2.5rem);
  padding-right: calc(50dvw - 50% + clamp(1rem, 0.612rem + 1.9vw, 2.5rem));
  position: relative;
  z-index: 10;
}

.p-feature-philosophy .bg {
  width: 100%;
  height: 100%;
  background-color: #e2eadc;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-image: url(../img/common/rectangle-landscape.svg);
  mask-image: url(../img/common/rectangle-landscape.svg);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -10;
}

.p-feature-philosophy .main-img {
  grid-column: 1;
  grid-row: 1/3;
  position: relative;
}

.p-feature-philosophy .main-img::before {
  content: "";
  display: inline-block;
  width: clamp(28.75rem, -0.375rem + 33.3vw, 41.25rem);
  height: auto;
  aspect-ratio: 334/275;
  background-image: url(../img/common/shadow-circle.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: calc(clamp(3.125rem, -2.75rem + 6.7vw, 5.625rem) * -1);
  right: calc(clamp(-3.25rem, -5.875rem + 3vw, -2.125rem) * -1);
  z-index: -10;
}

.p-feature-philosophy .main-img img {
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-image: url(../img/common/frame-circle.svg);
  mask-image: url(../img/common/frame-circle.svg);
  position: absolute;
  width: clamp(27.5rem, -1.625rem + 33.3vw, 40rem);
  top: calc(clamp(6.25rem, -4.875rem + 12.7vw, 11rem) * -1);
  right: calc(clamp(-1.75rem, -4.125rem + 2.7vw, -0.75rem) * -1);
}

.p-feature-philosophy .title {
  grid-column: 2/4;
  grid-row: 1;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-max-content;
  height: max-content;
  padding: 0.4em 0.6em;
  margin-bottom: 1em;
  background-color: #468b46;
  font-size: clamp(1rem, 0.625rem + 0.5vw, 1.25rem);
  color: #ffffff;
}

.p-feature-philosophy .copy {
  grid-column: 2;
  grid-row: 2;
  place-content: center;
  font-size: clamp(1.75rem, 0.625rem + 1.3vw, 2.25rem);
  font-weight: 700;
  position: relative;
}

.p-feature-philosophy .copy p {
  line-height: 2;
}

.p-feature-philosophy .desc {
  grid-column: 3;
  grid-row: 2/3;
  margin-top: 0;
  position: relative;
}

.p-feature-philosophy .desc .br-control {
  display: none;
}

@media screen and (max-width: 1399px) {
  .p-feature-philosophy {
    grid-template-rows: auto;
  }

  .p-feature-philosophy .main-img::before {
    width: clamp(31.875rem, 9.219rem + 30.2vw, 35.625rem);
    top: clamp(-1.25rem, -1.25rem + 0vw, -1.25rem);
    right: clamp(2.625rem, -1.122rem + 5vw, 3.25rem);
  }

  .p-feature-philosophy .main-img img {
    width: clamp(30rem, 7.344rem + 30.2vw, 33.75rem);
    top: calc(clamp(4rem, -1.995rem + 8vw, 5rem) * -1);
    right: clamp(1rem, -7.331rem + 11.1vw, 2.375rem);
  }

  .p-feature-philosophy .title {
    align-self: end;
  }

  .p-feature-philosophy .copy {
    align-self: start;
  }

  .p-feature-philosophy .desc {
    grid-row: 1/3;
  }

  .p-feature-philosophy .desc .br-control {
    display: block;
  }
}

@media screen and (max-width: 1199px) {
  .p-feature-philosophy {
    grid-template-columns: auto max-content;
    grid-template-rows: max-content 1fr;
    gap: 0 clamp(1.5rem, -3.27rem + 7.7vw, 2.5rem);
    justify-content: center;
    align-items: start;
    padding-bottom: clamp(3.75rem, 2.826rem + 1.9vw, 4.25rem);
  }

  .p-feature-philosophy .main-img {
    grid-column: 1;
    grid-row: 3;
    margin-top: clamp(0.75rem, -0.174rem + 1.9vw, 1.25rem);
  }

  .p-feature-philosophy .main-img::before {
    width: clamp(20.625rem, 9.49rem + 23.2vw, 26.875rem);
    top: clamp(2rem, 0.901rem + 2.3vw, 2.625rem);
    right: clamp(0.625rem, 0.625rem + 0vw, 0.625rem);
  }

  .p-feature-philosophy .main-img img {
    width: clamp(18.75rem, 7.615rem + 23.2vw, 25rem);
    position: static;
  }

  .p-feature-philosophy .title {
    grid-column: 1;
    grid-row: 1;
    font-size: clamp(0.875rem, 0.625rem + 0.5vw, 1rem);
  }

  .p-feature-philosophy .copy {
    grid-column: 1;
    grid-row: 2;
    font-size: clamp(1.3125rem, 0.551rem + 1.6vw, 1.75rem);
  }

  .p-feature-philosophy .desc {
    grid-column: 2;
    grid-row: 2/4;
  }

  .p-feature-philosophy .desc p {
    line-height: 2;
  }
}

@media screen and (max-width: 767px) {
  .p-feature-philosophy {
    grid-template-columns: max-content;
    grid-row: auto;
    text-align: center;
  }

  .p-feature-philosophy .main-img {
    grid-column: 1;
    grid-row: 4;
  }

  .p-feature-philosophy .main-img::before {
    width: clamp(18.125rem, 13.671rem + 22.3vw, 24.375rem);
    top: clamp(1.75rem, 1.204rem + 2.7vw, 2.5rem);
    right: clamp(0.125rem, -0.306rem + 2.2vw, 0.75rem);
  }

  .p-feature-philosophy .main-img img {
    width: clamp(16.25rem, 11.796rem + 22.3vw, 22.5rem);
  }

  .p-feature-philosophy .title {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
  }

  .p-feature-philosophy .copy {
    grid-column: 1;
    grid-row: 2;
    font-size: clamp(1.125rem, 0.762rem + 1.8vw, 1.625rem);
    letter-spacing: 0.05em;
  }

  .p-feature-philosophy .desc {
    grid-column: 1;
    grid-row: 3;
    margin-top: 1.5em;
  }
}

@media screen and (max-width: 575px) {
  .p-feature-philosophy {
    margin-left: calc(50% - 50dvw);
    padding-right: clamp(1rem, 0.612rem + 1.9vw, 2.5rem);
  }
}

/* 
catalog
---------------------------------------------------------------- */
/* .p-lower-header */
.p-lower-header .img--catalog img {
  -o-object-position: 0 60%;
  object-position: 0 60%;
}

/* .p-catalog-lineup */
.p-catalog-lineup {
  padding-top: clamp(6rem, 3.5rem + 5.2vw, 10rem);
  position: relative;
}

.p-catalog-lineup .content {
  display: grid;
  grid-template-columns: repeat(2, 50%);
  margin-top: clamp(3rem, 1.75rem + 2.6vw, 5rem);
  position: relative;
}

.p-catalog-lineup .content::before {
  content: "";
  width: clamp(28.75rem, 8.063rem + 43.1vw, 61.9375rem);
  aspect-ratio: 79.16/45.19;
  background-color: #f6f3ee;
  -webkit-mask-image: url(../img/common/wave02.svg);
  mask-image: url(../img/common/wave02.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
  position: absolute;
  z-index: -10;
  top: calc(clamp(-8.75rem, -13.375rem + 9.7vw, -1.25rem) * -1);
  left: calc(clamp(8.75rem, -1.375rem + 21.1vw, 25rem) * -1);
}

@media screen and (max-width: 767px) {
  .p-catalog-lineup .content::before {
    top: clamp(17.5rem, 12.153rem + 26.8vw, 25rem);
    left: clamp(-11.25rem, -15.738rem + 22.4vw, -5rem);
  }
}

.p-catalog-lineup .content::after {
  content: "";
  width: clamp(28.75rem, 9.063rem + 41vw, 60.3125rem);
  aspect-ratio: 79.16/45.19;
  background-color: #f6f3ee;
  -webkit-mask-image: url(../img/common/wave01.svg);
  mask-image: url(../img/common/wave01.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
  position: absolute;
  z-index: -10;
  bottom: calc(clamp(6.25rem, 0.75rem + 11.4vw, 15rem) * -1);
  right: calc(clamp(7.5rem, 1.25rem + 13vw, 17.5rem) * -1);
}

@media screen and (max-width: 767px) {
  .p-catalog-lineup .content::after {
    bottom: clamp(-5rem, -5rem + 0vw, -5rem);
    right: clamp(-11.25rem, -17.142rem + 29.5vw, -3rem);
  }
}

.p-catalog-lineup .text {
  place-self: center;
  margin-top: 0;
}

.p-catalog-lineup .text--main {
  grid-column: 1;
  grid-row: 1;
  padding: 1.5em 1.5em 1.5em 0;
}

.p-catalog-lineup .text--sub {
  grid-column: 2;
  grid-row: 2;
  padding: 1.5em 0 1.5em 1.5em;
}

.p-catalog-lineup .img {
  width: 100%;
  min-width: 0;
  aspect-ratio: 1.618/1;
}

.p-catalog-lineup .img--main {
  grid-column: 2;
  grid-row: 1;
}

.p-catalog-lineup .img--sub {
  grid-column: 1;
  grid-row: 2;
}

.p-catalog-lineup .img .slide {
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-image: url(../img/common/rectangle-square.svg);
  mask-image: url(../img/common/rectangle-square.svg);
}

@media screen and (max-width: 1199px) {
  .p-catalog-lineup .img {
    aspect-ratio: 1/1;
  }

  .p-catalog-lineup .text .br-control {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .p-catalog-lineup .content {
    grid-template-columns: 1fr;
  }

  .p-catalog-lineup .text {
    grid-column: 1;
  }

  .p-catalog-lineup .text--main {
    grid-row: 2;
    padding-right: 0;
  }

  .p-catalog-lineup .text--sub {
    grid-row: 4;
    padding-left: 0;
  }

  .p-catalog-lineup .img {
    aspect-ratio: 1.618/1;
    grid-column: 1;
  }

  .p-catalog-lineup .img--main {
    grid-row: 1;
  }

  .p-catalog-lineup .img--sub {
    grid-row: 3;
  }
}

/* .p-catalog-check */
.p-catalog-check {
  margin-top: clamp(6rem, 3.5rem + 5.2vw, 10rem);
}

.p-catalog-check .content {
  display: grid;
  grid-template-columns: 1fr 25% max-content;
  margin-top: clamp(3rem, 1.75rem + 2.6vw, 5rem);
  position: relative;
}

.p-catalog-check .content::before {
  content: "";
  display: inline-block;
  width: calc(50dvw - 50%);
  height: 100%;
  background-color: rgba(226, 234, 220, 0.95);
  position: absolute;
  right: calc(50% - 50dvw);
}

.p-catalog-check .check-loop {
  width: 100dvw;
  height: 100%;
  position: absolute;
  margin-left: calc(50% - 50dvw);
  z-index: -10;
}

.p-catalog-check .check-loop .slide {
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-image: url(../img/common/rectangle-landscape.svg);
  mask-image: url(../img/common/rectangle-landscape.svg);
}

.p-catalog-check .check-loop .media {
  width: auto;
  height: 100%;
  aspect-ratio: 1/1;
}

.p-catalog-check .empty {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
}

.p-catalog-check .switch-area {
  grid-column: 2;
  grid-row: 1;
  background: linear-gradient(to right, transparent, rgba(226, 234, 220, 0.95));
}

.p-catalog-check .content-text {
  grid-column: 3;
  grid-row: 1;
  place-content: center;
  padding: clamp(3rem, 1.75rem + 2.6vw, 5rem) 0 clamp(3rem, 1.75rem + 2.6vw, 5rem) clamp(1rem, 0.612rem + 1.9vw, 2.5rem);
  background-color: rgba(226, 234, 220, 0.95);
}

.p-catalog-check .content-text .strong {
  margin-top: clamp(1rem, 0.875rem + 0.3vw, 1.25rem);
}

.p-catalog-check .desc {
  margin-top: 0;
}

.p-catalog-check .check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.5em;
  justify-content: center;
  margin-top: clamp(1rem, 0.875rem + 0.3vw, 1.25rem);
}

.p-catalog-check .check-list .set {
  display: flex;
  gap: 0 0.5em;
}

.p-catalog-check .check-list .set:nth-child(1) {
  margin-bottom: -0.6em;
}

.p-catalog-check .check-list .check-item {
  display: grid;
  place-content: center;
  width: 6em;
  height: 6em;
  aspect-ratio: 1/1;
  background-color: #468b46;
  border-radius: 50%;
  font-size: clamp(0.875rem, 0.75rem + 0.2vw, 1rem);
  text-align: center;
  line-height: 1.2;
  color: #ffffff;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-image: url(../img/common/frame-circle.svg);
  mask-image: url(../img/common/frame-circle.svg);
}

.p-catalog-check .check-list .check-item:nth-child(2n) {
  margin-top: 1em;
}

@media screen and (max-width: 767px) {
  .p-catalog-check .content {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    margin-inline: calc(50% - 50dvw);
  }

  .p-catalog-check .content::before {
    display: none;
  }

  .p-catalog-check .content .check-loop {
    grid-column: 1;
    grid-row: 1;
    position: static;
    height: clamp(12.5rem, 8.919rem + 17.9vw, 17.5rem);
  }

  .p-catalog-check .content .empty,
  .p-catalog-check .content .switch-area {
    display: none;
  }

  .p-catalog-check .content .content-text {
    grid-column: 1;
    grid-row: 2;
    place-items: center;
    padding-inline: clamp(1rem, 0.612rem + 1.9vw, 2.5rem);
    text-align: center;
    position: relative;
  }
}

/* .p-catalog-set */
.p-catalog-set {
  padding-top: clamp(6rem, 3.5rem + 5.2vw, 10rem);
  overflow-y: clip;
  position: relative;
}

.p-catalog-set::before {
  content: "";
  width: clamp(28.75rem, 9.063rem + 41vw, 60.3125rem);
  aspect-ratio: 79.16/45.19;
  background-color: #f6f3ee;
  -webkit-mask-image: url(../img/common/wave01.svg);
  mask-image: url(../img/common/wave01.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
  position: absolute;
  z-index: -10;
  top: calc(clamp(3.75rem, -3.625rem + 15.3vw, 15.5rem) * -1);
  right: calc(clamp(2.5rem, -6.875rem + 19.5vw, 17.5rem) * -1);
}

@media screen and (max-width: 767px) {
  .p-catalog-set::before {
    top: clamp(-4.375rem, -4.805rem + 2.2vw, -3.75rem);
    right: clamp(-10.5rem, -16.21rem + 28.6vw, -2.5rem);
  }
}

.p-catalog-set .content {
  display: grid;
  grid-template-columns: max-content 1fr;
  grid-template-rows: max-content;
  gap: 0 clamp(2.25rem, 1.375rem + 1.9vw, 3.75rem);
  align-items: center;
  margin-top: clamp(3rem, 1.75rem + 2.6vw, 5rem);
}

.p-catalog-set .desc {
  margin-top: 0;
}

.p-catalog-set .img {
  width: 100%;
  min-width: 0;
  aspect-ratio: 2/1;
  overflow: hidden;
}

.p-catalog-set .img img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-image: url(../img/common/rectangle-square.svg);
  mask-image: url(../img/common/rectangle-square.svg);
}

@media screen and (max-width: 1399px) {
  .p-catalog-set .img {
    aspect-ratio: 1.618/1;
  }
}

@media screen and (max-width: 1199px) {
  .p-catalog-set .img {
    aspect-ratio: 1.4142/1;
  }
}

@media screen and (max-width: 991px) {
  .p-catalog-set .img {
    aspect-ratio: 1/1;
  }
}

@media screen and (max-width: 767px) {
  .p-catalog-set .content {
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
  }

  .p-catalog-set .desc {
    grid-column: 2;
    grid-row: 2;
    margin-top: clamp(2.25rem, 1.375rem + 1.9vw, 3.75rem);
  }

  .p-catalog-set .img {
    grid-column: 1/4;
    grid-row: 1;
    aspect-ratio: 2/1;
  }
}

@media screen and (max-width: 575px) {
  .p-catalog-set .title .text .lg {
    font-size: 1.2em;
  }

  .p-catalog-set .desc .br-control {
    display: none;
  }
}

/* 
model
---------------------------------------------------------------- */
/* .p-lower-header */
.p-lower-header .img--model img {
  -o-object-position: 0 53%;
  object-position: 0 53%;
}

/* .p-model-message */
.p-model-message {
  padding: clamp(6rem, 3.5rem + 5.2vw, 10rem) 0;
  text-align: center;
  position: relative;
}

.p-model-message::before {
  content: "";
  width: clamp(28.75rem, 8.063rem + 43.1vw, 61.9375rem);
  aspect-ratio: 79.16/45.19;
  background-color: #f6f3ee;
  -webkit-mask-image: url(../img/common/wave02.svg);
  mask-image: url(../img/common/wave02.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
  position: absolute;
  z-index: -10;
  bottom: calc(clamp(3.75rem, -3.25rem + 14.6vw, 15rem) * -1);
  left: calc(clamp(3.75rem, -5.625rem + 19.5vw, 18.75rem) * -1);
}

@media screen and (max-width: 767px) {
  .p-model-message::before {
    bottom: clamp(-5rem, -5.907rem + 4.5vw, -3.75rem);
    left: clamp(-6.25rem, -8.016rem + 8.9vw, -3.75rem);
  }
}

.p-model-message .copy {
  font-size: clamp(1.5rem, 0.875rem + 1.3vw, 2.5rem);
  font-weight: 700;
}

.p-model-message .copy .lg {
  font-size: 1.5em;
}

.p-model-message .desc {
  margin-top: 1.6em;
}

/* .p-model-voice */
.p-model-voice {
  position: relative;
  z-index: 10;
}

.p-model-voice .model-list {
  margin-top: clamp(4.5rem, 2.625rem + 3.9vw, 7.5rem);
}

.p-model-voice .model-item {
  display: grid;
  grid-template-columns: 1fr 30%;
  gap: 0 clamp(1.5rem, 0.125rem + 2.9vw, 3.75rem);
  padding: clamp(2.5rem, 1rem + 3.2vw, 5rem);
  position: relative;
  overflow-x: clip;
}

.p-model-voice .model-item .bg {
  width: 100%;
  height: 100%;
  background-color: #e2eadc;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-image: url(../img/common/rectangle-landscape.svg);
  mask-image: url(../img/common/rectangle-landscape.svg);
  position: absolute;
  z-index: -10;
}

.p-model-voice .model-item .model-header {
  grid-column: 1;
  grid-row: 1;
  place-content: end;
}

.p-model-voice .model-item .model-header .title {
  font-size: clamp(1.25rem, 0.75rem + 1.4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.5;
  color: #468b46;
}

.p-model-voice .model-item .model-header .role {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.4em 0.6em;
  margin-top: 0.8em;
  background-color: #468b46;
  color: #ffffff;
  font-size: clamp(0.875rem, 0.75rem + 0.2vw, 1rem);
}

.p-model-voice .model-item .desc {
  grid-column: 1;
  grid-row: 2;
  margin-top: 2em;
  text-align: justify;
}

.p-model-voice .model-item .desc p:not(:first-child) {
  margin-top: 1em;
}

.p-model-voice .model-item .img {
  grid-column: 2;
  grid-row: 1/3;
  position: relative;
}

.p-model-voice .model-item .img img {
  position: absolute;
  bottom: calc(clamp(2.5rem, 1rem + 3.2vw, 5rem) * -1);
  z-index: -10;
}

.p-model-voice .model-item:nth-child(2n) {
  direction: rtl;
}

.p-model-voice .model-item:nth-child(2n) .model-header,
.p-model-voice .model-item:nth-child(2n) .desc {
  direction: ltr;
}

.p-model-voice .model-item:not(:first-child) {
  margin-top: clamp(3.75rem, 3rem + 1.6vw, 5rem);
}

.p-model-voice .model-item:nth-child(1) .img img {
  width: clamp(22.5rem, 21.5rem + 2.8vw, 25rem);
  left: clamp(0rem, -0.875rem + 2.5vw, 2.25rem);
}

.p-model-voice .model-item:nth-child(2) .img img {
  width: clamp(21.25rem, 18.5rem + 5.7vw, 25.625rem);
  right: clamp(-3.25rem, -4.625rem + 3.7vw, 0rem);
  scale: -1 1;
}

@media screen and (max-width: 575px) {
  .p-model-voice .model-item {
    grid-template-columns: 1fr;
    padding-bottom: 0;
    padding-inline: clamp(1.25rem, -0.303rem + 7.8vw, 2.5rem);
  }

  .p-model-voice .model-item .model-header {
    grid-column: 1;
    grid-row: 1;
  }

  .p-model-voice .model-item .model-header .title {
    font-size: clamp(1.125rem, 0.023rem + 5.5vw, 2rem);
  }

  .p-model-voice .model-item .desc {
    grid-column: 1;
    grid-row: 2;
  }

  .p-model-voice .model-item .img {
    grid-column: 1;
    grid-row: 3;
    margin-top: 1.75rem;
  }

  .p-model-voice .model-item .img img {
    position: static;
  }

  .p-model-voice .model-item:nth-child(2n) {
    direction: initial;
  }

  .p-model-voice .model-item:nth-child(2n) .model-header,
  .p-model-voice .model-item:nth-child(2n) .desc {
    direction: initial;
  }

  .p-model-voice .model-item:nth-child(1) .img img {
    width: 100%;
    translate: 10% 0;
  }

  .p-model-voice .model-item:nth-child(2) .img img {
    width: 100%;
  }
}

/* .p-model-recruit */
.p-model-recruit {
  padding-top: clamp(6rem, 3.5rem + 5.2vw, 10rem);
  overflow-y: clip;
  position: relative;
}

.p-model-recruit::before {
  content: "";
  width: clamp(28.75rem, 9.063rem + 41vw, 60.3125rem);
  aspect-ratio: 79.16/45.19;
  background-color: #f6f3ee;
  -webkit-mask-image: url(../img/common/wave01.svg);
  mask-image: url(../img/common/wave01.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
  position: absolute;
  z-index: -10;
  top: calc(clamp(3.75rem, -2.5rem + 13vw, 13.75rem) * -1);
  right: calc(clamp(6.25rem, 0rem + 13vw, 16.25rem) * -1);
}

.p-model-recruit .content {
  max-width: 65.625rem;
  margin-inline: auto;
  margin-top: clamp(3.75rem, 2.25rem + 3.2vw, 6.25rem);
}

/* 
contact
---------------------------------------------------------------- */
/* .p-contact-access */
.p-contact-access {
  max-width: 65.625rem;
  margin-inline: auto;
  margin-top: clamp(6rem, 5.125rem + 1.9vw, 7.5rem);
  position: relative;
}

.p-contact-access::before {
  content: "";
  width: clamp(28.75rem, 8.063rem + 43.1vw, 61.9375rem);
  aspect-ratio: 79.16/45.19;
  background-color: #f6f3ee;
  -webkit-mask-image: url(../img/common/wave02.svg);
  mask-image: url(../img/common/wave02.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
  position: absolute;
  z-index: -10;
  bottom: calc(clamp(9.25rem, 4.875rem + 9.1vw, 16.25rem) * -1);
  left: calc(clamp(5rem, -15.25rem + 42.2vw, 37.5rem) * -1);
}

@media screen and (max-width: 767px) {
  .p-contact-access::before {
    bottom: clamp(-10rem, -10.544rem + 2.7vw, -9.25rem);
    left: clamp(-11.25rem, -15.738rem + 22.4vw, -5rem);
  }
}

.p-contact-access .access {
  padding: clamp(2.25rem, 1.375rem + 1.9vw, 3.75rem);
  border: 1px solid #468b46;
  border-radius: 0.6em;
}

.p-contact-access .title {
  font-size: clamp(1.25rem, 1.125rem + 0.3vw, 1.5rem);
  font-weight: 700;
  line-height: 1;
}

.p-contact-access .info {
  margin-top: 1.4em;
}

.p-contact-access .time {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em 1.25em;
  margin-top: 0.6em;
  font-size: clamp(0.75rem, 0.625rem + 0.2vw, 0.875rem);
}

.p-contact-access .button {
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
  margin-top: 1.4em;
}

@media screen and (max-width: 575px) {
  .p-contact-access .access {
    padding-inline: clamp(1rem, -1.344rem + 10vw, 2.25rem);
  }

  .p-contact-access .button {
    padding-inline: 1em;
    font-size: clamp(0.875rem, 0.712rem + 0.8vw, 1rem);
  }
}

/* .p-contact-mail */
.p-contact-mail {
  max-width: 82.5rem;
  margin-inline: auto;
  margin-top: clamp(6rem, 5.125rem + 1.9vw, 7.5rem);
}

.p-contact-mail .mail-message {
  margin-top: clamp(2.25rem, 1.375rem + 1.9vw, 3.75rem);
}

.p-contact-mail .mail-message .bullet {
  margin-top: 1em;
}

.p-contact-mail .form {
  margin-top: clamp(2.25rem, 1.375rem + 1.9vw, 3.75rem);
}

.p-contact-mail .form .c-table--contact {
  position: relative;
}

.p-contact-mail .form .c-table--contact::before {
  content: "";
  width: clamp(28.75rem, 9.063rem + 41vw, 60.3125rem);
  aspect-ratio: 79.16/45.19;
  background-color: #f6f3ee;
  -webkit-mask-image: url(../img/common/wave01.svg);
  mask-image: url(../img/common/wave01.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
  position: absolute;
  z-index: -10;
  top: 0;
  right: calc(50% - 55dvw);
}

@media screen and (max-width: 575px) {
  .p-contact-mail .form .c-table--contact::before {
    top: 15%;
    right: clamp(-12.5rem, -23.48rem + 54.9vw, -3.75rem);
  }
}

.p-contact-mail .form .c-table--contact::after {
  content: "";
  width: clamp(28.75rem, 8.063rem + 43.1vw, 61.9375rem);
  aspect-ratio: 79.16/45.19;
  background-color: #f6f3ee;
  -webkit-mask-image: url(../img/common/wave02.svg);
  mask-image: url(../img/common/wave02.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
  position: absolute;
  z-index: -10;
  bottom: 25%;
  left: calc(50% - 55dvw);
}

.p-contact-mail .form .policy {
  position: relative;
}

.p-contact-mail .form .policy::before {
  content: "";
  width: clamp(28.75rem, 9.063rem + 41vw, 60.3125rem);
  aspect-ratio: 79.16/45.19;
  background-color: #f6f3ee;
  -webkit-mask-image: url(../img/common/wave01.svg);
  mask-image: url(../img/common/wave01.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
  position: absolute;
  z-index: -10;
  top: -65%;
  right: calc(50% - 55dvw);
}

@media screen and (max-width: 575px) {
  .p-contact-mail .form .policy::before {
    right: clamp(-12.5rem, -23.48rem + 54.9vw, -3.75rem);
  }
}

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