@charset "UTF-8";
:target {
  scroll-margin-top: 20px;
}

.header {
  height: var(--header-height);
}

.target {
  scroll-margin-top: var(--header-height);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Kiwi Maru", "Noto Serif", "Courgette", "Josefin Sans", "Cursive", "Sans-serif", "Serif";
  color: #4A3636;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
  background-color: #E9F6F8;
}

@media screen and (min-width:768px) {
  .wrapper {
    width: 1512px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 1200px;
  z-index: 999;
}

.header__inner {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 64px;
  background-color: #FFFFFF;
}
@media screen and (min-width:768px) {
  .header__inner {
    width: 1520px;
  }
}

.header__logo {
  margin-left: 20px;
  width: 210px;
  height: 24px;
}
@media screen and (min-width:768px) {
  .header__logo {
    margin-left: 24px;
  }
}

.header__open {
  opacity: 1;
  position: fixed;
  display: flex;
  top: 23px;
  right: 20px;
  width: 32px;
  height: 24px;
  flex-direction: column;
  background-color: #FFFFFF;
  z-index: 20;
}
@media screen and (min-width:768px) {
  .header__open {
    opacity: 0;
  }
}

.drawer-icon {
  display: flex;
  position: fixed;
  flex-direction: column;
  top: 23px;
  right: 20px;
  width: 32px;
  height: 24px;
  gap: 9px;
  z-index: 50;
  cursor: pointer;
}
.drawer-icon.is-checked .drawer-iconbar:nth-child(3) {
  transform: translateY(9px) rotate(45deg);
  top: 0px;
  transition: transform 0.4s;
}
.drawer-icon.is-checked .drawer-iconbar:nth-child(4) {
  transform: translateY(-9px) rotate(-45deg);
  top: 17.5px;
  transition: transform 0.4s;
}
.drawer-icon.is-checked .drawer-iconbar:nth-child(1), .drawer-icon.is-checked .drawer-iconbar:nth-child(2) {
  opacity: 0;
}
@media screen and (min-width:768px) {
  .drawer-icon {
    display: none;
  }
}

.top {
  position: absolute;
  left: 0;
  width: 25.6px;
  height: 3px;
  border-radius: 6px;
  background-color: #4A3636;
}

.second {
  position: absolute;
  left: 27px;
  width: 4.8px;
  height: 3px;
  border-radius: 6px;
  background-color: #4A3636;
}

.third {
  position: absolute;
  top: 9px;
  width: 32px;
  height: 3px;
  border-radius: 6px;
  background-color: #4A3636;
}

.bottom {
  position: absolute;
  top: 18px;
  width: 32px;
  height: 3px;
  border-radius: 6px;
  background-color: #4A3636;
}

.drawer-content {
  background-color: #FFFFFF;
  position: fixed;
  width: 100%;
  transform: translateX(-100%);
  transition: transform 0.4s;
}
.drawer-content.is-checked {
  transform: translateX(0);
}

.drawer-content__menu {
  position: relative;
  top: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 1200px;
  padding: 82px 114px 82px 114px;
  gap: 40px;
  z-index: 100;
}

.header__nav {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-left: auto;
  margin-right: 20px;
  height: 64px;
  gap: 12px;
  font-family: "Kiwi Maru", "Noto Serif";
  display: none;
  z-index: 100;
}
@media screen and (min-width:768px) {
  .header__nav {
    display: flex;
  }
}
@media screen and (min-width:1024px) {
  .header__nav {
    display: flex;
  }
}

.entry-button__small {
  height: 40px;
  padding: 6px 24px 8px 24px;
  border: 2px solid #4A3636;
  border-radius: 40px;
  box-shadow: 0px 4px 0px 0px #4A3636;
  background-color: #FFFFFF;
  font-family: "Kiwi Maru", "Noto Serif";
  color: #4A3636;
  font-size: 14px;
  font-weight: bold;
  z-index: 1;
}
.entry-button__small:hover {
  background-color: #FFEE56;
}

.first-view {
  position: relative;
}

.back-ground-pc {
  opacity: 0;
  position: absolute;
  display: flex;
  max-width: auto;
  z-index: 1;
}
@media screen and (min-width:768px) {
  .back-ground-pc {
    opacity: 1;
    top: 62px;
  }
}

.back-ground-sp {
  opacity: 1;
  position: absolute;
  display: flex;
  max-width: 100%;
  height: 618px;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}
@media screen and (min-width:768px) {
  .back-ground-sp {
    opacity: 0;
  }
}

.first-view__inner {
  position: relative;
  top: 64px;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  z-index: 1;
}

.first-view__title-text {
  position: relative;
  display: flex;
  margin: 0 auto;
  text-align: center;
  font-family: "Kiwi Maru", "Noto Serif";
  color: #4A3636;
  top: 13px;
  max-width: 100%;
  padding-bottom: 20px;
  font-size: 17px;
  font-weight: 500;
}
@media screen and (min-width:768px) {
  .first-view__title-text {
    font-size: 24px;
  }
}
@media screen and (max-width: 375px) {
  .first-view__title-text {
    font-size: 14px;
  }
}

.first-view__title-logos {
  position: relative;
  display: flex;
  margin: 0 auto;
  top: 10px;
  padding: 0px 20px 0px 20px;
  max-width: 520px;
  height: auto;
}
@media screen and (min-width:768px) {
  .first-view__title-logos {
    top: 55px;
    max-width: 550px;
  }
}

.first-view__decoration-wrap {
  position: relative;
  display: flex;
  text-align: center;
  flex-direction: column;
  z-index: 1;
}

.first-view__decoration-smart-phone {
  position: relative;
  top: 125px;
  height: 650px;
}
@media screen and (min-width:768px) {
  .first-view__decoration-smart-phone {
    top: 50px;
  }
}

.first-view__smartphone {
  position: relative;
  display: flex;
  margin: 0 auto;
  width: 201px;
  height: 408px;
  z-index: 15;
}
@media screen and (min-width:768px) {
  .first-view__smartphone {
    width: 250px;
    height: 510px;
    margin: 40px auto;
  }
}

.first-view__smartphone-grid {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  top: -287px;
  width: 200px;
  height: 194px;
  background-color: #FFFFFF;
  border-radius: 16px;
  gap: 16px;
  z-index: 20;
}
@media screen and (max-width: 375px) {
  .first-view__smartphone-grid {
    width: 160px;
    height: 154px;
    border-radius: 12.8px;
    gap: 12.8px;
  }
}

.grid__image {
  border-radius: 16px 16px 0px 0px;
}
@media screen and (max-width: 375px) {
  .grid__image {
    border-radius: 12.8px 12.8px 0px 0px;
  }
}

.text {
  margin: auto;
  width: 65px;
  height: auto;
  border-bottom: 2.4px solid #CE2073;
}
@media screen and (min-width:768px) {
  .text {
    width: 60px;
  }
}

.date {
  font-weight: bold;
  padding-bottom: 12px;
}

.entry-button__large {
  position: relative;
  height: 40px;
  top: -8px;
  padding: 4px 24px 6px 24px;
  border: 2px solid #4A3636;
  border-radius: 40px;
  box-shadow: 0px 4px 0px 0px #4A3636;
  background-color: #FFFFFF;
  font-family: "Kiwi Maru", "Noto Serif";
  color: #4A3636;
  font-size: 14px;
  font-weight: bold;
}
.entry-button__large:hover {
  background-color: #FFEE56;
}
@media screen and (min-width:768px) {
  .entry-button__large {
    font-size: 14px;
  }
}

.first-view__decoration-english-message {
  position: absolute;
  display: flex;
  padding-top: 0px;
  align-items: center;
  width: 142px;
  height: 80px;
  top: 40px;
  margin-left: 20px;
}
@media screen and (min-width:768px) {
  .first-view__decoration-english-message {
    width: 244px;
    height: 130px;
    left: 348px;
    top: 60px;
  }
}

.first-view__decoration-red-circle-text {
  position: absolute;
  display: flex;
  width: 110px;
  height: 110px;
  align-items: center;
  right: 45px;
  top: 22px;
}
@media screen and (min-width:768px) {
  .first-view__decoration-red-circle-text {
    width: 180px;
    height: 180px;
    margin-right: 400px;
    top: 75px;
  }
}

.first-view__decoration-coffee-and-sweets {
  position: absolute;
  top: 408px;
  margin-left: 20px;
  width: 86px;
  height: 141px;
  z-index: 50;
}
@media screen and (min-width:768px) {
  .first-view__decoration-coffee-and-sweets {
    top: 320px;
    margin-left: 345px;
    width: 202px;
    height: 332px;
  }
}

.first-view__decoration-cats {
  position: relative;
  top: 66px;
  z-index: 50;
  margin-right: 20px;
}
@media screen and (min-width:768px) {
  .first-view__decoration-cats {
    top: -50px;
    margin-right: 300px;
  }
}

.fv_cat_black {
  position: absolute;
  top: -300px;
  width: 62px;
  height: 69px;
  right: 0px;
}
@media screen and (min-width:768px) {
  .fv_cat_black {
    top: -235px;
    right: 95px;
    width: 170px;
    height: 190px;
  }
}

.fv_cat_brown {
  position: absolute;
  top: -240px;
  width: 98px;
  height: 72px;
  right: 10px;
  z-index: 50;
}
@media screen and (min-width:768px) {
  .fv_cat_brown {
    top: -115px;
    right: 30px;
    width: 233px;
    height: 174px;
  }
}

.page-top__inner {
  position: fixed;
  display: flex;
  right: 40px;
  z-index: 100;
}
@media screen and (max-width: 375px) {
  .page-top__inner {
    display: none;
  }
}

.pagetop {
  width: 100px;
  height: 100px;
  /* 最初は非表示にする */
  opacity: 0;
  visibility: hidden; /* visibility も併用すると、要素の領域も消え、クリックなどもできなくなる */
  /* 0.3秒かけてフェードイン/アウト */
  transition: opacity 0.3s, visibility 0.3s;
  /* 他の要素より手前に表示するための設定 (必要に応じて調整) */
  z-index: 200;
  /* 子要素の img へのスタイル */
  /* &.is-show を .pagetop の直下に記述 */
  /* .pagetop に is-show クラスが付いたら表示 */
}
.pagetop img {
  display: block; /* 余計な隙間をなくす */
  width: 100%; /* 親要素の幅に合わせる */
  height: auto; /* 高さは自動調整 */
}
.pagetop.is-show {
  opacity: 1;
  visibility: visible;
}

.about {
  position: relative;
  width: 100%;
  overflow: hidden;
  top: -100px;
}
@media screen and (min-width:768px) {
  .about {
    height: 1500px;
  }
}

.about__decoration-footprints {
  position: relative;
  width: 100%;
}

.about__footprints {
  position: absolute;
  display: flex;
  top: 60px;
  right: 0;
  width: 54px;
  height: 120px;
}
@media screen and (min-width:768px) {
  .about__footprints {
    width: 100px;
    height: 220px;
  }
}

.about__decoration-striped-pattern {
  display: none;
}
@media screen and (min-width:768px) {
  .about__decoration-striped-pattern {
    position: absolute;
    display: flex;
    top: 190px;
    transform: translateX(-50%);
    width: 250px;
    height: 250px;
    left: 102px;
  }
}

.about__decoration-picture-right {
  position: relative;
  width: 100%;
}

.about__rightphoto {
  position: absolute;
  top: 360px;
  right: -42;
  transform: translateX(70%);
  width: 200px;
  height: 200px;
}
@media screen and (min-width:768px) {
  .about__rightphoto {
    width: 480px;
    height: 480px;
    top: 282px;
    right: 51px;
  }
}

.about__decoration-picture-left {
  position: relative;
  width: 100%;
}

.about__leftphoto {
  position: absolute;
  top: 484px;
  left: 0;
  transform: translateX(-70%);
  width: 200px;
  height: 200px;
}
@media screen and (min-width:768px) {
  .about__leftphoto {
    top: 286px;
    width: 480px;
    height: 480px;
  }
}

.about__decoration-hillroad {
  position: relative;
  width: 100%;
}

.about__hillroad {
  position: absolute;
  display: flex;
  top: 800px;
  left: 14px;
  transform: translateX(-10%);
  width: 137px;
  height: 215px;
  z-index: 2;
}
@media screen and (min-width:768px) {
  .about__hillroad {
    width: auto;
    height: 495px;
    top: 823px;
    left: 18px;
  }
}

.about__decoration-wave {
  position: relative;
}

.about__wave {
  display: none;
}
@media screen and (min-width:768px) {
  .about__wave {
    position: absolute;
    top: 300;
    transform: translateX(50%);
    width: 873.922px;
    height: 45.021px;
  }
}

.about__decoration-stones {
  position: relative;
  width: 100%;
}

.about__stones {
  position: absolute;
  top: 808px;
  right: 20px;
  width: 48px;
  height: 48px;
  z-index: 2;
}
@media screen and (min-width:768px) {
  .about__stones {
    top: 810px;
    right: 150px;
    width: 101px;
    height: 100px;
  }
}

.about__decoration-handkerchief {
  position: relative;
  width: 100%;
}

.about__handkerchief {
  position: absolute;
  top: 850px;
  right: 56.5px;
  width: 133px;
  height: 65.003px;
  z-index: 2;
}
@media screen and (min-width:768px) {
  .about__handkerchief {
    top: 965px;
    right: 75px;
    width: 308px;
    height: 150.604px;
  }
}

.about__inner {
  position: relative;
  display: flex;
  top: -35px;
  height: 1180px;
  justify-content: center; /* 水平方向の中央寄せ */
}
@media screen and (min-width:768px) {
  .about__inner {
    height: 1330px;
    top: 120px;
  }
}

.about-top__Contents {
  position: relative;
  text-align: center;
  align-items: center;
  flex-direction: column;
  max-width: 311px;
  height: 820px;
  margin: 0px 20px;
  padding: 40px 20px;
  border-radius: 24px;
  background-color: #FFFFFF;
}
@media screen and (min-width:768px) {
  .about-top__Contents {
    max-width: 848px;
    height: 820px;
    padding: 40px 114px;
    top: -100px;
  }
}

.about-top__image-left {
  position: relative;
  top: 160px;
  left: 47px;
  width: 80px;
  height: 60px;
  border: 3.9px solid var(#F5F5F5);
  background: #CCCCCC 50% cover no-repeat;
  z-index: 20;
}
@media screen and (min-width:768px) {
  .about-top__image-left {
    top: 140px;
    left: 113px;
    width: 134px;
    height: 100px;
  }
}

.about-top__image-right {
  position: relative;
  top: 100px;
  left: 240px;
  width: 80px;
  height: 60px;
  border: 3.9px solid var(#F5F5F5);
  background: #CCCCCC 50% cover no-repeat;
  z-index: 20;
}
@media screen and (min-width:768px) {
  .about-top__image-right {
    top: 45px;
    left: 642px;
    width: 134px;
    height: 100px;
  }
}

.heading--campaign {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 37.333px;
  height: 37.333px;
}
@media screen and (min-width:768px) {
  .heading--campaign {
    width: 48px;
    height: 48px;
  }
}

.heading__english {
  position: relative;
  text-align: center;
  margin-top: 6px;
  font-family: Courgette;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}
@media screen and (min-width: 376px) {
  .heading__english {
    font-size: 20px;
    top: -5px;
  }
}

.heading__japanese {
  position: relative;
  margin-left: auto; /* 左側のマージンを自動に設定 */
  margin-right: auto; /* 右側のマージンを自動に設定 */
  margin-top: 6px;
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 500;
  line-height: 25px;
  -webkit-text-decoration: underline 6px solid #FFEE56;
          text-decoration: underline 6px solid #FFEE56;
}
@media screen and (min-width:768px) {
  .heading__japanese {
    font-size: 32px;
    -webkit-text-decoration: underline 6px solid #FFEE56;
            text-decoration: underline 6px solid #FFEE56;
    -webkit-text-decoration: 15px;
            text-decoration: 15px;
  }
}

.about-top__sub-heading-sp {
  position: relative;
  text-align: center;
  margin-top: 35px;
  font-size: 14px;
  font-weight: 700;
  line-height: 22.4px;
}
@media screen and (min-width:768px) {
  .about-top__sub-heading-sp {
    display: none;
  }
}

.about-top__sub-heading-pc {
  position: relative;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 22.4px;
  top: 54px;
}
@media screen and (max-width:768px) {
  .about-top__sub-heading-pc {
    display: none;
  }
}

.about-top__text-wrap {
  position: relative;
  display: flex;
  text-align: center;
  flex-direction: column;
}
@media screen and (min-width:768px) {
  .about-top__text-wrap {
    top: 53px;
  }
}

.about-top__text {
  font-size: 12px;
  font-weight: 400;
  line-height: 19.2px;
  margin-top: 20px;
}
@media screen and (min-width:768px) {
  .about-top__text {
    font-size: 16px;
    line-height: 25.6px;
    margin-top: 30px;
  }
}

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

.hidden-sp {
  display: none;
}

.about-top__emphasis-text {
  width: -moz-max-content;
  width: max-content;
  margin: 30px auto; /* 上下のマージンは20px、左右はauto */
  font-size: 14px;
  -webkit-text-decoration: underline 2px dashed #67B0C7;
          text-decoration: underline 2px dashed #67B0C7;
}
@media screen and (min-width:768px) {
  .about-top__emphasis-text {
    font-size: 20px;
  }
}

.about-button__pc {
  width: 260px;
  height: 50px;
  margin: 62px auto; /* 上下のマージンは20px、左右はauto */
  padding: 6px 24px 8px 24px;
  border: 2px solid #4A3636;
  border-radius: 40px;
  box-shadow: 0px 4px 0px 0px #4A3636;
  background-color: #FFFFFF;
  font-family: "Kiwi Maru", "Noto Serif";
  color: #4A3636;
  font-size: 16px;
  font-weight: 700;
}
.about-button__pc:hover {
  background-color: #FFEE56;
}
@media screen and (max-width: 375px) {
  .about-button__pc {
    width: 198px;
    height: 40px;
    padding: 6px 24px 8px 24px;
    margin-top: -3px;
    border: 2px solid #4A3636;
    border-radius: 40px;
    box-shadow: 0px 4px 0px 0px #4A3636;
    background-color: #FFFFFF;
    font-family: "Kiwi Maru", "Noto Serif";
    color: #4A3636;
    font-size: 16px;
  }
  .about-button__pc:hover {
    background-color: #FFEE56;
  }
}

.about__pc-button {
  font-size: 20px;
}
@media screen and (max-width: 375px) {
  .about__pc-button {
    font-size: 16px;
  }
}

.about-button__sp {
  font-size: 18px;
}
@media screen and (min-width:768px) {
  .about-button__sp {
    display: none;
  }
}

.about__bottom {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.about__decoration-english {
  position: relative;
  text-align: center;
  background-color: transparent;
  top: 162px;
  max-width: auto;
  height: auto;
}
@media screen and (min-width:768px) {
  .about__decoration-english {
    top: 240px;
    left: -136px;
  }
}

.about__onomichi-logo {
  width: 355px;
  height: 37.2px;
}
@media screen and (min-width:768px) {
  .about__onomichi-logo {
    min-width: 890px;
    height: auto;
    margin-top: 40px;
  }
}

.about-swiper-style {
  position: absolute;
  left: -43px;
  height: auto;
  width: 100vw;
  margin: 0px 10px 0px 10px;
  top: 890px;
  z-index: 45;
}
@media screen and (min-width:768px) {
  .about-swiper-style {
    left: -360px;
    height: 200px;
    width: 1512px;
    margin: 0px 20px 0px 20px;
    top: 1080px;
  }
}

.about-swiper-wrapper {
  transition-timing-function: linear;
}

.swiper-slide {
  width: 100px;
  height: 100px;
}
@media screen and (min-width:768px) {
  .swiper-slide {
    width: 200px;
    height: 200px;
  }
}

.swiper-slide-active {
  height: auto;
}

.about__under-triangle {
  position: relative;
  text-align: center;
  background-color: transparent;
  width: 100px;
  height: 36px;
  top: -15px;
  z-index: 50;
}
@media screen and (min-width:768px) {
  .about__under-triangle {
    width: 140px;
    height: 50px;
    top: -100px;
  }
}

.step {
  height: 1255.54px;
}
@media screen and (min-width:768px) {
  .step {
    height: 1000px;
  }
}

.step__inner {
  position: relative;
  top: -146px;
}
@media screen and (min-width:768px) {
  .step__inner {
    top: 28px;
    margin-bottom: 120px;
  }
}

.decoration-map {
  position: absolute;
  width: 149px;
  height: 223px;
}
@media screen and (min-width:768px) {
  .decoration-map {
    width: 470px;
    height: 679.496px;
    top: -70px;
    left: 48px;
  }
}

.step__decoration-wrapper {
  position: absolute;
  width: 100%;
  height: 100px;
}
@media screen and (min-width:768px) {
  .step__decoration-wrapper {
    right: 70px;
    top: -32px;
  }
}

.step-cats {
  position: absolute;
  top: 146px;
  right: 0; /* 右端を基準にする */
  width: 100%; /*  適切な幅を指定してください  */
  height: auto; /*  適切な高さを指定してください  */
}
@media screen and (min-width:768px) {
  .step-cats {
    top: 0;
  }
}

.step-browncat {
  position: absolute;
  top: -140px;
  right: 23px; /* 右から20px */
  width: 105px;
  height: 63px;
  z-index: 1;
}
@media screen and (min-width:768px) {
  .step-browncat {
    right: 150px;
    width: 238px;
    height: 141px;
    top: 0;
  }
}

.step-blackcat {
  position: absolute;
  top: -140px;
  right: 0px; /* 右から20px */
  width: 105px;
  height: 63px;
  z-index: 1;
}
@media screen and (min-width:768px) {
  .step-blackcat {
    right: 10px;
    width: 238px;
    height: 141px;
    top: 5px;
  }
}

.step-footprint-wrapper {
  position: relative;
  top: 146px;
  width: 100%;
  height: 100%;
}
@media screen and (min-width:768px) {
  .step-footprint-wrapper {
    top: 0;
  }
}

.step-footprint1 {
  position: absolute;
  top: -67px;
  right: 20px;
  width: 55px;
  height: 120px;
}
@media screen and (min-width:768px) {
  .step-footprint1 {
    right: 35px;
    width: 100px;
    height: 220px;
    top: 140px;
  }
}

.step-footprint2 {
  position: absolute;
  top: 410px;
  left: 20px;
  width: 55px;
  height: 120px;
}
@media screen and (min-width:768px) {
  .step-footprint2 {
    width: 100px;
    height: 220px;
  }
}

.step-footprint3 {
  position: absolute;
  top: 738px;
  right: 20px;
  width: 55px;
  height: 120px;
}
@media screen and (min-width:768px) {
  .step-footprint3 {
    width: 100px;
    height: 220px;
    display: none;
  }
}

.step__headline {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  height: 106px;
}

.step-icon {
  width: 37.3px;
  height: 37.3px;
}
@media screen and (min-width:768px) {
  .step-icon {
    width: 48px;
    height: 48px;
  }
}

.step__headline-en {
  font-family: Courgette;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}
@media screen and (min-width:768px) {
  .step__headline-en {
    font-size: 20px;
    line-height: 25px;
  }
}

.step__headline-ja-wrapper {
  display: flex;
  justify-content: center;
}

.step__headline-ja {
  font-size: 20px;
  font-weight: 500;
  line-height: 25px;
  -webkit-text-decoration: underline 8px solid #FFEE56;
          text-decoration: underline 8px solid #FFEE56;
}
@media screen and (min-width:768px) {
  .step__headline-ja {
    font-size: 32px;
    line-height: 40px;
  }
}

.step__contens {
  position: relative;
  display: block;
}
@media screen and (min-width:768px) {
  .step__contens {
    display: flex;
    flex-direction: row;
    text-align: center;
    justify-content: center;
    top: 42px;
    gap: 50px;
    left: 5px;
  }
}

.step__content1 {
  display: block;
  justify-content: center;
  text-align: center;
  margin-top: 32px;
}
.step__content2 {
  display: block;
  justify-content: center;
  text-align: center;
  margin-top: 32px;
}
@media screen and (min-width:768px) {
  .step__content2 {
    margin-top: 100px;
  }
}

.step__content3 {
  display: block;
  justify-content: center;
  text-align: center;
  margin-top: 32px;
}
.step__content-illust-wrapper {
  position: relative;
  display: block;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: auto;
  margin-bottom: 16px;
}

.illust-wrapper {
  display: flex;
}

.step__content-illust {
  display: flex;
  width: 50%; /* 幅の指定が必要 */
  margin: 0 auto;
  width: 193px;
  height: 232.5px;
}
@media screen and (min-width:768px) {
  .step__content-illust {
    width: 280px;
    height: 300px;
  }
}

.content-illust {
  justify-content: center;
  text-align: center;
  margin-bottom: 16px;
}

.step__text {
  display: block;
  justify-content: center;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 25.6px;
  margin-top: -16px;
  margin-bottom: 16px;
}
@media screen and (min-width:768px) {
  .step__text {
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
  }
}

.step__content-sentence {
  display: block;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 19.2px;
  margin-bottom: 16px;
}
@media screen and (min-width:768px) {
  .step__content-sentence {
    font-size: 16px;
    font-weight: 400;
    line-height: 25.6px;
    width: 300px;
  }
}

.text__address {
  text-decoration-line: underline;
  text-decoration-style: solid;
}

.step__follow-button {
  position: relative;
  display: flex;
  width: 233px;
  height: 38px;
  padding: 8px 12px;
  align-items: center;
  gap: 8px;
  flex-direction: row;
  background: #FFFFFF;
}
@media screen and (min-width:768px) {
  .step__follow-button {
    width: 260px;
    height: 42px;
  }
}

.step__follow-button-wrapper {
  display: flex;
  text-align: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: -30px;
}
@media screen and (min-width:768px) {
  .step__follow-button-wrapper {
    margin-bottom: 16px;
  }
}

.insta_icon {
  width: 20px;
  height: 20px;
}
@media screen and (min-width:768px) {
  .insta_icon {
    width: 24px;
    height: 24px;
  }
}

.follow-button-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 22.4px;
}
@media screen and (min-width:768px) {
  .follow-button-text {
    font-size: 16px;
    line-height: 25.6px;
  }
}

.wave-line {
  position: relative;
  display: block;
}

.sideways-wave-line-wrapper1 {
  position: relative;
  left: 150px;
  top: -370px;
}

.sideways-wave-line-wrapper2 {
  position: absolute;
  right: 550px;
  top: 200px;
  z-index: 5;
}

.sideways-wave-line {
  margin: 0 auto;
  width: 113px;
  height: 24px;
}
@media screen and (max-width:768px) {
  .sideways-wave-line {
    display: none;
  }
}

.sideways-vertical-line-wrapper1 {
  position: relative;
  left: 0;
  right: 0;
}

.sideways-vertical-line-wrapper2 {
  position: relative;
  left: 0;
  right: 0;
}

.vertical-wave-line1 {
  margin: 43px 0 -43px 0;
  width: 7px;
  height: 34px;
}
@media screen and (min-width: 376px) {
  .vertical-wave-line1 {
    display: none;
  }
}

.vertical-wave-line2 {
  margin: 0 auto;
  width: 7px;
  height: 34px;
  top: 200px;
  z-index: 100;
}
@media screen and (min-width: 376px) {
  .vertical-wave-line2 {
    display: none;
  }
}

.text__hashtag {
  font-weight: 700;
}

.step-button__sp {
  width: 50%; /* 幅の指定が必要 */
  margin: 0 auto;
  width: 334px;
  height: 40px;
  padding: 6px 20px 6px 20px;
  border: 2px solid #4A3636;
  border-radius: 40px;
  box-shadow: 0px 4px 0px 0px #4A3636;
  background-color: #FFFFFF;
  font-family: "Kiwi Maru", "Noto Serif";
  color: #4A3636;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 37px;
}
.step-button__sp:hover {
  background-color: #FFEE56;
}
@media screen and (min-width:768px) {
  .step-button__sp {
    display: none;
  }
}

.step-button__pc {
  width: 50%; /* 幅の指定が必要 */
  margin: 38px auto;
  width: 437px;
  height: 56px;
  padding: 10px 36px 10px 36px;
  border: 3px solid #4A3636;
  border-radius: 40px;
  box-shadow: 0px 4px 0px 0px #4A3636;
  background-color: #FFFFFF;
  font-family: "Kiwi Maru", "Noto Serif";
  color: #4A3636;
  font-size: 20px;
  font-weight: bold;
}
.step-button__pc:hover {
  background-color: #FFEE56;
}
@media screen and (max-width:768px) {
  .step-button__pc {
    display: none;
  }
}

@media screen and (min-width:768px) {
  .prizes__inner {
    margin-top: -58px;
  }
}

.prizes__inner-wrapper {
  position: relative;
  z-index: 50;
}

.prizes__inner-triangles-left {
  display: none;
}
@media screen and (min-width:768px) {
  .prizes__inner-triangles-left {
    position: absolute;
    display: flex;
    top: 20px;
    left: 100px;
    width: 315px;
    height: 86px;
  }
}

.prizes__inner-triangles-right {
  display: none;
}
@media screen and (min-width:768px) {
  .prizes__inner-triangles-right {
    position: absolute;
    display: flex;
    top: 20px;
    right: 100px;
    width: 315px;
    height: 86px;
  }
}

.prizes__inner-box-top {
  position: relative;
  display: block;
  width: 237.6px;
  height: 83px;
  margin: 0 auto;
  z-index: 1;
}
@media screen and (min-width:768px) {
  .prizes__inner-box-top {
    width: 365.624px;
    height: 148.967px;
  }
}

.prizes__inner-box-body {
  position: absolute;
  width: 100%;
  height: 904px;
  z-index: 0;
}
@media screen and (min-width:768px) {
  .prizes__inner-box-body {
    padding-left: 80px;
    padding-right: 80px;
    width: 100%;
    top: 125px;
    width: 100%;
    height: 1181.033px;
  }
}

.prizes_bg_rectangle {
  display: flex;
  z-index: 0;
}
@media screen and (min-width:768px) {
  .prizes_bg_rectangle {
    display: block;
    margin: 0 auto;
    width: 1018px;
    height: 1235.033px;
  }
}

.prizes__headline {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  top: -70px;
  gap: 6px;
  width: 100%;
  height: 106px;
  z-index: 50;
}

.prizes-icon {
  width: 37.3px;
  height: 37.3px;
}
@media screen and (min-width:768px) {
  .prizes-icon {
    width: 48px;
    height: 48px;
  }
}

.prizes__headline-en {
  font-family: Courgette;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}
@media screen and (min-width:768px) {
  .prizes__headline-en {
    font-size: 20px;
    line-height: 25px;
  }
}

.prizes__headline-ja-wrapper {
  display: flex;
  justify-content: center;
}

.prizes__headline-ja {
  font-size: 20px;
  font-weight: 500;
  line-height: 25px;
  -webkit-text-decoration: underline 8px solid #FFEE56;
          text-decoration: underline 8px solid #FFEE56;
}
@media screen and (min-width:768px) {
  .prizes__headline-ja {
    font-size: 32px;
    line-height: 40px;
  }
}

.prizes__header-text {
  position: relative;
  top: -55px;
  z-index: 50;
}

.header-text-sp {
  display: block;
  margin: 0 auto;
  width: 335px;
  font-size: 12px;
}
@media screen and (min-width: 376px) {
  .header-text-sp {
    display: none;
    margin-bottom: 24px;
  }
}

.header-text-pc {
  display: block;
  margin: 35px auto;
  margin-bottom: 24px;
  width: 880px;
  font-size: 16px;
}
@media screen and (max-width:768px) {
  .header-text-pc {
    display: none;
  }
}

.prizes__modal-wrapper {
  position: relative;
  display: block;
  top: -50px;
  margin: 0 auto;
  width: 335px;
  z-index: 99;
}
@media screen and (min-width:768px) {
  .prizes__modal-wrapper {
    width: 900px;
  }
}

.prizes__modal-pictures {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width:768px) {
  .prizes__modal-pictures {
    text-align: center;
    width: 900px;
    height: 1000px;
  }
}

.prizes__modal-picture:nth-child(-n+2) {
  width: 50%;
  margin: auto;
}
.prizes__modal-picture:nth-child(-n+4) {
  width: 50%;
  margin: auto;
  padding-top: 15px;
}
.prizes__modal-picture:nth-child(5) {
  width: 50%;
  margin: auto;
  padding-top: 15px;
}
@media screen and (min-width:768px) {
  .prizes__modal-picture:nth-child(-n+2) {
    width: calc(50% - 16px);
  }
  .prizes__modal-picture:nth-child(n+3) {
    width: calc(33.3333333333% - 24px);
    margin-top: 80px;
  }
  .prizes__modal-picture:nth-child(2) {
    margin-left: 32px;
  }
  .prizes__modal-picture:nth-child(4), .prizes__modal-picture:nth-child(5) {
    margin-left: 36px;
  }
}

.prizes__modal-pictures img {
  width: 160px;
  height: 220px;
}
@media screen and (min-width:768px) {
  .prizes__modal-pictures img {
    width: 280px;
    height: 360px;
  }
}

.prizes_benefit1 {
  width: 440px;
  height: 510px;
}

.prizes_benefit2 {
  width: 440px;
  height: 510px;
}

.prizes-modal__wrapper {
  position: relative;
}

.prizes-modal1 {
  position: fixed;
  inset: 0;
  margin: auto;
  padding: 0;
  border-color: transparent;
  background-color: transparent;
  max-width: calc(100% - 40px);
  z-index: 50;
}
@media screen and (min-width:768px) {
  .prizes-modal1 {
    width: 480px;
    height: 650px;
  }
}
.prizes-modal1::backdrop {
  opacity: 0.5;
  background-color: #000000;
}

.prizes-modal__wrapper-close-button {
  position: relative;
}

.prizes-modal__close-button {
  position: absolute;
  display: flex;
  top: -65px;
  left: 120px;
  height: 40px;
  padding: 6px 24px 8px 24px;
  border: 2px solid #4A3636;
  border-radius: 40px;
  box-shadow: 0px 4px 0px 0px #4A3636;
  background-color: #FFFFFF;
  font-family: "Kiwi Maru", "Noto Serif";
  color: #4A3636;
  font-size: 16px;
  font-weight: bold;
  z-index: 51;
}
.prizes-modal__close-button:hover {
  background-color: #FFEE56;
}
@media screen and (min-width:768px) {
  .prizes-modal__close-button {
    left: 185px;
  }
}

.prizes-modal2 {
  position: fixed;
  inset: 0;
  margin: auto;
  padding: 0;
  border-color: transparent;
  background-color: transparent;
  max-width: calc(100% - 40px);
  z-index: 50;
}
@media screen and (min-width:768px) {
  .prizes-modal2 {
    width: 480px;
    height: 650px;
  }
}
.prizes-modal2::backdrop {
  opacity: 0.5;
  background-color: #000000;
}

.prizes-modal3 {
  position: fixed;
  inset: 0;
  margin: auto;
  padding: 0;
  border-color: transparent;
  background-color: transparent;
  max-width: calc(100% - 40px);
  z-index: 50;
}
@media screen and (min-width:768px) {
  .prizes-modal3 {
    width: 480px;
    height: 650px;
  }
}
.prizes-modal3::backdrop {
  opacity: 0.5;
  background-color: #000000;
}

.prizes-modal4 {
  position: fixed;
  inset: 0;
  margin: auto;
  padding: 0;
  border-color: transparent;
  background-color: transparent;
  max-width: calc(100% - 40px);
  z-index: 50;
}
@media screen and (min-width:768px) {
  .prizes-modal4 {
    width: 480px;
    height: 650px;
  }
}
.prizes-modal4::backdrop {
  opacity: 0.5;
  background-color: #000000;
}

.prizes-modal5 {
  position: fixed;
  inset: 0;
  margin: auto;
  padding: 0;
  border-color: transparent;
  background-color: transparent;
  max-width: calc(100% - 40px);
  z-index: 50;
}
@media screen and (min-width:768px) {
  .prizes-modal5 {
    width: 480px;
    height: 650px;
  }
}
.prizes-modal5::backdrop {
  opacity: 0.5;
  background-color: #000000;
}

.Prizes_Modal5 {
  z-index: 50;
}

.prizes-button__sp {
  position: relative;
  display: block;
  top: -60px;
  margin: 0 auto;
  max-width: 100%;
  height: 26px;
  margin-top: 24px;
  padding: 6px 24px 30px 24px;
  border: 2px solid #4A3636;
  border-radius: 40px;
  box-shadow: 0px 4px 0px 0px #4A3636;
  background-color: #FFFFFF;
  font-family: "Kiwi Maru", "Noto Serif";
  color: #4A3636;
  font-size: 16px;
  font-weight: bold;
  z-index: 50;
}
.prizes-button__sp:hover {
  background-color: #FFEE56;
}
@media screen and (min-width:768px) {
  .prizes-button__sp {
    display: none;
  }
}

.prizes-button__pc {
  position: relative;
  display: block;
  margin: 0 auto;
  top: -122px;
  width: 438px;
  margin-top: 40px;
  padding: 10px 24px 20px 24px;
  border: 3px solid #4A3636;
  border-radius: 40px;
  box-shadow: 0px 4px 0px 0px #4A3636;
  background-color: #FFFFFF;
  font-family: "Kiwi Maru", "Noto Serif";
  color: #4A3636;
  font-size: 20px;
  font-weight: bold;
  z-index: 50;
}
.prizes-button__pc:hover {
  background-color: #FFEE56;
}
@media screen and (max-width:768px) {
  .prizes-button__pc {
    display: none;
  }
}

.spots-inner {
  position: relative;
  height: auto;
  top: 33px;
}
@media screen and (min-width:768px) {
  .spots-inner {
    top: 0;
    max-width: 1520px;
  }
}

.spots-bg-footprint {
  position: absolute;
  top: 1080px;
  left: 20px;
  z-index: 40;
  width: 100px;
  height: 220px;
}
@media screen and (max-width: 375px) {
  .spots-bg-footprint {
    display: none;
  }
}

.spots-bg-top-pictuer {
  position: relative;
  display: flex;
  top: -63px;
  margin-bottom: -130px;
  width: auto;
  height: 100%;
  aspect-ratio: attr(width)/attr(height); /* 画像本来の縦横比を維持 */
  overflow: hidden;
  z-index: 0;
}

.top-background {
  width: 580px;
  height: 260px;
  justify-content: center;
  overflow: hidden;
}
@media screen and (min-width:768px) {
  .top-background {
    width: 1512px;
    height: 640px;
  }
}

.spots-bg-topwave {
  position: relative;
  display: flex;
  width: 375px;
  height: 45.7px;
  z-index: 3;
}
@media screen and (min-width:768px) {
  .spots-bg-topwave {
    width: 100%;
    height: 120px;
    top: -57px;
  }
}

.spots-headline-slider-area {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #67B0C7;
}
@media screen and (min-width:768px) {
  .spots-headline-slider-area {
    flex-direction: row;
    height: 600px;
    top: -58px;
  }
}

.spots-headline-area {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 8px;
  padding-bottom: 24px;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width:768px) {
  .spots-headline-area {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 467px;
    width: auto;
    left: 242px;
    padding-bottom: 0;
  }
}

@media screen and (min-width:768px) {
  .headline-icon {
    display: flex;
    width: 56px;
    height: 56px;
  }
}

.star-icon {
  width: 28px;
  height: 28px;
}
@media screen and (min-width:768px) {
  .star-icon {
    width: 56px;
    height: 56px;
  }
}

.headline-text {
  font-size: 28px;
  font-weight: 500;
  color: #FFFFFF;
}
@media screen and (min-width:768px) {
  .headline-text {
    display: flex;
    font-size: 50px;
    writing-mode: vertical-rl;
  }
}

.spots-slider-style {
  position: relative;
  display: block;
  width: 1776px;
  height: 402px;
  gap: 16px;
  color: #67B0C7;
}
@media screen and (min-width:768px) {
  .spots-slider-style {
    padding-bottom: 40px;
  }
}

@media screen and (min-width:768px) {
  .spots-swiper-style {
    position: relative;
    display: flex;
    max-width: 1200px;
    height: 537px;
    left: 274px;
    gap: 15px;
    color: #67B0C7;
    z-index: 1;
    overflow: hidden;
  }
}

.swiper {
  width: 100%;
}

.spots-swiper-container {
  height: 400px;
}
@media screen and (min-width:768px) {
  .spots-swiper-container {
    height: 100%;
  }
}

.swiper-slide {
  height: auto;
}

.gallery-card {
  width: 240px; /* モバイルでのカード幅 */
  border-radius: 24px;
  overflow: hidden;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  height: 100%; /* slide要素の高さに合わせる */
}
@media screen and (min-width:768px) {
  .gallery-card {
    width: 344px; /* PCでのカード幅 */
  }
}

.gallery-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 344/240; /* 画像のアスペクト比 (例: PCカード幅 / 画像高さ) 適宜調整 */
  overflow: hidden;
}
.gallery-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* 画像をコンテナに合わせてトリミング */
}
@media screen and (min-width:768px) {
  .gallery-card__image img {
    /* PCでの高さを固定する場合 */
    height: 240px;
    /* PC用のアスペクト比が異なる場合はここで上書き */
  }
}

.gallery-text-area {
  padding: 16px;
  background: #FFFFFF;
  flex-grow: 1; /* 残りの高さを埋める */
  display: flex;
  flex-direction: column;
}

.gallery-title {
  padding-bottom: 16px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: #4A3636;
  margin: 0;
}
@media screen and (min-width:768px) {
  .gallery-title {
    font-size: 20px;
    line-height: 1.3;
  }
}

.gallery-text {
  font-size: 12px;
  color: #4A3636;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1; /* テキストエリア内でスペースを埋める */
}
@media screen and (min-width:768px) {
  .gallery-text {
    font-size: 16px;
    line-height: 1.6;
  }
}

.swiper-pagination {
  display: none;
}

.gallery__pagination {
  display: none;
}

.gallery__prev,
.gallery__next {
  top: 507px;
  width: 80px;
  height: 80px;
  z-index: 90;
}
.gallery__prev::after,
.gallery__next::after {
  display: none;
}
@media screen and (max-width:768px) {
  .gallery__prev,
  .gallery__next {
    display: none;
  }
}

.gallery__prev {
  position: absolute;
  background: url(../img/common/spots_arrow_left.png) no-repeat center center/contain;
  left: 285px;
}

.gallery__next {
  background: url(../img/common/spots_arrow_right.png) no-repeat center center/contain;
  right: 280px;
}

.spots-border-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #67B0C7;
}
@media screen and (min-width:768px) {
  .spots-border-area {
    position: relative;
    display: flex;
    padding: auto;
    text-align: center;
    top: -60px;
    gap: 80px;
    flex-direction: row;
  }
}

.spots-logo {
  width: 255px;
  height: 55px;
  padding-bottom: 16px;
  z-index: 5;
}
@media screen and (min-width:768px) {
  .spots-logo {
    width: 495px;
    height: 125px;
    padding-top: 3px;
  }
}

.spots-border-text-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #67B0C7;
}
@media screen and (min-width:768px) {
  .spots-border-text-area {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
}

.spots-sentence {
  position: relative;
  display: block;
  font-size: 11.4px;
  line-height: 18.3px;
  font-weight: 400;
  z-index: 60;
  color: #fff;
}
@media screen and (min-width:768px) {
  .spots-sentence {
    font-size: 16px;
    line-height: 25.6px;
    top: -10px;
  }
}

.spots-button__sp {
  position: relative;
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: 26px;
  margin-top: 24px;
  padding: 6px 24px 30px 24px;
  border: 2px solid #4A3636;
  border-radius: 40px;
  box-shadow: 0px 4px 0px 0px #4A3636;
  background-color: #FFFFFF;
  font-family: "Kiwi Maru", "Noto Serif";
  color: #4A3636;
  font-size: 16px;
  font-weight: bold;
  z-index: 50;
}
.spots-button__sp:hover {
  background-color: #FFEE56;
}
@media screen and (min-width:768px) {
  .spots-button__sp {
    display: none;
  }
}

.spots-button__pc {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 435px;
  height: 55px;
  padding: 10px 30px 15px 30px;
  border: 3px solid #4A3636;
  border-radius: 40px;
  box-shadow: 0px 4px 0px 0px #4A3636;
  background-color: #FFFFFF;
  font-family: "Kiwi Maru", "Noto Serif";
  color: #4A3636;
  font-size: 20px;
  font-weight: bold;
  z-index: 50;
}
.spots-button__pc:hover {
  background-color: #FFEE56;
}
@media screen and (max-width:768px) {
  .spots-button__pc {
    display: none;
  }
}

.spots-bg-underwave {
  position: relative;
  display: flex;
  width: 375px;
  height: 45.7px;
}
@media screen and (min-width:768px) {
  .spots-bg-underwave {
    width: 100%;
    height: 100%;
    top: -61px;
  }
}

.qa-inner {
  position: relative;
  padding-top: 108px;
}
@media screen and (min-width:768px) {
  .qa-inner {
    padding-top: 60px;
    display: flex;
    width: auto;
    flex-direction: column;
    align-items: center;
  }
}

.qa__headline {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  height: 106px;
}
@media screen and (min-width:768px) {
  .qa__headline {
    gap: 8px;
  }
}

.qa-icon {
  width: 37.3px;
  height: 37.3px;
}
@media screen and (min-width:768px) {
  .qa-icon {
    width: 48px;
    height: 48px;
  }
}

.qa__headline-en {
  font-family: Courgette;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}
@media screen and (min-width:768px) {
  .qa__headline-en {
    font-size: 20px;
    line-height: 25px;
  }
}

.qa__headline-ja-wrapper {
  display: flex;
  justify-content: center;
}

.qa__headline-ja {
  font-size: 20px;
  font-weight: 500;
  line-height: 25px;
  -webkit-text-decoration: underline 8px solid #FFEE56;
          text-decoration: underline 8px solid #FFEE56;
  text-underline-offset: 17px;
}
@media screen and (min-width:768px) {
  .qa__headline-ja {
    font-size: 32px;
    line-height: 40px;
  }
}

.qa__boxes {
  padding: 24px 20px 24px 20px;
  display: block;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width:768px) {
  .qa__boxes {
    gap: 16px;
    padding: 73px 20px 24px 20px;
  }
}

.qa__box {
  margin-bottom: 12px;
}
@media screen and (min-width:768px) {
  .qa__box {
    margin-bottom: 24px;
    width: 1024px;
  }
}

.qa-box {
  display: block;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  border: 1.5px solid var(--LP-Blown, #4A3636);
  background: #FFFFFF;
}
.qa-box.is-open .plus-minus-icon::after {
  background: url(../img/common/qa_minusframe.png) no-repeat center center/contain;
}

.qa-box__head {
  position: relative;
  background: #fff;
  border-radius: 16px 16px 16px 16px;
  display: flex;
  width: auto;
  text-align: center;
  justify-content: center;
}
@media screen and (min-width:768px) {
  .qa-box__head {
    align-items: center;
    display: flex;
    justify-content: left;
    width: 95%;
    height: 44px;
    margin: 24px;
    margin-right: 0;
  }
}

.plus-minus-icon {
  padding-right: 0px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.plus-minus-icon::after {
  content: "";
  width: 26.182px;
  height: 26.182px;
  background: url(../img/common/qa_plusframe.png) no-repeat center center/contain;
}
@media screen and (min-width:768px) {
  .plus-minus-icon::after {
    width: 48px;
    height: 48px;
  }
}
@media screen and (min-width:768px) {
  .plus-minus-icon {
    width: auto;
    height: 48px;
    text-align: right;
    margin-left: auto;
  }
}

.qa-box__head-q-icon {
  align-items: center;
  display: flex;
  justify-content: center;
}

.q-icon {
  width: 17.455px;
  height: 17.455px;
  margin-left: 16px;
}
@media screen and (min-width:768px) {
  .q-icon {
    width: 32px;
    height: 32px;
    margin-left: 0;
  }
}

.qa-box__head-text {
  font-size: 14px;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  padding: 12px 16px 12px 16px;
  text-align: left;
}
@media screen and (min-width:768px) {
  .qa-box__head-text {
    font-size: 20px;
  }
}

.qa-box__body {
  background: #F5F5F5;
  border-radius: 0px 0px 16px 16px;
  display: none;
}

.qa-box__a {
  padding: 16px;
  gap: 16px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width:768px) {
  .qa-box__a {
    padding: 24px;
  }
}

.a-icon {
  width: 17.455px;
  height: 17.455px;
}
@media screen and (min-width:768px) {
  .a-icon {
    width: 32px;
    height: 32px;
  }
}

.qa-box__a-text {
  width: 303px;
  height: auto;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}
@media screen and (min-width:768px) {
  .qa-box__a-text {
    width: 1024px;
    height: auto;
    font-size: 20px;
  }
}

.text__hashtag {
  text-decoration-line: underline;
  text-decoration-style: solid;
  font-weight: 400;
}

.entry-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* 水平方向の中央揃え */
  width: 100%;
}
@media screen and (min-width:768px) {
  .entry-inner {
    width: auto;
    padding-top: 50px;
  }
}

.entry__background {
  background-color: rgba(255, 255, 255, 0.5);
  /* 内側の余白（コンテンツと枠線の間隔） */
  padding: 14px; /* 例: 上下左右に24pxの余白。値は調整してください */
  /* 角丸など、必要に応じてスタイルを追加 */
  /* 他の要素との間隔調整 */
  /* --- ▼ 白い枠線を追加 ▼ --- */
  border: 10px solid white;
}
@media screen and (min-width:768px) {
  .entry__background {
    width: 1040px;
    height: auto;
  }
}

.entry__headline {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  height: 106px;
}
@media screen and (min-width:768px) {
  .entry__headline {
    gap: 8px;
    margin-top: 40px;
  }
}

.entry-icon {
  width: 37.3px;
  height: 37.3px;
}
@media screen and (min-width:768px) {
  .entry-icon {
    width: 48px;
    height: 48px;
  }
}

.entry__headline-en {
  font-family: Courgette;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}
@media screen and (min-width:768px) {
  .entry__headline-en {
    font-size: 20px;
    line-height: 25px;
  }
}

.entry__headline-ja-wrapper {
  display: flex;
  justify-content: center;
}

.entry__headline-ja {
  font-size: 20px;
  font-weight: 500;
  line-height: 25px;
  -webkit-text-decoration: underline 8px solid #FFEE56;
          text-decoration: underline 8px solid #FFEE56;
  text-underline-offset: 17px;
}
@media screen and (min-width:768px) {
  .entry__headline-ja {
    font-size: 32px;
    line-height: 40px;
  }
}

.entry__card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 288px;
  padding-top: 24px;
  justify-content: center; /* 水平方向の中央揃え */
  align-items: center; /* 垂直方向の中央揃え */
}
@media screen and (min-width:768px) {
  .entry__card {
    display: flex;
    width: 100%;
    padding: 40px 56px 0px 56px;
  }
}

.entry__list {
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--LP-Dark-Gray, #CCC);
  margin-top: 12px;
  margin-bottom: 12px;
}
@media screen and (min-width:768px) {
  .entry__list {
    display: flex;
    flex-direction: row;
    margin-top: 0;
    margin-bottom: 0;
  }
}

.entry__title {
  position: relative;
  display: flex;
  align-items: flex-start;
}
@media screen and (min-width:768px) {
  .entry__title {
    min-width: 224px;
  }
}

.entry__title-circle {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--LP-Blue, #9ED0E0);
  margin-right: 8px;
}

.title__circle {
  margin-top: 10px;
}

.card__title {
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
}
@media screen and (min-width:768px) {
  .card__title {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
  }
}

.entry__card-text {
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  margin-top: 8px;
  /* リストマーカーの種類を「disc」（黒丸）に指定 */
  list-style-type: disc;
  line-height: 1.55;
  /* リストマーカーが表示される左側のスペースを確保 */
  /* 値はデザインに合わせて調整してください (例: 20px, 1.5em など) */
  /* list-style-position のデフォルトは outside ですが、明示しても良い */
  /* outside: マーカーがテキストの左側（パディング領域）に表示される */
  /* inside: マーカーがテキストの行頭文字のように扱われる */
  list-style-position: outside;
}
@media screen and (min-width:768px) {
  .entry__card-text {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
  }
}

.entry__card-text-list {
  margin-left: 20px;
}
@media screen and (min-width:768px) {
  .entry__card-text-list {
    margin-bottom: 10px;
  }
}

.entry-list-last {
  border-bottom: none;
}

.entry__decoration-picture {
  padding-top: 32px;
}
@media screen and (min-width:768px) {
  .entry__decoration-picture {
    padding-top: 90px;
    width: 100%; /* コンテナの幅いっぱいに広げる */
    height: auto; /* 高さは自動計算させ、アスペクト比を維持する */
    display: block; /* インライン要素特有の隙間を防ぎ、幅100%を確実にする */
    max-width: 100%; /* ※念のため記載。width: 100%があれば通常は不要 */
  }
}

.contact-inner {
  margin-left: 8px;
  margin-right: 8px;
  padding-top: 80px;
  padding-bottom: 40px;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* 水平方向の中央揃え */
}
@media screen and (min-width:768px) {
  .contact-inner {
    position: relative;
    display: flex;
    padding-top: 200px;
    padding-bottom: 120px;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* 水平方向の中央揃え */
    max-width: 1512px;
    height: auto;
  }
}

.contact__headline {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  height: 106px;
}
@media screen and (min-width:768px) {
  .contact__headline {
    gap: 8px;
  }
}

.contact-icon {
  width: 37.3px;
  height: 37.3px;
}
@media screen and (min-width:768px) {
  .contact-icon {
    width: 48px;
    height: 48px;
  }
}

.contact__headline-en {
  font-family: Courgette;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}
@media screen and (min-width:768px) {
  .contact__headline-en {
    font-size: 20px;
    line-height: 25px;
  }
}

.contact__headline-ja-wrapper {
  display: flex;
  justify-content: center;
}

.contact__headline-ja {
  font-size: 20px;
  font-weight: 500;
  line-height: 25px;
  -webkit-text-decoration: underline 8px solid #FFEE56;
          text-decoration: underline 8px solid #FFEE56;
  text-underline-offset: 17px;
}
@media screen and (min-width:768px) {
  .contact__headline-ja {
    font-size: 32px;
    line-height: 40px;
  }
}

.contact__headline-text-sp {
  padding-top: 24px;
  padding-bottom: 24px;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
}
@media screen and (min-width:768px) {
  .contact__headline-text-sp {
    display: none;
  }
}

@media screen and (max-width:768px) {
  .contact__headline-text-pc {
    display: none;
  }
}
@media screen and (min-width:768px) {
  .contact__headline-text-pc {
    margin-top: 32px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
  }
}

.contact__form {
  padding-top: 40px;
  padding-bottom: 24px;
}
@media screen and (min-width:768px) {
  .contact__form {
    padding-bottom: 40px;
  }
}

.contact__fields {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 335px;
  gap: 24px;
}
@media screen and (min-width:768px) {
  .contact__fields {
    min-width: 848px;
    margin-top: 15px;
  }
}

.contact__field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width:768px) {
  .contact__field {
    flex-direction: row;
  }
}

.form-field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width:768px) {
  .form-field {
    flex-direction: row;
    gap: auto;
    width: 100%;
    justify-content: space-between;
  }
}

.form-field__head {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.form-field__head-massage {
  align-items: flex-start;
}

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

.form-field__tag {
  display: inline-block;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  padding: 4px 8px 4px 8px;
  border-radius: 4px;
  color: #FFFFFF;
  background: #CE2073;
}
@media screen and (min-width:768px) {
  .form-field__tag {
    font-size: 12px;
  }
}

.form-field__item {
  display: flex;
  width: 335px;
  height: 56px;
  align-items: flex-start;
  border-radius: 8px;
  background: #F5F5F5;
}
@media screen and (min-width:768px) {
  .form-field__item {
    width: 596px;
    border-radius: 6px;
  }
}
.form-field__item [type=text],
.form-field__item [type=email] {
  display: flex;
  padding: 16px;
  width: 100%;
  color: #000000;
  background-color: #F5F5F5;
  border: none;
}
@media screen and (min-width:768px) {
  .form-field__item [type=text],
  .form-field__item [type=email] {
    width: 100%;
  }
}
.form-field__item [type=radio] {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0 0 0 0);
  overflow: hidden;
}
.form-field__item [type=radio]:checked + .form-radio__radio-text:after {
  opacity: 1;
}
.form-field__item .your-question__select {
  width: 335px;
  height: 56px;
  padding: 16px;
  display: flex;
}
.form-field__item select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  padding: 16px;
  top: -24px;
  width: 100%;
  height: 56px;
  border-radius: 0px 8px 8px 0px;
  color: #000000;
  background-color: #F5F5F5;
  border: none;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  background: url(../img/common/contact_select_control.png) no-repeat center right 0/52px 55px;
}
@media screen and (min-width:768px) {
  .form-field__item select {
    font-size: 16px;
  }
}

textarea {
  display: flex;
  width: 335px;
  height: 160px;
  padding: 16px;
  background-color: #F5F5F5;
  border: none;
  color: #000000;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}
@media screen and (min-width:768px) {
  textarea {
    justify-content: space-between;
    width: 596px;
    height: 160px;
    padding: 16px;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
  }
}

.form-field__radio-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  margin: -25px 0 -20px 10px;
  padding: 0;
}
@media screen and (min-width:768px) {
  .form-field__radio-wrapper {
    margin: 0;
  }
}

.form-field__radios {
  display: flex;
  gap: 24px;
  background: #fff;
}
@media screen and (min-width:768px) {
  .form-field__radios {
    text-align: center;
    justify-content: center;
  }
}

.form-field__radio {
  position: relative;
  display: block;
  width: -moz-max-content;
  width: max-content;
  padding-left: 30px;
}

.form-radio__radio-text {
  color: #4A3636;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}
.form-radio__radio-text::before, .form-radio__radio-text:after {
  content: "";
  position: absolute;
  top: 47%;
  transform: translateY(-50%);
  border-radius: 50%;
}
.form-radio__radio-text::before {
  width: 24px;
  height: 24px;
  background-color: #F5F5F5; /* 塗りつぶしの灰色 (例: 薄めの灰色) */
  border-radius: 50%; /* これで要素が円形になります */
  left: 0px;
}
.form-radio__radio-text::after {
  width: 12px;
  height: 12px;
  background-color: #9ED0E0;
  border-radius: 50%;
  left: 7px;
  opacity: 0;
}
@media screen and (min-width:768px) {
  .form-radio__radio-text::after {
    font-size: 16px;
  }
}

.form-checkbox {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.form-checkbox__input {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: #F5F5F5;
}

.foem-checkbox__text {
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}
@media screen and (min-width:768px) {
  .foem-checkbox__text {
    font-size: 16px;
  }
}
.foem-checkbox__text a {
  text-decoration-line: underline;
  text-decoration-style: solid;
}

.contact-button {
  display: flex;
  margin-top: 24px;
  height: 40px;
  padding: 6px 24px 8px 24px;
  border: 2px solid #4A3636;
  border-radius: 40px;
  box-shadow: 0px 4px 0px 0px #4A3636;
  background-color: #FFFFFF;
  font-family: "Kiwi Maru", "Noto Serif";
  color: #4A3636;
  font-size: 16px;
  font-weight: bold;
}
.contact-button:hover {
  background-color: #FFEE56;
}
@media screen and (min-width:768px) {
  .contact-button {
    margin-top: 40px;
    width: 240px;
    text-align: center;
    justify-content: center;
  }
}

.footer-inner {
  position: relative;
  margin-left: 8px;
  margin-right: 8px;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* 水平方向の中央揃え */
}
@media screen and (min-width:768px) {
  .footer-inner {
    position: relative;
    display: flex;
    padding-top: 120px;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* 水平方向の中央揃え */
    max-width: 1512px;
    height: auto;
  }
}

.footer_bg_footprints {
  position: absolute;
  display: none;
}
@media screen and (min-width:768px) {
  .footer_bg_footprints {
    display: flex;
    width: 100px;
    height: 220px;
    top: 80px;
    right: 80px;
  }
}

.footer-headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* 水平方向の中央揃え */
  width: 182px;
  height: 81px;
}
@media screen and (min-width:768px) {
  .footer-headline {
    gap: 24px;
    margin-bottom: 30px;
  }
}

.footer-headline-text {
  font-family: "Josefin Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
}

.footer-headline__icons {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.footer_youtube {
  width: 32px;
  height: 32px;
}

.footer_instagram {
  width: 32px;
  height: 32px;
}

.footer_twitter {
  width: 32px;
  height: 32px;
}

.footer-logo {
  text-align: center;
  padding: 22px 21px 0px 21px;
}

.footer-informations {
  position: relative;
}

.footer-information__texts {
  display: flex;
  flex-direction: column;
  border-radius: 16px 16px 16px 16px;
  text-align: center;
  align-items: center;
  justify-content: center; /* 水平方向の中央揃え */
}
@media screen and (min-width:768px) {
  .footer-information__texts {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}

.footer-information-texts__background {
  padding-top: 24px;
  padding-bottom: 24px;
  align-items: center;
  border-radius: 0px 0px 16px 16px;
  width: 335px;
  height: 204px;
  background-color: #FFFFFF;
}
@media screen and (min-width:768px) {
  .footer-information-texts__background {
    display: flex;
    flex-direction: column; /* アイテムを縦方向に並べる */
    justify-content: center; /* 主軸（垂直方向）の中央揃え */
    text-align: center;
    width: 512px;
    height: 400px;
  }
}

.footer-map {
  border-radius: 16px 16px 0px 0px;
  width: 335px;
  height: 271px;
}
@media screen and (min-width:768px) {
  .footer-map {
    width: 512px;
    height: 400px;
  }
}

.footer-information-logo {
  margin-bottom: 24px;
  width: 153px;
  height: 20px;
}
@media screen and (min-width:768px) {
  .footer-information-logo {
    position: relative;
    display: flex;
    left: 0;
    width: 183px;
    height: 24px;
    margin-left: -200px;
  }
}

.footer-information-list {
  display: flex;
  flex-direction: column;
  gap: 16px; /* 各アイテム間の縦の隙間 */
  text-align: left; /* アイテム内のテキストを左揃えに */
  margin-left: 24px;
}
@media screen and (min-width:768px) {
  .footer-information-list {
    margin-left: 15px;
  }
}

.footer-information-item {
  display: grid;
  /* 1列目: ヘッダーの幅 (auto) / 2列目: テキスト (残りの幅 1fr) */
  grid-template-columns: auto 1fr;
  align-items: start; /* 要素を上揃えに */
  -moz-column-gap: 16px;
       column-gap: 16px; /* ヘッダーとテキストの間の隙間 (適宜調整) */
}

.footer-information-item__header {
  display: flex; /* 丸とタイトルを横並び */
  align-items: center; /* 垂直方向中央揃え */
  grid-column: 1/2; /* Gridの1列目に配置 */
  width: 64px;
}
@media screen and (min-width:768px) {
  .footer-information-item__header {
    width: 120px;
  }
}

.footer-information-circle {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--LP-Blue, #9ED0E0);
  margin-right: 8px; /* 丸とタイトルの間の隙間 */
  flex-shrink: 0; /* 丸が潰れないように */
}

.footer-information-title {
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  margin: 0; /* デフォルトマージンリセット */
}
@media screen and (min-width:768px) {
  .footer-information-title {
    font-size: 16px;
  }
}

.footer-information-text {
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  margin: 0; /* デフォルトマージンリセット */
  grid-column: 2/3; /* Gridの2列目に配置 */
}
@media screen and (min-width:768px) {
  .footer-information-text {
    font-size: 16px;
  }
}

.pagetop-sp {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.pagetop_button__sp {
  margin-top: 24px;
  margin-bottom: 24px;
  width: 75px;
  height: 78px;
}
@media screen and (min-width:768px) {
  .pagetop_button__sp {
    display: none;
  }
}

.footer__inner {
  position: relative;
  display: flex;
}
@media screen and (min-width:768px) {
  .footer__inner {
    padding-top: 120px;
  }
}

.footer__Copyright__background {
  width: auto;
  height: 41px;
  background-color: #67B0C7;
}
@media screen and (min-width:768px) {
  .footer__Copyright__background {
    height: 120px;
  }
}

.footer__Copyright {
  top: 50px;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  color: #FFFFFF;
}
@media screen and (min-width:768px) {
  .footer__Copyright {
    font-size: 14px;
  }
}/*# sourceMappingURL=style.css.map */