@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

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

dialog {
  padding: 0;
}

figure {
  height: 100%;
  -webkit-margin-start: 0;
          margin-inline-start: 0;
  -webkit-margin-end: 0;
          margin-inline-end: 0;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
}

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}

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

html:has(dialog[open]) {
  overflow: hidden;
}

body {
  background-color: #e9f6f8;
  font-family: "Noto Sans JP", sans-serif;
  color: #4a3636;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  position: relative;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 14px;
  }
}

.c-drawer-icon {
  position: relative;
  width: 32px;
  height: 28px;
}
@media screen and (min-width: 768px) {
  .c-drawer-icon {
    display: none;
  }
}

.c-drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #4a3636;
  -webkit-transition: top 0.5s, -webkit-transform 0.5s;
  transition: top 0.5s, -webkit-transform 0.5s;
  transition: top 0.5s, transform 0.5s;
  transition: top 0.5s, transform 0.5s, -webkit-transform 0.5s;
  border-radius: 10px;
}
.c-drawer-icon__bar:nth-child(1) {
  width: 26px;
  top: 0;
}
.c-drawer-icon__bar:nth-child(1)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -6px;
  width: 5px;
  height: 3px;
  background-color: #4a3636;
}
.c-drawer-icon__bar:nth-child(2) {
  top: 12px;
}
.c-drawer-icon__bar:nth-child(3) {
  top: 24px;
}
.c-drawer-icon--open .c-drawer-icon__bar:nth-child(1) {
  top: 8px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 100%;
}
.c-drawer-icon--open .c-drawer-icon__bar:nth-child(1)::after {
  display: none;
}
.c-drawer-icon--open .c-drawer-icon__bar:nth-child(2) {
  display: none;
}
.c-drawer-icon--open .c-drawer-icon__bar:nth-child(3) {
  top: 8px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.c-button {
  border-radius: 40px;
  border: 2px solid #4a3636;
  background: #fff;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  margin-inline: auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (min-width: 768px) {
  .c-button {
    font-size: 20px;
  }
}
.c-button:hover {
  background: #ffee56;
}

.c-page-top-btn {
  position: absolute;
  right: calc(50% - 75px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 110px;
  z-index: 100;
}
.c-page-top-btn:hover {
  opacity: 0.8;
}
@media screen and (min-width: 768px) {
  .c-page-top-btn {
    display: block;
    position: fixed;
    right: -20px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 50px;
  }
}
.c-page-top-btn img {
  width: 75px;
  height: 78px;
}
@media screen and (min-width: 768px) {
  .c-page-top-btn img {
    width: 100px;
    height: 104px;
  }
}

.p-contact {
  background: #fff;
  padding-block: 40px 43px;
}
@media screen and (min-width: 768px) {
  .p-contact {
    padding-block: 120px;
  }
}

@media screen and (min-width: 768px) {
  .p-contact__inner.u-inner {
    max-width: 908px;
    padding-inline: 30px;
  }
}

.p-contact__description {
  margin-top: 30px;
  text-align: center;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .p-contact__description {
    margin-top: 30px;
    font-size: 16px;
  }
}

.p-contact__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .p-contact__fields {
    margin-top: 42px;
    gap: 24px;
  }
}

.c-form-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}
@media screen and (min-width: 900px) {
  .c-form-field {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 5px;
    min-height: 56px;
  }
}

@media screen and (min-width: 768px) {
  .c-form-field.c-form-field--message {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.c-form-field__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .c-form-field__head {
    gap: 10px;
    max-height: 27px;
  }
}

.c-form-field__label {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-form-field__label {
    font-size: 16px;
  }
}

.c-form-field__tag {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  background: #ce2073;
  padding: 4px 8px;
  margin-top: -3px;
}
@media screen and (min-width: 768px) {
  .c-form-field__tag {
    margin-top: -2px;
  }
}

@media screen and (min-width: 768px) {
  .c-form-field__item {
    width: 100%;
  }
}
@media screen and (min-width: 900px) {
  .c-form-field__item {
    max-width: 628px;
  }
}

.c-form-field__input-text {
  padding: 16px;
  border-radius: 8px;
  background: #f5f5f5;
  border: none;
  width: 100%;
  min-height: 56px;
}
@media screen and (min-width: 768px) {
  .c-form-field__input-text {
    padding: 16px 16px;
  }
}
.c-form-field__input-text:focus {
  outline: 1px solid #9ed0e0;
  background: #e9f6f8;
}
.c-form-field__input-text::-webkit-input-placeholder {
  color: #ccc;
  font-size: 14px;
}
.c-form-field__input-text::-moz-placeholder {
  color: #ccc;
  font-size: 14px;
}
.c-form-field__input-text:-ms-input-placeholder {
  color: #ccc;
  font-size: 14px;
}
.c-form-field__input-text::-ms-input-placeholder {
  color: #ccc;
  font-size: 14px;
}
.c-form-field__input-text::placeholder {
  color: #ccc;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .c-form-field__input-text::-webkit-input-placeholder {
    font-size: 16px;
  }
  .c-form-field__input-text::-moz-placeholder {
    font-size: 16px;
  }
  .c-form-field__input-text:-ms-input-placeholder {
    font-size: 16px;
  }
  .c-form-field__input-text::-ms-input-placeholder {
    font-size: 16px;
  }
  .c-form-field__input-text::placeholder {
    font-size: 16px;
  }
}

.c-form-field__select {
  position: relative;
  font-size: 14px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 16px;
  border-radius: 8px;
  border: none;
  width: 100%;
  max-height: 56px;
  background-image: url(../../img/contact/arrow.svg), linear-gradient(to left, #9ed0e0 52px, #f5f5f5 52px);
  background-repeat: no-repeat, no-repeat;
  background-position: center right 10px, center center;
  background-size: 32px 32px, cover;
  cursor: pointer;
}
.c-form-field__select.is-error {
  background-image: url(../../img/contact/arrow.svg), linear-gradient(to left, #ce2073 52px, #fff0f7 52px);
}
.c-form-field__select:focus {
  outline: 1px solid #9ed0e0;
}
@media screen and (min-width: 768px) {
  .c-form-field__select {
    font-size: 16px;
  }
}

.c-form-field__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}

.c-form-field__radio-input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.c-form-field__radio-input:checked + .c-form-field__radio-text::after {
  opacity: 1;
}
.c-form-field__radio-input:checked + .c-form-field__radio-text::before {
  border: 1px solid #9ed0e0;
}
.c-form-field__radio-input:hover + .c-form-field__radio-text::before {
  border: 1px solid #9ed0e0;
}

.c-form-field__radio-text {
  position: relative;
  font-size: 14px;
  padding-left: 32px;
}
@media screen and (min-width: 768px) {
  .c-form-field__radio-text {
    font-size: 16px;
  }
}
.c-form-field__radio-text::before, .c-form-field__radio-text::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}
.c-form-field__radio-text::before {
  width: 24px;
  height: 24px;
  background: #f5f5f5;
  left: 0;
}
.c-form-field__radio-text::after {
  width: 10px;
  height: 10px;
  background: #9ed0e0;
  left: 7px;
  opacity: 0;
}

.c-form-field__textarea {
  padding: 16px;
  font-size: 14px;
  border-radius: 8px;
  background: #f5f5f5;
  border: none;
  width: 100%;
  max-height: 160px;
}
@media screen and (min-width: 768px) {
  .c-form-field__textarea {
    font-size: 16px;
    width: 100%;
    max-height: 159px;
  }
}
.c-form-field__textarea:focus {
  outline: 1px solid #9ed0e0;
  background: #e9f6f8;
}
.c-form-field__textarea::-webkit-input-placeholder {
  color: #ccc;
}
.c-form-field__textarea::-moz-placeholder {
  color: #ccc;
}
.c-form-field__textarea:-ms-input-placeholder {
  color: #ccc;
}
.c-form-field__textarea::-ms-input-placeholder {
  color: #ccc;
}
.c-form-field__textarea::placeholder {
  color: #ccc;
}

.p-contact__privacy {
  margin-top: 22px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-contact__privacy {
    margin-top: 40px;
  }
}

.c-form-field__checkbox-input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.c-form-field__checkbox-input:checked + .c-form-field__checkbox-text::after {
  opacity: 1;
}

.c-form-field__checkbox-text {
  position: relative;
  padding-left: 36px;
  font-size: 14px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .c-form-field__checkbox-text {
    font-size: 16px;
  }
}
.c-form-field__checkbox-text::before, .c-form-field__checkbox-text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: #f5f5f5;
}
.c-form-field__checkbox-text::after {
  width: 14px;
  height: 9px;
  background: url(../../img/contact/privacy-icon.svg) no-repeat center center/contain;
  left: 5px;
  opacity: 0;
}

.c-form-field__checkbox.is-checkbox-error .c-form-field__checkbox-text::before {
  background: #ffe6e6; /* エラー時の背景色 */
  border: 1px solid #ff6666; /* エラー時のボーダー色 */
}

.p-contact__button {
  margin-inline: auto;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .p-contact__button {
    margin-top: 40px;
  }
}

.p-contact__button-submit {
  cursor: pointer;
  width: 100%;
  font-size: 16px;
  min-height: 40px;
  max-width: 208px;
}
@media screen and (min-width: 768px) {
  .p-contact__button-submit {
    max-width: 240px;
  }
}

.u-inner {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .u-inner {
    max-width: 1104px;
    padding-inline: 40px;
    margin-inline: auto;
  }
}

.u-main {
  overflow-x: hidden;
}

.u-section {
  padding-top: 120px;
}

.u-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}
@media screen and (min-width: 768px) {
  .u-heading {
    gap: 8px;
  }
}

.u-heading-icon img {
  width: 37px;
  height: 37px;
}
@media screen and (min-width: 768px) {
  .u-heading-icon img {
    width: 48px;
    height: 48px;
  }
}

.u-heading-en {
  font-family: Courgette;
  line-height: 125%;
}
@media screen and (min-width: 768px) {
  .u-heading-en {
    font-size: 20px;
  }
}

.u-heading-jp {
  position: relative;
  font-family: "Kiwi Maru";
  font-size: 20px;
  font-weight: 500;
  line-height: 125%;
}
@media screen and (min-width: 768px) {
  .u-heading-jp {
    font-size: 32px;
    padding-bottom: 8px;
  }
}
.u-heading-jp::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: #ffee56;
}
@media screen and (min-width: 768px) {
  .u-heading-jp::after {
    border-bottom: 8px solid #ffee56;
    height: 8px;
  }
}

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

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

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

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

.u-text-underline {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding-bottom: 0;
  -webkit-box-shadow: inset 0 -1px 0 #000;
          box-shadow: inset 0 -1px 0 #000;
}
.u-text-underline:hover {
  color: #67b0c7;
  -webkit-box-shadow: inset 0 -1px 0 #67b0c7;
          box-shadow: inset 0 -1px 0 #67b0c7;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.l-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background-color: #fff;
  z-index: 100;
}

.l-header__inner {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 20px;
  position: sticky;
  z-index: 100;
  top: 0;
}
@media screen and (min-width: 768px) {
  .l-header__inner {
    padding-inline: 25px 27px;
  }
}

.l-header__button.c-button {
  font-size: 14px;
  width: 132px;
  height: 36px;
}

.l-header__logo a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.l-header__logo a:hover {
  opacity: 0.8;
}
.l-header__logo a img {
  width: 210px;
}
@media screen and (min-width: 768px) {
  .l-header__logo a img {
    width: 183px;
  }
}

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

.l-header__nav-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  position: relative;
  z-index: 120;
}

.l-header__link:hover {
  color: #67b0c7;
  border-bottom: 1px solid #67b0c7;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (min-width: 768px) {
  .l-header__link {
    font-size: 10px;
  }
}
@media screen and (min-width: 900px) {
  .l-header__link {
    font-size: 12px;
  }
}

.l-header__sp-nav {
  position: fixed;
  top: 64px;
  right: 0;
  width: 100%;
  height: calc(100vh - 64px);
  background-color: #fff;
  display: none;
}

.l-header__sp-nav-lists {
  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;
  gap: 40px;
  padding-block: 82px;
  position: relative;
}

.l-header__sp-link {
  font-size: 14px;
}

.l-header__nav-item--button {
  margin-left: 4px;
}

.l-header__sp-button {
  width: 144px;
  height: 40px;
  font-size: 16px;
}

.l-footer {
  padding-top: 40px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-footer {
    padding-top: 120px;
  }
}

.l-footer__deco-onomichi picture {
  width: 100%;
}
.l-footer__deco-onomichi img {
  width: 333px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 135px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .l-footer__deco-onomichi img {
    width: 755px;
    top: 251px;
  }
}

.l-footer__deco-pawpads {
  position: absolute;
  display: none;
}
@media screen and (min-width: 1200px) {
  .l-footer__deco-pawpads {
    display: block;
    top: 80px;
    right: 84px;
  }
}
.l-footer__deco-pawpads img {
  width: 100px;
  height: 220px;
}

.l-footer__content {
  padding-bottom: 172px;
}
@media screen and (min-width: 768px) {
  .l-footer__content {
    padding-bottom: 240px;
  }
}

.l-footer__sns {
  text-align: center;
}

.l-footer__sns-title {
  position: relative;
  font-family: "Josefin Sans";
  font-size: 20px;
  line-height: 125%; /* 25px */
  letter-spacing: -0.5px;
}
@media screen and (min-width: 768px) {
  .l-footer__sns-title {
    font-size: 24px;
    margin-left: -4px;
  }
}
.l-footer__sns-title::before {
  content: "\\";
  position: absolute;
  left: -16px;
}
.l-footer__sns-title::after {
  content: "/";
  position: absolute;
  right: -15px;
}
@media screen and (min-width: 768px) {
  .l-footer__sns-title::after {
    right: -16px;
  }
}

.l-footer__sns-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  margin-top: 24px;
}

.l-footer__sns-item img {
  width: 32px;
  height: 32px;
}
@media screen and (min-width: 768px) {
  .l-footer__sns-item img {
    width: 40px;
    height: 40px;
  }
}

.l-footer__sns-link {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.l-footer__sns-link:hover {
  opacity: 0.8;
}

.l-footer__address {
  margin-top: 48px;
  max-width: 335px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-footer__address {
    margin-top: 120px;
    max-width: 100%;
  }
}

.l-footer__address-content {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
}
.l-footer__address-content iframe {
  width: 100%;
  height: 271px;
}
@media screen and (min-width: 768px) {
  .l-footer__address-content iframe {
    height: 100%;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__address-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.l-footer__address-head {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-footer__address-head {
    width: 50%;
  }
}

.l-footer__address-body {
  padding-block: 16px 30px;
  padding-inline: 28px;
}
@media screen and (min-width: 768px) {
  .l-footer__address-body {
    padding: 58px 30px;
  }
}
@media screen and (min-width: 1200px) {
  .l-footer__address-body {
    padding: 107px 63px 106px 61px;
  }
}

.l-footer__address-logo img {
  display: block;
  margin-inline: auto;
  width: 153px;
}
@media screen and (min-width: 768px) {
  .l-footer__address-logo img {
    width: 183px;
    -webkit-margin-start: 0;
            margin-inline-start: 0;
  }
}

.l-footer__address-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 287px;
  margin-inline: auto;
  gap: 8px;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .l-footer__address-items {
    gap: 12px;
    max-width: 100%;
    margin-top: 24px;
  }
}

.l-footer__address-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .l-footer__address-item {
    gap: 40px;
  }
}

.l-footer__address-title {
  min-width: 64px;
  font-size: 12px;
  font-weight: 700;
  padding-left: 16px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .l-footer__address-title {
    font-size: 16px;
    min-width: 80px;
  }
}
.l-footer__address-title::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #9ed0e0;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.l-footer__address-description {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .l-footer__address-description {
    font-size: 16px;
  }
}

.l-footer__page-top {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 200px;
}

.l-footer__copyright {
  line-height: 8px;
  padding-bottom: 29px;
  text-align: center;
  background-color: #67b0c7;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-footer__copyright {
    padding-block: 8px 46px;
  }
}
.l-footer__copyright::before {
  content: "";
  background: url(../img/footer/sp/before-wave-sp.png) no-repeat center top/cover;
  width: 100%;
  height: calc(100% + 7px);
  display: block;
  position: absolute;
  left: 0;
  top: -45.7px;
}
@media screen and (min-width: 768px) {
  .l-footer__copyright::before {
    background: url(../img/footer/before-wave.png) no-repeat center top/cover;
    width: 100%;
    height: 120px;
    top: -119px;
  }
}
.l-footer__copyright small {
  color: #fff;
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .l-footer__copyright small {
    font-size: 14px;
    margin-left: -2px;
  }
}

.p-fv {
  background: url(../img/fv/fv-sp.png) no-repeat center center/cover;
  height: 554px;
  background-color: #000;
  border-radius: 0px 0px 24px 24px;
}
@media screen and (min-width: 900px) {
  .p-fv {
    background: url(../img/fv/fv-pc.png) no-repeat center center/cover;
    height: 740px;
    border-radius: 0px 0px 40px 40px;
  }
}

.p-fv__inner {
  max-width: 848px;
  position: relative;
  height: 100%;
}

.p-fv__content {
  text-align: center;
  padding-top: 17px;
}
@media screen and (min-width: 900px) {
  .p-fv__content {
    padding-top: 35px;
  }
}

.p-fv-catch {
  text-shadow: 0px 0px 30px #fff;
  font-family: "Kiwi Maru";
  font-size: 14px;
  line-height: 125%;
}
@media screen and (min-width: 900px) {
  .p-fv-catch {
    font-size: 24px;
    font-weight: 500;
  }
}

.p-fv__title {
  margin-top: 20px;
}
@media screen and (min-width: 900px) {
  .p-fv__title {
    margin-top: 24px;
  }
}
.p-fv__title img {
  height: 105px;
}
@media screen and (min-width: 900px) {
  .p-fv__title img {
    height: 158px;
  }
}

.p-fv-decoretion {
  position: absolute;
}

.p-fv-decoretion-food {
  left: calc(50% - 166px);
  bottom: -156px;
  z-index: 2;
}
@media screen and (max-width: 350px) {
  .p-fv-decoretion-food {
    left: calc(50% - 144px);
    bottom: -125px;
  }
}
@media screen and (min-width: 900px) {
  .p-fv-decoretion-food {
    left: 2px;
    bottom: -96px;
  }
}
.p-fv-decoretion-food img {
  width: 86px;
  height: 141px;
}
@media screen and (max-width: 350px) {
  .p-fv-decoretion-food img {
    width: 70px;
    height: 110px;
  }
}
@media screen and (min-width: 900px) {
  .p-fv-decoretion-food img {
    width: 202px;
    height: 332px;
  }
}

.p-fv-decoretion-sp {
  top: 291px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .p-fv-decoretion-sp {
    top: 310px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.p-fv-decoretion-sp img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 200px;
  height: 408px;
  min-width: 200px;
}
@media screen and (min-width: 900px) {
  .p-fv-decoretion-sp img {
    width: 250px;
    height: 510px;
  }
}

.p-fv-sp-hukidashi {
  overflow: hidden;
  border-radius: 13px;
  width: 160px;
  position: absolute;
  top: 123px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .p-fv-sp-hukidashi {
    width: 200px;
    top: 152px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.p-fv-sp-hukidashi__title {
  background: linear-gradient(265deg, #ac3790 -3.52%, #d65a5c 44.94%, #f4c06d 92.38%);
  padding-block: 6px;
  font-size: 12.8px;
  font-weight: 700;
  color: #fff;
}
@media screen and (min-width: 900px) {
  .p-fv-sp-hukidashi__title {
    font-size: 16px;
    padding-block: 8px;
  }
}

.p-fv-sp-hukidashi__content {
  padding-block: 8px 19px;
  background: #fff;
}
@media screen and (min-width: 900px) {
  .p-fv-sp-hukidashi__content {
    padding-block: 17px 24px;
  }
}

.p-fv-sp-hukidashi__content-text {
  font-size: 12px;
  border-bottom: 2.4px solid #ce2073;
  display: inline-block;
}
@media screen and (min-width: 900px) {
  .p-fv-sp-hukidashi__content-text {
    font-size: 14px;
  }
}

.p-fv-sp-hukidashi__content-period {
  margin-top: 3px;
  font-size: 12px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .p-fv-sp-hukidashi__content-period {
    margin-top: 4px;
    font-size: 16px;
  }
}

.p-fv-sp-hukidashi__button {
  margin-top: 13px;
  width: 132px;
  height: 32px;
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .p-fv-sp-hukidashi__button {
    width: 144px;
    height: 40px;
    margin-top: 16px;
    font-size: 16px;
  }
}

.p-fv-decoretion-cat-1 {
  right: calc(50% - 168px);
  bottom: -98px;
  z-index: 2;
}
@media screen and (max-width: 350px) {
  .p-fv-decoretion-cat-1 {
    right: calc(50% - 144px);
    bottom: -79px;
  }
}
@media screen and (min-width: 900px) {
  .p-fv-decoretion-cat-1 {
    right: 65px;
    bottom: -36px;
  }
}
.p-fv-decoretion-cat-1 img {
  width: 62px;
  height: 69px;
}
@media screen and (min-width: 900px) {
  .p-fv-decoretion-cat-1 img {
    width: 170px;
    height: 190px;
  }
}

.p-fv-decoretion-cat-2 {
  right: calc(50% - 159px);
  bottom: -156px;
  z-index: 3;
}
@media screen and (max-width: 350px) {
  .p-fv-decoretion-cat-2 {
    right: calc(50% - 144px);
    bottom: -125px;
  }
}
@media screen and (min-width: 900px) {
  .p-fv-decoretion-cat-2 {
    right: 0;
    bottom: -141px;
  }
}
.p-fv-decoretion-cat-2 img {
  width: 98px;
  height: 72px;
}
@media screen and (min-width: 900px) {
  .p-fv-decoretion-cat-2 img {
    width: 233px;
    height: 174px;
  }
}

.p-fv-decoretion-fukidashi {
  top: 193px;
  left: calc(50% - 167px);
}
@media screen and (max-width: 350px) {
  .p-fv-decoretion-fukidashi {
    left: calc(50% - 137px);
  }
}
@media screen and (min-width: 900px) {
  .p-fv-decoretion-fukidashi {
    top: 277px;
    left: calc(50% - 389px);
  }
}
.p-fv-decoretion-fukidashi img {
  width: 142px;
  height: 80px;
}
@media screen and (min-width: 900px) {
  .p-fv-decoretion-fukidashi img {
    width: 244px;
    height: 130px;
  }
}

.p-fv-decoretion-present {
  top: 188px;
  right: calc(50% - 142px);
  left: auto;
}
@media screen and (min-width: 900px) {
  .p-fv-decoretion-present {
    top: 294px;
    right: 129px;
  }
}
.p-fv-decoretion-present img {
  width: 110px;
  height: 110px;
}
@media screen and (min-width: 900px) {
  .p-fv-decoretion-present img {
    width: 180px;
    height: 180px;
  }
}

.p-about {
  margin-top: 156px;
  padding-block: 32px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-about {
    padding-block: 80px 69px;
    margin-top: 97px;
  }
}

.p-about__back-decoretion {
  position: absolute;
}

.p-about__back-decoretion-pawpads {
  top: 22px;
  right: 0;
}
@media screen and (min-width: 768px) {
  .p-about__back-decoretion-pawpads {
    top: 0;
    right: 166px;
  }
}
.p-about__back-decoretion-pawpads img {
  width: 54px;
  height: 120px;
}
@media screen and (min-width: 768px) {
  .p-about__back-decoretion-pawpads img {
    width: 100px;
    height: 220px;
  }
}

.p-about__back-decoretion-sakamichi {
  left: -55px;
  bottom: -66px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-about__back-decoretion-sakamichi {
    top: 399px;
    bottom: unset;
    left: -102px;
  }
}
.p-about__back-decoretion-sakamichi img {
  width: 216px;
  height: 433px;
}
@media screen and (min-width: 768px) {
  .p-about__back-decoretion-sakamichi img {
    width: 427px;
    height: 817px;
  }
}

.p-about__onomichi {
  width: 355px;
  height: 37px;
  margin-inline: auto;
  margin-top: 140px;
}
@media screen and (min-width: 768px) {
  .p-about__onomichi {
    margin-top: 167px;
    width: 891px;
    padding-right: 5px;
  }
}
.p-about__onomichi img {
  width: 100%;
  height: 37px;
}
@media screen and (min-width: 768px) {
  .p-about__onomichi img {
    height: 97px;
  }
}

.p-about__back-decoretion-photo-l {
  top: 426px;
  left: -139px;
}
@media screen and (min-width: 768px) {
  .p-about__back-decoretion-photo-l {
    top: 153px;
    left: -337px;
  }
}
.p-about__back-decoretion-photo-l img {
  width: 200px;
  height: 200px;
}
@media screen and (min-width: 768px) {
  .p-about__back-decoretion-photo-l img {
    width: 480px;
    height: 480px;
  }
}

.p-about__back-decoretion-photo-r {
  top: 303px;
  right: -150px;
}
@media screen and (min-width: 768px) {
  .p-about__back-decoretion-photo-r {
    top: 153px;
    right: -280px;
  }
}
.p-about__back-decoretion-photo-r img {
  width: 200px;
  height: 200px;
}
@media screen and (min-width: 768px) {
  .p-about__back-decoretion-photo-r img {
    width: 480px;
    height: 480px;
  }
}

.p-about__back-decoretion-goods1 {
  right: 21px;
  bottom: 149px;
}
@media screen and (min-width: 768px) {
  .p-about__back-decoretion-goods1 {
    right: 152px;
    bottom: 401px;
  }
}
.p-about__back-decoretion-goods1 img {
  width: 48px;
  height: 48px;
}
@media screen and (min-width: 768px) {
  .p-about__back-decoretion-goods1 img {
    width: 101px;
    height: 100px;
  }
}

.p-about__back-decoretion-goods2 {
  right: 57px;
  bottom: 90px;
}
@media screen and (min-width: 768px) {
  .p-about__back-decoretion-goods2 {
    right: 76px;
    bottom: 194px;
  }
}
.p-about__back-decoretion-goods2 img {
  width: 133px;
  height: 65px;
}
@media screen and (min-width: 768px) {
  .p-about__back-decoretion-goods2 img {
    width: 308px;
    height: 151px;
  }
}

.p-about__back-decoretion-wavyline01 {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-about__back-decoretion-wavyline01 {
    display: block;
    bottom: 479px;
    right: -561px;
    z-index: -1;
  }
}

.p-about__back-decoretion-wavyline02 {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-about__back-decoretion-wavyline02 {
    display: block;
    bottom: 447px;
    right: -493px;
    z-index: -1;
  }
}

.p-about__back-decoretion-line {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-about__back-decoretion-line {
    display: block;
    top: 58px;
    left: -22px;
    z-index: -1;
  }
  .p-about__back-decoretion-line img {
    width: 250px;
    height: 250px;
  }
}

@media screen and (min-width: 768px) {
  .p-about__inner {
    max-width: 928px;
  }
}

.p-about__content {
  margin-inline: auto;
  background-color: #fff;
  text-align: center;
  padding-block: 40px;
  border-radius: 24px;
  position: relative;
  max-width: 335px;
}
@media screen and (min-width: 768px) {
  .p-about__content {
    max-width: 848px;
    gap: 32px;
  }
}

@media screen and (min-width: 768px) {
  .p-about__heading {
    padding-bottom: 6px;
  }
}

.p-about__message {
  margin-top: 23px;
}
@media screen and (min-width: 768px) {
  .p-about__message {
    margin-top: 32px;
  }
}

.p-about__text {
  font-size: 14px;
  font-weight: 700;
  margin-top: 36px;
}
@media screen and (min-width: 768px) {
  .p-about__text {
    font-size: 16px;
    margin-top: 34px;
  }
}

.p-about__description {
  font-size: 12px;
}
.p-about__description:nth-child(n+2) {
  margin-top: 18px;
}
@media screen and (min-width: 768px) {
  .p-about__description:nth-child(n+2) {
    margin-top: 27px;
  }
}
@media screen and (min-width: 768px) {
  .p-about__description {
    font-size: 16px;
  }
}

.p-about__description--hash {
  font-weight: 700;
}

.p-about__present {
  font-size: 14px;
  font-weight: 700;
  border-bottom: 2px dashed #9ed0e0;
  display: inline-block;
  margin-top: 32px;
  padding-bottom: 7px;
}
@media screen and (min-width: 768px) {
  .p-about__present {
    font-size: 20px;
    margin-top: 45px;
  }
}

.p-about__button {
  width: 192px;
  height: 40px;
  margin-top: 24px;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .p-about__button {
    width: 260px;
    height: 56px;
    font-size: 20px;
    margin-top: 33px;
  }
}

.p-about__decoretion {
  position: absolute;
}

.p-about__decoretion-pic-1 {
  top: 32px;
  left: 33px;
}
@media screen and (min-width: 600px) {
  .p-about__decoretion-pic-1 {
    left: calc(50% - 134px);
  }
}
@media screen and (min-width: 768px) {
  .p-about__decoretion-pic-1 {
    top: 42px;
    left: 80px;
  }
}
.p-about__decoretion-pic-1 img {
  width: 90px;
  height: 70px;
}
@media screen and (max-width: 350px) {
  .p-about__decoretion-pic-1 img {
    width: 70px;
    height: 50px;
  }
}
@media screen and (min-width: 768px) {
  .p-about__decoretion-pic-1 img {
    width: 120px;
    height: 90px;
  }
}
@media screen and (min-width: 900px) {
  .p-about__decoretion-pic-1 img {
    width: 149px;
    height: 115px;
  }
}

.p-about__decoretion-pic-2 {
  top: 30px;
  right: 20px;
}
@media screen and (min-width: 768px) {
  .p-about__decoretion-pic-2 {
    top: 46px;
    right: 82px;
  }
}
.p-about__decoretion-pic-2 img {
  width: 90px;
  height: 70px;
}
@media screen and (max-width: 350px) {
  .p-about__decoretion-pic-2 img {
    width: 70px;
    height: 50px;
  }
}
@media screen and (min-width: 768px) {
  .p-about__decoretion-pic-2 img {
    width: 120px;
    height: 90px;
  }
}
@media screen and (min-width: 900px) {
  .p-about__decoretion-pic-2 img {
    width: 149px;
    height: 115px;
  }
}

.p-about__decoretion-arrow {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -36px;
}
@media screen and (min-width: 768px) {
  .p-about__decoretion-arrow {
    bottom: -50px;
  }
}
.p-about__decoretion-arrow img {
  width: 100px;
  height: 36px;
}
@media screen and (min-width: 768px) {
  .p-about__decoretion-arrow img {
    width: 140px;
    height: 50px;
  }
}

.swiper {
  bottom: 34px;
}
@media screen and (min-width: 768px) {
  .swiper {
    bottom: 13px;
  }
}

.swiper .swiper-wrapper,
.swiper2 .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.p-how-to-enter {
  padding-block: 32px 40px;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-how-to-enter {
    padding-top: 105px;
  }
}

@media screen and (min-width: 900px) {
  .p-how-to-enter__inner {
    padding-inline: 20px;
  }
}

.p-how-to-enter__content {
  position: relative;
}

.p-how-to-enter__steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 44px;
  -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: 900px) {
  .p-how-to-enter__steps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 11px;
  }
}
@media screen and (min-width: 1200px) {
  .p-how-to-enter__steps {
    gap: 32px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 41px;
  }
}

.p-how-to-enter-step {
  padding-bottom: 16px;
}
.p-how-to-enter-step:not(:first-child) {
  margin-top: 32px;
}
@media screen and (min-width: 900px) {
  .p-how-to-enter-step:not(:first-child) {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-how-to-enter-step {
    margin-inline: 0;
    gap: 19px;
  }
}
@media screen and (min-width: 900px) {
  .p-how-to-enter-step {
    width: 27.34375%;
    min-width: 294px;
  }
}
@media screen and (min-width: 1200px) {
  .p-how-to-enter-step {
    min-width: 320px;
  }
}
@media screen and (min-width: 900px) {
  .p-how-to-enter-step:nth-child(2) {
    margin-top: 76px;
  }
  .p-how-to-enter-step:nth-child(3) {
    margin-top: -62px;
  }
}

.p-how-to-enter-step__img {
  max-width: 196px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-how-to-enter-step__img {
    padding-inline: 20px;
    max-width: 320px;
  }
}
.p-how-to-enter-step__img img {
  width: 100%;
  height: auto;
}

.p-how-to-enter-step__description-title {
  font-weight: 700;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .p-how-to-enter-step__description-title {
    margin-top: 24px;
    font-size: 20px;
  }
}

.p-how-to-enter-step__description-text {
  font-size: 12px;
  margin-top: 16px;
}
@media screen and (max-width: 350px) {
  .p-how-to-enter-step__description-text {
    font-size: 10px;
  }
}
@media screen and (min-width: 768px) {
  .p-how-to-enter-step__description-text {
    font-size: 14px;
  }
  .p-how-to-enter-step__description-text--mt {
    margin-top: 2px;
  }
}
@media screen and (min-width: 900px) {
  .p-how-to-enter-step__description-text {
    font-size: 13px;
  }
}
@media screen and (min-width: 1200px) {
  .p-how-to-enter-step__description-text {
    font-size: 16px;
    margin-top: 18px;
  }
}

.p-how-to-enter-step__description-text--hash {
  font-weight: 700;
}

.p-how-to-enter-step__follow {
  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;
  gap: 8px;
  width: 226px;
  position: relative;
  background-color: #fff;
  padding-block: 8px;
  margin-inline: auto;
  margin-top: 15px;
}
.p-how-to-enter-step__follow:hover {
  opacity: 0.8;
}
.p-how-to-enter-step__follow::before {
  background: url(../img/how-to-enter/insta-icon.svg) no-repeat center;
  background-size: contain;
  content: "";
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 768px) {
  .p-how-to-enter-step__follow::before {
    width: 24px;
    height: 24px;
  }
}
@media screen and (min-width: 768px) {
  .p-how-to-enter-step__follow {
    padding: 8px 12px;
    width: 254px;
    margin-top: 17px;
  }
}

.p-how-to-enter-step__follow-link {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-how-to-enter-step__follow-link {
    font-size: 16px;
  }
}

.p-how-to-enter__button {
  font-size: 16px;
  max-width: 334px;
  padding-block: 4px 5px;
}
@media screen and (max-width: 350px) {
  .p-how-to-enter__button {
    font-size: 13px;
  }
}
@media screen and (min-width: 768px) {
  .p-how-to-enter__button {
    max-width: 437px;
    font-size: 20px;
    margin-top: 34px;
    padding-block: 8px 10px;
  }
}

.p-how-to-enter__decoretion {
  position: absolute;
  z-index: -1;
}

.p-how-to-enter-deco__bg-pawpads-1 {
  top: 105px;
  right: calc(50% - 168px);
}
@media screen and (min-width: 768px) {
  .p-how-to-enter-deco__bg-pawpads-1 {
    top: 252px;
    right: 40px;
  }
}
.p-how-to-enter-deco__bg-pawpads-1 img {
  width: 55px;
  height: 120px;
}
@media screen and (min-width: 768px) {
  .p-how-to-enter-deco__bg-pawpads-1 img {
    width: 100px;
    height: 220px;
  }
}

.p-how-to-enter-deco__bg-pawpads-2 {
  bottom: 401px;
  right: calc(50% - 168px);
  rotate: 180deg;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
@media screen and (min-width: 768px) {
  .p-how-to-enter-deco__bg-pawpads-2 {
    display: none;
  }
}
.p-how-to-enter-deco__bg-pawpads-2 img {
  width: 55px;
  height: 120px;
}
@media screen and (min-width: 768px) {
  .p-how-to-enter-deco__bg-pawpads-2 img {
    width: 100px;
    height: 220px;
  }
}

.p-how-to-enter-deco__bg-pawpads-3 {
  top: 581px;
  left: calc(50% - 168px);
  rotate: 180deg;
}
@media screen and (min-width: 768px) {
  .p-how-to-enter-deco__bg-pawpads-3 {
    top: 685px;
    left: 36px;
  }
}
.p-how-to-enter-deco__bg-pawpads-3 img {
  width: 55px;
  height: 120px;
}
@media screen and (min-width: 768px) {
  .p-how-to-enter-deco__bg-pawpads-3 img {
    width: 100px;
    height: 220px;
  }
}

.p-how-to-enter-deco__map {
  top: 33px;
  left: calc(50% - 187px);
}
@media screen and (min-width: 768px) {
  .p-how-to-enter-deco__map {
    top: 45px;
    left: 38px;
  }
}
.p-how-to-enter-deco__map img {
  width: 149px;
  height: 223px;
}
@media screen and (min-width: 768px) {
  .p-how-to-enter-deco__map img {
    width: 238px;
    height: 350px;
  }
}
@media screen and (min-width: 1200px) {
  .p-how-to-enter-deco__map img {
    width: 460px;
    height: 689px;
  }
}

.p-how-to-enter-deco__cat-1 {
  top: 32px;
  right: calc(50% - 163px);
}
@media screen and (min-width: 768px) {
  .p-how-to-enter-deco__cat-1 {
    top: 80px;
    right: calc(50% - 312px);
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}
@media screen and (min-width: 900px) {
  .p-how-to-enter-deco__cat-1 {
    right: calc(50% - 404px);
  }
}
.p-how-to-enter-deco__cat-1 img {
  width: 105px;
  height: 63px;
}
@media screen and (min-width: 768px) {
  .p-how-to-enter-deco__cat-1 img {
    width: 238px;
    height: 141px;
  }
}

.p-how-to-enter-deco__cat-2 {
  top: 37px;
  right: calc(50% - 218px);
}
@media screen and (min-width: 768px) {
  .p-how-to-enter-deco__cat-2 {
    top: 90px;
    right: calc(50% - 442px);
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}
@media screen and (min-width: 900px) {
  .p-how-to-enter-deco__cat-2 {
    right: calc(50% - 543px);
  }
}
.p-how-to-enter-deco__cat-2 img {
  width: 94px;
  height: 80px;
}
@media screen and (min-width: 768px) {
  .p-how-to-enter-deco__cat-2 img {
    width: 214px;
    height: 181px;
  }
}

.p-how-to-enter__content-decoretion {
  position: absolute;
  z-index: -1;
}

.p-how-to-enter-content-deco__step-line-1 {
  top: 534px;
  left: calc(50% + 18px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-left: -18px;
  z-index: 1;
}
@media screen and (max-width: 350px) {
  .p-how-to-enter-content-deco__step-line-1 {
    top: 524px;
  }
}
@media screen and (min-width: 768px) {
  .p-how-to-enter-content-deco__step-line-1 {
    top: 700px;
    right: calc(50% - 3px);
    left: auto;
    margin-left: 0;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}
@media screen and (min-width: 900px) {
  .p-how-to-enter-content-deco__step-line-1 {
    rotate: none;
    top: 360px;
    right: calc(50% + 174px);
  }
}
@media screen and (min-width: 1200px) {
  .p-how-to-enter-content-deco__step-line-1 {
    top: 389px;
    right: calc(50% + 202px);
  }
}
.p-how-to-enter-content-deco__step-line-1 img {
  width: 7px;
  height: 34px;
}
@media screen and (min-width: 768px) {
  .p-how-to-enter-content-deco__step-line-1 img {
    width: 12px;
    height: 47px;
  }
}
@media screen and (min-width: 900px) {
  .p-how-to-enter-content-deco__step-line-1 img {
    width: 113px;
    height: 24px;
  }
}

.p-how-to-enter-content-deco__step-line-2 {
  display: inline-block;
  bottom: 419px;
  left: calc(50% + 18px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-left: -18px;
  z-index: 1;
  width: 40px;
  height: 14px;
}
@media screen and (max-width: 350px) {
  .p-how-to-enter-content-deco__step-line-2 {
    bottom: 403px;
  }
}
@media screen and (min-width: 768px) {
  .p-how-to-enter-content-deco__step-line-2 {
    right: calc(50% - 6px);
    bottom: 580px;
    width: 113px;
    height: 24px;
    left: auto;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    margin-left: 0;
  }
}
@media screen and (min-width: 900px) {
  .p-how-to-enter-content-deco__step-line-2 {
    top: 350px;
    right: calc(50% - 149px);
    rotate: none;
  }
}
@media screen and (min-width: 1200px) {
  .p-how-to-enter-content-deco__step-line-2 {
    top: 389px;
    right: calc(50% - 160px);
  }
}
.p-how-to-enter-content-deco__step-line-2 img {
  width: 7px;
  height: 34px;
}
@media screen and (min-width: 768px) {
  .p-how-to-enter-content-deco__step-line-2 img {
    width: 12px;
    height: 47px;
  }
}
@media screen and (min-width: 900px) {
  .p-how-to-enter-content-deco__step-line-2 img {
    width: 113px;
    height: 24px;
  }
}

@media screen and (min-width: 768px) {
  .p-prizes {
    padding-top: 87px;
  }
}

.p-prizes__inner {
  padding-inline: 0;
  position: relative;
}

.p-prizes__content {
  max-width: 375px;
  margin-inline: auto;
  padding-inline: 20px;
  padding-bottom: 34px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-prizes__content {
    padding-bottom: 53px;
    max-width: 1024px;
  }
}
.p-prizes__content::before {
  z-index: -1;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 238px;
  height: 83px;
  background: url(../../img/prizes/top-deco-prizes-sp.png) no-repeat center/cover;
}
@media screen and (min-width: 768px) {
  .p-prizes__content::before {
    width: 366px;
    height: 149px;
    background: url(../../img/prizes/top-deco-prizes-pc.png) no-repeat center/cover;
  }
}
.p-prizes__content::after {
  z-index: -1;
  content: "";
  position: absolute;
  top: 83px;
  left: 0;
  width: 100%;
  height: calc(100% - 83px);
  background-color: #fff;
  border-radius: 24px;
}
@media screen and (min-width: 768px) {
  .p-prizes__content::after {
    top: 148px;
    height: calc(100% - 148px);
  }
}

.p-prize__deco-tryangle-left {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-prize__deco-tryangle-left {
    position: absolute;
    top: 25px;
    left: 0;
    display: inline-block;
    width: 250px;
  }
}
@media screen and (min-width: 900px) {
  .p-prize__deco-tryangle-left {
    width: 280px;
    left: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .p-prize__deco-tryangle-left {
    width: 315px;
    left: 0;
  }
}

.p-prize__deco-tryangle-right {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-prize__deco-tryangle-right {
    position: absolute;
    right: 0;
    top: 25px;
    display: inline-block;
    width: 250px;
  }
}
@media screen and (min-width: 900px) {
  .p-prize__deco-tryangle-right {
    width: 280px;
    right: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .p-prize__deco-tryangle-right {
    width: 315px;
    right: 0;
  }
}

.p-prizes__heading {
  padding-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-prizes__heading {
    padding-top: 27px;
  }
}

.p-prizes__description {
  margin-top: 28px;
  font-size: 12px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-prizes__description {
    font-size: 16px;
    margin-top: 48px;
  }
}

.p-prizes__cards {
  margin-inline: auto;
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 39px 15px;
}
@media screen and (min-width: 768px) {
  .p-prizes__cards {
    gap: 81px 36px;
    grid-template-rows: repeat(2, auto);
    grid-template-columns: repeat(6, 1fr);
    margin-top: 82px;
    max-width: 912px;
  }
}

.p-prizes-card {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-prizes-card:hover .p-prizes-card__image img {
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    -webkit-transform-origin: center;
            transform-origin: center;
  }
}
@media screen and (min-width: 768px) {
  .p-prizes-card:nth-child(1) {
    grid-area: 1/1/2/4;
  }
}
@media screen and (min-width: 768px) {
  .p-prizes-card:nth-child(2) {
    grid-area: 1/4/2/7;
  }
}
@media screen and (min-width: 768px) {
  .p-prizes-card:nth-child(3) {
    grid-area: 2/1/3/3;
  }
}
@media screen and (min-width: 768px) {
  .p-prizes-card:nth-child(4) {
    grid-area: 2/3/3/5;
  }
}
.p-prizes-card:nth-child(5) {
  max-width: 160px;
  grid-column: 1/-1;
  justify-self: center;
}
@media screen and (min-width: 768px) {
  .p-prizes-card:nth-child(5) {
    grid-column: auto;
    max-width: none;
    grid-area: 2/5/3/7;
  }
}

.p-prizes-card__number {
  z-index: 1;
  position: absolute;
  width: 48px;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .p-prizes-card__number {
    width: 80px;
    top: -40px;
  }
  .p-prizes-card__number--large {
    top: -50px;
    width: 100px;
  }
}

.p-prizes-card__inner {
  position: relative;
  overflow: hidden;
  height: 100%;
  border-radius: 8px;
  -webkit-transition: -webkit-box-shadow 0.5s;
  transition: -webkit-box-shadow 0.5s;
  transition: box-shadow 0.5s;
  transition: box-shadow 0.5s, -webkit-box-shadow 0.5s;
}
@media screen and (min-width: 768px) {
  .p-prizes-card__inner {
    border-radius: 24px;
  }
  .p-prizes-card__inner:hover {
    -webkit-box-shadow: 0 0 0 4px #9ed0e0;
            box-shadow: 0 0 0 4px #9ed0e0;
  }
}

.p-prizes-card__figure {
  height: 100%; /* 親要素の高さを指定 */
}

.p-prizes-card__image {
  overflow: hidden;
  display: block;
}
.p-prizes-card__image img {
  width: 100%;
  height: 100%;
  min-height: 140px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.p-prizes-card__heading {
  font-size: 12px;
  font-weight: 700;
  display: grid;
  height: 100%;
  place-items: center;
  text-align: center;
  background: #f5f5f5;
  min-height: 56px;
}
@media screen and (max-width: 350px) {
  .p-prizes-card__heading {
    font-size: 10px;
  }
}
@media screen and (min-width: 768px) {
  .p-prizes-card__heading {
    min-height: 80px;
    font-size: 16px;
  }
  .p-prizes-card__heading--large {
    min-height: 120px;
    font-size: 20px;
    padding-right: 3px;
  }
}

.p-prizes-card__button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: background 0.5s;
  transition: background 0.5s;
}
@media screen and (min-width: 768px) {
  .p-prizes-card__button:hover .p-prizes-card__icon .background {
    fill: #9ed0e0; /* ホバー時の色を指定 */
  }
}

.p-prizes-card__icon {
  position: absolute;
  width: 36px;
  height: 36px;
  bottom: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .p-prizes-card__icon {
    width: 64px;
    height: 64px;
  }
}
@media screen and (min-width: 768px) {
  .p-prizes-card__icon--large {
    width: 100px;
    height: 100px;
  }
}
.p-prizes-card__icon svg {
  width: 100%;
  height: 100%;
}

.p-prizes__button {
  font-size: 16px;
  padding-block: 4px 6px;
  margin-top: 17px;
}
@media screen and (max-width: 350px) {
  .p-prizes__button {
    font-size: 13px;
  }
}
@media screen and (min-width: 768px) {
  .p-prizes__button {
    margin-top: 41px;
    padding-block: 10px;
    padding-inline: 38px;
    max-width: 437px;
    font-size: 20px;
  }
}

.p-prizes-modal {
  overflow: hidden;
  border-radius: 24px;
  border: none;
  max-width: 336px;
  overscroll-behavior-y: none;
}
@media screen and (min-width: 768px) {
  .p-prizes-modal {
    max-width: 480px;
    height: 650px;
  }
}
.p-prizes-modal::-ms-backdrop {
  opacity: 0.8;
  background: #000;
}
.p-prizes-modal::backdrop {
  opacity: 0.8;
  background: #000;
}

.p-prizes-modal__body {
  text-align: center;
  background-color: #fff;
  padding-bottom: 23px;
  min-width: 336px;
  min-height: 480px;
}
@media screen and (min-width: 768px) {
  .p-prizes-modal__body {
    min-width: 480px;
    padding-bottom: 101px;
  }
}

.p-prizes-modal__figure img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 40%;
     object-position: 50% 40%;
  aspect-ratio: 8/5;
}
@media screen and (min-width: 768px) {
  .p-prizes-modal__figure img {
    height: 300px;
  }
}

.p-prizes-modal__caption {
  padding-inline: 20px;
  padding-top: 39px;
}
@media screen and (min-width: 768px) {
  .p-prizes-modal__caption {
    padding-inline: 33px;
    padding-top: 32px;
  }
}

.p-prizes-modal__heading {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-prizes-modal__heading {
    font-size: 20px;
  }
}

.p-prizes-modal__description {
  margin-top: 12px;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .p-prizes-modal__description {
    font-size: 16px;
  }
}

.p-prizes-modal__button-close {
  margin-top: 16px;
  padding-block: 6px 8px;
  padding-inline: 24px;
  margin-bottom: 4px;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .p-prizes-modal__button-close {
    margin-top: 24px;
  }
}

.p-prizes__bottom-img {
  position: relative;
  margin-top: -43px;
  text-align: center;
  z-index: -2;
}
@media screen and (min-width: 768px) {
  .p-prizes__bottom-img {
    margin-top: 0;
  }
}
.p-prizes__bottom-img img {
  width: 100%;
  min-height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-prizes__bottom-img img {
    max-height: 640px;
  }
}

.p-spots {
  position: relative;
  background: #67b0c7;
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 86px;
}
@media screen and (min-width: 768px) {
  .p-spots {
    margin-bottom: 120px;
  }
}
.p-spots::before, .p-spots::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 49px;
}
@media screen and (min-width: 768px) {
  .p-spots::before, .p-spots::after {
    min-height: 120px;
  }
}
.p-spots::before {
  top: -49px;
  background: url(../img/spots/sp/before-wave-sp.png) no-repeat top/cover;
}
@media screen and (min-width: 768px) {
  .p-spots::before {
    background: url(../img/spots/before-wave.png) no-repeat top/cover;
  }
}
@media screen and (min-width: 768px) {
  .p-spots::before {
    top: -119px;
  }
}
.p-spots::after {
  bottom: -46px;
  background: url(../img/spots/sp/after-wave-sp.png) no-repeat bottom/cover;
}
@media screen and (min-width: 768px) {
  .p-spots::after {
    background: url(../img/spots/after-wave.png) no-repeat bottom/cover;
  }
}
@media screen and (min-width: 768px) {
  .p-spots::after {
    bottom: -105px;
  }
}

.p-spots__inner {
  position: relative;
  padding-inline: 0;
  max-width: none;
}

.p-spots__deco-pawpads {
  display: none;
  position: absolute;
}
.p-spots__deco-pawpads img {
  width: 100px;
  height: 220px;
}
@media screen and (min-width: 768px) {
  .p-spots__deco-pawpads {
    display: block;
    left: calc(50% - 719px);
    bottom: -6px;
  }
}

.p-spots__top {
  position: relative;
}
@media screen and (min-width: 900px) {
  .p-spots__top {
    padding-left: max(30px, 50% - 512px);
    margin-top: 2px;
    gap: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.p-spots__heading {
  color: #fff;
  font-family: "Kiwi Maru";
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
  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;
  gap: 8px;
}
@media screen and (min-width: 900px) {
  .p-spots__heading {
    letter-spacing: 11px;
    font-size: 40px;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    text-align: center;
    gap: 13px;
  }
}
.p-spots__heading::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background: url(../img/spots/star.svg) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .p-spots__heading::before {
    width: 56px;
    height: 56px;
  }
}

.swiper.p-spots__swiper {
  position: static;
  margin-top: 21px;
}
@media screen and (min-width: 900px) {
  .swiper.p-spots__swiper {
    margin-top: 0;
  }
}

.p-spots__card {
  overflow: hidden;
  border-radius: 12px;
  background-color: #fff;
  min-height: 402px;
  height: auto !important;
  width: 100%;
  margin-inline: auto;
  padding-bottom: 30px;
}
.p-spots__card image {
  -webkit-transform: translate(55px, 50px);
          transform: translate(55px, 50px);
}
.p-spots__card img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  aspect-ratio: 4/3;
}
@media screen and (min-width: 900px) {
  .p-spots__card img {
    aspect-ratio: 43/30;
  }
}
@media screen and (min-width: 768px) {
  .p-spots__card {
    min-height: 542px;
    border-radius: 24px;
  }
}

.p-spots__card-heading {
  text-align: center;
  margin-top: 16px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-spots__card-heading {
    font-size: 20px;
    margin-top: 26px;
  }
}

.p-spots__card-description {
  font-size: 12px;
  margin-top: 16px;
  padding-inline: 26px 25px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-spots__card-description {
    font-size: 16px;
    margin-top: 24px;
    text-align: left;
    padding-inline: 32px;
  }
}

.p-spots__button-prev::after,
.p-spots__button-next::after {
  display: none;
}
@media screen and (min-width: 900px) {
  .p-spots__button-prev,
  .p-spots__button-next {
    position: absolute !important;
    top: 510px !important;
    width: 80px !important;
    height: 80px !important;
  }
}

@media screen and (min-width: 900px) {
  .p-spots__button-prev {
    left: 200px !important;
    background: url(../img/spots/prev.png) no-repeat center/contain;
  }
}
@media screen and (min-width: 1200px) {
  .p-spots__button-prev {
    left: calc(50% - 475px) !important;
  }
}

@media screen and (min-width: 900px) {
  .p-spots__button-next {
    right: 100px !important;
    background: url(../img/spots/next.png) no-repeat center/contain;
  }
}
@media screen and (min-width: 1200px) {
  .p-spots__button-next {
    right: calc(50% - 475px) !important;
  }
}

.p-spots__bottom {
  max-width: 1064px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-spots__bottom {
    margin-top: 64px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 81px;
    padding-inline: 20px;
  }
}

@media screen and (min-width: 768px) {
  .p-spots__bottom-img {
    width: 48.33984375%;
  }
}
.p-spots__bottom-img img {
  max-width: 255px;
}
@media screen and (min-width: 768px) {
  .p-spots__bottom-img img {
    min-width: 100%;
  }
}

.p-spots__bottom-text {
  margin-top: 16px;
  color: #fff;
  font-size: 11.444px;
}
@media screen and (min-width: 768px) {
  .p-spots__bottom-text {
    font-size: 16px;
    margin-top: 0;
  }
}

.p-spots__bottom-button {
  width: 100%;
  margin-top: 24px;
  max-width: 334px;
  min-height: 41px;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .p-spots__bottom-button {
    max-width: 437px;
    min-height: 56px;
    font-size: 20px;
    margin-inline: 9px auto;
  }
}

.p-faq {
  padding-bottom: 29px;
}
@media screen and (min-width: 768px) {
  .p-faq {
    padding-block: 103px 0px;
  }
}

.p-faq__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 36px;
}
@media screen and (min-width: 768px) {
  .p-faq__inner {
    gap: 45px;
  }
}

.p-faq__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .p-faq__boxes {
    gap: 23px;
  }
}

.p-faq-box {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 12px;
  border: 2px solid #4a3636;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .p-faq-box {
    border-radius: 16px;
  }
}

.p-faq-box__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 11px;
  background: #fff;
  padding-block: 10px 9px;
  padding-inline: 16px 44px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-faq-box__head {
    padding: 21px 20px 17px 20px;
    gap: 17px;
  }
}

.p-faq-box__head-icon {
  color: #9ed0e0;
  font-family: "Josefin Sans";
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .p-faq-box__head-icon {
    font-size: 32px;
  }
}

.p-faq-box__head-text {
  color: #4a3636;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-faq-box__head-text {
    font-size: 20px;
  }
}

.p-faq-box__head-toggle::before, .p-faq-box__head-toggle::after {
  content: "";
  position: absolute;
  right: 13px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .p-faq-box__head-toggle::before, .p-faq-box__head-toggle::after {
    right: 14px;
  }
}
.p-faq-box__head-toggle::before {
  content: "";
  width: 10.182px;
  height: 1.455px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  right: 21.4px;
  top: calc(50% + 0.1px);
  rotate: 90deg;
  z-index: 1;
  background-color: #fff;
  -webkit-transform-origin: center;
          transform-origin: center;
}
@media screen and (min-width: 768px) {
  .p-faq-box__head-toggle::before {
    width: 18.667px;
    height: 2.6px;
    top: calc(50% - 1px);
    right: 36px;
  }
}
.p-faq-box--is-open .p-faq-box__head-toggle::before {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  rotate: 0deg;
}
.p-faq-box__head-toggle::after {
  top: calc(50% + 0.1px);
  min-width: 26px;
  height: 26px;
  background: url(../img/faq/toggle-icon.png) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .p-faq-box__head-toggle::after {
    min-width: 48px;
    height: 48px;
    right: 21px;
  }
}

.p-faq-box__body {
  display: none;
  padding-block: 19px 13px;
  padding-inline: 15px 12px;
  background: #f5f5f5;
}
@media screen and (min-width: 768px) {
  .p-faq-box__body {
    padding: 20px 21px 16px 21px;
  }
}

.p-faq-box__a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.p-faq-box__a-icon {
  color: #9ed0e0;
  font-family: "Josefin Sans";
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .p-faq-box__a-icon {
    font-size: 32px;
  }
}

.p-faq-box__a-text {
  color: #4a3636;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .p-faq-box__a-text {
    font-size: 16px;
  }
}

@media screen and (min-width: 768px) {
  .p-entry-requirements {
    padding-top: 120px;
  }
}

@media screen and (min-width: 768px) {
  .p-entry-requirements__heading {
    padding-right: 15px;
  }
}

.p-entry-requirements__wrapper {
  padding: 17px 16px;
  border: 8px solid #fff;
  background: rgba(255, 255, 255, 0.5);
}
@media screen and (min-width: 768px) {
  .p-entry-requirements__wrapper {
    padding-block: 31px 34px;
    padding-inline: 63px 48px;
  }
}

.p-entry-requirements__content {
  margin-top: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .p-entry-requirements__content {
    margin-top: 50px;
  }
}

.p-entry-requirements__item {
  padding-bottom: 14px;
  border-bottom: 1px solid #ccc;
}
.p-entry-requirements__item:last-child {
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .p-entry-requirements__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 95px;
    padding-bottom: 12px;
  }
}

.p-entry-requirements__title {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-entry-requirements__title {
    font-size: 16px;
    min-width: 128px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    max-height: 24px;
  }
}
.p-entry-requirements__title::before {
  top: 0;
  left: 0;
  position: absolute;
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #9ed0e0;
  border-radius: 50%;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.p-entry-requirements__description {
  margin-top: 8px;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .p-entry-requirements__description {
    margin-top: 0;
    font-size: 16px;
  }
}
.p-entry-requirements__description li {
  padding-left: 18px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-entry-requirements__description li {
    padding-left: 25px;
  }
}
.p-entry-requirements__description li:nth-child(5) {
  margin-top: -2px;
}
@media screen and (min-width: 768px) {
  .p-entry-requirements__description li:nth-child(5) {
    margin-top: 3px;
  }
}
.p-entry-requirements__description li:last-child {
  margin-top: -3px;
}
@media screen and (min-width: 768px) {
  .p-entry-requirements__description li:last-child {
    margin-top: 3px;
  }
}
.p-entry-requirements__description li::before {
  top: -2px;
  left: 3px;
  position: absolute;
  content: "・";
  display: inline-block;
  width: 4px;
  height: 4px;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
@media screen and (min-width: 768px) {
  .p-entry-requirements__description li::before {
    top: -1px;
    left: 4px;
  }
}

.p-entry-requirements__description--list {
  margin-top: 7px;
}
@media screen and (min-width: 768px) {
  .p-entry-requirements__description--list {
    margin-top: 0;
  }
}

.p-entry-requirements__bottom-img {
  margin-top: 32px;
  max-height: 400px;
}
@media screen and (min-width: 768px) {
  .p-entry-requirements__bottom-img {
    margin-top: 120px;
  }
}
.p-entry-requirements__bottom-img img {
  width: 100%;
}

.is-error {
  background-color: #fff0f7; /* エラー時の背景色 */
  border: 1px solid #ce2073; /* エラー時のボーダー色 */
}

.is-label-error {
  color: #ce2073;
}