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

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

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

ol, ul {
  list-style: none;
  list-style-type: none;
}

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

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

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

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

address {
  font-style: normal;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

html {
  font-size: 62.5%;
}
html.is-modal-open {
  overflow: hidden;
}

body {
  font-size: 1.6rem;
  text-align: center;
  font-family: "Noto Sans JP", "Kiwi Maru", "Courgette", "Josefin Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #4A3636;
  background-color: #E9F6F8;
}
body.is-menu-open {
  overflow: hidden;
}
body.is-fixed {
  overflow: hidden;
}
body.is-modal-open {
  overflow: hidden;
}

.button {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.6;
  border: 2px solid #4A3636;
  border-radius: 40px;
  background-color: #fff;
  -webkit-box-shadow: 0px 4px 0px 0px #4A3636;
          box-shadow: 0px 4px 0px 0px #4A3636;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.button a {
  font-weight: 700;
  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;
  padding: 7px 24px;
}
@media (any-hover: hover) {
  .button:hover {
    background: #FFEE56;
  }
}

.link {
  text-decoration-line: underline;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .link:hover {
    color: #67B0C7;
  }
}

.section__titleIcon {
  width: 48px;
  height: 48px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .section__titleIcon {
    width: 37px;
    height: 37px;
  }
}

.section__title--en {
  margin-top: 8px;
  font-size: 2rem;
  line-height: 1.25;
  font-family: "Courgette";
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .section__title--en {
    margin-top: 6px;
  }
}

.section__title--ja {
  margin-top: 8px;
  font-size: 3.2rem;
  line-height: 1.25;
  font-family: "kiwi Maru";
  font-weight: 500;
  padding-bottom: 8px;
  border-bottom: 8px solid #FFEE56;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .section__title--ja {
    margin-top: 6px;
    font-size: 2rem;
    border-bottom: 6px solid #FFEE56;
    padding-bottom: 6px;
  }
}

.br-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .br-sp {
    display: block;
  }
}

.br-sp-hidden {
  display: block;
}
@media screen and (max-width: 767px) {
  .br-sp-hidden {
    display: none;
  }
}

.btn {
  position: relative;
  width: 32px;
  height: 30px;
  right: 0;
  z-index: 50;
  cursor: pointer;
  display: none;
}
@media screen and (max-width: 1000px) {
  .btn {
    display: block;
  }
}
.btn .btn__bar {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  right: 0;
  background-color: #4A3636;
  z-index: 1;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  opacity: 1;
}
.btn .btn__bar--bar1 {
  top: 0;
}
.btn .btn__bar--bar2 {
  top: 12px;
}
.btn .btn__bar--bar3 {
  top: 24px;
}
.btn.is-open .btn__bar--bar1 {
  opacity: 1;
  top: 35%;
  -webkit-transform: rotate(45deg) translateY(-30%);
          transform: rotate(45deg) translateY(-30%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 768px) {
  .btn.is-open .btn__bar--bar1 {
    top: 35%;
    left: 3px;
    -webkit-transform: rotate(45deg) translateY(-30%);
            transform: rotate(45deg) translateY(-30%);
  }
}
.btn.is-open .btn__bar--bar2 {
  display: none;
}
.btn.is-open .btn__bar--bar3 {
  opacity: 1;
  top: 35%;
  -webkit-transform: rotate(-45deg) translateY(-30%);
          transform: rotate(-45deg) translateY(-30%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 768px) {
  .btn.is-open .btn__bar--bar3 {
    top: 35%;
    left: 3px;
    -webkit-transform: rotate(-45deg) translateY(-30%);
            transform: rotate(-45deg) translateY(-30%);
  }
}

.menu {
  position: fixed;
  width: 100%;
  height: calc(100vh - 64px);
  top: 64px;
  left: 0;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  background-color: #fff;
  z-index: 49;
  text-align: center;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
  -webkit-transition: clip-path 0.4s ease;
  transition: clip-path 0.4s ease;
}
.menu .hamburger__list {
  margin-top: 83px;
  text-align: center;
}
.menu .hamburger__item {
  margin-top: 40px;
}
.menu .hamburger__item:first-child {
  margin-top: 0;
}
.menu .hamburger__item a {
  letter-spacing: 0.03em;
}
.menu.is-open {
  pointer-events: auto;
  clip-path: inset(0 0 0 0);
}

.header {
  width: 100%;
  height: 64px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 100;
  overflow: hidden;
  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;
}
.header .header__inner {
  width: 100%;
  padding-inline: 24px;
  margin: 0 auto;
}
.header .header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .header__logo {
  width: 183px;
  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;
}
.header .header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 20px;
}
@media screen and (max-width: 1000px) {
  .header .header__list {
    display: none;
  }
}
.header .header__item {
  font-size: 1.2rem;
  line-height: 0.8;
  padding-bottom: 0;
  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;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header .header__item:last-child {
  font-size: 1.4rem;
}
@media (any-hover: hover) {
  .header .header__item:not(:last-child):hover {
    color: #67B0C7;
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
    border-bottom: 5px solid #67B0C7;
  }
}

.fv {
  margin-top: 64px;
  min-height: 836px;
}
@media screen and (max-width: 767px) {
  .fv {
    min-height: 710px;
  }
}
.fv .fv__inner {
  min-height: 740px;
  background-image: url("../images/Onomichi_02.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 0 0 40px 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .fv .fv__inner {
    background-image: url(../images/Onomichi_sp.png);
    min-height: 554px;
  }
}
.fv .fv__contents {
  position: absolute;
  top: 35px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 848px;
  min-width: calc(100% - 40px);
}
@media screen and (max-width: 767px) {
  .fv .fv__contents {
    top: 17px;
  }
}
.fv .fv__text {
  font-size: 2.4rem;
  line-height: 1.25;
  font-family: "kiwi maru";
  font-weight: 500;
  text-shadow: 0px 0px 30px #FFF;
}
@media screen and (max-width: 767px) {
  .fv .fv__text {
    font-size: 1.4rem;
    font-weight: 400;
  }
}
.fv .fv__title {
  width: 520px;
  margin: 24px auto 0;
}
@media screen and (max-width: 767px) {
  .fv .fv__title {
    max-width: 334px;
    margin-top: 20px;
  }
}
.fv .fv__spContents {
  margin: 33px auto 0;
  width: 250px;
  height: 510px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .fv .fv__spContents {
    margin-top: 113px;
    width: 200px;
    height: 408px;
  }
}
.fv .fv__spContents::before {
  position: absolute;
  content: "";
  width: 244px;
  height: 130px;
  top: -33px;
  left: -244px;
  background-image: url("../images/img_fukidashi.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .fv .fv__spContents::before {
    width: 142px;
    height: 80px;
    top: -96px;
    left: -68px;
  }
}
.fv .fv__spImage {
  width: 250px;
}
@media screen and (max-width: 767px) {
  .fv .fv__spImage {
    width: 100%;
    height: 100%;
  }
}
.fv .fv__contentMain {
  background-color: #fff;
  border-radius: 16px;
  position: absolute;
  width: 200px;
  top: 152px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .fv .fv__contentMain {
    top: 144px;
  }
}
.fv .fv__contentTitle {
  background: linear-gradient(265deg, #AC3790 -3.52%, #D65A5C 44.94%, #F4C06D 92.38%);
  padding: 8px 12px;
  color: #fff;
  font-weight: 700;
  line-height: 1.6;
  border-radius: 16px 16px 0 0;
}
.fv .fv__contentTitleDate {
  margin-top: 16px;
  padding-bottom: 4px;
  border-bottom: 3px solid #CE2073;
  display: inline-block;
}
.fv .fv__contentDate {
  margin-top: 16px;
  font-weight: 700;
  line-height: 1.6;
}
.fv .fv__button {
  margin-block: 16px 24px;
}
.fv .fv__contentSide {
  color: #FFF;
  text-align: center;
  line-height: 1.6;
  font-weight: 700;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: #CE2073;
  padding: 40px 10px;
  position: absolute;
  right: -175px;
  top: -16px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .fv .fv__contentSide {
    width: 110px;
    height: 110px;
    font-size: 1rem;
    top: -103px;
    right: -42px;
    padding-top: 20px;
  }
}
.fv .fv__contentSide .span1 {
  color: #FFEE56;
  text-align: center;
  font-size: 5rem;
  line-height: 0.9;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .fv .fv__contentSide .span1 {
    font-size: 3rem;
    line-height: 1;
  }
}
.fv .fv__contentSide .span2 {
  color: #FFEE56;
}
@media screen and (max-width: 767px) {
  .fv .fv__contentSide .span3 {
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: 700;
  }
}
.fv .fv__drink {
  position: absolute;
  width: 111px;
  height: 292px;
  bottom: 41px;
  left: -200px;
}
@media screen and (max-width: 999px) {
  .fv .fv__drink {
    left: -170px;
  }
}
@media screen and (max-width: 767px) {
  .fv .fv__drink {
    width: 47px;
    height: 124px;
    bottom: 6px;
    left: calc(50% - 100px - 25px);
    z-index: 2;
  }
}
.fv .fv__snack {
  position: absolute;
  width: 127px;
  height: 123px;
  bottom: 1px;
  left: -300px;
}
@media screen and (max-width: 999px) {
  .fv .fv__snack {
    left: -280px;
  }
}
@media screen and (max-width: 767px) {
  .fv .fv__snack {
    width: 54px;
    height: 52px;
    bottom: -11px;
    left: calc(50% - 100px - 68px);
    z-index: 2;
  }
}
.fv .fv__catBlack {
  position: absolute;
  width: 170px;
  height: 190px;
  bottom: 69px;
  right: -235px;
}
@media screen and (max-width: 999px) {
  .fv .fv__catBlack {
    right: -215px;
  }
}
@media screen and (max-width: 767px) {
  .fv .fv__catBlack {
    width: 62px;
    height: 69px;
    bottom: 47px;
    right: calc(50% - 100px - 67px);
    z-index: 2;
  }
}
.fv .fv__catBrown {
  position: absolute;
  width: 233px;
  height: 174px;
  bottom: -43px;
  right: -300px;
}
@media screen and (max-width: 999px) {
  .fv .fv__catBrown {
    right: -280px;
  }
}
@media screen and (max-width: 767px) {
  .fv .fv__catBrown {
    width: 98px;
    height: 72px;
    bottom: -11px;
    right: calc(50% - 100px - 58px);
    z-index: 2;
  }
}

.about {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .about {
    margin-top: 32px;
  }
}
.about .about__inner {
  position: relative;
}
.about .about__container {
  width: 848px;
  margin: 0 auto;
  padding: 40px 114px;
  background-color: #fff;
  border-radius: 40px;
  position: relative;
  z-index: 20;
}
@media screen and (max-width: 999px) {
  .about .about__container {
    width: 600px;
    padding: 40px 0;
  }
}
@media screen and (max-width: 767px) {
  .about .about__container {
    width: 335px;
    padding: 40px 12px;
    border-radius: 24px;
  }
}
.about .about__container::after {
  position: absolute;
  content: "";
  width: 140px;
  height: 140px;
  clip-path: polygon(50% 40%, 0 0, 100% 0);
  bottom: -140px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #CCE1E4;
}
@media screen and (max-width: 767px) {
  .about .about__container::after {
    width: 100px;
    height: 100px;
    bottom: -100px;
  }
}
.about .about__contents {
  position: relative;
}
.about .about__titleDeco {
  position: absolute;
  width: 134px;
  height: 100px;
  top: 0;
}
@media screen and (max-width: 767px) {
  .about .about__titleDeco {
    width: 100px;
    height: 80px;
  }
}
.about .about__titleDeco--no1 {
  left: 0;
  -webkit-transform: rotate(-8deg);
          transform: rotate(-8deg);
}
@media screen and (max-width: 999px) {
  .about .about__titleDeco--no1 {
    left: -40px;
  }
}
.about .about__titleDeco--no2 {
  right: 0;
  -webkit-transform: rotate(8deg);
          transform: rotate(8deg);
}
@media screen and (max-width: 999px) {
  .about .about__titleDeco--no2 {
    right: -40px;
  }
}
.about .about__subTitle {
  margin-top: 32px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .about .about__subTitle {
    font-size: 1.4rem;
    margin-top: 24px;
  }
}
.about .about__text {
  margin-top: 32px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .about .about__text {
    font-size: 1.2rem;
    margin-top: 24px;
  }
}
@media screen and (max-width: 767px) {
  .about .about__text--no4 {
    font-size: 1.6rem;
    margin-top: 24px;
  }
}
.about .about__button {
  margin-top: 32px;
}
.about .about__button a {
  padding: 11px 40px;
}
.about .about__hashtag {
  font-weight: 700;
}
.about .about__pic {
  position: absolute;
}
.about .about__pic--1 {
  width: 250px;
  height: 250px;
  top: -20px;
  left: calc(50% - 250px - 424px - 100px);
}
@media screen and (max-width: 1511px) {
  .about .about__pic--1 {
    left: calc(50% - 250px - 424px - 103px + 60px);
  }
}
@media screen and (max-width: 999px) {
  .about .about__pic--1 {
    left: calc(50% - 250px - 424px - 103px + 200px);
  }
}
@media screen and (max-width: 767px) {
  .about .about__pic--1 {
    width: 200px;
    height: 200px;
    left: calc(50% - 167px - 150px);
  }
}
.about .about__pic--2 {
  width: 100px;
  height: 220px;
  top: -80px;
  right: calc(50% - 100px - 424px - 66px);
}
@media screen and (max-width: 1511px) {
  .about .about__pic--2 {
    right: calc(50% - 100px - 424px - 66px + 60px);
  }
}
@media screen and (max-width: 999px) {
  .about .about__pic--2 {
    width: 54px;
    height: 120px;
    right: calc(50% - 54px - 424px - 66px + 180px);
  }
}
@media screen and (max-width: 767px) {
  .about .about__pic--2 {
    width: 54px;
    height: 120px;
    top: -40px;
    right: calc(50% - 167px - 30px);
  }
}
.about .about__pic--3 {
  width: 480px;
  height: 480px;
  top: 74px;
  left: calc(50% - 480px - 424px - 190px);
}
@media screen and (max-width: 1511px) {
  .about .about__pic--3 {
    left: calc(50% - 480px - 424px - 190px + 60px);
  }
}
@media screen and (max-width: 999px) {
  .about .about__pic--3 {
    left: calc(50% - 480px - 424px - 190px + 250px);
  }
}
@media screen and (max-width: 767px) {
  .about .about__pic--3 {
    width: 200px;
    height: 200px;
    top: 395px;
    left: calc(50% - 167px - 180px);
  }
}
.about .about__pic--4 {
  width: 480px;
  height: 480px;
  top: 74px;
  right: calc(50% - 480px - 424px - 136px);
}
@media screen and (max-width: 1511px) {
  .about .about__pic--4 {
    right: calc(50% - 480px - 424px - 136px + 60px);
  }
}
@media screen and (max-width: 999px) {
  .about .about__pic--4 {
    right: calc(50% - 480px - 424px - 136px + 200px);
  }
}
@media screen and (max-width: 767px) {
  .about .about__pic--4 {
    width: 200px;
    height: 200px;
    top: 273px;
    right: calc(50% - 167px - 190px);
  }
}
.about .about__pic--5 {
  width: 427px;
  height: 817px;
  top: 321px;
  left: calc(50% - 427px - 424px - 10px);
  z-index: -1;
}
@media screen and (max-width: 1511px) {
  .about .about__pic--5 {
    left: calc(50% - 427px - 424px - 10px + 60px);
  }
}
@media screen and (max-width: 999px) {
  .about .about__pic--5 {
    left: calc(50% - 216px - 424px - 8px + 100px);
  }
}
@media screen and (max-width: 767px) {
  .about .about__pic--5 {
    width: 216px;
    height: 433px;
    top: 552px;
    left: 0;
  }
}
.about .about__pic--6 {
  width: 806px;
  height: 12px;
  bottom: 210px;
  right: calc(50% - 806px - 424px - 95px);
}
@media screen and (max-width: 1511px) {
  .about .about__pic--6 {
    right: calc(50% - 806px - 424px - 95px + 60px);
  }
}
@media screen and (max-width: 999px) {
  .about .about__pic--6 {
    right: calc(50% - 806px - 424px - 95px + 200px);
  }
}
@media screen and (max-width: 767px) {
  .about .about__pic--6 {
    display: none;
  }
}
.about .about__pic--7 {
  width: 806px;
  height: 12px;
  bottom: 176px;
  right: calc(50% - 806px - 424px - 24px);
}
@media screen and (max-width: 1511px) {
  .about .about__pic--7 {
    right: calc(50% - 806px - 424px - 24px + 60px);
  }
}
@media screen and (max-width: 999px) {
  .about .about__pic--7 {
    right: calc(50% - 806px - 424px - 24px + 200px);
  }
}
@media screen and (max-width: 767px) {
  .about .about__pic--7 {
    display: none;
  }
}
.about .about__pic--8 {
  width: 100px;
  height: 100px;
  bottom: 128px;
  right: calc(50% - 100px - 424px - 81px);
}
@media screen and (max-width: 1511px) {
  .about .about__pic--8 {
    right: calc(50% - 100px - 424px - 81px + 60px);
  }
}
@media screen and (max-width: 999px) {
  .about .about__pic--8 {
    right: calc(50% - 100px - 424px - 81px + 200px);
  }
}
@media screen and (max-width: 767px) {
  .about .about__pic--8 {
    width: 48px;
    height: 48px;
    bottom: -60px;
    right: calc(50% - 167px);
  }
}
.about .about__pic--9 {
  width: 308px;
  height: 151px;
  bottom: -80px;
  right: calc(50% - 308px - 424px + 50px);
}
@media screen and (max-width: 1511px) {
  .about .about__pic--9 {
    right: calc(50% - 308px - 424px - 50px + 60px);
  }
}
@media screen and (max-width: 999px) {
  .about .about__pic--9 {
    right: calc(50% - 308px - 424px - 50px + 200px);
    bottom: -120px;
  }
}
@media screen and (max-width: 767px) {
  .about .about__pic--9 {
    width: 133px;
    height: 65px;
    bottom: -120px;
    right: calc(50% - 167px + 37px);
  }
}

.onomichi {
  margin-top: 167px;
  position: relative;
}
.onomichi .onomichi__title {
  margin: 0 auto;
  width: 890px;
  max-width: calc(100% - 40px);
}
.onomichi .swiper-auto {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.onomichi .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}
.onomichi .swiper-slide {
  width: 200px;
  height: 200px;
}
@media screen and (max-width: 767px) {
  .onomichi .swiper-slide {
    width: 100px;
    height: 100px;
  }
}
.onomichi .swiper-image img {
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.howToEntry {
  margin-top: 120px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .howToEntry {
    margin-top: 64px;
  }
}
.howToEntry .howToEntry__pic1 {
  position: absolute;
  width: 460px;
  height: 689px;
  top: -60px;
  left: calc(50% - 730px);
  z-index: -1;
}
@media screen and (max-width: 999px) {
  .howToEntry .howToEntry__pic1 {
    left: calc(50% - 512px - 100px);
  }
}
@media screen and (max-width: 767px) {
  .howToEntry .howToEntry__pic1 {
    width: 149px;
    height: 223px;
    top: 0;
    left: 0;
  }
}
.howToEntry .howToEntry__pic2 {
  position: absolute;
  width: 214px;
  height: 181px;
  top: -60px;
  right: calc(50% - 651px);
}
@media screen and (max-width: 999px) {
  .howToEntry .howToEntry__pic2 {
    right: calc(50% - 512px - 39px);
  }
}
@media screen and (max-width: 767px) {
  .howToEntry .howToEntry__pic2 {
    width: 94px;
    height: 80px;
    top: 0;
    right: calc(50% - 188px - 38px);
  }
}
.howToEntry .howToEntry__pic3 {
  position: absolute;
  width: 238px;
  height: 141px;
  top: -70px;
  right: calc(50% - 525px);
  z-index: -1;
}
@media screen and (max-width: 999px) {
  .howToEntry .howToEntry__pic3 {
    right: calc(50% - 512px + 83px);
  }
}
@media screen and (max-width: 767px) {
  .howToEntry .howToEntry__pic3 {
    width: 105px;
    height: 63px;
    top: 0;
    right: calc(50% - 188px + 16px);
  }
}
.howToEntry .howToEntry__pic4 {
  position: absolute;
  width: 100px;
  height: 220px;
  top: 148px;
  right: 24px;
  z-index: -1;
}
@media screen and (max-width: 999px) {
  .howToEntry .howToEntry__pic4 {
    width: 70px;
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .howToEntry .howToEntry__pic4 {
    width: 54px;
    height: 120px;
    right: 20px;
  }
}
.howToEntry .howToEntry__pic5 {
  position: absolute;
  width: 100px;
  height: 220px;
  top: 580px;
  left: 24px;
  z-index: -1;
}
@media screen and (max-width: 999px) {
  .howToEntry .howToEntry__pic5 {
    width: 70px;
    top: 650px;
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .howToEntry .howToEntry__pic5 {
    width: 54px;
    height: 120px;
    top: 570px;
    left: 20px;
  }
}
.howToEntry .howToEntry__pic6 {
  position: absolute;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  z-index: -1;
  display: none;
}
@media screen and (max-width: 767px) {
  .howToEntry .howToEntry__pic6 {
    display: block;
    width: 54px;
    height: 120px;
    top: 1140px;
    right: 20px;
  }
}
.howToEntry .howToEntry__container {
  margin-top: 40px;
}
.howToEntry .howToEntry__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1024px;
  height: 553px;
  margin: 0 auto;
}
@media screen and (max-width: 999px) {
  .howToEntry .howToEntry__list {
    width: 800px;
    height: 450px;
  }
}
@media screen and (max-width: 767px) {
  .howToEntry .howToEntry__list {
    display: block;
    width: auto;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .howToEntry .howToEntry__item {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .howToEntry .howToEntry__item:not(:first-child) {
    margin: 50px auto 0;
  }
}
.howToEntry .howToEntry__item:nth-child(2) {
  -ms-flex-item-align: end;
      align-self: flex-end;
  position: relative;
}
.howToEntry .howToEntry__item:nth-child(2)::before, .howToEntry .howToEntry__item:nth-child(2)::after {
  position: absolute;
  content: "";
  width: 111px;
  height: 24px;
  top: 136px;
  background-image: url("../images/img_step_line_pc.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 999px) {
  .howToEntry .howToEntry__item:nth-child(2)::before, .howToEntry .howToEntry__item:nth-child(2)::after {
    top: 68px;
  }
}
@media screen and (max-width: 767px) {
  .howToEntry .howToEntry__item:nth-child(2)::before, .howToEntry .howToEntry__item:nth-child(2)::after {
    background-image: url(../images/img_step_line_sp.png);
    width: 7px;
    height: 34px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.howToEntry .howToEntry__item:nth-child(2)::before {
  left: -88px;
}
@media screen and (max-width: 767px) {
  .howToEntry .howToEntry__item:nth-child(2)::before {
    top: -34px;
    left: auto;
  }
}
.howToEntry .howToEntry__item:nth-child(2)::after {
  right: -62px;
}
@media screen and (max-width: 767px) {
  .howToEntry .howToEntry__item:nth-child(2)::after {
    right: auto;
    top: auto;
    bottom: -50px;
  }
}
.howToEntry .howToEntry__imageWrap {
  width: 280px;
  margin: 0 auto;
}
@media screen and (max-width: 999px) {
  .howToEntry .howToEntry__imageWrap {
    width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .howToEntry .howToEntry__imageWrap {
    width: 200px;
  }
}
.howToEntry .howToEntry__itemTitle {
  margin-top: 24px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
}
.howToEntry .howToEntry__itemText {
  margin-top: 18px;
  line-height: 1.6;
}
@media screen and (max-width: 999px) {
  .howToEntry .howToEntry__itemText {
    font-size: 1.2rem;
  }
}
.howToEntry .howToEntry__followLink {
  margin: 24px auto 0;
  padding: 8px 12px;
  background-color: #fff;
  display: inline-block;
  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;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .howToEntry .howToEntry__followLink:hover {
    background-color: #67B0C7;
    color: #fff;
  }
  .howToEntry .howToEntry__followLink:hover .fa-brands {
    color: #fff;
  }
}
.howToEntry .howToEntry__followLink .fa-brands {
  font-size: 24px;
  color: #67B0C7;
}
.howToEntry .howToEntry__followLink span {
  display: inline-block;
  line-height: 1.6;
  font-weight: 700;
  position: relative;
}
.howToEntry .howToEntry__button {
  margin-top: 40px;
}

.prizes {
  margin-top: 120px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 999px) {
  .prizes {
    margin-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .prizes {
    margin-top: 38px;
  }
}
.prizes::before, .prizes::after {
  position: absolute;
  content: "";
  width: 315px;
  height: 86px;
  top: 28px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.prizes::before {
  left: calc(50% - 315px - 200px);
  background-image: url("../images/prize_left.png");
}
@media screen and (max-width: 999px) {
  .prizes::before {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .prizes::before {
    display: none;
  }
}
.prizes::after {
  right: calc(50% - 315px - 200px);
  background-image: url("../images/prize_right.png");
}
@media screen and (max-width: 999px) {
  .prizes::after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .prizes::after {
    display: none;
  }
}
.prizes .prizes__container {
  width: 1024px;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .prizes .prizes__container {
    width: 600px;
  }
}
.prizes .prizes__titleWrap {
  padding-top: 28px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .prizes .prizes__titleWrap {
    padding-top: 20px;
  }
}
.prizes .prizes__titleWrap::after {
  position: absolute;
  content: "";
  width: 395px;
  height: 160px;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url("../images/pc-circle.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .prizes .prizes__titleWrap::after {
    width: 238px;
    height: 83px;
    background-image: url(../images/sp-circle.png);
  }
}
.prizes .prizes__contents {
  margin-top: -13px;
  padding: 64px 56px 54px;
  background-color: #fff;
  border-radius: 24px;
}
@media screen and (max-width: 767px) {
  .prizes .prizes__contents {
    margin-top: -56px;
    padding: 60px 20px 34px;
  }
}
.prizes .prizes__list {
  margin-top: 82px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.prizes .prizes__item {
  width: calc(50% - 36px);
  position: relative;
}
@media (any-hover: hover) {
  .prizes .prizes__item:hover {
    border: 4px solid #9ED0E0;
    border-radius: 28px;
  }
  .prizes .prizes__item:hover .prizes__imageWrap img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  .prizes .prizes__item:hover .prizes__itemTitle {
    --title-bg-color: #9ED0E0;
  }
}
@media screen and (max-width: 767px) {
  .prizes .prizes__item {
    width: calc(50% - 7.5px);
  }
}
.prizes .prizes__item:nth-child(n+3) {
  width: calc(33.3% - 24px);
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .prizes .prizes__item:nth-child(n+3) {
    width: calc(50% - 7.5px);
    margin-top: 40px;
  }
}
.prizes .prizes__item:nth-child(n+3) .prizes__itemTitle {
  height: 80px;
}
.prizes .prizes__item:nth-child(n+3) .prizes__itemTitle::after {
  width: 21px;
  height: 21px;
  bottom: 9px;
  right: 9px;
}
@media screen and (max-width: 767px) {
  .prizes .prizes__item:nth-child(n+3) .prizes__itemTitle::after {
    width: 12px;
    height: 12px;
    bottom: 6px;
    right: 6px;
  }
}
.prizes .prizes__itemLabel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  content: "";
  width: 100px;
  height: 100px;
  top: -50px;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  background-image: url("../images/frame.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: #fff;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .prizes .prizes__itemLabel {
    width: 48px;
    height: 48px;
    top: -25px;
  }
}
.prizes .prizes__label--ja {
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .prizes .prizes__label--ja {
    font-size: 0.8rem;
  }
}
.prizes .prizes__label--no {
  font-size: 4.8rem;
  line-height: 1;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .prizes .prizes__label--no {
    font-size: 2.3rem;
  }
}
.prizes .prizes__imageWrap {
  width: 100%;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
}
.prizes .prizes__imageWrap img {
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}
@media screen and (max-width: 767px) {
  .prizes .prizes__imageWrap {
    border-radius: 12px 12px 0 0;
  }
}
.prizes .prizes__itemTitle {
  --title-bg-color: #67B0C7;
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 700;
  height: 120px;
  border-radius: 0 0 24px 24px;
  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;
  background: linear-gradient(135deg, #F5F5F5 0%, #F5F5F5 82%, var(--title-bg-color) 82%, var(--title-bg-color) 100%);
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .prizes .prizes__itemTitle {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .prizes .prizes__itemTitle {
    font-size: 1.2rem;
    height: 56px;
    border-radius: 0 0 12px 12px;
    background: linear-gradient(135deg, #F5F5F5 0%, #F5F5F5 88%, #67B0C7 88%, #67B0C7 100%);
  }
}
.prizes .prizes__itemTitle::after {
  position: absolute;
  content: "";
  width: 32px;
  height: 32px;
  bottom: 14px;
  right: 14px;
  background-image: url("../images/search.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: #fff;
}
@media screen and (max-width: 999px) {
  .prizes .prizes__itemTitle::after {
    bottom: 8px;
    right: 8px;
  }
}
@media screen and (max-width: 767px) {
  .prizes .prizes__itemTitle::after {
    width: 12px;
    height: 12px;
    bottom: 6px;
    right: 6px;
  }
}
.prizes .prizes__button {
  margin-top: 40px;
}
.prizes .modal {
  border-radius: 24px;
  padding: 0;
  border: none;
  overflow: hidden;
  max-width: calc(100% - 15px);
}
.prizes .modal::-ms-backdrop {
  background: rgba(0, 0, 0, 0.6);
}
.prizes .modal::backdrop {
  background: rgba(0, 0, 0, 0.6);
}
.prizes .modal__contentWrap {
  max-width: 480px;
}
.prizes .modal__imageWrap {
  width: 480px;
  height: 300px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .prizes .modal__imageWrap {
    height: 100%;
  }
}
.prizes .modal__imageWrap img {
  width: 100%;
}
.prizes .modal__content {
  padding: 32px 40px 24px;
}
@media screen and (max-width: 767px) {
  .prizes .modal__content {
    padding-inline: 20px;
  }
}
.prizes .modal__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .prizes .modal__title {
    font-size: 1.6rem;
  }
}
.prizes .modal__text {
  margin-top: 24px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .prizes .modal__text {
    font-size: 1.2rem;
  }
}
.prizes .modal__close {
  margin-top: 24px;
  font-size: 2rem;
  font-weight: 700;
  padding: 8px 35px 10px;
}
.prizes .prizes__bg {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.prizes .prizes__bg img {
  width: 100%;
  height: auto;
  display: block;
}

.spots {
  position: relative;
  background-color: #67B0C7;
  overflow-x: clip;
}
.spots::before, .spots::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 120px;
  left: 0;
  background-repeat: repeat-x;
  background-position: left -6px center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .spots::before, .spots::after {
    height: 45px;
    z-index: 2;
  }
}
.spots::before {
  top: -120px;
  background-image: url("../images/img_bg_wave.png");
}
@media screen and (max-width: 767px) {
  .spots::before {
    top: -45px;
  }
}
.spots::after {
  bottom: -120px;
  background-image: url("../images/img_bg_wave_bottom.png");
}
@media screen and (max-width: 767px) {
  .spots::after {
    bottom: -45px;
  }
}
.spots .spots__imageWrap {
  position: absolute;
  width: 100px;
  height: 220px;
  bottom: 0;
  left: 36px;
}
@media screen and (max-width: 767px) {
  .spots .spots__imageWrap--upper {
    display: none;
  }
}
.spots .spots__imageWrap2 {
  width: 495px;
  height: 107px;
}
@media screen and (max-width: 767px) {
  .spots .spots__imageWrap2 {
    width: 255px;
    height: 55px;
    margin: 0 auto;
  }
}
.spots .spots__inner {
  padding-left: max(30px, 50% - 512px);
}
@media screen and (max-width: 767px) {
  .spots .spots__inner {
    padding: 0;
  }
}
.spots .spots__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 767px) {
  .spots .spots__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.spots .spots__title {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 4rem;
  font-family: "Kiwi Maru";
  font-weight: 500;
  letter-spacing: 0.25em;
  padding-top: 64px;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .spots .spots__title {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    width: 260px;
    font-size: 2.8rem;
    letter-spacing: 0;
    padding: 0 0 0 36px;
    margin: 0 auto 24px;
  }
}
.spots .spots__title::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url("../images/Star2.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .spots .spots__title::before {
    width: 28px;
    height: 28px;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.spots .swiper-manual {
  width: 100%;
  margin-left: 40px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .spots .swiper-manual {
    margin: 0;
  }
}
.spots .swiper-manual .swiper-slide {
  width: 344px;
  height: 542px;
  text-align: center;
  background-color: #fff;
  border-radius: 24px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .spots .swiper-manual .swiper-slide {
    width: 240px;
    height: 402px;
    border-radius: 12px;
  }
}
.spots .swiper-manual .swiper-image {
  width: 344px;
  height: 240px;
}
@media screen and (max-width: 767px) {
  .spots .swiper-manual .swiper-image {
    width: 240px;
    height: auto;
  }
}
.spots .swiper-manual .swiper-title {
  margin-top: 24px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .spots .swiper-manual .swiper-title {
    margin-top: 16px;
    font-size: 1.6rem;
  }
}
.spots .swiper-manual .swiper-text {
  margin-top: 24px;
  padding-inline: 24px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .spots .swiper-manual .swiper-text {
    margin-top: 16px;
    font-size: 1.2rem;
  }
}
.spots .swiper-button-prev,
.spots .swiper-button-next {
  position: absolute;
  width: 80px;
  height: 80px;
  bottom: -24px;
  top: auto;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .spots .swiper-button-prev,
  .spots .swiper-button-next {
    display: none;
  }
}
.spots .swiper-button-prev {
  left: 55px;
  background-image: url("../images/btn-left.svg");
}
.spots .swiper-button-next {
  right: 240px;
  background-image: url("../images/btn-right.svg");
}
.spots svg {
  display: none;
}
.spots .spots__bottomWrap {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1200px) {
  .spots .spots__bottomWrap {
    display: inline-block;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .spots .spots__bottomWrap {
    margin-top: 0;
    display: inline-block;
    text-align: center;
  }
}
.spots .spots__bottomRight {
  margin-left: 80px;
}
@media screen and (max-width: 1200px) {
  .spots .spots__bottomRight {
    margin: 24px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .spots .spots__bottomRight {
    margin: 16px auto 0;
  }
}
.spots .spots__text {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .spots .spots__text {
    font-size: 1.2rem;
  }
}
.spots .spots__button {
  margin-block: 24px 4px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .spots .spots__button {
    padding-bottom: 4px;
    font-size: 1.6rem;
  }
}

.faq {
  margin-top: 240px;
}
@media screen and (max-width: 767px) {
  .faq {
    margin-top: 85px;
  }
}
.faq .faq__inner {
  padding-inline: 20px;
}
.faq .faq__contents {
  margin: 40px auto 0;
  max-width: 1024px;
}
.faq .faq__wrapper {
  margin-top: 24px;
  border: 1px solid #4A3636;
  border-radius: 24px;
  overflow: hidden;
  text-align: left;
}
.faq .faq__wrapper:first-child {
  margin-top: 0;
}
.faq .faq__wrapper.is-open .faq__aWrap {
  display: block;
}
.faq .faq__wrapper.is-open .faq__question::after {
  display: none;
}
.faq .faq__wrapper.is-open .faq__qWrap::after {
  display: block;
}
.faq .faq__qWrap {
  padding: 24px 24px 24px 69px;
  background-color: #fff;
  list-style: none;
  position: relative;
}
@media screen and (max-width: 767px) {
  .faq .faq__qWrap {
    padding: 12px 55px 12px 50px;
    font-size: 1.4rem;
  }
}
.faq .faq__qWrap::before {
  position: absolute;
  content: "Q";
  width: 30px;
  height: 30px;
  top: 50%;
  left: 24px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 3.2rem;
  font-family: "Josefin Sans";
  color: #9ED0E0;
}
@media screen and (max-width: 767px) {
  .faq .faq__qWrap::before {
    width: 22px;
    height: 22px;
    font-size: 2.4rem;
  }
}
.faq .faq__qWrap::after {
  position: absolute;
  content: "";
  width: 48px;
  height: 48px;
  top: 50%;
  right: 24px;
  background-image: url("../images/btn_minus.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: none;
}
@media screen and (max-width: 767px) {
  .faq .faq__qWrap::after {
    width: 26px;
    height: 26px;
  }
}
.faq .faq__question {
  font-weight: 700;
  line-height: 1.6;
  position: relative;
  display: block;
}
.faq .faq__question::after {
  position: absolute;
  content: "";
  width: 48px;
  height: 48px;
  top: 50%;
  right: 0;
  background-image: url("../images/btn_plus.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .faq .faq__question::after {
    width: 26px;
    height: 26px;
    right: -30px;
  }
}
.faq .faq__aWrap {
  padding: 24px;
  background-color: #F5F5F5;
  line-height: 1.6;
  position: relative;
  display: none;
}
.faq .faq__answer {
  padding-left: 50px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .faq .faq__answer {
    padding-left: 28px;
  }
}
.faq .faq__answer::before {
  position: absolute;
  content: "A";
  width: 23px;
  height: 23px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 3.2rem;
  font-family: "Josefin Sans";
  color: #9ED0E0;
  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;
}
@media screen and (max-width: 767px) {
  .faq .faq__answer::before {
    width: 22px;
    height: 22px;
    font-size: 2.4rem;
  }
}

.entry {
  margin-top: 120px;
}
.entry .entry__inner {
  padding: 0 20px;
}
.entry .entry__container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 40px 56px;
  border: 4px solid #fff;
  background-color: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 767px) {
  .entry .entry__container {
    padding: 24px 20px;
  }
}
.entry .entry__contents {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .entry .entry__contents {
    margin-top: 24px;
  }
}
.entry .entry__listWrap {
  margin: 0 auto;
  text-align: left;
  line-height: 1.6;
}
.entry .entry__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 0;
  border-top: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .entry .entry__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.entry .entry__list:first-child {
  border-top: none;
}
.entry .entry__listTitle {
  width: 240px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-weight: 700;
  padding-left: 32px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .entry .entry__listTitle {
    width: 100%;
    padding-left: 16px;
    font-size: 1.4rem;
  }
}
.entry .entry__listTitle::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  top: 50%;
  left: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #9ED0E0;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .entry .entry__listTitle::before {
    left: 0;
  }
}
.entry .entry__listDetail {
  width: calc(100% - 240px);
}
@media screen and (max-width: 767px) {
  .entry .entry__listDetail {
    width: 100%;
    font-size: 1.2rem;
    margin-top: 8px;
  }
}
@media screen and (max-width: 767px) {
  .entry .entry__listDetail--2 {
    font-size: 1.6rem;
    line-height: 1.25;
  }
}
.entry .entry__detail {
  padding-left: 18px;
  position: relative;
}
.entry .entry__detail::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  top: 12px;
  left: 4px;
  background-color: #4A3636;
  border-radius: 50%;
}

.entry__bg {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .entry__bg {
    margin-top: 32px;
  }
}

.contact {
  padding-block: 120px;
  background-color: #fff;
}
@media screen and (max-width: 999px) {
  .contact {
    padding-block: 40px;
  }
}
.contact .contact__inner {
  padding: 0 20px;
}
.contact .contact__text {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .contact .contact__text {
    line-height: 1.25;
  }
}
.contact .contact__form {
  margin: 40px auto 0;
  max-width: 848px;
}
.contact .contact__formWrap {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .contact .contact__formWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.contact .contact__formWrap:first-child {
  margin-top: 0;
}
.contact .contact__formWrap:nth-child(4) {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 999px) {
  .contact .contact__formWrap:nth-child(5) {
    margin-top: 0;
  }
}
.contact .contact__formWrap--privacy {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 999px) {
  .contact .contact__formWrap {
    display: block;
  }
}
.contact .contact__label {
  width: 180px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .contact .contact__label {
    font-size: 1.4rem;
    width: auto;
  }
  .contact .contact__label--message {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-top: 16px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .contact .contact__label--message {
    padding-top: 0;
  }
}
.contact .required {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.6;
  padding: 4px 8px;
  background-color: #CE2073;
  color: #fff;
  border-radius: 4px;
}
.contact .contact__inputWrap {
  width: 628px;
}
@media screen and (max-width: 999px) {
  .contact .contact__inputWrap {
    padding-top: 12px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .contact .contact__inputWrap {
    padding-top: 6px;
    width: 100%;
  }
}
.contact .input-border {
  width: 100%;
  background-color: #F5F5F5;
  border: 1px solid transparent;
  padding: 16px;
  line-height: 1.6;
  border-radius: 8px;
}
.contact .input-border:focus {
  background-color: #eaf6fa;
  border: 1px solid #9ED0E0;
}
.contact .input-border--select {
  --bg-color: #9ED0E0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(../images/icon_select_arrow.svg), linear-gradient(to left, var(--bg-color) 52px, #f5f5f5 52px);
  background-repeat: no-repeat;
  background-position: center right 11px, center center;
  background-size: 32px, 100%;
  cursor: default;
}
@media (any-hover: hover) {
  .contact .input-border--select:hover {
    --bg-color: #67B0C7;
  }
}
.contact input::-webkit-input-placeholder, .contact textarea::-webkit-input-placeholder {
  color: #cccfd7;
}
.contact input::-moz-placeholder, .contact textarea::-moz-placeholder {
  color: #cccfd7;
}
.contact input:-ms-input-placeholder, .contact textarea:-ms-input-placeholder {
  color: #cccfd7;
}
.contact input::-ms-input-placeholder, .contact textarea::-ms-input-placeholder {
  color: #cccfd7;
}
.contact input::placeholder,
.contact textarea::placeholder {
  color: #cccfd7;
}
.contact .contact__radioWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 999px) {
  .contact .contact__radioWrap {
    margin-left: -40px;
  }
}
.contact .contact__radioItem {
  padding-block: 18px;
}
.contact .radio {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 24px;
  height: 24px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: 40px;
  opacity: 0;
  cursor: pointer;
}
.contact .radio__label {
  position: relative;
  cursor: pointer;
  display: inline-block;
}
.contact .radio__label::before, .contact .radio__label::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  pointer-events: none;
}
.contact .radio__label::before {
  width: 24px;
  height: 24px;
  left: -30px;
  background-color: #F5F5F5;
}
.contact .radio__label::after {
  width: 12px;
  height: 12px;
  left: -24px;
  background-color: #9ED0E0;
  visibility: hidden;
}
.contact .radio:checked + .radio__label::after {
  visibility: visible;
}
.contact .checkbox-input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.contact .checkbox-text {
  display: inline-block;
  padding-left: 36px;
  position: relative;
}
.contact .checkbox-text::before, .contact .checkbox-text::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.contact .checkbox-text::before {
  width: 24px;
  height: 24px;
  left: 0;
  background-color: #F5F5F5;
  border-radius: 4px;
}
.contact .checkbox-text::after {
  width: 14px;
  height: 14px;
  left: 5px;
  background-image: url(../images/check.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  visibility: hidden;
}
.contact .checkbox-input:user-invalid + .checkbox-text::before {
  border: 1px solid #CE2073;
  background-color: #FFF0F7;
}
.contact .checkbox-input:checked + .checkbox-text::after {
  visibility: visible;
}
.contact .contact__buttonWrap {
  margin-top: 40px;
}

.access {
  margin-top: 120px;
  position: relative;
}
.access .access__pic {
  position: absolute;
  width: 100px;
  height: 220px;
  top: -40px;
  right: 80px;
}
@media screen and (max-width: 999px) {
  .access .access__pic {
    width: 50px;
    height: 110px;
  }
}
@media screen and (max-width: 767px) {
  .access .access__pic {
    right: 20px;
  }
}
.access .access__pic img {
  width: 100%;
}
.access .access__inner {
  padding-inline: 20px;
}
.access .access__text {
  font-size: 2.4rem;
  line-height: 1.25;
  font-family: "Josefin Sans";
}
.access .access__snsWrap {
  margin: 24px auto 0;
  width: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.access .fa-brands {
  color: #67B0C7;
  font-size: 4rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .access .fa-brands:hover {
    opacity: 0.6;
  }
}
.access .access__imageWrap {
  max-width: 755px;
  margin: 30px auto 0;
}
.access .access__imageWrap--logo {
  width: 183px;
  height: 24px;
  margin: 0 auto 0 0;
}
@media screen and (max-width: 767px) {
  .access .access__imageWrap--logo {
    margin: auto;
  }
}
.access .access__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1024px;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .access .access__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    max-width: 600px;
    height: auto;
  }
}
.access .access__infoWrap {
  width: 50%;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .access .access__infoWrap {
    width: 100%;
  }
}
.access .access__mapWrap {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .access .access__mapWrap {
    width: 100%;
  }
}
.access .access__infoWrap__container {
  width: 390px;
  margin: 106px auto 0;
}
@media screen and (max-width: 767px) {
  .access .access__infoWrap__container {
    width: auto;
    margin: auto;
    padding: 24px;
  }
}
.access .access__listWrap {
  margin: 24px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .access .access__listWrap {
    gap: 8px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.access .access__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.access .access__listTitle {
  width: 120px;
  font-weight: 700;
  line-height: 1.6;
  padding-left: 16px;
  text-align: left;
  position: relative;
}
@media screen and (max-width: 999px) {
  .access .access__listTitle {
    width: 95px;
  }
}
@media screen and (max-width: 767px) {
  .access .access__listTitle {
    width: 80px;
    font-size: 1.2rem;
  }
}
.access .access__listTitle::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #9ED0E0;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .access .access__listDetail {
    width: auto;
    font-size: 1.2rem;
  }
}

.toTop {
  position: fixed;
  bottom: 80px;
  right: 40px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  z-index: 40;
}
@media screen and (max-width: 999px) {
  .toTop {
    position: static;
    width: 100px;
    height: 104px;
    margin: 48px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .toTop {
    position: static;
    width: 75px;
    height: 78px;
    margin: 24px auto 0;
  }
}
.toTop.is-show {
  opacity: 1;
  pointer-events: auto;
}
.toTop .toTop__imageWrap {
  width: 100px;
  height: 104px;
  display: block;
}
@media screen and (max-width: 767px) {
  .toTop .toTop__imageWrap {
    width: 75px;
    height: 78px;
  }
}
.toTop .toTop__imageWrap img {
  width: 100%;
  height: auto;
}

.footer {
  margin-top: 120px;
  padding-top: 120px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .footer {
    margin-top: 24px;
    padding-top: 45px;
  }
}
.footer::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 120px;
  top: 0;
  left: 0;
  background-image: url("../images/img_bg_wave.png");
  background-repeat: repeat-x;
  background-position: left -6px center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .footer::before {
    height: 45px;
  }
}
.footer .footer__copyright {
  padding-bottom: 32px;
  font-size: 1.4rem;
  line-height: 1.6;
  background-color: #67B0C7;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer .footer__copyright {
    font-size: 1rem;
  }
}/*# sourceMappingURL=style.css.map */