@charset "UTF-8";
/*
 * 参考
 * https: //github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

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

/* Make images easier to work with */
img,
picture {
  display: block;
}

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

li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}

@font-face {
  font-family: "Snell Roundhand";
  src: url("../fonts/snell-roundhand.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Zapfino";
  src: url("../fonts/zapfino.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
body {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  color: #3B3B3B;
  font-size: 16px;
  line-height: normal;
}

a {
  text-decoration: none;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}
@media screen and (min-width: 900px) {
  a:hover {
    opacity: 1;
  }
}

.l-inner {
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 339px) {
  .l-inner {
    padding-inline: 5px;
  }
}
@media screen and (min-width: 340px) {
  .l-inner {
    padding-inline: 20px;
  }
}
@media screen and (min-width: 768px) {
  .l-inner {
    padding-inline: 40px;
    max-width: 76.6342141864%;
  }
}
.l-title-wrapper {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.l-max-wrapper {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

.l-wrapper {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .l-wrapper {
    flex-direction: row;
  }
}

.l-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.l-sub-title-wrapper {
  display: flex;
  text-align: center;
  position: relative;
}
.l-sub-title-wrapper::after {
  content: "";
  position: absolute;
}
.l-contents {
  display: flex;
  flex-direction: column;
  width: 100vw;
}
@media screen and (min-width: 900px) {
  .l-contents {
    flex-direction: row;
  }
}

.layout-header {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
}

.l-content {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .l-content {
    width: 50%;
  }
}

.c-btn {
  display: inline-block;
  background: #D8E730;
  transition: 0.3s;
  border: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-btn a {
  white-space: nowrap;
  width: fit-content;
  color: #3B3B3B;
}

.c-btn:hover {
  text-decoration: none;
  background-color: #3B3B3B;
  color: #D8E730;
  opacity: 1;
  cursor: pointer;
}
.c-btn:hover a {
  color: #D8E730;
}

.c-button__text {
  width: fit-content;
}
.c-button__text p {
  width: fit-content;
  position: relative;
}
@media screen and (max-width: 340px) {
  .c-button__text p {
    font-size:13px;
		font-weight:600;
    padding-inline: 7px;
  }
}
@media screen and (min-width: 341px) {
  .c-button__text p {
    font-size:13px;
		font-weight:600;
    padding-inline: 7px;
  }
}
@media screen and (min-width: 768px) {
  .c-button__text p {
    font-size: 1.5625rem;
    font-weight: 600;
    padding-inline: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .c-button__text p {
    font-size: 2rem;
    font-weight: 600;
  }
}
.c-button__text p::before {
  content: "/";
  position: absolute;
  left: 0;
  transform: rotate(300deg);
}
.c-button__text p::after {
  content: "/";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.c-button__button-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.c-button__button1 {
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}
@media screen and (max-width: 340px) {
  .c-button__button1 {
    padding-block: 6px;
    width: 235px;
    margin-top: 5px;
  }
}
@media screen and (min-width: 341px) {
  .c-button__button1 {
    width: 235px;
    padding-block: 6px;
    margin-top: 5px;
  }
}
@media screen and (min-width: 600px) {
  .c-button__button1 {
    margin-top: 13px;
    width: 235px;
  }
}
@media screen and (min-width: 768px) {
  .c-button__button1 {
    margin-top: 13px;
    width: 340px;
    padding-block: 20.98px;
  }
}
@media screen and (min-width: 900px) {
  .c-button__button1 {
    width: 380px;
  }
}
@media screen and (min-width: 1438px) {
  .c-button__button1 {
    width: 481px;
  }
}
@media screen and (min-width: 1600px) {
  .c-button__button1 {
    padding-block: 26px;
  }
}
.c-button__button1 a {
  line-height: 1.75;
  text-align: left;
  position: relative;
}
@media screen and (max-width: 340px) {
  .c-button__button1 a {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.204;
  }
}
@media screen and (min-width: 341px) {
  .c-button__button1 a {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.204;
  }
}
@media screen and (min-width: 600px) {
  .c-button__button1 a {
    font-size: 14px;
    font-weight: 600;
  }
}
@media screen and (min-width: 768px) {
  .c-button__button1 a {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.2173913043;
  }
}
@media screen and (min-width: 1600px) {
  .c-button__button1 a {
    font-size: 1.875rem;
    font-weight: 600;
    line-height: 1.75;
  }
}
.c-button__button1 a::after {
  content: "";
  position: absolute;
  background: url(../../assets/images/common/cta-arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 30px;
  height: auto;
  aspect-ratio: 30/30;
  object-fit: cover;
  top: 65%;
  transform: translateY(-50%);
  transition: opacity 0.3s, transform 0.3s; /* トランジションを追加 */
}
@media screen and (max-width: 340px) {
  .c-button__button1 a::after {
    right: -18%;
    width: 16px;
  }
}
@media screen and (min-width: 341px) {
  .c-button__button1 a::after {
    width: 16px;
    height: auto;
    right: -18%;
  }
}
@media screen and (min-width: 600px) {
  .c-button__button1 a::after {
    width: 16px;
    height: auto;
    right: -18%;
  }
}
@media screen and (min-width: 768px) {
  .c-button__button1 a::after {
    width: 30px;
    height: auto;
    right: -18%;
  }
}
@media screen and (min-width: 900px) {
  .c-button__button1 a::after {
    right: -24%;
  }
}
.c-button__button1 a span {
  line-height: 1.4;
}
@media screen and (max-width: 340px) {
  .c-button__button1 a span {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.204;
  }
}
@media screen and (min-width: 341px) {
  .c-button__button1 a span {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.204;
  }
}
@media screen and (min-width: 768px) {
  .c-button__button1 a span {
    font-size: 2.125rem;
    font-weight: 600;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1600px) {
  .c-button__button1 a span {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.4;
  }
}

.c-button__button1:hover a {
  color: #D8E730;
}
.c-button__button1:hover a::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  display: inline-block;
  border-style: solid;
  border-width: 8px 0 5px 15px;
  border-color: transparent transparent transparent #D8E730;
  border-radius: 3px;
  top: 65%;
  transform: translateY(-50%);
  right: -20%;
  background: none;
}
@media screen and (min-width: 768px) {
  .c-button__button1:hover a::after {
    width: 30px;
    height: 30px;
    border-width: 15px 0 15px 25px;
  }
}
@media screen and (min-width: 900px) {
  .c-button__button1:hover a::after {
    right: -24%;
  }
}

@media screen and (max-width: 340px) {
  .c-plan-btn {
    padding-block: 6px;
    width: 233px;
    margin-top: 5px;
  }
}
@media screen and (min-width: 341px) {
  .c-plan-btn {
    width: 233px;
    padding-block: 6px;
    margin-top: 5px;
  }
}
@media screen and (min-width: 600px) {
  .c-plan-btn {
    margin-top: 13px;
    width: 233px;
  }
}
@media screen and (min-width: 768px) {
  .c-plan-btn {
    margin-top: 13px;
    width: 340px;
    padding-block: 20.98px;
  }
}
@media screen and (min-width: 900px) {
  .c-plan-btn {
    width: 380px;
  }
}
@media screen and (min-width: 1438px) {
  .c-plan-btn {
    width: 481px;
  }
}
@media screen and (min-width: 1600px) {
  .c-plan-btn {
    padding-block: 26px;
  }
}
@media screen and (max-width: 340px) {
  .c-plan-btn a {
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.204;
  }
}
@media screen and (min-width: 341px) {
  .c-plan-btn a {
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.204;
  }
}
@media screen and (min-width: 600px) {
  .c-plan-btn a {
    font-size: 0.9375rem;
    font-weight: 600;
  }
}
@media screen and (min-width: 768px) {
  .c-plan-btn a {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.2173913043;
  }
}
@media screen and (min-width: 1600px) {
  .c-plan-btn a {
    font-size: 1.875rem;
    font-weight: 600;
    line-height: 1.75;
  }
}
.c-plan-btn a span {
  line-height: 1.4;
}
@media screen and (max-width: 340px) {
  .c-plan-btn a span {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.204;
  }
}
@media screen and (min-width: 341px) {
  .c-plan-btn a span {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.204;
  }
}
@media screen and (min-width: 768px) {
  .c-plan-btn a span {
    font-size: 2.125rem;
    font-weight: 600;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1600px) {
  .c-plan-btn a span {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.4;
  }
}
.c-plan-btn a::after {
  content: "";
  position: absolute;
  background: url(../../assets/images/common/cta-arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: auto;
  aspect-ratio: 30/30;
  object-fit: cover;
  top: 65%;
  transform: translateY(-50%);
  transition: opacity 0.3s, transform 0.3s; /* トランジションを追加 */
}
@media screen and (max-width: 340px) {
  .c-plan-btn a::after {
    width: 17px;
    height: auto;
    right: -18%;
  }
}
@media screen and (min-width: 341px) {
  .c-plan-btn a::after {
    width: 17px;
    right: -18%;
  }
}
@media screen and (min-width: 768px) {
  .c-plan-btn a::after {
    width: 30px;
    right: -16%;
  }
}
@media screen and (min-width: 900px) {
  .c-plan-btn a::after {
    right: -24%;
    width: 30px;
  }
}

.c-plan-btn:hover a {
  color: #D8E730;
}
.c-plan-btn:hover a::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  display: inline-block;
  border-style: solid;
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent #D8E730;
  border-radius: 3px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
}
@media screen and (max-width: 340px) {
  .c-plan-btn:hover a::after {
    right: -25%;
  }
}
@media screen and (min-width: 341px) {
  .c-plan-btn:hover a::after {
    right: -25%;
  }
}
@media screen and (min-width: 768px) {
  .c-plan-btn:hover a::after {
    width: 30px;
    height: 30px;
    border-width: 15px 0 15px 25px;
  }
}
@media screen and (min-width: 900px) {
  .c-plan-btn:hover a::after {
    right: -24%;
  }
}

.c-plan-btn__text {
  width: fit-content;
}
.c-plan-btn__text p {
  width: fit-content;
  position: relative;
}
@media screen and (max-width: 340px) {
  .c-plan-btn__text p {
    font-size: 0.75rem;
    font-weight: 600;
    padding-inline: 7px;
  }
}
@media screen and (min-width: 341px) {
  .c-plan-btn__text p {
    font-size: 0.75rem;
    font-weight: 600;
    padding-inline: 7px;
  }
}
@media screen and (min-width: 768px) {
  .c-plan-btn__text p {
    font-size: 1.5625rem;
    font-weight: 600;
    padding-inline: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .c-plan-btn__text p {
    font-size: 2rem;
    font-weight: 600;
  }
}
.c-plan-btn__text p::before {
  content: "/";
  position: absolute;
  left: 0;
  transform: rotate(300deg);
}
.c-plan-btn__text p::after {
  content: "/";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.c-button__link {
  position: relative;
}

.c-button__link {
  position: relative;
}
.c-button__link::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

.c-button__button2 {
  padding-top: 13px;
  padding-bottom: 14px;
}
.c-button__button2:first-child {
  width: 139px;
}
@media screen and (min-width: 900px) {
  .c-button__button2:first-child {
    padding-top: 22.33px;
    padding-bottom: 21.48px;
    width: 274px;
  }
}
@media screen and (min-width: 1600px) {
  .c-button__button2:first-child {
    width: 315px;
  }
}
.c-button__button2:nth-child(2) {
  width: 135px;
}
@media screen and (min-width: 900px) {
  .c-button__button2:nth-child(2) {
    width: 261px;
  }
}
.c-button__button2 a {
  font-size: 0.75rem;
  font-weight: 300;
}
@media screen and (min-width: 900px) {
  .c-button__button2 a {
    font-size: 1.5rem;
    font-weight: 300;
  }
}
@media screen and (min-width: 1600px) {
  .c-button__button2 a {
    font-size: 1.625rem;
    font-weight: 300;
  }
}

.p-404__title {
  text-align: center;
}

.p-404__btn {
  text-align: center;
}

.p-mv-sp {
  background: url(../../assets/images/common/mv-sp-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: auto;
  aspect-ratio: 430/756;
  object-fit: cover;
  width: 100%;
  height: auto;
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .p-mv-sp {
    display: none;
  }
}

.p-mv-tb {
  display: none;
  background: url(../../assets/images/common/fv-image1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: auto;
  aspect-ratio: 1587/921;
  object-fit: cover;
  width: 100%;
  margin-top: 80px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-mv-tb {
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  .p-mv-tb {
    margin-top: 140px;
  }
}
.p-mv-tb::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 80px;
  left: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.7));
}

.p-mv__inner {
  max-width: 1200px;
}

.p-mv__wrapper {
  padding-top: 50px;
}
@media screen and (min-width: 600px) {
  .p-mv__wrapper {
    padding-top: 50px;
  }
}
@media screen and (min-width: 768px) {
  .p-mv__wrapper {
    padding-top: 170px;
  }
}
@media screen and (min-width: 1438px) {
  .p-mv__wrapper {
    padding-top: 235px;
  }
}
@media screen and (min-width: 1600px) {
  .p-mv__wrapper {
    padding-top: 240px;
  }
}
@media screen and (min-width: 1920px) {
  .p-mv__wrapper {
    padding-top: 370px;
  }
}

.p-mv__content:first-child {
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 340px) {
  .p-mv__title-wrapper h1:first-child {
    font-size: 0.75rem;
    font-weight: 500;
  }
}
@media screen and (min-width: 341px) {
  .p-mv__title-wrapper h1:first-child {
    font-size: 0.8125rem;
    font-weight: 500;
  }
}
@media screen and (min-width: 600px) {
  .p-mv__title-wrapper h1:first-child {
    font-size: 1.375rem;
    font-weight: 500;
  }
}
@media screen and (min-width: 768px) {
  .p-mv__title-wrapper h1:first-child {
    font-size: 1.625rem;
    font-weight: 500;
  }
}
@media screen and (min-width: 900px) {
  .p-mv__title-wrapper h1:first-child {
    font-size: 1.875rem;
    font-weight: 500;
  }
}
@media screen and (min-width: 1200px) {
  .p-mv__title-wrapper h1:first-child {
    font-size: 2.5rem;
    font-weight: 500;
  }
}
@media screen and (min-width: 1438px) {
  .p-mv__title-wrapper h1:first-child {
    font-size: 2.8125rem;
    font-weight: 500;
  }
}
@media screen and (min-width: 1600px) {
  .p-mv__title-wrapper h1:first-child {
    font-size: 2.8125rem;
    font-weight: 500;
  }
}
.p-mv__title-wrapper h1:nth-child(2) {
  display: block;
  margin-top: 5%;
}
@media screen and (max-width: 340px) {
  .p-mv__title-wrapper h1:nth-child(2) {
    width: 9.375rem;
  }
}
@media screen and (min-width: 341px) {
  .p-mv__title-wrapper h1:nth-child(2) {
    width: 12.875rem;
  }
}
@media screen and (min-width: 600px) {
  .p-mv__title-wrapper h1:nth-child(2) {
    width: 20rem;
  }
}
@media screen and (min-width: 768px) {
  .p-mv__title-wrapper h1:nth-child(2) {
    margin-top: 2%;
    width: 23.4375rem;
  }
}
@media screen and (min-width: 900px) {
  .p-mv__title-wrapper h1:nth-child(2) {
    width: 28.3125rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-mv__title-wrapper h1:nth-child(2) {
    width: 41.875rem;
  }
}
@media screen and (min-width: 1438px) {
  .p-mv__title-wrapper h1:nth-child(2) {
    width: 44.6875rem;
  }
}
.p-mv__title-wrapper h1:nth-child(2) img {
  width: 100%;
  height: auto;
  aspect-ratio: 715/122;
  object-fit: contain;
}

.p-mv__box-wrap {
  display: flex;
  padding-left: 4%;
  gap: 2%;
}
.p-mv__box {
  border-radius: 50%;
  background: url(../../assets/images/common/fv-circle.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  aspect-ratio: 171/171;
  object-fit: cover;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-mv__box {
    margin-top: 10px;
  }
}
@media screen and (max-width: 374px) {
  .p-mv__box {
    width: 45px;
    height: 45px;
  }
}
@media screen and (min-width: 341px) {
  .p-mv__box {
    width: 60px;
    height: 60px;
  }
}
@media screen and (min-width: 600px) {
  .p-mv__box {
    width: 80px;
    height: 80px;
  }
}
@media screen and (min-width: 768px) {
  .p-mv__box {
    width: 100px;
    height: 100px;
  }
}
@media screen and (min-width: 900px) {
  .p-mv__box {
    width: 127px;
    height: 127px;
  }
}
@media screen and (min-width: 1200px) {
  .p-mv__box {
    width: 171px;
    height: 171px;
  }
}
@media screen and (min-width: 1438px) {
  .p-mv__box {
    width: 171px;
    height: 171px;
  }
}
@media screen and (min-width: 1600px) {
  .p-mv__box {
    width: 200px;
    height: 200px;
  }
}

.p-mv__text {
  width: fit-content;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  text-align: center;
}
@media screen and (max-width: 340px) {
  .p-mv__text p {
    font-size: 9px;
  }
}
@media screen and (min-width: 341px) {
  .p-mv__text p {
    font-size: 0.75rem;
    font-weight: 600;
  }
}
@media screen and (min-width: 768px) {
  .p-mv__text p {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.65;
  }
}
@media screen and (min-width: 900px) {
  .p-mv__text p {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.1785714286;
  }
}
@media screen and (min-width: 1600px) {
  .p-mv__text p {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.03125;
  }
}
.p-cta {
  overflow: hidden;
}

.p-cta__wrapper {
  width: 100%;
  height: 100%;
  background: url(../../assets/images/common/cta-bg-sp.png);
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 430/110;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-cta__wrapper {
    background: url(../../assets/images/common/cta-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    aspect-ratio: 1438/356;
    background-position: center;
    object-fit: cover;
  }
}
@media screen and (max-width: 1024px) {
  .p-cta__wrapper {
    height: auto;
  }
}

.p-cta__btn-inner {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 340px) {
  .p-cta__btn-inner {
    padding-top: 15px;
    padding-bottom: 18px;
  }
}
@media screen and (min-width: 341px) {
  .p-cta__btn-inner {
    padding-top: 15px;
    padding-bottom: 18px;
  }
}
@media screen and (min-width: 900px) {
  .p-cta__btn-inner {
    padding-top: 90px;
    padding-bottom: 101px;
  }
}

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

.p-cta__contents-wrapper {
  background: linear-gradient(to bottom, gray, white);
  position: relative;
  z-index: -1;
}
@media screen and (max-width: 599px) {
  .p-cta__contents-wrapper {
    padding-bottom: 15px;
  }
}
.p-cta__contents-wrapper::before {
  content: "";
  position: absolute;
  background: url(../../assets/images/common/cta-bg2.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  aspect-ratio: 1461/526;
  object-fit: cover;
  left: 0;
  top: 0;
  z-index: 1;
}
.p-cta__contents-wrapper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 60px;
  left: 0;
  bottom: 0;
  z-index: 10;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(255, 255, 255));
}
@media screen and (min-width: 600px) {
  .p-cta__contents-wrapper::after {
    width: 100%;
    height: 25px;
  }
}
@media screen and (min-width: 768px) {
  .p-cta__contents-wrapper::after {
    width: 100%;
    height: 30px;
    left: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(255, 255, 255));
  }
}
@media screen and (min-width: 768px) and (min-width: 900px) {
  .p-cta__contents-wrapper::after {
    height: 24px;
  }
}
.p-cta__title-wrapper {
  background: #888686;
  padding-top: 21px;
  padding-bottom: 22px;
}
@media screen and (min-width: 768px) {
  .p-cta__title-wrapper {
    padding-top: 23px;
  }
}
.p-cta__title-wrapper h2 {
  color: #FFF;
}
@media screen and (max-width: 340px) {
  .p-cta__title-wrapper h2 {
    font-size: 1.58875rem;
    font-weight: 600;
  }
}
@media screen and (min-width: 341px) {
  .p-cta__title-wrapper h2 {
    font-size: 1.58875rem;
    font-weight: 600;
  }
}
@media screen and (min-width: 500px) {
  .p-cta__title-wrapper h2 {
    font-size: 2.375rem;
    font-weight: 600;
  }
}
@media screen and (min-width: 1438px) {
  .p-cta__title-wrapper h2 {
    font-size: 2.375rem;
    font-weight: 600;
  }
}

.p-cta__contents {
  display: flex;
}
@media screen and (max-width: 599px) {
  .p-cta__contents {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (min-width: 600px) {
  .p-cta__contents {
    justify-content: space-around;
  }
}

@media screen and (max-width: 340px) {
  .p-cta__content:first-child {
    padding-top: 30px;
  }
}
@media screen and (min-width: 341px) {
  .p-cta__content:first-child {
    padding-top: 30px;
  }
}
@media screen and (min-width: 768px) {
  .p-cta__content:first-child {
    padding-top: 30px;
    width: 50%;
    position: relative;
    left: 4%;
  }
}
@media screen and (min-width: 900px) {
  .p-cta__content:first-child {
    padding-top: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .p-cta__content:first-child {
    padding-top: 88px;
  }
}
.p-cta__content ul li {
  font-family: "Shippori Mincho B1", serif;
  position: relative;
}
@media screen and (max-width: 340px) {
  .p-cta__content ul li {
    font-size: 16px;
    font-weight: 400;
  }
}
@media screen and (min-width: 341px) {
  .p-cta__content ul li {
    font-size: 18px;
    font-weight: 400;
  }
}
@media screen and (min-width: 600px) {
  .p-cta__content ul li {
    font-size: 15px;
    font-weight: 400;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__content ul li {
    padding-left: 53px;
  }
}
@media screen and (min-width: 768px) {
  .p-cta__content ul li {
    font-size: 1.1875rem;
    font-weight: 400;
    padding-left: 8.5127201566%;
  }
}
@media screen and (min-width: 900px) {
  .p-cta__content ul li {
    font-size: 1.4375rem;
    font-weight: 400;
  }
}
@media screen and (min-width: 1200px) {
  .p-cta__content ul li {
    font-size: 1.6875rem;
    font-weight: 400;
  }
}
@media screen and (min-width: 1438px) {
  .p-cta__content ul li {
    font-size: 2.1875rem;
    font-weight: 400;
  }
}
@media screen and (min-width: 1920px) {
  .p-cta__content ul li {
    font-size: 2.8125rem;
    font-weight: 400;
  }
}
@media screen and (min-width: 341px) {
  .p-cta__content ul li:not(:nth-child(1)) {
    margin-top: 21px;
  }
}
@media screen and (min-width: 768px) {
  .p-cta__content ul li:not(:nth-child(1)) {
    margin-top: 10px;
  }
}
.p-cta__content ul li::before {
  content: "";
  position: absolute;
  background: url(../../assets/images/common/cta-check.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
  aspect-ratio: 462/51;
  object-fit: cover;
}
@media screen and (max-width: 340px) {
  .p-cta__content ul li::before {
    width: 20px;
    height: 20px;
    left: 5%;
  }
}
@media screen and (min-width: 341px) {
  .p-cta__content ul li::before {
    width: 20px;
    height: 20px;
    left: 5%;
  }
}
@media screen and (min-width: 768px) {
  .p-cta__content ul li::before {
    width: 20px;
    height: 20px;
    left: -10%;
  }
}
@media screen and (min-width: 900px) {
  .p-cta__content ul li::before {
    width: 40px;
    height: 40px;
    left: -6%;
  }
}
@media screen and (min-width: 1438px) {
  .p-cta__content ul li::before {
    left: -6%;
  }
}
.p-cta__content:nth-child(2) {
  flex-shrink: 0;
}
@media screen and (max-width: 599px) {
  .p-cta__content:nth-child(2) {
    margin-top: 34px;
  }
}
@media screen and (max-width: 340px) {
  .p-cta__content:nth-child(2) {
    width: 77.1794871795%;
  }
}
@media screen and (min-width: 341px) {
  .p-cta__content:nth-child(2) {
    width: 77.1794871795%;
  }
}
@media screen and (min-width: 600px) {
  .p-cta__content:nth-child(2) {
    width: 45.6947162427%;
  }
}

@media screen and (min-width: 1438px) {
  .p-cta__image {
    width: 100%;
  }
}
.p-cta__image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 301/274;
  object-fit: cover;
}
@media screen and (min-width: 600px) {
  .p-cta__image img {
    aspect-ratio: 467/428;
  }
}

.p-cta__text-wrap {
  overflow: hidden;
  position: relative;
}
.p-cta__text-wrap::before {
  content: "";
  position: absolute;
  background: url(../../assets/images/common/cta-polygon.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: auto;
  aspect-ratio: 765/137;
  object-fit: cover;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 340px) {
  .p-cta__text-wrap::before {
    width: 100%;
    top: 9px;
  }
}
@media screen and (min-width: 341px) {
  .p-cta__text-wrap::before {
    width: 100%;
    top: 9px;
  }
}
@media screen and (min-width: 768px) {
  .p-cta__text-wrap::before {
    display: none;
  }
}

@media screen and (max-width: 340px) {
  .p-cta__text1 {
    margin-top: 24px;
  }
}
@media screen and (min-width: 341px) {
  .p-cta__text1 {
    margin-top: 24px;
  }
}
@media screen and (min-width: 768px) {
  .p-cta__text1 {
    margin-top: 53px;
  }
}
.p-cta__text1 p {
  z-index: 1;
  color: #FFF;
  position: relative;
}
@media screen and (max-width: 340px) {
  .p-cta__text1 p {
    font-size: 0.8125rem;
    font-weight: 600;
  }
}
@media screen and (min-width: 341px) {
  .p-cta__text1 p {
    font-size: 0.9375rem;
    font-weight: 600;
  }
}
@media screen and (min-width: 430px) {
  .p-cta__text1 p {
    font-size: 1.27625rem;
    font-weight: 600;
  }
}
@media screen and (min-width: 600px) {
  .p-cta__text1 p {
    font-size: 1.5625rem;
    font-weight: 600;
  }
}
@media screen and (min-width: 768px) {
  .p-cta__text1 p {
    font-size: 1.875rem;
    font-weight: 600;
  }
}
.p-cta__text1 p::before {
  content: "";
  position: absolute;
  background: url(../../assets/images/common/cta-polygon.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: auto;
  aspect-ratio: 765/137;
  object-fit: cover;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  display: none;
}
@media screen and (min-width: 768px) {
  .p-cta__text1 p::before {
    display: block;
    width: 191.3043478261%;
  }
}

@media screen and (max-width: 340px) {
  .p-cta__text2 {
    margin-top: 45px;
  }
}
@media screen and (min-width: 341px) {
  .p-cta__text2 {
    margin-top: 45px;
  }
}
@media screen and (min-width: 600px) {
  .p-cta__text2 {
    margin-top: 80px;
  }
}
@media screen and (min-width: 768px) {
  .p-cta__text2 {
    margin-top: 115px;
  }
}
.p-cta__text2 p {
  font-family: "Shippori Mincho B1", serif;
  position: relative;
  width: fit-content;
}
@media screen and (max-width: 340px) {
  .p-cta__text2 p {
    font-size: 1.5625rem;
    font-weight: 300;
    letter-spacing: 0.2px;
  }
}
@media screen and (min-width: 341px) {
  .p-cta__text2 p {
    font-size: 1.625rem;
    font-weight: 300;
    letter-spacing: 0.2px;
  }
}
@media screen and (min-width: 430px) {
  .p-cta__text2 p {
    font-size: 1.875rem;
    font-weight: 300;
  }
}
@media screen and (min-width: 600px) {
  .p-cta__text2 p {
    font-size: 2.6875rem;
    font-weight: 300;
  }
}
@media screen and (min-width: 768px) {
  .p-cta__text2 p {
    font-size: 3.1875rem;
    font-weight: 300;
  }
}
@media screen and (min-width: 1438px) {
  .p-cta__text2 p {
    font-size: 3.1875rem;
    font-weight: 300;
  }
}
@media screen and (min-width: 1600px) {
  .p-cta__text2 p {
    font-size: 3.8125rem;
    font-weight: 300;
  }
}
.p-cta__text2 p::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 22px;
  background: #D8E730;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.p-cta__text2 p span {
  font-family: "Snell Roundhand", cursive;
}

.p-reason__inner {
  padding-top: 30px;
  padding-bottom: 41px;
}
@media screen and (max-width: 767px) {
  .p-reason__inner {
    padding-left: 33px;
    padding-right: 31px;
  }
}
@media screen and (min-width: 768px) {
  .p-reason__inner {
    padding-top: 67px;
    padding-bottom: 85px;
    padding-inline: 20px;
  }
}
@media screen and (min-width: 900px) {
  .p-reason__inner {
    padding-inline: 40px;
  }
}

.p-reason__title-wrapper {
  margin-top: 5px;
}
@media screen and (max-width: 340px) {
  .p-reason__title-wrapper h2 {
    font-size: 1.8125rem;
    font-weight: 600;
  }
}
@media screen and (min-width: 341px) {
  .p-reason__title-wrapper h2 {
    font-size: 1.8125rem;
    font-weight: 600;
  }
}
@media screen and (min-width: 768px) {
  .p-reason__title-wrapper h2 {
    font-size: 2.375rem;
    font-weight: 600;
  }
}
@media screen and (min-width: 1600px) {
  .p-reason__title-wrapper h2 {
    font-size: 3.125rem;
    font-weight: 600;
  }
}

.reason-h2-sp {
  display: flex;
  flex-direction: column;
}
.reason-h2-sp h2:nth-child(2) {
  position: relative;
  top: -13px;
}
@media screen and (min-width: 768px) {
  .reason-h2-sp {
    display: none;
  }
}

.reason-h2-tb {
  display: none;
}
@media screen and (min-width: 768px) {
  .reason-h2-tb {
    display: block;
  }
}

.reason-span1 {
  font-family: "Snell Roundhand", cursive;
  font-weight: 700;
}

.reason-span2 {
  font-family: "Shippori Mincho B1", serif !important;
}
@media screen and (min-width: 341px) {
  .reason-span2 {
    font-size: 1.6686875rem;
    font-weight: 600;
    line-height: 1.515;
  }
}
@media screen and (min-width: 600px) {
  .reason-span2 {
    font-size: 1.8125rem;
    font-weight: 600;
  }
}
@media screen and (min-width: 768px) {
  .reason-span2 {
    font-size: 2.375rem;
    font-weight: 600;
  }
}
@media screen and (min-width: 1600px) {
  .reason-span2 {
    font-size: 3.125rem;
    font-weight: 600;
  }
}

.reason-title3 {
  font-size: 2.675rem;
  font-weight: 600;
  line-height: 1.515;
  font-family: "Shippori Mincho B1", serif !important;
}
@media screen and (min-width: 768px) {
  .reason-title3 {
    font-size: 3.75rem;
    font-weight: 600;
  }
}

.p-reason__contents-wrap {
  margin-top: 24px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-reason__contents-wrap {
    margin-top: 36px;
    width: 97.6516634051%;
  }
}
@media screen and (min-width: 1200px) {
  .p-reason__contents-wrap {
    width: 100%;
  }
}

.p-reason__contents .p-reason__content-wrap {
  display: flex;
  flex-direction: column;
  border: 4.99px solid #303B46;
  padding-inline: 5%;
  padding-top: 8px;
  gap: 7%;
  padding-bottom: 30px;
}
@media screen and (min-width: 600px) {
  .p-reason__contents .p-reason__content-wrap {
    padding-top: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .p-reason__contents .p-reason__content-wrap {
    gap: 3%;
    flex-direction: row;
    padding-top: 26px;
    padding-bottom: 26px;
    justify-content: center;
    align-items: center;
  }
}
.p-reason__contents:nth-child(2) .p-reason__content-wrap {
  padding-top: 22px;
  padding-bottom: 23px;
}
@media screen and (min-width: 768px) {
  .p-reason__contents:nth-child(2) .p-reason__content-wrap {
    padding-top: 26px;
    padding-bottom: 3px;
  }
}
.p-reason__contents:nth-child(3) .p-reason__content-wrap {
  padding-top: 22px;
  padding-bottom: 23px;
}
@media screen and (min-width: 768px) {
  .p-reason__contents:nth-child(3) .p-reason__content-wrap {
    padding-top: 26px;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-reason__contents:nth-child(3) .p-reason__content-wrap .p-reason__text-content {
    padding-right: 4%;
    padding-left: 9%;
  }
}
.p-reason__contents .p-reason__sub-title-wrap {
  padding-top: 9px;
  padding-bottom: 8px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-reason__contents .p-reason__sub-title-wrap {
    padding-top: 13px;
  }
}
@media screen and (max-width: 340px) {
  .p-reason__contents .p-reason__sub-title-wrap h3 {
    font-size: 1.25rem;
    font-weight: 400;
  }
}
@media screen and (min-width: 341px) {
  .p-reason__contents .p-reason__sub-title-wrap h3 {
    font-size: 1.25rem;
    font-weight: 400;
  }
}
@media screen and (min-width: 600px) {
  .p-reason__contents .p-reason__sub-title-wrap h3 {
    font-size: 2.5rem;
    font-weight: 300;
  }
}
@media screen and (min-width: 1600px) {
  .p-reason__contents .p-reason__sub-title-wrap h3 {
    font-size: 3rem;
    font-weight: 300;
  }
}
.p-reason__contents:first-child .p-reason__sub-title-wrap {
  background: #303B46;
}
.p-reason__contents:first-child .p-reason__sub-title-wrap h3 {
  color: #FFF;
}
@media screen and (max-width: 340px) {
  .p-reason__contents:first-child .p-reason__sub-title-wrap h3 {
    font-size: 1.25rem;
    font-weight: 400;
  }
}
@media screen and (min-width: 341px) {
  .p-reason__contents:first-child .p-reason__sub-title-wrap h3 {
    font-size: 1.25rem;
    font-weight: 400;
  }
}
@media screen and (min-width: 512px) {
  .p-reason__contents:first-child .p-reason__sub-title-wrap h3 {
    font-size: 2.125rem;
    font-weight: 300;
  }
}
@media screen and (min-width: 900px) {
  .p-reason__contents:first-child .p-reason__sub-title-wrap h3 {
    font-size: 2.125rem;
    font-weight: 300;
  }
}
@media screen and (min-width: 1200px) {
  .p-reason__contents:first-child .p-reason__sub-title-wrap h3 {
    font-size: 2.125rem;
    font-weight: 300;
  }
}
@media screen and (min-width: 1438px) {
  .p-reason__contents:first-child .p-reason__sub-title-wrap h3 {
    font-size: 2.5rem;
    font-weight: 300;
  }
}
@media screen and (min-width: 1600px) {
  .p-reason__contents:first-child .p-reason__sub-title-wrap h3 {
    font-size: 3rem;
    font-weight: 300;
  }
}
.p-reason__contents:nth-child(2) {
  border: 4.99px solid #D9D9D9;
  margin-top: 35px;
}
@media screen and (min-width: 768px) {
  .p-reason__contents:nth-child(2) {
    margin-top: 22px;
  }
}
.p-reason__contents:nth-child(2) .p-reason__content-wrap {
  border: 4.99px solid #D9D9D9;
  background: #FFF;
  gap: 11%;
}
@media screen and (min-width: 1200px) {
  .p-reason__contents:nth-child(2) .p-reason__content-wrap {
    flex-direction: row-reverse;
  }
}
.p-reason__contents:nth-child(2) .p-reason__sub-title-wrap {
  background: #D9D9D9;
}
@media screen and (min-width: 900px) {
  .p-reason__contents:nth-child(2) .p-reason__sub-title-wrap h3 {
    font-size: 2.125rem;
    font-weight: 300;
  }
}
@media screen and (min-width: 1200px) {
  .p-reason__contents:nth-child(2) .p-reason__sub-title-wrap h3 {
    font-size: 2.125rem;
    font-weight: 300;
  }
}
@media screen and (min-width: 1438px) {
  .p-reason__contents:nth-child(2) .p-reason__sub-title-wrap h3 {
    font-size: 2.5rem;
    font-weight: 300;
  }
}
@media screen and (min-width: 1600px) {
  .p-reason__contents:nth-child(2) .p-reason__sub-title-wrap h3 {
    font-size: 3rem;
    font-weight: 300;
  }
}
.p-reason__contents:nth-child(3) .p-reason__sub-title-wrap {
  background: #303B46;
  margin-top: 38px;
  padding-top: 27px;
  padding-bottom: 19px;
}
@media screen and (min-width: 768px) {
  .p-reason__contents:nth-child(3) .p-reason__sub-title-wrap {
    margin-top: 22px;
  }
}
.p-reason__contents:nth-child(3) .p-reason__sub-title-wrap h3 {
  color: #FFF;
}
.p-reason__contents:nth-child(3) .p-reason__content-wrap {
  padding-inline: 4%;
}

.p-reason__image-content {
  flex-shrink: 0;
}
@media screen and (max-width: 1199px) {
  .p-reason__image-content {
    display: flex;
    justify-content: center;
  }
}

.p-reason__image {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 340px) {
  .p-reason__image {
    width: 63.5514018692%;
    height: auto;
  }
}
@media screen and (min-width: 341px) {
  .p-reason__image {
    width: 63.5514018692%;
    height: auto;
  }
}
@media screen and (min-width: 768px) {
  .p-reason__image {
    width: 350px;
    height: 395px;
  }
}
.p-reason__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 204/198;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-reason__image img {
    aspect-ratio: 339/339;
  }
}

.p-reason__image2 {
  width: 62.7388535032%;
}
@media screen and (min-width: 768px) {
  .p-reason__image2 {
    width: 350px;
    height: 395px;
  }
}
.p-reason__image2 img {
  width: 100%;
  height: auto;
  aspect-ratio: 197/193;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-reason__image2 img {
    height: auto;
    aspect-ratio: 339/339;
  }
}

.p-reason-image3 {
  width: 63.2398753894%;
}
@media screen and (min-width: 768px) {
  .p-reason-image3 {
    width: 350px;
    height: 395px;
  }
}
.p-reason-image3 img {
  width: 100%;
  height: auto;
  aspect-ratio: 203/194;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-reason-image3 img {
    aspect-ratio: 339/339;
  }
}

@media screen and (max-width: 767px) {
  .p-reason__text-content {
    padding-left: 6%;
    padding-right: 5%;
  }
}
.p-reason__text {
  padding-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-reason__text {
    padding-top: 0px;
  }
}
.p-reason__text p {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.99;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 370px) and (max-width: 480px) {
  .p-reason__text p {
    font-size: 1rem;
    font-weight: 400;
  }
}
@media screen and (min-width: 768px) {
  .p-reason__text p {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1600px) {
  .p-reason__text p {
    font-size: 1.5625rem;
    font-weight: 400;
  }
}

@media screen and (max-width: 340px) {
  .p-reason__contents2-text {
    padding-top: 29px;
  }
}
@media screen and (min-width: 341px) {
  .p-reason__contents2-text {
    padding-top: 29px;
  }
}
@media screen and (min-width: 768px) {
  .p-reason__contents2-text {
    padding-top: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .p-reason__contents2-text {
    padding-top: 60px;
  }
}

@media screen and (max-width: 340px) {
  .p-reason__contents3-text {
    padding-top: 22px;
  }
}
@media screen and (min-width: 341px) {
  .p-reason__contents3-text {
    padding-top: 22px;
  }
}
@media screen and (min-width: 768px) {
  .p-reason__contents3-text {
    padding-top: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .p-reason__contents3-text {
    padding-top: 24px;
  }
}

.p-plan {
  background: url(../../assets/images/common/plan-bg-sp.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: auto;
  aspect-ratio: 432/865;
  object-fit: cover;
}
@media screen and (min-width: 600px) {
  .p-plan {
    aspect-ratio: 600/725;
    height: auto;
  }
}
@media screen and (min-width: 687px) {
  .p-plan {
    aspect-ratio: 600/690;
  }
}
@media screen and (min-width: 770px) {
  .p-plan {
    background: url(../../assets/images/common/plan-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    aspect-ratio: 1438/853;
    object-fit: cover;
  }
}

.p-plan__inner {
  padding-top: 48px;
  padding-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .p-plan__inner {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media screen and (min-width: 768px) {
  .p-plan__inner {
    padding-top: 90px;
    padding-bottom: 48px;
    padding-inline: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .p-plan__inner {
    padding-inline: 40px;
  }
}

.p-plan__contents {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-plan__contents {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .p-plan__contents {
    align-items: center;
    gap: 30px;
  }
}

.p-plan__content {
  font-family: "Shippori Mincho B1", serif;
  background: rgba(217, 217, 217, 0.5);
  box-shadow: 0px 1px 5px 0px #3B3B3B;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 340px) {
  .p-plan__content {
    width: 100%;
    padding-bottom: 15px;
  }
}
@media screen and (min-width: 341px) {
  .p-plan__content {
    width: 100%;
    padding-bottom: 15px;
  }
}
@media screen and (min-width: 768px) {
  .p-plan__content {
    width: 30.5283757339%;
    padding-bottom: 98px;
    background: rgba(217, 217, 217, 0.5);
    box-shadow: 0px 4px 15px 0px #3B3B3B;
  }
}
.p-plan__content:first-child {
  padding-top: 12px;
}
.p-plan__content:nth-child(2) {
  padding-top: 85px;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-plan__content:nth-child(2) {
    padding-top: 23px;
  }
  .p-plan__content:nth-child(2) .p-plan__text-wrap {
    margin-top: 8px;
  }
}
.p-plan__content:nth-child(3) {
  padding-top: 50px;
}
@media screen and (max-width: 767px) {
  .p-plan__content:nth-child(3) {
    padding-top: 18px;
    padding-bottom: 27px;
  }
  .p-plan__content:nth-child(3) .p-plan__text-wrap {
    margin-top: 23px;
  }
}
.p-plan__content:nth-child(3) .p-plan__text-wrap {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .p-plan__content:nth-child(3) .p-plan__text-wrap {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-plan__content:nth-child(3) ul li:nth-child(2) {
    margin-top: 9px;
  }
}

.p-plan__plan-sub {
  margin-top: 9px;
}
@media screen and (min-width: 768px) {
  .p-plan__plan-sub {
    margin-top: 23px;
  }
}
@media screen and (max-width: 340px) {
  .p-plan__plan-sub {
    font-size: 16px;
    font-weight: 700;
  }
}
@media screen and (min-width: 341px) {
  .p-plan__plan-sub {
    font-size: 18px;
    font-weight: 700;
  }
}
@media screen and (min-width: 600px) {
  .p-plan__plan-sub {
    font-size: 1.125rem;
    font-weight: 700;
	   text-shadow: 0px 7px 7px rgba(48, 59, 70, 0.25);
  }
}
@media screen and (min-width: 768px) {
  .p-plan__plan-sub {
    font-size: 1.125rem;
    font-weight: 700;
	    text-shadow: 0px 10px 10px rgba(48, 59, 70, 0.25);
  }
}
@media screen and (min-width: 900px) {
  .p-plan__plan-sub {
    font-size: 1.25rem;
    font-weight: 700;
  }
}
@media screen and (min-width: 1200px) {
  .p-plan__plan-sub {
    font-size: 1.5rem;
    font-weight: 700;
  }
}
@media screen and (min-width: 1600px) {
  .p-plan__plan-sub {
    font-size: 1.875rem;
    font-weight: 700;
  }
}

.p-plan__plan {
  text-shadow: 0px 1.992px 1.992px rgba(0, 0, 0, 0.25), 0px 6.981px 6.981px #FFF;
}
@media screen and (max-width: 340px) {
  .p-plan__plan {
    font-size: 1.5625rem;
    font-weight: 400;
	  text-shadow: 0px 1.992px 1.992px rgba(0, 0, 0, 0.25), 0px 6.981px 6.981px #FFF;
  }
}
@media screen and (min-width: 341px) {
  .p-plan__plan {
    font-size: 1.5625rem;
    font-weight: 400;
	  text-shadow: 0px 1.992px 1.992px rgba(0, 0, 0, 0.25), 0px 6.981px 6.981px #FFF;
  }
}
@media screen and (min-width: 600px) {
  .p-plan__plan {
    font-size: 1.375rem;
    font-weight: 400;
  }
}
@media screen and (min-width: 768px) {
  .p-plan__plan {
    font-size: 1.375rem;
    font-weight: 400;
    margin-top: 17px;
	  text-shadow: 0px 3.992px 3.992px rgba(0, 0, 0, 0.25), 0px 9.981px 9.981px #FFF
  }
}
@media screen and (min-width: 900px) {
  .p-plan__plan {
    font-size: 1.625rem;
    font-weight: 400;
  }
}
@media screen and (min-width: 1200px) {
  .p-plan__plan {
    font-size: 1.875rem;
    font-weight: 400;
  }
}
@media screen and (min-width: 1600px) {
  .p-plan__plan {
    font-size: 2.5rem;
    font-weight: 400;
  }
}

.p-plan__plan-supa {
  background: #FFF;
  text-align: center;
  border: 1px solid #000;
  border-radius: 9px;
  padding-top: 4.64px;
  padding-bottom: 2px;
  padding-inline: 6.7741935484%;
  margin-top: 2px;
}
@media screen and (min-width: 768px) {
  .p-plan__plan-supa {
    padding-top: 7px;
    padding-bottom: 15px;
    padding-inline: 9.6153846154%;
    margin-top: 21px;
  }
}
.p-plan__plan-supa p {
  font-size: 0.73125rem;
  font-weight: 400;
}
@media screen and (min-width: 900px) {
  .p-plan__plan-supa p {
    font-size: 0.73125rem;
    font-weight: 400;
  }
}
@media screen and (min-width: 1200px) {
  .p-plan__plan-supa p {
    font-size: 1rem;
    font-weight: 400;
  }
}
@media screen and (min-width: 1600px) {
  .p-plan__plan-supa p {
    font-size: 1.25rem;
    font-weight: 400;
  }
}

.p-plan__text-wrap {
  display: flex;
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .p-plan__text-wrap {
    margin-top: 30px;
  }
}

.p-plan__text p {
  font-size: 1.875rem;
  font-weight: 400;
}
@media screen and (min-width: 600px) {
  .p-plan__text p {
    font-size: 1.875rem;
    font-weight: 400;
  }
}
@media screen and (min-width: 768px) {
  .p-plan__text p {
    font-size: 2.5625rem;
    font-weight: 400;
  }
}
@media screen and (min-width: 900px) {
  .p-plan__text p {
    font-size: 3.125rem;
    font-weight: 400;
  }
}
@media screen and (min-width: 1200px) {
  .p-plan__text p {
    font-size: 3.75rem;
    font-weight: 400;
  }
}

.p-plan__text-en {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.p-plan__text-en p:first-child {
  font-size: 0.625rem;
  font-weight: 400;
}
@media screen and (min-width: 600px) {
  .p-plan__text-en p:first-child {
    font-size: 0.625rem;
    font-weight: 400;
  }
}
@media screen and (min-width: 768px) {
  .p-plan__text-en p:first-child {
    font-size: 0.875rem;
    font-weight: 400;
  }
}
@media screen and (min-width: 900px) {
  .p-plan__text-en p:first-child {
    font-size: 1rem;
    font-weight: 400;
  }
}
@media screen and (min-width: 1200px) {
  .p-plan__text-en p:first-child {
    font-size: 1.1875rem;
    font-weight: 400;
  }
}
.p-plan__text-en p:nth-child(2) {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.0798571429em;
  letter-spacing: 0.56px;
}
@media screen and (min-width: 768px) {
  .p-plan__text-en p:nth-child(2) {
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: 0.0399285714em;
  }
}

.p-plan__btn-wrap {
  margin-top: 53px;
}
@media screen and (min-width: 768px) {
  .p-plan__btn-wrap {
    margin-top: 75px;
  }
}

.p-flow {
  background: url(../../assets/images/common/flow-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  aspect-ratio: 1463/1001;
  object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .p-flow {
    height: auto;
  }
}

.p-flow__inner {
  padding-top: 80px;
  padding-bottom: 29px;
}
@media screen and (min-width: 900px) {
  .p-flow__inner {
    padding-top: 150px;
  }
}

.p-flow__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-flow__wrapper {
    padding-left: 14%;
    padding-right: 4%;
  }
}

.p-flow__wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-flow__title-wrapper {
  width: fit-content;
  position: relative;
}
.p-flow__title-wrapper h2 {
  font-family: "Shippori Mincho B1", serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: #000;
  position: relative;
}
@media screen and (max-width: 340px) {
  .p-flow__title-wrapper h2 {
    font-size: 1.5625rem;
    font-weight: 400;
  }
}
@media screen and (min-width: 341px) {
  .p-flow__title-wrapper h2 {
    font-size: 2rem;
    font-weight: 400;
  }
}
@media screen and (min-width: 900px) {
  .p-flow__title-wrapper h2 {
    font-size: 3.125rem;
    font-weight: 400;
  }
}
@media screen and (min-width: 1600px) {
  .p-flow__title-wrapper h2 {
    font-size: 3.75rem;
    font-weight: 400;
  }
}
.p-flow__title-wrapper p {
  position: absolute;
  font-size: 1.875rem;
  font-weight: 400;
  color: rgba(48, 59, 70, 0.7);
  font-family: "Zapfino", cursive;
  top: -61%;
  left: -31%;
}
@media screen and (max-width: 340px) {
  .p-flow__title-wrapper p {
    font-size: 1.25rem;
    font-weight: 400;
    left: -31%;
  }
}
@media screen and (min-width: 341px) {
  .p-flow__title-wrapper p {
    left: -31%;
    font-size: 1.5625rem;
    font-weight: 400;
  }
}
@media screen and (min-width: 768px) {
  .p-flow__title-wrapper p {
    font-size: 1.875rem;
    font-weight: 400;
    left: -51%;
    top: -100%;
  }
}
@media screen and (min-width: 900px) {
  .p-flow__title-wrapper p {
    font-size: 2.5rem;
    font-weight: 400;
    left: -51%;
    top: -72%;
  }
}
@media screen and (min-width: 1600px) {
  .p-flow__title-wrapper p {
    font-size: 2.8125rem;
    font-weight: 400;
    left: -51%;
    top: -61%;
  }
}

.p-flow__contents {
  width: 100%;
}
@media screen and (min-width: 1438px) {
  .p-flow__contents {
    width: 67.1232876712%;
  }
}

.p-flow__content {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 340px) {
  .p-flow__content {
    height: 80px;
  }
}
@media screen and (min-width: 341px) {
  .p-flow__content {
    height: 100px;
  }
}
@media screen and (min-width: 768px) {
  .p-flow__content {
    height: 165px;
  }
}
.p-flow__content:nth-child(odd) {
  justify-content: flex-start;
}
.p-flow__content:nth-child(even) {
  justify-content: flex-end;
}

.p-flow__content__num {
  color: rgba(48, 59, 70, 0.7);
  font-family: "Charmonman", cursive;
  margin-right: 7px;
}
@media screen and (max-width: 340px) {
  .p-flow__content__num {
    font-size: 2.5rem;
    font-weight: 400;
  }
}
@media screen and (min-width: 341px) {
  .p-flow__content__num {
    font-size: 2.5rem;
    font-weight: 400;
  }
}
@media screen and (min-width: 500px) {
  .p-flow__content__num {
    font-size: 3.75rem;
    font-weight: 400;
  }
}
@media screen and (min-width: 900px) {
  .p-flow__content__num {
    font-size: 5rem;
    font-weight: 400;
  }
}
@media screen and (min-width: 1200px) {
  .p-flow__content__num {
    font-size: 6.25rem;
    font-weight: 400;
  }
}
@media screen and (min-width: 1600px) {
  .p-flow__content__num {
    margin-right: 10px;
  }
}

.p-flow__content__text {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  white-space: nowrap;
}
@media screen and (max-width: 340px) {
  .p-flow__content__text {
    font-size: 1.0625rem;
    font-weight: 400;
  }
}
@media screen and (min-width: 341px) {
  .p-flow__content__text {
    font-size: 1.1875rem;
    font-weight: 400;
  }
}
@media screen and (min-width: 500px) {
  .p-flow__content__text {
    font-size: 1.375rem;
    font-weight: 400;
  }
}
@media screen and (min-width: 1200px) {
  .p-flow__content__text {
    font-size: 1.5625rem;
    font-weight: 400;
  }
}
@media screen and (min-width: 1600px) {
  .p-flow__content__text {
    font-size: 1.875rem;
    font-weight: 400;
  }
}

.p-voice__inner {
  padding-top: 80px;
  padding-bottom: 84px;
}
@media screen and (min-width: 1600px) {
  .p-voice__inner {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.p-voice__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-voice__title-wrapper {
  position: relative;
  width: fit-content;
}
.p-voice__title-wrapper h2 {
  font-family: "Shippori Mincho B1", serif;
  font-size: 2.5rem;
  font-weight: 300;
  width: fit-content;
}
@media screen and (max-width: 340px) {
  .p-voice__title-wrapper h2 {
    font-size: 1.5625rem;
    font-weight: 400;
  }
}
@media screen and (min-width: 341px) {
  .p-voice__title-wrapper h2 {
    font-size: 2rem;
    font-weight: 400;
  }
}
@media screen and (min-width: 900px) {
  .p-voice__title-wrapper h2 {
    font-size: 3.125rem;
    font-weight: 300;
  }
}
@media screen and (min-width: 1600px) {
  .p-voice__title-wrapper h2 {
    font-size: 3.75rem;
    font-weight: 300;
  }
}
.p-voice__title-wrapper p {
  position: absolute;
  color: rgba(0, 0, 0, 0.7);
  font-family: "Zapfino", cursive;
  top: -83%;
  left: -25%;
}
@media screen and (max-width: 340px) {
  .p-voice__title-wrapper p {
    font-size: 1.25rem;
    font-weight: 400;
  }
}
@media screen and (min-width: 341px) {
  .p-voice__title-wrapper p {
    font-size: 1.5625rem;
    font-weight: 400;
  }
}
@media screen and (min-width: 768px) {
  .p-voice__title-wrapper p {
    font-size: 1.875rem;
    font-weight: 400;
  }
}
@media screen and (min-width: 900px) {
  .p-voice__title-wrapper p {
    font-size: 2.5rem;
    font-weight: 400;
  }
}
@media screen and (min-width: 1600px) {
  .p-voice__title-wrapper p {
    font-size: 3.125rem;
    font-weight: 400;
  }
}

.p-voice__contents-wrapper {
  display: flex;
  flex-direction: column;
  width: 97.553816047%;
  margin-top: 60px;
}
@media screen and (max-width: 1199px) {
  .p-voice__contents-wrapper {
    justify-content: center;
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .p-voice__contents-wrapper {
    margin-top: 85px;
  }
}
@media screen and (min-width: 1200px) {
  .p-voice__contents-wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
}

.p-voice__contents {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-top: 45px;
  align-items: center;
  border: 0.998px solid #3B3B3B;
  background: #F1F0F0;
  box-shadow: 0px 3.992px 3.992px 0px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 340px) {
  .p-voice__contents {
    padding-inline: 20px;
  }
}
@media screen and (min-width: 341px) {
  .p-voice__contents {
    padding-inline: 20px;
  }
}
@media screen and (min-width: 400px) {
  .p-voice__contents {
    padding-inline: 30px;
  }
}
@media screen and (min-width: 600px) {
  .p-voice__contents {
    width: 60%;
    padding-inline: 2.3971915747%;
  }
}
@media screen and (min-width: 768px) {
  .p-voice__contents {
    width: 60%;
  }
}
@media screen and (min-width: 900px) {
  .p-voice__contents {
    width: 60%;
  }
}
@media screen and (min-width: 1200px) {
  .p-voice__contents {
    padding-inline: 2.3971915747%;
    width: 29.7893681043%;
    height: inherit;
  }
}
.p-voice__contents:first-child {
  padding-bottom: 30px;
}
@media screen and (min-width: 1200px) {
  .p-voice__contents:first-child {
    padding-bottom: 0;
  }
}
.p-voice__contents:nth-child(2) {
  padding-bottom: 30px;
}
.p-voice__contents:nth-child(3) {
  padding-bottom: 30px;
}
@media screen and (min-width: 1200px) {
  .p-voice__contents:nth-child(3) {
    padding-bottom: 0;
  }
}

.p-voice__content {
  display: flex;
}
.p-voice__content:nth-child(2) {
  flex-direction: row-reverse;
}

.p-voice__image {
  width: 76px;
}
.p-voice__image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 76/79;
  object-fit: cover;
}

.p-voice__text-content {
  margin-top: 27px;
}

.p-voice__text p {
  font-size: 1.25rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
}
@media screen and (min-width: 1600px) {
  .p-voice__text p {
    font-size: 1.5625rem;
    font-weight: 400;
  }
}

.header {
  height: 80px;
  background-color: #FFF;
}
@media screen and (min-width: 1200px) {
  .header {
    height: 140px;
  }
}

.header__inner {
  height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 340px) {
  .header__inner {
    padding-left: 5.291005291%;
    padding-right: 5.291005291%;
  }
}
@media screen and (min-width: 341px) {
  .header__inner {
    padding-left: 5.291005291%;
    padding-right: 5.291005291%;
  }
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding-left: 8.7621696801%;
    padding-right: 8.066759388%;
  }
}
.header__logo {
  width: 22.9096989967%;
}

.header__logo a {
  height: inherit;
  width: 100%;
  display: flex;
  align-items: center;
}

.header__logo img {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 274/90;
  object-fit: cover;
}

.header__button-wrap {
  display: flex;
  gap: 6px;
}
@media screen and (min-width: 341px) {
  .header__button-wrap {
    gap: 6px;
  }
}
@media screen and (min-width: 600px) {
  .header__button-wrap {
    gap: 20px;
  }
}
@media screen and (min-width: 768px) {
  .header__button-wrap {
    gap: 32px;
  }
}

.header__button {
  padding-top: 17px;
  padding-bottom: 16px;
  height: 40px;
}
@media screen and (min-width: 1200px) {
  .header__button {
    height: 60px;
  }
}
.header__button a {
  font-family: "Shippori Mincho B1", serif;
}
@media screen and (max-width: 340px) {
  .header__button a {
    font-size: 0.75rem;
    font-weight: 300;
  }
}
@media screen and (min-width: 341px) {
  .header__button a {
    font-size: 0.8125rem;
    font-weight: 300;
  }
}
@media screen and (min-width: 600px) {
  .header__button a {
    font-size: 0.9375rem;
    font-weight: 300;
  }
}
@media screen and (min-width: 768px) {
  .header__button a {
    font-size: 1.125rem;
    font-weight: 300;
  }
}
@media screen and (min-width: 1600px) {
  .header__button a {
    font-size: 1.625rem;
    font-weight: 300;
  }
}

.header-btn1 {
  width: 140px;
}
@media screen and (min-width: 341px) {
  .header-btn1 {
    width: 150px;
  }
}
@media screen and (min-width: 600px) {
  .header-btn1 {
    width: 190px;
  }
}
@media screen and (min-width: 768px) {
  .header-btn1 {
    width: 209px;
  }
}
@media screen and (min-width: 1600px) {
  .header-btn1 {
    width: 315px;
  }
}

.header-btn2 {
  width: 70px;
}
@media screen and (min-width: 600px) {
  .header-btn2 {
    width: 95px;
  }
}
@media screen and (min-width: 768px) {
  .header-btn2 {
    width: 126px;
  }
}
@media screen and (min-width: 1600px) {
  .header-btn2 {
    width: 150px;
  }
}

.p-footer__inner {
  padding-top: 52px;
  padding-bottom: 80px;
  max-width: 1200px;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-footer__inner {
    padding-top: 60px;
  }
}
@media screen and (min-width: 900px) {
  .p-footer__inner {
    padding-top: 156px;
    padding-bottom: 140px;
  }
}

.p-footer__wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 1200px) {
  .p-footer__wrap {
    width: 82.1428571429%;
  }
}
@media screen and (min-width: 1600px) {
  .p-footer__wrap {
    width: 100%;
  }
}

.p-footer__contents-wrap:first-child {
  display: flex;
}
@media screen and (max-width: 340px) {
  .p-footer__contents-wrap:first-child {
    flex-direction: column;
  }
}
@media screen and (min-width: 341px) {
  .p-footer__contents-wrap:first-child {
    flex-direction: column;
  }
}
@media screen and (min-width: 378px) and (max-width: 900px) {
  .p-footer__contents-wrap:first-child {
    padding-inline: 10%;
  }
}
@media screen and (min-width: 900px) {
  .p-footer__contents-wrap:first-child {
    flex-direction: row;
    justify-content: space-between;
  }
}
.p-footer__contents {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .p-footer__contents {
    width: 45%;
  }
}
@media screen and (min-width: 1600px) {
  .p-footer__contents {
    width: 60%;
  }
}

.f-content1 {
  height: 100%;
  display: flex;
  justify-content: center;
}
.f-content1-3 {
  margin-top: 20px;
}
@media screen and (max-width: 899px) {
  .f-content1-3 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: rm(34px);
  }
}
@media screen and (min-width: 900px) {
  .f-content1-3 {
    padding-left: 11.8681318681%;
  }
}
.f-content1-3 ul li {
  font-size: 0.9375rem;
  font-weight: 300;
  color: #000;
}
@media screen and (min-width: 768px) {
  .f-content1-3 ul li {
    font-size: 1.125rem;
    font-weight: 300;
  }
}
@media screen and (min-width: 1600px) {
  .f-content1-3 ul li {
    font-size: 1.5625rem;
    font-weight: 300;
  }
}
.f-content1-3 ul li:not(first-child) {
  margin-top: 12px;
}
@media screen and (max-width: 340px) {
  .f-content1-3 ul li:nth-child(3) {
    font-size: 0.9375rem;
    font-weight: 300;
  }
}
@media screen and (min-width: 341px) {
  .f-content1-3 ul li:nth-child(3) {
    font-size: 0.9375rem;
    font-weight: 300;
  }
}
@media screen and (min-width: 600px) {
  .f-content1-3 ul li:nth-child(3) {
    font-size: 1.125rem;
    font-weight: 300;
  }
}
@media screen and (min-width: 1600px) {
  .f-content1-3 ul li:nth-child(3) {
    font-size: 1.5625rem;
    font-weight: 300;
  }
}

.p-footer__content-image {
  width: 67.6282051282%;
}
@media screen and (min-width: 900px) {
  .p-footer__content-image {
    width: 67%;
  }
}
.p-footer__content-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 212/152;
  object-fit: contain;
}
@media screen and (min-width: 900px) {
  .p-footer__content-image img {
    object-fit: contain;
    aspect-ratio: 435/312;
  }
}

.f-contents3 {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  width: 100%;
  flex-direction: column;
}
@media screen and (min-width: 900px) {
  .f-contents3 {
    margin-top: 70px;
  }
}

.p-footer__logo-pc {
  display: none;
}
@media screen and (min-width: 900px) {
  .p-footer__logo-pc {
    display: block;
    width: 100%;
  }
  .p-footer__logo-pc .p-footer__logo a {
    width: 100%;
  }
  .p-footer__logo-pc .p-footer__logo a img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    aspect-ratio: 455/168;
    object-fit: cover;
  }
}

.p-footer__logo-sp {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}
.p-footer__logo-sp .p-footer__logo {
  width: 28.9743589744%;
}
.p-footer__logo-sp .p-footer__logo a img {
  width: 100%;
  height: 100%;
  aspect-ratio: 113/41;
  object-fit: cover;
}
@media screen and (min-width: 900px) {
  .p-footer__logo-sp {
    display: none;
  }
}

.p-footer__btn-content {
  display: flex;
  gap: 20px;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 900px) {
  .p-footer__btn-content {
    flex-direction: row;
    gap: 1.875rem;
  }
}

.p-merit {
  background: url(../../assets/images/common/merit-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: auto;
  aspect-ratio: 1437/1974;
  object-fit: cover;
}
@media screen and (min-width: 1058px) and (max-width: 1199px) {
  .p-merit {
    aspect-ratio: 1058/1323;
  }
}
@media screen and (min-width: 1200px) {
  .p-merit {
    aspect-ratio: 1437/1670;
    height: 100%;
  }
}
@media screen and (min-width: 1600px) {
  .p-merit {
    aspect-ratio: 1437/1760;
  }
}

.p-merit__inner {
  padding-top: 109px;
  padding-bottom: 97px;
}
@media screen and (max-width: 768px) {
  .p-merit__inner {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

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

.p-merit__title-wrapper h2 {
  text-shadow: 0px 3.992px 3.992px #FFF, 0px 3.992px 3.992px #FFF, 0px 3.992px 3.992px #FFF, 0px 9.981px 9.981px #FFF;
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.25rem;
  font-weight: 600;
  text-shadow: 0px 1.8px 1.8px #FFF, 0px 1.8px 1.8px #FFF, 0px 1.8px 1.8px #FFF, 0px 4.5px 4.5px #FFF;
}
@media screen and (min-width: 341px) {
  .p-merit__title-wrapper h2 {
    font-size: 1.4375rem;
    font-weight: 600;
    text-shadow: 0px 2.1px 2.1px #FFF, 0px 2.1px 2.1px #FFF, 0px 2.1px 2.1px #FFF, 0px 5.25px 5.25px #FFF;
  }
}
@media screen and (min-width: 600px) {
  .p-merit__title-wrapper h2 {
    font-size: 2.3125rem;
    font-weight: 600;
    text-shadow: 0px 3.28px 3.28px #FFF, 0px 3.28px 3.28px #FFF, 0px 3.28px 3.28px #FFF, 0px 8.21px 8.21px #FFF;
  }
}
@media screen and (min-width: 768px) {
  .p-merit__title-wrapper h2 {
    font-size: 2.3125rem;
    font-weight: 600;
  }
}
@media screen and (min-width: 900px) {
  .p-merit__title-wrapper h2 {
    font-size: 2.8125rem;
    font-weight: 600;
    text-shadow: 0px 3.992px 3.992px #FFF, 0px 3.992px 3.992px #FFF, 0px 3.992px 3.992px #FFF, 0px 9.981px 9.981px #FFF;
  }
}
@media screen and (min-width: 1200px) {
  .p-merit__title-wrapper h2 {
    font-size: 3.125rem;
    font-weight: 600;
  }
}
@media screen and (min-width: 1600px) {
  .p-merit__title-wrapper h2 {
    font-size: 3.75rem;
    font-weight: 600;
  }
}

.p-merit__contents {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 900px) {
  .p-merit__contents {
    margin-top: 7%;
  }
}

.p-merit__content-wrap {
  width: 100%;
  display: flex;
}
.p-merit__content-wrap:first-child {
  margin-top: 16%;
  justify-content: flex-start;
  z-index: 1;
}
@media screen and (min-width: 600px) {
  .p-merit__content-wrap:first-child {
    margin-top: 7%;
  }
}
.p-merit__content-wrap:first-child .p-merit__content {
  position: relative;
}
.p-merit__content-wrap:first-child .p-merit__content:before {
  content: "";
  position: absolute;
  background: url(../../assets/images/common/merit-image4.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  aspect-ratio: 920/346;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
}
.p-merit__content-wrap:first-child .p-merit__content:after {
  content: "";
  position: absolute;
  background: url(../../assets/images/common/merit-image1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  aspect-ratio: 398/398;
  object-fit: cover;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}
@media screen and (max-width: 340px) {
  .p-merit__content-wrap:first-child .p-merit__content:after {
    width: 140px;
    height: 140px;
    right: -60%;
  }
}
@media screen and (min-width: 341px) {
  .p-merit__content-wrap:first-child .p-merit__content:after {
    width: 160px;
    height: 160px;
    right: -60%;
  }
}
@media screen and (min-width: 400px) and (max-width: 459px) {
  .p-merit__content-wrap:first-child .p-merit__content:after {
    right: -40%;
  }
}
@media screen and (min-width: 459px) {
  .p-merit__content-wrap:first-child .p-merit__content:after {
    width: 200px;
    height: 200px;
    right: -50%;
  }
}
@media screen and (min-width: 600px) {
  .p-merit__content-wrap:first-child .p-merit__content:after {
    width: 250px;
    height: 250px;
    right: -60%;
  }
}
@media screen and (min-width: 673px) and (max-width: 767px) {
  .p-merit__content-wrap:first-child .p-merit__content:after {
    right: -40%;
  }
}
@media screen and (min-width: 768px) {
  .p-merit__content-wrap:first-child .p-merit__content:after {
    width: 300px;
    height: 300px;
    right: -50%;
  }
}
@media screen and (min-width: 900px) {
  .p-merit__content-wrap:first-child .p-merit__content:after {
    width: 300px;
    height: 300px;
    right: -30%;
  }
}
@media screen and (min-width: 1200px) {
  .p-merit__content-wrap:first-child .p-merit__content:after {
    width: 398px;
    height: 398px;
    right: -40%;
  }
}
@media screen and (min-width: 1438px) {
  .p-merit__content-wrap:first-child .p-merit__content:after {
    width: 398px;
    height: 398px;
    right: -20%;
  }
}
.p-merit__content-wrap:first-child .p-merit__content .p-merit__text {
  right: 8%;
}
.p-merit__content-wrap:nth-child(2) {
  justify-content: flex-end;
  margin-top: 20%;
}
@media screen and (min-width: 600px) {
  .p-merit__content-wrap:nth-child(2) {
    margin-top: 10%;
  }
}
.p-merit__content-wrap:nth-child(2) .p-merit__content {
  position: relative;
  z-index: 1;
}
.p-merit__content-wrap:nth-child(2) .p-merit__content:after {
  content: "";
  position: absolute;
  background: url(../../assets/images/common/merit-image5.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  aspect-ratio: 920/346;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
}
.p-merit__content-wrap:nth-child(2) .p-merit__content::before {
  content: "";
  position: absolute;
  background: url(../../assets/images/common/merit-image2.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  aspect-ratio: 398/398;
  object-fit: cover;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}
@media screen and (max-width: 340px) {
  .p-merit__content-wrap:nth-child(2) .p-merit__content::before {
    width: 140px;
    height: 140px;
    left: -60%;
  }
}
@media screen and (min-width: 341px) {
  .p-merit__content-wrap:nth-child(2) .p-merit__content::before {
    width: 160px;
    height: 160px;
    left: -60%;
  }
}
@media screen and (min-width: 459px) {
  .p-merit__content-wrap:nth-child(2) .p-merit__content::before {
    width: 200px;
    height: 200px;
    left: -50%;
  }
}
@media screen and (min-width: 600px) {
  .p-merit__content-wrap:nth-child(2) .p-merit__content::before {
    width: 250px;
    height: 250px;
    left: -50%;
  }
}
@media screen and (min-width: 400px) and (max-width: 459px) {
  .p-merit__content-wrap:nth-child(2) .p-merit__content::before {
    left: -40%;
  }
}
@media screen and (min-width: 673px) and (max-width: 767px) {
  .p-merit__content-wrap:nth-child(2) .p-merit__content::before {
    left: -40%;
  }
}
@media screen and (min-width: 768px) {
  .p-merit__content-wrap:nth-child(2) .p-merit__content::before {
    width: 300px;
    height: 300px;
    left: -50%;
  }
}
@media screen and (min-width: 900px) {
  .p-merit__content-wrap:nth-child(2) .p-merit__content::before {
    width: 300px;
    height: 300px;
    left: -40%;
  }
}
@media screen and (min-width: 967px) {
  .p-merit__content-wrap:nth-child(2) .p-merit__content::before {
    right: -30%;
  }
}
@media screen and (min-width: 1200px) {
  .p-merit__content-wrap:nth-child(2) .p-merit__content::before {
    width: 398px;
    height: 398px;
    left: -40%;
  }
}
@media screen and (min-width: 1438px) {
  .p-merit__content-wrap:nth-child(2) .p-merit__content::before {
    width: 398px;
    height: 398px;
    left: -20%;
  }
}
.p-merit__content-wrap:nth-child(2) .p-merit__content .p-merit__text {
  left: 7%;
}
.p-merit__content-wrap:nth-child(3) {
  justify-content: flex-start;
  margin-top: 20%;
}
@media screen and (min-width: 600px) {
  .p-merit__content-wrap:nth-child(3) {
    margin-top: 10%;
  }
}
.p-merit__content-wrap:nth-child(3) .p-merit__content {
  position: relative;
  z-index: 1;
}
.p-merit__content-wrap:nth-child(3) .p-merit__content:before {
  content: "";
  position: absolute;
  background: url(../../assets/images/common/merit-image4.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  aspect-ratio: 920/346;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
}
.p-merit__content-wrap:nth-child(3) .p-merit__content::after {
  content: "";
  position: absolute;
  background: url(../../assets/images/common/merit-image3.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  aspect-ratio: 398/398;
  object-fit: cover;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}
@media screen and (max-width: 340px) {
  .p-merit__content-wrap:nth-child(3) .p-merit__content::after {
    width: 140px;
    height: 140px;
    right: -60%;
  }
}
@media screen and (min-width: 341px) {
  .p-merit__content-wrap:nth-child(3) .p-merit__content::after {
    width: 160px;
    height: 160px;
    right: -60%;
  }
}
@media screen and (min-width: 400px) and (max-width: 458px) {
  .p-merit__content-wrap:nth-child(3) .p-merit__content::after {
    right: -40%;
  }
}
@media screen and (min-width: 459px) {
  .p-merit__content-wrap:nth-child(3) .p-merit__content::after {
    width: 200px;
    height: 200px;
    right: -50%;
  }
}
@media screen and (min-width: 600px) {
  .p-merit__content-wrap:nth-child(3) .p-merit__content::after {
    width: 250px;
    height: 250px;
    right: -50%;
  }
}
@media screen and (min-width: 673px) and (max-width: 767px) {
  .p-merit__content-wrap:nth-child(3) .p-merit__content::after {
    right: -40%;
  }
}
@media screen and (min-width: 768px) {
  .p-merit__content-wrap:nth-child(3) .p-merit__content::after {
    width: 300px;
    height: 300px;
    right: -50%;
  }
}
@media screen and (min-width: 900px) {
  .p-merit__content-wrap:nth-child(3) .p-merit__content::after {
    width: 300px;
    height: 300px;
    right: -30%;
  }
}
@media screen and (min-width: 1200px) {
  .p-merit__content-wrap:nth-child(3) .p-merit__content::after {
    width: 398px;
    height: 398px;
    right: -30%;
  }
}
@media screen and (min-width: 1438px) {
  .p-merit__content-wrap:nth-child(3) .p-merit__content::after {
    width: 398px;
    height: 398px;
    right: -20%;
  }
}
.p-merit__content-wrap:nth-child(3) .p-merit__content .p-merit__text {
  right: 8%;
}

.p-merit__content {
  width: 60.2920723227%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (min-width: 341px) {
  .p-merit__content {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media screen and (min-width: 600px) {
  .p-merit__content {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
@media screen and (min-width: 1200px) {
  .p-merit__content {
    padding-top: 90px;
    padding-bottom: 70px;
  }
}
@media screen and (min-width: 1438px) {
  .p-merit__content {
    padding-top: 143px;
    padding-bottom: 153px;
  }
}

.p-merit__text {
  position: relative;
  z-index: 2;
  width: fit-content;
}
.p-merit__text p {
  color: #000;
}
@media screen and (max-width: 340px) {
  .p-merit__text p {
    font-size: 0.75rem;
    font-weight: 700;
	  text-shadow: 1px 0px 4px #FFF;
  }
}
@media screen and (min-width: 341px) {
  .p-merit__text p {
    font-size: 0.75rem;
    font-weight: 700;
	  text-shadow: 1px 0px 4px #FFF;
  }
}
@media screen and (min-width: 600px) {
  .p-merit__text p {
    font-size: 1.25rem;
    font-weight: 600;
	   text-shadow: 0px 2px 2px #FFF;
  }
}
@media screen and (min-width: 900px) {
  .p-merit__text p {
    font-size: 1.875rem;
    font-weight: 600;
    text-shadow: 0px 4px 4px #FFF;
  }
}
@media screen and (min-width: 1200px) {
  .p-merit__text p {
    font-size: 2.5rem;
    font-weight: 600;
  }
}
@media screen and (min-width: 1600px) {
  .p-merit__text p {
    font-size: 3.125rem;
    font-weight: 600;
  }
}

.p-merit__message {
  margin-top: 93px;
  text-align: center;
}
.p-merit__message p {
  text-shadow: 0px 2.5px 2.5px #FFF, 0px 2.5px 2.5px #FFF;
}
@media screen and (max-width: 340px) {
  .p-merit__message p {
    font-size: 22px;
    font-weight: 600;
	  text-shadow: 0px 2.5px 2.5px #FFF, 0px 2.5px 2.5px #FFF;
  }
}
@media screen and (min-width: 341px) {
  .p-merit__message p {
    font-size: 23px;
    font-weight: 600;
	  text-shadow: 0px 2.5px 2.5px #FFF, 0px 2.5px 2.5px #FFF;
  }
}
@media screen and (min-width: 600px) {
  .p-merit__message p {
    font-size: 2.375rem;
    font-weight: 600;
	  text-shadow: 0px 3.992px 3.992px #FFF, 0px 3.992px 3.992px #FFF;
  }
}
@media screen and (min-width: 900px) {
  .p-merit__message p {
    font-size: 2.625rem;
    font-weight: 600;
  }
}
@media screen and (min-width: 1200px) {
  .p-merit__message p {
    font-size: 3.125rem;
    font-weight: 600;
  }
}

.p-greet {
  background: url(../../assets/images/common/greet-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: auto;
  aspect-ratio: 1442/1330;
  object-fit: cover;
}

.p-greet__inner {
  padding-top: 60px;
  padding-bottom: 80px;
}
@media screen and (min-width: 900px) {
  .p-greet__inner {
    padding-top: 150px;
    padding-bottom: 145px;
  }
}

.p-greet__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-greet__contents {
  background: rgba(255, 255, 255, 0.69);
  width: 85.3228962818%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 63px;
}

.p-greet__content {
  width: 83.4862385321%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.p-greet__content:nth-child(2) {
  margin-top: 50px;
}

@media screen and (max-width: 340px) {
  .p-greet__image {
    width: 100%;
  }
}
@media screen and (min-width: 341px) {
  .p-greet__image {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .p-greet__image {
    width: 60.0274725275%;
  }
}
.p-greet__image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 437/330;
  object-fit: cover;
}

.p-greet__name h2 {
  font-weight: 600;
  font-size: 25px;
}
@media screen and (min-width: 341px) {
  .p-greet__name h2 {
    font-size: 25px;
  }
}
@media screen and (min-width: 768px) {
  .p-greet__name h2 {
    font-size: 2.1875rem;
    font-weight: 600;
  }
}
@media screen and (min-width: 1600px) {
  .p-greet__name h2 {
    font-size: 2.8125rem;
    font-weight: 600;
  }
}

.p-greet__content ul li {
  font-weight: 300;
  text-shadow: 0px 3.992px 3.992px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 340px) {
  .p-greet__content ul li {
    font-size: 17px;
  }
}
@media screen and (min-width: 341px) {
  .p-greet__content ul li {
    font-size: 17px;
  }
}
@media screen and (min-width: 600px) {
  .p-greet__content ul li {
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) {
  .p-greet__content ul li {
    font-size: 1.75rem;
    font-weight: 300;
  }
}
@media screen and (min-width: 1600px) {
  .p-greet__content ul li {
    font-size: 2.1875rem;
    font-weight: 300;
  }
}
.p-greet__content ul li:first-child {
  margin-top: 20px;
}
.p-greet__content ul li:nth-child(2) {
  margin-top: 12px;
}
@media screen and (max-width: 340px) {
  .p-greet__content ul li:nth-child(2) {
    font-size: 17px;
  }
}
@media screen and (min-width: 600px) {
  .p-greet__content ul li:nth-child(2) {
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) {
  .p-greet__content ul li:nth-child(2) {
    font-size: 1.75rem;
    font-weight: 300;
  }
}
@media screen and (min-width: 1600px) {
  .p-greet__content ul li:nth-child(2) {
    font-size: 2.1875rem;
    font-weight: 300;
  }
}
.p-greet__content ul li:nth-child(3) {
  margin-top: 15px;
}
@media screen and (max-width: 340px) {
  .p-greet__content ul li:nth-child(3) {
    font-size: 15px;
  }
}
@media screen and (min-width: 341px) {
  .p-greet__content ul li:nth-child(3) {
    font-size: 16px;
  }
}
@media screen and (min-width: 600px) {
  .p-greet__content ul li:nth-child(3) {
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) {
  .p-greet__content ul li:nth-child(3) {
    font-size: 1.5625rem;
    font-weight: 300;
  }
}
@media screen and (min-width: 1600px) {
  .p-greet__content ul li:nth-child(3) {
    font-size: 2.1875rem;
    font-weight: 300;
  }
}

.p-greet__text {
  margin-top: 50px;
}
.p-greet__text p {
  font-weight: 400;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  text-align: left;
}
@media screen and (max-width: 340px) {
  .p-greet__text p {
    font-size: 18px;
  }
}
@media screen and (min-width: 341px) {
  .p-greet__text p {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .p-greet__text p {
    font-size: 1.5rem;
    font-weight: 400;
  }
}
@media screen and (min-width: 1600px) {
  .p-greet__text p {
    font-size: 1.75rem;
    font-weight: 400;
  }
}

@media screen and (min-width: 600px) {
  .u-600 {
    display: none;
  }
}

@media screen and (min-width: 1200px) {
  .u-1200 {
    display: none;
  }
}

@media screen and (max-width: 462px) {
  .u-462 {
    display: block;
  }
}
@media screen and (min-width: 463px) {
  .u-462 {
    display: none;
  }
}
@media screen and (min-width: 600px) {
  .u-462 {
    display: block;
  }
}
@media screen and (min-width: 900px) {
  .u-462 {
    display: none;
  }
}

@media screen and (min-width: 1200px) {
  .u-900 {
    display: none;
  }
}

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