*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

address {
  font-style: normal;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: #4a3636;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }
}

a {
  transition: opacity 0.3s ease, color 0.3s ease;
}

:target,
section[id] {
  scroll-margin-top: 64px;
}

img {
  width: 100%;
}

.l-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background-color: #ffffff;
}

.l-header__inner {
  position: relative;
  z-index: calc(100 + 1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 16px 20px;
}
@media screen and (min-width: 768px) {
  .l-header__inner {
    padding: 0 24px;
  }
}

.l-header__logo {
  display: block;
}
.l-header__logo img {
  width: auto;
  height: 24px;
}

.l-header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-header__nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
  }
}

.l-header__menu {
  display: flex;
  align-items: center;
  gap: 12px;
}
.l-header__menu a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
  white-space: nowrap;
  color: #4a3636;
  transition: opacity 0.3s ease;
}
.l-header__menu a:hover {
  opacity: 0.6;
}

.l-drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
}
@media screen and (min-width: 768px) {
  .l-drawer {
    display: none;
  }
}
.l-drawer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 80px 20px;
  background-color: #ffffff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.is-drawer-open .l-drawer {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.l-drawer__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.l-drawer__link {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: #4a3636;
  transition: opacity 0.3s ease;
}
.l-drawer__link:hover {
  opacity: 0.6;
}

.l-footer {
  position: relative;
  background-color: #e9f6f8;
}

.l-footer__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px 0;
}
@media screen and (min-width: 768px) {
  .l-footer__inner {
    padding: 120px 0 0;
  }
}

.l-footer__onomichi {
  position: absolute;
  top: 128px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  width: 328px;
  pointer-events: none;
}
.l-footer__onomichi img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .l-footer__onomichi {
    top: 252px;
    width: 755px;
  }
}

.l-footer__sns {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-bottom: 48px;
}
@media screen and (min-width: 768px) {
  .l-footer__sns {
    padding-bottom: 120px;
  }
}

.l-footer__follow {
  font-family: "Josefin Sans", "Courgette", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.25;
  color: #4a3636;
}
@media screen and (min-width: 768px) {
  .l-footer__follow {
    font-size: 24px;
  }
}

.l-footer__sns-list {
  display: flex;
  gap: 40px;
}
.l-footer__sns-list img {
  display: block;
  width: 32px;
  height: 32px;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .l-footer__sns-list img {
    width: 40px;
    height: 40px;
  }
}
.l-footer__sns-list a:hover img {
  opacity: 0.6;
}

.l-footer__organizer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 335px;
  overflow: hidden;
  background-color: #ffffff;
  border-radius: 16px;
}
@media screen and (min-width: 768px) {
  .l-footer__organizer {
    flex-direction: row-reverse;
    align-items: stretch;
    gap: 0;
    width: 1024px;
    max-width: 100%;
  }
}

.l-footer__map {
  position: relative;
}
.l-footer__map .l-footer__map-frame {
  display: block;
  width: 100%;
  height: 271px;
  border: 0;
}
@media screen and (min-width: 768px) {
  .l-footer__map {
    flex-shrink: 0;
    width: 512px;
  }
  .l-footer__map .l-footer__map-frame {
    height: 400px;
  }
}

.l-footer__map-open {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  color: #67b0c7;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  text-decoration: none;
  white-space: nowrap;
}
.l-footer__map-open::after {
  content: "";
  width: 14px;
  height: 14px;
  background: currentColor;
  mask: url("../img/icon-external.svg") no-repeat center/contain;
  -webkit-mask: url("../img/icon-external.svg") no-repeat center/contain;
}
.l-footer__map-open:hover {
  background: #e9f6f8;
}

.l-footer__company {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 0 24px 24px;
}
@media screen and (min-width: 768px) {
  .l-footer__company {
    flex: 1;
    justify-content: center;
    gap: 40px;
    padding: 40px;
  }
}

.l-footer__logo img {
  display: block;
  width: 153px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .l-footer__logo img {
    width: 183px;
  }
}

.l-footer__org {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .l-footer__org {
    gap: 12px;
  }
}

.l-footer__org-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.l-footer__org-row dt {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 80px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.6;
  color: #4a3636;
}
.l-footer__org-row dt::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background-color: #9ed0e0;
  border-radius: 50%;
}
.l-footer__org-row dd {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
  color: #4a3636;
}
@media screen and (min-width: 768px) {
  .l-footer__org-row dt {
    width: 120px;
    font-size: 16px;
  }
  .l-footer__org-row dd {
    font-size: 16px;
  }
}

.l-footer__pagetop {
  position: relative;
  z-index: 1;
  display: block;
  padding: 24px 0;
  transition: transform 0.3s ease;
}
.l-footer__pagetop img {
  display: block;
  width: 75px;
  height: auto;
}
.l-footer__pagetop:hover {
  transform: translateY(-4px);
}
@media screen and (min-width: 768px) {
  .l-footer__pagetop {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 100;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(16px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  }
  .l-footer__pagetop img {
    width: 100px;
  }
  .l-footer__pagetop.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .l-footer__pagetop.is-visible:hover {
    transform: translateY(-4px);
  }
}

.l-footer__wave {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 8px;
}
.l-footer__wave img {
  display: block;
  width: 100%;
  height: auto;
}

.l-footer__copyright {
  display: flex;
  justify-content: center;
  padding: 0 0 24px;
  background-color: #67b0c7;
}
.l-footer__copyright small {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 1.6;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .l-footer__copyright small {
    font-size: 14px;
    padding-bottom: 8px;
  }
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 24px 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  color: #4a3636;
  white-space: nowrap;
  background-color: #ffffff;
  border: 2px solid #4a3636;
  border-radius: 40px;
  box-shadow: 0 4px 0 #4a3636;
  transition: background-color 0.3s ease, transform 0.1s ease;
}
.c-button:hover {
  background-color: #ffee56;
}
.c-button:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #4a3636;
}

.c-button--sm {
  font-size: 14px;
}

@media screen and (min-width: 768px) {
  .c-button--lg {
    padding: 10px 40px 12px;
    font-size: 20px;
  }
}

.c-hamburger {
  position: relative;
  z-index: calc(100 + 1);
  width: 32px;
  height: 24px;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .c-hamburger {
    display: none;
  }
}

.c-hamburger__bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #4a3636;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.c-hamburger__bar:nth-child(1) {
  top: 0;
}
.c-hamburger__bar:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.c-hamburger__bar:nth-child(3) {
  bottom: 0;
}

.is-drawer-open .c-hamburger__bar:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.is-drawer-open .c-hamburger__bar:nth-child(2) {
  opacity: 0;
}
.is-drawer-open .c-hamburger__bar:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.c-prize {
  appearance: none;
  position: relative;
  display: block;
  width: 160px;
  padding: 24px 0 0;
  border: 0;
  background: none;
  font: inherit;
  color: inherit;
  text-align: center;
  cursor: pointer;
}

.c-prize__badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 48px;
}
.c-prize__badge img {
  display: block;
  width: 100%;
  height: auto;
}

.c-prize__area {
  display: block;
  overflow: hidden;
  background-color: #f5f5f5;
  border: 2px solid transparent;
  border-radius: 8px;
  transition: border-color 0.3s ease;
}

.c-prize__thumb {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 160/140;
}
.c-prize__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.c-prize__zoom {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 36px;
  height: 36px;
  background-color: #67b0c7;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  transition: background-color 0.3s ease;
}
.c-prize__zoom::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/prize-zoom-glass.svg") no-repeat center/36px 36px;
}

.c-prize__name {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 4px 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
  color: #4a3636;
}

.c-prize:hover .c-prize__thumb img,
.c-prize:focus-visible .c-prize__thumb img {
  transform: scale(1.2);
}
.c-prize:hover .c-prize__area,
.c-prize:focus-visible .c-prize__area {
  border-color: #9ed0e0;
}
.c-prize:hover .c-prize__zoom,
.c-prize:focus-visible .c-prize__zoom {
  background-color: #9ed0e0;
}

@media screen and (min-width: 768px) {
  .c-prize__name {
    font-size: 14px;
  }
  .c-prize__zoom {
    width: 56px;
    height: 56px;
  }
  .c-prize__zoom::after {
    background-size: 56px 56px;
  }
}
.c-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.c-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.c-modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.c-modal__panel {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  background-color: #ffffff;
  border-radius: 24px;
  transform: translateY(12px);
  transition: transform 0.3s ease;
}
.c-modal.is-open .c-modal__panel {
  transform: none;
}

.c-modal__thumb {
  aspect-ratio: 480/300;
}
.c-modal__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-modal__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-modal__body {
    gap: 24px;
    padding: 32px 40px;
  }
}

.c-modal__title {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  color: #4a3636;
}
@media screen and (min-width: 768px) {
  .c-modal__title {
    font-size: 20px;
  }
}

.c-modal__desc {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: #4a3636;
  white-space: pre-line;
}
@media screen and (min-width: 768px) {
  .c-modal__desc {
    font-size: 16px;
  }
}

.c-modal__close {
  appearance: none;
  margin-top: 4px;
  cursor: pointer;
}

body.is-modal-open {
  overflow: hidden;
}

.c-spot {
  display: flex;
  flex-direction: column;
  width: 240px;
  height: 402px;
  overflow: hidden;
  background-color: #ffffff;
  border-radius: 12px;
}
@media screen and (min-width: 768px) {
  .c-spot {
    width: 344px;
    height: 542px;
    border-radius: 24px;
  }
}

.c-spot__thumb {
  flex-shrink: 0;
  height: 168px;
  overflow: hidden;
}
.c-spot__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .c-spot__thumb {
    height: 240px;
  }
}

.c-spot__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 24px 32px;
}
@media screen and (min-width: 768px) {
  .c-spot__body {
    gap: 24px;
    padding: 24px 32px 40px;
  }
}

.c-spot__title {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  color: #4a3636;
}

.c-spot__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
  text-align: left;
  color: #4a3636;
}

.c-faq {
  width: 335px;
  max-width: 100%;
  overflow: hidden;
  background-color: #ffffff;
  border: 2px solid #4a3636;
  border-radius: 12px;
}
@media screen and (min-width: 768px) {
  .c-faq {
    width: 100%;
  }
}

.c-faq__head {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  text-align: left;
  background-color: #ffffff;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .c-faq__head {
    gap: 16px;
    padding: 16px 24px;
  }
}

.c-faq__mark {
  flex-shrink: 0;
  font-family: "Josefin Sans", "Courgette", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.25;
  color: #9ed0e0;
}
@media screen and (min-width: 768px) {
  .c-faq__mark {
    font-size: 28px;
  }
}

.c-faq__q {
  flex: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.6;
  color: #4a3636;
}
@media screen and (min-width: 768px) {
  .c-faq__q {
    font-size: 16px;
  }
}

.c-faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.c-faq__icon::before, .c-faq__icon::after {
  content: "";
  position: absolute;
  background-color: #4a3636;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.c-faq__icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
.c-faq__icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}
.is-open .c-faq__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.c-faq__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.is-open .c-faq__body {
  grid-template-rows: 1fr;
}

.c-faq__body-inner {
  min-height: 0;
  overflow: hidden;
}

.c-faq__row {
  display: flex;
  gap: 16px;
  padding: 16px;
  background-color: #f5f5f5;
}
@media screen and (min-width: 768px) {
  .c-faq__row {
    gap: 24px;
    padding: 24px;
  }
}

.c-faq__a {
  flex: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: #4a3636;
}
@media screen and (min-width: 768px) {
  .c-faq__a {
    font-size: 16px;
  }
}

.c-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .c-field {
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    width: 848px;
    max-width: 100%;
  }
}

.c-field__label {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .c-field__label {
    flex-shrink: 0;
    width: 180px;
    padding-top: 16px;
  }
}

.c-field__name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.6;
  color: #4a3636;
}
@media screen and (min-width: 768px) {
  .c-field__name {
    font-size: 16px;
  }
}

.c-field__required {
  flex-shrink: 0;
  padding: 4px 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  color: #ffffff;
  background-color: #ce2073;
  border-radius: 4px;
}

.c-field__control {
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-field__control {
    flex: 1;
  }
}

.c-field__input {
  display: block;
  width: 100%;
  padding: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: #4a3636;
  background-color: #f5f5f5;
  border: 2px solid transparent;
  border-radius: 8px;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  appearance: none;
}
.c-field__input::placeholder {
  color: #cccccc;
}
.c-field__input:focus {
  background-color: #ffffff;
  border-color: #67b0c7;
  outline: none;
}
.c-field__input.is-error {
  border-color: #ce2073;
  background-color: rgba(206, 32, 115, 0.04);
}
@media screen and (min-width: 768px) {
  .c-field__input {
    font-size: 16px;
  }
}

.c-field__textarea {
  height: 160px;
  resize: vertical;
}

.c-field__select {
  position: relative;
}
.c-field__select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 10px;
  margin-top: -7px;
  border-right: 2px solid #9ed0e0;
  border-bottom: 2px solid #9ed0e0;
  transform: rotate(45deg);
  pointer-events: none;
}
.c-field__select select {
  padding-right: 44px;
  cursor: pointer;
}
.c-field__select select:invalid {
  color: #cccccc;
}

.c-field__error {
  margin-top: 6px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
  color: #ce2073;
}

.c-field__radios {
  display: flex;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .c-field__radios {
    padding-top: 14px;
  }
}

.c-radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.c-radio__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.c-radio__mark {
  position: relative;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-color: #f5f5f5;
  border: 1px solid #cccccc;
  border-radius: 50%;
  transition: border-color 0.2s ease;
}
.c-radio__mark::after {
  content: "";
  position: absolute;
  inset: 50%;
  width: 12px;
  height: 12px;
  background-color: #67b0c7;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.2s ease;
}

.c-radio__input:checked + .c-radio__mark {
  border-color: #67b0c7;
}
.c-radio__input:checked + .c-radio__mark::after {
  transform: translate(-50%, -50%) scale(1);
}

.c-radio__input:focus-visible + .c-radio__mark {
  outline: 2px solid #67b0c7;
  outline-offset: 2px;
}

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

.c-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.c-checkbox__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.c-checkbox__box {
  position: relative;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-color: #f5f5f5;
  border: 1px solid #cccccc;
  border-radius: 4px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.c-checkbox__box::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 8px;
  width: 6px;
  height: 12px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg) scale(0);
  transition: transform 0.2s ease;
}

.c-checkbox__input:checked + .c-checkbox__box {
  background-color: #67b0c7;
  border-color: #67b0c7;
}
.c-checkbox__input:checked + .c-checkbox__box::after {
  transform: rotate(45deg) scale(1);
}

.c-checkbox__input:focus-visible + .c-checkbox__box {
  outline: 2px solid #67b0c7;
  outline-offset: 2px;
}

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

.p-fv {
  background-color: #e9f6f8;
}

.p-fv__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 375/710;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-fv__stage {
    aspect-ratio: 1512/881;
  }
}

.p-fv__bg,
.p-fv__phone {
  display: block;
}
.p-fv__bg img,
.p-fv__phone img {
  display: block;
  width: 100%;
  height: auto;
}

.p-fv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-fv__bg img {
    border-radius: 0 0 40px 40px;
  }
}

.p-fv__lead {
  position: absolute;
  top: 2.3943661972%;
  left: 5.3333333333%;
  width: 89.3333333333%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .p-fv__lead {
    top: 3.9727582293%;
    left: 32.8042328042%;
    width: 34.3915343915%;
    gap: 24px;
  }
}

.p-fv__catch {
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.25;
  letter-spacing: 0.1em;
  text-align: center;
  color: #4a3636;
  text-shadow: 0 0 30px white;
}
@media screen and (min-width: 768px) {
  .p-fv__catch {
    font-weight: 500;
    font-size: min(1.5873015873vw, 24px);
  }
}

.p-fv__campaign {
  width: 100%;
  margin: 0;
}
.p-fv__campaign picture {
  display: block;
  width: 100%;
}
.p-fv__campaign img {
  width: 100%;
}

.p-fv__badge {
  position: absolute;
  top: 26.4788732394%;
  left: 58.6666666667%;
  width: 29.3333333333%;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-fv__badge {
    top: 33.371169126%;
    left: 57.7380952381%;
    width: 11.9047619048%;
  }
}

.p-fv__phone {
  position: absolute;
  top: 40.985915493%;
  left: 23.4666666667%;
  width: 53.3333333333%;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-fv__phone {
    top: 35.1872871737%;
    left: 41.7328042328%;
    width: 16.5343915344%;
    z-index: 3;
  }
}

.p-fv__apply {
  position: absolute;
  top: 72.8169014085%;
  left: 33.6%;
  width: 33.0666666667%;
  height: 4.7887323944%;
  z-index: 4;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-fv__apply {
    top: 67.3098751419%;
    left: 44.9074074074%;
    width: 10.2513227513%;
    height: 4.7673098751%;
  }
}

.p-fv__food {
  position: absolute;
  top: 80.1408450704%;
  left: 5.3333333333%;
  width: 22.9333333333%;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .p-fv__food {
    top: 57.2077185017%;
    left: 21.9576719577%;
    width: 13.3597883598%;
    z-index: 2;
  }
}

.p-fv__cats {
  position: absolute;
  top: 82.1126760563%;
  left: 66.1333333333%;
  width: 28.5333333333%;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .p-fv__cats {
    top: 66.515323496%;
    left: 62.6322751323%;
    width: 15.4100529101%;
    z-index: 2;
  }
}

.p-fv__deco {
  position: absolute;
  top: 27.4647887324%;
  left: 5.3333333333%;
  width: 37.8666666667%;
  z-index: 4;
}
@media screen and (min-width: 768px) {
  .p-fv__deco {
    top: 31.4415437003%;
    left: 24.4047619048%;
    width: 16.1375661376%;
  }
}

.p-about {
  position: relative;
  overflow: hidden;
  background-color: #e9f6f8;
}

.p-about__stage {
  position: relative;
  width: 100%;
  max-width: 375px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-about__stage {
    max-width: 1512px;
  }
}

.p-about__deco {
  position: absolute;
  z-index: 0;
  display: block;
  height: auto;
  pointer-events: none;
}

.p-about__deco--ropeway,
.p-about__deco--harbor {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 24px;
}
@media screen and (min-width: 768px) {
  .p-about__deco--ropeway,
  .p-about__deco--harbor {
    border-radius: 40px;
  }
}

.p-about__deco--pawpads {
  top: 22px;
  left: 85.6%;
  width: 14.4%;
}
@media screen and (min-width: 768px) {
  .p-about__deco--pawpads {
    top: 0;
    left: 82.4074074074%;
    width: 6.6137566138%;
  }
}

.p-about__deco--ropeway {
  top: 427px;
  left: -37.3333333333%;
  width: 53.3333333333%;
}
@media screen and (min-width: 768px) {
  .p-about__deco--ropeway {
    top: min(10.2vw, 154px);
    left: -22.3544973545%;
    width: 31.746031746%;
  }
}

.p-about__deco--harbor {
  top: 305px;
  left: 84%;
  width: 53.3333333333%;
}
@media screen and (min-width: 768px) {
  .p-about__deco--harbor {
    top: min(10.1vw, 153px);
    left: 87.037037037%;
    width: 31.746031746%;
  }
}

.p-about__deco--washi {
  top: min(3.97vw, 60px);
  left: -1.3888888889%;
  width: 16.5343915344%;
  border-radius: 24px;
}

.p-about__inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding-top: 32px;
}
@media screen and (min-width: 768px) {
  .p-about__inner {
    padding-top: 80px;
  }
}

.p-about__card {
  position: relative;
  width: 335px;
  padding: 40px 12px;
  background-color: #ffffff;
  border-radius: 24px;
}
@media screen and (min-width: 768px) {
  .p-about__card {
    width: auto;
    max-width: 848px;
    padding: 40px 114px;
    border-radius: 40px;
  }
}

.p-about__pics {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 282px;
  z-index: 2;
  pointer-events: none;
}
.p-about__pics img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-about__pics {
    top: 40px;
    width: 679px;
  }
}

.p-about__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .p-about__body {
    gap: 32px;
  }
}

.p-about__title {
  margin: 0;
}
.p-about__title img {
  display: block;
  width: auto;
  height: 107px;
}
@media screen and (min-width: 768px) {
  .p-about__title img {
    height: auto;
  }
}

.p-about__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  color: #4a3636;
}
@media screen and (min-width: 768px) {
  .p-about__lead {
    font-size: 16px;
  }
}

.p-about__text {
  max-width: 620px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
  color: #4a3636;
}
.p-about__text p + p {
  margin-top: 1.6em;
}
@media screen and (min-width: 768px) {
  .p-about__text {
    font-size: 16px;
  }
}

.p-about__arrow {
  position: absolute;
  z-index: 2;
  top: 100%;
  left: 50%;
  width: 100px;
  height: auto;
  transform: translateX(-50%);
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .p-about__arrow {
    width: 140px;
  }
}

.p-about__bottom {
  position: relative;
  display: flow-root;
}

.p-about__deco--stairs {
  top: 30px;
  left: -3.2%;
  width: 40%;
}
@media screen and (min-width: 768px) {
  .p-about__deco--stairs {
    top: min(2vw, 30px);
    left: -2.6455026455%;
    width: 29.1005291005%;
  }
}

.p-about__deco--gifts {
  top: 70px;
  left: 50.1333333333%;
  width: 46.6666666667%;
}
@media screen and (min-width: 768px) {
  .p-about__deco--gifts {
    top: min(2.6vw, 40px);
    left: 73.8095238095%;
    width: 21.8253968254%;
  }
}

.p-about__deco--waves {
  top: min(18vw, 272px);
  left: 73.9417989418%;
  width: 57.8042328042%;
}

.p-about__onomichi {
  position: relative;
  z-index: 1;
  display: block;
  width: 354.64px;
  max-width: calc(100% - 20px);
  margin: 175px auto 0;
  pointer-events: none;
}
.p-about__onomichi img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-about__onomichi {
    width: min(891px, 100% - 48px);
    margin-top: min(19vw, 287px);
  }
}

.p-about__marquee {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: -3px;
  overflow: hidden;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .p-about__marquee {
    margin-top: -6px;
  }
}

.p-about__track {
  display: flex;
  width: max-content;
  animation: about-marquee 40s linear infinite;
}

.p-about__scroll {
  display: flex;
  flex-shrink: 0;
  gap: 10px;
  padding-left: 10px;
}
.p-about__scroll li {
  flex-shrink: 0;
}
.p-about__scroll img {
  display: block;
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
}
@media screen and (min-width: 768px) {
  .p-about__scroll {
    gap: 20px;
    padding-left: 20px;
  }
  .p-about__scroll img {
    width: 200px;
    height: 200px;
    border-radius: 24px;
  }
}

@keyframes about-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-about__track {
    animation: none;
  }
}
.p-step {
  position: relative;
  overflow: hidden;
  padding: 32px 0 40px;
  background-color: #e9f6f8;
}
@media screen and (min-width: 768px) {
  .p-step {
    padding: 120px 0;
  }
}

.p-step__bg {
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 406px;
  z-index: 0;
  pointer-events: none;
}
.p-step__bg img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-step__bg {
    top: 60px;
    width: 1440px;
  }
}

.p-step__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .p-step__inner {
    gap: 40px;
  }
}

.p-step__title {
  margin: 0;
}
.p-step__title img {
  display: block;
  width: auto;
  height: 107px;
}
@media screen and (min-width: 768px) {
  .p-step__title img {
    height: auto;
  }
}

.p-step__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .p-step__list {
    position: relative;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
    width: 1024px;
    max-width: 100%;
  }
}

.p-step__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 335px;
}
.p-step__item:not(:last-of-type)::after {
  content: "";
  display: block;
  width: 8px;
  height: 34px;
  background: url(../img/step-line-sp.svg) center/contain no-repeat;
}
@media screen and (min-width: 768px) {
  .p-step__item {
    width: 300px;
    gap: 24px;
  }
  .p-step__item:not(:last-of-type)::after {
    content: none;
  }
  .p-step__item:nth-child(2) {
    margin-top: 68px;
  }
}

.p-step__illust img {
  display: block;
  width: 196px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-step__illust img {
    width: 280px;
  }
}

.p-step__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 320px;
  max-width: 100%;
}

.p-step__subtitle {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  color: #4a3636;
}
@media screen and (min-width: 768px) {
  .p-step__subtitle {
    font-size: 20px;
  }
}

.p-step__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
  color: #4a3636;
}
@media screen and (min-width: 768px) {
  .p-step__desc {
    font-size: 16px;
  }
}

.p-step__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.6;
  color: #4a3636;
  background-color: #ffffff;
  border-radius: 8px;
  transition: opacity 0.3s ease;
}
.p-step__link:hover {
  opacity: 0.7;
}
.p-step__link img {
  width: 20px;
  height: 20px;
}
.p-step__link span {
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .p-step__link {
    font-size: 16px;
  }
  .p-step__link img {
    width: 24px;
    height: 24px;
  }
}

.p-step__arc {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-step__arc {
    display: block;
    position: absolute;
    top: 200px;
    width: 113px;
    height: 24px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
}

@media screen and (min-width: 768px) {
  .p-step__arc--1 {
    left: 255px;
    background-image: url(../img/step-arc-pc-2.svg);
  }
}

@media screen and (min-width: 768px) {
  .p-step__arc--2 {
    left: 616px;
    background-image: url(../img/step-arc-pc-1.svg);
  }
}

.p-step__cta {
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .p-step__cta {
    margin-top: 0;
  }
}

.p-prizes {
  position: relative;
  overflow: hidden;
  padding-top: 24px;
  background-color: #e9f6f8;
}
@media screen and (min-width: 768px) {
  .p-prizes {
    padding-top: 48px;
  }
}

.p-prizes__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 1024px;
  margin-inline: auto;
  padding: 20px 20px 40px;
  background-color: transparent;
}
@media screen and (min-width: 768px) {
  .p-prizes__inner {
    gap: 32px;
    padding: 28px 0 56px;
  }
}
.p-prizes__inner::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  width: min(237.6px, 63.4%);
  height: 83px;
  transform: translateX(-50%);
  background: url("../img/prizes-dome.svg") no-repeat top center/100% 100%;
}
@media screen and (min-width: 768px) {
  .p-prizes__inner::before {
    width: min(366px, 35.7%);
    height: 149px;
  }
}
.p-prizes__inner::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 83px;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  border-radius: 24px 24px 40px 40px;
}
@media screen and (min-width: 768px) {
  .p-prizes__inner::after {
    top: 149px;
    border-radius: 40px;
  }
}

.p-prizes__triangle {
  position: absolute;
  top: 44px;
  left: 50%;
  z-index: 0;
  width: 100%;
  max-width: 1024px;
  height: auto;
  transform: translateX(-50%);
  pointer-events: none;
}

.p-prizes__head {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.p-prizes__title {
  margin: 0;
}
.p-prizes__title img {
  display: block;
  width: auto;
  height: 107px;
}
@media screen and (min-width: 768px) {
  .p-prizes__title img {
    height: auto;
  }
}

.p-prizes__lead {
  max-width: 335px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
  color: #4a3636;
}
@media screen and (min-width: 768px) {
  .p-prizes__lead {
    max-width: 620px;
    font-size: 16px;
  }
}

.p-prizes__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .p-prizes__list {
    gap: 40px;
  }
}

.p-prizes__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .p-prizes__row {
    flex-wrap: nowrap;
  }
}

@media screen and (min-width: 768px) {
  .p-prizes__row--2 {
    gap: 32px;
  }
  .p-prizes__row--2 .c-prize {
    width: 440px;
  }
}

@media screen and (min-width: 768px) {
  .p-prizes__row--3 {
    gap: 36px;
  }
  .p-prizes__row--3 .c-prize {
    width: 280px;
  }
}

.p-prizes__bottom {
  position: relative;
  z-index: 0;
  margin-top: -40px;
  pointer-events: none;
}

.p-prizes__photo {
  position: relative;
  display: block;
}
.p-prizes__photo img {
  display: block;
  width: 100%;
  height: auto;
}
.p-prizes__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #e9f6f8 0%, rgba(233, 246, 248, 0) 55%);
}

.p-prizes__wave {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  display: block;
  line-height: 0;
}
.p-prizes__wave img {
  display: block;
  width: 100%;
  height: auto;
}

.p-spots {
  position: relative;
  overflow-x: clip;
  background-color: #67b0c7;
}

.p-spots__pawpads {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-spots__pawpads {
    display: block;
    position: absolute;
    left: clamp(8px, 3vw, 48px);
    bottom: 180px;
    z-index: 1;
    width: 100px;
    height: auto;
    pointer-events: none;
  }
}

.p-spots__inner {
  padding: 40px 0 0;
}
@media screen and (min-width: 768px) {
  .p-spots__inner {
    max-width: 1024px;
    margin-inline: auto;
    padding: 80px 0 0;
  }
}

@media screen and (min-width: 768px) {
  .p-spots__main {
    display: flex;
    gap: 32px;
    align-items: flex-start;
  }
}
.p-spots__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .p-spots__head {
    flex-direction: column;
    flex-shrink: 0;
    padding-bottom: 0;
  }
}

.p-spots__icon img {
  display: block;
  width: 28px;
  height: 28px;
}
@media screen and (min-width: 768px) {
  .p-spots__icon img {
    width: 56px;
    height: 56px;
  }
}

.p-spots__title {
  margin: 0;
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.25;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .p-spots__title {
    font-size: 40px;
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}

.p-spots__carousel {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-spots__carousel {
    flex: 1;
    min-width: 0;
  }
}

.p-spots__cards {
  display: flex;
  gap: 16px;
  padding: 0 20px 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.p-spots__cards > li {
  flex-shrink: 0;
  scroll-snap-align: start;
}
@media screen and (min-width: 768px) {
  .p-spots__cards {
    gap: 32px;
    padding: 0 0 8px;
    margin-right: min(0px, (1024px - 100vw) / 2);
  }
}

.p-spots__arrow {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-spots__arrow {
    display: block;
    position: absolute;
    top: auto;
    bottom: -16px;
    z-index: 2;
    width: 80px;
    height: 80px;
    background: url(../img/spots-arrow.svg) center/contain no-repeat;
    transition: transform 0.2s ease;
  }
  .p-spots__arrow:hover {
    transform: scale(1.08);
  }
}

@media screen and (min-width: 768px) {
  .p-spots__arrow--prev {
    left: -32px;
  }
}

@media screen and (min-width: 768px) {
  .p-spots__arrow--next {
    right: -32px;
    transform: scaleX(-1);
  }
  .p-spots__arrow--next:hover {
    transform: scaleX(-1) scale(1.08);
  }
}

.p-spots__foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 16px 20px 40px;
}
@media screen and (min-width: 768px) {
  .p-spots__foot {
    padding: 40px 0 80px;
  }
}
@media (min-width: 1200px) {
  .p-spots__foot {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.p-spots__foot-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media (min-width: 1200px) {
  .p-spots__foot-text {
    align-items: flex-end;
  }
}

.p-spots__deco img {
  display: block;
  width: 255px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-spots__deco img {
    width: 495px;
  }
}

.p-spots__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .p-spots__lead {
    font-size: 16px;
  }
}

.p-spots__wave {
  display: block;
  margin-top: -1px;
  transform: scaleY(-1);
}
.p-spots__wave img {
  display: block;
  width: 100%;
  height: auto;
}

.p-faq {
  background-color: #e9f6f8;
}

.p-faq__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 40px 20px;
}
@media screen and (min-width: 768px) {
  .p-faq__inner {
    gap: 40px;
    padding: 120px 0 0;
  }
}

.p-faq__title {
  margin: 0;
}
.p-faq__title img {
  display: block;
  width: auto;
  height: 107px;
}
@media screen and (min-width: 768px) {
  .p-faq__title img {
    height: auto;
  }
}

.p-faq__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-faq__list {
    max-width: 800px;
  }
}

.p-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  padding-top: 40px;
  background-color: #e9f6f8;
  border-radius: 0 0 40px 40px;
}
@media screen and (min-width: 768px) {
  .p-info {
    padding-top: 120px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  }
}

.p-info__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 335px;
  padding: 24px 0;
  background-color: rgba(255, 255, 255, 0.5);
  border: 8px solid #ffffff;
}
@media screen and (min-width: 768px) {
  .p-info__card {
    gap: 40px;
    width: 100%;
    max-width: 1024px;
    padding: 40px 56px;
  }
}

.p-info__title {
  margin: 0;
}
.p-info__title img {
  display: block;
  width: auto;
  height: 107px;
}
@media screen and (min-width: 768px) {
  .p-info__title img {
    height: auto;
  }
}

.p-info__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 288px;
}
@media screen and (min-width: 768px) {
  .p-info__list {
    width: 100%;
  }
}

.p-info__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid #cccccc;
}
.p-info__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-info__item {
    flex-direction: row;
    gap: 0;
    padding-bottom: 12px;
  }
}

.p-info__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.6;
  color: #4a3636;
}
.p-info__label::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background-color: #9ed0e0;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .p-info__label {
    flex-shrink: 0;
    width: 240px;
    padding-left: 16px;
    font-size: 16px;
    align-items: flex-start;
  }
  .p-info__label::before {
    margin-top: 0.5em;
  }
}

.p-info__value {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
  color: #4a3636;
}
@media screen and (min-width: 768px) {
  .p-info__value {
    flex: 1;
    font-size: 16px;
  }
}

.p-info__notes {
  display: flex;
  flex-direction: column;
  gap: 0.4em;
}

.p-info__photo {
  width: 100%;
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .p-info__photo {
    margin-top: 120px;
  }
}
.p-info__photo img {
  display: block;
  width: 100%;
  height: 99px;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-info__photo img {
    height: 400px;
  }
}

.p-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 40px 20px;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .p-form {
    gap: 40px;
    padding: 120px 0;
  }
}

.p-form__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .p-form__head {
    gap: 32px;
  }
}

.p-form__title {
  margin: 0;
}
.p-form__title img {
  display: block;
  width: auto;
  height: 107px;
}
@media screen and (min-width: 768px) {
  .p-form__title img {
    height: auto;
  }
}

.p-form__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
  color: #4a3636;
}
@media screen and (min-width: 768px) {
  .p-form__lead {
    font-size: 16px;
  }
}

.p-form__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 335px;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .p-form__body {
    gap: 40px;
    width: auto;
  }
}

.p-form__fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.p-form__foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.p-form__submit {
  margin-top: 0;
}

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

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

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
