@charset "UTF-8";
*:focus {
  outline-color: #9ed0e0;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #4a3636;
  background-color: #e9f6f8;
  font-family: "Noto sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: clip;
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

.ly_inner {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}

.el_btn_sm {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  align-items: center;
  padding: 4px 22px 6px 22px;
  border-radius: 40px;
  border: 2px solid #4a3636;
  background: #fff;
  box-shadow: 0px 4px 0px 0px #4a3636;
  transition: background-color 0.4s;
  cursor: pointer;
}
.el_btn_sm:hover {
  background: #ffee56;
}

.el_btn_md {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  align-items: center;
  padding: 10px 40px 12px 40px;
  border-radius: 40px;
  border: 2px solid #4a3636;
  background: #fff;
  box-shadow: 0px 4px 0px 0px #4a3636;
  transition: background-color 0.4s;
  cursor: pointer;
}
.el_btn_md:hover {
  background: #ffee56;
}

.el_hidden_lg {
  display: none;
}
@media screen and (max-width: 1023px) {
  .el_hidden_lg {
    display: inline-block;
  }
}

.el_hidden_md {
  display: none;
}
@media screen and (max-width: 899px) {
  .el_hidden_md {
    display: inline-block;
  }
}

.el_visible_md {
  display: inline-block;
}
@media screen and (max-width: 899px) {
  .el_visible_md {
    display: none;
  }
}

.ly_wrap {
  overflow: hidden;
}

.ly_header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  height: 64px;
  background: #fff;
}

.ly_header_inner {
  max-width: 1512px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: inherit;
  padding-left: 24px;
  padding-right: 24px;
}
@media screen and (max-width: 899px) {
  .ly_header_inner {
    padding-left: 22px;
    padding-right: 22px;
  }
}

.bl_header_logo {
  z-index: 20;
}

.bl_header_logo_link {
  display: block;
}
.bl_header_logo_link img {
  width: 183px;
  max-width: 100%;
}
@media screen and (max-width: 899px) {
  .bl_header_logo_link img {
    width: 210px;
  }
}

.bl_header_nav {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}
@media screen and (max-width: 899px) {
  .bl_header_nav {
    position: fixed;
    flex-direction: column;
    background: #fff;
    width: 100%;
    height: calc(100dvh - 64px);
    left: 0;
    top: 64px;
    padding-top: 77px;
    padding-bottom: 77px;
    gap: 30px;
    overflow-y: auto;
    transform: translateY(-120%);
    transition: transform 0.4s;
  }
  .bl_header_nav.is_checked {
    transform: translateY(0);
  }
}

.bl_header_link {
  display: inline-block;
  font-size: 12px;
}
.bl_header_link:hover {
  color: #9ed0e0;
  text-decoration: underline;
}
@media screen and (max-width: 899px) {
  .bl_header_link {
    font-size: 14px;
    padding-block: 5px;
  }
}

.bl_header_btn {
  padding-left: 2px;
}
@media screen and (max-width: 899px) {
  .bl_header_btn {
    padding-left: 0;
    padding-top: 3px;
  }
}
@media screen and (max-width: 899px) {
  .bl_header_btn a {
    font-size: 16px;
  }
}

.bl_header_open {
  display: none;
  z-index: 20;
}
@media screen and (max-width: 899px) {
  .bl_header_open {
    display: block;
  }
}

.un_drawerIcon {
  width: 32px;
  height: 28px;
  border: none;
  padding: 0;
  background: url(../img/hunberger_icon.svg) no-repeat;
  background-size: 100% 100%;
}
.un_drawerIcon.is_checked {
  background: url(../img/closs_icon.svg) no-repeat;
  -webkit-animation: fadeIn 0.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
          animation: fadeIn 0.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.ly_fv {
  position: relative;
  padding-top: 34px;
  margin-top: 64px;
}
@media screen and (max-width: 899px) {
  .ly_fv {
    padding-top: 26px;
    margin-top: 56px;
  }
}

.bl_fv_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 740px;
  overflow: hidden;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
}
@media screen and (max-width: 899px) {
  .bl_fv_bg {
    height: 560px;
  }
}
.bl_fv_bg img {
  max-width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}

.ly_fv_inner {
  position: relative;
  width: 100%;
  max-width: 848px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 899px) {
  .ly_fv_inner {
    max-width: 375px;
  }
}

.bl_fv_desc {
  text-align: center;
}

.bl_fv_txt {
  text-shadow: 0px 0px 30px #fff;
  font-family: "Kiwi Maru";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25;
  padding-bottom: 24px;
}
@media screen and (max-width: 899px) {
  .bl_fv_txt {
    font-size: 14px;
    font-weight: 400;
    padding-bottom: 20px;
  }
}

.bl_fv_ttl {
  right: 0;
  left: 0;
  margin: 0 auto;
  max-width: 520px;
}
@media screen and (max-width: 899px) {
  .bl_fv_ttl {
    width: 335px;
  }
}
@media screen and (max-width: 374px) {
  .bl_fv_ttl {
    width: 300px;
  }
}

.bl_fv_imgUnit {
  position: relative;
  max-height: 603px;
  height: 558px;
}
@media screen and (max-width: 899px) {
  .bl_fv_imgUnit {
    height: 563px;
  }
}

.bl_fv_deviceImg {
  position: absolute;
  top: 33px;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 250px;
  z-index: 5;
}
@media screen and (max-width: 899px) {
  .bl_fv_deviceImg {
    top: 113px;
    width: 200px;
  }
}

.bl_fv_deviceMsg {
  position: absolute;
  top: 152px;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 200px;
  overflow: hidden;
  text-align: center;
  background: #fff;
  border-radius: 16px;
}
@media screen and (max-width: 899px) {
  .bl_fv_deviceMsg {
    top: 122px;
    width: 160px;
  }
}

.bl_fv_deviceMsg_ttl {
  color: #fff;
  font-family: "Noto Sans JP";
  font-weight: 700;
  background: linear-gradient(265deg, #ac3790 -3.52%, #d65a5c 44.94%, #f4c06d 92.38%);
  padding: 8px 12px;
}
@media screen and (max-width: 899px) {
  .bl_fv_deviceMsg_ttl {
    font-size: 12.8px;
    height: 32.8px;
    padding: 7px 12px;
  }
}

.bl_fv_deviceMsg_body {
  padding-top: 16px;
  padding-bottom: 24px;
}
@media screen and (max-width: 899px) {
  .bl_fv_deviceMsg_body {
    padding-top: 9.8px;
    padding-bottom: 18.2px;
  }
}

.bl_fv_deviceMsg_body_heading {
  font-size: 14px;
}
@media screen and (max-width: 899px) {
  .bl_fv_deviceMsg_body_heading {
    font-size: 12px;
  }
}
.bl_fv_deviceMsg_body_heading span {
  border-bottom: 3px solid #ce2073;
  padding-bottom: 1px;
}

.bl_fv_deviceMsg_txt {
  font-weight: 700;
  padding-top: 8px;
  padding-bottom: 16px;
}
@media screen and (max-width: 899px) {
  .bl_fv_deviceMsg_txt {
    font-size: 12px;
    padding-bottom: 10px;
  }
}

.bl_fv_deviceMsg_body_btn {
  width: 144px;
  right: 0;
  left: 0;
  margin: 0 auto;
}
.bl_fv_deviceMsg_body_btn a {
  font-size: 16px;
}
@media screen and (max-width: 899px) {
  .bl_fv_deviceMsg_body_btn a {
    font-size: 14px;
  }
}
@media screen and (max-width: 899px) {
  .bl_fv_deviceMsg_body_btn {
    width: 132px;
  }
}

.un_fv_msg {
  position: absolute;
  top: 0;
  left: 37px;
  right: auto;
  width: 244px;
  z-index: 4;
}
@media screen and (max-width: 899px) {
  .un_fv_msg {
    top: 17px;
    left: 20px;
    width: 142px;
  }
}
@media screen and (max-width: 374px) {
  .un_fv_msg {
    left: 10px;
  }
}

.un_fv_presentImg {
  position: absolute;
  top: 17px;
  left: 541px;
  right: auto;
  width: 180px;
}
@media screen and (max-width: 899px) {
  .un_fv_presentImg {
    top: 10px;
    left: 220px;
    width: 110px;
  }
}
@media screen and (max-width: 374px) {
  .un_fv_presentImg {
    top: 15px;
    left: 200px;
  }
}

.un_fv_foodImg {
  position: absolute;
  top: 227px;
  left: 0;
  right: auto;
  width: 212px;
  z-index: 6;
}
@media screen and (max-width: 899px) {
  .un_fv_foodImg {
    top: 391px;
    left: 20px;
    width: 90.26px;
  }
}
@media screen and (max-width: 374px) {
  .un_fv_foodImg {
    left: 10px;
  }
}

.un_fv_catBlack {
  position: absolute;
  top: 309px;
  left: 615px;
  right: auto;
  width: 170px;
  z-index: 5;
}
@media screen and (max-width: 899px) {
  .un_fv_catBlack {
    top: 405px;
    left: 293px;
    width: 62px;
  }
}
@media screen and (max-width: 374px) {
  .un_fv_catBlack {
    left: 250px;
  }
}

.un_fv_catBrown {
  position: absolute;
  top: 429px;
  left: 615px;
  right: auto;
  width: 233px;
  z-index: 6;
}
@media screen and (max-width: 899px) {
  .un_fv_catBrown {
    top: 460px;
    left: 248px;
    width: 98px;
  }
}
@media screen and (max-width: 374px) {
  .un_fv_catBrown {
    left: 200px;
  }
}

.ly_about {
  position: relative;
  margin-top: 82px;
}
@media screen and (max-width: 599px) {
  .ly_about {
    margin-top: 0px;
  }
}

.bl_about_deco__diagonalPattern {
  position: absolute;
  top: -20px;
  right: calc(50% + 527px);
  width: 250px;
}
@media screen and (max-width: 1279px) {
  .bl_about_deco__diagonalPattern {
    right: calc(50% + 360px);
  }
}
@media screen and (max-width: 1023px) {
  .bl_about_deco__diagonalPattern {
    right: calc(50% + 320px);
  }
}
@media screen and (max-width: 599px) {
  .bl_about_deco__diagonalPattern {
    display: none;
  }
}

.bl_about_deco__ropewayPic {
  position: absolute;
  top: 74px;
  right: calc(50% + 614px);
  width: 480px;
  z-index: 2;
}
@media screen and (max-width: 1279px) {
  .bl_about_deco__ropewayPic {
    right: calc(50% + 420px);
  }
}
@media screen and (max-width: 1023px) {
  .bl_about_deco__ropewayPic {
    top: 160px;
    right: calc(50% + 360px);
  }
}
@media screen and (max-width: 599px) {
  .bl_about_deco__ropewayPic {
    top: 394px;
    right: calc(50% + 128px);
    width: 200px;
  }
}

.bl_about_deco__stairsPic {
  position: absolute;
  top: 321px;
  right: calc(50% + 432px);
  width: 427px;
}
@media screen and (max-width: 1279px) {
  .bl_about_deco__stairsPic {
    right: calc(50% + 290px);
  }
}
@media screen and (max-width: 1023px) {
  .bl_about_deco__stairsPic {
    top: 380px;
    right: calc(50% + 160px);
  }
}
@media screen and (max-width: 899px) {
  .bl_about_deco__stairsPic {
    top: 660px;
    width: 300px;
  }
}
@media screen and (max-width: 599px) {
  .bl_about_deco__stairsPic {
    top: 710px;
    left: 0;
    width: 138px;
  }
}

.bl_about_deco__footprintsPattern {
  position: absolute;
  top: -80px;
  left: calc(50% + 490px);
  width: 100px;
}
@media screen and (max-width: 1279px) {
  .bl_about_deco__footprintsPattern {
    left: calc(50% + 360px);
  }
}
@media screen and (max-width: 1023px) {
  .bl_about_deco__footprintsPattern {
    left: calc(50% + 280px);
  }
}
@media screen and (max-width: 599px) {
  .bl_about_deco__footprintsPattern {
    top: -8px;
    left: calc(50% + 133px);
    width: 54px;
  }
}

.bl_about_deco__ferryPci {
  position: absolute;
  top: 73px;
  left: calc(50% + 560px);
  width: 480px;
}
@media screen and (max-width: 1279px) {
  .bl_about_deco__ferryPci {
    left: calc(50% + 420px);
  }
}
@media screen and (max-width: 1023px) {
  .bl_about_deco__ferryPci {
    left: calc(50% + 360px);
  }
}
@media screen and (max-width: 599px) {
  .bl_about_deco__ferryPci {
    top: 273px;
    left: calc(50% + 127px);
    width: 200px;
  }
}

.bl_about_deco__wavePattern {
  position: absolute;
  top: 607px;
  left: calc(50% + 448px);
  width: 873px;
}
@media screen and (max-width: 1279px) {
  .bl_about_deco__wavePattern {
    left: calc(50% + 310px);
  }
}
@media screen and (max-width: 599px) {
  .bl_about_deco__wavePattern {
    display: none;
  }
}

.bl_about_deco__buttonPic {
  position: absolute;
  top: 601px;
  left: calc(50% + 505px);
  width: 101px;
}
@media screen and (max-width: 1279px) {
  .bl_about_deco__buttonPic {
    left: calc(50% + 340px);
  }
}
@media screen and (max-width: 1023px) {
  .bl_about_deco__buttonPic {
    top: 650px;
  }
}
@media screen and (max-width: 599px) {
  .bl_about_deco__buttonPic {
    top: 720px;
    left: calc(50% + 118px);
    width: 48px;
  }
}

.bl_about_deco__fabricPic {
  position: absolute;
  top: 757px;
  left: calc(50% + 374px);
  width: 308px;
}
@media screen and (max-width: 1279px) {
  .bl_about_deco__fabricPic {
    left: calc(50% + 260px);
  }
}
@media screen and (max-width: 1023px) {
  .bl_about_deco__fabricPic {
    top: 820px;
    left: calc(50% + 200px);
  }
}
@media screen and (max-width: 599px) {
  .bl_about_deco__fabricPic {
    top: 762px;
    left: calc(50% - 3px);
    width: 133px;
  }
}

.ly_about_inner {
  max-width: 888px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (max-width: 1279px) {
  .ly_about_inner {
    max-width: 660px;
  }
}
@media screen and (max-width: 899px) {
  .ly_about_inner {
    max-width: 560px;
  }
}
@media screen and (max-width: 599px) {
  .ly_about_inner {
    max-width: 415px;
  }
}
@media screen and (max-width: 374px) {
  .ly_about_inner {
    max-width: 375px;
  }
}

.bl_about_wrap {
  position: relative;
  padding: 40px 20px 36px;
  background-color: #fff;
  border-radius: 40px;
  z-index: 3;
}
@media screen and (max-width: 1279px) {
  .bl_about_wrap {
    border-radius: 24px;
    padding: 40px 43px;
  }
}
@media screen and (max-width: 899px) {
  .bl_about_wrap {
    padding: 38px 12px;
  }
}

.bl_about_topImg__l {
  position: absolute;
  top: 40px;
  left: 85px;
  width: 147px;
}
@media screen and (max-width: 1279px) {
  .bl_about_topImg__l {
    top: 20px;
    left: 50px;
  }
}
@media screen and (max-width: 599px) {
  .bl_about_topImg__l {
    top: 32px;
    left: 33px;
    width: 87.57px;
  }
}

.bl_about_topImg__r {
  position: absolute;
  top: 47px;
  right: 84px;
  width: 147px;
}
@media screen and (max-width: 1279px) {
  .bl_about_topImg__r {
    top: 22px;
    right: 49px;
  }
}
@media screen and (max-width: 599px) {
  .bl_about_topImg__r {
    top: 30px;
    right: 20px;
    width: 87.57px;
  }
}

.bl_heading_unit {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .bl_heading_unit {
    gap: 7px;
  }
}

.bl_heading_icon {
  display: flex;
  width: 48px;
}
@media screen and (max-width: 599px) {
  .bl_heading_icon {
    width: 37px;
  }
}

.bl_heading__en {
  font-family: Courgette;
  font-size: 20px;
  line-height: 1.25;
}
@media screen and (max-width: 599px) {
  .bl_heading__en {
    font-size: 16px;
  }
}

.bl_heading__jp {
  font-family: "Kiwi Maru";
  font-size: 32px;
  font-weight: 500;
  line-height: 1.25;
  border-bottom: 8px solid #ffee56;
  padding-bottom: 8px;
}
@media screen and (max-width: 599px) {
  .bl_heading__jp {
    font-size: 20px;
    padding-bottom: 4px;
  }
}

.bl_about_subHeading {
  text-align: center;
  margin-top: 32px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 599px) {
  .bl_about_subHeading {
    margin-top: 24px;
    display: none;
  }
}

.un_about_subHeading_hidden__lg {
  font-size: 14px;
  display: none;
}
@media screen and (max-width: 599px) {
  .un_about_subHeading_hidden__lg {
    display: block;
  }
}

.bl_about_txtWrap {
  text-align: center;
  margin-top: 32px;
}
@media screen and (max-width: 599px) {
  .bl_about_txtWrap {
    margin-top: 24px;
    font-size: 12px;
  }
}

.bl_about_txt {
  margin-top: 27px;
}
@media screen and (max-width: 599px) {
  .bl_about_txt {
    margin-top: 18px;
  }
}

.el_link_txt {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.el_link_txt:hover {
  color: #9ed0e0;
}

.un_about_display {
  display: inline-block;
}
@media screen and (max-width: 899px) {
  .un_about_display {
    display: none;
  }
}

.el_fontWeightBold {
  font-weight: bold;
  font-style: normal;
}

.un_about_emTxt {
  display: inline-block;
  margin-top: 44px;
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px dashed #9ed0e0;
  padding-bottom: 10px;
}
@media screen and (max-width: 599px) {
  .un_about_emTxt {
    margin-top: 30px;
    font-size: 14px;
    padding-bottom: 8px;
  }
}

.bl_about_btn {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
@media screen and (max-width: 599px) {
  .bl_about_btn {
    margin-top: 24px;
  }
}

@media screen and (max-width: 899px) {
  .un_about_btn_size {
    font-size: 16px;
    padding: 4px 22px 6px 22px;
  }
}

.bl_about_arrowPattern {
  width: 140px;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .bl_about_arrowPattern {
    width: 100px;
  }
}

.bl_about_bottomSlide {
  margin-top: 117px;
}
@media screen and (max-width: 599px) {
  .bl_about_bottomSlide {
    margin-top: 103px;
  }
}

.bl_about_deco__onomichiEnglish {
  position: relative;
  width: 891px;
  z-index: 5;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 899px) {
  .bl_about_deco__onomichiEnglish {
    width: 355px;
  }
}

.bl_about_swiperWrapper {
  transition-timing-function: linear;
}

.bl_about_swiperSlide {
  width: 200px;
}
@media screen and (max-width: 899px) {
  .bl_about_swiperSlide {
    width: 100px;
  }
}

.ly_howToEnter {
  margin-top: 118px;
}
@media screen and (max-width: 899px) {
  .ly_howToEnter {
    margin-top: 65px;
  }
}

.ly_howToEnter_inner {
  position: relative;
  max-width: 1512px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (max-width: 374px) {
  .ly_howToEnter_inner {
    max-width: 375px;
  }
}
@media screen and (max-width: 599px) {
  .ly_howToEnter_inner {
    max-width: 599px;
  }
}
@media screen and (max-width: 899px) {
  .ly_howToEnter_inner {
    max-width: 899px;
  }
}
@media screen and (max-width: 1023px) {
  .ly_howToEnter_inner {
    max-width: 1024px;
  }
}

.bl_howToEnter_deco__map {
  position: absolute;
  top: -60px;
  left: 35px;
  width: 460px;
  z-index: -1;
}
@media screen and (max-width: 899px) {
  .bl_howToEnter_deco__map {
    top: 0;
    width: 300px;
  }
}
@media screen and (max-width: 599px) {
  .bl_howToEnter_deco__map {
    left: 0;
    width: 149px;
  }
}

.bl_howToEnter_deco__footprintsPattern__l {
  position: absolute;
  top: 580px;
  left: 35px;
  width: 100px;
  z-index: -1;
}
@media screen and (max-width: 599px) {
  .bl_howToEnter_deco__footprintsPattern__l {
    top: 550px;
    left: 20px;
    width: 55px;
  }
}

.bl_bl_howToEnter_deco__cat__tabi {
  position: absolute;
  top: -26px;
  right: 231px;
  width: 238px;
  z-index: -2;
}
@media screen and (max-width: 1279px) {
  .bl_bl_howToEnter_deco__cat__tabi {
    right: 145px;
  }
}
@media screen and (max-width: 1023px) {
  .bl_bl_howToEnter_deco__cat__tabi {
    right: 125px;
  }
}
@media screen and (max-width: 899px) {
  .bl_bl_howToEnter_deco__cat__tabi {
    top: 0px;
    right: 100px;
    width: 190px;
  }
}
@media screen and (max-width: 599px) {
  .bl_bl_howToEnter_deco__cat__tabi {
    top: 0px;
    right: 24px;
    width: 105px;
  }
}

.bl_bl_howToEnter_deco__cat__gray {
  position: absolute;
  top: -16px;
  right: 104px;
  width: 214px;
  z-index: -1;
}
@media screen and (max-width: 1279px) {
  .bl_bl_howToEnter_deco__cat__gray {
    right: 19px;
  }
}
@media screen and (max-width: 1023px) {
  .bl_bl_howToEnter_deco__cat__gray {
    right: -1px;
  }
}
@media screen and (max-width: 899px) {
  .bl_bl_howToEnter_deco__cat__gray {
    top: 5px;
    right: 0;
    width: 170px;
  }
}
@media screen and (max-width: 599px) {
  .bl_bl_howToEnter_deco__cat__gray {
    top: 5px;
    right: -31px;
    width: 94px;
  }
}

.bl_howToEnter_deco__footprintsPattern__r {
  position: absolute;
  top: 268px;
  right: -20;
  width: 100px;
  z-index: -1;
}
@media screen and (max-width: 599px) {
  .bl_howToEnter_deco__footprintsPattern__r {
    width: 55px;
    top: 74px;
    right: 20px;
  }
}

.bl_howToEnter_deco__footprintsPattern__sp {
  position: absolute;
  display: none;
  z-index: -1;
}
@media screen and (max-width: 899px) {
  .bl_howToEnter_deco__footprintsPattern__sp {
    display: block;
    top: 1000px;
    right: 0;
    width: 100px;
  }
}
@media screen and (max-width: 599px) {
  .bl_howToEnter_deco__footprintsPattern__sp {
    top: 880px;
    width: 55px;
    right: 20px;
  }
}

.bl_howToEntr_cardsUnit {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
  z-index: 2;
}
@media screen and (max-width: 899px) {
  .bl_howToEntr_cardsUnit {
    flex-direction: column;
    gap: 50px;
    margin-top: 30px;
  }
}

.bl_howToEntr_card {
  flex: 1;
  max-width: 320px;
  position: relative;
}
@media screen and (max-width: 1279px) {
  .bl_howToEntr_card {
    max-width: 300px;
  }
}
@media screen and (max-width: 1023px) {
  .bl_howToEntr_card {
    max-width: 280px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 374px) {
  .bl_howToEntr_card {
    max-width: 335px;
  }
}
.bl_howToEntr_card:nth-of-type(2) {
  margin-top: 68px;
}
@media screen and (max-width: 899px) {
  .bl_howToEntr_card:nth-of-type(2) {
    margin-top: 0;
  }
}
.bl_howToEntr_card:nth-of-type(2)::before {
  position: absolute;
  content: "";
  width: 113px;
  height: 24px;
  background: url(../img/img_step_line.png) no-repeat center center/contain;
  top: 136px;
  left: -97px;
}
@media screen and (max-width: 899px) {
  .bl_howToEntr_card:nth-of-type(2)::before {
    width: 7px;
    height: 34px;
    background: url(../img/sp/img_step_line_sp.png) no-repeat center center/contain;
    top: -34px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.bl_howToEntr_card:nth-of-type(3)::before {
  position: absolute;
  content: "";
  width: 113px;
  height: 24px;
  background: url(../img/img_step_line.png) no-repeat center center/contain;
  top: 205px;
  left: -90px;
}
@media screen and (max-width: 899px) {
  .bl_howToEntr_card:nth-of-type(3)::before {
    width: 7px;
    height: 34px;
    background: url(../img/sp/img_step_line_sp.png) no-repeat center center/contain;
    top: -34px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.bl_howToEntry_card_imgWraper {
  max-width: 280px;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .bl_howToEntry_card_imgWraper {
    max-width: 196px;
  }
}

.bl_howToEntr_card_body {
  text-align: center;
  margin-top: 29px;
}
@media screen and (max-width: 599px) {
  .bl_howToEntr_card_body {
    margin-top: 20px;
  }
}

.bl_howToEntry_card_ttl {
  font-weight: 700;
  font-size: 20px;
}
@media screen and (max-width: 599px) {
  .bl_howToEntry_card_ttl {
    font-size: 16px;
  }
}

.bl_card_txt {
  margin-top: 22px;
}
@media screen and (max-width: 1279px) {
  .bl_card_txt {
    font-size: 14px;
  }
}
@media screen and (max-width: 1023px) {
  .bl_card_txt {
    font-size: 12px;
  }
}
@media screen and (max-width: 899px) {
  .bl_card_txt {
    margin-top: 19px;
  }
}

.un_howToEntr_followBtn {
  margin-top: 16px;
  text-align: center;
}

.un_step1_btn {
  position: relative;
  display: inline-block;
  padding: 8px 12px 8px 44px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  background: #fff;
  transition: background-color 0.4s;
}
@media screen and (max-width: 599px) {
  .un_step1_btn {
    font-size: 14px;
    padding-left: 40px;
  }
}
.un_step1_btn:hover {
  background: #ffee56;
}
.un_step1_btn::before {
  position: absolute;
  content: "";
  top: 9px;
  left: 12px;
  width: 24px;
  height: 24px;
  background: url(../img/insta_Icon.svg) no-repeat center center/contain;
}
@media screen and (max-width: 599px) {
  .un_step1_btn::before {
    width: 20px;
    height: 20px;
  }
}

.bl_howToEntr_btn {
  margin-top: 48px;
  text-align: center;
}
@media screen and (max-width: 899px) {
  .bl_howToEntr_btn {
    margin-top: 16px;
  }
}

@media screen and (max-width: 899px) {
  .bl_post_btn {
    font-size: 16px;
    padding: 4px 22px 6px;
  }
}
@media screen and (max-width: 374px) {
  .bl_post_btn {
    font-size: 14px;
    padding: 4px 18px 6px;
  }
}

.ly_prizes {
  margin-top: 124px;
}
@media screen and (max-width: 899px) {
  .ly_prizes {
    margin-top: 38px;
  }
}

.ly_prizes_inner {
  max-width: 1084px;
  padding-right: 30px;
  padding-left: 30px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 599px) {
  .ly_prizes_inner {
    max-width: 100%;
    padding: 0;
  }
}

.ly_prizes_wrap {
  position: relative;
  max-width: 100%;
  padding: 28px 56px 50px;
  z-index: 2;
}
@media screen and (max-width: 899px) {
  .ly_prizes_wrap {
    padding: 20px 20px 34px;
  }
}
.ly_prizes_wrap::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 372px;
  height: 148px;
  background: url(../img/prizes/prizes_deco_PC.png) no-repeat center center/contain;
  z-index: -1;
}
@media screen and (max-width: 599px) {
  .ly_prizes_wrap::before {
    left: 51%;
    width: 238px;
    height: 83px;
    background: url(../img/prizes/prizes_deco_sp.png) no-repeat center center/contain;
  }
}
.ly_prizes_wrap::after {
  position: absolute;
  z-index: -1;
  content: "";
  background-color: #fff;
  bottom: 0;
  left: 0;
  height: calc(100% - 148px);
  width: 100%;
  border-radius: 24px;
}
@media screen and (max-width: 599px) {
  .ly_prizes_wrap::after {
    height: calc(100% - 82px);
  }
}

.bl_prizes_deco_l {
  position: absolute;
  width: 315px;
  top: 28px;
  left: 0;
}
@media screen and (max-width: 1023px) {
  .bl_prizes_deco_l {
    width: 280px;
  }
}
@media screen and (max-width: 899px) {
  .bl_prizes_deco_l {
    display: none;
  }
}

.bl_prizes_deco_r {
  position: absolute;
  width: 315px;
  top: 28px;
  right: 0;
}
@media screen and (max-width: 1023px) {
  .bl_prizes_deco_r {
    width: 280px;
  }
}
@media screen and (max-width: 899px) {
  .bl_prizes_deco_r {
    display: none;
  }
}

.bl_prizes_txt {
  margin-top: 40px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .bl_prizes_txt {
    margin-top: 16px;
    font-size: 12px;
  }
}

.bl_prizes_cardsUnit {
  display: grid;
  grid-template-rows: repeat(2, auto);
  grid-template-columns: repeat(6, 1fr);
  grid-row-gap: 80px;
  grid-column-gap: 34px;
  margin-top: 82px;
}
@media screen and (max-width: 899px) {
  .bl_prizes_cardsUnit {
    grid-template-rows: repeat(3, auto);
    grid-template-columns: repeat(12, 1fr);
    grid-row-gap: 42px;
    grid-column-gap: 15px;
    margin-top: 46px;
  }
}

.bl_prizes_card {
  border-radius: 24px;
}
.bl_prizes_card:nth-of-type(1) {
  grid-row: 1/2;
  grid-column: 1/4;
}
.bl_prizes_card:nth-of-type(2) {
  grid-row: 1/2;
  grid-column: 4/7;
}
.bl_prizes_card:nth-of-type(3) {
  grid-row: 2/3;
  grid-column: 1/3;
}
.bl_prizes_card:nth-of-type(4) {
  grid-row: 2/3;
  grid-column: 3/5;
}
.bl_prizes_card:nth-of-type(5) {
  grid-row: 2/3;
  grid-column: 5/7;
}
@media screen and (max-width: 899px) {
  .bl_prizes_card {
    border-radius: 8px;
  }
  .bl_prizes_card:nth-of-type(1) {
    grid-row: 1/2;
    grid-column: 1/7;
  }
  .bl_prizes_card:nth-of-type(2) {
    grid-row: 1/2;
    grid-column: 7/13;
  }
  .bl_prizes_card:nth-of-type(3) {
    grid-row: 2/3;
    grid-column: 1/7;
  }
  .bl_prizes_card:nth-of-type(4) {
    grid-row: 2/3;
    grid-column: 7/13;
  }
  .bl_prizes_card:nth-of-type(5) {
    grid-row: 3/4;
    grid-column: 4/10;
  }
}

.bl_prizesCard {
  position: relative;
  border-radius: 24px;
}
@media screen and (max-width: 899px) {
  .bl_prizesCard {
    border-radius: 8px;
  }
}

.bl_prizes_num {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  z-index: 2;
}
@media screen and (max-width: 899px) {
  .bl_prizes_num {
    top: -24px;
    width: 48px;
  }
}

.bl_prizes_num__low {
  top: -40px;
  width: 80px;
}
@media screen and (max-width: 899px) {
  .bl_prizes_num__low {
    top: -24px;
    width: 48px;
  }
}

.bl_prizes_card_inner {
  position: relative;
  background-color: #f5f5f5;
  border-radius: 24px;
}
@media screen and (max-width: 899px) {
  .bl_prizes_card_inner {
    border-radius: 8px;
  }
}
.bl_prizes_card_inner:hover {
  outline: 4px solid #9ed0e0;
}

.bl_prizes_card_imgWrapper {
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}
@media screen and (max-width: 899px) {
  .bl_prizes_card_imgWrapper {
    border-radius: 8px 8px 0 0;
  }
}
.bl_prizes_card_imgWrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}

.bl_prizes_card_inner:hover .bl_prizes_card_imgWrapper > img {
  transform: scale(1.2);
}

.bl_prizes_card_inner:hover .bl_prizes_card_icon {
  background: #9ed0e0;
}

.bl_prizes_card_body {
  text-align: center;
}

.bl_prizes_card_ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  height: 80px;
}
@media screen and (max-width: 899px) {
  .bl_prizes_card_ttl {
    height: 70px;
    font-size: 14px;
  }
}
@media screen and (max-width: 599px) {
  .bl_prizes_card_ttl {
    height: 56px;
    font-size: 12px;
  }
}

.bl_prizes_card_ttl__high {
  height: 120px;
}
@media screen and (max-width: 899px) {
  .bl_prizes_card_ttl__high {
    height: 70px;
  }
}
@media screen and (max-width: 599px) {
  .bl_prizes_card_ttl__high {
    height: 56px;
  }
}

.bl_prizes_card_ttl__low {
  font-size: 16px;
}
@media screen and (max-width: 899px) {
  .bl_prizes_card_ttl__low {
    font-size: 14px;
  }
}
@media screen and (max-width: 599px) {
  .bl_prizes_card_ttl__low {
    font-size: 12px;
  }
}

.bl_prizes_card_btn {
  cursor: pointer;
}

.bl_prizes_card_icon {
  position: absolute;
  height: 100px;
  width: 100px;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  background: #67b0c7;
  border-radius: 0 0 24px 0;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 899px) {
  .bl_prizes_card_icon {
    height: 64px;
    width: 64px;
    border-radius: 0 0 8px 0;
  }
}
@media screen and (max-width: 599px) {
  .bl_prizes_card_icon {
    height: 36px;
    width: 36px;
  }
}
.bl_prizes_card_icon img {
  position: absolute;
  top: 54px;
  right: 12.5px;
  max-width: 32px;
}
@media screen and (max-width: 899px) {
  .bl_prizes_card_icon img {
    height: 20.5px;
    width: 20.5px;
    top: 34.5px;
    right: 9px;
  }
}
@media screen and (max-width: 599px) {
  .bl_prizes_card_icon img {
    height: 11.5px;
    width: 11.5px;
    top: 18.4px;
    right: 5.2px;
  }
}

.bl_prizes_card_icon__low {
  position: absolute;
  height: 64px;
  width: 64px;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  background: #67b0c7;
  border-radius: 0 0 24px 0;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 599px) {
  .bl_prizes_card_icon__low {
    height: 36px;
    width: 36px;
    border-radius: 0 0 8px 0;
  }
}
.bl_prizes_card_icon__low img {
  position: absolute;
  height: 20.5px;
  width: 20.5px;
  top: 34.5px;
  right: 9px;
  max-width: 32px;
}
@media screen and (max-width: 599px) {
  .bl_prizes_card_icon__low img {
    height: 11.5px;
    width: 11.5px;
    top: 18.4px;
    right: 5.2px;
  }
}

.bl_prizes_modal {
  position: fixed;
  inset: 0;
  margin: auto;
  width: 480px;
  height: 650px;
  padding: 0;
  border: none;
  border-radius: 24px;
  z-index: 5;
}
@media screen and (max-width: 599px) {
  .bl_prizes_modal {
    max-width: 336px;
    max-height: 480px;
  }
}

.bl_prizes_modalCard_imgWrpper {
  position: relative;
  padding-top: 62.5%;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}
.bl_prizes_modalCard_imgWrpper img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.bl_prizes_modalCard_body {
  padding-top: 32px;
  padding-right: 40px;
  padding-left: 40px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .bl_prizes_modalCard_body {
    padding-top: 39px;
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media screen and (max-width: 599px) {
  .bl_prizes_modalCard_ttl {
    font-size: 16px;
  }
}

.bl_prizes_modalCard_txt {
  padding-top: 12px;
}
@media screen and (max-width: 599px) {
  .bl_prizes_modalCard_txt {
    font-size: 12px;
  }
}

.bl_prizes_modalCloseBtn {
  text-align: center;
  margin-top: 24px;
}
@media screen and (max-width: 599px) {
  .bl_prizes_modalCloseBtn {
    margin-top: 16px;
  }
}

.bl_prizes_modalClose_btn {
  font-size: 16px;
}

dialog::-webkit-backdrop {
  background: rgba(94, 94, 94, 0.6);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

dialog::backdrop {
  background: rgba(94, 94, 94, 0.6);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.bl_prizes_btn {
  margin-top: 38px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .bl_prizes_btn {
    margin-top: 22px;
  }
}

@media screen and (max-width: 899px) {
  .bl_prizes_bgImg {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -37px;
  }
}
.bl_prizes_bgImg img {
  width: 100%;
  min-width: 580px;
}

.ly_spots {
  position: relative;
  margin-top: -120px;
  margin-bottom: -120px;
  padding-top: 120px;
  padding-bottom: 120px;
}
@media screen and (max-width: 899px) {
  .ly_spots {
    margin-top: -45px;
    margin-bottom: -45px;
    padding-top: 45px;
    padding-bottom: 45px;
  }
}
.ly_spots::before {
  position: absolute;
  content: "";
  top: 1px;
  left: 0;
  width: 100%;
  height: 120px;
  background: url(../img/spots/img_bg_wave.svg) repeat-x left center/contain;
  background-color: transparent;
}
@media screen and (max-width: 899px) {
  .ly_spots::before {
    background: url(../img/spots/img_bg_wave_sp.svg) repeat-x left center/contain;
    height: 45.71px;
    top: 8px;
  }
}
.ly_spots::after {
  position: absolute;
  content: "";
  bottom: 1px;
  left: 0;
  width: 100%;
  height: 120px;
  background: url(../img/spots/img_bg_wave_rev.svg) repeat-x left center/contain;
  background-color: transparent;
}
@media screen and (max-width: 899px) {
  .ly_spots::after {
    background: url(../img/spots/img_bg_wave_sp_rev.svg) repeat-x left center/contain;
    height: 45.71px;
  }
}

.bl_spots_deco {
  position: absolute;
  bottom: 120px;
  left: 36px;
  width: 100px;
}
@media screen and (max-width: 899px) {
  .bl_spots_deco {
    display: none;
  }
}

.bl_spots_wrap {
  background-color: #67b0c7;
}

.bl_spots_top {
  display: flex;
  gap: 38px;
  padding-left: 15.7%;
}
@media screen and (max-width: 899px) {
  .bl_spots_top {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding-left: 0;
  }
}

.bl_spots_headUnit {
  width: 56px;
  text-align: center;
}
@media screen and (max-width: 899px) {
  .bl_spots_headUnit {
    width: 260px;
  }
}

.bl_spots_heading h2 {
  position: relative;
  font-family: "Kiwi Maru";
  writing-mode: vertical-lr;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.25em;
  color: #fff;
  padding-top: 74px;
  padding-right: 8px;
  padding-left: 8px;
}
@media screen and (max-width: 899px) {
  .bl_spots_heading h2 {
    font-size: 28px;
    writing-mode: horizontal-tb;
    letter-spacing: normal;
    padding-top: 10px;
    padding-right: 0;
    padding-left: 34px;
  }
}
.bl_spots_heading h2::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  width: 56px;
  height: 56px;
  transform: translateX(-50%);
  background: url(../img/spots/spots_star_Icon.svg) no-repeat center center/contain;
}
@media screen and (max-width: 899px) {
  .bl_spots_heading h2::before {
    width: 28px;
    height: 28px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
}

.bl_spots_slider {
  width: calc(100% - 88px);
  margin-top: 0;
  overflow: hidden;
}
@media screen and (max-width: 899px) {
  .bl_spots_slider {
    width: 100%;
  }
}
.bl_spots_slider .swiper {
  height: 100%;
  overflow: visible;
}

.bl_spots_swiperSlide {
  width: 344px;
}
@media screen and (max-width: 899px) {
  .bl_spots_swiperSlide {
    width: 240px;
    height: 402px;
  }
}

.bl_spotsSlide_card {
  background-color: #fff;
  border-radius: 24px;
  overflow: hidden;
  width: 344px;
  height: 542px;
}
@media screen and (max-width: 899px) {
  .bl_spotsSlide_card {
    width: 240px;
    height: 402px;
    border-radius: 12px;
  }
}

.bl_spotsSlide_imgWrapper {
  position: relative;
  overflow: hidden;
  padding-top: 68.9%;
}
@media screen and (max-width: 899px) {
  .bl_spotsSlide_imgWrapper {
    padding-top: 75.9%;
  }
}
.bl_spotsSlide_imgWrapper img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
}

.bl_spotsSlide_card_body {
  padding-right: 32px;
  padding-bottom: 40px;
  padding-left: 32px;
}
@media screen and (max-width: 899px) {
  .bl_spotsSlide_card_body {
    padding-right: 24px;
    padding-bottom: 31.16px;
    padding-left: 24px;
  }
}

.bl_spotsSlide_card_ttl {
  text-align: center;
  margin-top: 36px;
}
@media screen and (max-width: 899px) {
  .bl_spotsSlide_card_ttl {
    font-size: 16px;
    margin-top: 16px;
  }
}

.bl_spotsSlide_card_txt {
  margin-top: 30px;
}
@media screen and (max-width: 899px) {
  .bl_spotsSlide_card_txt {
    font-size: 12px;
    margin-top: 20px;
  }
}

.bl_spots_bottom {
  max-width: 1024px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 68px;
}
@media screen and (max-width: 1023px) {
  .bl_spots_bottom {
    margin-top: 0;
  }
}

.bl_spots_slide_arrows {
  position: relative;
  max-width: 962px;
  margin-right: auto;
  margin-left: auto;
  z-index: 2;
}

.swiper-button-prev,
.swiper-button-next {
  width: 80px;
  height: 80px;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.bl_spots_swiperPrev {
  background: url(../img/spots/slider_icon_l.png) no-repeat center center/contain;
  top: -100px;
}
@media screen and (max-width: 1279px) {
  .bl_spots_swiperPrev {
    left: 150px;
  }
}
@media screen and (max-width: 1023px) {
  .bl_spots_swiperPrev {
    top: 0;
    left: 160px;
  }
}
@media screen and (max-width: 899px) {
  .bl_spots_swiperPrev {
    display: none;
  }
}

.bl_spots_swiperNext {
  background: url(../img/spots/slider_icon_r.png) no-repeat center center/contain;
  top: -100px;
}
@media screen and (max-width: 1279px) {
  .bl_spots_swiperNext {
    right: 150px;
  }
}
@media screen and (max-width: 1023px) {
  .bl_spots_swiperNext {
    top: 0;
    right: 160px;
  }
}
@media screen and (max-width: 899px) {
  .bl_spots_swiperNext {
    display: none;
  }
}

.bl_spots_body {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1023px) {
  .bl_spots_body {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 899px) {
  .bl_spots_body {
    gap: 14px;
  }
}

.bl_spots_deco_en {
  width: 495px;
  margin: 0;
  z-index: 2;
}
@media screen and (max-width: 1023px) {
  .bl_spots_deco_en {
    width: 360px;
  }
}
@media screen and (max-width: 599px) {
  .bl_spots_deco_en {
    width: 255px;
  }
}

.bl_spots_txtUnit {
  text-align: center;
}

.bl_spots_txt {
  color: #fff;
}
@media screen and (max-width: 599px) {
  .bl_spots_txt {
    font-size: 11.44px;
  }
}

.bl_spots_btn {
  margin-top: 24px;
  padding-bottom: 4px;
  text-align: right;
}
@media screen and (max-width: 899px) {
  .bl_spots_btn {
    margin-bottom: 15.84px;
    text-align: center;
  }
}

.ly_QA {
  margin-top: 117px;
  padding-top: 120px;
}
@media screen and (max-width: 899px) {
  .ly_QA {
    margin-top: 42px;
    padding-top: 42px;
  }
}

.ly_QA_inner {
  max-width: 1064px;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

.ly_QA_wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}
@media screen and (max-width: 599px) {
  .ly_QA_wrap {
    gap: 12px;
    margin-top: 24px;
  }
}

.bl_QA_unit {
  border-radius: 16px;
  border: 2px solid #4a3636;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
}
@media screen and (max-width: 599px) {
  .bl_QA_unit {
    border-radius: 12px;
  }
}

details[open] .bl_QA_unit_head .bl_QA_unit_togIcon__open {
  display: inline;
}
details[open] .bl_QA_unit_head .bl_QA_unit_togIcon__close {
  display: none;
}

.bl_QA_unit_head {
  display: flex;
  gap: 16px;
  align-items: center;
  width: 100%;
  padding: 21px 22px 20px;
  background: transparent;
  border: none;
  text-align: left;
}
@media screen and (max-width: 599px) {
  .bl_QA_unit_head {
    padding: 10px 12px;
    gap: 14px;
  }
}

.bl_QA_unit_icon {
  color: #9ed0e0;
  font-family: "Josefin Sans";
  font-size: 32px;
  line-height: 1.25;
}
@media screen and (max-width: 599px) {
  .bl_QA_unit_icon {
    font-size: 24px;
  }
}

.bl_QA_unit_txt__Q {
  flex-grow: 1;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  .bl_QA_unit_txt__Q {
    font-size: 14px;
  }
}

.bl_QA_unit_togIcon__open {
  width: 48px;
  height: 48px;
  display: none;
}
@media screen and (max-width: 599px) {
  .bl_QA_unit_togIcon__open {
    width: 26.18px;
    height: 26.18px;
  }
}

.bl_QA_unit_togIcon__close {
  width: 48px;
  height: 48px;
}
@media screen and (max-width: 599px) {
  .bl_QA_unit_togIcon__close {
    width: 26.18px;
    height: 26.18px;
  }
}

.bl_QA_unit_body {
  overflow: hidden;
}

.bl_QA_unit_body_inner {
  display: flex;
  gap: 16px;
  align-items: center;
  width: 100%;
  padding: 26px 22px 22px 22px;
  background: #f5f5f5;
  border: none;
  text-align: left;
}
@media screen and (max-width: 599px) {
  .bl_QA_unit_body_inner {
    padding: 14px;
  }
}

@media screen and (max-width: 599px) {
  .bl_QA_unit_txt__A {
    font-size: 14px;
  }
}

.ly_entry {
  margin-top: 117px;
}
@media screen and (max-width: 599px) {
  .ly_entry {
    margin-top: 30px;
  }
}

.ly_entry_inner {
  max-width: 1064px;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

.bl_entry_wrap {
  padding: 32px 48px;
  border: 8px solid #fff;
  background: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 899px) {
  .bl_entry_wrap {
    padding: 16px 15px;
  }
}

.bl_entry_table {
  margin-top: 40px;
}
@media screen and (max-width: 899px) {
  .bl_entry_table {
    margin-top: 24px;
  }
}

.bl_entry_table table {
  width: 100%;
  border-collapse: collapse;
}

.bl_entry_table tr {
  display: flex;
  align-items: flex-start;
  padding: 11px 0 10px 16px;
  border-bottom: 1px solid #ccc;
}
.bl_entry_table tr:nth-child(1) {
  padding-top: 0;
}
.bl_entry_table tr:nth-child(5) {
  border-bottom: none;
}
@media screen and (max-width: 899px) {
  .bl_entry_table tr {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding-left: 0;
    padding-bottom: 14px;
  }
}

.bl_entry_table th {
  flex: 0 0 224px;
  position: relative;
  font-weight: 700;
  text-align: left;
  padding-left: 16px;
  width: 240px;
}
@media screen and (max-width: 899px) {
  .bl_entry_table th {
    flex: auto;
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .bl_entry_table th {
    font-size: 14px;
    padding-left: 16px;
  }
}
.bl_entry_table th::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: #9ed0e0;
  border-radius: 50%;
}

@media screen and (max-width: 599px) {
  .bl_entry_table td {
    font-size: 12px;
  }
}

.bl_entry_table td ul {
  margin: 0;
  padding-top: 1px;
  padding-left: 23px;
}
@media screen and (max-width: 899px) {
  .bl_entry_table td ul {
    padding-left: 17px;
  }
}

.bl_entry_table td ul li {
  list-style: none;
  position: relative;
  padding-top: 1px;
}
@media screen and (max-width: 899px) {
  .bl_entry_table td ul li {
    padding-top: 0;
  }
}
.bl_entry_table td ul li::before {
  position: absolute;
  content: "・";
  left: -1.2em;
}

.bl_entry_bottomImg {
  width: 100%;
  margin-top: 120px;
}
@media screen and (max-width: 599px) {
  .bl_entry_bottomImg {
    margin-top: 27px;
  }
}

.ly_contact {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #fff;
}
@media screen and (max-width: 899px) {
  .ly_contact {
    padding-top: 39px;
    padding-bottom: 43px;
  }
}

.ly_contact_inner {
  max-width: 888px;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

.bl_contact_txt {
  text-align: center;
  margin-top: 32px;
}
@media screen and (max-width: 599px) {
  .bl_contact_txt {
    font-size: 12px;
    margin-top: 24px;
  }
}

.bl_contact_form {
  margin-top: 40px;
}
@media screen and (max-width: 599px) {
  .bl_contact_form {
    margin-top: 24px;
  }
}

.bl_contact_fieldsUnit {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 599px) {
  .bl_contact_fieldsUnit {
    gap: 26px;
  }
}

.bl_contact_field {
  display: flex;
  gap: 40px;
  align-items: center;
}
@media screen and (max-width: 899px) {
  .bl_contact_field {
    display: block;
  }
}

.bl_formField_head {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 12px;
  width: 180px;
}

.un_height {
  height: 50.59px;
}
@media screen and (max-width: 899px) {
  .un_height {
    height: auto;
  }
}

.un_mbAuto {
  margin-bottom: auto;
}

.bl_formField_label {
  font-weight: 700;
}
@media screen and (max-width: 899px) {
  .bl_formField_label {
    font-size: 14px;
  }
}

.bl_formField_tag {
  display: inline-block;
  border-radius: 4px;
  background: #ce2073;
  padding: 4px 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.bl_formField_item {
  flex-grow: 1;
}
@media screen and (max-width: 899px) {
  .bl_formField_item {
    margin-top: 8px;
  }
}
.bl_formField_item [type=text],
.bl_formField_item [type=email] {
  width: 100%;
  border-radius: 8px;
  background: #f5f5f5;
  border: transparent;
  padding: 16px;
}
.bl_formField_item [type=text]:focus,
.bl_formField_item [type=email]:focus {
  outline: 1px solid #9ed0e0;
  background-color: #e9f6f8;
}
.bl_formField_item [type=text]::-moz-placeholder, .bl_formField_item [type=email]::-moz-placeholder {
  color: #ccc;
}
.bl_formField_item [type=text]::placeholder,
.bl_formField_item [type=email]::placeholder {
  color: #ccc;
}
@media screen and (max-width: 599px) {
  .bl_formField_item [type=text],
.bl_formField_item [type=email] {
    font-size: 14px;
  }
}
.bl_formField_item [type=text]:user-invalid,
.bl_formField_item [type=email]:user-invalid {
  outline: 1px solid #ce2073;
  background-color: #fff0f7;
}
.bl_formField_item select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 628px;
  border-radius: 8px;
  border: none;
  padding: 16px 68px 16px 16px;
  background: #f5f5f5 url(../img/contact/control.png) no-repeat center right 0px/52px 58px;
}
.bl_formField_item select:focus {
  outline: 1px solid #9ed0e0;
}
@media screen and (max-width: 899px) {
  .bl_formField_item select {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .bl_formField_item select {
    font-size: 14px;
  }
}
.bl_formField_item select:user-invalid {
  outline: 1px solid #ce2073;
  background: #fff0f7 url(../img/contact/controlErro.png) no-repeat center right 0px/52px 58px;
}
.bl_formField_item [type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.bl_formField_item [type=radio]:checked + .bl_formField_radioTxt::after {
  opacity: 1;
}
.bl_formField_item textarea {
  width: 100%;
  height: 160px;
  border-radius: 8px;
  background: #f5f5f5;
  border: transparent;
  padding: 16px;
}
.bl_formField_item textarea:focus {
  outline: 1px solid #9ed0e0;
  background-color: #e9f6f8;
}
.bl_formField_item textarea::-moz-placeholder {
  color: #ccc;
}
.bl_formField_item textarea::placeholder {
  color: #ccc;
}
@media screen and (max-width: 599px) {
  .bl_formField_item textarea {
    font-size: 14px;
  }
}
.bl_formField_item textarea:user-invalid {
  outline: 1px solid #ce2073;
  background-color: #fff0f7;
}

.bl_formField_radiosUnit {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 899px) {
  .bl_formField_radiosUnit {
    margin-top: 8px;
  }
}

.bl_formField_radio {
  cursor: pointer;
}

.bl_formField_radioTxt {
  position: relative;
  padding-left: 33px;
}
.bl_formField_radioTxt::before, .bl_formField_radioTxt::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}
.bl_formField_radioTxt::before {
  width: 24px;
  aspect-ratio: 1;
  background-color: #f5f5f5;
  border: none;
  left: 0;
  border: 1px solid transparent;
}
.bl_formField_radioTxt::after {
  width: 12px;
  aspect-ratio: 1;
  background-color: #9ed0e0;
  border: none;
  left: 6px;
  opacity: 0;
}
@media screen and (max-width: 599px) {
  .bl_formField_radioTxt {
    font-size: 14px;
  }
}

input:focus + .bl_formField_radioTxt::before {
  border-color: #9ed0e0;
}

.bl_contact_priv {
  margin-top: 36px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .bl_contact_priv {
    font-size: 12px;
    margin-top: 20px;
  }
}

.bl_formCheckbox {
  cursor: pointer;
}

.bl_formCheckbox_input {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.bl_formCheckbox_input:checked + .bl_formCheckbox_txt::after {
  opacity: 1;
}
.bl_formCheckbox_input:user-invalid + .bl_formCheckbox_txt::before {
  border-color: #ce2073;
  background-color: #fff0f7;
}

.bl_formCheckbox_input:focus + .bl_formCheckbox_txt::before {
  border-color: #9ed0e0;
}

.bl_formCheckbox_txt {
  position: relative;
  padding-left: 36px;
}
.bl_formCheckbox_txt::before, .bl_formCheckbox_txt::after {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.bl_formCheckbox_txt::before {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background-color: #f5f5f5;
  border: 1px solid transparent;
}
.bl_formCheckbox_txt::after {
  width: 15px;
  height: 10px;
  left: 5px;
  background: url(../img/contact/checkIcon.png) no-repeat center center/contain;
  opacity: 0;
}
@media screen and (max-width: 599px) {
  .bl_formCheckbox_txt {
    font-size: 14px;
  }
}

.bl_contact_btn {
  margin-top: 40px;
  text-align: center;
}
.bl_contact_btn input {
  font-size: 16px;
  padding: 4px 37px 6px 37px;
}
@media screen and (max-width: 899px) {
  .bl_contact_btn input {
    padding: 4px 22px 6px;
  }
}
@media screen and (max-width: 599px) {
  .bl_contact_btn {
    margin-top: 28px;
  }
}

.ly_footer {
  margin-top: 120px;
}
@media screen and (max-width: 899px) {
  .ly_footer {
    margin-top: 40px;
  }
}

.ly_footer_inner {
  position: relative;
  max-width: 1064px;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 899px) {
  .ly_footer_inner {
    max-width: 650px;
  }
}

.bl_footer_deco {
  position: absolute;
  top: -40px;
  right: -144px;
  width: 100px;
  z-index: -1;
}
@media screen and (max-width: 899px) {
  .bl_footer_deco {
    display: none;
  }
}

.bl_linksTtl {
  display: block;
  text-align: center;
  color: #4a3636;
  font-family: "Josefin Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25;
}
@media screen and (max-width: 899px) {
  .bl_linksTtl {
    font-size: 20px;
  }
}

.bl_linksUnit {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}

@media screen and (max-width: 899px) {
  .bl_linkIcon {
    width: 32px;
  }
}

.bl_footer_deco_onomichiEnglish {
  max-width: 755px;
  margin-top: 30px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 899px) {
  .bl_footer_deco_onomichiEnglish {
    max-width: 333px;
    margin-top: 14px;
  }
}

.bl_footer_addressWrap {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
}
@media screen and (max-width: 899px) {
  .bl_footer_addressWrap {
    flex-direction: column-reverse;
  }
}

.bl_footer_addressUnit {
  flex: 1;
  padding-left: 61.5px;
}
@media screen and (max-width: 1023px) {
  .bl_footer_addressUnit {
    padding-left: 40px;
  }
}
@media screen and (max-width: 899px) {
  .bl_footer_addressUnit {
    flex: auto;
    padding-left: 0;
    padding: 23px 20px 29px;
  }
}

.bl_footer_addressLogo {
  width: 183px;
}
@media screen and (max-width: 899px) {
  .bl_footer_addressLogo {
    width: 153px;
    margin: 0 auto;
  }
}

.bl_footer_addressInfo_list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
@media screen and (max-width: 899px) {
  .bl_footer_addressInfo_list {
    gap: 8px;
    margin-top: 30px;
  }
}

.bl_footer_addressInfo_line {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 899px) {
  .bl_footer_addressInfo_line {
    gap: 12px;
  }
}
.bl_footer_addressInfo_line dt {
  position: relative;
  width: 80px;
  font-weight: 700;
  line-height: normal;
  padding-left: 16px;
}
@media screen and (max-width: 899px) {
  .bl_footer_addressInfo_line dt {
    width: 70px;
    font-size: 12px;
    padding-left: 18px;
  }
}
@media screen and (max-width: 374px) {
  .bl_footer_addressInfo_line dt {
    font-size: 11px;
  }
}
.bl_footer_addressInfo_line dt::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background-color: #9ed0e0;
  border-radius: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 899px) {
  .bl_footer_addressInfo_line dd {
    font-size: 12px;
  }
}
@media screen and (max-width: 374px) {
  .bl_footer_addressInfo_line dd {
    font-size: 11px;
  }
}

.bl_footer_addressMap {
  width: 50%;
}
@media screen and (max-width: 899px) {
  .bl_footer_addressMap {
    width: 100%;
  }
}
.bl_footer_addressMap iframe {
  width: 100%;
  height: auto;
  vertical-align: top;
  aspect-ratio: 512/400;
}
@media screen and (max-width: 899px) {
  .bl_footer_addressMap iframe {
    aspect-ratio: 335/271;
  }
}

.ly_footer_bottom {
  position: relative;
  margin-top: 240px;
  text-align: center;
  background-color: #67b0c7;
}
@media screen and (max-width: 899px) {
  .ly_footer_bottom {
    margin-top: 69px;
  }
}
.ly_footer_bottom::before {
  position: absolute;
  content: "";
  top: -120px;
  left: 0;
  width: 100%;
  height: 120px;
  background: url(../img/spots/img_bg_wave.svg) repeat-x left center/contain;
  background-color: transparent;
}
@media screen and (max-width: 899px) {
  .ly_footer_bottom::before {
    top: -44px;
    background: url(../img/spots/img_bg_wave_sp.svg) repeat-x left center/contain;
    height: 44.71px;
  }
}

.footer__copyright {
  display: block;
  color: #fff;
  padding-bottom: 32px;
}
@media screen and (max-width: 899px) {
  .footer__copyright {
    font-size: 10px;
    padding-bottom: 24px;
  }
}

.un_pageTop {
  position: fixed;
  right: 40px;
  bottom: 40px;
  width: 100px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}
.un_pageTop.is_visible {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 899px) {
  .un_pageTop {
    position: static;
    display: block;
    margin-top: 24px;
    margin-right: auto;
    margin-left: auto;
    width: 75px;
  }
}
/*# sourceMappingURL=style.css.map */