@charset "UTF-8";
@font-face {
  font-display: swap;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/NotoSansJP-Regular.woff") format("woff");
}
@font-face {
  font-display: swap;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/NotoSansJP-Medium.woff") format("woff");
}
@font-face {
  font-display: swap;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/NotoSansJP-SemiBold.woff") format("woff");
}
@font-face {
  font-display: swap;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/NotoSansJP-Bold.woff") format("woff");
}
@font-face {
  font-display: swap;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/NotoSansJP-ExtraBold.woff") format("woff");
}
@font-face {
  font-display: swap;
  font-family: "Josefin Sans";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/JosefinSans-SemiBold.woff") format("woff");
}
@font-face {
  font-display: swap;
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Jost-Regular.woff") format("woff");
}
@font-face {
  font-display: swap;
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Jost-Medium.woff") format("woff");
}
/*
 * 参考
 * 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 */
/* Set core body defaults */
body {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

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

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

/* 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 */
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * 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;
  scroll-behavior: smooth;
}

body {
  color: #103c3c;
  display: flex;
  flex-direction: column;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  font-weight: 400;
  min-height: 100svh;
  overflow-x: hidden;
  position: relative;
  text-rendering: optimizeSpeed;
}

body.is-fixed {
  overflow: hidden;
}
main {
  flex-grow: 1;
}

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

.l-header {
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
}

.c-bg-gray {
  background-color: #f4f1ef;
}

.c-breadcrumb {
  margin-top: 64px;
  margin-top: 4rem;
  position: relative;
  width: 100%;
  z-index: 10;
}

.c-breadcrumb__inner {
  align-items: center;
  display: flex;
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
}

.c-breadcrumb__link,
.c-breadcrumb__current,
.post .post-page .current-item {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  line-height: 1.5;
}

.c-breadcrumb__link {
  position: relative;
  transition: color 0.3s;
}
.c-breadcrumb__link::after {
  background: #ffffff;
  bottom: -2px;
  bottom: -0.125rem;
  content: "";
  height: 1px;
  height: 0.0625rem;
  left: 0;
  position: absolute;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.5s;
  width: 100%;
}
.c-breadcrumb__link:hover::after {
  transform: scale(1, 1);
  transform-origin: left top;
}
.c-breadcrumb__link:hover {
  color: #ffffff;
}

.c-breadcrumb__arrow {
  background-image: url(../images/common/breadcrumb-arrow.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
  height: 6px;
  height: 0.375rem;
  width: 3px;
  width: 0.1875rem;
}

.c-button {
  align-items: center;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: inset 0 -0.25rem 0.5rem 0 rgba(0, 0, 0, 0.25);
  display: inline-flex;
  height: 60px;
  height: 3.75rem;
  justify-content: center;
  outline: 2px solid rgba(255, 255, 255, 0.3);
  outline-offset: -2px;
  transition: 0.3s;
  width: 60px;
  width: 3.75rem;
}

.c-button::after {
  background-image: url(../images/common/button-arrow.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 13px;
  height: 0.8125rem;
  transition: 0.3s;
  width: 13px;
  width: 0.8125rem;
}

.c-button.c-button--prev::after {
  transform: rotate(180deg);
}

.c-button:hover {
  background-color: #f4f4f4;
  box-shadow: inset 0 0.25rem 0.5rem 0 rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.c-button:hover::after {
  transform: rotate(360deg);
}

.c-button:hover.c-button--prev::after {
  transform: rotate(-180deg);
}

.c-contents__title {
  -webkit-line-clamp: 2;
  color: #ffffff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.c-contents__meta {
  align-items: center;
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

.c-contents__category {
  border-radius: 0.5rem;
  color: #ffffff;
  outline: 1px solid #ffffff;
  padding: 1.5px 10px;
  padding: 0.09375rem 0.625rem;
}

.c-contents__date {
  color: #ffffff;
  font-family: "Jost", sans-serif;
}

.c-section-title {
  align-items: center;
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
}

.c-section-title__jp {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 2;
}

.c-section-title__jp.c-section-title__jp--white {
  color: #ffffff;
}

.c-section-title__en {
  color: #009b4a;
  font-family: "Josefin Sans", sans-serif;
  font-size: 62px;
  font-size: 3.875rem;
  font-weight: 600;
  letter-spacing: 2.4px;
  letter-spacing: 0.15rem;
  line-height: 1.5;
  text-transform: uppercase;
}

.c-section-title__en.c-section-title__en--white {
  color: #ffffff;
}

.p-404 {
  padding: 100px 0;
  padding: 6.25rem 0;
}

.p-404__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  max-width: 62.5rem;
  padding: 0 25px;
  padding: 0 1.5625rem;
  width: 100%;
}

.p-404__text {
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.p-404__button-wrap {
  margin-top: 60px;
  margin-top: 3.75rem;
  text-align: center;
}

.p-404__button {
  background: linear-gradient(180deg, rgb(0, 155, 74) 0%, rgb(26, 212, 115) 100%);
  border-radius: 1.875rem;
  box-shadow: inset 0 -0.5rem 0.5625rem 0 rgba(0, 0, 0, 0.16), inset 0 0.25rem 0.4375rem 0 rgba(255, 255, 255, 0.25);
  color: #ffffff;
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
  max-width: 289px;
  max-width: 18.0625rem;
  outline: 1px solid rgba(255, 255, 255, 0.3);
  outline-offset: -1px;
  padding: 18px 56px;
  padding: 1.125rem 3.5rem;
  text-align: center;
  transition: 0.3s ease-out;
  width: 100%;
}
.p-404__button:hover {
  box-shadow: none;
}

.p-about {
  background-color: #ffffff;
  overflow: hidden;
  padding-bottom: 444px;
  padding-bottom: 27.75rem;
  padding-top: 156px;
  padding-top: 9.75rem;
  position: relative;
}
.p-about::before, .p-about::after {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  z-index: 10;
}
.p-about::before {
  animation: floatingCloudL 12s ease-in-out infinite;
  aspect-ratio: 310/175;
  background-image: url(../images/common/about-cloud-left-pc.webp);
  left: 0;
  max-width: 310px;
  max-width: 19.375rem;
  top: 78px;
  top: 4.875rem;
}
.p-about::after {
  animation: floatingCloudR 8s ease-in-out infinite;
  aspect-ratio: 171/96;
  background-image: url(../images/common/about-cloud-right-pc.webp);
  max-width: 171px;
  max-width: 10.6875rem;
  right: 61.5px;
  right: 3.84375rem;
  top: 177px;
  top: 11.0625rem;
}

@keyframes floatingCloudL {
  0% {
    transform: translateX(20px) translateY(20px);
  }
  50% {
    transform: translateX(-20px) translateY(-20px);
  }
  100% {
    transform: translateX(20px) translateY(20px);
  }
}
@keyframes floatingCloudR {
  0% {
    transform: translateX(-1.25rem) translateY(1.25rem);
  }
  50% {
    transform: translateX(1.25rem) translateY(-1.25rem);
  }
  100% {
    transform: translateX(-1.25rem) translateY(1.25rem);
  }
}
.p-about__bg-earth {
  animation: rotateEarthPC 80s linear infinite;
  aspect-ratio: 1/1;
  background-image: url(../images/common/bg-earth-pc.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  left: 0;
  position: absolute;
  width: 100%;
}

@keyframes rotateEarthPC {
  0% {
    transform: translateY(68%) rotate(0deg);
  }
  100% {
    transform: translateY(68%) rotate(-360deg);
  }
}
@keyframes rotateEarthSP {
  0% {
    transform: translateY(60%) rotate(0deg) scale(1.5);
  }
  100% {
    transform: translateY(60%) rotate(-360deg) scale(1.5);
  }
}
.p-about__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  max-width: 62.5rem;
  padding: 0 25px;
  padding: 0 1.5625rem;
  position: relative;
  width: 100%;
  z-index: 15;
}

.p-about__description {
  color: #103c3c;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-top: 32px;
  margin-top: 2rem;
  text-align: center;
}

.p-about__button-wrap {
  margin-top: 64px;
  margin-top: 4rem;
  text-align: center;
}

.p-about__button {
  background: linear-gradient(180deg, rgb(0, 155, 74) 0%, rgb(26, 212, 115) 100%);
  border-radius: 1.875rem;
  box-shadow: inset 0 -0.5rem 0.5625rem 0 rgba(0, 0, 0, 0.16), inset 0 0.25rem 0.4375rem 0 rgba(255, 255, 255, 0.25);
  color: #ffffff;
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
  max-width: 289px;
  max-width: 18.0625rem;
  outline: 1px solid rgba(255, 255, 255, 0.3);
  outline-offset: -1px;
  padding: 18px 56px;
  padding: 1.125rem 3.5rem;
  text-align: center;
  transition: 0.3s ease-out;
  width: 100%;
}
.p-about__button:hover {
  box-shadow: none;
}

.p-card {
  list-style: none;
  opacity: 0;
}

.p-card a {
  background-color: #f4f1ef;
  border-radius: 2rem;
  box-shadow: -0.4375rem -0.4375rem 0.75rem white, 0.4375rem 0.4375rem 0.75rem rgba(11, 81, 53, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 14px;
  padding: 0.875rem;
  width: 100%;
}

.p-card__img {
  border-radius: 1.1875rem;
  overflow: hidden;
  width: 100%;
}

.p-card__img img {
  aspect-ratio: 348/262;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  border-radius: 1.1875rem;
     object-fit: cover;
  transition: transform 0.3s;
}

.p-card a:hover img {
  transform: scale(1.1);
}

.p-card__title {
  -webkit-line-clamp: 3;
  color: #103c3c;
  display: -webkit-box;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.7;
  margin-top: 18px;
  margin-top: 1.125rem;
  padding-left: 8px;
  padding-left: 0.5rem;
  padding-right: 8px;
  padding-right: 0.5rem;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.p-card__meta {
  align-items: center;
  display: flex;
  margin-top: auto;
  padding: 10px 8px 15px;
  padding: 0.625rem 0.5rem 0.9375rem;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

.p-card__category {
  border-radius: 0.5rem;
  color: #009b4a;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 2;
  outline: 1px solid #009b4a;
  outline-offset: -1px;
  padding: 1.5px 10px;
  padding: 0.09375rem 0.625rem;
}

.p-card__date {
  color: #009b4a;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  line-height: 1.5;
}

.p-contact-confirm {
  padding: 117px 0 104px;
  padding: 7.3125rem 0 6.5rem;
}

.p-contact-confirm__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  max-width: 62.5rem;
  padding: 0 25px;
  padding: 0 1.5625rem;
  width: 100%;
}

.p-contact-confirm__attention {
  color: #009b4a;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.75;
  text-align: center;
}

.p-contact-confirm__attention span {
  color: #103c3c;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
}

.p-contact-thanks {
  padding: 117px 0 104px;
  padding: 7.3125rem 0 6.5rem;
}

.p-contact-thanks__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  max-width: 62.5rem;
  padding: 0 25px;
  padding: 0 1.5625rem;
  width: 100%;
}

.p-contact-thanks__attention {
  color: #009b4a;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.75;
  text-align: center;
}

.p-contact-thanks__attention span {
  color: #103c3c;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
}

.p-contact-thanks__button-wrap {
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}

.p-contact-thanks__button {
  background: linear-gradient(180deg, rgb(0, 155, 74) 0%, rgb(26, 212, 115) 100%);
  border-radius: 1.875rem;
  box-shadow: inset 0 -0.5rem 0.5625rem 0 rgba(0, 0, 0, 0.16), inset 0 0.25rem 0.4375rem 0 rgba(255, 255, 255, 0.25);
  color: #ffffff;
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
  max-width: 289px;
  max-width: 18.0625rem;
  outline: 1px solid rgba(255, 255, 255, 0.3);
  outline-offset: -1px;
  padding: 18px 56px;
  padding: 1.125rem 3.5rem;
  text-align: center;
  transition: 0.3s ease-out;
  width: 100%;
}
.p-contact-thanks__button:hover {
  box-shadow: none;
}

.p-footer {
  background-color: #103c3c;
  padding: 97px 0 95px;
  padding: 6.0625rem 0 5.9375rem;
}

.p-footer__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  max-width: 75rem;
  padding: 0 25px;
  padding: 0 1.5625rem;
  width: 100%;
}

.p-footer__contact {
  align-items: center;
  background-image: url(../images/common/footer-contact-bg-pc.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 2rem;
  display: flex;
  justify-content: space-between;
  outline: 3px solid rgba(255, 255, 255, 0.3);
  outline-offset: -3px;
  padding: 99px 70px 99px 100px;
  padding: 6.1875rem 4.375rem 6.1875rem 6.25rem;
  transition: box-shadow 0.3s;
  width: 100%;
}

.p-footer__contact:hover {
  box-shadow: inset 0 0 1.25rem 0 rgba(11, 81, 53, 0.4);
}

.p-footer__contact-title {
  display: flex;
  flex-direction: column;
}

.p-footer__contact-title--en {
  color: #ffffff;
  font-family: "Josefin Sans", sans-serif;
  font-size: 62px;
  font-size: 3.875rem;
  font-weight: 600;
  letter-spacing: 2.4px;
  letter-spacing: 0.15rem;
  line-height: 1.5;
  text-transform: uppercase;
}

.p-footer__contact-title--jp {
  color: #ffffff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-top: -12px;
  margin-top: -0.75rem;
}

.p-footer__contact-description {
  color: #ffffff;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-footer__contact-button {
  align-items: center;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: inset 0 -0.25rem 0.5rem 0 rgba(0, 0, 0, 0.25);
  display: inline-flex;
  height: 60px;
  height: 3.75rem;
  justify-content: center;
  outline: 2px solid rgba(255, 255, 255, 0.3);
  outline-offset: -2px;
  transition: 0.3s;
  width: 60px;
  width: 3.75rem;
}

.p-footer__contact-button::after {
  background-image: url(../images/common/button-arrow.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 13px;
  height: 0.8125rem;
  transition: 0.3s;
  width: 13px;
  width: 0.8125rem;
}

.p-footer__contact:hover .p-footer__contact-button {
  background-color: #f4f4f4;
  box-shadow: inset 0 0.25rem 0.5rem 0 rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.p-footer__contact:hover .p-footer__contact-button::after {
  transform: rotate(360deg);
}

.p-footer__middle {
  align-items: center;
  display: flex;
  height: 42px;
  height: 2.625rem;
  justify-content: space-between;
  margin-top: 67px;
  margin-top: 4.1875rem;
}

.p-footer__logo {
  height: inherit;
  max-width: 181px;
  max-width: 11.3125rem;
  width: 100%;
}

.p-footer__logo a {
  align-items: center;
  display: flex;
  height: inherit;
}

.p-footer__logo img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-footer__nav {
  align-items: center;
  display: flex;
  height: inherit;
}

.p-footer__nav-list {
  display: flex;
  height: inherit;
}

.p-footer__nav-item {
  height: inherit;
}

.p-footer__nav-item a {
  align-items: center;
  color: #ffffff;
  display: flex;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  height: inherit;
  letter-spacing: 0.05em;
  line-height: 1.2857142857;
  padding: 0 16px;
  padding: 0 1rem;
}

.p-footer__nav-item:hover a {
  opacity: 0.6;
}

.p-footer__nav-contact {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-left: 48px;
  margin-left: 3rem;
  padding: 10px 16px;
  padding: 0.625rem 1rem;
  position: relative;
  -moz-column-gap: 0.25rem;
  background: linear-gradient(180deg, rgb(0, 155, 74) 0%, rgb(26, 212, 115) 100%);
  border-radius: 1.875rem;
  box-shadow: inset 0 -0.5rem 0.5625rem 0 rgba(0, 0, 0, 0.16), inset 0 0.25rem 0.4375rem 0 rgba(255, 255, 255, 0.25);
  color: #ffffff;
       column-gap: 0.25rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.2857142857;
  outline: 1px solid rgba(255, 255, 255, 0.3);
  outline-offset: -1px;
  transition: 0.3s ease-out;
}
.p-footer__nav-contact:hover {
  box-shadow: none;
}

.p-footer__nav-contact::before {
  background-image: url(../images/common/contact-plane.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: inline-block;
  height: 22px;
  height: 1.375rem;
  transform: rotate(-7.44deg);
  transition: 0.3s ease-out;
  width: 27px;
  width: 1.6875rem;
}

.p-footer__nav-contact:hover::before {
  transform: rotate(10deg);
}

.p-footer__bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-footer__bottom-sns {
  align-items: center;
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

.p-footer__bottom-sns a {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 50px;
  height: 3.125rem;
  transition: 0.3s;
  width: 50px;
  width: 3.125rem;
}

.p-footer__bottom-sns a:first-child {
  background-image: url(../images/common/x-icon.svg);
}
.p-footer__bottom-sns a:first-child:hover {
  background-image: url(../images/common/x-icon-hover.svg);
}

.p-footer__bottom-sns a:nth-child(2) {
  background-image: url(../images/common/instagram-icon.svg);
}
.p-footer__bottom-sns a:nth-child(2):hover {
  background-image: url(../images/common/instagram-icon-hover.svg);
}

.p-footer__bottom-sns a:nth-child(3) {
  background-image: url(../images/common/facebook-icon.svg);
}
.p-footer__bottom-sns a:nth-child(3):hover {
  background-image: url(../images/common/facebook-icon-hover.svg);
}

.p-footer__bottom-small {
  align-items: end;
  display: flex;
  -moz-column-gap: 2.25rem;
       column-gap: 2.25rem;
}

.p-footer__bottom-copyright,
.p-footer__bottom-privacy {
  color: #ffffff;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  transition: opacity 0.3s;
}

.p-footer__bottom-copyright {
  position: relative;
}

.p-footer__bottom-copyright::after {
  background-color: #ffffff;
  content: "";
  height: 12px;
  height: 0.75rem;
  position: absolute;
  right: -18px;
  right: -1.125rem;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  width: 0.0625rem;
}

.p-footer__bottom-privacy:hover {
  opacity: 0.6;
}

.p-form-button {
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
  text-align: center;
}

.p-form-button__submit {
  background: linear-gradient(180deg, rgb(0, 155, 74) 0%, rgb(26, 212, 115) 100%);
  border: none;
  border-radius: 2.625rem;
  box-shadow: inset 0 0.25rem 0.4375rem rgba(255, 255, 255, 0.25), inset 0 -0.5rem 0.5625rem rgba(0, 0, 0, 0.16);
  color: #ffffff;
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
  padding: 18px 60px;
  padding: 1.125rem 3.75rem;
  -webkit-text-decoration: none;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s;
}
.p-form-button__submit:hover {
  box-shadow: inset 0.4375rem 0.4375rem 0.6875rem rgba(0, 0, 0, 0.2);
}

.p-form-button .wpcf7-spinner {
  margin: 0;
  position: absolute;
  right: 20%;
  top: 50%;
  transform: translateY(-50%);
}

.p-form-input input {
  border: none;
  border-radius: 1rem;
  box-shadow: inset 0 0.125rem 0.625rem rgba(0, 0, 0, 0.06);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
  outline: 2px solid rgba(255, 255, 255, 0.68);
  outline-offset: -2px;
  padding: 12px 25px;
  padding: 0.75rem 1.5625rem;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #f3f3f3;
  background-image: none;
  transition: background-color 0.3s;
}

.p-form-input input:focus {
  background-color: #ffffff;
  border: none;
  box-shadow: inset 0 0.125rem 0.625rem rgba(0, 0, 0, 0.06);
}

.p-form-input input::-moz-placeholder {
  color: rgba(16, 60, 60, 0.3);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
}

.p-form-input input::placeholder {
  color: rgba(16, 60, 60, 0.3);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
}

.p-form-privacy input {
  display: none;
}

.p-form-privacy input + span {
  cursor: pointer;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
  padding: 0 0 0 34px;
  padding: 0 0 0 2.125rem;
  position: relative;
}

.p-form-privacy input + span::before {
  background-color: #f3f3f3;
  border-radius: 0.375rem;
  content: "";
  display: block;
  height: 26px;
  height: 1.625rem;
  left: 0;
  outline: 2px solid rgba(255, 255, 255, 0.68);
  outline-offset: -2px;
  position: absolute;
  top: 0;
  transition: 0.3s;
  width: 26px;
  width: 1.625rem;
}

.p-form-privacy input:checked + span::before {
  background-color: #009b4a;
}

.p-form-privacy input + span::after {
  border-bottom: 3px solid #ffffff;
  border-bottom: 0.1875rem solid #ffffff;
  border-left: 3px solid #ffffff;
  border-left: 0.1875rem solid #ffffff;
  content: "";
  display: block;
  height: 9px;
  height: 0.5625rem;
  left: 6px;
  left: 0.375rem;
  margin-top: -2px;
  margin-top: -0.125rem;
  opacity: 0;
  position: absolute;
  top: 8px;
  top: 0.5rem;
  transform: rotate(-45deg);
  transition: 0.3s;
  width: 14px;
  width: 0.875rem;
}

.p-form-privacy input + span a {
  color: #009b4a;
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

.p-form-privacy input:checked + span::after {
  opacity: 1;
}

.p-form-radio {
  align-items: center;
  display: flex;
  -moz-column-gap: 1.6875rem;
       column-gap: 1.6875rem;
}

.p-form-radio input {
  display: none;
}

.p-form-radio input + span {
  cursor: pointer;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
  padding: 0 0 0 27px;
  padding: 0 0 0 1.6875rem;
  position: relative;
}

.p-form-radio input + span::before {
  background: #f3f3f3;
  border-radius: 50%;
  box-shadow: inset 0 0.125rem 0.625rem rgba(0, 0, 0, 0.06);
  content: "";
  display: block;
  height: 19px;
  height: 1.1875rem;
  left: 0;
  outline: 2px solid rgba(255, 255, 255, 0.68);
  outline-offset: -2px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 19px;
  width: 1.1875rem;
}

.p-form-radio input + span::after {
  background: #009b4a;
  border-radius: 50%;
  box-shadow: inset 0 0.125rem 0.625rem rgba(0, 0, 0, 0.06);
  content: "";
  height: 19px;
  height: 1.1875rem;
  left: 0;
  opacity: 0;
  outline: 2px solid rgba(255, 255, 255, 0.68);
  outline-offset: -2px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
  width: 19px;
  width: 1.1875rem;
}

.p-form-radio input:checked + span::after {
  opacity: 1;
}

.p-form-submit input {
  background: linear-gradient(180deg, rgb(0, 155, 74) 0%, rgb(26, 212, 115) 100%);
  border: none;
  border-radius: 2.625rem;
  box-shadow: inset 0 0.25rem 0.4375rem rgba(255, 255, 255, 0.25), inset 0 -0.5rem 0.5625rem rgba(0, 0, 0, 0.16);
  color: #ffffff;
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
  padding: 27px 115px;
  padding: 1.6875rem 7.1875rem;
  -webkit-text-decoration: none;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s;
}
.p-form-submit input:hover {
  box-shadow: inset 0.4375rem 0.4375rem 0.6875rem rgba(0, 0, 0, 0.2);
}

.p-form-submit input::-moz-foucus-inner {
  border: none;
  padding: 0;
}

.p-form-textarea textarea {
  border: none;
  border-radius: 1rem;
  box-shadow: inset 0 0.125rem 0.625rem rgba(0, 0, 0, 0.06);
  font-weight: 500;
  height: 231px;
  height: 14.4375rem;
  letter-spacing: 0.05em;
  line-height: 2;
  outline: 2px solid rgba(255, 255, 255, 0.68);
  outline-offset: -2px;
  padding: 12px 25px;
  padding: 0.75rem 1.5625rem;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #f3f3f3;
  background-image: none;
  transition: background-color 0.3s;
}

.p-form-textarea textarea:focus {
  background-color: #ffffff;
  border: none;
  box-shadow: inset 0 0.125rem 0.625rem rgba(0, 0, 0, 0.06);
}

.p-form-textarea textarea::-moz-placeholder {
  color: rgba(16, 60, 60, 0.3);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
}

.p-form-textarea textarea::placeholder {
  color: rgba(16, 60, 60, 0.3);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
}

.p-form__wrap {
  align-items: center;
  display: flex;
}

.p-form__wrap.p-form__wrap--textarea {
  align-items: flex-start;
}

.p-form__wrap + .p-form__wrap {
  margin-top: 36px;
  margin-top: 2.25rem;
}

.p-form__label {
  align-items: center;
  color: #103c3c;
  display: flex;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 2;
  max-width: 227px;
  max-width: 14.1875rem;
  width: 100%;
}

.p-form__wrap.p-form__wrap--textarea .p-form__label {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-form__label span {
  color: #f12d31;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-left: 6px;
  margin-left: 0.375rem;
}

.p-form__input,
.p-form__select,
.p-form__radio,
.p-form__checkbox,
.p-form__textarea {
  margin-top: 0;
}

.p-form__input,
.p-form__textarea {
  flex-grow: 1;
}

.p-form__privacy {
  margin-top: 58px;
  margin-top: 3.625rem;
  text-align: center;
}

.p-form__submit {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 21px;
  margin-top: 1.3125rem;
  position: relative;
}

.p-form__button {
  margin-top: 80px;
  margin-top: 5rem;
}

.p-form__submit .wpcf7-spinner {
  margin: 0;
  position: absolute;
  right: 20%;
  top: 50%;
  transform: translateY(-50%);
}

.p-header {
  background-color: rgba(0, 155, 74, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 -0.0625rem 0.0625rem 0 rgba(0, 0, 0, 0.19), 0 0.0625rem 0.1875rem 0 rgba(0, 0, 0, 0.17);
  height: 88px;
  height: 5.5rem;
}

.p-header__inner {
  align-items: center;
  display: flex;
  height: inherit;
  justify-content: space-between;
  padding: 0 58px;
  padding: 0 3.625rem;
}

.p-header__logo {
  height: inherit;
  max-width: 181px;
  max-width: 11.3125rem;
  width: 100%;
  z-index: 1000;
}

.p-header__logo a {
  align-items: center;
  display: flex;
  height: inherit;
}

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

.p-header__nav {
  align-items: center;
  display: flex;
  gap: 27px;
  gap: 1.6875rem;
  height: inherit;
}

.p-header__nav-list {
  display: flex;
  flex-shrink: 0;
  height: inherit;
}

.p-header__nav-item {
  height: inherit;
}

.p-header__nav-item a {
  align-items: center;
  color: #ffffff;
  display: flex;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  height: inherit;
  letter-spacing: 0.05em;
  line-height: 1.2857142857;
  padding: 0 16px;
  padding: 0 1rem;
}

.p-header__nav-item:hover a {
  opacity: 0.6;
}

.p-header__nav-search-form {
  align-items: center;
  background-color: #f3f3f3;
  border-radius: 2.03125rem;
  box-shadow: inset 0 0.125rem 0.5rem 0 rgba(0, 0, 0, 0.12);
  display: flex;
  flex-shrink: 0;
  height: 100%;
  margin-left: 0;
  max-height: 32px;
  max-height: 2rem;
  max-width: 218px;
  max-width: 13.625rem;
  outline: 1px solid rgba(255, 255, 255, 0.68);
  padding: 4px 6px;
  padding: 0.25rem 0.375rem;
  width: 100%;
}

.p-header__nav-search-field {
  background-color: transparent;
  border: none;
  color: #103c3c;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  height: 100%;
  letter-spacing: 0.05em;
  line-height: 2;
  max-height: 30px;
  max-height: 1.875rem;
  max-width: 180px;
  max-width: 11.25rem;
  outline: none;
  padding: 7px 0 7px 15px;
  padding: 0.4375rem 0 0.4375rem 0.9375rem;
  width: 100%;
}

.p-header__nav-search-field::-moz-placeholder {
  color: rgba(16, 60, 60, 0.3);
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
}

.p-header__nav-search-field::placeholder {
  color: rgba(16, 60, 60, 0.3);
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
}

.p-header__nav-search-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  padding: 0.375rem;
}
.p-header__nav-search-button::before {
  background-image: url(../images/common/search-glass.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 12px;
  height: 0.75rem;
  transition: 0.3s;
  width: 12px;
  width: 0.75rem;
}
.p-header__nav-search-button:hover::before {
  background-image: url(../images/common/search-glass--hover.webp);
  transform: scale(1.2);
}

.p-header__nav-contact {
  align-items: center;
  display: flex;
  margin-left: 0;
  padding: 10px 16px;
  padding: 0.625rem 1rem;
  position: relative;
  -moz-column-gap: 0.3125rem;
  background-color: rgba(126, 71, 228, 0.7);
  border-radius: 1.4375rem;
  box-shadow: inset 0 -0.5rem 0.5625rem 0 rgba(0, 0, 0, 0.16), inset 0 0.25rem 0.4375rem 0 rgba(255, 255, 255, 0.25);
  color: #ffffff;
       column-gap: 0.3125rem;
  flex-shrink: 0;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.2857142857;
  outline: 1px solid rgba(255, 255, 255, 0.3);
  transition: 0.3s ease-out;
}
.p-header__nav-contact:hover {
  background-color: #7e47e4;
  box-shadow: inset 0 0.5rem 0.5625rem 0 rgba(0, 0, 0, 0.16), inset 0 -0.25rem 0.4375rem 0 rgba(255, 255, 255, 0.25);
}
.p-header__nav-contact::before {
  background-image: url(../images/common/contact-plane.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: inline-block;
  height: 22px;
  height: 1.375rem;
  transition: 0.3s ease-out;
  width: 27px;
  width: 1.6875rem;
}
.p-header__nav-contact:hover::before {
  transform: rotate(-10deg);
}

.p-header__hamburger {
  display: none;
}

.p-header__hamburger span {
  border-radius: 1.4375rem;
  color: #ffffff;
  display: block;
  font-family: "Josefin Sans", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.4px;
  letter-spacing: 0.0875rem;
  line-height: 1.5;
  outline: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 18px 7px;
  padding: 0.625rem 1.125rem 0.4375rem;
  text-transform: uppercase;
  transition: 0.5s;
}
.p-header__hamburger span::before {
  content: "menu";
}

.p-header__hamburger.is-open span::before {
  content: "close";
}

.p-header__drawer {
  background-image: url(../images/common/drawer-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  display: none;
  height: 100dvh;
  left: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  padding: 111px 0 218px;
  padding: 6.9375rem 0 13.625rem;
  position: absolute;
  right: 0;
  scrollbar-width: none;
  top: 0;
  width: 100%;
  z-index: 900;
}
.p-header__drawer::before, .p-header__drawer::after {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  position: absolute;
  width: 100%;
}
.p-header__drawer::before {
  animation: moveCloudTop 15s linear infinite;
  aspect-ratio: 89/50;
  background-image: url(../images/common/drawer-cloud-top.webp);
  left: 20px;
  left: 1.25rem;
  max-width: 100px;
  max-width: 6.25rem;
  top: 51px;
  top: 3.1875rem;
}
.p-header__drawer::after {
  animation: moveCloudBottom 20s linear infinite;
  aspect-ratio: 207/117;
  background-image: url(../images/common/drawer-cloud-bottom.webp);
  bottom: 39px;
  bottom: 2.4375rem;
  max-width: 250px;
  max-width: 15.625rem;
  right: 20px;
  right: 1.25rem;
}

.p-header__drawer::-webkit-scrollbar {
  display: none;
}

@keyframes moveCloudTop {
  0% {
    opacity: 0;
    transform: translateX(0) translateY(0);
  }
  10% {
    opacity: 1;
  }
  20% {
    filter: blur(8px);
    filter: blur(0.5rem);
    opacity: 1;
    transform: translateX(15vw) translateY(0.5rem);
  }
  40% {
    filter: blur(0);
    opacity: 1;
    transform: translateX(30vw) translateY(-0.5rem);
  }
  60% {
    filter: blur(8px);
    filter: blur(0.5rem);
    opacity: 1;
    transform: translateX(45vw) translateY(0.5rem);
  }
  80% {
    filter: blur(0);
    opacity: 1;
    transform: translateX(60vw) translateY(-0.5rem);
  }
  100% {
    opacity: 0;
    transform: translateX(75vw);
  }
}
@keyframes moveCloudBottom {
  0% {
    opacity: 0;
    transform: translateX(0) translateY(0);
  }
  10% {
    opacity: 1;
  }
  20% {
    filter: blur(8px);
    filter: blur(0.5rem);
    opacity: 1;
    transform: translateX(-15vw) translateY(0.5rem);
  }
  40% {
    filter: blur(0);
    opacity: 1;
    transform: translateX(-30vw) translateY(-0.5rem);
  }
  60% {
    filter: blur(8px);
    filter: blur(0.5rem);
    opacity: 1;
    transform: translateX(-45vw) translateY(0.5rem);
  }
  80% {
    filter: blur(0);
    opacity: 1;
    transform: translateX(-60vw) translateY(-0.5rem);
  }
  100% {
    opacity: 0;
    transform: translateX(-75vw);
  }
}
.p-header__drawer-nav {
  margin-left: auto;
  margin-right: auto;
  max-width: 768px;
  max-width: 48rem;
  padding: 0 32px;
  padding: 0 2rem;
  position: relative;
  width: 100%;
  z-index: 1001;
}

.p-header__drawer-search-form {
  align-items: center;
  background-color: #f3f3f3;
  border-radius: 2.03125rem;
  box-shadow: inset 0 0.125rem 0.5rem 0 rgba(0, 0, 0, 0.12);
  display: flex;
  height: 100%;
  max-height: 42px;
  max-height: 2.625rem;
  outline: 1px solid rgba(255, 255, 255, 0.68);
  padding: 4px 6px;
  padding: 0.25rem 0.375rem;
  width: 100%;
}

.p-header__drawer-search-field {
  background-color: transparent;
  border: none;
  color: #103c3c;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  height: 100%;
  letter-spacing: 0.05em;
  line-height: 2;
  max-height: 30px;
  max-height: 1.875rem;
  outline: none;
  padding: 7px 0 7px 15px;
  padding: 0.4375rem 0 0.4375rem 0.9375rem;
  width: 100%;
}

.p-header__drawer-search-field::-moz-placeholder {
  color: rgba(16, 60, 60, 0.3);
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
}

.p-header__drawer-search-field::placeholder {
  color: rgba(16, 60, 60, 0.3);
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
}

.p-header__drawer-search-button {
  background: none;
  border: none;
  padding: 6px;
  padding: 0.375rem;
}
.p-header__drawer-search-button::before {
  background-image: url(../images/common/search-glass.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 14px;
  height: 0.875rem;
  width: 14px;
  width: 0.875rem;
}

.p-header__drawer-list {
  margin-top: 64px;
  margin-top: 4rem;
}

.p-header__drawer-item a {
  color: #ffffff;
  display: block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 0.9;
  padding: 18px 0;
  padding: 1.125rem 0;
  text-align: center;
}

.p-header__drawer-contact {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 36px;
  margin-top: 2.25rem;
  padding: 12px 16px;
  padding: 0.75rem 1rem;
  position: relative;
  -moz-column-gap: 0.3125rem;
  background: linear-gradient(180deg, rgb(0, 155, 74) 0%, rgb(26, 212, 115) 100%);
  border-radius: 1.875rem;
  box-shadow: inset 0 -0.5rem 0.5625rem 0 rgba(0, 0, 0, 0.16), inset 0 0.25rem 0.4375rem 0 rgba(255, 255, 255, 0.25);
  color: #ffffff;
       column-gap: 0.3125rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.125;
  max-width: 234px;
  max-width: 14.625rem;
  outline: 1px solid rgba(255, 255, 255, 0.3);
  outline-offset: -1px;
  width: 100%;
}
.p-header__drawer-contact::before {
  background-image: url(../images/common/contact-plane.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: inline-block;
  height: 28px;
  height: 1.75rem;
  transform: rotate(-7.44deg);
  width: 35px;
  width: 2.1875rem;
}

.p-header__drawer-sns {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 40px;
  margin-top: 2.5rem;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

.p-header__drawer-sns a {
  border-radius: 50%;
  max-width: 50px;
  max-width: 3.125rem;
  outline: 1px solid rgba(255, 255, 255, 0.68);
  outline-offset: -2.5px;
  outline-offset: -0.15625rem;
  width: 100%;
}

.p-header__drawer-sns img {
  aspect-ratio: 1/1;
  border-radius: 50%;
  width: 100%;
}

.p-new {
  background-image: url(../images/common/new-bg-pc.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  padding: 174px 0 297px;
  padding: 10.875rem 0 18.5625rem;
}

.p-new__inner {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  max-width: 1250px;
  max-width: 78.125rem;
  padding: 0 25px;
  padding: 0 1.5625rem;
  width: 100%;
  -moz-column-gap: 5.375rem;
       column-gap: 5.375rem;
  position: relative;
}

.p-new .c-section-title {
  align-items: start;
}

.p-new-swiper-button {
  margin-top: 54px;
  margin-top: 3.375rem;
}

.p-new-swiper-button-next {
  margin-left: 17px;
  margin-left: 1.0625rem;
}

.p-new .swiper {
  clip-path: inset(-1.25rem -50vw -1.25rem -1.0625rem);
  margin-top: 19px;
  margin-top: 1.1875rem;
  overflow: visible;
  overflow: initial;
  width: 100%;
}

.p-new .swiper-slide {
  background: rgba(255, 255, 255, 0.41);
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 2rem;
  box-shadow: 0 0 1.25rem rgba(11, 81, 53, 0.2);
  flex-shrink: 0;
}

.p-new .swiper-slide a {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.p-new__swiper-img {
  border-radius: 2rem 2rem 0 0;
  overflow: hidden;
  width: 100%;
}

.p-new .swiper-slide img {
  aspect-ratio: 374/282;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s;
}

.p-new .swiper-slide a:hover img {
  transform: scale(1.1);
}

.p-new .c-contents__title {
  color: #103c3c;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.7;
  margin-top: 18px;
  margin-top: 1.125rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
}

.p-new .c-contents__meta {
  margin-top: auto;
  padding: 14px 20px 29px;
  padding: 0.875rem 1.25rem 1.8125rem;
}

.p-new .c-contents__category {
  color: #009b4a;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 2;
  outline: 1px solid #009b4a;
}

.p-new .c-contents__date {
  color: #009b4a;
  font-weight: 500;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  line-height: 1.5;
}

.p-page-about-content {
  min-height: 350vh;
  overflow: visible;
  padding: 118px 0 0;
  padding: 7.375rem 0 0;
  position: relative;
}

.p-page-about-content__main-catch {
  color: #009b4a;
  font-size: 48px;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.7;
  position: relative;
  text-align: center;
  z-index: 5;
}

.p-page-about-content__sub-catch {
  align-items: center;
  color: #009b4a;
  display: flex;
  font-family: "Josefin Sans", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  justify-content: center;
  letter-spacing: 2.4px;
  letter-spacing: 0.15rem;
  line-height: 1.5;
  margin-top: 13px;
  margin-top: 0.8125rem;
  position: relative;
  text-align: center;
  z-index: 5;
}

.p-page-about-content__bg {
  align-items: center;
  display: flex;
  justify-content: center;
  left: 0;
  margin-top: -113px;
  margin-top: -7.0625rem;
  overflow: hidden;
  padding: 100px 0;
  padding: 6.25rem 0;
  position: sticky;
  top: -30vh;
  width: 100%;
  z-index: -1;
}

.p-page-about-content__bg img {
  animation: aboutRotateEarthPC 80s linear infinite;
  aspect-ratio: 1/1;
  max-width: 1440px;
  max-width: 90rem;
  width: 100%;
}

@keyframes aboutRotateEarthPC {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.p-page-about-content__text-wrapper {
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 2rem;
  margin-bottom: 200px;
  margin-bottom: 12.5rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: -500px;
  margin-top: -31.25rem;
  max-width: 870px;
  max-width: 54.375rem;
  overflow: hidden;
  padding: 82px 25px;
  padding: 5.125rem 1.5625rem;
  position: relative;
  width: 100%;
  z-index: 10;
}
.p-page-about-content__text-wrapper::before {
  backdrop-filter: blur(10px);
  backdrop-filter: blur(0.625rem);
  background-color: rgba(255, 255, 255, 0.72);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(0.625rem);
}

.p-page-about-content__text-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 686px;
  max-width: 42.875rem;
  padding: 0 25px;
  padding: 0 1.5625rem;
  position: relative;
  width: 100%;
  z-index: 15;
}

.p-page-about-content__text {
  border-bottom: 2px solid rgba(0, 0, 0, 0.09);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 2.5;
}

.p-page-about-content__text + .p-page-about-content__text {
  border-top: 2px solid rgba(0, 0, 0, 0.09);
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-page-about-values {
  padding-bottom: 140px;
  padding-bottom: 8.75rem;
}

.p-page-about-values__inner {
  margin: auto;
  max-width: 1050px;
  max-width: 65.625rem;
  padding: 0 25px;
  padding: 0 1.5625rem;
  width: 100%;
}

.p-page-about-values__list {
  display: grid;
  margin-top: 64px;
  margin-top: 4rem;
  grid-column-gap: 2rem;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  counter-reset: number;
  grid-template-columns: repeat(3, 1fr);
}

.p-page-about-values__item {
  border-radius: 2rem;
  box-shadow: 0 0 1.25rem rgba(11, 81, 53, 0.1), inset 0.375rem 0.375rem 0.5625rem rgba(255, 255, 255, 0.45), inset -0.375rem -0.375rem 0.5625rem rgba(0, 0, 0, 0.17);
  padding: 16px 18px 37px;
  padding: 1rem 1.125rem 2.3125rem;
}

.p-page-about-values__item-img {
  border-radius: 1rem;
  overflow: hidden;
  width: 100%;
}

.p-page-about-values__item-img img {
  aspect-ratio: 274/180;
  width: 100%;
  -o-object-fit: cover;
  border-radius: 1rem;
     object-fit: cover;
  transition: transform 0.3s;
}

.p-page-about-values__item:hover img {
  transform: scale(1.1);
}

.p-page-about-values__item-title-wrap {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 22px;
  margin-top: 1.375rem;
  position: relative;
  -moz-column-gap: 0.375rem;
       column-gap: 0.375rem;
}
.p-page-about-values__item-title-wrap::after {
  background: linear-gradient(90deg, rgba(9, 236, 118, 0) 0%, rgb(9, 236, 118) 50%, rgba(9, 236, 118, 0) 100%);
  border-radius: 0.09375rem;
  bottom: -3px;
  bottom: -0.1875rem;
  content: "";
  display: inline-block;
  height: 3px;
  height: 0.1875rem;
  max-width: 101px;
  max-width: 6.3125rem;
  position: absolute;
  width: 100%;
}

.p-page-about-values__item-number {
  color: #009b4a;
  font-family: "Josefin Sans", sans-serif;
  font-size: 27px;
  font-size: 1.6875rem;
  font-weight: 600;
  letter-spacing: 1.4px;
  letter-spacing: 0.0875rem;
  line-height: 1.5;
  margin-top: 4px;
  margin-top: 0.25rem;
}

.p-page-about-values__item-number::after {
  content: counter(number) ".";
  counter-increment: number;
}

.p-page-about-values__item-title {
  color: #009b4a;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.7;
}

.p-page-about-values__item-text {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.7;
  margin-top: 20px;
  margin-top: 1.25rem;
  padding: 0 20px;
  padding: 0 1.25rem;
}

.p-page-contact {
  padding: 117px 0 104px;
  padding: 7.3125rem 0 6.5rem;
}

.p-page-contact__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  max-width: 62.5rem;
  padding: 0 25px;
  padding: 0 1.5625rem;
  width: 100%;
}

.p-page-contact__attention {
  color: #009b4a;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.75;
  text-align: center;
}

.p-page-contact__attention span {
  color: #103c3c;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
}

.p-page-contact__form {
  margin-top: 64px;
  margin-top: 4rem;
}

.p-page-mv {
  background-image: url(../images/common/page-mv-bg.webp);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  height: 550px;
  height: 34.375rem;
  min-height: 300px;
  min-height: 18.75rem;
  position: relative;
}
.p-page-mv::before, .p-page-mv::after {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  position: absolute;
  width: 100%;
}
.p-page-mv::before {
  animation: moveCloudTop 25s linear infinite;
  aspect-ratio: 171/96;
  background-image: url(../images/common/mv-cloud-top.webp);
  left: 20px;
  left: 1.25rem;
  max-width: 171px;
  max-width: 10.6875rem;
  top: 109px;
  top: 6.8125rem;
}
.p-page-mv::after {
  animation: moveCloudBottom 30s linear infinite;
  aspect-ratio: 339/191;
  background-image: url(../images/common/mv-cloud-bottom.webp);
  bottom: -27px;
  bottom: -1.6875rem;
  max-width: 339px;
  max-width: 21.1875rem;
  right: 20px;
  right: 1.25rem;
}

.p-page-mv__clear-cloud {
  animation: moveCloudBottom 120s linear infinite;
  aspect-ratio: 130/74;
  background-image: url(../images/common/move-cloud-left.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  max-width: 130px;
  max-width: 8.125rem;
  position: absolute;
  right: 220px;
  right: 13.75rem;
  top: 159px;
  top: 9.9375rem;
  width: 100%;
}

.p-page-mv__inner {
  left: 14.9305555556%;
  padding-top: 220px;
  padding-top: 13.75rem;
  position: absolute;
}

.p-page-mv__title {
  color: #ffffff;
  display: flex;
  flex-direction: column-reverse;
  position: relative;
  z-index: 10;
}

.p-page-mv__title h1 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 2;
}

.p-page-mv__title span {
  font-family: "Josefin Sans", sans-serif;
  font-size: 84px;
  font-size: 5.25rem;
  font-weight: 600;
  letter-spacing: 2.4px;
  letter-spacing: 0.15rem;
  line-height: 1.31;
  text-transform: uppercase;
}

.p-page-privacy {
  margin: 102px 0 128px;
  margin: 6.375rem 0 8rem;
}

.p-page-privacy__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  max-width: 62.5rem;
  padding: 0 25px;
  padding: 0 1.5625rem;
  width: 100%;
}

.p-page-privacy__intro {
  letter-spacing: 0.01em;
  line-height: 2;
}

.p-page-privacy__list {
  margin-top: 68px;
  margin-top: 4.25rem;
}

.p-page-privacy__item + .p-page-privacy__item {
  margin-top: 54px;
  margin-top: 3.375rem;
}

.p-page-privacy__item-title {
  border-bottom: 2px solid rgba(0, 0, 0, 0.09);
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.6;
  padding-bottom: 16px;
  padding-bottom: 1rem;
}

.p-page-privacy__item-description {
  letter-spacing: 0.01em;
  line-height: 2;
  margin-top: 28px;
  margin-top: 1.75rem;
}

.p-pager li {
  align-items: center;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: inset 0 -0.25rem 0.5rem 0 rgba(0, 0, 0, 0.25);
  display: flex;
  height: 60px;
  height: 3.75rem;
  justify-content: center;
  outline: 2px solid rgba(255, 255, 255, 0.3);
  outline-offset: -2px;
  transition: 0.3s;
  width: 60px;
  width: 3.75rem;
}
.p-pager li:hover {
  background-color: #f4f4f4;
  box-shadow: inset 0 0.25rem 0.5rem 0 rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.page-numbers {
  align-items: center;
  display: flex;
  justify-content: center;
  -moz-column-gap: 1.375rem;
  color: #009b4a;
       column-gap: 1.375rem;
  font-family: "Jost", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  line-height: 1.5;
  position: relative;
  text-align: center;
  z-index: 10;
}

.page-numbers a {
  padding: 12px 22px;
  padding: 0.75rem 1.375rem;
}

.p-post-list {
  padding: 155px 0 138px;
  padding: 9.6875rem 0 8.625rem;
  position: relative;
}

.p-post-list__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1250px;
  max-width: 78.125rem;
  padding: 0 25px;
  padding: 0 1.5625rem;
  width: 100%;
}
.p-post-list__inner::before {
  animation: moveCloudTop 25s linear infinite;
  aspect-ratio: 192/108;
  background-image: url(../images/common/move-cloud-left.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  left: 0;
  max-width: 192px;
  max-width: 12rem;
  position: absolute;
  top: 700px;
  top: 43.75rem;
  width: 100%;
}

.p-post-list__flex {
  display: flex;
  -moz-column-gap: 2.8125rem;
       column-gap: 2.8125rem;
  justify-content: space-between;
}

.p-post-list__main {
  max-width: 775px;
  max-width: 48.4375rem;
}

.p-post-list__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 25px;
  gap: 25px;
  gap: 1.5625rem;
}

.p-post-list__pager {
  margin-top: 55px;
  margin-top: 3.4375rem;
}

.p-post-list__sidebar {
  position: relative;
  z-index: 5;
}

.p-post-list__search {
  background-color: rgba(255, 255, 255, 0.41);
  border-radius: 2rem;
  margin: 101px auto 0;
  margin: 6.3125rem auto 0;
  max-width: 1000px;
  max-width: 62.5rem;
  outline: 2px solid rgba(0, 0, 0, 0.09);
  outline-offset: -2px;
  padding: 73px 0 72px;
  padding: 4.5625rem 0 4.5rem;
  position: relative;
}
.p-post-list__search::before, .p-post-list__search::after {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
}
.p-post-list__search::before {
  animation: cloudUpDown 9s ease-in-out infinite;
  aspect-ratio: 162/92;
  background-image: url(../images/common/move-cloud-left.webp);
  left: -81px;
  left: -5.0625rem;
  max-width: 162px;
  max-width: 10.125rem;
  top: -36px;
  top: -2.25rem;
}
.p-post-list__search::after {
  aspect-ratio: 1/1;
  background-image: url(../images/common/search-man.webp);
  bottom: -24px;
  bottom: -1.5rem;
  max-width: 260px;
  max-width: 16.25rem;
  right: -147px;
  right: -9.1875rem;
}

.p-post-list__search .p-search {
  margin-top: 22px;
  margin-top: 1.375rem;
}

.p-recommend-grid {
  margin-top: 77px;
  margin-top: 4.8125rem;
}

.p-recommend-grid__list {
  display: grid;
  grid-column-gap: 1.8125rem;
  -moz-column-gap: 1.8125rem;
       column-gap: 1.8125rem;
  grid-row-gap: 50px;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 50px;
  row-gap: 3.125rem;
}

.p-recommend-grid__item a {
  display: flex;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}

.p-recommend-grid__item-img {
  aspect-ratio: 193/134;
  border-radius: 1rem;
  height: 100%;
  max-width: 193px;
  max-width: 12.0625rem;
  overflow: hidden;
}

.p-recommend-grid__item-img img {
  aspect-ratio: 193/134;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s;
}

.p-recommend-grid__item a:hover .p-recommend-grid__item-img img {
  transform: scale(1.1);
}

.p-recommend-grid__item-container {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.p-recommend-grid__item-title {
  -webkit-line-clamp: 2;
  display: -webkit-box;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 800;
  height: 100%;
  letter-spacing: 0.05em;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  color: #ffffff;
  overflow: hidden;
  text-overflow: ellipsis;
}

.p-recommend-grid__item-meta {
  align-items: center;
  display: flex;
  margin-top: auto;
  padding-top: 11px;
  padding-top: 0.6875rem;
  -moz-column-gap: 1rem;
  color: #ffffff;
       column-gap: 1rem;
}

.p-recommend-grid__item-category {
  border-radius: 0.5rem;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 2;
  outline: 1px solid #ffffff;
  padding: 1.5px 10px;
  padding: 0.09375rem 0.625rem;
}

.p-recommend-grid__item-date {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  line-height: 1.5;
}

.p-recommend {
  background-image: url(../images/common/recommend-bg-pc.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 130px 0 216px;
  padding: 8.125rem 0 13.5rem;
  width: 100%;
}

.p-recommend__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1055px;
  max-width: 65.9375rem;
  padding: 0 25px;
  padding: 0 1.5625rem;
  width: 100%;
}

.p-recommend .swiper {
  height: auto;
  margin-top: 55px;
  margin-top: 3.4375rem;
  overflow: visible;
}

.p-recommend .swiper-wrapper {
  height: inherit;
}

.p-recommend .swiper-slide {
  display: block;
  height: inherit;
  opacity: 0;
  transition: opacity 0.1s ease;
  width: 100%;
}

.p-recommend .swiper-slide .swiper-slide-active {
  opacity: 1;
}

.p-recommend .swiper-slide a {
  aspect-ratio: 1005/496;
  border-radius: 1rem;
  display: block;
  overflow: hidden;
  position: relative;
}

.p-recommend .swiper-slide img {
  border-radius: 1rem;
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s;
}

.p-recommend .swiper-slide a:hover img {
  transform: scale(1.1);
}

.p-recommend .c-contents-filter {
  aspect-ratio: 1005/296;
  background: linear-gradient(180deg, transparent, rgb(0, 0, 0) 100%);
  bottom: 0;
  display: block;
  left: 0;
  position: absolute;
  width: 100%;
}

.p-recommend .c-contents {
  bottom: 34px;
  bottom: 2.125rem;
  left: 38px;
  left: 2.375rem;
  position: absolute;
  z-index: 10;
}

.p-recommend .c-contents__title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.7;
}

.p-recommend .c-contents__meta {
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.p-recommend .c-contents__category {
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 2;
}

.p-recommend .c-contents__date {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  line-height: 1.5;
}

.recommend-swiper-button {
  align-items: center;
  aspect-ratio: 1005/496;
  display: flex;
  justify-content: space-between;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
  z-index: 10;
}

.recommend-swiper-button-prev {
  pointer-events: all;
  transform: translateX(-50%);
}

.recommend-swiper-button-next {
  pointer-events: all;
  transform: translateX(50%);
}

.recommend-swiper-button-prev.c-button.c-button--prev,
.recommend-swiper-button-next.c-button {
  text-rendering: initial;
}

.recommend-woman {
  aspect-ratio: 129/239;
  background-image: url(../images/common/recommend-woman.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: -37px;
  bottom: -2.3125rem;
  max-width: 129px;
  max-width: 8.0625rem;
  position: absolute;
  right: -57px;
  right: -3.5625rem;
  width: 100%;
  z-index: 500;
}

.p-search {
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
  max-width: 50rem;
  padding: 0 25px;
  padding: 0 1.5625rem;
  width: 100%;
}

.p-search__label {
  color: #103c3c;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 2;
}

.p-search__category-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  gap: 0.875rem;
  margin-top: 17px;
  margin-top: 1.0625rem;
}

.p-search__category-button {
  cursor: pointer;
  display: inline-block;
}

.p-search__category-check[type=checkbox] {
  display: none;
}

.p-search__category-button span {
  background-color: #f7f7f7;
  border: none;
  border-radius: 1.15625rem;
  box-shadow: inset 0 0.25rem 0.4375rem rgba(255, 255, 255, 0.5), inset 0 -0.1875rem 0.375rem rgba(0, 0, 0, 0.16);
  color: #009b4a;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
  padding: 9.5px 24px;
  padding: 0.59375rem 1.5rem;
  transition: all 0.3s;
}
.p-search__category-button span:hover {
  box-shadow: inset 0 0.1875rem 0.625rem rgba(0, 0, 0, 0.14), inset 0 -0.25rem 0.4375rem rgba(255, 255, 255, 0.5);
}

.p-search__category-check[type=checkbox]:checked + span {
  background-color: #009b4a;
  color: #ffffff;
}

.p-search__keyword {
  margin-top: 36px;
  margin-top: 2.25rem;
}

.p-search__keyword-box {
  align-items: center;
  background-color: #f3f3f3;
  border-radius: 2.03125rem;
  box-shadow: inset 0 0.125rem 0.625rem rgba(0, 0, 0, 0.06);
  display: flex;
  height: 65px;
  height: 4.0625rem;
  margin-top: 6px;
  margin-top: 0.375rem;
  outline: 2px solid rgba(255, 255, 255, 0.68);
  outline-offset: -2px;
  padding: 7px 7px 7px 36px;
  padding: 0.4375rem 0.4375rem 0.4375rem 2.25rem;
  width: 100%;
}

.p-search__keyword-field {
  background-color: transparent;
  border: none;
  color: #103c3c;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  height: 100%;
  letter-spacing: 0.05em;
  line-height: 2;
  outline: none;
  width: 100%;
}

.p-search__keyword-field::-moz-placeholder {
  color: rgba(16, 60, 60, 0.3);
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
}

.p-search__keyword-field::placeholder {
  color: rgba(16, 60, 60, 0.3);
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
}

.p-search__keyword-button {
  align-items: center;
  background: linear-gradient(180deg, rgb(0, 155, 74) 0%, rgb(26, 212, 115) 100%);
  border: none;
  border-radius: 2.03125rem;
  box-shadow: inset 0 0.25rem 0.4375rem rgba(255, 255, 255, 0.25), inset 0 -0.5rem 0.5625rem rgba(0, 0, 0, 0.16);
  cursor: pointer;
  display: flex;
  justify-content: center;
  padding: 8px 10px;
  padding: 0.5rem 0.625rem;
  transition: box-shadow 0.3s;
  width: 146px;
  width: 9.125rem;
}
.p-search__keyword-button:hover {
  box-shadow: inset 0.4375rem 0.4375rem 0.6875rem rgba(0, 0, 0, 0.2);
}

.p-search__keyword-button span {
  align-items: center;
  display: flex;
  position: relative;
  -moz-column-gap: 0.5rem;
  color: #ffffff;
       column-gap: 0.5rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 2;
}
.p-search__keyword-button span::before {
  aspect-ratio: 1/1;
  background-image: url(../images/common/search-glass-white.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  width: 14px;
  width: 0.875rem;
}

.p-sidebar__list {
  margin-left: auto;
  margin-right: auto;
  max-width: 380px;
  max-width: 23.75rem;
}

.p-sidebar__item + .p-sidebar__item {
  margin-top: 64px;
  margin-top: 4rem;
}

.p-sidebar__item-title {
  align-items: center;
  display: flex;
  flex-direction: row-reverse;
  justify-content: left;
  -moz-column-gap: 0.9375rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.09);
       column-gap: 0.9375rem;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
}

.p-sidebar__item-sub-title {
  color: #009b4a;
  font-family: "Josefin Sans", sans-serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 2.4px;
  letter-spacing: 0.15rem;
  line-height: 1.5;
}

.p-sidebar__item-main-title {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.7;
}

.p-sidebar__post-item {
  border-bottom: 2px solid rgba(0, 0, 0, 0.09);
}

.p-sidebar__post-link {
  align-items: center;
  display: flex;
  padding: 20px 0;
  padding: 1.25rem 0;
  -moz-column-gap: 1.125rem;
       column-gap: 1.125rem;
}

.p-sidebar__post-img {
  aspect-ratio: 158/110;
  border-radius: 1rem;
  max-width: 158px;
  max-width: 9.875rem;
  overflow: hidden;
}

.p-sidebar__post-img img {
  aspect-ratio: 158/110;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s;
}

.p-sidebar__post-link:hover .p-sidebar__post-img img {
  transform: scale(1.1);
}

.p-sidebar__post-content {
  flex: 1;
}

.p-sidebar__post-content .c-contents__title {
  color: #103c3c;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.7;
}

.p-sidebar__post-content .c-contents__meta {
  margin-top: 14px;
  margin-top: 0.875rem;
  -moz-column-gap: 0.6875rem;
       column-gap: 0.6875rem;
}

.p-sidebar__post-content .c-contents__category {
  border-radius: 0.5rem;
  color: #009b4a;
  font-size: 10px;
  font-size: 0.625rem;
  letter-spacing: 0.05em;
  line-height: 2;
  outline: 1px solid #009b4a;
  padding: 1.5px 10px;
  padding: 0.09375rem 0.625rem;
}

.p-sidebar__post-content .c-contents__date {
  color: #009b4a;
  font-family: "Jost", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  line-height: 1.5;
}

.p-sidebar__pr-link {
  background-image: url(../images/common/sidebar-pr-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0.625rem;
  display: block;
  margin-top: 58px;
  margin-top: 3.625rem;
  outline: 2px solid #e8e8e8;
  outline-offset: -2px;
  padding: 36px 26px;
  padding: 2.25rem 1.625rem;
  width: 100%;
}

.p-sidebar__pr-description {
  color: #009b4a;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-align: center;
}

.p-sidebar__pr-imgs {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-sidebar__pr-imgs img {
  aspect-ratio: 1/1;
  max-width: 104px;
  max-width: 6.5rem;
  width: 100%;
}

.p-sidebar__pr-button {
  background: linear-gradient(180deg, rgb(0, 155, 74) 0%, rgb(26, 212, 115) 100%);
  border-radius: 2.03125rem;
  box-shadow: inset 0 0.25rem 0.4375rem rgba(255, 255, 255, 0.25), inset 0 -0.5rem 0.5625rem rgba(0, 0, 0, 0.16);
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 2;
  margin: 20px auto 0;
  margin: 1.25rem auto 0;
  max-width: 206px;
  max-width: 12.875rem;
  padding: 7px 28px;
  padding: 0.4375rem 1.75rem;
  text-align: center;
  transition: box-shadow 0.3s;
  width: 100%;
}

.p-sidebar__pr-link:hover .p-sidebar__pr-button {
  box-shadow: inset 0.4375rem 0.4375rem 0.6875rem rgba(0, 0, 0, 0.2);
}

.p-single-blog {
  padding: 123px 0 132px;
  padding: 7.6875rem 0 8.25rem;
}

.p-single-blog .c-breadcrumb {
  margin-top: 0;
}

.p-single-blog .c-breadcrumb__link,
.p-single-blog .c-breadcrumb__current {
  color: rgba(16, 60, 60, 0.5);
}

.p-single-blog .c-breadcrumb__link::after {
  background: #103c3c;
}
.p-single-blog .c-breadcrumb__link:hover {
  color: #103c3c;
}

.p-single-blog .c-breadcrumb__arrow {
  background-image: url(../images/common/breadcrumb-arrow--black.webp);
}

.p-single-blog__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1250px;
  max-width: 78.125rem;
  padding: 0 25px;
  padding: 0 1.5625rem;
  width: 100%;
}

.p-single-blog .c-breadcrumb {
  margin-top: 0;
}

.p-single-blog__flex {
  display: flex;
  margin-top: 106px;
  margin-top: 6.625rem;
  -moz-column-gap: 4.375rem;
       column-gap: 4.375rem;
}

.p-single-blog__main {
  max-width: 750px;
  max-width: 46.875rem;
  width: 100%;
}

.p-single-blog__info {
  align-items: center;
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

.p-single-blog__category {
  border-radius: 0.5rem;
  color: #009b4a;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 2;
  outline: 1px solid #009b4a;
  outline-offset: -1px;
  padding: 1.5px 10px;
  padding: 0.09375rem 0.625rem;
}

.p-single-blog__data {
  color: #009b4a;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  line-height: 1.5;
}

.p-single-blog__title {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin-top: 11px;
  margin-top: 0.6875rem;
}

.p-single-blog__main-img {
  border-radius: 1rem;
  margin-top: 26px;
  margin-top: 1.625rem;
  max-width: 750px;
  max-width: 46.875rem;
  overflow: hidden;
}

.p-single-blog__main-img img {
  aspect-ratio: 750/464;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-single-blog__content {
  margin-top: 36px;
  margin-top: 2.25rem;
}

.p-single-blog__content h2 {
  color: #103c3c;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin: 54px 0 28px;
  margin: 3.375rem 0 1.75rem;
  padding-bottom: 14px;
  padding-bottom: 0.875rem;
  position: relative;
}
.p-single-blog__content h2::before, .p-single-blog__content h2::after {
  border-radius: 0.09375rem;
  bottom: 0;
  content: "";
  height: 3px;
  height: 0.1875rem;
  left: 0;
  position: absolute;
  width: 100%;
}
.p-single-blog__content h2::before {
  background-color: rgba(0, 0, 0, 0.09);
}
.p-single-blog__content h2::after {
  background: linear-gradient(90deg, rgb(0, 155, 74) 0%, rgb(26, 212, 115) 100%);
  content: "";
  max-width: 101px;
  max-width: 6.3125rem;
}

.p-single-blog__content h3 {
  background-color: #f4f1ef;
  border-radius: 0.625rem;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin: 54px 0 28px;
  margin: 3.375rem 0 1.75rem;
  padding: 11.5px 22px;
  padding: 0.71875rem 1.375rem;
  position: relative;
}
.p-single-blog__content h3::before {
  background: linear-gradient(180deg, rgb(0, 155, 74) 0%, rgb(26, 212, 115) 100%);
  border-radius: 0 50% 50% 0;
  content: "";
  height: 10px;
  height: 0.625rem;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  width: 0.625rem;
}

.p-single-blog__content h4 {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin: 54px 0 28px;
  margin: 3.375rem 0 1.75rem;
  padding-bottom: 44px;
  padding-bottom: 2.75rem;
  position: relative;
}
.p-single-blog__content h4::before, .p-single-blog__content h4::after {
  background-color: rgba(0, 0, 0, 0.09);
  border-radius: 0.0625rem;
  content: "";
  height: 2px;
  height: 0.125rem;
  left: 0;
  position: absolute;
  width: 100%;
}
.p-single-blog__content h4::before {
  bottom: 28px;
  bottom: 1.75rem;
}
.p-single-blog__content h4::after {
  bottom: 0;
}

.p-single-blog__content h5 {
  background-color: #f4f1ef;
  border-radius: 0.625rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin: 54px 0 28px;
  margin: 3.375rem 0 1.75rem;
  padding: 10.5px 22px;
  padding: 0.65625rem 1.375rem;
}

.p-single-blog__content h6 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin: 54px 0 24px;
  margin: 3.375rem 0 1.5rem;
  padding-left: 21px;
  padding-left: 1.3125rem;
  position: relative;
}
.p-single-blog__content h6::before {
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: inset 0 0.0625rem 0.3125rem rgba(255, 255, 255, 0.25), inset 0 -0.0625rem 0.3125rem rgba(0, 0, 0, 0.16);
  content: "";
  height: 14px;
  height: 0.875rem;
  left: 0;
  outline: 4px solid #009b4a;
  outline-offset: -4px;
  position: absolute;
  top: 9px;
  top: 0.5625rem;
  width: 14px;
  width: 0.875rem;
}

.p-single-blog__content p {
  letter-spacing: 0.05em;
  line-height: 2;
}

.p-single-blog__content a {
  color: #009b4a;
  letter-spacing: 0.05em;
  line-height: 2;
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

.p-single-blog__content ul {
  display: flex;
  flex-direction: column;
  row-gap: 6px;
  row-gap: 0.375rem;
}

.p-single-blog__content li {
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.8;
  padding-left: 17px;
  padding-left: 1.0625rem;
  position: relative;
}
.p-single-blog__content li::before {
  background: linear-gradient(180deg, rgb(0, 155, 74) 0%, rgb(26, 212, 115) 100%);
  border-radius: 50%;
  content: "";
  height: 12px;
  height: 0.75rem;
  left: 0;
  position: absolute;
  top: 9px;
  top: 0.5625rem;
  width: 12px;
  width: 0.75rem;
}

.p-single-blog__content img {
  border-radius: 1rem;
  margin: 10px 0;
  margin: 0.625rem 0;
  width: 100%;
}

.p-single-blog__content figure {
  border-radius: 1rem;
  margin: 10px 0;
  margin: 0.625rem 0;
}

.p-single-blog__content figcaption {
  font-size: 12px;
  font-size: 0.75rem;
  margin: 10px 0;
  margin: 0.625rem 0;
}

.p-single-blog__writer {
  align-items: center;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  margin-top: 51px;
  margin-top: 3.1875rem;
  padding: 37px;
  padding: 2.3125rem;
  position: relative;
  -moz-column-gap: 1.9375rem;
  background-color: #f4f1ef;
  border-radius: 2rem;
  box-shadow: inset 0.375rem 0.375rem 0.5625rem rgba(255, 255, 255, 0.15), inset -0.375rem -0.375rem 0.5625rem rgba(0, 0, 0, 0.12);
       column-gap: 1.9375rem;
}

.p-single-blog__writer-img {
  aspect-ratio: 1/1;
  border-radius: 2rem;
  max-width: 144px;
  max-width: 9rem;
  outline: 2px solid rgba(255, 255, 255, 0.3);
  outline-offset: -2px;
}

.p-single-blog__writer-img img {
  aspect-ratio: 1/1;
  width: 100%;
  -o-object-fit: cover;
  border-radius: 2rem;
     object-fit: cover;
}

.p-single-blog__writer-title {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.7;
  padding-left: 17px;
  padding-left: 1.0625rem;
  position: relative;
}
.p-single-blog__writer-title::before {
  border-radius: 50%;
  box-shadow: inset 0 0.0625rem 0.3125rem rgba(255, 255, 255, 0.25), inset 0 -0.0625rem 0.3125rem rgba(0, 0, 0, 0.16);
  content: "";
  height: 14px;
  height: 0.875rem;
  left: 0;
  outline: 4px solid #009b4a;
  outline-offset: -4px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  width: 0.875rem;
}

.p-single-blog__writer-name {
  display: block;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

.p-single-blog__writer-description {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin-top: 3px;
  margin-top: 0.1875rem;
}

.p-single-blog__sidebar {
  margin-top: 48px;
  margin-top: 3rem;
}

.p-top-mv-swiper {
  position: relative;
}
.p-top-mv-swiper::before, .p-top-mv-swiper::after {
  aspect-ratio: 30/298;
  content: "";
  max-width: 30px;
  max-width: 1.875rem;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 15;
}
.p-top-mv-swiper::before {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.3), transparent);
  left: 0;
}
.p-top-mv-swiper::after {
  background: linear-gradient(to left, rgba(255, 255, 255, 0.3), transparent);
  right: 0;
}

.p-top-mv-swiper .swiper {
  z-index: 10;
}

.p-top-mv-swiper .swiper-slide {
  border-radius: 2.5rem;
  box-shadow: 0 0.375rem 1.25rem rgba(11, 81, 53, 0.2);
  overflow: hidden;
  position: relative;
}
.p-top-mv-swiper .swiper-slide::before {
  backdrop-filter: blur(10px);
  backdrop-filter: blur(0.625rem);
  background-color: rgba(255, 255, 255, 0.01);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(0.625rem);
  border-radius: 2.5rem;
  outline: 2px solid rgba(255, 255, 255, 0.3);
  outline-offset: -2px;
  z-index: 1;
}
.p-top-mv-swiper .swiper-slide::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, white 50%, rgba(255, 255, 255, 0) 100%);
  bottom: 0;
  content: "";
  height: 2px;
  height: 0.125rem;
  left: 50%;
  max-width: 88px;
  max-width: 5.5rem;
  position: absolute;
  transform: translateX(-50%);
  width: 100%;
}

.p-top-mv-swiper .swiper-slide a {
  align-items: center;
  display: flex;
  padding: 29px;
  padding: 1.8125rem;
  -moz-column-gap: 2.75rem;
       column-gap: 2.75rem;
  position: relative;
  z-index: 5;
}

.p-top-mv-swiper__img {
  aspect-ratio: 1/1;
  border-radius: 1rem;
  height: 100%;
  max-width: 240px;
  max-width: 15rem;
  overflow: hidden;
}

.p-top-mv-swiper .swiper-slide img {
  aspect-ratio: 1/1;
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s;
}

.p-top-mv-swiper .swiper-slide a:hover img {
  transform: scale(1.1);
}

.p-top-mv-swiper .c-contents {
  max-width: 365px;
  max-width: 22.8125rem;
}

.p-top-mv-swiper .c-contents__date {
  font-weight: 500;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  line-height: 1.5;
}

.p-top-mv-swiper .c-contents__title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-top-mv-swiper .c-contents__category {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-top: 21px;
  margin-top: 1.3125rem;
}

.p-top-mv-swiper .c-button {
  bottom: 20px;
  bottom: 1.25rem;
  position: absolute;
  right: 20px;
  right: 1.25rem;
}

.p-top-mv-swiper .swiper-slide a:hover .c-button {
  background-color: #f4f4f4;
  box-shadow: inset 0 0.25rem 0.5rem 0 rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.p-top-mv-swiper .swiper-slide a:hover .c-button::after {
  transform: rotate(360deg);
}

.p-top-mv__swiper-pagination {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 30px;
  margin-top: 1.875rem;
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
}

.p-top-mv__swiper-pagination .swiper-pagination-bullet {
  background-color: #ffffff;
  height: 8px;
  height: 0.5rem;
  opacity: 0.6;
  width: 8px;
  width: 0.5rem;
}

.p-top-mv__swiper-pagination .swiper-pagination-bullet-active {
  height: 10px;
  height: 0.625rem;
  opacity: 1;
  width: 10px;
  width: 0.625rem;
}

.p-top-mv {
  background-color: #f4f1ef;
  background-image: url(../images/common/top-mv-bg-pc.webp);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 600px;
  min-height: 37.5rem;
  overflow: hidden;
  padding: 192px 0 86px;
  padding: 12rem 0 5.375rem;
  position: relative;
}
.p-top-mv::before, .p-top-mv::after {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  position: absolute;
  width: 100%;
}
.p-top-mv::before {
  animation: moveCloudTop 25s linear infinite;
  aspect-ratio: 171/96;
  background-image: url(../images/common/mv-cloud-top.webp);
  left: 20px;
  left: 1.25rem;
  max-width: 171px;
  max-width: 10.6875rem;
  top: 109px;
  top: 6.8125rem;
}
.p-top-mv::after {
  animation: moveCloudBottom 30s linear infinite;
  aspect-ratio: 339/191;
  background-image: url(../images/common/mv-cloud-bottom.webp);
  bottom: 384px;
  bottom: 24rem;
  max-width: 339px;
  max-width: 21.1875rem;
  right: 20px;
  right: 1.25rem;
  z-index: 2;
}

.p-top-mv__img {
  aspect-ratio: 582/561;
  display: inline-block;
  left: 50%;
  max-width: 582px;
  max-width: 36.375rem;
  position: absolute;
  top: 108px;
  top: 6.75rem;
  width: 100%;
  z-index: 1;
}
.p-top-mv__img::before, .p-top-mv__img::after {
  background-image: url(../images/common/move-cloud-left.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
}
.p-top-mv__img::before {
  animation: cloudUpDown 9s ease-in-out infinite;
  aspect-ratio: 132/75;
  bottom: 100px;
  bottom: 6.25rem;
  left: 40px;
  left: 2.5rem;
  max-width: 132px;
  max-width: 8.25rem;
}
.p-top-mv__img::after {
  animation: cloudUpDown 6s ease-in-out infinite;
  aspect-ratio: 106/60;
  max-width: 106px;
  max-width: 6.625rem;
  right: 20px;
  right: 1.25rem;
  top: 50px;
  top: 3.125rem;
}

@keyframes cloudUpDown {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(1.875rem) scale(1.1);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}
.p-top-mv__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1100px;
  max-width: 68.75rem;
  padding: 0 25px;
  padding: 0 1.5625rem;
  position: relative;
  width: 100%;
}

.p-top-mv__text-wrap {
  color: #ffffff;
}

.p-top-mv__title-jp {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 2;
}

.p-top-mv__title-en {
  font-family: "Josefin Sans", sans-serif;
  font-size: 84px;
  font-size: 5.25rem;
  font-weight: 600;
  letter-spacing: 2.4px;
  letter-spacing: 0.15rem;
  line-height: 1.31;
  margin-top: 28px;
  margin-top: 1.75rem;
  text-transform: uppercase;
}

.p-top-mv__swiper {
  margin-top: 145px;
  margin-top: 9.0625rem;
}

.p-top-ranking {
  background-color: #f4f1ef;
  padding: 129px 0 91px;
  padding: 8.0625rem 0 5.6875rem;
  position: relative;
}
.p-top-ranking::before, .p-top-ranking::after {
  aspect-ratio: 192/108;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  max-width: 192px;
  max-width: 12rem;
  position: absolute;
  width: 100%;
}
.p-top-ranking::before {
  animation: moveCloudTop 25s linear infinite;
  background-image: url(../images/common/move-cloud-left.webp);
  left: 20px;
  left: 1.25rem;
  top: 99px;
  top: 6.1875rem;
}
.p-top-ranking::after {
  animation: moveCloudBottom 30s linear infinite;
  background-image: url(../images/common/move-cloud-right.webp);
  bottom: -50px;
  bottom: -3.125rem;
  right: 20px;
  right: 1.25rem;
}

.p-top-ranking__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1225px;
  max-width: 76.5625rem;
  padding: 0 25px;
  padding: 0 1.5625rem;
  position: relative;
  width: 100%;
  z-index: 5;
}

.p-top-ranking__list {
  display: grid;
  margin-top: 53px;
  margin-top: 3.3125rem;
  width: 100%;
  grid-column-gap: 1.5625rem;
  -moz-column-gap: 1.5625rem;
       column-gap: 1.5625rem;
  grid-row-gap: 37px;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 37px;
  row-gap: 2.3125rem;
}

.p-top-search {
  background-image: url(../images/common/top-search-bg-pc.webp);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  padding: 120px 0 93px;
  padding: 7.5rem 0 5.8125rem;
  position: relative;
}
.p-top-search::before, .p-top-search::after {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  position: absolute;
  width: 100%;
}
.p-top-search::before {
  animation: moveCloudTop 25s linear infinite;
  aspect-ratio: 162/92;
  background-image: url(../images/common/move-cloud-left.webp);
  left: 50px;
  left: 3.125rem;
  max-width: 162px;
  max-width: 10.125rem;
  top: 99px;
  top: 6.1875rem;
}
.p-top-search::after {
  animation: moveCloudBottom 30s linear infinite;
  aspect-ratio: 192/108;
  background-image: url(../images/common/move-cloud-right.webp);
  bottom: 450px;
  bottom: 28.125rem;
  max-width: 192px;
  max-width: 12rem;
  right: 20px;
  right: 1.25rem;
}

.p-top-search__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1050px;
  max-width: 65.625rem;
  padding: 0 25px;
  padding: 0 1.5625rem;
  position: relative;
  width: 100%;
  z-index: 5;
}

.p-top-search__search-box {
  background-color: rgba(255, 255, 255, 0.41);
  border-radius: 2rem;
  box-shadow: inset 0 0.25rem 0.4375rem rgba(255, 255, 255, 0.5), inset 0 -0.1875rem 0.375rem rgba(0, 0, 0, 0.16);
  margin-top: 48px;
  margin-top: 3rem;
  outline: 2px solid rgba(0, 0, 0, 0.09);
  outline-offset: -2px;
  padding: 56px 0;
  padding: 3.5rem 0;
  position: relative;
}
.p-top-search__search-box::after {
  aspect-ratio: 1/1;
  background-image: url(../images/common/search-man.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: -21px;
  bottom: -1.3125rem;
  content: "";
  display: inline-block;
  max-width: 260px;
  max-width: 16.25rem;
  position: absolute;
  right: -143px;
  right: -8.9375rem;
  width: 100%;
}

.p-top-search__text-block {
  margin-top: 120px;
  margin-top: 7.5rem;
  text-align: center;
}

.p-top-search__message {
  color: #103c3c;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 2;
}

.p-top-search__description {
  color: #103c3c;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-top-search__img-block {
  align-items: start;
  display: flex;
  gap: 30px;
  gap: 1.875rem;
  justify-content: center;
  margin-top: 65px;
  margin-top: 4.0625rem;
}

.p-top-search__img-block img {
  max-width: 214px;
  max-width: 13.375rem;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-top-search__img-block img:first-child {
  aspect-ratio: 108/193;
}

.p-top-search__img-block img:nth-child(2) {
  aspect-ratio: 108/185;
}

.p-top-search__img-block img:last-child {
  aspect-ratio: 108/193;
}

.u-sp {
  display: none;
}

@media (max-width: 1200px){
  html {
    font-size: 1.3333333333vw;
  }
}

@media screen and (max-width: 767px){
  html {
    font-size: 16px;
  }
  .c-breadcrumb {
    margin-top: 16px;
    margin-top: 1rem;
  }
  .c-breadcrumb__link:hover::after {
    display: none;
  }
  .c-breadcrumb__link:hover {
    color: rgba(255, 255, 255, 0.5);
  }
  .c-button {
    background-color: #ffffff;
    box-shadow: inset 0 -0.09375rem 0.1875rem 0 rgba(0, 0, 0, 0.25);
    height: 25px;
    height: 1.5625rem;
    outline: 0.97px solid rgba(255, 255, 255, 0.3);
    width: 25px;
    width: 1.5625rem;
  }
  .c-button::after {
    height: 5.42px;
    height: 0.33875rem;
    width: 5.42px;
    width: 0.33875rem;
  }
  .c-button:hover {
    background-color: #ffffff;
    box-shadow: inset 0 -0.09375rem 0.1875rem 0 rgba(0, 0, 0, 0.25);
  }
  .c-button:hover::after {
    transform: none;
  }
  .c-button:hover.c-button--prev::after {
    transform: rotate(180deg);
  }
  .c-contents__title {
    -webkit-line-clamp: 1;
  }
  .c-contents__meta {
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }
  .c-contents__category {
    padding: 1.5px 8px;
    padding: 0.09375rem 0.5rem;
  }
  .c-section-title__jp {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .c-section-title__en {
    font-size: 40px;
    font-size: 2.5rem;
  }
  .p-404 {
    padding: 80px 0;
    padding: 5rem 0;
  }
  .p-404__inner {
    padding: 0 16px;
    padding: 0 1rem;
  }
  .p-404__button {
    font-size: 14px;
    font-size: 0.875rem;
    max-width: 241px;
    max-width: 15.0625rem;
    padding: 14px 32px;
    padding: 0.875rem 2rem;
    width: 100%;
  }
  .p-404__button:hover {
    box-shadow: inset 0 -0.5rem 0.5625rem 0 rgba(0, 0, 0, 0.16), inset 0 0.25rem 0.4375rem 0 rgba(255, 255, 255, 0.25);
  }
  .p-about {
    padding-bottom: 248px;
    padding-bottom: 15.5rem;
    padding-top: 94px;
    padding-top: 5.875rem;
  }
  .p-about::before {
    aspect-ratio: 120/70;
    background-image: url(../images/common/about-cloud-left-sp.webp);
    max-width: 120px;
    max-width: 7.5rem;
    top: 78px;
    top: 4.875rem;
  }
  .p-about::after {
    aspect-ratio: 74/41;
    background-image: url(../images/common/about-cloud-right-sp.webp);
    max-width: 74px;
    max-width: 4.625rem;
    right: -2px;
    right: -0.125rem;
    top: 128px;
    top: 8rem;
  }
  .p-about__bg-earth {
    animation: rotateEarthSP 80s linear infinite;
    background-image: url(../images/common/bg-earth-sp.webp);
    bottom: 0;
    transform: translateY(50%);
  }
  .p-about__inner {
    padding: 0 16px;
    padding: 0 1rem;
  }
  .p-about__description {
    font-size: 14px;
    font-size: 0.875rem;
    margin-top: 18px;
    margin-top: 1.125rem;
  }
  .p-about__button-wrap {
    margin-top: 28px;
    margin-top: 1.75rem;
  }
  .p-about__button {
    font-size: 14px;
    font-size: 0.875rem;
    max-width: 241px;
    max-width: 15.0625rem;
    padding: 14px 32px;
    padding: 0.875rem 2rem;
    width: 100%;
  }
  .p-about__button:hover {
    box-shadow: inset 0 -0.5rem 0.5625rem 0 rgba(0, 0, 0, 0.16), inset 0 0.25rem 0.4375rem 0 rgba(255, 255, 255, 0.25);
  }
  .p-card a {
    border-radius: 1.75rem;
    padding: 12px;
    padding: 0.75rem;
  }
  .p-card__img {
    border-radius: 1rem;
  }
  .p-card__img img {
    aspect-ratio: 288/172;
    border-radius: 1rem;
  }
  .p-card a:hover img {
    transform: scale(1);
  }
  .p-card__meta {
    padding: 12px 6px 15px;
    padding: 0.75rem 0.375rem 0.9375rem;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }
  .p-card__category {
    padding: 1.5px 8px;
    padding: 0.09375rem 0.5rem;
  }
  .p-contact-confirm {
    padding: 80px 0;
    padding: 5rem 0;
  }
  .p-contact-confirm__inner {
    padding: 0 16px;
    padding: 0 1rem;
  }
  .p-contact-confirm__attention {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .p-contact-confirm__attention span {
    font-size: 12px;
    font-size: 0.75rem;
  }
  .p-contact-thanks {
    padding: 80px 0;
    padding: 5rem 0;
  }
  .p-contact-thanks__inner {
    padding: 0 16px;
    padding: 0 1rem;
  }
  .p-contact-thanks__attention {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .p-contact-thanks__attention span {
    font-size: 12px;
    font-size: 0.75rem;
  }
  .p-contact-thanks__button {
    font-size: 14px;
    font-size: 0.875rem;
    max-width: 241px;
    max-width: 15.0625rem;
    padding: 14px 32px;
    padding: 0.875rem 2rem;
    width: 100%;
  }
  .p-contact-thanks__button:hover {
    box-shadow: inset 0 -0.5rem 0.5625rem 0 rgba(0, 0, 0, 0.16), inset 0 0.25rem 0.4375rem 0 rgba(255, 255, 255, 0.25);
  }
  .p-footer {
    padding: 80px 0 60px;
    padding: 5rem 0 3.75rem;
  }
  .p-footer__inner {
    padding: 0 16px;
    padding: 0 1rem;
  }
  .p-footer__contact {
    background-image: url(../images/common/footer-contact-bg-sp.webp);
    background-position: bottom;
    display: block;
    padding: 53px 15px 239px;
    padding: 3.3125rem 0.9375rem 14.9375rem;
    position: relative;
  }
  .p-footer__contact:hover {
    box-shadow: none;
  }
  .p-footer__contact-title {
    align-items: center;
  }
  .p-footer__contact-title--en {
    font-size: 40px;
    font-size: 2.5rem;
  }
  .p-footer__contact-title--jp {
    font-size: 14px;
    font-size: 0.875rem;
    margin-top: -8px;
    margin-top: -0.5rem;
  }
  .p-footer__contact-description {
    background-color: rgba(0, 0, 0, 0.16);
    border-radius: 1rem;
    font-size: 14px;
    font-size: 0.875rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 22px;
    margin-top: 1.375rem;
    max-width: 400px;
    max-width: 25rem;
    outline: 2px solid rgba(255, 255, 255, 0.3);
    outline-offset: -2px;
    padding: 16px;
    padding: 1rem;
    text-align: center;
  }
  .p-footer__contact-button {
    background-color: #ffffff;
    bottom: 20px;
    bottom: 1.25rem;
    position: absolute;
    right: 20px;
    right: 1.25rem;
  }
  .p-footer__contact:hover .p-footer__contact-button {
    background-color: #ffffff;
    box-shadow: inset 0 -0.25rem 0.5rem 0 rgba(0, 0, 0, 0.25);
  }
  .p-footer__contact:hover .p-footer__contact-button::after {
    transform: none;
  }
  .p-footer__middle {
    flex-direction: column;
    height: auto;
    justify-content: start;
    margin-top: 60px;
    margin-top: 3.75rem;
    row-gap: 27px;
    row-gap: 1.6875rem;
  }
  .p-footer__nav {
    flex-direction: column;
  }
  .p-footer__nav-list {
    align-items: center;
    flex-direction: column;
  }
  .p-footer__nav-item a {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.125;
    padding: 13px 16px;
    padding: 0.8125rem 1rem;
  }
  .p-footer__nav-item:hover a {
    opacity: 1;
  }
  .p-footer__nav-contact {
    margin-left: 0;
    margin-top: 23px;
    margin-top: 1.4375rem;
    max-width: 208px;
    max-width: 13rem;
    padding: 10px 26px;
    padding: 0.625rem 1.625rem;
    width: 100%;
    -moz-column-gap: 0.3125rem;
         column-gap: 0.3125rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.125;
  }
  .p-footer__nav-contact:hover {
    box-shadow: inset 0 -0.5rem 0.5625rem 0 rgba(0, 0, 0, 0.16), inset 0 0.25rem 0.4375rem 0 rgba(255, 255, 255, 0.25);
  }
  .p-footer__nav-contact::before {
    height: 28px;
    height: 1.75rem;
    width: 34px;
    width: 2.125rem;
  }
  .p-footer__nav-contact:hover::before {
    transform: rotate(-7.44deg);
  }
  .p-footer__bottom {
    align-items: center;
    flex-direction: column;
    margin-top: 33px;
    margin-top: 2.0625rem;
    row-gap: 34px;
    row-gap: 2.125rem;
  }
  .p-footer__bottom-sns a:first-child:hover {
    background-image: url(../images/common/x-icon.svg);
  }
  .p-footer__bottom-sns a:nth-child(2):hover {
    background-image: url(../images/common/instagram-icon.svg);
  }
  .p-footer__bottom-sns a:nth-child(3):hover {
    background-image: url(../images/common/facebook-icon.svg);
  }
  .p-footer__bottom-small {
    align-items: start;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
  .p-footer__bottom-copyright,
  .p-footer__bottom-privacy {
    font-size: 10px;
    font-size: 0.625rem;
    line-height: 1.8;
  }
  .p-footer__bottom-copyright::after {
    height: 10px;
    height: 0.625rem;
    right: -16px;
    right: -1rem;
  }
  .p-footer__bottom-privacy:hover {
    opacity: 1;
  }
  .p-form-button {
    flex-direction: column;
  }
  .p-form-button__submit {
    box-shadow: inset 0 0.175625rem 0.3075rem rgba(255, 255, 255, 0.25), inset 0 -0.35125rem 0.395rem rgba(0, 0, 0, 0.16);
    font-size: 18px;
    font-size: 1.125rem;
    padding: 18px 60px;
    padding: 1.125rem 3.75rem;
  }
  .p-form-button__submit:hover {
    box-shadow: inset 0 0.175625rem 0.3075rem rgba(255, 255, 255, 0.25), inset 0 -0.35125rem 0.395rem rgba(0, 0, 0, 0.16);
  }
  .p-form-button .wpcf7-spinner {
    margin-top: 16px;
    margin-top: 1rem;
    position: static;
    transform: translateY(0);
  }
  .p-form-privacy input + span {
    text-align: left;
  }
  .p-form-radio {
    display: block;
  }
  .p-form-radio label:not(:first-of-type) {
    margin-top: 10px;
    margin-top: 0.625rem;
  }
  .p-form-radio input + span {
    display: block;
  }
  .p-form-submit input {
    box-shadow: inset 0 0.175625rem 0.3075rem rgba(255, 255, 255, 0.25), inset 0 -0.35125rem 0.395rem rgba(0, 0, 0, 0.16);
    font-size: 18px;
    font-size: 1.125rem;
    padding: 18px 60px;
    padding: 1.125rem 3.75rem;
  }
  .p-form-submit input:hover {
    box-shadow: inset 0 0.175625rem 0.3075rem rgba(255, 255, 255, 0.25), inset 0 -0.35125rem 0.395rem rgba(0, 0, 0, 0.16);
  }
  .p-form__wrap {
    display: block;
  }
  .p-form__wrap + .p-form__wrap {
    margin-top: 20px;
    margin-top: 1.25rem;
  }
  .p-form__input,
  .p-form__select,
  .p-form__radio,
  .p-form__checkbox,
  .p-form__textarea {
    margin-top: 6px;
    margin-top: 0.375rem;
  }
  .p-form__privacy {
    margin-top: 40px;
    margin-top: 2.5rem;
  }
  .p-form__submit {
    flex-direction: column;
    margin-top: 20px;
    margin-top: 1.25rem;
  }
  .p-form__submit .wpcf7-spinner {
    margin-top: 16px;
    margin-top: 1rem;
    position: static;
    transform: translateY(0);
  }
  .p-header {
    height: 60px;
    height: 3.75rem;
  }
  .p-header__inner {
    padding-left: 15px;
    padding-left: 0.9375rem;
    padding-right: 17px;
    padding-right: 1.0625rem;
  }
  .p-header__logo {
    max-width: 123px;
    max-width: 7.6875rem;
  }
  .p-header__nav-contact:hover {
    box-shadow: inset 0 -0.5rem 0.5625rem 0 rgba(0, 0, 0, 0.16), inset 0 0.25rem 0.4375rem 0 rgba(255, 255, 255, 0.25);
  }
  .p-new {
    background-image: url(../images/common/new-bg-sp.webp);
    padding: 47px 0 174px;
    padding: 2.9375rem 0 10.875rem;
  }
  .p-new__inner {
    flex-direction: column;
    padding: 0 32px;
    padding: 0 2rem;
    row-gap: 36px;
    row-gap: 2.25rem;
  }
  .p-new .c-section-title {
    align-items: center;
  }
  .p-new .swiper {
    clip-path: none;
    margin-right: 0;
  }
  .p-new .swiper-slide {
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 1.75rem;
  }
  .p-new__swiper-img {
    border-radius: 1.75rem 1.75rem 0 0;
  }
  .p-new .swiper-slide img {
    aspect-ratio: 312/172;
  }
  .p-new .swiper-slide a:hover img {
    transform: scale(1);
  }
  .p-new .c-contents__title {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.8;
  }
  .p-new .c-contents__meta {
    padding: 12px 18px 27px;
    padding: 0.75rem 1.125rem 1.6875rem;
  }
  .p-new .c-contents__date {
    font-size: 14px;
    font-size: 0.875rem;
    letter-spacing: 1px;
    letter-spacing: 0.0625rem;
  }
  .p-page-about-content {
    min-height: 200vh;
    padding: 80px 0 0;
    padding: 5rem 0 0;
  }
  .p-page-about-content__main-catch {
    font-size: 28px;
    font-size: 1.75rem;
  }
  .p-page-about-content__sub-catch {
    font-size: 18px;
    font-size: 1.125rem;
    margin-top: 10px;
    margin-top: 0.625rem;
  }
  .p-page-about-content__bg {
    top: 10%;
  }
  .p-page-about-content__text-wrapper {
    border-radius: 1.75rem;
    margin-bottom: 40px;
    margin-bottom: 2.5rem;
    margin-top: 0;
    padding: 40px 16px;
    padding: 2.5rem 1rem;
  }
  .p-page-about-content__text-wrapper::before {
    backdrop-filter: blur(4px);
    backdrop-filter: blur(0.25rem);
    -webkit-backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(0.25rem);
  }
  .p-page-about-content__text-inner {
    padding: 0;
  }
  .p-page-about-values {
    padding-bottom: 80px;
    padding-bottom: 5rem;
  }
  .p-page-about-values__inner {
    padding: 0 16px;
    padding: 0 1rem;
  }
  .p-page-about-values__list {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 36px;
    margin-top: 2.25rem;
    row-gap: 20px;
    row-gap: 1.25rem;
  }
  .p-page-about-values__item {
    border-radius: 1.75rem;
    padding: 12px 14px 30px;
    padding: 0.75rem 0.875rem 1.875rem;
  }
  .p-page-about-values__item-img {
    border-radius: 0.875rem;
  }
  .p-page-about-values__item-img img {
    border-radius: 0.875rem;
  }
  .p-page-about-values__item:hover img {
    transform: scale(1);
  }
  .p-page-about-values__item-title-wrap {
    margin-top: 18px;
    margin-top: 1.125rem;
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }
  .p-page-about-values__item-number {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .p-page-about-values__item-title {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .p-page-about-values__item-text {
    margin-top: 16px;
    margin-top: 1rem;
    padding: 0 16px;
    padding: 0 1rem;
  }
  .p-page-contact {
    padding: 80px 0;
    padding: 5rem 0;
  }
  .p-page-contact__inner {
    padding: 0 16px;
    padding: 0 1rem;
  }
  .p-page-contact__attention {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .p-page-contact__attention span {
    font-size: 12px;
    font-size: 0.75rem;
  }
  .p-page-contact__form {
    margin-top: 40px;
    margin-top: 2.5rem;
  }
  .p-page-mv {
    height: 250px;
    height: 15.625rem;
    min-height: 250px;
    min-height: 15.625rem;
  }
  .p-page-mv::before {
    aspect-ratio: 89/50;
    left: 20px;
    left: 1.25rem;
    max-width: 89px;
    max-width: 5.5625rem;
    top: 51px;
    top: 3.1875rem;
  }
  .p-page-mv::after {
    aspect-ratio: 207/117;
    bottom: -35px;
    bottom: -2.1875rem;
    max-width: 207px;
    max-width: 12.9375rem;
  }
  .p-page-mv__clear-cloud {
    max-width: 80px;
    max-width: 5rem;
    position: absolute;
    right: 20px;
    right: 1.25rem;
    top: 90px;
    top: 5.625rem;
    width: 100%;
  }
  .p-page-mv__inner {
    margin-left: auto;
    margin-right: auto;
    padding: 100px 16px 0;
    padding: 6.25rem 1rem 0;
    position: static;
  }
  .p-page-mv__title {
    align-items: center;
  }
  .p-page-mv__title h1 {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .p-page-mv__title span {
    font-size: 36px;
    font-size: 2.25rem;
    letter-spacing: 0.05em;
  }
  .p-page-privacy {
    margin: 80px 0 100px;
    margin: 5rem 0 6.25rem;
  }
  .p-page-privacy__inner {
    padding: 0 16px;
    padding: 0 1rem;
  }
  .p-page-privacy__list {
    margin-top: 54px;
    margin-top: 3.375rem;
  }
  .p-page-privacy__item + .p-page-privacy__item {
    margin-top: 40px;
    margin-top: 2.5rem;
  }
  .p-page-privacy__item-title {
    padding-bottom: 14px;
    padding-bottom: 0.875rem;
  }
  .p-page-privacy__item-description {
    margin-top: 24px;
    margin-top: 1.5rem;
  }
  .p-pager li {
    background-color: #ffffff;
    box-shadow: inset 0 -0.09375rem 0.1875rem 0 rgba(0, 0, 0, 0.25);
    height: 40px;
    height: 2.5rem;
    outline: 0.97px solid rgba(255, 255, 255, 0.3);
    width: 40px;
    width: 2.5rem;
  }
  .p-pager li:hover {
    background-color: #ffffff;
    box-shadow: inset 0 -0.09375rem 0.1875rem 0 rgba(0, 0, 0, 0.25);
  }
  .page-numbers {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .p-post-list {
    padding: 60px 0 80px;
    padding: 3.75rem 0 5rem;
  }
  .p-post-list__inner {
    padding: 0 16px;
    padding: 0 1rem;
  }
  .p-post-list__inner::before {
    display: none;
  }
  .p-post-list__flex {
    align-items: center;
    flex-direction: column;
    row-gap: 40px;
    row-gap: 2.5rem;
  }
  .p-post-list__items {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 20px;
    row-gap: 1.25rem;
  }
  .p-post-list__search {
    border-radius: 1rem;
    margin: 80px auto 0;
    margin: 5rem auto 0;
    padding: 40px 0;
    padding: 2.5rem 0;
  }
  .p-post-list__search::before, .p-post-list__search::after {
    display: none;
  }
  .p-post-list__search .p-search {
    margin-top: 16px;
    margin-top: 1rem;
  }
  .p-recommend-grid {
    margin-top: 40px;
    margin-top: 2.5rem;
  }
  .p-recommend-grid__list {
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    row-gap: 33px;
    row-gap: 2.0625rem;
  }
  .p-recommend-grid__item a {
    flex-direction: column;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 12px;
    row-gap: 0.75rem;
  }
  .p-recommend-grid__item-img {
    aspect-ratio: 163/113;
    max-width: none;
  }
  .p-recommend-grid__item-img img {
    aspect-ratio: 163/113;
  }
  .p-recommend-grid__item a:hover .p-recommend-grid__item-img img {
    transform: scale(1);
  }
  .p-recommend-grid__item-title {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .p-recommend-grid__item-meta {
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }
  .p-recommend-grid__item-category {
    font-size: 10px;
    font-size: 0.625rem;
    padding: 1.5px 8px;
    padding: 0.09375rem 0.5rem;
  }
  .p-recommend-grid__item-date {
    font-size: 12px;
    font-size: 0.75rem;
  }
  .p-recommend {
    background-image: url(../images/common/recommend-bg-sp.webp);
    padding: 72px 0 120px;
    padding: 4.5rem 0 7.5rem;
  }
  .p-recommend__inner {
    padding: 0 16px;
    padding: 0 1rem;
  }
  .p-recommend .swiper {
    margin-top: 33px;
    margin-top: 2.0625rem;
  }
  .p-recommend .swiper-slide a {
    aspect-ratio: 342/242;
  }
  .p-recommend .swiper-slide a:hover img {
    transform: scale(1);
  }
  .p-recommend .c-contents-filter {
    aspect-ratio: 342/242;
  }
  .p-recommend .c-contents {
    bottom: 16px;
    bottom: 1rem;
    left: 15px;
    left: 0.9375rem;
  }
  .p-recommend .c-contents__title {
    font-size: 16px;
    font-size: 1rem;
    font-weight: 800;
  }
  .p-recommend .c-contents__meta {
    margin-top: 7px;
    margin-top: 0.4375rem;
  }
  .p-recommend .c-contents__category {
    font-size: 10px;
    font-size: 0.625rem;
  }
  .p-recommend .c-contents__date {
    font-size: 12px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    letter-spacing: 0.0625rem;
  }
  .recommend-swiper-button {
    aspect-ratio: 342/242;
  }
  .recommend-swiper-button-prev {
    transform: translateX(-38%);
  }
  .recommend-swiper-button-next {
    transform: translateX(38%);
  }
  .recommend-swiper-button-prev.c-button.c-button--prev,
  .recommend-swiper-button-next.c-button {
    height: 38px;
    height: 2.375rem;
    width: 38px;
    width: 2.375rem;
  }
  .recommend-swiper-button-prev.c-button.c-button--prev:after,
  .recommend-swiper-button-next.c-button:after {
    height: 8.23px;
    height: 0.514375rem;
    width: 8.23px;
    width: 0.514375rem;
  }
  .p-search__label {
    font-size: 16px;
    font-size: 1rem;
  }
  .p-search__category-buttons {
    gap: 10px;
    gap: 0.625rem;
    margin-top: 4px;
    margin-top: 0.25rem;
  }
  .p-search__category-button span {
    border-radius: 0.875rem;
    box-shadow: inset 0 0.1875rem 0.3125rem rgba(255, 255, 255, 0.5), inset 0 -0.125rem 0.25rem rgba(0, 0, 0, 0.16);
    font-size: 14px;
    font-size: 0.875rem;
    padding: 9.5px 16px;
    padding: 0.59375rem 1rem;
  }
  .p-search__category-button span:hover {
    box-shadow: inset 0 0.25rem 0.4375rem rgba(255, 255, 255, 0.5), inset 0 -0.1875rem 0.375rem rgba(0, 0, 0, 0.16);
  }
  .p-search__keyword {
    margin-top: 30px;
    margin-top: 1.875rem;
  }
  .p-search__keyword-box {
    border-radius: 1.8125rem;
    box-shadow: inset 0 0.125rem 0.4375rem rgba(0, 0, 0, 0.06);
    height: 46px;
    height: 2.875rem;
    margin-top: 3px;
    margin-top: 0.1875rem;
    outline: 1.41px solid rgba(255, 255, 255, 0.68);
    outline-offset: -1.41px;
    padding: 6px 5px 4px 16px;
    padding: 0.375rem 0.3125rem 0.25rem 1rem;
  }
  .p-search__keyword-field {
    font-size: 13px;
    font-size: 0.8125rem;
  }
  .p-search__keyword-field::-moz-placeholder {
    font-size: 13px;
    font-size: 0.8125rem;
  }
  .p-search__keyword-field::placeholder {
    font-size: 13px;
    font-size: 0.8125rem;
  }
  .p-search__keyword-button {
    border-radius: 1.8125rem;
    box-shadow: inset 0 0.175625rem 0.3075rem rgba(255, 255, 255, 0.25), inset 0 -0.35125rem 0.395rem rgba(0, 0, 0, 0.16);
    padding: 5px 18px;
    padding: 0.3125rem 1.125rem;
    width: 86px;
    width: 5.375rem;
  }
  .p-search__keyword-button:hover {
    box-shadow: inset 0 0.25rem 0.4375rem rgba(255, 255, 255, 0.25), inset 0 -0.5rem 0.5625rem rgba(0, 0, 0, 0.16);
  }
  .p-search__keyword-button span {
    -moz-column-gap: 0.34375rem;
         column-gap: 0.34375rem;
    font-size: 13px;
    font-size: 0.8125rem;
  }
  .p-search__keyword-button span::before {
    width: 10px;
    width: 0.625rem;
  }
  .p-sidebar__list {
    max-width: none;
  }
  .p-sidebar__item + .p-sidebar__item {
    margin-top: 48px;
    margin-top: 3rem;
  }
  .p-sidebar__item-title {
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }
  .p-sidebar__post-link {
    padding: 16px 0;
    padding: 1rem 0;
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }
  .p-sidebar__post-img {
    border-radius: 0.5rem;
    max-width: 120px;
    max-width: 7.5rem;
  }
  .p-sidebar__post-link:hover .p-sidebar__post-img img {
    transform: scale(1);
  }
  .p-sidebar__post-content .c-contents__meta {
    margin-top: 10px;
    margin-top: 0.625rem;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }
  .p-sidebar__post-content .c-contents__category {
    padding: 1.5px 8px;
    padding: 0.09375rem 0.5rem;
  }
  .p-sidebar__pr-link {
    margin-top: 40px;
    margin-top: 2.5rem;
  }
  .p-sidebar__pr-button {
    border-radius: 1.8125rem;
    box-shadow: inset 0 0.175625rem 0.3075rem rgba(255, 255, 255, 0.25), inset 0 -0.35125rem 0.395rem rgba(0, 0, 0, 0.16);
  }
  .p-sidebar__pr-link:hover .p-sidebar__pr-button {
    box-shadow: inset 0 0.25rem 0.4375rem rgba(255, 255, 255, 0.25), inset 0 -0.5rem 0.5625rem rgba(0, 0, 0, 0.16);
  }
  .p-single-blog {
    padding: 80px 0;
    padding: 5rem 0;
  }
  .p-single-blog .c-breadcrumb__arrow {
    margin-left: 6px;
    margin-left: 0.375rem;
    margin-right: 6px;
    margin-right: 0.375rem;
  }
  .p-single-blog .c-breadcrumb__inner {
    display: block;
  }
  .p-single-blog .c-breadcrumb__link:hover {
    color: rgba(16, 60, 60, 0.5);
  }
  .p-single-blog__inner {
    padding: 0 16px;
    padding: 0 1rem;
  }
  .p-single-blog__flex {
    flex-direction: column;
    margin-top: 40px;
    margin-top: 2.5rem;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 60px;
    row-gap: 3.75rem;
  }
  .p-single-blog__info {
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }
  .p-single-blog__category {
    padding: 1.5px 8px;
    padding: 0.09375rem 0.5rem;
  }
  .p-single-blog__title {
    font-size: 28px;
    font-size: 1.75rem;
    margin-top: 8px;
    margin-top: 0.5rem;
  }
  .p-single-blog__main-img {
    border-radius: 0.75rem;
    margin-top: 16px;
    margin-top: 1rem;
  }
  .p-single-blog__main-img img {
    border-radius: 0.75rem;
  }
  .p-single-blog__content {
    margin-top: 20px;
    margin-top: 1.25rem;
  }
  .p-single-blog__content h2 {
    font-size: 26px;
    font-size: 1.625rem;
    margin: 32px 0 16px;
    margin: 2rem 0 1rem;
  }
  .p-single-blog__content h3 {
    border-radius: 0.5rem;
    font-size: 22px;
    font-size: 1.375rem;
    margin: 32px 0 16px;
    margin: 2rem 0 1rem;
    padding: 10px 20px;
    padding: 0.625rem 1.25rem;
  }
  .p-single-blog__content h4 {
    font-size: 20px;
    font-size: 1.25rem;
    margin: 32px 0 16px;
    margin: 2rem 0 1rem;
    padding-bottom: 40px;
    padding-bottom: 2.5rem;
  }
  .p-single-blog__content h4::before {
    bottom: 24px;
    bottom: 1.5rem;
  }
  .p-single-blog__content h5 {
    border-radius: 0.5rem;
    font-size: 18px;
    font-size: 1.125rem;
    margin: 32px 0 16px;
    margin: 2rem 0 1rem;
    padding: 8px 20px;
    padding: 0.5rem 1.25rem;
  }
  .p-single-blog__content h6 {
    font-size: 16px;
    font-size: 1rem;
    margin: 32px 0 12px;
    margin: 2rem 0 0.75rem;
    padding-left: 18px;
    padding-left: 1.125rem;
  }
  .p-single-blog__content h6::before {
    top: 8px;
    top: 0.5rem;
  }
  .p-single-blog__content img {
    border-radius: 0.75rem;
  }
  .p-single-blog__content figure {
    border-radius: 0.75rem;
  }
  .p-single-blog__writer {
    flex-direction: column-reverse;
    margin-top: 40px;
    margin-top: 2.5rem;
    max-width: 500px;
    max-width: 31.25rem;
    padding: 20px;
    padding: 1.25rem;
    -moz-column-gap: 0;
    border-radius: 1.5rem;
         column-gap: 0;
    row-gap: 20px;
    row-gap: 1.25rem;
  }
  .p-single-blog__writer-name {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .p-single-blog__sidebar {
    margin-top: 40px;
    margin-top: 2.5rem;
  }
  .p-top-mv-swiper::before, .p-top-mv-swiper::after {
    aspect-ratio: 15/120;
    max-width: 15px;
    max-width: 0.9375rem;
  }
  .p-top-mv-swiper .swiper-slide {
    border-radius: 1.25rem;
    box-shadow: 0 0.375rem 0.625rem rgba(11, 81, 53, 0.2);
    outline: 1px solid rgba(255, 255, 255, 0.3);
    outline-offset: -1px;
  }
  .p-top-mv-swiper .swiper-slide::before {
    display: none;
  }
  .p-top-mv-swiper .swiper-slide a {
    padding: 14px;
    padding: 0.875rem;
    -moz-column-gap: 1.3125rem;
         column-gap: 1.3125rem;
  }
  .p-top-mv-swiper__img {
    border-radius: 0.5rem;
    max-width: 92px;
    max-width: 5.75rem;
  }
  .p-top-mv-swiper .swiper-slide a:hover img {
    transform: scale(1);
  }
  .p-top-mv-swiper .c-contents {
    max-width: 199px;
    max-width: 12.4375rem;
  }
  .p-top-mv-swiper .c-contents__date {
    font-size: 10px;
    font-size: 0.625rem;
    letter-spacing: 0.48px;
  }
  .p-top-mv-swiper .c-contents__title {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.8;
    margin-top: 0;
  }
  .p-top-mv-swiper .c-contents__category {
    font-size: 10px;
    font-size: 0.625rem;
    margin-top: 5px;
    margin-top: 0.3125rem;
  }
  .p-top-mv-swiper .c-button {
    bottom: 10px;
    bottom: 0.625rem;
    right: 10px;
    right: 0.625rem;
  }
  .p-top-mv-swiper .swiper-slide a:hover .c-button {
    background-color: #ffffff;
    box-shadow: inset 0 -0.09375rem 0.1875rem 0 rgba(0, 0, 0, 0.25);
  }
  .p-top-mv-swiper .swiper-slide a:hover .c-button::after {
    transform: none;
  }
  .p-top-mv__swiper-pagination {
    margin-top: 18px;
    margin-top: 1.125rem;
    -moz-column-gap: 0.125rem;
         column-gap: 0.125rem;
  }
  .p-top-mv__swiper-pagination .swiper-pagination-bullet {
    height: 6px;
    height: 0.375rem;
    width: 6px;
    width: 0.375rem;
  }
  .p-top-mv__swiper-pagination .swiper-pagination-bullet-active {
    height: 8px;
    height: 0.5rem;
    width: 8px;
    width: 0.5rem;
  }
  .p-top-mv {
    background-image: url(../images/common/top-mv-bg-sp.webp);
    padding: 101px 0 70px;
    padding: 6.3125rem 0 4.375rem;
  }
  .p-top-mv::before {
    aspect-ratio: 89/50;
    left: 20px;
    left: 1.25rem;
    max-width: 89px;
    max-width: 5.5625rem;
    top: 51px;
    top: 3.1875rem;
  }
  .p-top-mv::after {
    aspect-ratio: 207/117;
    bottom: 185px;
    bottom: 11.5625rem;
    max-width: 207px;
    max-width: 12.9375rem;
  }
  .p-top-mv__img {
    aspect-ratio: 346/335;
    max-width: 346px;
    max-width: 21.625rem;
    top: 286px;
    top: 17.875rem;
    transform: translate(-50%);
  }
  .p-top-mv__img::before {
    aspect-ratio: 78/45;
    bottom: 80px;
    bottom: 5rem;
    left: 27px;
    left: 1.6875rem;
    max-width: 78px;
    max-width: 4.875rem;
  }
  .p-top-mv__img::after {
    aspect-ratio: 63/36;
    max-width: 63px;
    max-width: 3.9375rem;
    right: 40px;
    right: 2.5rem;
    top: 20px;
    top: 1.25rem;
  }
  .p-top-mv__inner {
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 0 16px;
    padding: 0 1rem;
  }
  .p-top-mv__title-jp {
    font-size: 16px;
    font-size: 1rem;
  }
  .p-top-mv__title-en {
    font-size: 45px;
    font-size: 2.8125rem;
    letter-spacing: 1.28px;
    line-height: 1.3;
    margin-top: 23px;
    margin-top: 1.4375rem;
  }
  .p-top-mv__swiper {
    margin-top: 330px;
    margin-top: 20.625rem;
  }
  .p-top-ranking {
    padding: 92px 0 47px;
    padding: 5.75rem 0 2.9375rem;
  }
  .p-top-ranking::before {
    animation: moveCloudTop 15s linear infinite;
    aspect-ratio: 98/56;
    max-width: 98px;
    max-width: 6.125rem;
    top: 18px;
    top: 1.125rem;
  }
  .p-top-ranking::after {
    animation: moveCloudBottom 20s linear infinite;
    aspect-ratio: 104/58;
    bottom: -47px;
    bottom: -2.9375rem;
    max-width: 104px;
    max-width: 6.5rem;
  }
  .p-top-ranking__inner {
    padding: 0 32px;
    padding: 0 2rem;
  }
  .p-top-ranking__list {
    grid-template-columns: repeat(1, 1fr);
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 18px;
    row-gap: 1.125rem;
  }
  .p-top-search::before {
    animation: moveCloudTop 15s linear infinite;
    aspect-ratio: 103/58;
    max-width: 103px;
    max-width: 6.4375rem;
    top: 28px;
    top: 1.75rem;
  }
  .p-top-search::after {
    animation: moveCloudBottom 20s linear infinite;
    aspect-ratio: 74/42;
    bottom: auto;
    max-width: 74px;
    max-width: 4.625rem;
    top: 181px;
    top: 11.3125rem;
  }
  .p-top-search__inner {
    padding: 0 16px;
    padding: 0 1rem;
  }
  .p-top-search__search-box {
    border-radius: 1.75rem;
    box-shadow: none;
    margin-top: 28px;
    margin-top: 1.75rem;
    padding: 37px 0 47px;
    padding: 2.3125rem 0 2.9375rem;
  }
  .p-top-search__search-box::after {
    display: none;
  }
  .p-top-search__text-block {
    margin-top: 64px;
    margin-top: 4rem;
  }
  .p-top-search__message {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.6;
  }
  .p-top-search__description {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .p-top-search__img-block {
    gap: 9px;
    gap: 0.5625rem;
    margin-top: 21px;
    margin-top: 1.3125rem;
  }
  .p-top-search__img-block img {
    max-width: 108px;
    max-width: 6.75rem;
  }
  .u-pc {
    display: none;
  }
  .u-sp {
    display: block;
  }
}

@media (max-width: 375px){
  html {
    font-size: 4.2666666667vw;
  }
}

@media (hover: hover){
  a:hover {
    cursor: pointer;
    opacity: 0.8;
  }
}

@media screen and (hover: hover) and (max-width: 767px){
  a:hover {
    opacity: 1;
  }
}

@media screen and (max-width: 1299px){
  .p-header__nav {
    display: none;
  }
  .p-header__hamburger {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: block;
    height: inherit;
    margin: 0;
    outline: none;
    padding: 0;
    position: relative;
    transition: 0.3s;
    z-index: 999;
  }
}
/*# sourceMappingURL=style.css.map */
