@charset "UTF-8";
/* リキッドレイアウト対応 */
body {
  font-family: "Noto Sans JP", sans-serif;
}

main {
  overflow-x: hidden;
}

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

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

body.drawer-open {
  overflow: hidden;
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4678899083vw;
  }
}
@media (min-width: 1090px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

body {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}

body.fade-in {
  opacity: 1;
}

@font-face {
  font-family: "Noto Sans JP", sans-serif;
  src: url("../../fonts/NotoSansJP-VariableFont_wght.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Serif JP", serif;
  src: url("../../fonts/NotoSerif-VariableFont_wdth_wght.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins", sans-serif;
  src: url("../../fonts/Poppins-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

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

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

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

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

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

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

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

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

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

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

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

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

.l-inner {
  max-width: 600px;
  max-width: 37.5rem;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1140px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.p-404 {
  height: 100vh;
  padding-top: 89px;
  padding-top: 5.5625rem;
  padding-bottom: 110px;
  padding-bottom: 6.875rem;
  background: url(../images/common/mv_404_sp.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .p-404 {
    background: url(../images/common/mv_404.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 11rem;
    padding-bottom: 6rem;
    height: 48rem;
  }
}

.p-404__content {
  border: 3px solid #fff;
  padding-top: 116px;
  padding-top: 7.25rem;
  padding-bottom: 116px;
  padding-bottom: 7.25rem;
  background: rgba(255, 255, 255, .5);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  padding-left: 30px;
  padding-left: 1.875rem;
  padding-right: 30px;
  padding-right: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-404__content {
    padding-left: 0;
    padding-left: initial;
    padding-right: 0;
    padding-right: initial;
  }
}

.p-404__block {
  max-width: 650px;
  max-width: 40.625rem;
  margin-inline: auto;
}

.p-404__title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-404__title {
  color: #363636;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-404__title {
    font-size: 2.5rem;
  }
}

.p-404__number {
  color: rgba(54, 54, 54, .15);
  letter-spacing: 0.05em;
  line-height: 1;
  font-size: 68px;
  font-size: 4.25rem;
  margin-left: 15px;
  margin-left: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-404__number {
    margin-left: 1.375rem;
    font-size: 8rem;
  }
}

.p-404__text-wrapper {
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-404__text-wrapper {
    margin-top: 1.5rem;
  }
}

.p-404__text {
  line-height: 1.6;
  font-weight: 400;
  color: #363636;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-404__text {
    font-size: 1.125rem;
  }
}

.p-404__btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-404__btn-wrapper {
    margin-top: 1.5rem;
  }
}

.p-404__btn {
  background: #6d6d6d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: 1px solid #6d6d6d;
  border-radius: 2.5rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  width: 140px;
  width: 8.75rem;
  padding: 6px 10px;
  padding: 0.375rem 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-404__btn {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1.375rem;
    padding-right: 0.875rem;
    width: 15.625rem;
  }
}

.p-404__btn-text {
  font-weight: 500;
  color: #fff;
  font-size: 10px;
  font-size: 0.625rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .p-404__btn-text {
    letter-spacing: 0.1em;
    font-size: 1rem;
  }
}

.p-404__btn:hover {
  background: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.p-404__btn:hover .p-404__text {
  color: #fff;
}

.p-404__btn svg {
  width: 15px;
  width: 0.9375rem;
  height: 15px;
  height: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-404__btn svg {
    width: 2rem;
    height: 2rem;
  }
}

.p-404__btn circle,
.p-404__btn path {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.p-404__btn:hover circle {
  fill: #6d6d6d;
  opacity: 1;
}

.p-404__btn:hover path {
  fill: #fff;
}

.p-404__btn:hover .p-404__btn-text {
  color: #6d6d6d;
}

.p-arrive__content {
  position: relative;
}

.p-arrive__title {
  color: #fff;
  letter-spacing: 0.03em;
  font-weight: 600;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-arrive__title {
    font-size: 2.1875rem;
  }
}

.p-arrive__img {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
}

.p-arrive__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-base {
  background: url(../images/common/base_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-base {
    padding-top: 5rem;
    padding-bottom: 7.5rem;
  }
}

.p-base__title-wrapper {
  text-align: center;
}

.p-base__title {
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-base__title {
    font-size: 2.1875rem;
  }
}

.p-base__text-wrapper {
  text-align: center;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-base__text-wrapper {
    margin-top: 3rem;
  }
}

.p-base__text {
  color: #fff;
  line-height: 2.0555555556;
  letter-spacing: 0.03em;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-base__text {
    font-size: 1.125rem;
  }
}

.p-base__text + .p-base__text {
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-base__text + .p-base__text {
    margin-top: 1.5rem;
  }
}

.p-contact {
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact {
    padding-top: 7.5rem;
    padding-bottom: 6.25rem;
  }
}

.p-contact__content {
  max-width: 800px;
  max-width: 50rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.p-contact__attention {
  color: #000;
  letter-spacing: 0.03em;
  font-weight: 400;
  line-height: 2.0555555556;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-contact__attention {
    font-size: 1.125rem;
  }
}

.p-contact__content span {
  color: #f00b0b;
  font-size: 10px;
  font-size: 0.625rem;
  text-align: super;
}

.p-contact__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  gap: 0.125rem;
}

.p-footer {
  background: #12798f;
  padding-top: 12px;
  padding-top: 0.75rem;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-footer {
    padding-top: 3.625rem;
    padding-bottom: 1.25rem;
  }
}

.p-footer__inner {
  max-width: 1220px;
  max-width: 76.25rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
}

.p-footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .p-footer__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-footer__left {
  margin-top: 16px;
  margin-top: 1rem;
  padding-top: 16px;
  padding-top: 1rem;
  border-top: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .p-footer__left {
    padding-top: 0;
    padding-top: initial;
    border-top: 0;
    border-top: initial;
    max-width: 30rem;
    width: 100%;
    margin-top: 0;
    margin-top: initial;
    padding-right: 4rem;
  }
}

.p-footer__home {
  display: inline-block;
  width: 236px;
  width: 14.75rem;
}

.p-footer__home img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-footer__detail {
  margin-top: 16px;
  margin-top: 1rem;
}

.p-footer__text {
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
  letter-spacing: 0.04em;
  font-weight: 500;
  display: block;
}

.p-footer__text + .p-footer__text {
  margin-top: 6px;
  margin-top: 0.375rem;
}

@media screen and (min-width: 768px) {
  .p-footer__right {
    padding-left: 4.375rem;
    position: relative;
  }
}

.p-footer__right::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 121px;
  height: 7.5625rem;
  background: #fff;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-footer__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 24px;
  padding-top: 1.5rem;
}

.p-footer__list {
  width: 50%;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-footer__list {
    width: 12.8125rem;
    margin-bottom: 1.25rem;
  }
}

.p-footer__link {
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.p-footer__small-wrapper {
  text-align: center;
  margin-top: 56px;
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .p-footer__small-wrapper {
    margin-top: 5.25rem;
  }
}

.p-footer__small {
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}

.p-form {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-form {
    margin-top: 2.9375rem;
  }
}

.p-form__row-wrapper {
  position: relative;
  padding-top: 24px;
  padding-top: 1.5rem;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-form__row-wrapper {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.p-form__row-wrapper:first-child {
  border-top: none;
}

.p-form__row + .p-form__row {
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-form__row + .p-form__row {
    margin-top: 3.75rem;
  }
}

.p-form__dt-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  gap: 0.625rem;
}

.p-form__dt {
  color: #000;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-form__dt {
    font-size: 1.125rem;
  }
}

.p-form__dt span {
  color: #f00b0b;
  font-size: 10px;
  font-size: 0.625rem;
  vertical-align: super;
}

.p-form__need {
  color: #fff;
  background: #ed1c24;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 55px;
  width: 3.4375rem;
  height: 22px;
  height: 1.375rem;
}
@media screen and (min-width: 768px) {
  .p-form__need {
    font-size: 0.875rem;
  }
}

.p-form__need--black {
  color: #363636;
}

.wpcf7-spinner {
  display: none;
}

.p-form__description--radio {
  /* デフォルトのボタン */
  /* チェック前のボタン */
  /* チェック後のボタン */
}
.p-form__description--radio .wpcf7-list-item-label {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #222;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-form__description--radio .wpcf7-list-item-label {
    font-size: 1.125rem;
  }
}
.p-form__description--radio input[type=radio] {
  opacity: 0; /* デフォルトのボタンを非表示 */
  position: absolute;
}
.p-form__description--radio .wpcf7-list-item-label::before {
  background: #fff;
  border: 1px solid #222;
  border-radius: 9999px; /* ラジオボタンっぽく丸くする */
  content: "";
  margin-bottom: auto;
  margin-right: 0.5em;
  margin-top: auto;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
  width: 18px;
  width: 1.125rem;
  height: 18px;
  height: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-form__description--radio .wpcf7-list-item-label::before {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.p-form__description--radio input[type=radio]:checked + .wpcf7-list-item-label::before {
  background-color: #ed1c24; /* チェック後の中心の色 */
  -webkit-box-shadow: inset 0 0 0 5px #fff;
          box-shadow: inset 0 0 0 5px #fff; /* 中心の色のスタイル */
}
.p-form__description--radio .custom-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 18px;
  row-gap: 1.125rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-form__description--radio .custom-radio {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.wpcf7-list-item {
  margin-left: 0;
  margin-left: initial;
}
@media screen and (min-width: 768px) {
  .wpcf7-list-item {
    margin-right: 0;
    margin-right: initial;
  }
}

.p-form__description {
  font-size: 14px;
  font-size: 0.875rem;
  word-wrap: break-word;
  color: #363636;
  padding-top: 0;
  padding-top: initial;
  margin-top: 12px;
  margin-top: 0.75rem;
  width: 100%;
}

.p-form input[type=text],
.p-form input[type=tel],
.p-form input[type=email] {
  width: 100%;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.2;
  padding: 24px;
  padding: 1.5rem;
  background: #f2f2ec;
}
@media screen and (min-width: 768px) {
  .p-form input[type=text],
  .p-form input[type=tel],
  .p-form input[type=email] {
    font-size: 1.125rem;
    padding-top: 1.5625rem;
    padding-bottom: 1.5625rem;
    padding-left: 1.6875rem;
    padding-right: 1.6875rem;
  }
}

.p-form textarea {
  width: 100%;
  height: 200px;
  height: 12.5rem;
  font-size: 12px;
  font-size: 0.75rem;
  padding: 10px 12px;
  padding: 0.625rem 0.75rem;
  resize: none;
  background: #f2f2ec;
}
@media screen and (min-width: 768px) {
  .p-form textarea {
    padding-top: 2.1875rem;
    padding-bottom: 2.1875rem;
    padding-left: 1.6875rem;
    padding-right: 1.6875rem;
    font-size: 1.125rem;
  }
}

.p-form__btn-wrapper {
  margin-top: 40px;
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-form__btn-wrapper {
    gap: 1.25rem;
  }
}

.p-form__btn-outside {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  width: 272px;
  width: 17rem;
  height: 56px;
  height: 3.5rem;
}
@media screen and (min-width: 768px) {
  .p-form__btn-outside {
    width: 21.0625rem;
    height: 4.0625rem;
  }
}

.p-form__btn-outside::after {
  position: absolute;
  content: ">";
  color: #fff;
  letter-spacing: 0.03em;
  font-weight: 500;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
  font-size: 16px;
  font-size: 1rem;
  right: 24px;
  right: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-form__btn-outside::after {
    font-size: 1.125rem;
    right: 5rem;
  }
}

.p-form__btn input[type=submit] {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  border-radius: 9999px;
  position: relative;
  border: 1px solid #12798f;
  background: #12798f;
  width: 272px;
  width: 17rem;
  height: 56px;
  height: 3.5rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  -webkit-filter: drop-shadow(-3px 3px 6px rgba(0, 0, 0, .5));
          filter: drop-shadow(-3px 3px 6px rgba(0, 0, 0, .5));
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-form__btn input[type=submit] {
    width: 21.0625rem;
    font-size: 1.125rem;
    height: 4.0625rem;
  }
}

.p-form__btn input[type=submit]:hover,
.p-form__btn input[type=button]:hover {
  background: #12798f;
  color: #fff;
  cursor: pointer;
  border: 1px solid #fff;
}

input::-webkit-input-placeholder {
  color: #a3a3a3;
  line-height: 1.2;
}

input::-moz-placeholder {
  color: #a3a3a3;
  line-height: 1.2;
}

input::-ms-input-placeholder {
  color: #a3a3a3;
  line-height: 1.2;
}

input::placeholder {
  color: #a3a3a3;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  input::-webkit-input-placeholder {
    font-size: 1.125rem;
  }
  input::-moz-placeholder {
    font-size: 1.125rem;
  }
  input::-ms-input-placeholder {
    font-size: 1.125rem;
  }
  input::placeholder {
    font-size: 1.125rem;
  }
}

.p-form__privacy-wrapper {
  text-align: center;
}

.p-form__privacy-text {
  color: #222;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-form__privacy-text {
    font-size: 1.125rem;
  }
}

.p-form__privacy-text a {
  text-decoration: underline;
}

.p-form__description-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-form__description-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 4.0625rem;
  }
}

.p-form__description-row--contact {
  display: block;
}

.p-form__select-block {
  position: relative;
  margin-top: 8px;
  margin-top: 0.5rem;
}

.p-form__select-block::before {
  position: absolute;
  content: "";
  background: url(../images/common/select_icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 11px;
  width: 0.6875rem;
  height: auto;
  aspect-ratio: 11/8;
  -o-object-fit: cover;
     object-fit: cover;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  right: 1.25rem;
  z-index: 1;
}

.p-form__select-text {
  background: #f2f2ec;
  letter-spacing: 0.03em;
  color: #000;
  padding-top: 24px;
  padding-top: 1.5rem;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  font-size: 14px;
  font-size: 0.875rem;
  padding-left: 24px;
  padding-left: 1.5rem;
  padding-right: 24px;
  padding-right: 1.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-form__select-text {
    font-size: 1.125rem;
    padding-left: 2.5625rem;
    padding-right: 2.5625rem;
  }
}

.p-form__select-block select {
  background: #f2f2ec;
  width: 100%;
  letter-spacing: 0.03em;
  color: #000;
  padding-top: 24px;
  padding-top: 1.5rem;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  font-size: 14px;
  font-size: 0.875rem;
  padding-left: 24px;
  padding-left: 1.5rem;
  padding-right: 24px;
  padding-right: 1.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-form__select-block select {
    font-size: 1.125rem;
    padding-left: 2.5625rem;
    padding-right: 2.5625rem;
  }
}

.p-form__checkbox .wpcf7-form-control-wrap {
  display: block;
}
.p-form__checkbox span.wpcf7-list-item {
  position: relative;
}
.p-form__checkbox .wpcf7-list-item-label {
  /*項目の色や文字サイズ*/
  color: #000;
  cursor: pointer;
  letter-spacing: 0.03em;
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-form__checkbox .wpcf7-list-item-label {
    font-size: 1.125rem;
  }
}
.p-form__checkbox .wpcf7-list-item {
  display: block;
}
.p-form__checkbox .wpcf7-list-item + .wpcf7-list-item {
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-form__checkbox .wpcf7-list-item + .wpcf7-list-item {
    margin-top: 1rem;
  }
}
.p-form__checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0; /*既存のチェックボックスを見えなくする*/
}
.p-form__checkbox .wpcf7-list-item-label:before {
  /*チェックボックスの枠*/
  content: "";
  background: #f2f2ec;
  display: inline-block;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  position: relative;
  top: -1px;
  margin-right: 12px;
  margin-right: 0.75rem;
  vertical-align: middle;
  cursor: pointer;
  text-align: center;
}
.p-form__checkbox input[type=checkbox]:checked + .wpcf7-list-item-label:after {
  /*チェックアイコン*/
  content: "";
  display: block;
  position: absolute;
  top: 9px;
  top: 0.5625rem;
  left: 4px;
  left: 0.25rem;
  width: 12px;
  width: 0.75rem;
  height: 12px;
  height: 0.75rem;
  background: #363636;
}

.p-form__description--radio {
  /* デフォルトのボタン */
  /* チェック前のボタン */
  /* チェック後のボタン */
}
.p-form__description--radio .wpcf7-list-item-label {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  font-size: 1rem;
  color: #363636;
}
.p-form__description--radio input[type=radio] {
  opacity: 0; /* デフォルトのボタンを非表示 */
  position: absolute;
}
.p-form__description--radio .wpcf7-list-item-label::before {
  background: #fff;
  border: 1px solid #707070;
  border-radius: 100%; /* ラジオボタンっぽく丸くする */
  content: "";
  height: 20px;
  height: 1.25rem;
  margin-bottom: auto;
  margin-right: 0.5em;
  margin-top: auto;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s; /* 色をじんわり変化させる */
  width: 20px;
  width: 1.25rem;
}
.p-form__description--radio input[type=radio]:checked + .wpcf7-list-item-label::before {
  background-color: #e24215; /* チェック後の中心の色 */
  -webkit-box-shadow: inset 0 0 0 3px #fff;
          box-shadow: inset 0 0 0 3px #fff; /* 中心の色のスタイル */
}
.p-form__description--radio .custom-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 18px;
  row-gap: 1.125rem;
}

.wpcf7-list-item {
  margin-left: 0;
  margin-left: initial;
  margin-right: 28px;
  margin-right: 1.75rem;
}

.p-form__select-txt {
  color: #000;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-form__select-txt {
    font-size: 1rem;
  }
}

.p-header {
  background: transparent;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.p-header__inner {
  padding-left: 20px;
  padding-left: 1.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    padding-left: 2.5rem;
  }
}

.p-header__logo {
  padding-top: 24px;
  padding-top: 1.5rem;
  position: absolute;
  top: 20px;
  top: 1.25rem;
  left: 20px;
  left: 1.25rem;
}

.p-header__home {
  display: inline-block;
  width: 56px;
  width: 3.5rem;
}
@media screen and (min-width: 768px) {
  .p-header__home {
    width: 7.25rem;
  }
}

.p-header__home img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-home-topics__box {
  position: relative;
  z-index: 1;
}

.p-home-topics {
  position: relative;
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-home-topics {
    padding-bottom: 7.5rem;
    padding-top: 7.5rem;
  }
}

.p-home-topics__top img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-home-topics__title {
  text-align: center;
}

.p-home-topics__block {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-home-topics__row {
  position: relative;
  border-bottom: 1px dotted #222;
  padding-top: 24px;
  padding-top: 1.5rem;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-home-topics__row {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-home-topics__row:first-child {
  border-top: 1px dotted #222;
}

.p-home-topics__metaBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-home-topics__metaBlock {
    width: 15rem;
  }
}

.p-home-topics__time {
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #222;
}

.p-home-topics__category {
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #fff;
  background: #ed1c24;
  border-radius: 0.25rem;
  padding-top: 4px;
  padding-top: 0.25rem;
  padding-bottom: 4px;
  padding-bottom: 0.25rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-home-topics__blockTitle {
  letter-spacing: 0.05em;
  line-height: 1.6111111111;
  color: #222;
  text-decoration: underline;
  font-size: 14px;
  font-size: 0.875rem;
  width: 100%;
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-home-topics__blockTitle {
    margin-top: 0;
    margin-top: initial;
    font-size: 1.125rem;
    width: calc(100% - 12.5rem);
  }
}

.p-home-topics__btn-wrapper {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-home-topics__btn-wrapper {
    margin-top: 3.75rem;
  }
}

.p-home-topics__btn {
  width: 240px;
  width: 15rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  height: 60px;
  height: 3.75rem;
  background: #222;
  border-radius: 9999px;
}

.p-home-topics__icon {
  position: absolute;
  content: "";
  width: 24px;
  width: 1.5rem;
  height: auto;
  aspect-ratio: 12/24;
  -o-object-fit: cover;
     object-fit: cover;
  top: 54%;
  left: 6px;
  left: 0.375rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-home-topics__btn-text {
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-home-topics__btn-text {
    font-size: 1.125rem;
  }
}

.p-home-topics__icon--right {
  right: 6px;
  right: 0.375rem;
  left: auto;
  left: initial;
}

.p-home-topics__pagination {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-home-topics__pagination {
    margin-top: 5rem;
  }
}

.p-home-topics__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-home-topics__lists {
    gap: 0.875rem;
  }
}

.p-home-topics__pagination-link {
  display: inline-block;
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #222;
  border-radius: 9999px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #222;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.p-home-topics__pagination-link.current {
  background: #ed1c24;
  color: #fff;
  border: 1px solid #ed1c24;
}

.p-mv {
  background: #000;
  height: 180px;
  height: 11.25rem;
}
@media screen and (min-width: 768px) {
  .p-mv {
    height: 24rem;
  }
}

.p-mv__content {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 180px;
  height: 11.25rem;
}
@media screen and (min-width: 768px) {
  .p-mv__content {
    height: 24rem;
  }
}

.p-mv__title {
  max-width: 200px;
  max-width: 12.5rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-mv__title {
    max-width: 40rem;
  }
}

.p-mv__title img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-mv__title span {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1.6;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-mv__title span {
    margin-top: 0;
    margin-top: initial;
    font-size: 3.75rem;
    display: inline-block;
  }
}

.p-mv__text {
  letter-spacing: 0.04em;
  line-height: 1.6153846154;
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-mv__text {
    margin-top: 1rem;
    font-size: 1.625rem;
  }
}

/* .p-mv__img {
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: rem(16);
  max-width: rem(64);
  @include mq(md) {
    margin-top: rem(32);
    max-width: rem(106);
  }
}
.p-mv__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
}
 */
.p-private {
  background: #000;
}
@media screen and (min-width: 768px) {
  .p-private {
    border-top: 1px solid #fff;
  }
}

@media screen and (min-width: 768px) {
  .p-private__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-private__left {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
}
@media screen and (min-width: 768px) {
  .p-private__left {
    width: 52vw;
    margin-right: 0;
    margin-right: initial;
  }
}

.swiper-button-prev {
  width: 48px;
  width: 3rem;
  height: 48px;
  height: 3rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 16px;
  left: 1rem;
}

.swiper-button-next {
  width: 48px;
  width: 3rem;
  height: 48px;
  height: 3rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 16px;
  right: 1rem;
}

.swiper-button-prev img,
.swiper-button-next img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-private__swiper-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 735/449;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-private__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 735/466;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-private__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-top: 24px;
  margin-top: 1.5rem;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  padding-left: 24px;
  padding-left: 1.5rem;
  padding-right: 24px;
  padding-right: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-private__right {
    padding-bottom: 0;
    padding-bottom: initial;
    margin-top: 0;
    margin-top: initial;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    /*  max-width: rem(510); */
    padding-left: 6rem;
    padding-right: 6rem;
    margin-right: calc(50% - 50vw);
  }
}

.p-private__title {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  line-height: 1.2857142857;
  font-weight: 600;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-private__title {
    font-size: min(2.1875rem, 2.4305555556vw);
  }
}

.p-private__en {
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 1.2857142857;
  font-weight: 600;
  font-size: 20px;
  font-size: 1.25rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-private__en {
    font-size: min(2.1875rem, 2.4305555556vw);
    margin-top: 2.75rem;
  }
}

.p-private__block-wrapper {
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-private__block-wrapper {
    margin-top: 2.25rem;
  }
}

.p-private__block + .p-private__block {
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-private__block + .p-private__block {
    margin-top: 2rem;
  }
}

.p-private__block-title {
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 1.652173913;
  font-weight: 600;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-private__block-title {
    font-size: min(1.4375rem, 1.5972222222vw);
  }
}

.p-private__block-text {
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 2.125;
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-private__block-text {
    margin-top: 1.25rem;
    font-size: min(1rem, 1.1111111111vw);
  }
}

.p-reserve {
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-reserve {
    padding-top: 4.25rem;
    padding-bottom: 5rem;
  }
}

.p-reserve__topText-wrapper {
  max-width: 954px;
  max-width: 59.625rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.p-top-reserve__topText {
  color: #000;
  letter-spacing: 0.03em;
  font-weight: 400;
  line-height: 2.0555555556;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-top-reserve__topText {
    font-size: 1.125rem;
  }
}

.p-reserve__content {
  background: #e2e2e2;
  margin-top: 32px;
  margin-top: 2rem;
  padding: 16px;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .p-reserve__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2.5rem;
    margin-top: 3.5rem;
    padding: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-reserve__leftTop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2rem;
  }
}

.p-reserve__leftTop-title {
  letter-spacing: 0.05em;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: #000;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-reserve__leftTop-title {
    font-size: 1.875rem;
  }
}

.p-reserve__leftTop-text {
  letter-spacing: 0.03em;
  color: #000;
  font-size: re(14);
}
@media screen and (min-width: 768px) {
  .p-reserve__leftTop-text {
    font-size: 1.0625rem;
  }
}

.p-reserve__leftDate-block {
  margin-top: 16px;
  margin-top: 1rem;
}

.p-reserve__leftDate-title {
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 1.3333333333;
  color: #000;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-reserve__leftDate-title {
    font-size: 2rem;
    text-align: right;
  }
}

.p-reserve__leftDate-title + .p-reserve__leftDate-title {
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-reserve__leftDate-title + .p-reserve__leftDate-title {
    margin-top: 1.5rem;
  }
}

.p-reserve__leftPlace {
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-reserve__leftPlace {
    margin-top: 1.5rem;
  }
}

.p-reserve__leftPlace-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 1.3928571429;
  color: #000;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-reserve__leftPlace-title {
    font-size: 1.75rem;
  }
}

.p-reserve__leftPlace-text {
  font-size: 14px;
  font-size: 0.875rem;
  color: #000;
  letter-spacing: 0.03em;
  font-weight: 400;
  line-height: 2.0555555556;
}
@media screen and (min-width: 768px) {
  .p-reserve__leftPlace-text {
    font-size: 1.125rem;
  }
}

.p-reserve__img {
  width: 100%;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-reserve__img {
    margin-left: auto;
    max-width: 25.1875rem;
    margin-top: 0;
    margin-top: initial;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.p-reserve__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-reserve__bottom {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-reserve__bottom {
    margin-top: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-reserve__bottom-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5rem;
  }
}

.p-reserve__bottom-detailText {
  color: #000;
  letter-spacing: 0.03em;
  font-weight: 400;
  line-height: 2.0555555556;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-reserve__bottom-detailText {
    font-size: 1.125rem;
  }
}

.p-reserve__bottom-detailTextBig {
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.25;
  font-size: 24px;
  font-size: 1.5rem;
  margin-top: 8px;
  margin-top: 0.5rem;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-reserve__bottom-detailTextBig {
    font-size: 2.25rem;
  }
}

.p-reserve__bottom-img {
  width: 100%;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-reserve__bottom-img {
    margin-top: 0;
    margin-top: initial;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-left: auto;
    max-width: 25.625rem;
  }
}

.p-reserve__bottom-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-reserve__btn-wrapper {
  text-align: center;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-reserve__btn-wrapper {
    margin-top: 2.5rem;
  }
}

.p-reserve__btn {
  display: inline-block;
  background: #12798f;
  color: #fff;
  letter-spacing: 0.04em;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  border-radius: 9999px;
  width: 320px;
  width: 20rem;
  padding-top: 16px;
  padding-top: 1rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .p-reserve__btn {
    font-size: 1.125rem;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    width: 21.0625rem;
  }
}

.mt24 {
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .mt24 {
    margin-top: 1.5rem;
  }
}

.p-risk {
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  background: #000;
  border-top: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .p-risk {
    padding-top: 0;
    padding-top: initial;
    padding-bottom: 0;
    padding-bottom: initial;
  }
}

@media screen and (min-width: 768px) {
  .p-risk__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-risk__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding-left: 24px;
  padding-left: 1.5rem;
  padding-right: 24px;
  padding-right: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-risk__detail {
    width: 44%;
    padding-left: 6rem;
    padding-right: 6rem;
  }
}

.p-risk__title {
  color: #fff;
  font-weight: 600;
  line-height: 1.2857142857;
  letter-spacing: 0.03em;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-risk__title {
    font-size: min(2.1875rem, 2.4305555556vw);
  }
}

.p-risk__sub {
  color: #fff;
  line-height: 1.652173913;
  letter-spacing: 0.03em;
  font-weight: 600;
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-risk__sub {
    margin-top: 2rem;
    font-size: min(1.4375rem, 1.5972222222vw);
  }
}

.p-risk__text {
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 2.125;
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-risk__text {
    font-size: min(1rem, 1.1111111111vw);
    margin-top: 2rem;
  }
}

.p-risk__img {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  width: 100vw;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-risk__img {
    margin-top: 0;
    margin-top: initial;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 50vw;
    margin-left: 0;
    margin-left: initial;
  }
}

.p-risk__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 735/674;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-security {
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-security {
    padding-top: 3rem;
    padding-bottom: 5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-security__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* gap: rem(45); */
  }
}

.p-security__detail {
  width: 100%;
  padding-left: 24px;
  padding-left: 1.5rem;
  padding-right: 24px;
  padding-right: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-security__detail {
    /*  max-width: rem(445); */
    width: 50%;
    padding-left: 8.75rem;
    padding-right: 6rem;
  }
}

.p-security__title {
  letter-spacing: 0.03em;
  line-height: 1.2857142857;
  font-weight: 600;
  text-transform: capitalize;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-security__title {
    font-size: 2.1875rem;
  }
}

.p-security__sub {
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.652173913;
  font-size: 16px;
  font-size: 1rem;
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-security__sub {
    margin-top: 1.5rem;
    font-size: 1.4375rem;
  }
}

.p-security__text {
  line-height: 2.125;
  font-weight: 400;
  color: #000;
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-security__text {
    font-size: 1rem;
    margin-top: 1.5rem;
  }
}

.p-security__img {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  width: 100vw;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-security__img {
    margin-top: 0;
    margin-top: initial;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-left: auto;
    width: 50vw;
  }
}

.p-security__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-service {
  background: #000;
  border-top: 1px solid #fff;
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-service {
    padding-top: 3.3125rem;
    padding-bottom: 3.1875rem;
  }
}

.p-service__title-wrapper {
  text-align: center;
}

.p-service__title {
  color: #fff;
  line-height: 1.2857142857;
  letter-spacing: 0.03em;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-service__title {
    font-size: 2.1875rem;
  }
}

.p-service__subTitle {
  color: #fff;
  line-height: 1.7;
  letter-spacing: 0.03em;
  font-size: 16px;
  font-size: 1rem;
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-service__subTitle {
    margin-top: 1.3125rem;
    font-size: 1.25rem;
  }
}

.p-service__sub {
  color: #fff;
  line-height: 2.125;
  margin-top: 7px;
  margin-top: 0.4375rem;
  letter-spacing: 0.03em;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-service__sub {
    font-size: 1rem;
  }
}

.p-service__row {
  display: grid;
  margin-top: 32px;
  margin-top: 2rem;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-service__row {
    margin-top: 3rem;
    gap: 7.5rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-service__blockTitle {
  text-align: center;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 1.4074074074;
  border-bottom: 1px solid #fff;
  font-size: 20px;
  font-size: 1.25rem;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-service__blockTitle {
    padding-bottom: 0.875rem;
    font-size: 1.6875rem;
  }
}

.p-service__blockSub {
  text-align: center;
  color: #fff;
  letter-spacing: 0.03em;
  font-weight: 400;
  margin-top: 12px;
  margin-top: 0.75rem;
  line-height: 1.7;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-service__blockSub {
    font-size: 1.25rem;
  }
}

.p-service__text {
  color: #fff;
  line-height: 2.125;
  margin-top: 12px;
  margin-top: 0.75rem;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-service__text {
    font-size: 1rem;
    margin-top: 1.5rem;
  }
}

.p-single-topics {
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-single-topics {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
}

.p-single-topics__title {
  border-bottom: 1px solid #222;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
  text-align: center;
}
.p-single-topics__main {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-single-topics__main {
    margin-top: 2.5rem;
  }
}

.p-single-topics__main-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-single-topics__main-title {
    font-size: 2rem;
  }
}

.p-single-topics__meta {
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-single-topics__meta {
    margin-top: 1.25rem;
  }
}

.p-single-topics__meta-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-single-topics__meta-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
  gap: 0.75rem;
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-single-topics__meta-category {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #ed1c24;
  border: 1px solid #ed1c24;
  padding: 2px 12px;
  padding: 0.125rem 0.75rem;
  border-radius: 9999px;
}
@media screen and (min-width: 768px) {
  .p-single-topics__meta-category {
    font-size: 1rem;
  }
}

.p-single-topics__meta-text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-single-topics__meta-text {
    font-size: 1.125rem;
  }
}

.p-single-topics__btn-wrapper {
  margin-top: 40px;
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-single-topics__btn-wrapper {
    margin-top: 3.75rem;
  }
}

.p-single-topics__btn {
  width: 240px;
  width: 15rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  height: 60px;
  height: 3.75rem;
  background: #222;
  border-radius: 9999px;
}

.p-single-topics__icon {
  position: absolute;
  content: "";
  width: 24px;
  width: 1.5rem;
  height: auto;
  aspect-ratio: 12/24;
  -o-object-fit: cover;
     object-fit: cover;
  top: 54%;
  left: 6px;
  left: 0.375rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-single-topics__btn-text {
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-single-topics__btn-text {
    font-size: 1.125rem;
  }
}

.p-single-topics__icon--right {
  right: 6px;
  right: 0.375rem;
  left: auto;
  left: initial;
}

/* 段落 */
.p-single-topics__main-content p {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.7142857143;
  color: #222;
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-single-topics__main-content p {
    font-size: 1rem;
    margin-top: 1rem;
  }
}

/* 見出し */
.p-single-topics__main-content h2 {
  font-size: 24px;
  font-size: 1.5rem;
  color: #222;
  position: relative;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-single-topics__main-content h2 {
    margin-top: 2rem;
    font-size: 2rem;
  }
}

.p-single-topics__main-content h2::before {
  position: absolute;
  content: "";
  background: #222;
  width: 100%;
  height: 2px;
  bottom: -4px;
  bottom: -0.25rem;
  left: 0;
  right: 0;
}

.p-single-topics__main-content h3 {
  font-size: 20px;
  font-size: 1.25rem;
  margin-top: 20px;
  margin-top: 1.25rem;
  position: relative;
  padding-left: 16px;
  padding-left: 1rem;
}
@media screen and (min-width: 768px) {
  .p-single-topics__main-content h3 {
    margin-top: 1.5rem;
    font-size: 1.75rem;
  }
}

.p-single-topics__main-content h3::before {
  position: absolute;
  content: "";
  background: #ed1c24;
  width: 4px;
  width: 0.25rem;
  left: 0;
  top: 0;
  bottom: 0;
}

.p-single-topics__main-content h4 {
  font-size: 18px;
  font-size: 1.125rem;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-single-topics__main-content h4 {
    margin-top: 1.25rem;
    font-size: 1.25rem;
  }
}

.p-single-topics__main-content h5 {
  font-size: 16px;
  font-size: 1rem;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-single-topics__main-content h5 {
    margin-top: 1.25rem;
    font-size: 1.125rem;
  }
}

/* リスト */
.p-single-topics__main-content ul {
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-single-topics__main-content ul {
    margin-top: 1rem;
  }
}

.p-single-topics__main-content ul li {
  list-style: disc;
  margin-left: 16px;
  margin-left: 1rem;
}

.p-single-topics__main-content ol {
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-single-topics__main-content ol {
    margin-top: 1rem;
  }
}

.p-single-topics__main-content ol li {
  list-style: decimal;
  margin-left: 16px;
  margin-left: 1rem;
}

/* リンク */
.p-single-topics__main-content a {
  color: #ed1c24;
  text-decoration: underline;
  font-size: 16px;
  font-size: 1rem;
}

/* 画像 */
.p-single-topics__main-content img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-single-topics__main-content img {
    margin-top: 1rem;
  }
}

/* 囲み系（Gutenbergブロックでよく出る） */
.p-single-topics__main-content figure {
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-single-topics__main-content figure {
    margin-top: 1rem;
  }
}

.p-single-topics__main-content figcaption {
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: #222;
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-single-topics__main-content figcaption {
    margin-top: 1rem;
  }
}

/* 引用 */
/* テーブル */
.p-single-topics__main-content table {
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-single-topics__main-content table {
    margin-top: 1rem;
  }
}

/* コード */
/* ボタン */
/* キャプション（画像などのキャプションに出る） */
/* スペーサー（余白ブロック） */
/* グループ（グループ化ブロック） */
/* カラム系 */
/* ギャラリー */
.p-top-mv {
  height: 100vh;
}
@media screen and (min-width: 768px) {
  .p-top-mv {
    height: 100vh;
  }
}

.p-top-mv__content {
  position: relative;
}

.p-top-mv__detail {
  position: absolute;
  top: 65%;
  left: 0px;
  left: 0rem;
}
@media screen and (min-width: 768px) {
  .p-top-mv__detail {
    top: auto;
    top: initial;
    bottom: 6.25rem;
  }
}

.p-top-mv__title {
  width: 330px;
  width: 20.625rem;
}
@media screen and (min-width: 768px) {
  .p-top-mv__title {
    width: 29.375rem;
  }
}

.p-top-mv__title img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-top-mv__text {
  color: #fff;
  letter-spacing: 0.04em;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-size: 2rem;
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-mv__text {
    margin-top: 1.25rem;
    font-size: 3.75rem;
  }
}

.p-top-mv__text span {
  font-weight: 700;
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-mv__text span {
    font-size: 2.9375rem;
  }
}

.p-top-mv__month {
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .p-top-mv__month {
    font-size: 4.375rem;
  }
}

.p-top-mv__month-day {
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-mv__month-day {
    font-size: 2.8125rem;
  }
}

.p-top-mv__day {
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-mv__day {
    font-size: 2.1875rem;
  }
}

.p-top-mv__bottom-text {
  color: #fff;
  line-height: 1.4782608696;
  letter-spacing: 0.04em;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-top-mv__bottom-text {
    font-size: 1.625rem;
    margin-top: 1.125rem;
  }
}

.p-top-mv__img {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  height: 100vh;
}

.p-top-mv__img img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media screen and (min-width: 768px) {
  .p-top-mv__img img {
    height: 100vh;
  }
}

.p-your {
  background: #f2f2ec;
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-your {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.p-your__title-wrapper {
  text-align: center;
}

.p-your__title {
  color: #000;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-your__title {
    font-size: 2.1875rem;
  }
}

.p-your__row {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
  gap: 1.5rem;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-your__row {
    gap: 6.6875rem;
    margin-top: 3rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-your__img img {
  aspect-ratio: 491/315;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}

.p-your__detail {
  padding-top: 32px;
  padding-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-your__detail {
    padding-top: 3rem;
  }
}

.p-your__detail-title {
  text-align: center;
  letter-spacing: 0.03em;
  font-weight: 600;
  color: #000;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-your__detail-title {
    font-size: 1.5rem;
  }
}

.p-your__detail-text {
  line-height: 2.125;
  color: #000;
  letter-spacing: 0.03em;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 12px;
  margin-top: 0.75rem;
  width: 320px;
  width: 20rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-your__detail-text {
    margin-top: 1.5rem;
    padding-left: 2rem;
    font-size: 1rem;
    width: 26.5625rem;
  }
}

.p-your__btn-wrapper {
  text-align: center;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-your__btn-wrapper {
    margin-top: 2.5rem;
  }
}

.p-your__btn {
  display: inline-block;
  background: #12798f;
  text-align: center;
  letter-spacing: 0.04em;
  font-weight: 500;
  color: #fff;
  border-radius: 9999px;
  width: 320px;
  width: 20rem;
  padding-top: 12px;
  padding-top: 0.75rem;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-your__btn {
    font-size: 1.125rem;
    padding-top: 1.1875rem;
    padding-bottom: 1.1875rem;
    width: 24.75rem;
  }
}

.p-your__follow {
  text-align: center;
  margin-top: 36px;
  margin-top: 2.25rem;
}
@media screen and (min-width: 768px) {
  .p-your__follow {
    margin-top: 4.5rem;
  }
}

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

.p-your__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  gap: 1.5rem;
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-your__sns {
  width: 37px;
  width: 2.3125rem;
  display: inline-block;
}

.p-your__sns img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.c-main-text {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #363636;
}
@media screen and (min-width: 768px) {
  .c-main-text {
    font-size: 1.125rem;
    line-height: 1.75;
  }
}

.c-main-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.c-main-title__ja {
  color: #363636;
  line-height: 1.2;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .c-main-title__ja {
    letter-spacing: 0.15em;
    font-size: 1.75rem;
  }
}

.c-main-title__ja--child {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .c-main-title__ja--child {
    font-size: 1.75rem;
  }
}

.c-main-title__ja--child span {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-main-title__ja--child span {
    font-size: 1.375rem;
    display: block;
  }
}

.c-main-title__ja--small {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .c-main-title__ja--small {
    font-size: 1.25rem;
    letter-spacing: 0.15em;
  }
}

.c-main-title__en {
  text-transform: uppercase;
  color: rgba(54, 54, 54, .5);
  letter-spacing: 0.1em;
  line-height: 1.2;
  margin-top: 4px;
  margin-top: 0.25rem;
  font-size: 13px;
  font-size: 0.8125rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .c-main-title__en {
    margin-top: 0.875rem;
    font-size: 1rem;
    letter-spacing: 0.2em;
  }
}
/*# sourceMappingURL=styles.css.map */
