@charset "UTF-8";
body,
h1 {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #4A3636;
  background: #E9F6F8;
  font-size: 12px;
  font-weight: 400;
  line-height: 19.2px;
}

.inner {
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 900px) {
  .inner {
    max-width: 1512px;
    padding-left: 24px;
    padding-right: 24px;
  }
}

.small-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 2px 15px 4px 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 40px;
  border: 2px solid #4A3636;
  background: #FFF;
  -webkit-box-shadow: 0px 4px 0px 0px #4A3636;
          box-shadow: 0px 4px 0px 0px #4A3636;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  height: 22px;
  color: #000;
}
@media (min-width: 900px) {
  .small-button:hover {
    background: var(--LP-Yellow, #FFEE56);
  }
}
.small-button a {
  color: #000;
}

.normal-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 6px 24px 8px 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 40px;
  border: 2px solid #4A3636;
  background: #FFF;
  -webkit-box-shadow: 0px 4px 0px 0px #4A3636;
          box-shadow: 0px 4px 0px 0px #4A3636;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: #000;
}
.normal-button a {
  color: #000;
}

.large-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 10px 40px 12px 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 40px;
  border: 3px solid #4A3636;
  background: #FFF;
  -webkit-box-shadow: 0px 4px 0px 0px #4A3636;
          box-shadow: 0px 4px 0px 0px #4A3636;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  color: #000;
}
@media (min-width: 900px) {
  .large-button:hover {
    background: var(--LP-Yellow, #FFEE56);
  }
}
.large-button a {
  color: #000;
}

html {
  scroll-behavior: smooth;
}

.header {
  margin-bottom: 0;
  position: fixed;
  z-index: 40;
  width: 100%;
  top: 0;
}

.header_inner {
  padding: 19px 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 1200px) {
  .header_inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 15px 23px;
  }
}

.header_logo a img {
  width: 208px;
}
@media screen and (min-width: 1200px) {
  .header_logo a img {
    width: 186px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.header_nav {
  display: none;
}
@media screen and (min-width: 1200px) {
  .header_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (min-width: 1200px) {
  .header_nav .header_nav .header_link:nth-child(2) {
    display: none;
  }
}

.header_link {
  color: #000;
}
@media screen and (min-width: 900px) {
  .header_link:hover {
    color: var(--LP-Dark-Blue, #67B0C7);
    text-decoration-line: underline;
    text-underline-offset: 4px;
  }
}

.header_open {
  background-color: #fff;
  border: none;
  height: 20px;
  right: 15px;
  display: block;
}
.header_close {
  background-color: #fff;
  border: none;
  height: 20px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  z-index: 50;
  right: 0;
  width: 52px;
  height: auto;
  top: 5px;
  padding: 0;
}
@media (min-width: 1200px) {
  #js-drawer-icon-open,
  #js-drawer-icon-close {
    display: none;
  }
}
.drawer-content {
  top: 64px;
  margin: 0;
  right: 0;
  left: 0;
  padding: 0;
  height: 707px;
  display: block;
  padding: 82px 114px;
  background: #FFF;
  position: fixed;
  z-index: 100;
  height: calc(100dvh - 64px);
}

#js-drawer-content {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  visibility: hidden;
  opacity: 0;
}

#js-drawer-icon-open:active ~ #js-drawer-content,
#js-drawer-icon-close:active ~ #js-drawer-content {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  visibility: visible;
  opacity: 1;
  display: block;
}

#js-drawer-icon-open,
#js-drawer-icon-close {
  display: block;
}
@media screen and (min-width: 1200px) {
  #js-drawer-icon-open,
  #js-drawer-icon-close {
    display: none;
  }
}

.drawer-content_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  font-size: 14px;
}

.drawer-content_link {
  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;
  font-size: 14px;
  line-height: 1.6;
  color: #000;
}

.first-view {
  position: relative;
  padding-top: 85px;
}
@media (min-width: 1200px) {
  .first-view {
    padding-top: 97px;
  }
}

.first-view__background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 156px);
  overflow: hidden;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
}
@media (min-width: 1200px) {
  .first-view__background-image {
    height: calc(100% - 96px);
  }
}
.first-view__background-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.first-view__inner {
  position: relative;
  width: 100%;
  max-width: 335px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 900px) {
  .first-view__inner {
    max-width: 848px;
  }
}

.first-view__description {
  font-family: "Kiwi Maru", serif;
  font-size: 14px;
  line-height: 1.25;
  text-align: center;
  text-shadow: 0px 0px 30px #fff;
}
@media screen and (min-width: 900px) {
  .first-view__description {
    font-size: 24px;
    font-weight: 500;
  }
}

.first-view__lead {
  margin-top: 20px;
}
@media screen and (min-width: 900px) {
  .first-view__lead {
    width: 520px;
    max-width: 100%;
    margin-top: 24px;
    margin-right: auto;
    margin-left: auto;
  }
}
.first-view__lead img {
  width: 100%;
}

.first-view__decoration-wrap {
  position: relative;
  height: 522px;
  margin-top: 10px;
}
@media screen and (min-width: 900px) {
  .first-view__decoration-wrap {
    height: 558px;
    margin-top: 0;
  }
}

.first-view__decoration-smart-phone {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 2;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.decoration-smart-phone {
  width: 200px;
  max-width: 100%;
}
@media screen and (min-width: 900px) {
  .decoration-smart-phone {
    width: 250px;
  }
}

.decoration-smart-phone__image {
  position: relative;
}
.decoration-smart-phone__image img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.decoration-smart-phone__wrap {
  position: absolute;
  top: calc(50% - 3px);
  left: 50%;
  width: calc(100% - 40px);
  overflow: hidden;
  text-align: center;
  background: #fff;
  border-radius: 12.8px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding-bottom: 19.2px;
}
@media screen and (min-width: 900px) {
  .decoration-smart-phone__wrap {
    width: calc(100% - 50px);
    border-radius: 16px;
    margin-top: -9px;
    padding-bottom: 10px;
  }
}

.decoration-smart-phone__heading {
  padding: 6px 9.6px;
  font-size: 12.8px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(265deg, #ac3790 -3.52%, #d65a5c 44.94%, #f4c06d 92.38%);
}
@media screen and (min-width: 900px) {
  .decoration-smart-phone__heading {
    padding: 8px 12px;
    font-size: 16px;
    height: 28px;
  }
}
@media (min-width: 1200px) {
  .decoration-smart-phone__heading h3 {
    margin-top: 10px;
  }
}

.decoration-smart-phone__body {
  padding-top: 4px;
  padding-bottom: 12px;
}
@media screen and (min-width: 900px) {
  .decoration-smart-phone__body {
    padding-top: 18px;
    padding-bottom: 15px;
  }
}

@media screen and (min-width: 1200px) {
  .decoration-smart-phone__sub-heading {
    -webkit-transform: translateY(-1px);
            transform: translateY(-1px);
  }
}
.decoration-smart-phone__sub-heading span {
  display: inline-block;
  padding-bottom: 1px;
  font-size: 12px;
  border-bottom: 2.4px solid #ce2073;
}
@media screen and (min-width: 900px) {
  .decoration-smart-phone__sub-heading span {
    font-size: 14px;
    border-bottom-width: 3px;
    height: 22px;
    font-weight: 300;
  }
}

.decoration-smart-phone__text {
  margin-top: 3.2px;
  font-size: 12px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .decoration-smart-phone__text {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
    margin-top: 10px;
    font-size: 16px;
  }
}

.decoration-smart-phone__button {
  padding-bottom: 4px;
}
@media screen and (min-width: 900px) {
  .decoration-smart-phone__button {
    -webkit-transform: translateY(4px);
            transform: translateY(4px);
    padding-bottom: 20px;
  }
}

.first-view__decoration-english-message {
  position: absolute;
  top: 7px;
  left: 0;
  width: 142px;
  max-width: 100%;
}
@media screen and (min-width: 900px) {
  .first-view__decoration-english-message {
    top: 0;
    right: calc(50% + 143px);
    left: auto;
    width: 244px;
  }
}
.first-view__decoration-english-message img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.first-view__decoration-red-circle-text {
  position: absolute;
  top: 0;
  right: 25px;
  width: 110px;
  max-width: 100%;
}
@media screen and (min-width: 900px) {
  .first-view__decoration-red-circle-text {
    top: 17px;
    right: auto;
    left: calc(50% + 117px);
    width: 180px;
  }
}
.first-view__decoration-red-circle-text img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.first-view__decoration-coffee-and-sweets {
  position: absolute;
  bottom: 0px;
  left: 0;
  z-index: 3;
  width: 90px;
  max-width: 100%;
}
@media screen and (min-width: 900px) {
  .first-view__decoration-coffee-and-sweets {
    bottom: -3px;
    width: 212px;
  }
}
.first-view__decoration-coffee-and-sweets img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.first-view__decoration-cats {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
}
@media screen and (min-width: 1200px) {
  .first-view__decoration-cats {
    bottom: -46px;
  }
}

.decoration-cats1 {
  position: relative;
  width: 107px;
  height: 127px;
}
@media screen and (min-width: 900px) {
  .decoration-cats1 {
    width: 233px;
    height: 294px;
  }
}

.decoration-cats1__1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 62px;
}
@media screen and (min-width: 900px) {
  .decoration-cats1__1 {
    left: 0;
    width: 170px;
  }
}

.decoration-cats1__2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 98px;
}
@media screen and (min-width: 900px) {
  .decoration-cats1__2 {
    right: 0;
    bottom: 0;
    width: 100%;
  }
}

.about {
  padding-bottom: 245px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 32px;
  position: relative;
}
@media (min-width: 900px) {
  .about {
    margin-top: 55px;
    padding-top: 33px;
  }
}
@media (min-width: 1200px) {
  .about {
    padding-top: 80px;
    margin-top: 0;
  }
}

.about_inner {
  position: relative;
  background: #fff;
  width: 335px;
  padding-top: 40px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 24px;
}
@media screen and (min-width: 600px) {
  .about_inner {
    width: 420px;
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (min-width: 900px) {
  .about_inner {
    width: 540px;
    padding-right: 30px;
    padding-left: 30px;
    height: 754px;
    padding-top: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .about_inner {
    padding-top: 40px;
    padding-bottom: 36px;
    padding-left: 20px;
    padding-right: 20px;
    width: 808px;
  }
}

.about_content {
  text-align: center;
  position: relative;
  display: grid;
  padding-bottom: 40px;
  padding-right: 12px;
  padding-left: 12px;
  gap: 20px;
}
@media (min-width: 900px) {
  .about_content {
    gap: 32px;
    display: grid;
    padding-right: 0px;
    padding-left: 0px;
    line-height: 1.6;
  }
}
@media (min-width: 1200px) {
  .about_content {
    gap: 30px;
    display: grid;
    padding-right: 0px;
    padding-left: 0px;
    line-height: 1.6;
    padding-bottom: 52px;
  }
}
.about_content ::after {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 100px;
  height: 36px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  background-color: #cce1e4;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 900px) {
  .about_content ::after {
    width: 140px;
    height: 50px;
    top: 97.5%;
  }
}
@media (min-width: 1200px) {
  .about_content ::after {
    width: 140px;
    height: 50px;
    top: 98%;
  }
}

.about-title {
  display: block;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.about-title img {
  width: 230px;
  height: 106px;
}
@media (min-width: 1200px) {
  .about-title img {
    width: 365px;
    height: 148px;
  }
}

.about_title-sp {
  margin-top: 24px;
  text-align: center;
  font-weight: 700;
  line-height: 1.6;
  font-size: 14px;
}
@media (min-width: 600px) {
  .about_title-sp {
    font-size: 16px;
  }
}
@media screen and (min-width: 900px) {
  .about_title-sp {
    display: none;
  }
}

.about_title-pc {
  display: none;
}
@media (min-width: 900px) {
  .about_title-pc {
    display: block;
    margin-top: 34px;
    font-size: 16px;
    font-weight: 700;
  }
}
@media (min-width: 1200px) {
  .about_title-pc {
    margin-top: 24px;
    text-align: center;
    font-weight: 700;
    line-height: 1.6;
    font-size: 16px;
    margin-top: 32px;
  }
}

.underline {
  text-decoration: underline;
}

.about_text-sp {
  font-size: 12px;
}
@media (min-width: 600px) {
  .about_text-sp {
    font-size: 14px;
    line-height: 1.6;
  }
}
.about_text-sp span {
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .about_text-sp {
    display: none;
  }
}

.about_text-pc {
  display: none;
}
.about_text-pc span {
  font-weight: 700;
}
@media (min-width: 900px) {
  .about_text-pc {
    display: block;
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .about_text-pc {
    font-size: 16px;
  }
}

.about-gift_text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  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;
}
.about-gift_text span {
  border-bottom: 2px dashed var(--LP-Blue, #9ED0E0);
  padding: 8px 0;
}
@media screen and (min-width: 900px) {
  .about-gift_text span {
    padding: 12px 0;
  }
}
@media (min-width: 1200px) {
  .about-gift_text span {
    padding: 9px 0;
  }
}
@media (min-width: 900px) {
  .about-gift_text {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .about-gift_text {
    font-size: 20px;
  }
}

@media screen and (min-width: 900px) {
  .about_button .normal-button {
    display: none;
  }
}
@media (max-width: 900px) {
  .about_button .large-button {
    display: none;
  }
}

.about_naname {
  display: none;
}
@media (min-width: 900px) {
  .about_naname {
    position: absolute;
    width: 250px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    right: calc(50% + 280px);
    z-index: -1;
    top: 0;
  }
}
@media (min-width: 1200px) {
  .about_naname {
    position: absolute;
    width: 250px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 65px;
    right: calc(50% + 527px);
    z-index: -1;
  }
}

.about-top-left {
  position: absolute;
  top: 30px;
  right: calc(50% + 46px);
  width: 90px;
}
.about-top-left img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}
@media (min-width: 900px) {
  .about-top-left {
    width: 140px;
    top: 70px;
    right: calc(50% + 230px);
  }
}
@media (min-width: 1200px) {
  .about-top-left {
    width: 152px;
    top: 40px;
    right: calc(50% + 186px);
  }
}

.about-top-right {
  position: absolute;
  top: 30px;
  left: calc(50% + 58px);
  width: 90px;
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
}
@media (min-width: 900px) {
  .about-top-right {
    width: 140px;
    top: 70px;
    left: calc(50% + 230px);
  }
}
@media (min-width: 1200px) {
  .about-top-right {
    width: 152px;
    top: 47px;
    left: calc(50% + 190px);
  }
}
.about-top-right img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.bg-pawpads {
  left: calc(50% + 133px);
  position: absolute;
  top: -10px;
  z-index: -1;
  width: 54px;
}
@media (min-width: 600px) {
  .bg-pawpads {
    left: calc(50% + 205px);
    top: -20px;
  }
}
@media (min-width: 900px) {
  .bg-pawpads {
    width: 70px;
    left: calc(50% + 333px);
    top: -33px;
  }
}
@media (min-width: 1200px) {
  .bg-pawpads {
    width: 100px;
    left: calc(50% + 492px);
    top: -77px;
  }
}
.bg-pawpads img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.asirai-photo-left {
  position: absolute;
  top: 426px;
  right: calc(50% + 128px);
  z-index: -1;
  overflow: hidden;
  width: 200px;
}
@media (min-width: 600px) {
  .asirai-photo-left {
    top: 430px;
  }
}
@media (min-width: 900px) {
  .asirai-photo-left {
    width: 480px;
    top: 125px;
    right: calc(50% + 380px);
  }
}
@media (min-width: 1200px) {
  .asirai-photo-left {
    width: 480px;
    right: calc(50% + 612px);
    top: 158px;
  }
}
.asirai-photo-left img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.asirai-photo-right {
  position: absolute;
  top: 302px;
  left: calc(50% + 128px);
  z-index: -1;
  overflow: hidden;
  width: 200px;
}
@media (min-width: 900px) {
  .asirai-photo-right {
    width: 480px;
    top: 125px;
    left: calc(50% + 380px);
  }
}
@media (min-width: 1200px) {
  .asirai-photo-right {
    width: 480px;
    left: calc(50% + 562px);
    top: 158px;
  }
}
.asirai-photo-right img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.about_bottom {
  position: relative;
  bottom: -135px;
}
@media (min-width: 1200px) {
  .about_bottom {
    bottom: -163px;
  }
}

.about_sakamichi-sp {
  position: absolute;
  bottom: 173px;
  width: 138px;
}
@media screen and (min-width: 600px) {
  .about_sakamichi-sp {
    width: 200px;
    bottom: 200px;
  }
}
@media (min-width: 900px) {
  .about_sakamichi-sp {
    display: none;
  }
}
.about_sakamichi-sp img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.about_sakamichi-pc {
  display: none;
}
@media (min-width: 900px) {
  .about_sakamichi-pc {
    width: 427px;
    display: block;
    bottom: 235px;
    position: absolute;
    right: calc(50% + 155px);
    z-index: -1;
  }
}
@media (min-width: 1200px) {
  .about_sakamichi-pc {
    width: 427px;
    display: block;
    bottom: 233px;
    position: absolute;
    right: calc(50% + 431px);
    z-index: -1;
  }
}
.about_sakamichi-pc img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.about_nami1 {
  display: none;
}
@media (min-width: 900px) {
  .about_nami1 {
    width: 874px;
    position: absolute;
    bottom: 745px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    left: calc(50% + 220px);
  }
}
@media (min-width: 1200px) {
  .about_nami1 {
    width: 806px;
    position: absolute;
    bottom: 750px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    left: calc(50% + 515px);
  }
}

.about_nami2 {
  display: none;
}
@media (min-width: 900px) {
  .about_nami2 {
    width: 874px;
    position: absolute;
    bottom: 713px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    left: calc(50% + 220px);
  }
}
@media (min-width: 1200px) {
  .about_nami2 {
    width: 806px;
    position: absolute;
    bottom: 718px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    left: calc(50% + 448px);
  }
}

.about_goods {
  position: absolute;
  bottom: 271px;
  left: calc(50% - 3px);
  width: 133px;
  height: auto;
}
@media (min-width: 600px) {
  .about_goods {
    width: 200px;
    left: calc(50% + 85px);
    bottom: 300px;
  }
}
@media (min-width: 900px) {
  .about_goods {
    width: 308px;
    left: calc(50% + 139px);
    bottom: 420px;
  }
}
@media (min-width: 1200px) {
  .about_goods {
    width: 308px;
    left: calc(50% + 371px);
    bottom: 463px;
  }
}
.about_goods img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.about_goods2 {
  width: 48px;
  position: absolute;
  left: calc(50% + 117px);
  bottom: 329px;
  height: auto;
}
@media (min-width: 600px) {
  .about_goods2 {
    left: calc(50% + 280px);
    width: 80px;
    bottom: 360px;
  }
}
@media (min-width: 900px) {
  .about_goods2 {
    left: calc(50% + 320px);
    width: 100px;
    bottom: 637px;
  }
}
@media (min-width: 1200px) {
  .about_goods2 {
    width: 100px;
    left: calc(50% + 507px);
    bottom: 671px;
  }
}
.about_goods2 img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.onomichi {
  position: relative;
  display: block;
  width: 363px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
@media (min-width: 900px) {
  .onomichi {
    width: 770px;
  }
}
@media (min-width: 1200px) {
  .onomichi {
    width: 891px;
  }
}
.onomichi img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.about-swiper__slide {
  overflow: hidden;
  border-radius: 12px;
}

@media screen and (min-width: 900px) {
  .about-swiper__slide {
    border-radius: 24px;
  }
}
.spots-swiper__slide {
  height: auto;
}

.spots-swiper-arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.spots-swiper-arrows__prev,
.spots-swiper-arrows__next {
  position: static;
  width: 80px;
  height: 80px;
  background-color: #ffee56;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 16px 27px;
  border-radius: 50%;
  -webkit-transition: background-position 0.3s;
  transition: background-position 0.3s;
}

.spots-swiper-arrows__prev::after,
.spots-swiper-arrows__next::after {
  content: "";
}

.spots-swiper-arrows__prev {
  background-image: url(../img/icon_arrow-left.svg);
}

@media (hover: hover) {
  .spots-swiper-arrows__prev:hover {
    background-position: center left 40%;
  }
}
.spots-swiper-arrows__next {
  background-image: url(../img/icon_arrow-right.svg);
}

@media (hover: hover) {
  .spots-swiper-arrows__next:hover {
    background-position: center right 40%;
  }
}
.how-to-entry {
  margin-top: -80px;
}
@media (min-width: 1200px) {
  .how-to-entry {
    margin-top: -27px;
  }
}

.how-to-inner {
  position: relative;
  max-width: 375px;
  padding-left: 20px;
  padding-right: 20px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 32px;
  overflow: hidden;
}
@media (min-width: 600px) {
  .how-to-inner {
    max-width: 500px;
  }
}
@media (min-width: 900px) {
  .how-to-inner {
    max-width: 1512px;
  }
}
@media (min-width: 1200px) {
  .how-to-inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.how-to-map {
  position: absolute;
  width: 149px;
  left: 0;
}
@media (min-width: 600px) {
  .how-to-map {
    width: 180px;
  }
}
@media (min-width: 900px) {
  .how-to-map {
    width: 380px;
    top: -3px;
    right: calc(50% + 180px);
    left: auto;
  }
}
@media (min-width: 1200px) {
  .how-to-map {
    width: 460px;
    right: calc(50% + 265px);
  }
}

.how-ashi-up {
  position: absolute;
  width: 55px;
  left: calc(50% + 114px);
  top: 76px;
  margin-right: 20px;
}
@media (min-width: 600px) {
  .how-ashi-up {
    left: calc(50% + 180px);
    top: 70px;
  }
}
@media (min-width: 900px) {
  .how-ashi-up {
    width: 70px;
    top: 174px;
    left: calc(50% + 380px);
  }
}
@media (min-width: 1200px) {
  .how-ashi-up {
    width: 100px;
    left: calc(50% + 460px);
  }
}
@media (min-width: 1200px) {
  .how-ashi-up {
    left: calc(50% + 620px);
    top: 177px;
  }
}

.how-ashi-down1 {
  position: absolute;
  width: 55px;
  top: 551px;
  left: 20px;
}
@media (min-width: 900px) {
  .how-ashi-down1 {
    display: none;
  }
}

.how-ashi-down2 {
  position: absolute;
  width: 55px;
  bottom: 364px;
  right: 20px;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
@media (min-width: 900px) {
  .how-ashi-down2 {
    width: 70px;
    left: 0;
    bottom: 40px;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@media (min-width: 1200px) {
  .how-ashi-down2 {
    width: 100px;
    left: 37px;
    bottom: 39px;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

.how-cats {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.how-cats img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.how-blackcat {
  position: absolute;
  width: 94px;
  top: 6px;
  left: calc(50% + 124px);
}
.how-blackcat img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
@media (min-width: 900px) {
  .how-blackcat {
    width: 214px;
    left: calc(50% + 352px);
    top: 15px;
  }
}
@media (min-width: 1200px) {
  .how-blackcat {
    left: calc(50% + 435px);
    top: 10px;
  }
}

.how-cat {
  left: calc(50% + 59px);
  position: absolute;
  width: 105px;
  top: 2px;
}
@media (min-width: 600px) {
  .how-cat {
    left: calc(50% + 64px);
  }
}
@media (min-width: 900px) {
  .how-cat {
    width: 238px;
    left: calc(50% + 200px);
  }
}
@media (min-width: 1200px) {
  .how-cat {
    width: 238px;
    left: calc(50% + 285px);
  }
}

.how-to-entry-title {
  position: relative;
  text-align: center;
}
@media (min-width: 900px) {
  .how-to-entry-title {
    margin-top: 32px;
  }
}

@media (min-width: 900px) {
  .how-title-icon svg {
    width: 48px;
    height: 48px;
  }
}

.english-title {
  color: var(--LP-Blown, #4A3636);
  font-family: Courgette;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
}
@media (min-width: 900px) {
  .english-title {
    font-size: 20px;
  }
}

.japanese-title {
  font-family: "Kiwi Maru";
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  margin-top: 8px;
  border-bottom: 6px solid #ffee56;
  padding-bottom: 6px;
  display: inline-block;
}
@media (min-width: 900px) {
  .japanese-title {
    padding-bottom: 8px;
    margin-top: 20px;
    font-size: 32px;
    border-width: 8px;
  }
}
@media (min-width: 1200px) {
  .japanese-title {
    margin-top: 12px;
  }
}

.how-to-entry-steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 59px;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 32px;
}
@media (min-width: 900px) {
  .how-to-entry-steps {
    padding-top: 0;
    margin-top: 32px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 7px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    /* 子要素を中央揃えにする */
  }
}
@media (min-width: 1200px) {
  .how-to-entry-steps {
    gap: 32px;
    margin-top: 56px;
  }
}

.how-to-entry_step {
  text-align: center;
  position: relative;
}
@media (min-width: 900px) {
  .how-to-entry_step {
    width: 280px;
  }
}
@media (min-width: 1200px) {
  .how-to-entry_step {
    width: 320px;
  }
}

.step-box_heading {
  margin-top: 18px;
  font-size: 16px;
}
@media (min-width: 1200px) {
  .step-box_heading {
    font-size: 20px;
    margin-top: 16px;
  }
}

.step-box_text {
  margin-top: 21px;
  line-height: 1.59;
}
@media (min-width: 900px) {
  .step-box_text {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .step-box_text {
    font-size: 16px;
    margin-top: 17px;
  }
}
.step-box_text .underline {
  text-decoration: underline;
}
.step-box_text .bold {
  font-weight: 700;
}

.step-box_text .sp {
  display: block;
}
@media (min-width: 900px) {
  .step-box_text .sp {
    display: none;
  }
}

.step-box_text .pc {
  display: none;
}
@media (min-width: 900px) {
  .step-box_text .pc {
    display: block;
  }
}

.how-step1-sp {
  width: 196px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .how-step1-sp {
    width: 246px;
  }
}
@media (min-width: 1200px) {
  .how-step1-sp {
    position: relative;
    margin-right: auto;
    width: 280px;
    margin-left: auto;
    top: -19px;
  }
}

.how-step2-sp {
  width: 196px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .how-step2-sp {
    width: 246px;
    margin-top: 50px;
  }
}
@media (min-width: 1200px) {
  .how-step2-sp {
    width: 280px;
    margin-top: 50px;
    padding-bottom: 24px;
  }
}

.how-step3-sp {
  width: 196px;
  margin-top: -10px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 900px) {
  .how-step3-sp {
    width: 246px;
  }
}
@media (min-width: 1200px) {
  .how-step3-sp {
    position: relative;
    margin-right: auto;
    width: 280px;
    margin-left: auto;
    top: -19px;
  }
}

.step-box__follow-button {
  margin-top: 19px;
}
@media (min-width: 1200px) {
  .step-box__follow-button {
    margin-top: 27px;
  }
}

.follow-button {
  position: relative;
  padding-top: 7px;
  padding-right: 11px;
  padding-bottom: 7px;
  padding-left: 16px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  background: #fff;
  border: solid 1px transparent;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  color: #000;
}
@media (min-width: 1200px) {
  .follow-button {
    font-size: 16px;
    font-weight: 500;
  }
}

.follow-button::before {
  position: absolute;
  top: 50%;
  left: 8px;
  width: 22px;
  height: 22px;
  content: "";
  background-image: url(../img/icon_instagram.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.step-box-image-sp {
  position: absolute;
  width: 8px;
  height: 34px;
  top: calc(100% + 20px);
  left: 49%;
}
@media (min-width: 900px) {
  .step-box-image-sp {
    display: none;
  }
}

.step-box-image-pc {
  display: none;
}
@media (min-width: 900px) {
  .step-box-image-pc {
    display: block;
    position: absolute;
    width: 70px;
    top: 30%;
    left: calc(50% + 95px);
    z-index: 1;
  }
}
@media (min-width: 1200px) {
  .step-box-image-pc {
    width: 114px;
    top: 36%;
    left: calc(50% + 104px);
  }
}

.step_box_button {
  padding-bottom: 4px;
  margin-top: 15px;
  text-align: center;
}
@media (min-width: 900px) {
  .step_box_button {
    margin-top: 48px;
  }
}

.step-box-button {
  display: inline-block;
  padding-top: 8px;
  padding-right: 27px;
  padding-bottom: 9px;
  padding-left: 22.5px;
  font-size: 16px;
  font-weight: 700;
  color: #4a3636;
  text-align: center;
  cursor: pointer;
  background: #fff;
  border: 2px solid #4a3636;
  border-radius: 40px;
  -webkit-box-shadow: 0px 2px 0px 0px #4a3636;
          box-shadow: 0px 2px 0px 0px #4a3636;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media (min-width: 900px) {
  .step-box-button {
    padding-top: 13px;
    padding-right: 37px;
    padding-bottom: 15px;
    padding-left: 37px;
    font-size: 20px;
    border-width: 3px;
  }
  .step-box-button:hover {
    background: var(--LP-Yellow, #FFEE56);
  }
}

.prizes {
  margin-top: 32px;
}
@media (min-width: 900px) {
  .prizes {
    margin-top: 120px;
  }
}

.prizes_inner {
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 900px) {
  .prizes_inner {
    max-width: 1084px;
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media (min-width: 1200px) {
  .prizes_inner {
    margin-left: auto;
    margin-right: auto;
    max-width: 1028px;
  }
}

.prizes_contents {
  z-index: 1;
  position: relative;
  padding-top: 20px;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 29px;
}
@media (min-width: 1200px) {
  .prizes_contents {
    padding-right: 56px;
    padding-left: 56px;
    padding-bottom: 46px;
  }
}
.prizes_contents::before {
  content: "";
  position: absolute;
  text-align: center;
  background-image: url(../img/prizes-deco-sp.png);
  top: 0;
  left: 50%;
  width: 238px;
  height: 83px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 900px) {
  .prizes_contents::before {
    width: 372px;
    height: 148px;
    background-image: url(../img/prizes-deco-pc.png);
  }
}
.prizes_contents .prizes__decoration-triangle-left,
.prizes_contents .prizes__decoration-triangle-right {
  position: absolute;
  top: 0;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: calc((100% - 390px) / 2);
  min-height: 148px;
}
@media (min-width: 1200px) {
  .prizes_contents .prizes__decoration-triangle-left,
  .prizes_contents .prizes__decoration-triangle-right {
    width: auto;
  }
}
@media screen and (min-width: 900px) {
  .prizes_contents .prizes__decoration-triangle-left,
  .prizes_contents .prizes__decoration-triangle-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.prizes_contents .prizes__decoration-triangle-left {
  left: 0;
}
.prizes_contents .prizes__decoration-triangle-right {
  right: 0;
}
.prizes_contents::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 83px);
  border-radius: 24px;
  background: white;
  z-index: -2;
  pointer-events: none;
}
@media (min-width: 900px) {
  .prizes_contents::after {
    height: calc(100% - 148px);
  }
}

.prizes_title {
  position: relative;
  text-align: center;
}
@media (min-width: 1200px) {
  .prizes_title {
    margin-top: 12px;
  }
}

@media (min-width: 900px) {
  .prizes_title-icon svg {
    width: 48px;
    height: 48px;
  }
}

.prizes_text {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  margin-top: 16px;
}
@media (min-width: 600px) {
  .prizes_text {
    font-size: 14px;
  }
}
@media (min-width: 900px) {
  .prizes_text {
    font-size: 16px;
    margin-top: 39px;
    -webkit-transform: translateX(-7px);
            transform: translateX(-7px);
  }
}

.prizes_cards {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 49px;
}
@media (min-width: 900px) {
  .prizes_cards {
    padding-top: 82px;
    gap: 0;
  }
}

.prizes_cards_inner {
  width: min(375px, 100%);
  margin-inline: auto;
}
@media (min-width: 600px) {
  .prizes_cards_inner {
    width: min(600px, 100%);
  }
}
@media (min-width: 900px) {
  .prizes_cards_inner {
    width: min(900px, 100%);
  }
}
@media (min-width: 1200px) {
  .prizes_cards_inner {
    width: min(1200px, 100%);
  }
}

.prizes_card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
@media (min-width: 900px) {
  .prizes_card {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto auto;
  }
  .prizes_card .prizes_item:nth-child(1) {
    grid-area: 1/1/1/4;
    width: 387px;
  }
  .prizes_card .prizes_item:nth-child(2) {
    grid-area: 1/4/2/7;
    width: 387px;
  }
  .prizes_card .prizes_item:nth-child(3) {
    margin-top: 40px;
    grid-area: 2/1/3/3;
    width: 245px;
  }
  .prizes_card .prizes_item:nth-child(4) {
    margin-top: 40px;
    grid-area: 2/3/3/5;
    width: 245px;
  }
  .prizes_card .prizes_item:nth-child(5) {
    margin-top: 40px;
    grid-area: 2/4/3/6;
    width: 245px;
  }
}
@media (min-width: 1200px) {
  .prizes_card .prizes_item:nth-child(1) {
    grid-area: 1/1/1/4;
    width: 440px;
  }
  .prizes_card .prizes_item:nth-child(2) {
    grid-area: 1/4/2/7;
    width: 440px;
    margin-left: 5px;
  }
  .prizes_card .prizes_item:nth-child(3) {
    margin-top: 40px;
    grid-area: 2/1/3/3;
    width: 280px;
  }
  .prizes_card .prizes_item:nth-child(4) {
    margin-top: 40px;
    grid-area: 2/3/3/5;
    width: 280px;
    margin-left: 9px;
  }
  .prizes_card .prizes_item:nth-child(5) {
    margin-top: 40px;
    grid-area: 2/4/3/6;
    width: 280px;
    margin-left: 5px;
  }
}

.prizes_item {
  position: relative;
  margin-bottom: 39px;
  -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;
}
@media (min-width: 1200px) {
  .prizes_item {
    margin-bottom: 37px;
  }
}

.prizes_item:nth-child(5) {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: auto;
  left: 55%;
}

.prizes_icon-img {
  position: absolute;
  top: -24px;
  left: 50%;
  z-index: 2;
  width: 48px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 900px) {
  .prizes_icon-img {
    width: 60px;
  }
}
@media (min-width: 1200px) {
  .prizes_icon-img {
    top: -40px;
    width: 80px;
  }
}

.prizes_icon-img-large .prizes_icon-img {
  top: -14px;
}
@media (min-width: 900px) {
  .prizes_icon-img-large .prizes_icon-img {
    width: 80px;
    top: -20px;
  }
}
@media (min-width: 1200px) {
  .prizes_icon-img-large .prizes_icon-img {
    width: 100px;
    top: -24px;
  }
}

@media (min-width: 900px) {
  .prizes_icon-img-large {
    overflow: hidden;
  }
}

.prizes_item-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 8/7;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (min-width: 900px) {
  .prizes_item-img {
    height: 202px;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
  }
  .prizes_item-img:hover {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
@media (min-width: 1200px) {
  .prizes_item-img {
    height: 240px;
  }
}

@media (min-width: 900px) {
  .prizes_icon-img-large .prizes_item-img {
    height: 289px;
  }
}
@media (min-width: 1200px) {
  .prizes_icon-img-large .prizes_item-img {
    height: 340px;
  }
}
.prizes-card__button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  border-radius: 8px;
  outline: none;
  z-index: 1;
  pointer-events: auto;
  background-color: transparent;
}
@media (min-width: 900px) {
  .prizes-card__button:hover {
    border-radius: 24px;
    border-color: #9ed0e0;
    border-width: 4px;
    cursor: pointer;
  }
  .prizes-card__button:focus {
    border-color: #9ed0e0;
  }
}

.prizes-card__icon svg {
  position: absolute;
  right: -2px;
  bottom: -2px;
  display: block;
  width: 36px;
  height: 36px;
  border-bottom-right-radius: 8px;
}
@media (min-width: 900px) {
  .prizes-card__icon svg {
    width: 45px;
    height: 45px;
    border-bottom-right-radius: 24px;
  }
}
@media (min-width: 1200px) {
  .prizes-card__icon svg {
    width: 64px;
    height: 64px;
  }
}
.prizes-card__icon svg:hover.background {
  fill: #9ed0e0;
}

@media (min-width: 900px) {
  .prizes_icon-img-large .prizes-card__icon svg {
    width: 80px;
    height: 80px;
    border-bottom-right-radius: 24px;
  }
  .prizes_icon-img-large .prizes-card__icon svg:hover.background {
    fill: #9ed0e0;
  }
}
@media (min-width: 1200px) {
  .prizes_icon-img-large .prizes-card__icon svg {
    width: 100px;
    height: 100px;
    border-bottom-right-radius: 24px;
  }
}
.prizes-modal {
  width: 336px;
  max-width: calc(100% - 20px);
  height: 480px;
  max-height: calc(100% - 20px);
  padding: 0;
  padding-right: 20px;
  padding-bottom: 19px;
  padding-left: 20px;
  text-align: center;
  background: #fff;
  border: none;
  border-radius: 24px;
}

.prizes_card_title {
  z-index: -1;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  min-height: 46px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
  padding-right: 5px;
  text-align: center;
  background-color: #f5f5f5;
  border-radius: 0 0 0 8px;
}
@media (min-width: 600px) {
  .prizes_card_title {
    min-height: 60px;
    font-size: 14px;
  }
}
@media (min-width: 900px) {
  .prizes_card_title {
    min-height: 70px;
    padding-top: 7px;
    padding-right: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
    font-size: 16px;
    border-bottom-left-radius: 24px;
  }
}

@media (min-width: 900px) {
  .prizes_card_title .cat_text br {
    display: none;
  }
}
@media (min-width: 900px) {
  .prizes_icon-img-large .prizes_card_title {
    font-size: 20px;
    min-height: 120px;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }
}
@media (min-width: 1200px) {
  .prizes_icon-img-large .prizes_card_title {
    font-size: 20px;
    min-height: 109px;
    border-bottom-left-radius: 24px;
  }
}
.prizes_button {
  z-index: 10;
  margin-top: -20px;
  position: relative;
  padding-bottom: 4px;
  text-align: center;
}
@media (min-width: 900px) {
  .prizes_button {
    margin-top: 10px;
  }
}
@media (min-width: 1200px) {
  .prizes_button {
    margin-top: 5px;
  }
}

.prizes_background {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: -37px;
}
@media (min-width: 1200px) {
  .prizes_background {
    margin-top: 5px;
  }
}

.prizes_background img {
  display: block;
  width: 100%;
  min-width: 580px;
}
@media (min-width: 900px) {
  .prizes_background img {
    min-height: 600px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center bottom;
       object-position: center bottom;
  }
}
.prizes_background img img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* 初期設定 */
button {
  position: absolute;
  pointer-events: auto;
}

:where(dialog) {
  width: unset;
  max-width: unset;
  /* height: unset;
  max-height: unset; */
  padding: unset;
  color: unset;
  background-color: unset;
  border: unset;
  overflow: unset;
}

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

/* モーダルのスタイル ============ */
dialog::-ms-backdrop {
  opacity: 0;
  -ms-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}
dialog::backdrop {
  opacity: 0;
  -webkit-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}
dialog.js-show.modal__content {
  opacity: 1;
}
dialog.js-show::-ms-backdrop {
  opacity: 0.7;
  background: #000;
}
dialog.js-show::backdrop {
  opacity: 0.7;
  background: #000;
}

.modal__content {
  overflow: hidden;
  opacity: 0;
  /* モーダル枠組みのスタイル */
  width: min(335px, 95%);
  max-height: 80vh;
  /* 必要に応じて追加 */
  /* 必要に応じて調整 */
}
@media (min-width: 600px) {
  .modal__content {
    width: 400px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (min-width: 900px) {
  .modal__content {
    width: 480px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (min-width: 1200px) {
  .modal__content {
    width: 480px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.modal__inner {
  height: inherit;
  max-height: inherit;
  position: relative;
}

.modal__body {
  max-width: calc(100% - 20px);
  height: 460px;
  max-height: calc(100% - 20px);
  padding: 0;
  padding-right: 20px;
  padding-bottom: 19px;
  padding-left: 20px;
  text-align: center;
  background: #fff;
  border: none;
  border-radius: 24px;
}
@media (min-width: 600px) {
  .modal__body {
    padding-bottom: 80px;
  }
}
@media (min-width: 900px) {
  .modal__body {
    padding-bottom: 170px;
  }
}
@media (min-width: 1200px) {
  .modal__body {
    padding-bottom: 200px;
  }
}

.modal__img {
  width: calc(100% + 40px);
  margin-left: -20px;
  border-radius: 24px 24px 0 0;
}
.modal__img img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-radius: 24px 24px 0 0;
  height: 210px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .modal__img img {
    height: 250px;
  }
}
@media (min-width: 900px) {
  .modal__img img {
    height: 300px;
  }
}
@media (min-width: 1200px) {
  .modal__img img {
    height: 300px;
  }
}

/* コピペしたもの ========== */
.modal__text {
  margin-top: 39px;
}
.modal__text h3 {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
}
@media (min-width: 600px) {
  .modal__text h3 {
    font-size: 20px;
  }
}

.modal__text-career {
  font-size: 12px;
  line-height: 18px;
  /* 150% */
  margin-bottom: 22px;
}

.modal__text-wrap {
  margin-top: 12px;
  color: #000;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 160%;
  /* 19.2px */
}
@media (min-width: 600px) {
  .modal__text-wrap {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .modal__text-wrap {
    font-size: 16px;
    line-height: 1.7;
  }
}

.modal__text-history .head {
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  /* 112.5% */
  margin-bottom: 12px;
}
.modal__text-history .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 1em;
     -moz-column-gap: 1em;
          column-gap: 1em;
  font-size: 12px;
  line-height: 18px;
  /* 150% */
}

/* 閉じるボタンのスタイル ========== */
.modal__close-btn {
  margin-top: 16px;
  display: inline-block;
  padding-top: 4px;
  padding-right: 22px;
  padding-bottom: 6px;
  padding-left: 22px;
  font-size: 16px;
  font-weight: 700;
  color: #4a3636;
  text-align: center;
  cursor: pointer;
  background: #fff;
  border: 2px solid #4a3636;
  border-radius: 40px;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
  box-shadow: 0px 4px 0px 0px #4a3636;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.modal__close-btn a {
  color: #000;
}
@media (min-width: 900px) {
  .modal__close-btn {
    margin-top: 24px;
    padding-top: 15px;
    padding-right: 37px;
    padding-bottom: 15px;
    padding-left: 37px;
    font-size: 20px;
    border-width: 3px;
  }
}

.spots {
  position: relative;
  padding-top: 45.7px;
  padding-bottom: 45.7px;
  margin-top: -39.7px;
}
@media (min-width: 900px) {
  .spots {
    overflow: hidden;
    margin-top: -120px;
    padding-bottom: 55.7px;
  }
}
@media (min-width: 1200px) {
  .spots {
    margin-top: -120px;
  }
}
.spots::before, .spots::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 45.7px;
  content: "";
  background-color: transparent;
  background-repeat: repeat-x;
  background-position: left -3px center;
  background-size: contain;
  z-index: 1;
}
.spots::before {
  top: 1px;
  background-image: url(../img/spots_deco_wave_top_sp.svg), linear-gradient(to bottom, transparent 13px, #67b0c7 13px);
}
@media (min-width: 900px) {
  .spots::before {
    height: 120px;
    background-image: url(../img/spots_deco_wave_top_pc.svg), linear-gradient(to bottom, transparent 33px, #67b0c7 33px);
  }
}
.spots::after {
  bottom: 1px;
  background-image: url(../img/spots_deco_wave_bottom_sp.svg);
  background-position: left -6px center;
}
@media (min-width: 900px) {
  .spots::after {
    height: 120px;
    bottom: -1px;
    background-image: url(../img/spots_deco_wave_bottom_pc.svg);
  }
}
@media (min-width: 1200px) {
  .spots::after {
    height: 120px;
    bottom: 18px;
    background-image: url(../img/spots_deco_wave_bottom_pc.svg);
  }
}

.spots_bg_pawpads {
  display: none;
}
@media (min-width: 900px) {
  .spots_bg_pawpads {
    display: block;
    position: absolute;
    width: 80px;
    bottom: 120px;
    left: 0;
  }
}
@media (min-width: 1200px) {
  .spots_bg_pawpads {
    z-index: 2;
    left: calc(50% - 685px);
    bottom: 100px;
    width: 100px;
  }
}
@media (min-width: 1340px) {
  .spots_bg_pawpads {
    left: calc(50% - 718px);
    bottom: 139px;
  }
}

.spots_top {
  background-color: #67B0C7;
}
@media (min-width: 900px) {
  .spots_top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 80px;
  }
}

.spots_heading_wrap {
  text-align: center;
  padding-bottom: 26px;
}

.spots_heading {
  position: relative;
  display: inline-block;
  padding-left: 36px;
  font-family: "kiwi maru", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
  color: #fff;
}
@media (min-width: 900px) {
  .spots_heading {
    font-size: 40px;
    padding-top: 72px;
    letter-spacing: 0.25em;
  }
}
@media (min-width: 1200px) {
  .spots_heading {
    padding-left: 85px;
  }
}
@media (min-width: 1340px) {
  .spots_heading {
    padding-left: 252px;
    margin-top: -15px;
  }
}
.spots_heading::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 28px;
  height: 28px;
  content: "";
  background-image: url(../img/spots_star_icon.svg);
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (min-width: 900px) {
  .spots_heading::before {
    width: 56px;
    height: 56px;
    left: 34%;
    top: 20px;
  }
}
@media (min-width: 1200px) {
  .spots_heading::before {
    left: 60%;
  }
}
@media (min-width: 1340px) {
  .spots_heading::before {
    left: 80%;
    top: 36px;
  }
}

@media (min-width: 900px) {
  .card {
    outline: 50px;
  }
}
@media (min-width: 1200px) {
  .card {
    padding-left: 6px;
    margin-top: -7px;
  }
}

.card__swiper-container {
  position: relative;
}

.card__swiper-slide {
  display: block;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff;
  width: 240px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 12px;
}
@media (min-width: 900px) {
  .card__swiper-slide {
    width: 346px;
    border-radius: 24px;
    margin-left: 16px;
  }
}
@media (min-width: 1200px) {
  .card__swiper-slide {
    width: 300px;
  }
}
@media (min-width: 1340px) {
  .card__swiper-slide {
    width: 344px;
  }
}

/* ================================
   本題のCSS
=============================== */
.card__swiper-container,
.card__swiper,
.card__swiper-wrapper,
.card__swiper-slide {
  position: relative;
}

/* 位置のreset */
.swiper-button-prev,
.swiper-button-next,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  top: unset;
  bottom: unset;
  left: unset;
  right: unset;
  margin: 0;
  padding: 0;
}

/* =============================
   ナビゲーションボタン
============================= */
/* デフォルトのボタンを初期化 */
.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  /* デフォルトのものを初期化 */
}

/* 各ボタンのカスタマイズ */
.swiper-button-prev,
.swiper-button-next {
  display: none;
}
@media (min-width: 900px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: block;
    position: absolute;
  }
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
}

.swiper-button-prev {
  display: none;
}
@media (min-width: 900px) {
  .swiper-button-prev {
    position: absolute;
    display: block;
    width: 80px;
    height: 80px;
    background-color: #ffee56;
    background-repeat: no-repeat;
    background-size: 16px 27px;
    border-radius: 50%;
    -webkit-transition: background-position 0.3s;
    transition: background-position 0.3s;
    left: calc(50% - 1330px);
    bottom: -45px;
    z-index: 2;
  }
}
@media (min-width: 900px) and (min-width: 1200px) {
  .swiper-button-prev {
    left: calc(50% - 1190px);
    bottom: -25px;
  }
}
@media (min-width: 900px) and (min-width: 1340px) {
  .swiper-button-prev {
    left: calc(50% - 1340px);
  }
}

.swiper-button-next {
  display: none;
}
@media (min-width: 900px) {
  .swiper-button-next {
    display: block;
    width: 80px;
    height: 80px;
    background-color: #ffee56;
    background-repeat: no-repeat;
    background-size: 16px 27px;
    border-radius: 50%;
    -webkit-transition: background-position 0.3s;
    transition: background-position 0.3s;
    left: 24%;
    bottom: -45px;
  }
}
@media (min-width: 1200px) {
  .swiper-button-next {
    left: 37%;
    bottom: -25px;
  }
}
@media (min-width: 1340px) {
  .swiper-button-next {
    left: 32%;
  }
}

/* =============================
   ページネーション (bullets)
============================= */
/* 位置の設定 (枠組み) */
.swiper-pagination-bullets.swiper-pagination-horizontal {
  display: none;
}

/* それぞれのページネーション */
.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
  opacity: 1;
  width: 12px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  margin-inline: 5.5px;
}

/* activeな部分 */
.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet-active {
  background: #000;
}

.swiper_card-image {
  display: block;
  width: 240px;
}
@media (min-width: 900px) {
  .swiper_card-image {
    width: 346px;
  }
}
@media (min-width: 1200px) {
  .swiper_card-image {
    width: 300px;
  }
}
@media (min-width: 1340px) {
  .swiper_card-image {
    width: 344px;
  }
}
.swiper_card-image img {
  border-top-right-radius: 12px;
  border-top-left-radius: 12px;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
@media (min-width: 900px) {
  .swiper_card-image img {
    border-top-right-radius: 24px;
    border-top-left-radius: 24px;
  }
}
@media (min-width: 1200px) {
  .swiper_card-image img {
    height: 240px;
    width: 100%;
  }
}

.swiper_text-wrap {
  padding-top: 16px;
  padding-bottom: 30px;
}
@media (min-width: 900px) {
  .swiper_text-wrap {
    padding-top: 25px;
    padding-bottom: 40px;
  }
}

.swiper_card-heading {
  color: #4a3636;
  text-align: center;
  font-family: "noto sans jp";
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}
@media (min-width: 900px) {
  .swiper_card-heading {
    font-size: 20px;
  }
}

.swiper_card-text {
  color: #4a3636;
  font-family: "noto sans jp";
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  padding-top: 16px;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 900px) {
  .swiper_card-text {
    padding-top: 25px;
    font-size: 17px;
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 1200px) {
  .swiper_card-text {
    font-size: 16px;
    padding-left: 32px;
    padding-right: 32px;
  }
}

.spots_bottom {
  background-color: #67B0C7;
}
@media (min-width: 900px) {
  .spots_bottom {
    padding-bottom: 80px;
  }
}
@media (min-width: 1200px) {
  .spots_bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
  }
}

.spots_logo_english {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 255px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  padding-bottom: 16px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .spots_logo_english {
    width: 360px;
  }
}
@media (min-width: 1200px) {
  .spots_logo_english {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    /* 要素のサイズを固定 */
    margin-right: 20px;
    /* 必要に応じて調整 */
    position: absolute;
    width: 494px;
    left: calc(7% + 20px);
    top: 40px;
  }
}
@media (min-width: 1340px) {
  .spots_logo_english {
    left: calc(7% + 140px);
    top: 66px;
  }
}

.spots_bottom_wrap {
  font-size: 11.444px;
  text-align: center;
  font-family: "noto sans jp";
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
  padding-bottom: 24px;
}
@media (min-width: 900px) {
  .spots_bottom_wrap {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .spots_bottom_wrap {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    /* 残りのスペースを占有 */
    margin-right: 20px;
    /* 必要に応じて調整 */
    position: absolute;
    font-size: 16px;
    left: calc(50% + 64px);
    top: 66px;
  }
}

.spots_button {
  position: relative;
  padding-bottom: 19px;
  text-align: center;
}
@media (min-width: 900px) {
  .spots_button {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    /* 要素のサイズを固定 */
  }
}
@media (min-width: 1200px) {
  .spots_button {
    left: calc(50% + 73px);
    padding-top: 117px;
  }
}

.qa {
  padding-bottom: 29px;
}
@media (min-width: 900px) {
  .qa {
    margin-top: 120px;
  }
}
@media (min-width: 1200px) {
  .qa {
    margin-top: 57px;
  }
}

.qa_inner {
  padding-left: 20px;
  padding-right: 20px;
  max-width: 640px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 900px) {
  .qa_inner {
    padding-left: 30px;
    padding-right: 30px;
    max-width: 1084px;
  }
}

.qa_title {
  padding-top: 40px;
  padding-bottom: 24px;
  padding-left: 82.5px;
  padding-right: 82.5px;
}

.qa_heading {
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  padding-top: 43px;
}
.qa_heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  background-image: url("../img/qa-icon.svg");
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  width: 37px;
  height: 37px;
}
@media (min-width: 900px) {
  .qa_heading::before {
    top: 4px;
    width: 48px;
    height: 48px;
  }
}
.qa_heading::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding-top: 10px;
  border-bottom: 6px solid var(--LP-Yellow, #FFEE56);
  width: 140px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (min-width: 900px) {
  .qa_heading::after {
    width: 220px;
    padding-top: 0;
  }
}

.heading_english {
  color: #4a3636;
  text-align: center;
  font-family: Courgette;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  padding-bottom: 6px;
}
@media (min-width: 900px) {
  .heading_english {
    font-size: 20px;
    padding-top: 15px;
  }
}

.heading_japanese {
  color: var(--LP-Blown, #4A3636);
  text-align: center;
  font-family: "Kiwi Maru";
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
}
@media (min-width: 900px) {
  .heading_japanese {
    font-size: 32px;
    padding-bottom: 12px;
    border-width: 8px;
    padding-top: 4px;
  }
}

.qa_boxes {
  margin-top: 13px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 9px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 900px) {
  .qa_boxes {
    max-width: 1024px;
    margin-top: 40px;
    gap: 24px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (min-width: 1200px) {
  .qa_boxes {
    margin-top: 20px;
  }
}

.qa_box {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 12px;
  border: 2px solid #4a3636;
  overflow: hidden;
}
@media (min-width: 900px) {
  .qa_box {
    border-radius: 16px;
  }
}

.qa-box_head {
  padding: 12px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
  background-color: #fff;
  border: none;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media (min-width: 900px) {
  .qa-box_head {
    padding-top: 20px;
    padding-bottom: 19px;
    padding-right: 22px;
    padding-left: 22px;
  }
}

.qa_box-head_icon {
  color: #9ED0E0;
  font-family: "josefin sans";
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* フレックスボックスを適用 */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 900px) {
  .qa_box-head_icon {
    font-size: 32px;
  }
}

.qa_box-head_text {
  color: #4a3636;
  font-family: "noto sans jp";
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  text-align: left;
  width: 100%;
}
@media (min-width: 900px) {
  .qa_box-head_text {
    font-size: 20px;
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
}

.qa_box-heading_button {
  position: relative;
  display: block;
  width: 26px;
  height: 26px;
  background-color: #9ED0E0;
  border-radius: 50%;
}
@media (min-width: 900px) {
  .qa_box-heading_button {
    width: 50px;
    height: 50px;
  }
}
.qa_box-heading_button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: #fff;
  border-radius: 50px;
  -webkit-transition: -webkit-transform 0s;
  transition: -webkit-transform 0s;
  transition: transform 0s;
  transition: transform 0s, -webkit-transform 0s;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  /* 中央に配置 */
}
@media (min-width: 900px) {
  .qa_box-heading_button::before {
    width: 19px;
    height: 3px;
  }
}
.qa_box-heading_button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: #fff;
  border-radius: 50px;
  -webkit-transition: -webkit-transform 0s;
  transition: -webkit-transform 0s;
  transition: transform 0s;
  transition: transform 0s, -webkit-transform 0s;
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}
@media (min-width: 900px) {
  .qa_box-heading_button::after {
    width: 19px;
    height: 3px;
  }
}
.qa_box-heading_button.is-open::before {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}
.qa_box-heading_button.is-open::after {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}

.qa_box.is-open {
  display: block;
}

.qa_box-body {
  display: block;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #f5f5f5;
}

.qa_box-a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 16px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  border: none;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 1200px) {
  .qa_box-a {
    padding: 22px 16px;
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
  }
}

.qa_box-a_icon {
  color: #9ED0E0;
  font-family: "josefin sans";
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
}
@media (min-width: 900px) {
  .qa_box-a_icon {
    font-size: 32px;
  }
}

.qa_box-a_text {
  color: #4a3636;
  font-family: "noto sans jp";
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
@media (min-width: 900px) {
  .qa_box-a_text {
    font-size: 16px;
  }
}

@media (min-width: 900px) {
  .entry {
    padding-top: 58px;
  }
}
@media (min-width: 1200px) {
  .entry {
    padding-top: 88px;
  }
}

.entry_inner {
  max-width: 640px;
  padding-left: 20px;
  padding-right: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 900px) {
  .entry_inner {
    max-width: 1024px;
    padding-right: 30px;
    padding-left: 30px;
  }
}

.entry_contents {
  margin-top: -1px;
  border: 8px solid var(--LP-White, #FFF);
  background: rgba(255, 255, 255, 0.5);
  padding-left: 15.5px;
  padding-right: 15.5px;
  padding-top: 15.5px;
  padding-bottom: 13px;
}
@media (min-width: 900px) {
  .entry_contents {
    max-width: 912px;
    padding-top: 35px;
    padding-right: 48px;
    padding-left: 48px;
    padding-bottom: 44px;
  }
}
@media (min-width: 1200px) {
  .entry_contents {
    padding-bottom: 28px;
  }
}

.entry_title {
  position: relative;
  padding-top: 43px;
  text-align: center;
}
.entry_title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  background-image: url("../img/entry_icon.svg");
  width: 37.33px;
  height: 37.33px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 900px) {
  .entry_title::before {
    width: 48px;
    height: 48px;
  }
}
@media (min-width: 1200px) {
  .entry_title {
    padding-top: 49px;
  }
}

.heading_en {
  color: var(--LP-Blown, #4A3636);
  font-family: Courgette;
  font-size: 16px;
  font-weight: 400;
  height: 20px;
  line-height: 1.25;
}
@media (min-width: 900px) {
  .heading_en {
    font-size: 20px;
    font-weight: 400;
    margin-top: 8px;
  }
}

.heading_ja {
  display: inline-block;
  padding-bottom: 6px;
  margin-top: 6px;
  font-family: "Kiwi Maru", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  border-bottom: 6px solid #ffee56;
}
@media (min-width: 900px) {
  .heading_ja {
    font-size: 32px;
    margin-top: 8px;
  }
}
@media (min-width: 1200px) {
  .heading_ja {
    margin-top: 11px;
  }
}

.entry_boxes {
  padding-top: 15px;
}
@media (min-width: 900px) {
  .entry_boxes {
    padding-top: 40px;
  }
}
@media (min-width: 1200px) {
  .entry_boxes {
    padding-top: 44px;
  }
}

@media (min-width: 1200px) {
  .entry_boxes .entry_box:nth-of-type(1) {
    padding-top: 0;
  }
}

.entry_box {
  text-align: left;
  padding-top: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--LP-Dark-Gray, #CCC);
}
@media (min-width: 900px) {
  .entry_box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-left: 16px;
    gap: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 900px) {
  .entry_box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-left: 16px;
    gap: 37px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.entry_box:last-child {
  border-bottom: none;
}

.box_title {
  color: var(--LP-Blown, #4A3636);
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
@media (min-width: 900px) {
  .box_title {
    width: 188px;
    font-size: 16px;
  }
}
.box_title::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: #9ED0E0;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-top: 12px;
}

.box_text {
  color: var(--LP-Blown, #4A3636);
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-weight: 400;
  line-height: 1.59;
  padding-top: 8px;
}
@media (min-width: 900px) {
  .box_text {
    font-size: 16px;
    margin: 0;
    width: calc(100% - 224px);
    padding-top: 0;
  }
}
.box_text li {
  list-style-type: none;
  position: relative;
  padding-left: 1.5em;
}
.box_text li::before {
  content: "•";
  position: absolute;
  top: 0.1em;
  left: 0.6em;
  font-size: 1em;
}

.entry_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
@media (min-width: 900px) {
  .entry_bottom {
    padding-top: 44px;
  }
}
@media (min-width: 1200px) {
  .entry_bottom {
    padding-top: 123px;
  }
}

.bottom_image {
  text-align: center;
  width: 100%;
}
.bottom_image img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
@media (min-width: 900px) {
  .bottom_image img {
    width: 100%;
    max-width: none;
  }
}

.contact {
  padding-top: 43px;
  padding-bottom: 40px;
  background-color: #fff;
}
@media (min-width: 900px) {
  .contact {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.contact_inner {
  max-width: 640px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 900px) {
  .contact_inner {
    max-width: 1084px;
    margin: 0 auto;
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media (min-width: 900px) {
  .contact_contents {
    max-width: 848px;
    /* 必要に応じて最大幅を調整 */
    margin: 0 auto;
    /* 中央揃え */
  }
}

.contact_title {
  padding-top: 40px;
  text-align: center;
  position: relative;
}
@media (min-width: 900px) {
  .contact_title {
    padding-top: 45px;
  }
}
.contact_title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  background-image: url("../img/contact_header_icon.svg");
  width: 37.33px;
  height: 37.33px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 900px) {
  .contact_title::before {
    width: 48px;
    height: 48px;
  }
}

.contact_heading_en {
  color: var(--LP-Blown, #4A3636);
  font-family: Courgette;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
}
@media (min-width: 900px) {
  .contact_heading_en {
    padding-top: 8px;
    font-size: 20px;
  }
}

.contact_heading_ja {
  display: inline-block;
  color: var(--LP-Blown, #4A3636);
  font-family: "Kiwi Maru";
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  border-bottom: 6px solid #ffee56;
  padding-top: 6px;
  padding-bottom: 6px;
}
@media (min-width: 900px) {
  .contact_heading_ja {
    font-size: 32px;
    padding-top: 8px;
    padding-bottom: 8px;
    border-bottom: 8px solid #ffee56;
  }
}

.contact_title_text {
  margin-top: 24px;
  text-align: center;
  display: block;
  width: 100%;
}
@media (min-width: 900px) {
  .contact_title_text {
    margin-top: 32px;
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .contact_title_text {
    margin-top: 38px;
  }
}

.inline-block {
  display: inline-block;
  width: 100%;
}

@media (min-width: 900px) {
  .inline-block br {
    display: none;
  }
}

.contact__form {
  margin-top: 27px;
}
@media (min-width: 900px) {
  .contact__form {
    margin-top: 40px;
  }
}

.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: 30px;
}
@media (min-width: 1200px) {
  .contact__fields {
    gap: 22px;
  }
}

@media (min-width: 1200px) {
  .contact__field:nth-of-type(2) .form-field__head {
    margin-top: 10px;
  }
}

@media (min-width: 1200px) {
  .contact__field:nth-of-type(4) .form-field__head {
    margin-top: 10px;
  }
}

@media (min-width: 1200px) {
  .contact__field:nth-of-type(3) .form-field {
    margin-top: 5px;
  }
}

.contact__privacy {
  margin-top: 17px;
  text-align: center;
  margin-left: 2px;
}
@media (min-width: 900px) {
  .contact__privacy {
    margin-top: 40px;
  }
}

.contact__button {
  margin-top: 29px;
  text-align: center;
}
@media (min-width: 900px) {
  .contact__button {
    margin-top: 40px;
  }
}

@media (min-width: 900px) {
  .form-field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    height: 56px;
  }
}

@media (min-width: 900px) {
  .form-field-5 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.form-field__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media (min-width: 900px) {
  .form-field__head {
    width: 180px;
  }
}

.form-field__label {
  font-weight: 700;
  line-height: 1.6;
  font-size: 14px;
  font-weight: 700;
  font-family: "noto sans jp";
}
@media (min-width: 900px) {
  .form-field__label {
    font-size: 16px;
  }
}

/* 5つ目の form-field__label に特定のスタイルを適用 */
.form-field:nth-of-type(5) .form-field__head {
  /* 特定のスタイル */
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  /* 例: テキストの色を赤にする */
}

.form-field__tag {
  display: inline-block;
  border-radius: 4px;
  background: #ce2073;
  padding: 4px 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  font-family: "noto sans jp";
}

.form-field__item {
  margin-top: 7px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.form-text {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  border-radius: 8px;
  border: 1px solid transparent;
  background: #F5F5F5;
  padding: 16px;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
@media (min-width: 900px) {
  .form-text {
    font-size: 16px;
  }
}
.form-text:hover, .form-text:focus {
  border-color: #9ED0E0;
  outline: none;
  background-color: #e0f2f8;
}

.from-radio {
  line-height: 1.4375;
}
.from-radio:hover .from-radio__text::before {
  outline: none;
  background-color: #e0f2f8;
}

.from-radio__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.from-radio__input:checked + .from-radio__text::after {
  opacity: 1;
}

.from-radio__text {
  font-weight: 400;
  padding-left: 32px;
  position: relative;
  font-size: 14px;
}
@media (min-width: 900px) {
  .from-radio__text {
    font-size: 16px;
  }
}
.from-radio__text::before, .from-radio__text::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}
.from-radio__text::before {
  width: 24px;
  height: 24px;
  border: 1px solid transparent;
  left: 0;
  background: #f5f5f5;
}
.from-radio__text::after {
  width: 12px;
  height: 12px;
  background: #9ED0E0;
  left: 7px;
  opacity: 0;
}

.from-radio__input:checked + .from-radio__text::before {
  border-color: #9ED0E0;
  font-weight: 700;
  /* チェック時のボーダー色 */
}
.from-radio__input:checked + .from-radio__text::after {
  opacity: 1;
  /* チェック時のチェックマーク表示 */
}

.form-select {
  position: relative;
  color: #4a3636;
  font-family: "noto sans jp";
  font-size: 14px;
  line-height: 1.6;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  font-weight: 400;
  padding: 16px;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  border-radius: 8px;
  border: 1px solid transparent;
  background: #F5F5F5;
  background-image: url(../img/contact_check_icon.svg), linear-gradient(to left, #9ed0e0 52px, #f5f5f5 52px);
  background-repeat: no-repeat, no-repeat;
  background-position: center right 10.65px, center center;
  background-size: 33px 33px, cover;
}
@media (min-width: 900px) {
  .form-select {
    font-size: 16px;
  }
}
.form-select:hover, .form-select:focus {
  border-color: #9ED0E0;
  outline: none;
  background-color: #e0f2f8;
}

.form-textarea {
  border-radius: 8px;
  border: 1px solid transparent;
  background: #f5f5f5;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 16px;
  font-size: 14px;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  height: 160px;
  line-height: 1.6;
}
@media (min-width: 900px) {
  .form-textarea {
    font-size: 16px;
  }
}
.form-textarea:hover, .form-textarea:focus {
  border-color: #9ED0E0;
  outline: none;
  background-color: #e0f2f8;
}

.form-field__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 24px;
}
@media (min-width: 900px) {
  .form-field__radios {
    padding-top: 10px;
  }
}

.form-field__radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-checkbox:hover .form-checkbox__text::before {
  border-color: #9ED0E0;
}

.form-checkbox__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-checkbox__input:checked + .form-checkbox__text::after {
  opacity: 1;
}
.form-checkbox__input:focus + .form-checkbox__text::before {
  border-color: #9ED0E0;
}
.form-checkbox__input:not(:checked) + .form-checkbox__text::before {
  border-color: #CE2073;
  /* チェックが外れた時の外枠の色を赤に設定 */
  background-color: #fff0f7;
}

.form-checkbox__text {
  position: relative;
  padding-left: 30px;
  font-size: 14px;
  font-weight: 400;
}
@media (min-width: 900px) {
  .form-checkbox__text {
    font-size: 16px;
  }
}
.form-checkbox__text::before, .form-checkbox__text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form-checkbox__text::before {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid transparent;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  background: #f5f5f5;
}
.form-checkbox__text::after {
  top: 50%;
  left: 5px;
  width: 14px;
  height: 9px;
  background-image: url(../img/contact-icon.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  opacity: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form-checkbox__text a {
  text-decoration-line: underline;
  font-weight: 700;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.form-checkbox__text a:hover {
  color: #f5810e;
}

.contact-button {
  display: inline-block;
  padding-top: 4px;
  padding-right: 22px;
  padding-bottom: 6px;
  padding-left: 23px;
  font-size: 16px;
  font-weight: 700;
  color: #4a3636;
  text-align: center;
  cursor: pointer;
  background: #fff;
  border: 2px solid #4a3636;
  border-radius: 40px;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media (min-width: 900px) {
  .contact-button {
    width: 240px;
  }
  .contact-button:hover {
    background: var(--LP-Yellow, #FFEE56);
  }
}

.footer {
  position: relative;
  background: #E9F6F8;
  padding-top: 44px;
}
@media (min-width: 900px) {
  .footer {
    overflow: hidden;
    padding-top: 120px;
  }
}

.footer_inner {
  position: relative;
  max-width: 640px;
  padding-left: 20px;
  padding-right: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 900px) {
  .footer_inner {
    max-width: 1084px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

.footer_bg {
  display: none;
}
@media (min-width: 900px) {
  .footer_bg {
    display: block;
    position: absolute;
    -webkit-transform: scaleY(-1);
            transform: scaleY(-1);
    /* 上下、左右反転 */
    top: -50px;
    right: 0;
    width: 70px;
  }
}
@media (min-width: 1200px) {
  .footer_bg {
    right: auto;
    left: calc(50% + 578px);
    width: 100px;
    top: -35px;
  }
}
.footer_bg img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.footer_title_en {
  position: relative;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
  color: #4a3636;
  font-family: "josefin sans";
}
@media (min-width: 900px) {
  .footer_title_en {
    font-size: 24px;
  }
}

.icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 24px;
  gap: 40px;
}
@media (min-width: 1200px) {
  .icons {
    margin-top: 27px;
  }
}

.icon {
  width: 32px;
  height: 32px;
  background-size: contain;
  background-repeat: no-repeat;
  /* アイコン間の間隔を調整 */
}
@media (min-width: 900px) {
  .icon {
    width: 40px;
    height: 40px;
  }
}

.icon1 {
  background-image: url("../img/footer_ytb.svg");
}

.icon2 {
  background-image: url("../img/footer_instagram.svg");
}

.icon3 {
  background-image: url("../img/footer_twitter.svg");
}

.footer_onomichi {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  padding-top: 13px;
  width: 326px;
}
@media (min-width: 900px) {
  .footer_onomichi {
    width: 755px;
    padding-top: 30px;
  }
}
@media (min-width: 1200px) {
  .footer_onomichi {
    padding-top: 41px;
  }
}
.footer_onomichi img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.footer_google_map {
  max-width: 100%;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 16px;
}

.google_map_contents {
  position: relative;
  background-color: #fff;
  margin-right: auto;
  margin-left: auto;
  max-width: 640px;
  /* 335px / 271px のアスペクト比を維持 */
}
@media (min-width: 900px) {
  .google_map_contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    max-width: 1024px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 16px;
  }
}

.google_map {
  width: 100%;
  height: auto;
}
@media (min-width: 900px) {
  .google_map {
    width: 50%;
  }
}
.google_map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 335/271;
  vertical-align: top;
}
@media (min-width: 900px) {
  .google_map iframe {
    aspect-ratio: 512/400;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
  }
}

.footer_text_wrap {
  text-align: center;
  padding-top: 24px;
  padding-left: 18px;
  padding-right: 18px;
  padding-bottom: 24px;
  width: 100%;
  margin: 0 auto;
  max-width: 300px;
}
@media (min-width: 600px) {
  .footer_text_wrap {
    max-width: 350px;
  }
}
@media (min-width: 900px) {
  .footer_text_wrap {
    padding: 10px;
    margin-right: 34px;
    margin-left: 34px;
  }
}
@media (min-width: 900px) {
  .footer_text_wrap {
    margin-right: auto;
    margin-left: auto;
    max-width: 400px;
  }
}

.footer_wrap_logo {
  width: 153px;
  height: auto;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 900px) {
  .footer_wrap_logo {
    width: 183px;
    margin-left: 5px;
  }
}

.footer_boxes {
  margin-top: 29px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 900px) {
  .footer_boxes {
    gap: 12px;
  }
}

.footer_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 600px) {
  .footer_box {
    gap: 16px;
  }
}
@media (min-width: 900px) {
  .footer_box {
    gap: 36px;
  }
}

.f_box_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  padding-left: 8px;
  width: 80px;
}
@media (min-width: 600px) {
  .f_box_title {
    font-size: 14px;
  }
}
@media (min-width: 900px) {
  .f_box_title {
    font-size: 16px;
  }
}
.f_box_title::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: #9ED0E0;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-top: 10px;
  margin-right: 8px;
}

.f_box_text {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}
@media (min-width: 600px) {
  .f_box_text {
    font-size: 14px;
  }
}
@media (min-width: 900px) {
  .f_box_text {
    font-size: 16px;
  }
}

.footer_pagetop {
  display: block;
  margin-top: 8px;
  text-align: center;
  position: relative;
}
.footer_pagetop button {
  width: 75px;
  border: none;
  /* ボーダーをリセット */
  background: none;
  /* 背景をリセット */
  padding: 0;
  /* パディングをリセット */
}
@media (min-width: 1200px) {
  .footer_pagetop button {
    width: 100px;
  }
}
.footer_pagetop img {
  border: none;
  /* 画像のボーダーをリセット */
}

.pagetop {
  position: relative;
  left: calc(50% - 45px);
  cursor: pointer;
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}
@media (min-width: 900px) {
  .pagetop {
    position: fixed;
    left: auto;
    bottom: 20px;
    right: 20px;
    z-index: 2;
  }
}

.footer_bottom {
  position: relative;
  margin-top: 48px;
  text-align: center;
  padding-bottom: 24px;
  background: #67b0c7;
  color: #fff;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.6;
  font-family: "noto sans jp";
}
@media (min-width: 900px) {
  .footer_bottom {
    margin-top: 150px;
  }
}
@media (min-width: 1200px) {
  .footer_bottom {
    margin-top: 159px;
  }
}
.footer_bottom::before {
  position: absolute;
  left: 0;
  width: 100%;
  height: 45px;
  content: "";
  background-color: transparent;
  background-repeat: repeat-x;
  background-position: left -3px center;
  background-size: contain;
  z-index: 1;
  top: -43px;
  background-image: url(../img/spots_deco_wave_top_sp.svg), linear-gradient(to bottom, transparent 13px, #67b0c7 13px);
}
@media (min-width: 900px) {
  .footer_bottom::before {
    height: 120px;
    background-position: left center;
    background-image: url(../img/spots_deco_wave_top_pc.svg), linear-gradient(to bottom, transparent 33px, #67b0c7 33px);
  }
}

@media (min-width: 900px) {
  .bottom_text {
    position: relative;
    font-size: 14px;
    padding-top: 90px;
    z-index: 1;
  }
}
@media (min-width: 1200px) {
  .bottom_text {
    position: relative;
    font-size: 14px;
    padding-top: 77px;
    z-index: 1;
  }
}