@charset "UTF-8";
/*リセットcss
***************************************************************/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

/*ルートフォント設定
***************************************************************/
html {
  font-size: 62.5%;
}
@media screen and (max-width: 1220px) and (min-width: 768px) {
  html {
    font-size: calc(10 / 1220 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 62.5%;
  }
}
@media screen and (max-width: 767px) {
  html {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  html::-webkit-scrollbar {
    display: none;
  }
}

/* base（基本）設定
***************************************************************/
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #000000;
}
body.no-scroll {
  overflow: hidden !important;
}

a {
  text-decoration: none;
  transition: 0.3s;
  color: inherit;
}
@media (any-hover: hover) {
  a:hover {
    cursor: pointer;
  }
}

picture,
img,
a,
span {
  display: inline-block;
}

video,
img,
svg {
  width: 100%;
  height: 100%;
}

.loading {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #fff;
  display: grid;
  place-content: center;
  transition: all 1s ease;
}
.loading.js-loading-end {
  opacity: 0;
  visibility: hidden;
}

.loading__text {
  font-size: 2rem;
  font-family: "Overpass", sans-serif;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.loading__text img {
  width: 3rem;
  height: 3rem;
  animation: spin 1.5s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* 共通inner
***************************************************************/
.l-inner {
  width: 100%;
  max-width: 1220px;
  height: inherit;
  padding: 0 4rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    width: 100%;
    max-width: 690px;
    padding: 0 2rem;
  }
}

.l-inner--narrow {
  width: 100%;
  max-width: 1080px;
  height: inherit;
  padding: 0 4rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-inner--narrow {
    width: 100%;
    max-width: 440px;
    padding: 0 2rem;
  }
}

/* header
***************************************************************/
.l-header {
  width: 100%;
  position: fixed; /*header固定*/
  top: 0;
  left: 0;
  z-index: 100;
  background: #fefefe;
}

body { /*drawerOPEN時背景を固定*/ }
body.drawer-active {
  height: 100%;
  overflow: hidden;
}

.l-header__inner {
  display: grid;
  grid-template-columns: 17.9rem 1fr;
  padding-inline: 4rem;
  max-width: 133.2rem;
  margin-inline: auto;
  align-items: center;
  height: 10rem;
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    padding-inline: 2rem;
    height: 7.2rem;
  }
}

.l-header__logo {
  width: 23.7rem;
  height: auto;
  margin-left: 5.5rem;
  transition: all 0.3s ease;
}
.l-header__logo img {
  width: 100%;
  height: auto;
}
.l-header__logo a {
  transition: all 0.3s ease;
  display: inline-block;
}
@media (any-hover: hover) {
  .l-header__logo a:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 18.9rem;
    margin-left: 0;
  }
}

.l-header__nav {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .l-header__nav {
    display: none;
  }
}
@media (max-width: 1220px) {
  .l-header__nav {
    gap: 2.5rem;
  }
}

.l-header__list {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.l-header__list li a {
  font-family: "Overpass", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .l-header__list li a {
    font-size: 1.6rem;
  }
}
@media (any-hover: hover) {
  .l-header__list li a:hover {
    color: #105F00;
  }
}
@media (max-width: 1220px) {
  .l-header__list {
    gap: 2.5rem;
  }
}

.l-header__cta {
  display: flex;
  gap: 4rem;
}
@media (max-width: 1220px) {
  .l-header__cta {
    gap: 2.5rem;
  }
}

/* headerSP
***************************************************************/
.l-header__drawer-icon {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header__drawer-icon {
    position: fixed;
    top: 0.8rem;
    right: 2rem;
    width: 5.6rem;
    height: 5.6rem;
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    justify-content: center;
    align-items: center;
    background: #000;
    border-radius: 100vmax;
  }
  .l-header__drawer-icon.is-checked .l-header__drawer-icon-bar:nth-of-type(1) {
    transform: rotate(45deg);
    translate: 0 0.5rem;
  }
  .l-header__drawer-icon.is-checked .l-header__drawer-icon-bar:nth-of-type(2) {
    display: none;
  }
  .l-header__drawer-icon.is-checked .l-header__drawer-icon-bar:nth-of-type(3) {
    transform: rotate(-45deg);
    translate: 0 -0.5rem;
  }
}

.l-header__drawer-icon-bar {
  width: 3rem;
  height: 0.2rem;
  background: #FFFFFF;
  border-radius: 2px;
  transition: all 0.3s linear;
}

/* (ドロワー中身）
***************************************************************/
.l-header__drawer {
  margin-top: 7.2rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background: #105F00;
  z-index: 20;
  overflow-y: scroll;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.l-header__drawer.is-checked {
  opacity: 1;
  pointer-events: auto;
}

.l-header__drawer-body {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding-block: 10rem 4rem;
}

.l-header__drawer-list {
  width: 8.6rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.l-header__drawer-list li a {
  color: #FFFFFF;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  padding-left: 1.9rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-header__drawer-list li a {
    font-size: 2rem;
  }
}
.l-header__drawer-list li a::before {
  content: "";
  position: absolute;
  top: 40%;
  left: -0.2rem;
  width: 1.3rem;
  height: 0.8rem;
  background: url(../img/drawer-arrow.svg) no-repeat center center/cover;
}

/* footer
***************************************************************/
.l-footer {
  padding-block: 6.4rem 0.7rem;
  background: #F7F6F4;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding-block: 5rem 1rem;
  }
}

.l-footer__contents {
  display: grid;
  grid-template-columns: 23.7rem 1fr auto;
  gap: 4rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .l-footer__contents {
    display: flex;
    flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .l-footer__logo {
    width: 25.9rem;
  }
}

.l-footer__nav-list {
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .l-footer__nav-list {
    flex-direction: column;
    gap: 2.4rem;
  }
}
.l-footer__nav-list li {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .l-footer__nav-list li {
    font-size: 1.6rem;
  }
}
.l-footer__nav-list li a {
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .l-footer__nav-list li a:hover {
    color: #105F00;
  }
}

.l-footer__copy {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.04em;
  font-family: "Overpass", sans-serif;
}
@media screen and (max-width: 767px) {
  .l-footer__copy {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__copy {
    font-size: 1.3rem;
  }
}

.l-footer__attention {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.04em;
  margin-top: 7.2rem;
}
@media screen and (max-width: 767px) {
  .l-footer__attention {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__attention {
    font-size: 1.2rem;
    margin-top: 0.8rem;
  }
}

/* 共通ボタン
***************************************************************/
.c-button {
  display: inline;
  padding: 1rem 2rem;
  border: 1px solid #000;
  border-radius: 0.5rem;
}
@media (any-hover: hover) {
  .c-button:hover {
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.5s ease;
  }
}

/* ボタン(コンタクト)
***************************************************************/
.c-button__contact {
  display: inline;
  padding: 1.5rem 3.2rem;
  display: flex;
  align-items: center;
  border-radius: 0.8rem;
  border: 1px solid #105F00;
  background: #FFF;
  color: #105F00;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media (any-hover: hover) {
  .c-button__contact:hover {
    transition: all 0.5s ease;
    background: #FDD401;
  }
}
@media screen and (max-width: 767px) {
  .c-button__contact {
    max-width: 20rem;
    padding: 2rem 3rem;
  }
}

/* ボタン(バナー)
***************************************************************/
.c-button__banner {
  display: inline-block;
  padding: 0.5rem 2.8rem 0.7rem 2.8rem;
  border-radius: 0.8rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-button__banner {
    max-width: 24rem;
    padding: 0.5rem 2.7rem 0.7rem 2.7rem;
  }
}
.c-button__banner::before, .c-button__banner::after {
  content: "";
  position: absolute;
  inset: 0;
  transition: opacity 0.5s ease;
}
.c-button__banner::before {
  background: linear-gradient(265deg, #99B901 2.64%, #105F00 81.03%);
  opacity: 1;
}
.c-button__banner::after {
  background: #FDD401;
  opacity: 0;
}
@media (any-hover: hover) {
  .c-button__banner:hover::before {
    opacity: 0;
  }
  .c-button__banner:hover::after {
    opacity: 1;
  }
}

.c-button__banner-head {
  max-width: 12.6rem;
  margin-inline: auto;
  border-radius: 0.9rem;
  background: #FFFFFF;
  color: #105F00;
  white-space: nowrap;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  padding: 0.1rem 0.5rem 0.2rem 1.1rem;
  position: relative;
  z-index: 1;
}
.c-button__banner-head span {
  font-weight: 900;
}

.c-button__banner-text {
  color: #FFF;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
.c-button__banner-text span {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}

/* ボタン（more）
***************************************************************/
.c-button__more {
  display: inline-block;
  width: 24rem;
  padding: 1.9rem 3.7rem;
  -moz-text-align-last: left;
       text-align-last: left;
  border-radius: 0.8rem;
  border: 1px solid #105F00;
  background: #FFF;
  color: #105F00;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  position: relative;
}
.c-button__more::after {
  content: "";
  position: absolute;
  width: 1.3rem;
  height: 2.2rem;
  background: url(../img/icon-button-arrow.svg) no-repeat center center/cover;
  top: 50%;
  right: 3.2rem;
  transform: translateY(-50%);
}
@media (any-hover: hover) {
  .c-button__more:hover {
    transition: all 0.5s ease;
    background: #FDD401;
  }
}

/* ボタン(CTA)
***************************************************************/
.c-button__cta {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  align-items: flex-end;
  padding-left: 2.5rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
}
.c-button__cta::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 3.1rem;
  background: #FFFFFF;
  left: 0.5rem;
  top: 0.6rem;
  transform: rotate(-30deg);
}
@media screen and (max-width: 767px) {
  .c-button__cta::before {
    height: 25px;
    left: 0.5rem;
    top: 0.6rem;
    transform: rotate(-30deg);
  }
}
.c-button__cta::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 3.1rem;
  background: #FFFFFF;
  right: -0.5rem;
  top: 0.6rem;
  transform: rotate(30deg);
}
@media screen and (max-width: 767px) {
  .c-button__cta::after {
    height: 25px;
    right: -0.5rem;
    top: 0.6rem;
    transform: rotate(30deg);
  }
}

.c-button__cta-head {
  color: #FFFFFF;
  font-size: 2.667rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.0498687664em;
}
@media screen and (max-width: 767px) {
  .c-button__cta-head {
    font-size: 2.667rem;
  }
}
@media screen and (max-width: 767px) {
  .c-button__cta-head {
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .c-button__cta-head {
    font-size: 2.2rem;
  }
}

.p-cta__number svg {
  width: 1.1rem;
  height: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-cta__number svg {
    width: 0.92rem;
    height: 2.7rem;
  }
}

.c-button__cta-main {
  display: inline-block;
  padding: 1.85rem 3.1rem 1.75rem 3.2rem;
  border-radius: 0.8rem;
  background: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.2rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 767px) {
  .c-button__cta-main {
    box-shadow: 0px 3.347px 3.347px 0px rgba(0, 0, 0, 0.25);
    padding: 1.57rem 2.8rem 1.36rem 2.8rem;
  }
}
@media (any-hover: hover) {
  .c-button__cta-main:hover {
    transition: all 0.5s ease;
    background: #FDD401;
  }
}

.c-button__cta-body {
  margin-top: 1.3rem;
}
@media screen and (max-width: 767px) {
  .c-button__cta-body {
    margin-top: 1rem;
  }
}

.c-button__cta-icon svg {
  width: 2.8rem;
  height: 4rem;
}
@media screen and (max-width: 767px) {
  .c-button__cta-icon svg {
    width: 2.3rem;
    height: 3.3rem;
  }
}

.c-button__cta-text {
  color: #105F00;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  margin-top: -0.6rem;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-button__cta-text {
    font-size: 2.4rem;
  }
}
.c-button__cta-text .large {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-button__cta-text .large {
    font-size: 4rem;
  }
}
.c-button__cta-text .small {
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .c-button__cta-text {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.05em;
    margin-top: 0;
    gap: 0rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .c-button__cta-text {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-button__cta-text .large {
    font-size: 3.3rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .c-button__cta-text .large {
    font-size: 3.3rem;
  }
}

/* セクション共通見出し
***************************************************************/
.c-section__head {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .c-section__head {
    gap: 0.7rem;
  }
}

.c-section__title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-section__title {
    font-size: 4rem;
  }
}
.c-section__title::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50%;
  background: url(../img/deco_title.svg) no-repeat center center/cover;
  width: 6.4rem;
  height: 0.8rem;
}
@media screen and (max-width: 767px) {
  .c-section__title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .c-section__title {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .c-section__title::before {
    content: "";
    position: absolute;
    width: 5.6rem;
    height: 0.7rem;
  }
}

.c-section__title-en {
  font-family: "Overpass", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-section__title-en {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .c-section__title-en {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .c-section__title-en {
    font-size: 1.4rem;
  }
}

/* (MV)
***************************************************************/
.p-mv {
  margin-top: 10rem;
  position: relative;
  overflow: hidden;
  background: #fff;
  z-index: 0;
  opacity: 0;
}
.p-mv::before {
  content: "";
  position: absolute;
  background: url(../img/bg_mv.webp) no-repeat center center/cover;
  width: 177.6rem;
  height: 81.7rem;
  top: -0.6rem;
  left: 50%;
  translate: -41%;
  z-index: -1;
  transform: scale(0.8);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s ease-out;
}
.p-mv.is-show {
  opacity: 1;
}
.p-mv.is-show::before {
  transform: scale(1);
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .p-mv {
    margin-top: 7.2rem;
  }
  .p-mv::before {
    translate: -35%;
  }
}
@media screen and (max-width:640px) {
  .p-mv::before {
    width: 68.8rem;
    height: 31.6rem;
    top: 0;
    translate: -28%;
  }
}

.p-mv__inner {
  max-width: calc(100rem + 8rem);
  margin-inline: auto;
  display: flex;
  gap: 4.9rem;
  padding-block: 13.3rem 4rem;
}
@media screen and (max-width: 767px) {
  .p-mv__inner {
    gap: 0;
  }
}
@media screen and (max-width:640px) {
  .p-mv__inner {
    max-width: 35rem;
    padding-inline: 2rem;
    padding-block: 4.5rem 5rem;
    flex-direction: column;
  }
}

.p-mv__contents {
  width: max(28.4rem, 228px);
  flex-shrink: 0;
}
@media screen and (max-width:640px) {
  .p-mv__contents {
    width: 100%;
    display: contents;
  }
}

.p-mv__title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (max-width:640px) {
  .p-mv__title-wrapper {
    gap: 0.8rem;
    order: 1;
    padding-left: 3.4rem;
  }
}

.p-mv__title {
  font-size: 4.8rem;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-mv__title {
    font-size: 4.8rem;
  }
}
@media screen and (max-width:640px) {
  .p-mv__title {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width:640px) and (max-width: 767px) {
  .p-mv__title {
    font-size: 3.2rem;
  }
}

.p-mv__sub-title {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-mv__sub-title {
    font-size: 1.6rem;
  }
}
@media screen and (max-width:640px) {
  .p-mv__sub-title {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width:640px) and (max-width: 767px) {
  .p-mv__sub-title {
    font-size: 1.5rem;
  }
}

.p-mv__banner {
  margin-top: 3rem;
}
@media screen and (max-width:640px) {
  .p-mv__banner {
    order: 4;
    margin-top: 3.8rem;
    width: 28.4rem;
    margin-inline: auto;
  }
}

.p-mv__banner-catch {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
  color: #105F00;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  padding-inline: 0.475rem;
  position: relative;
  padding-left: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-mv__banner-catch {
    font-size: 2rem;
  }
}
.p-mv__banner-catch::before, .p-mv__banner-catch::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 2.15rem;
  background: #105F00;
}
.p-mv__banner-catch::before {
  left: 0.1rem;
  rotate: -27deg;
}
.p-mv__banner-catch::after {
  right: -0.8rem;
  rotate: 27deg;
}

.p-mv__banner-date-number {
  font-family: "Overpass", sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-mv__banner-date-number {
    font-size: 2.4rem;
  }
}

.p-mv__banner-date {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-mv__banner-date {
    font-size: 1.6rem;
  }
}

.p-mv__banner-box {
  border-radius: 0.8rem;
  background: var(--green, #99B901);
  padding: 1.3rem 1.2rem 1.1rem 0.9rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.p-mv__banner-head {
  border-radius: 4.2rem;
  background: #FFF;
  color: #105F00;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0.8rem 0.5rem 1.2rem;
}

.p-mv__banner-head-text {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-mv__banner-head-text {
    font-size: 1.6rem;
  }
}

.p-mv__banner-head-text--big {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  padding-bottom: 0.4rem;
}
@media screen and (max-width: 767px) {
  .p-mv__banner-head-text--big {
    font-size: 3.2rem;
  }
}
.p-mv__banner-head-text--big .enhance-icon svg {
  width: 1.6rem;
  height: 2.7rem;
  position: relative;
  top: 0.4rem;
  left: -0.3rem;
}

.p-mv__banner-body {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: 5px;
  color: #FFF;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 0.9rem;
}

.p-mv__banner-text {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-left: 1.1rem;
}
@media screen and (max-width: 767px) {
  .p-mv__banner-text {
    font-size: 1.6rem;
  }
}

.p-mv__banner-number {
  position: relative;
  top: 0.4rem;
  left: -0.6rem;
}
.p-mv__banner-number svg {
  width: 0.9rem;
  height: 2.7rem;
}

.p-mv__banner-text--big {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-mv__banner-text--big {
    font-size: 2rem;
  }
}

.p-mv__img-contents {
  width: 58.2%;
  position: relative;
  padding-top: 7.7rem;
}
.p-mv__img-contents::before {
  content: "";
  position: absolute;
  width: 58.7rem;
  height: 58.7rem;
  aspect-ratio: 1;
  background: #FDD401;
  z-index: 0;
  border-radius: 100%;
  top: -9rem;
  left: 12.9rem;
}
@media screen and (max-width: 767px) {
  .p-mv__img-contents::before {
    width: 28rem;
    height: 28rem;
    left: 4rem;
    top: 2rem;
  }
}
@media screen and (max-width:640px) {
  .p-mv__img-contents {
    width: 33.5rem;
    max-width: 100%;
    order: 2;
    padding-top: 10.5rem;
  }
}

.p-mv__img {
  position: relative;
}
@media screen and (max-width:640px) {
  .p-mv__img {
    width: 27.8rem;
    margin-left: -2.5rem;
  }
}

.p-mv__bubble {
  position: absolute;
  width: 13rem;
  height: 13rem;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  border-radius: 100%;
  z-index: 1;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-mv__bubble {
    width: 8.9rem;
    height: 8.9rem;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-mv__bubble {
    font-size: 1.4rem;
  }
}
.p-mv__bubble span {
  color: #99B901;
  font-size: 2.8rem;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-mv__bubble span {
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-mv__bubble span {
    font-size: 1.9rem;
  }
}
.p-mv__bubble::before {
  content: "";
  position: absolute;
  width: 13rem;
  height: 13rem;
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  border-radius: 100%;
  background: linear-gradient(180deg, #99B901 0%, #105F00 100%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-mv__bubble::before {
    width: 8.9rem;
    height: 8.9rem;
  }
}
.p-mv__bubble::after {
  content: "";
  position: absolute;
  width: 12.4rem;
  height: 12.4rem;
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background: #fff;
  border-radius: 100%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-mv__bubble::after {
    width: 8.5rem;
    height: 8.5rem;
  }
}

.circle--01 {
  top: -4.5rem;
  right: 10.6rem;
}
@media screen and (max-width: 767px) {
  .circle--01 {
    top: 1.7rem;
    right: 11.5rem;
  }
}

.circle--02 {
  top: 1rem;
  right: -2.7rem;
}
@media screen and (max-width: 767px) {
  .circle--02 {
    top: 4.9rem;
    right: 2.6rem;
  }
}

.circle--03 {
  top: 14.2rem;
  right: -8.4rem;
}
@media screen and (max-width: 767px) {
  .circle--03 {
    top: 14rem;
    right: -1.5rem;
  }
}

.p-mv__bubble-text {
  text-align: center;
}

.p-mv__cta {
  display: none;
}
@media screen and (max-width:640px) {
  .p-mv__cta {
    display: flex;
    flex-direction: column-reverse;
    gap: 2.4rem;
    order: 3;
    align-items: center;
    margin-top: 3.3rem;
  }
}

/* (Suggestion)
***************************************************************/
.p-suggestion {
  padding-block: 10rem 5.8rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-suggestion {
    padding-block: 5.2rem 5rem;
  }
}

.p-suggestion__container {
  padding-bottom: 5.1rem;
  position: relative;
}
.p-suggestion__container::before {
  content: "";
  position: absolute;
  width: 107vw;
  min-width: 154rem;
  min-height: 77rem;
  border-radius: 0 0 100vmax 100vmax;
  background: radial-gradient(10.11% 10.11% at 50.2% 100%, #FDD401 0%, #F9EA9E 44.64%, #F7F6F4 97.75%);
  aspect-ratio: 1;
  z-index: -1;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50%;
}
@media screen and (max-width: 767px) {
  .p-suggestion__container {
    padding-bottom: 4.1rem;
  }
  .p-suggestion__container::before {
    width: 106.9333333333vw;
    min-width: 40.1rem;
    min-height: 103.4rem;
  }
}

.p-suggestion__title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-suggestion__title {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-suggestion__title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-suggestion__title {
    font-size: 2.2rem;
  }
}

.p-suggestion__contents {
  position: relative;
}

.p-suggestion__bubble {
  position: absolute;
}

.bubble01 {
  width: max(23.5rem, 164px);
  height: max(23.2rem, 162px);
  top: 9.6rem;
  left: 9.8%;
  background: url(../img/bg_suggestion-bubble01.webp) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .bubble01 {
    width: 24.2rem;
    height: 24rem;
    top: 3.8rem;
    left: 50%;
    translate: -48%;
  }
}

.bubble02 {
  width: max(22.8rem, 159px);
  height: max(26.6rem, 186px);
  top: 3.7rem;
  left: 49%;
  translate: -50%;
  background: url(../img/bg_suggestion-bubble02.webp) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .bubble02 {
    width: 23rem;
    height: 26.7rem;
    top: 45.7rem;
    left: 50%;
    translate: -50%;
  }
}

.bubble03 {
  width: max(23.8rem, 166px);
  height: max(24.5rem, 171px);
  top: 9.5rem;
  right: 9.3%;
  background: url(../img/bg_suggestion-bubble03.webp) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .bubble03 {
    width: 23.7rem;
    height: 24.7rem;
    top: 24.8rem;
    left: 50%;
    translate: -49%;
  }
}

.p-suggestion__bubble-text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  position: absolute;
  translate: -50%;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-suggestion__bubble-text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-suggestion__bubble-text {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-suggestion__bubble-text {
    font-size: 1.8rem;
  }
}
.bubble01 .p-suggestion__bubble-text {
  top: 14%;
  left: 50%;
}
.bubble02 .p-suggestion__bubble-text {
  top: 14%;
  left: 50%;
}
@media screen and (max-width: 767px) {
  .bubble02 .p-suggestion__bubble-text {
    top: 11%;
    left: 51%;
  }
}
.bubble03 .p-suggestion__bubble-text {
  top: 14%;
  left: 50%;
}
@media screen and (max-width: 767px) {
  .bubble03 .p-suggestion__bubble-text {
    left: 53%;
  }
}

.p-suggestion__img {
  text-align: center;
  margin-top: max(24.8rem, 173px);
}
.p-suggestion__img img {
  width: 43.8rem;
  height: 29.5rem;
}
@media screen and (max-width: 767px) {
  .p-suggestion__img {
    margin-top: 69.8rem;
  }
  .p-suggestion__img img {
    width: 26.1rem;
    height: 16.4rem;
    padding-right: 1.7rem;
  }
}

.p-suggestion__foot {
  position: relative;
}

.p-suggestion__drop {
  position: relative;
  width: 50.2rem;
  height: 63rem;
  margin-inline: auto;
  padding-top: 24.1rem;
  text-align: center;
  padding-left: 0.4rem;
}
.p-suggestion__drop::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../img/bg_drop.svg) no-repeat center center/cover;
  top: 0;
  left: 0;
  z-index: -1;
  /* 初期状態：小さく */
  transform-origin: top center;
  transform: scale(var(--drop-scale, 0));
}
@media screen and (max-width: 767px) {
  .p-suggestion__drop {
    width: 33.8rem;
    height: 42.5rem;
    padding-top: 13.8rem;
    padding-left: 0;
  }
}

.p-suggestion__drop-head {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
}
.p-suggestion__drop-head img {
  width: 26.6rem;
}
.p-suggestion__drop-head span {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.8;
  letter-spacing: 0.05em;
  display: inline-block;
  padding-top: 1rem;
  padding-bottom: 0.4rem;
}
@media screen and (max-width: 767px) {
  .p-suggestion__drop-head {
    gap: 0.2rem;
  }
  .p-suggestion__drop-head img {
    width: 18.8rem;
    margin-left: -0.9rem;
  }
  .p-suggestion__drop-head span {
    font-size: 1.6rem;
  }
}

.p-suggestion__drop-main {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-top: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-suggestion__drop-main {
    font-size: 2.2rem;
    margin-top: 0.5rem;
  }
}

.p-suggestion__drop-foot {
  font-size: max(1.6rem, 11px);
  line-height: 2;
  letter-spacing: 0.05em;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-suggestion__drop-foot {
    font-size: 1.6rem;
    margin-top: 0.1rem;
  }
}

.p-suggestion__icon {
  position: absolute;
  opacity: 0;
}
.p-suggestion__icon.icon-left {
  width: 36.2rem;
  height: auto;
  left: 0;
  top: 11.8rem;
}
@media screen and (max-width: 767px) {
  .p-suggestion__icon.icon-left {
    width: 10.2rem;
    left: 0.6rem;
    top: -3.8rem;
  }
}
.p-suggestion__icon.icon-right {
  width: 34.2rem;
  height: auto;
  right: 0;
  top: 12.3rem;
}
@media screen and (max-width: 767px) {
  .p-suggestion__icon.icon-right {
    width: 9.7rem;
    right: 0.8rem;
    top: -3.7rem;
  }
}

/* (特徴)
***************************************************************/
.p-feature {
  padding-block: 10rem;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  .p-feature {
    padding-block: 5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-feature__inner {
    max-width: 40rem;
  }
}

.p-feature__wrapper {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 10rem;
  width: max(84rem, 672px);
  max-width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-feature__wrapper {
    margin-top: 2.8rem;
    gap: 8rem;
  }
}

.p-feature__container {
  display: flex;
}
.p-feature__container:nth-child(even) {
  flex-direction: row-reverse;
}
.p-feature__container.container02 {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-feature__container {
    flex-direction: column;
    gap: 0;
  }
  .p-feature__container:nth-child(even) {
    flex-direction: column;
  }
  .p-feature__container.container02 {
    margin-top: 0;
  }
  .p-feature__container.container03 {
    margin-top: 0;
  }
}

.container01, .container02, .container03 {
  position: relative;
}
.container01::before, .container02::before, .container03::before {
  content: "";
  position: absolute;
  background: url(../img/deco_feature.svg) no-repeat center center/cover;
  z-index: -1;
  width: 100.9rem;
  height: 60rem;
}
@media screen and (max-width: 767px) {
  .container01::before, .container02::before, .container03::before {
    width: 38.7rem;
    height: 23rem;
  }
}

.container01::before {
  top: -30rem;
  right: calc(50% + 12.5rem);
  transform: rotate(0deg);
}
@media screen and (max-width: 767px) {
  .container01::before {
    top: -5rem;
    right: calc(50% - 7rem);
  }
}

.container02::before {
  top: -35rem;
  left: calc(50% + 10rem);
  transform: rotate(123deg);
}
@media screen and (max-width: 767px) {
  .container02::before {
    top: -9rem;
    left: calc(50% - 7.4rem);
  }
}

.container03::before {
  top: -31rem;
  right: calc(50% + 12.5rem);
  transform: rotate(0deg);
}
@media screen and (max-width: 767px) {
  .container03::before {
    top: -6.5rem;
    right: calc(50% - 7rem);
  }
}

.p-feature__content {
  display: flex;
}

.p-feature__number {
  font-family: "Overpass", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  width: 3.6rem;
  flex-shrink: 0;
  padding-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-feature__number {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-feature__number {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.05em;
    padding-top: 1.1rem;
    width: 2.5rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-feature__number {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .container03 .p-feature__number {
    padding-top: 0.5rem;
  }
}

.p-feature__text-wrap {
  width: max(45rem, 360px);
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-feature__text-wrap {
    width: 100%;
    gap: 1rem;
  }
}

.p-feature__heading {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-feature__heading {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-feature__heading {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.05em;
    position: relative;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-feature__heading {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .container03 .p-feature__heading {
    margin-top: -0.7rem;
    margin-left: -0.4rem;
  }
}

.p-feature__text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-feature__text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .container03 .p-feature__text {
    margin-top: 0.5rem;
  }
}

.p-feature__img {
  position: relative;
}
.container01 .p-feature__img {
  top: 1.2rem;
  left: 1rem;
}
.container01 .p-feature__img img {
  width: 29.1rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .container01 .p-feature__img {
    top: 0;
    left: 0;
    text-align: center;
    margin-top: 1.2rem;
  }
  .container01 .p-feature__img img {
    width: 15.1rem;
  }
}
.container02 .p-feature__img {
  top: 3rem;
  right: 4rem;
}
.container02 .p-feature__img img {
  width: 31.1rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .container02 .p-feature__img {
    top: 0;
    right: 0;
    text-align: center;
    margin-top: 0.8rem;
  }
  .container02 .p-feature__img img {
    width: 18.1rem;
  }
}
.container03 .p-feature__img {
  top: 6rem;
  right: -2rem;
}
.container03 .p-feature__img img {
  width: 26.6rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .container03 .p-feature__img {
    top: 0;
    right: 0;
    text-align: center;
    margin-top: 0.8rem;
  }
  .container03 .p-feature__img img {
    width: 15.4rem;
  }
}

/* (機能)
***************************************************************/
.p-function {
  padding-block: 10rem;
  background: #F7F6F4;
}
@media screen and (max-width: 767px) {
  .p-function {
    padding-block: 5rem;
  }
}

.p-function__introduction {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-function__introduction {
    margin-top: 3.2rem;
    gap: 0.4rem;
  }
}

.p-function__head {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-family: "Overpass", sans-serif;
}
.p-function__head img {
  width: 23.7rem;
}
.p-function__head span {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.05em;
  display: inline-block;
  padding-top: 0.9rem;
}
@media screen and (max-width: 767px) {
  .p-function__head span {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-function__head img {
    width: 18.8rem;
  }
  .p-function__head span {
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.05em;
    padding-top: 0.7rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-function__head span {
    font-size: 1.6rem;
  }
}

.p-function__main {
  font-family: "Overpass", sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-function__main {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-function__main {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.8;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-function__main {
    font-size: 2.2rem;
  }
}

.p-function__card-wrap {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4rem 5rem;
}
@media screen and (max-width: 767px) {
  .p-function__card-wrap {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    padding-inline: 1.7rem;
    gap: 4.9rem;
    margin-top: 3.2rem;
  }
}

.p-function__card {
  padding: 2.4rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  background: #fff;
}

.p-function__card-icon {
  text-align: center;
}
.p-function__card-icon img {
  width: 11.2rem;
  height: auto;
}

.p-function__card-body {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.p-function__card-title {
  font-family: "Overpass", sans-serif;
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  padding: 1.15rem 0.5rem 1rem 0.5rem;
  white-space: nowrap;
  border-radius: 2rem;
}
.p-function__card-title.title--04 {
  font-feature-settings: "palt" 1;
}

.p-function__card-text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-function__card-text {
    font-size: 1.6rem;
  }
}

.p-function__more {
  margin-top: 4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-function__more {
    display: none;
  }
}

/* (CTA)
***************************************************************/
.p-cta {
  background: linear-gradient(267deg, #99B901 10.29%, #105F00 100%);
  padding-block: 5.4rem 4.4rem;
}
@media screen and (max-width: 767px) {
  .p-cta {
    padding-block: 3.3rem 2.6rem;
  }
}

/* (選ばれるポイント)
***************************************************************/
.p-point {
  padding-block: 10rem;
}
@media screen and (max-width: 767px) {
  .p-point {
    padding-block: 5rem;
  }
}

.p-point__intro {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-point__intro {
    gap: 0;
    margin-top: 3.2rem;
  }
}

.p-point__intro-top {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-point__intro-top {
    gap: 0.3rem;
  }
}
.p-point__intro-top img {
  width: 23.7rem;
  aspect-ratio: 237/50;
}
@media screen and (max-width: 767px) {
  .p-point__intro-top img {
    width: 18.8rem;
  }
}
.p-point__intro-top .text {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-family: "Overpass", sans-serif;
  padding-top: 0.9rem;
}
@media screen and (max-width: 767px) {
  .p-point__intro-top .text {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-point__intro-top .text {
    font-size: 1.6rem;
    padding-top: 1.1rem;
  }
}

.p-point__intro-text {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-point__intro-text {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-point__intro-text {
    font-size: 2.2rem;
  }
}

.p-point__intro-sub {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-point__intro-sub {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-point__intro-sub {
    font-size: 1.5rem;
    margin-top: 1rem;
  }
}

.p-point__tab-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-point__tab-list {
    display: none;
  }
}

.p-point__tab-item {
  display: flex;
  gap: 2.3rem;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 0.8rem;
  border-top-right-radius: 0.8rem;
  padding-block: 0.6rem 0.4rem;
  background: #D9D9D9;
}
@media screen and (max-width: 767px) {
  .p-point__tab-item {
    padding-block: 0.8rem;
  }
}
.p-point__tab-item.sp-tab01, .p-point__tab-item.sp-tab02 {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-point__tab-item.sp-tab01, .p-point__tab-item.sp-tab02 {
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  .p-point__tab-item.sp-tab01 {
    background: #105F00;
  }
}
@media screen and (max-width: 767px) {
  .p-point__tab-item.sp-tab02 {
    background: #E10048;
  }
}
.p-point__tab-item .tab-name {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.7857142857;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-point__tab-item .tab-name {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-point__tab-item .tab-name {
    font-size: 1.8rem;
    color: #fff;
  }
}
.p-point__tab-item .tab-number {
  font-family: "Overpass", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  padding-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-point__tab-item .tab-number {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-point__tab-item .tab-number {
    font-size: 2.4rem;
    line-height: 0.7;
    padding-top: 0.7rem;
    color: #fff;
  }
}
.p-point__tab-item.pc-tab01[aria-selected=true] {
  background: #105F00;
  color: #fff;
  pointer-events: none;
}
.p-point__tab-item.pc-tab01[aria-selected=false] {
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .p-point__tab-item.pc-tab01[aria-selected=false]:hover {
    cursor: pointer;
    color: #fff;
    background: #105F00;
  }
}
.p-point__tab-item.pc-tab02[aria-selected=true] {
  background: #E10048;
  color: #fff;
  pointer-events: none;
}
.p-point__tab-item.pc-tab02[aria-selected=false] {
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .p-point__tab-item.pc-tab02[aria-selected=false]:hover {
    cursor: pointer;
    background: #E10048;
    color: #fff;
  }
}

.p-point__tab-container {
  overflow: hidden;
}

.p-point__tab-contents {
  background: #F7F6F4;
  opacity: 0;
  visibility: hidden;
  height: 0;
  translate: 0 1.2rem;
  transition: opacity 0.3s ease, translate 0.3s ease;
}
.p-point__tab-contents.js-show {
  opacity: 1;
  visibility: visible;
  height: -moz-fit-content;
  height: fit-content;
  translate: 0;
}
@media screen and (max-width: 767px) {
  .p-point__tab-contents {
    opacity: 1;
    visibility: visible;
    height: -moz-fit-content;
    height: fit-content;
    translate: 0;
    margin-top: 3.4rem;
  }
}

.p-point__tab-content {
  padding: 4rem 10.8rem;
}
@media screen and (max-width: 767px) {
  .p-point__tab-content {
    padding: 2rem 2rem 1.4rem 2rem;
  }
}

.p-point__tab-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-point__tab-head {
    display: none;
  }
}

.content01 .p-point__tab-customer img {
  width: 33.4rem;
  max-width: 100%;
  height: auto;
  aspect-ratio: 334/191;
}
@media screen and (max-width: 767px) {
  .content01 .p-point__tab-customer img {
    width: 28.8rem;
  }
}
.content02 .p-point__tab-customer img {
  width: 34.2rem;
  max-width: 100%;
  height: auto;
  aspect-ratio: 342/191;
}
@media screen and (max-width: 767px) {
  .content02 .p-point__tab-customer img {
    width: 29.5rem;
  }
}

.content01 .p-point__tab-staff img {
  width: 39rem;
  max-width: 100%;
  height: auto;
  aspect-ratio: 780/453;
}
@media screen and (max-width: 767px) {
  .content01 .p-point__tab-staff img {
    width: 29.5rem;
  }
}
.content02 .p-point__tab-staff img {
  width: 38.6rem;
  max-width: 100%;
  height: auto;
  aspect-ratio: 772/453;
}
@media screen and (max-width: 767px) {
  .content02 .p-point__tab-staff img {
    width: 29.5rem;
  }
}

.p-point__tab-bubble {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-point__tab-bubble {
    font-size: 2rem;
  }
}
.content01 .p-point__tab-bubble.bubble-customer {
  padding: max(4.37rem, 34.9px) max(3.2rem, 25.6px) max(4.2rem, 33.6px) max(6rem, 48px);
  position: relative;
}
.content01 .p-point__tab-bubble.bubble-customer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/deco_fukidashi-customer.webp) no-repeat center center/contain;
}
.content01 .p-point__tab-bubble.bubble-staff {
  padding: max(3.6rem, 28.8px) max(5.63rem, 45px) max(3.7rem, 29.6px) max(3.07rem, 24.5px);
  position: relative;
}
.content01 .p-point__tab-bubble.bubble-staff::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/deco_fukidashi-staff.webp) no-repeat center center/contain;
}
.content02 .p-point__tab-bubble.bubble-customer {
  padding: max(4.1rem, 32.8px) max(3.2rem, 25.6px) max(4.2rem, 33.6px) max(6rem, 48px);
  position: relative;
  margin-left: -1rem;
}
.content02 .p-point__tab-bubble.bubble-customer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/deco_fukidashi-customer.webp) no-repeat center center/contain;
}
.content02 .p-point__tab-bubble.bubble-staff {
  padding: max(5.1rem, 40.8px) max(4.6rem, 37px) max(5.2rem, 41.6px) max(2.5rem, 20px);
  position: relative;
}
.content02 .p-point__tab-bubble.bubble-staff::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/deco_fukidashi-staff.webp) no-repeat center center/contain;
}

.p-point__tab-body {
  margin-top: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-point__tab-body {
    margin-top: 1.6rem;
    gap: 3.2rem;
  }
}

.p-point__flow {
  background: #FFFFFF;
  padding: 2rem;
  box-shadow: 0px 0px 3rem rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 2.4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-point__flow {
    flex-direction: column;
    gap: 1.6rem;
    padding: 2rem 1rem;
  }
}
.p-point__flow::before {
  content: "";
  position: absolute;
  width: 0.6rem;
  height: 3.8rem;
  background: url(../img/deco_dotted-line.svg) no-repeat center center/contain;
  z-index: -1;
  top: calc(100% - 0.3rem);
  left: 50%;
  translate: -50% 0;
}
.p-point__flow:last-of-type::before {
  content: "";
  position: absolute;
  width: 3.2rem;
  height: 5.2rem;
  background: url(../img/deco_dotted-line-arrow.svg) no-repeat center center/contain;
  z-index: -1;
  top: calc(100% - 0.3rem);
  left: 50%;
  translate: -50% 0;
}

.p-point__flow-title {
  border-radius: 100vmax;
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.8;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0.4rem 0 0.4rem 0.5rem;
  width: 32rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-point__flow-title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-point__flow-title {
    font-size: 1.8rem;
    max-width: 100%;
  }
}
.p-point__flow-title .circle {
  background: #FFFFFF;
  border-radius: 100vmax;
  width: 5.2rem;
  height: 5.2rem;
  aspect-ratio: 1;
  flex-shrink: 0;
  position: relative;
}
.p-point__flow-title .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 3.9rem;
  height: 4rem;
  aspect-ratio: 39/40;
}
.p-point__flow-title .title {
  width: 83.4920634921%;
  padding-right: 1.1rem;
  text-align: center;
}
.p-point__flow-title .title.title-long {
  padding-right: 0;
}
.p-point__flow-title.bg-orange {
  background: #FFA426;
}
.p-point__flow-title.bg-lightgreen {
  background: #99B901;
}
.p-point__flow-title.bg-red {
  background: #E10048;
}
.p-point__flow-title.bg-green {
  background: #105F00;
}
.p-point__flow-title.bg-yellow {
  background: #FDD401;
}

.p-point__flow-text {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-point__flow-text {
    font-size: 1.4rem;
  }
}

.p-point__bottom-text {
  margin-top: 2rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-point__bottom-text {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-point__bottom-text {
    font-size: 1.8rem;
  }
}

/* SPのみのタブ（アコーディオンに変更）のスタイル
***************************************************************/
.p-point__sp-tab-customer {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-point__sp-tab-customer {
    display: block;
    text-align: center;
  }
  .content01 .p-point__sp-tab-customer img {
    width: 28.8rem;
  }
  .content02 .p-point__sp-tab-customer img {
    width: 30rem;
  }
}

.p-point__sp-tab-staff {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-point__sp-tab-staff {
    display: block;
    text-align: center;
  }
  .content01 .p-point__sp-tab-staff {
    margin-top: 2.4rem;
  }
  .content01 .p-point__sp-tab-staff img {
    width: 29.5rem;
  }
  .content02 .p-point__sp-tab-staff {
    margin-top: 3rem;
  }
  .content02 .p-point__sp-tab-staff img {
    width: 29.5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-point__sp-tab-accordion {
    display: none;
  }
}

.p-point__sp-button {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-point__sp-button {
    display: block;
    margin-inline: auto;
    background-color: transparent;
    margin-top: 1rem;
    transition: all 0.3s ease;
  }
  .is-open .p-point__sp-button {
    transform: rotate(180deg);
    margin-top: 2rem;
  }
}

/* (お客様の声)
***************************************************************/
.p-voice {
  background: linear-gradient(180deg, #F7F6F4 0%, rgba(247, 246, 244, 0) 100%);
  padding-block: 10rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-voice {
    padding-block: 5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-voice__scroll {
    margin-right: calc(50% - 50vw);
    overflow-x: scroll;
    padding-bottom: 2.6rem;
  }
}

.p-voice__cards-wrap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6rem;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-voice__cards-wrap {
    width: 90.5rem;
    padding-right: 2rem;
    gap: 2rem;
    margin-top: 3.6rem;
  }
}

.p-voice__card {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  background: #FFFFFF;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.05);
  border-radius: 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-voice__card {
    padding: 2rem;
  }
}

.p-voice__card-img {
  overflow: hidden;
  text-align: center;
}
.p-voice__card-img img {
  width: 28rem;
  height: auto;
  aspect-ratio: 280/140;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-voice__card-img img {
    width: 21.3rem;
    height: auto;
    aspect-ratio: 213/120;
  }
}

.p-voice__card-body {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-voice__card-body {
    gap: 2.4rem;
  }
}

.p-voice__card-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-voice__card-title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-voice__card-title {
    font-size: 1.8rem;
    letter-spacing: 0.03em;
    line-height: 2.3;
  }
}

.p-voice__card-text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-voice__card-text {
    font-size: 1.6rem;
  }
}

.p-voice__card-name {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-voice__card-name {
    font-size: 1.6rem;
  }
}

.p-voice__card-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.p-voice__card-list-item {
  min-width: 21.3rem;
  margin-inline: auto;
  text-align: center;
  border-radius: 100vmax;
  color: #FFFFFF;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 0.75;
  letter-spacing: 0.05em;
  padding-block: 1.1rem;
  padding-inline: 1rem;
}
@media screen and (max-width: 767px) {
  .p-voice__card-list-item {
    font-size: 1.6rem;
  }
}

/* (ご利用の流れ)
***************************************************************/
.p-step {
  padding-block: 10rem;
  background: #F7F6F4;
}
@media screen and (max-width: 767px) {
  .p-step {
    padding-block: 5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-step__inner {
    max-width: 440px;
  }
}

.p-step__cards-wrap {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 5rem;
  margin-top: 4rem;
  position: relative;
  z-index: 0;
}
.p-step__cards-wrap::before {
  content: "";
  position: absolute;
  background: url(../img/deco_step-line-pc.svg) no-repeat center center/cover;
  top: 9.8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80.2rem;
  height: 0.5rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-step__cards-wrap {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 3.6rem;
    margin-top: 3.2rem;
  }
  .p-step__cards-wrap::before {
    display: none;
  }
}

.p-step__card {
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-step__card {
    display: flex;
    gap: 2.4rem;
    align-items: center;
  }
  .p-step__card:not(:last-of-type)::before {
    content: "";
    position: absolute;
    background: url(../img/deco_step-line-sp.svg) no-repeat center center/cover;
    top: calc(100% + 0.2rem);
    left: 4.3rem;
    width: 0.5rem;
    height: 3rem;
  }
}

.p-step__card-number {
  font-size: 2rem;
  font-weight: 700;
  line-height: 0.7;
  letter-spacing: 0.05em;
  font-family: "Overpass", sans-serif;
  opacity: 0.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-step__card-number {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-step__card-number {
    font-size: 1.5rem;
    line-height: 0.7333333333;
  }
}

.p-step__card-img {
  margin-inline: auto;
  margin-top: 1.1rem;
  width: 15rem;
}
.p-step__card-img img {
  aspect-ratio: 1;
}
@media screen and (max-width: 767px) {
  .p-step__card-img {
    margin-top: 0.4rem;
    width: 9.2rem;
  }
}

.p-step__card-body {
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-step__card-body {
    margin-top: 0;
  }
}

.p-step__card-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #E28301;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-step__card-title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-step__card-title {
    text-align: left;
  }
}

.p-step__card-text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-step__card-text {
    font-size: 1.6rem;
  }
}

/* (料金プラン)
***************************************************************/
.p-plan {
  padding-block: 10rem;
}
@media screen and (max-width: 767px) {
  .p-plan {
    padding-block: 5rem;
  }
}

.p-plan__contents-wrap {
  margin-top: 10.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-plan__contents-wrap {
    margin-top: 7.5rem;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 7.6rem;
  }
}

.p-plan__contents {
  position: relative;
}

.p-plan__name {
  width: 8.4rem;
  height: 8.4rem;
  aspect-ratio: 1;
  border-radius: 100vmax;
  background-color: #FFA426;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.8rem;
  position: absolute;
  top: -6.2rem;
  left: 50%;
  translate: -50%;
}
@media screen and (max-width: 767px) {
  .p-plan__name {
    width: 5.9rem;
    height: 5.9rem;
    top: -4.3rem;
  }
}

.p-plan__name--plan {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  font-family: "Overpass", sans-serif;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-plan__name--plan {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-plan__name--plan {
    font-size: 1.1rem;
  }
}

.plan--a .p-plan__name--img img {
  width: 2.6rem;
}
@media screen and (max-width: 767px) {
  .plan--a .p-plan__name--img img {
    width: 1.8rem;
  }
}
.plan--b .p-plan__name--img img {
  width: 2.2rem;
}
@media screen and (max-width: 767px) {
  .plan--b .p-plan__name--img img {
    width: 1.6rem;
  }
}

.p-plan__type {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-align: center;
  padding: 2.6rem 2rem 0.7rem 2rem;
  border-radius: 0.8rem 0.8rem 0 0;
  background: #000;
}
@media screen and (max-width: 767px) {
  .p-plan__type {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-plan__type {
    font-size: 1.8rem;
    padding: 1.8rem 1.5rem 0.3rem 1.5rem;
  }
}

.p-plan__body {
  border-radius: 0 0 0.8rem 0.8rem;
  border-left: 0.3rem solid #000;
  border-right: 0.3rem solid #000;
  border-bottom: 0.3rem solid #000;
  padding: 2.2rem 3.2rem 2.7rem 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-plan__body {
    border-left: 0.2rem solid #000;
    border-right: 0.2rem solid #000;
    border-bottom: 0.2rem solid #000;
    padding: 1.6rem 2.3rem 1.4rem 2.3rem;
  }
}
.plan--b .p-plan__body {
  padding: 2.2rem 3.2rem 2.5rem 3.2rem;
}
@media screen and (max-width: 767px) {
  .plan--b .p-plan__body {
    padding: 1.6rem 2.3rem 1.4rem 2.3rem;
  }
}

.p-plan__cost,
.p-plan__description {
  background: #F7F6F4;
  border-radius: 0.8rem;
  min-height: 5.4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-plan__cost,
  .p-plan__description {
    min-height: 4rem;
  }
}

.p-plan__cost {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  padding: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-plan__cost {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-plan__cost {
    font-size: 2rem;
    padding: 1rem;
  }
  .plan--b .p-plan__cost {
    font-size: 2.4rem;
    padding: 0.8rem;
  }
}
.p-plan__cost span {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-top: 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-plan__cost span {
    font-size: 1.6rem;
  }
}

.p-plan__description {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-top: 2.1rem;
  padding: 1.9rem;
}
@media screen and (max-width: 767px) {
  .p-plan__description {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-plan__description {
    margin-top: 1.6rem;
    padding: 1rem 0.5rem;
  }
  .plan--a .p-plan__description {
    line-height: 1.5;
  }
}

.p-plan__banner {
  margin-top: 5.4rem;
}
@media screen and (max-width: 767px) {
  .p-plan__banner {
    margin-top: 1.6rem;
  }
}

/* (よくある質問)
***************************************************************/
.p-faq {
  padding-block: 10rem;
}
@media screen and (max-width: 767px) {
  .p-faq {
    padding-block: 5rem;
  }
}

.p-faq__lists {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-faq__lists {
    margin-top: 3.2rem;
  }
}

summary {
  display: block;
}
summary::-webkit-details-marker {
  display: none;
}

.p-faq__lists {
  display: flex;
  flex-direction: column;
}

.p-faq__item {
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.5);
}
.p-faq__item:first-of-type {
  border-top: 0.1rem solid rgba(0, 0, 0, 0.5);
}

.p-faq__question {
  display: flex;
  align-items: center;
  padding: 3.3rem 3.2rem 3.3rem 17.1rem;
  position: relative;
}
@media (any-hover: hover) {
  .p-faq__question:hover {
    cursor: pointer;
  }
  .p-faq__question:hover .p-faq__question-arrow path {
    stroke: rgba(16, 95, 0, 0.5);
  }
}
@media screen and (max-width: 767px) {
  .p-faq__question {
    padding: 1.8rem 0.4rem 1.9rem 0.4rem;
  }
}

.p-faq__question-text {
  display: block;
  flex-grow: 1;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  position: relative;
  padding-inline: 6.4rem 5.6rem;
}
@media screen and (max-width: 767px) {
  .p-faq__question-text {
    font-size: 2rem;
  }
}
.p-faq__question-text::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  width: 4rem;
  height: 4rem;
  aspect-ratio: 1;
  background: url(../img/icon_faq-Q.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .p-faq__question-text {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.05em;
    padding-inline: 5.6rem 3.9rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-faq__question-text {
    font-size: 1.6rem;
  }
}

.p-faq__question-arrow {
  width: 2.8rem;
  flex-shrink: 0;
  aspect-ratio: 28/17;
  height: auto;
  transition: all 0.3s ease;
}
.p-faq__question-arrow path {
  transition: all 0.3s ease;
  stroke: rgba(0, 0, 0, 0.5);
  stroke-width: 3;
  stroke-linecap: round;
}
@media screen and (max-width: 767px) {
  .p-faq__question-arrow {
    width: 2.3rem;
  }
}

details[open] .p-faq__question-arrow {
  rotate: 180deg;
}

.p-faq__answer {
  display: flex;
  padding: 2.4rem 3.2rem 2.4rem 17.1rem;
  position: relative;
  background: #F7F6F4;
}
@media screen and (max-width: 767px) {
  .p-faq__answer {
    padding: 1.6rem 0.4rem;
  }
}

.p-faq__answer-text {
  display: block;
  position: relative;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  padding-inline: 6.4rem 5.6rem;
}
@media screen and (max-width: 767px) {
  .p-faq__answer-text {
    font-size: 1.6rem;
  }
}
.p-faq__answer-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4rem;
  height: 4rem;
  aspect-ratio: 1;
  background: url(../img/icon_faq-A.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .p-faq__answer-text {
    padding-inline: 5.6rem 3.9rem;
  }
  .p-faq__answer-text::before {
    top: 0.9rem;
  }
}

/* (メッセージ)
***************************************************************/
.p-message {
  padding-block: 10rem;
  background: #FDD401;
}
@media screen and (max-width: 767px) {
  .p-message {
    padding-block: 5rem;
  }
}

.p-message__container {
  display: flex;
  align-items: flex-start;
  gap: 5.9rem;
}
@media screen and (max-width: 767px) {
  .p-message__container {
    flex-direction: column-reverse;
    align-items: center;
    gap: 2.1rem;
    padding-inline: 2rem;
  }
}

.p-message__contents {
  width: 58%;
  margin-top: 1.3rem;
}
@media screen and (max-width: 767px) {
  .p-message__contents {
    width: 100%;
    margin-top: 0;
  }
}

.p-message__head {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-message__head {
    gap: 0.8rem;
  }
}

.p-message__head-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-message__head-title {
    font-size: 3.2rem;
  }
}
.p-message__head-title span {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-top: 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-message__head-title span {
    font-size: 2.4rem;
  }
}
.p-message__head-title img {
  width: 26.6rem;
  aspect-ratio: 266/58;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 0.3rem;
}
@media screen and (max-width: 767px) {
  .p-message__head-title:first-of-type {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.1em;
    justify-content: center;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-message__head-title:first-of-type {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-message__head-title:first-of-type span {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.1em;
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-message__head-title:first-of-type span {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-message__head-title:last-of-type {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-message__head-title:last-of-type {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-message__head-title:last-of-type span {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.05em;
    margin-top: 0.4rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-message__head-title:last-of-type span {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-message__head-title img {
    width: 18.8rem;
    margin-right: 0.2rem;
  }
}

.p-message__text {
  font-size: 2rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-message__text {
    font-size: 2rem;
  }
}
.p-message__text span {
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-message__text {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-message__text {
    font-size: 1.6rem;
  }
}

.p-message__img {
  width: 36.1%;
}
.p-message__img img {
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-message__img {
    width: 47.4576271186%;
  }
}

/* (お問い合わせ)
***************************************************************/
.p-contact {
  padding-block: 10rem;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding-block: 5rem;
    background: #F7F6F4;
  }
}

.p-contact__container {
  max-width: 90rem;
  margin-inline: auto;
  background: #F7F6F4;
  border-radius: 0.8rem;
  padding: 5rem 10rem;
}
@media screen and (max-width: 767px) {
  .p-contact__container {
    padding: 0;
  }
}

.p-contact__intro {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-contact__intro {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__intro {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.05em;
    margin-top: 1.6rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-contact__intro {
    font-size: 1.3rem;
  }
}

.p-contact__form {
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-contact__form {
    margin-top: 3.2rem;
  }
}

.p-contact__row {
  display: flex;
  gap: 3rem;
  margin-top: 2.4rem;
}
.p-contact__row:first-of-type {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-contact__row {
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 3.2rem;
  }
}

.p-contact__head {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0em;
  width: 17rem;
  margin-top: 0.8rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-contact__head {
    font-size: 1.6rem;
  }
}
.p-contact__head .is-must {
  position: relative;
  display: inline-block;
}
.p-contact__head .is-must::after {
  content: "必須";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: calc(100% + 0.8rem);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #E10048;
  display: inline-block;
  padding: 0.2rem 1.1rem;
  border: 0.1rem solid currentColor;
  border-radius: 0.8rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-contact__head .is-must::after {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__head {
    width: 100%;
    margin-top: 0;
  }
}

.p-contact__data {
  flex-grow: 1;
  width: 71.4285714286%;
}
@media screen and (max-width: 767px) {
  .p-contact__data {
    width: 100%;
  }
}

input[type=text],
input[type=email],
select,
textarea {
  border-radius: 0;
  border-radius: 0.8rem;
  width: 100%;
  border: none;
  padding: 1.3rem 2rem;
  background: #fff;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.4375;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  input[type=text],
  input[type=email],
  select,
  textarea {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  input[type=text],
  input[type=email],
  select,
  textarea {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.45;
    letter-spacing: 0em;
    padding: 1.6rem 1rem 1.5rem 1.6rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  input[type=text],
  input[type=email],
  select,
  textarea {
    font-size: 2rem;
  }
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
input[type=text]::placeholder,
input[type=email]::placeholder,
select::placeholder,
textarea::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

textarea {
  resize: vertical;
  height: 18.8rem;
}

.p-contact__acceptance {
  text-align: left;
  margin-top: 1.4rem;
  padding-left: 20rem;
}
@media screen and (max-width: 767px) {
  .p-contact__acceptance {
    text-align: center;
    margin-top: 3.4rem;
    padding-left: 0;
  }
}

input[type=checkbox] {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

input[type=checkbox]:checked + span::after {
  opacity: 1;
}

.contact__data-checkbox span {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.2142857143;
  letter-spacing: 0em;
  padding-left: 2.8rem;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .contact__data-checkbox span {
    font-size: 1.4rem;
  }
}
.contact__data-checkbox span a {
  text-decoration: underline;
}
.contact__data-checkbox span::before {
  content: "";
  position: absolute;
  top: -0.3rem;
  left: 0;
  width: 1.9rem;
  height: 1.9rem;
  border: 0.1rem solid rgba(0, 0, 0, 0.5);
  border-radius: 0.4rem;
}
.contact__data-checkbox span::after {
  content: "";
  position: absolute;
  top: -0.2rem;
  left: 0.7rem;
  width: 0.7rem;
  height: 1.4rem;
  border-right: 0.2rem solid #105F00;
  border-bottom: 0.2rem solid #105F00;
  rotate: 45deg;
  transition: all 0.3s ease;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .contact__data-checkbox span {
    padding-left: 3.8rem;
    margin-top: 0.2rem;
  }
  .contact__data-checkbox span::before {
    top: -0.5rem;
    width: 3rem;
    height: 3rem;
    left: -0.1rem;
  }
  .contact__data-checkbox span::after {
    top: -0.4rem;
    left: 0.8rem;
    width: 1.2rem;
    height: 2rem;
  }
}

input[type=submit],
input[type=button] {
  border-radius: 0px;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  background: transparent;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

.p-contact__submit {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-top: 4rem;
}
.p-contact__submit input[type=submit] {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #fff;
  padding: 1.2rem 3.3rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-contact__submit input[type=submit] {
    font-size: 1.6rem;
  }
}

.p-contact__submit-wrap {
  position: relative;
  z-index: 1;
  border-radius: 0.8rem;
  overflow: hidden;
}
.p-contact__submit-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #FDD401;
  z-index: 0;
}
.p-contact__submit-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(217deg, #99B901 0%, #105F00 100%);
  z-index: 1;
  opacity: 1;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .p-contact__submit-wrap:hover::after {
    opacity: 0;
  }
}

/* 共通ディスプレイ表示
***************************************************************/
@media (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}
/* テキスト装飾
***************************************************************/
.u-text-center {
  text-align: center;
}

.u-text-right {
  text-align: right;
}

.u-text-under {
  border-bottom: 1px solid currentColor;
  font-weight: inherit;
  font-size: inherit;
}

.u-text-en {
  font-family: "Overpass", sans-serif;
  font-weight: 700;
  display: inline;
}

.u-text-bold {
  font-weight: 700;
  display: inline;
}

.u-text-marker {
  background: linear-gradient(transparent 60%, #ffff75 40%);
  display: inline;
}

.u-text-orange {
  color: #E28301;
  display: inline;
}

/* 背景装飾
***************************************************************/
.u-bg--green {
  background-color: #99B901;
}

.u-bg--dark-green {
  background-color: #105F00;
}

.u-bg--light-orange {
  background-color: #FFA426;
}

.u-bg--orange {
  background-color: #E28301;
}

.u-bg--yellow {
  background-color: #FDD401;
}

.u-bg--red {
  background-color: #E10048;
}
/*# sourceMappingURL=style.css.map */
