@charset "UTF-8";
.inner {
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 900px) {
  .inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.button {
  color: #4a3636;
  border-radius: 40px;
  border: 2px solid #4a3636;
  background: #fff;
  -webkit-box-shadow: 0 4px 0 0 #4a3636;
          box-shadow: 0 4px 0 0 #4a3636;
  padding: 6px 24px 8px 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 160%;
  white-space: nowrap;
  cursor: pointer;
}
@media screen and (max-width: 340px) {
  .button {
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) {
  .button {
    font-size: 16px;
  }
}
.button:hover {
  background: #ffee56;
}

.title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 15px;
  width: 230px;
}
@media screen and (min-width: 900px) {
  .title {
    gap: 9px;
    padding: 0 20px;
    width: 360px;
  }
}
.title_icon img {
  width: 37.333px;
  height: 37.333px;
}
@media screen and (min-width: 900px) {
  .title_icon img {
    width: 48px;
    height: 48px;
  }
}
.title_en {
  font-family: Courgette;
  font-size: 16px;
  font-weight: 400;
  line-height: 125%;
}
@media screen and (min-width: 900px) {
  .title_en {
    font-size: 20px;
  }
}
.title_ja {
  font-family: "Kiwi Maru", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 125%;
  padding-bottom: 5px;
  border-bottom: 6px solid #ffee56;
}
@media screen and (min-width: 900px) {
  .title_ja {
    font-size: 32px;
    padding-bottom: 7px;
    border-bottom: 8px solid #ffee56;
  }
}

.sm-md-none {
  display: none;
}
@media screen and (min-width: 601px) {
  .sm-md-none {
    display: none;
  }
}
@media screen and (min-width: 900px) {
  .sm-md-none {
    display: block;
  }
}

@media screen and (min-width: 900px) {
  .lg-none {
    display: none;
  }
}

@media screen and (min-width: 1200px) {
  .xl-none {
    display: none;
  }
}

.xl {
  display: none;
}
@media screen and (min-width: 601px) {
  .xl {
    display: none;
  }
}
@media screen and (min-width: 900px) {
  .xl {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .xl {
    display: block;
  }
}

body {
  color: #4a3636;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 160%;
}

.header {
  z-index: 10;
  position: sticky;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
}
.header_inner {
  padding: 18px 20px;
  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;
  width: 100%;
  height: 64px;
}
@media screen and (min-width: 900px) {
  .header_inner {
    padding: 0 24px;
  }
}
.header_logo img {
  width: 210px;
  height: 27px;
}
@media screen and (min-width: 1200px) {
  .header_logo img {
    width: 183px;
    height: 24px;
  }
}
.header_nav {
  display: none;
}
@media screen and (min-width: 1200px) {
  .header_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 13px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.header_nav-link {
  font-size: 12px;
  font-weight: 400;
}
.header_nav-button {
  height: 36px;
  padding: 4px 18px 6px 16px;
}
.header_open {
  border: none;
  background: transparent;
  width: 32px;
  height: 24px;
  position: relative;
  z-index: 12;
}
.header_open.is-checked .header-icon_bar:nth-of-type(1) {
  top: 10px;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
.header_open.is-checked .header-icon_bar:nth-of-type(2) {
  opacity: 0;
}
.header_open.is-checked .header-icon_bar:nth-of-type(3) {
  top: 10px;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
.header_open.is-checked .top-bar {
  width: 100%;
  height: 3px;
  background: #4a3636;
}
.header_open.is-checked .top-bar-left,
.header_open.is-checked .top-bar-right {
  opacity: 0;
}
@media screen and (min-width: 1200px) {
  .header_open {
    display: none;
  }
}
.header-icon_bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background: #4a3636;
  border-radius: 2px;
  -webkit-transition: top 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: top 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.header-icon_bar:nth-child(2) {
  top: 11px;
}
.header-icon_bar:nth-child(3) {
  top: 23px;
}

.top-bar {
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.6px;
}
.top-bar-left {
  width: 25.6px;
  height: 3px;
  background: #4a3636;
  border-radius: 2px;
}
.top-bar-right {
  width: 4.8px;
  height: 3px;
  background: #4a3636;
  border-radius: 2px;
}

.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #fff;
  padding: 82px 114px;
  z-index: 11;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
@media screen and (min-width: 1200px) {
  .drawer-content {
    display: none;
  }
}
.drawer-content.is-checked {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.drawer-content_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
.drawer-content_link {
  display: block;
  font-size: 14px;
  font-weight: 400;
}
.drawer-content_link:hover {
  color: #9ed0e0;
  border-bottom: 1px solid #9ed0e0;
}
.fv {
  z-index: 9;
  position: relative;
  height: 710px;
  background: #e9f6f8;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .fv {
    height: 835px;
  }
}
.fv_bg {
  display: block;
  border-radius: 0 0 24px 24px;
  overflow: hidden;
  height: 554px;
}
@media screen and (min-width: 900px) {
  .fv_bg {
    height: 740px;
    border-radius: 0 0 40px 40px;
  }
}
.fv_bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 601px) {
  .fv_bg img {
    -o-object-position: top;
       object-position: top;
  }
}
.fv_inner {
  width: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.fv_title-top {
  margin-top: 17px;
  text-shadow: 0 0 30px #fff;
  font-family: "Kiwi Maru", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 125%;
}
@media screen and (min-width: 900px) {
  .fv_title-top {
    margin-top: 35px;
    font-size: 24px;
    font-weight: 500;
  }
}
.fv_title-center {
  margin-top: 20px;
  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;
  -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 (min-width: 900px) {
  .fv_title-center {
    margin-top: 24px;
    gap: 16px;
  }
}
.fv_title-center-1 {
  width: 335px;
  height: 53px;
}
@media screen and (min-width: 900px) {
  .fv_title-center-1 {
    width: 520px;
    height: 82px;
  }
}
.fv_title-center-2 {
  width: 240px;
  height: 40px;
}
@media screen and (min-width: 900px) {
  .fv_title-center-2 {
    width: 356px;
    height: 60px;
  }
}
.fv_contents {
  position: relative;
  width: 375px;
}
@media screen and (min-width: 900px) {
  .fv_contents {
    width: 900px;
  }
}
.fv_fukidashi {
  width: 142px;
  height: 80px;
  position: relative;
}
.fv_fukidashi-text {
  position: absolute;
  top: 20px;
  left: 39px;
}
@media screen and (min-width: 900px) {
  .fv_fukidashi-text {
    top: 4px;
    left: 98px;
  }
}
.fv_fukidashi-text img {
  width: 85px;
  height: 60px;
}
@media screen and (min-width: 900px) {
  .fv_fukidashi-text img {
    width: 150px;
    height: 102px;
  }
}
.fv_fukidashi-vector {
  position: absolute;
  top: 18px;
  left: 22px;
}
@media screen and (min-width: 900px) {
  .fv_fukidashi-vector {
    top: 0;
    left: 69px;
  }
}
.fv_fukidashi-vector img {
  width: 139.672px;
  height: 80px;
}
@media screen and (min-width: 900px) {
  .fv_fukidashi-vector img {
    width: 240px;
    height: 129px;
  }
}
.fv_present {
  position: absolute;
  top: 10px;
  right: 45px;
}
@media screen and (min-width: 900px) {
  .fv_present {
    top: 15px;
    right: 152px;
  }
}
.fv_present img {
  width: 110px;
  height: 110px;
}
@media screen and (min-width: 900px) {
  .fv_present img {
    width: 180px;
    height: 180px;
  }
}
.fv_iphone {
  position: absolute;
  top: 114px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-bottom: 11px;
}
@media screen and (min-width: 900px) {
  .fv_iphone {
    top: 32px;
    margin-bottom: 17px;
  }
}
.fv_iphone-inner {
  width: 200px;
  height: 408px;
  position: relative;
  background: url(../img/fv-smartphone_SP.png) no-repeat center center/cover;
}
@media screen and (min-width: 900px) {
  .fv_iphone-inner {
    background: url(../img/fv-smartphone_PC.png) no-repeat center center/cover;
    width: 250px;
    height: 510px;
  }
}
.fv_iphone-content {
  position: absolute;
  top: 122.6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 160px;
  height: 154px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 900px) {
  .fv_iphone-content {
    top: 152.5px;
    width: 200px;
    height: 194px;
  }
}
.fv_iphone-content-head {
  color: #fff;
  background: linear-gradient(265deg, #ac3790 -3.52%, #d65a5c 44.94%, #f4c06d 92.38%);
  padding: 6.4px 9.6px;
  font-size: 12.8px;
  font-weight: 700;
  line-height: 160%;
  border-top-left-radius: 12.8px;
  border-top-right-radius: 12.8px;
}
@media screen and (min-width: 900px) {
  .fv_iphone-content-head {
    font-size: 16px;
    padding: 8px 12px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }
}
.fv_iphone-content-details {
  background: #fff;
  border-bottom-left-radius: 12.8px;
  border-bottom-right-radius: 12.8px;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 7px;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 900px) {
  .fv_iphone-content-details {
    padding-top: 15px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    gap: 16px;
  }
}
.fv_iphone-content-date {
  font-size: 12px;
  font-weight: 400;
  border-bottom: 2.4px solid #ce2073;
}
@media screen and (min-width: 900px) {
  .fv_iphone-content-date {
    font-size: 14px;
    border-bottom: 3px solid #ce2073;
  }
}
.fv_iphone-content-num {
  font-size: 12px;
  font-weight: 700;
  line-height: 160%;
  margin-top: 3px;
}
@media screen and (min-width: 900px) {
  .fv_iphone-content-num {
    font-size: 16px;
    white-space: nowrap;
    width: 176px;
    margin-top: -13px;
  }
}
.fv_iphone-content-button {
  width: 132px;
  height: 32px;
  padding: 6px 24px 8px 24px;
  margin-top: 13px;
  margin-bottom: 19.2px;
  white-space: nowrap;
  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;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 900px) {
  .fv_iphone-content-button {
    width: 144px;
    height: 40px;
    margin-top: 1px;
    margin-bottom: 24px;
    font-size: 16px;
  }
}
.fv_foods {
  background: url(../img/fv-foods-SP.png) no-repeat center center/cover;
  width: 86px;
  height: 141px;
  position: absolute;
  top: 391px;
  left: 20px;
}
@media screen and (min-width: 900px) {
  .fv_foods {
    background: url(../img/fv-foods-PC.png) no-repeat center center/cover;
    width: 202px;
    height: 332px;
    top: 227px;
    left: 32px;
  }
}
.fv_foods img {
  width: 86px;
  height: 141px;
}
@media screen and (min-width: 900px) {
  .fv_foods img {
    width: 202px;
    height: 332px;
  }
}
.fv_cats {
  position: absolute;
  top: 405px;
  right: 20px;
  background: url(../img/fv-cats-SP.png) no-repeat center center/cover;
  width: 107px;
  height: 127px;
}
@media screen and (min-width: 900px) {
  .fv_cats {
    background: url(../img/fv-cats-PC.png) no-repeat center center/cover;
    top: 309px;
    right: 25px;
    width: 233px;
    height: 294px;
  }
}

.about {
  z-index: 5;
  background: #e9f6f8;
  width: 100%;
  height: 100%;
  text-align: center;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 900px) {
  .about {
    padding-top: 80px;
  }
}
.about_inner {
  width: 375px;
  position: relative;
}
@media screen and (min-width: 601px) {
  .about_inner {
    width: 600px;
  }
}
@media screen and (min-width: 900px) {
  .about_inner {
    width: 900px;
  }
}
.about_bg {
  width: 100%;
  height: 916px;
}
@media screen and (min-width: 601px) {
  .about_bg {
    height: 987px;
  }
}
@media screen and (min-width: 900px) {
  .about_bg {
    height: 1075px;
  }
}
@media screen and (min-width: 1200px) {
  .about_bg {
    width: 848px;
    height: 1090px;
  }
}
.about_bg-pawpads {
  background: url(../img/about-bg-pawpads.png) no-repeat center center/cover;
  width: 54px;
  height: 120px;
  position: absolute;
  top: 22px;
  right: 0;
}
@media screen and (min-width: 601px) {
  .about_bg-pawpads {
    right: 40px;
  }
}
@media screen and (min-width: 900px) {
  .about_bg-pawpads {
    width: 70px;
    height: 154px;
    top: -70px;
    right: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .about_bg-pawpads {
    width: 100px;
    height: 220px;
    top: -75px;
    right: -140px;
  }
}
.about_bg-lineslash {
  display: none;
  background: url(../img/about-bg-斜めパターン-PC.png) no-repeat center center/cover;
  width: 250px;
  height: 250px;
  position: absolute;
  top: -20px;
  left: -75px;
}
@media screen and (min-width: 900px) {
  .about_bg-lineslash {
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  .about_bg-lineslash {
    left: -330px;
  }
}
.about_bg-photo-left {
  background: url(../img/about-bg-photo-Left.png) no-repeat center center/cover;
  width: 200px;
  height: 200px;
  position: absolute;
  top: 427px;
  left: -140px;
}
@media screen and (min-width: 601px) {
  .about_bg-photo-left {
    left: -80px;
  }
}
@media screen and (min-width: 900px) {
  .about_bg-photo-left {
    background: url(../img/about-bg-photo-right-PC.png) no-repeat center center/cover;
    width: 480px;
    height: 480px;
    top: 74px;
    left: -400px;
  }
}
@media screen and (min-width: 1200px) {
  .about_bg-photo-left {
    left: -645px;
  }
}
.about_bg-photo-right {
  background: url(../img/about-bg-photo-Right.png) no-repeat center center/cover;
  width: 200px;
  height: 200px;
  position: absolute;
  top: 305px;
  right: -140px;
}
@media screen and (min-width: 601px) {
  .about_bg-photo-right {
    right: -80px;
  }
}
@media screen and (min-width: 900px) {
  .about_bg-photo-right {
    width: 480px;
    height: 480px;
    top: 72px;
    right: -400px;
  }
}
@media screen and (min-width: 1200px) {
  .about_bg-photo-right {
    background: url(../img/about-bg-photo-right-PC.png) no-repeat center center/cover;
    right: -590px;
    border-radius: 40px;
  }
}
.about_bg-saka {
  position: absolute;
  top: 739px;
  left: 0;
  clip-path: inset(0 0 38px 0);
  z-index: -1;
}
@media screen and (min-width: 900px) {
  .about_bg-saka {
    top: 401px;
    left: -102px;
  }
}
.about_bg-saka img {
  width: 138px;
  height: 215px;
}
@media screen and (min-width: 601px) {
  .about_bg-saka img {
    width: 200px;
    height: 312px;
  }
}
@media screen and (min-width: 900px) {
  .about_bg-saka img {
    width: 427px;
    height: 817px;
  }
}
.about_bg-arrow {
  background: url(../img/about-bg-arrow.png) no-repeat center center/cover;
  width: 100px;
  height: 36px;
  position: absolute;
  top: 740px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 601px) {
  .about_bg-arrow {
    top: 796px;
  }
}
@media screen and (min-width: 900px) {
  .about_bg-arrow {
    top: 830px;
    width: 140px;
    height: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .about_bg-arrow {
    width: 140px;
    height: 50px;
  }
}
.about_bg-wave {
  display: none;
  background: url(../img/about-bg-波.png) no-repeat center center/cover;
  width: 873.922px;
  height: 45.021px;
  position: absolute;
  top: 607.33px;
  right: -500px;
}
@media screen and (min-width: 900px) {
  .about_bg-wave {
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  .about_bg-wave {
    right: -872px;
  }
}
.about_bg-goods-1 {
  background: url(../img/about-bg-goods-1.png) no-repeat center center/cover;
  width: 133px;
  height: 65.003px;
  position: absolute;
  top: 794px;
  right: 57px;
}
@media screen and (min-width: 601px) {
  .about_bg-goods-1 {
    width: 200px;
    height: 98px;
    top: 820px;
    right: 15px;
  }
}
@media screen and (min-width: 900px) {
  .about_bg-goods-1 {
    width: 308px;
    height: 150.604px;
    top: 830px;
  }
}
@media screen and (min-width: 1200px) {
  .about_bg-goods-1 {
    top: 760px;
    right: -230px;
  }
}
.about_bg-goods-2 {
  background: url(../img/about-bg-goods-2.png) no-repeat center center/cover;
  width: 48px;
  height: 48px;
  position: absolute;
  top: 751px;
  right: 20px;
}
@media screen and (min-width: 601px) {
  .about_bg-goods-2 {
    width: 80px;
    height: 79px;
    top: 790px;
    right: -60px;
  }
}
@media screen and (min-width: 900px) {
  .about_bg-goods-2 {
    width: 101px;
    height: 100.047px;
    top: 600px;
    right: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .about_bg-goods-2 {
    top: 600px;
    right: -155px;
  }
}
.about_bg-onomichi {
  background: url(../img/about-bg-ONOMICHI.png) no-repeat center center/cover;
  width: 354.642px;
  height: 37.2px;
  position: absolute;
  top: 879px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 5;
}
@media screen and (min-width: 601px) {
  .about_bg-onomichi {
    top: 950px;
  }
}
@media screen and (min-width: 900px) {
  .about_bg-onomichi {
    background: url(../img/about-bg-onomichi-PC.png) no-repeat center center/cover;
    background-size: 890px 97px;
    width: 770px;
    height: 97px;
    top: 997px;
  }
}
@media screen and (min-width: 1200px) {
  .about_bg-onomichi {
    width: 900px;
  }
}
.about_contents {
  position: absolute;
  top: 32px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #fff;
  text-align: center;
  border-radius: 24px;
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .about_contents {
    top: 0;
    border-radius: 40px;
  }
}
.about_contents-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  width: 335px;
  padding: 40px 12px;
  position: relative;
}
@media screen and (min-width: 601px) {
  .about_contents-wrapper {
    width: 460px;
    padding: 40px 20px 36px;
  }
}
@media screen and (min-width: 900px) {
  .about_contents-wrapper {
    width: 580px;
    height: 830px;
    gap: 32px;
    padding: 40px 20px 36px;
  }
}
@media screen and (min-width: 1200px) {
  .about_contents-wrapper {
    width: 848px;
    height: 829px;
  }
}
.about_contents-photo-left {
  background: url(../img/about-contents-pic-left.png) no-repeat center center/cover;
  width: 80px;
  height: 60px;
  position: absolute;
  top: 39px;
  left: 37px;
}
@media screen and (min-width: 900px) {
  .about_contents-photo-left {
    width: 134px;
    height: 100px;
    left: -40px;
  }
}
@media screen and (min-width: 1200px) {
  .about_contents-photo-left {
    top: 55px;
    left: 93px;
  }
}
.about_contents-photo-right {
  background: url(../img/about-contents-pic-right.png) no-repeat center center/cover;
  width: 80px;
  height: 60px;
  position: absolute;
  top: 35px;
  right: 24px;
}
@media screen and (min-width: 900px) {
  .about_contents-photo-right {
    width: 134px;
    height: 100px;
    right: -40px;
  }
}
@media screen and (min-width: 1200px) {
  .about_contents-photo-right {
    top: 60px;
    right: 90px;
  }
}
.about_contents-head {
  font-size: 14px;
  font-weight: 700;
  line-height: 160%;
}
@media screen and (min-width: 601px) {
  .about_contents-head {
    font-size: 16px;
  }
}
@media screen and (min-width: 900px) {
  .about_contents-head {
    display: none;
  }
}
.about_contents-head-PC {
  display: none;
}
@media screen and (min-width: 900px) {
  .about_contents-head-PC {
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 160%;
  }
}
.about_contents-text {
  font-size: 12px;
  font-weight: 400;
  line-height: 158%;
  -webkit-transform: none;
          transform: none;
}
@media screen and (min-width: 601px) {
  .about_contents-text {
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) {
  .about_contents-text {
    font-size: 16px;
    line-height: 163%;
  }
}
.about_contents-span1 {
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  cursor: pointer;
}
.about_contents-span1:hover {
  color: #9ed0e0;
}
.about_contents-span2 {
  font-weight: 700;
}
.about_contents-foot {
  margin-top: 2px;
  font-size: 14px;
  font-weight: 700;
  line-height: 160%;
  border-bottom: 2px dashed #9ed0e0;
  padding: 7px 0;
}
@media screen and (min-width: 900px) {
  .about_contents-foot {
    font-size: 20px;
    padding: 12px 0;
    font-weight: 700;
    padding: 11px 0;
  }
}
.about_button {
  margin-top: -1px;
  width: 192px;
  height: 40px;
  font-size: 16px;
  white-space: nowrap;
  padding: 4px 24px 8px 24px;
}
@media screen and (min-width: 900px) {
  .about_button {
    width: 260px;
    height: 56px;
    padding: 8px 45px 12px 37px;
    border: 3px solid #4a3636;
    font-size: 20px;
  }
}
.about_swiper {
  z-index: 5;
  height: 100px;
}
@media screen and (min-width: 900px) {
  .about_swiper {
    height: 200px;
    margin-top: -2px;
  }
}
.about_swiper-wrapper {
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: scroll 20s linear infinite;
          animation: scroll 20s linear infinite;
}
.about_swiper-slide {
  width: 100px;
  height: 100px;
}
@media screen and (min-width: 900px) {
  .about_swiper-slide {
    width: 200px;
    height: 200px;
  }
}
.about_swiper-slide img {
  width: 100px;
  height: 100px;
}
@media screen and (min-width: 900px) {
  .about_swiper-slide img {
    width: 200px;
    height: 200px;
  }
}

@-webkit-keyframes scroll {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes scroll {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.howto {
  width: 100%;
  height: 1465px;
  background: #e9f6f8;
  text-align: center;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .howto {
    height: 896px;
  }
}
@media screen and (min-width: 1200px) {
  .howto {
    height: 960px;
  }
}
.howto_bg {
  width: 375px;
  height: 1465px;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .howto_bg {
    width: 900px;
  }
}
.howto_bg-map {
  background: url(../img/howto-bg-map.png) no-repeat center center/cover;
  width: 149px;
  height: 223px;
  position: absolute;
  top: 65px;
  left: 0px;
}
@media screen and (min-width: 900px) {
  .howto_bg-map {
    width: 460px;
    height: 689px;
    padding: 0 40px 60.504px 0;
    top: 60px;
    left: -130px;
  }
}
@media screen and (min-width: 1200px) {
  .howto_bg-map {
    left: -270px;
  }
}
.howto_bg-cats-brown {
  background: url(../img/howto-bg-cats-brown.png) no-repeat center center/cover;
  width: 105px;
  height: 63px;
  position: absolute;
  top: 64.8px;
  right: 24px;
}
@media screen and (min-width: 900px) {
  .howto_bg-cats-brown {
    width: 238px;
    height: 141px;
    top: 67px;
    right: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .howto_bg-cats-brown {
    top: 95px;
    right: -75px;
  }
}
.howto_bg-cats-black {
  background: url(../img/howto-bg-cats-black.png) no-repeat center center/cover;
  width: 94px;
  height: 80px;
  position: absolute;
  top: 69.8px;
  right: -31px;
}
@media screen and (min-width: 900px) {
  .howto_bg-cats-black {
    width: 214px;
    height: 181px;
    top: 67px;
    right: -110px;
  }
}
@media screen and (min-width: 1200px) {
  .howto_bg-cats-black {
    top: 105px;
    right: -201px;
  }
}
.howto_bg-pawpads {
  background: url(../img/howto-bg-top-pawpads.png) no-repeat center center/cover;
  width: 55px;
  height: 120px;
  position: absolute;
  top: 138.8px;
  right: 20px;
}
@media screen and (min-width: 900px) {
  .howto_bg-pawpads {
    width: 55px;
    height: 120px;
    top: 230px;
    right: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .howto_bg-pawpads {
    width: 100px;
    height: 220px;
    top: 270px;
    right: -270px;
  }
}
.howto_bg-pawpads2 {
  background: url(../img/howto-bg-pawpads-middle.png) no-repeat center center/cover;
  width: 55px;
  height: 120.12px;
  position: absolute;
  top: 617px;
  left: 20px;
}
@media screen and (min-width: 900px) {
  .howto_bg-pawpads2 {
    top: 700px;
    left: 0px;
  }
}
@media screen and (min-width: 1200px) {
  .howto_bg-pawpads2 {
    width: 100px;
    height: 220px;
    left: -270px;
  }
}
.howto_bg-pawpads3 {
  background: url(../img/howto-bg-pawpads-bottom.png) no-repeat center center/cover;
  width: 55px;
  height: 120.12px;
  position: absolute;
  top: 946px;
  right: 20px;
}
@media screen and (min-width: 900px) {
  .howto_bg-pawpads3 {
    display: none;
  }
}
.howto_bg-stepline1 {
  background: url(../img/howto-stepline-SP.png) no-repeat center center/cover;
  width: 7px;
  height: 34px;
  position: absolute;
  top: 599px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .howto_bg-stepline1 {
    display: none;
  }
}
.howto_bg-stepline2 {
  background: url(../img/howto-stepline-SP.png) no-repeat center center/cover;
  width: 7px;
  height: 34px;
  position: absolute;
  top: 993px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .howto_bg-stepline2 {
    display: none;
  }
}
.howto_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding-top: 66px;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .howto_inner {
    padding-top: 120px;
  }
}
.howto_title {
  width: 130px;
  height: 106px;
}
@media screen and (min-width: 900px) {
  .howto_title {
    width: 200px;
    height: 145px;
  }
}
.howto_steps {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}
@media screen and (min-width: 900px) {
  .howto_steps {
    margin-top: 40px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0px;
  }
}
@media screen and (min-width: 1200px) {
  .howto_steps {
    gap: 70px;
  }
}
.howto_step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16.1px;
  -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 (min-width: 900px) {
  .howto_step {
    width: 282px;
    gap: 17px;
    margin-top: 0;
  }
  .howto_step:nth-child(2) {
    margin-top: 69px;
  }
}
.howto_step-img1 {
  background: url(../img/howto-step1-SP.png) no-repeat center center/cover;
  width: 196px;
  height: 210px;
}
@media screen and (min-width: 900px) {
  .howto_step-img1 {
    width: 257px;
    height: 277px;
  }
}
@media screen and (min-width: 1200px) {
  .howto_step-img1 {
    width: 280px;
    height: 300px;
    margin-bottom: 8px;
  }
}
.howto_step-img2 {
  background: url(../img/howto-step2-SP.png) no-repeat center center/cover;
  width: 196px;
  height: 210px;
}
@media screen and (min-width: 900px) {
  .howto_step-img2 {
    width: 257px;
    height: 277px;
  }
}
@media screen and (min-width: 1200px) {
  .howto_step-img2 {
    width: 280px;
    height: 300px;
    margin-bottom: 8px;
  }
}
.howto_step-img3 {
  background: url(../img/howto-step3-SP.png) no-repeat center center/cover;
  width: 196px;
  height: 210px;
}
@media screen and (min-width: 900px) {
  .howto_step-img3 {
    width: 257px;
    height: 277px;
  }
}
@media screen and (min-width: 1200px) {
  .howto_step-img3 {
    width: 280px;
    height: 300px;
    margin-bottom: 8px;
  }
}
.howto_step-head {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 160%;
}
@media screen and (min-width: 1200px) {
  .howto_step-head {
    font-size: 20px;
  }
}
.howto_step-text {
  width: 320px;
  font-size: 12px;
  font-weight: 400;
  line-height: 160%;
}
@media screen and (min-width: 1200px) {
  .howto_step-text {
    font-size: 16px;
  }
}
.howto_step-text-span1 {
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  cursor: pointer;
}
.howto_step-text-span1:hover {
  color: #9ed0e0;
}
.howto_step-text-span2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .howto_step-text-span2 {
    letter-spacing: -0.05em;
  }
}
.howto_step-insta {
  width: 226px;
  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-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 8px;
  background: #fff;
  border: none;
  padding: 7px 11px;
  border: 1px solid transparent;
  -webkit-transition: border-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: border-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
  cursor: pointer;
}
.howto_step-insta:hover {
  border-color: #9ed0e0;
}
@media screen and (min-width: 1200px) {
  .howto_step-insta {
    width: 254px;
  }
}
.howto_step-insta-icon img {
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 1200px) {
  .howto_step-insta-icon img {
    width: 24px;
    height: 24px;
  }
}
.howto_step-insta-text {
  color: #4a3636;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 160%;
}
@media screen and (min-width: 1200px) {
  .howto_step-insta-text {
    font-size: 16px;
  }
}
.howto_button {
  margin-top: 15px;
  font-size: 16px;
  padding: 5px 24px 6px 24px;
}
@media screen and (max-width: 340px) {
  .howto_button {
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) {
  .howto_button {
    width: 436px;
    height: 56px;
    margin-top: 47px;
    font-size: 20px;
    padding: 8px 37px 10px;
  }
}
.howto_steplines-PC {
  display: none;
}
@media screen and (min-width: 900px) {
  .howto_steplines-PC {
    display: block;
    width: 900px;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.howto_stepline-PC1 {
  display: none;
}
@media screen and (min-width: 900px) {
  .howto_stepline-PC1 {
    display: block;
    background: url(../img/howto-stepline-PC.png) no-repeat center center/cover;
    width: 70px;
    height: 16px;
    position: absolute;
    top: 500px;
    left: 255px;
  }
}
@media screen and (min-width: 1200px) {
  .howto_stepline-PC1 {
    width: 113px;
    height: 24px;
    top: 510px;
    left: 190px;
  }
}
.howto_stepline-PC2 {
  display: none;
}
@media screen and (min-width: 900px) {
  .howto_stepline-PC2 {
    display: block;
    background: url(../img/howto-stepline-PC.png) no-repeat center center/cover;
    width: 70px;
    height: 16px;
    position: absolute;
    top: 500px;
    left: 555px;
  }
}
@media screen and (min-width: 1200px) {
  .howto_stepline-PC2 {
    width: 113px;
    height: 24px;
    top: 510px;
    left: 555px;
  }
}

.prizes {
  background: #e9f6f8;
  overflow: hidden;
  padding-top: 20px;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 601px) {
  .prizes {
    padding-top: 52px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (min-width: 900px) {
  .prizes {
    padding-top: 147px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
.prizes_inner {
  width: 100%;
  height: 100%;
  position: relative;
}
@media screen and (min-width: 601px) {
  .prizes_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.prizes_inner::before, .prizes_inner::after {
  content: "";
  position: absolute;
}
.prizes_inner::before {
  background: url(../img/prizes-deco-SP.png) no-repeat center center;
  background-size: 237px;
  width: 237px;
  height: 83px;
  top: -19px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .prizes_inner::before {
    background: url(../img/prizes-deco-PC.png) no-repeat center center;
    background-size: 365px;
    width: 365.624px;
    height: 148.967px;
    top: -28px;
  }
}
.prizes_inner::after {
  background: #fff;
  border-radius: 24px;
  width: 100%;
  height: calc(100% - 63px);
  top: 63px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 601px) {
  .prizes_inner::after {
    width: 600px;
  }
}
@media screen and (min-width: 900px) {
  .prizes_inner::after {
    top: 120px;
    width: 100%;
    height: 1182px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes_inner::after {
    max-width: 1024px;
  }
}
.prizes_bg-triangle-left {
  display: none;
}
@media screen and (min-width: 900px) {
  .prizes_bg-triangle-left {
    display: block;
    background: url(../img/prizes-bg-triangle-left.png) no-repeat center center/cover;
    position: absolute;
    top: 0;
    left: 0;
    width: clamp(225px, 27vw, 315px);
    height: 61px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes_bg-triangle-left {
    width: 315px;
    height: 86px;
  }
}
.prizes_bg-triangle-right {
  display: none;
}
@media screen and (min-width: 900px) {
  .prizes_bg-triangle-right {
    display: block;
    background: url(../img/prizes-bg-triangle-right.png) no-repeat center center/cover;
    position: absolute;
    top: 0;
    right: 0;
    width: clamp(225px, 27vw, 315px);
    height: 61px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes_bg-triangle-right {
    width: 315px;
    height: 86px;
  }
}
.prizes_contents {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 4;
}
@media screen and (min-width: 601px) {
  .prizes_contents {
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    width: 600px;
  }
}
@media screen and (min-width: 900px) {
  .prizes_contents {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes_contents {
    max-width: 1024px;
    padding-left: 50px;
    padding-right: 50px;
  }
}
.prizes_text {
  margin-top: 17px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 160%;
  text-align: center;
}
@media screen and (min-width: 601px) {
  .prizes_text {
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) {
  .prizes_text {
    font-size: 16px;
    margin-top: 40px;
  }
}
.prizes_cards {
  margin-top: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 38px;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 900px) {
  .prizes_cards {
    margin-top: 82px;
    gap: 0;
  }
}
.prizes_card {
  position: relative;
  width: calc(50% - 7.5px);
  height: auto;
}
.prizes_card:hover .prizes_card-icon-triangle {
  border-top: 18px solid transparent;
  border-left: 18px solid transparent;
  border-right: 18px solid #9ed0e0;
  border-bottom: 18px solid #9ed0e0;
}
@media screen and (min-width: 900px) {
  .prizes_card:nth-child(1), .prizes_card:nth-child(2) {
    width: calc(50% - 21px);
    max-height: 460px;
    border-radius: 24px;
  }
  .prizes_card:nth-child(1):hover .prizes_card-icon-triangle, .prizes_card:nth-child(2):hover .prizes_card-icon-triangle {
    border-top: 50px solid transparent;
    border-left: 50px solid transparent;
    border-right: 50px solid #9ed0e0;
    border-bottom: 50px solid #9ed0e0;
  }
  .prizes_card:nth-child(1) .prizes_card-img, .prizes_card:nth-child(2) .prizes_card-img {
    max-height: 340px;
  }
  .prizes_card:nth-child(1) .prizes_card-img img, .prizes_card:nth-child(2) .prizes_card-img img {
    max-height: 340px;
  }
  .prizes_card:nth-child(1) .prizes_card-bottom, .prizes_card:nth-child(2) .prizes_card-bottom {
    font-size: 20px;
    height: 120px;
    padding: 32px 0;
  }
  .prizes_card:nth-child(2) {
    margin-left: 28px;
  }
  .prizes_card:nth-child(3), .prizes_card:nth-child(4), .prizes_card:nth-child(5) {
    width: calc(33.3333333333% - 26px);
    margin-top: 80px;
    border-radius: 16px;
  }
  .prizes_card:nth-child(3):hover .prizes_card-icon-triangle, .prizes_card:nth-child(4):hover .prizes_card-icon-triangle, .prizes_card:nth-child(5):hover .prizes_card-icon-triangle {
    border-top: 32px solid transparent;
    border-left: 32px solid transparent;
    border-right: 32px solid #9ed0e0;
    border-bottom: 32px solid #9ed0e0;
  }
  .prizes_card:nth-child(3) .prizes_card-inner, .prizes_card:nth-child(4) .prizes_card-inner, .prizes_card:nth-child(5) .prizes_card-inner {
    border-radius: 16px;
  }
  .prizes_card:nth-child(3) .prizes_card-img, .prizes_card:nth-child(4) .prizes_card-img, .prizes_card:nth-child(5) .prizes_card-img {
    border-radius: 16px 16px 0 0;
    max-height: 240px;
  }
  .prizes_card:nth-child(3) .prizes_card-img img, .prizes_card:nth-child(4) .prizes_card-img img, .prizes_card:nth-child(5) .prizes_card-img img {
    max-height: 240px;
  }
  .prizes_card:nth-child(3) .prizes_card-bottom, .prizes_card:nth-child(4) .prizes_card-bottom, .prizes_card:nth-child(5) .prizes_card-bottom {
    font-size: 16px;
    height: 80px;
  }
  .prizes_card:nth-child(3) .prizes_card-button, .prizes_card:nth-child(4) .prizes_card-button, .prizes_card:nth-child(5) .prizes_card-button {
    border-radius: 16px;
  }
  .prizes_card:nth-child(3) .prizes_card-num, .prizes_card:nth-child(4) .prizes_card-num, .prizes_card:nth-child(5) .prizes_card-num {
    top: -40px;
  }
  .prizes_card:nth-child(3) .prizes_card-num-bg img, .prizes_card:nth-child(4) .prizes_card-num-bg img, .prizes_card:nth-child(5) .prizes_card-num-bg img {
    width: 80px;
    height: 80px;
  }
  .prizes_card:nth-child(3) .prizes_card-icon-triangle, .prizes_card:nth-child(4) .prizes_card-icon-triangle, .prizes_card:nth-child(5) .prizes_card-icon-triangle {
    border-top: 32px solid transparent;
    border-left: 32px solid transparent;
    border-right: 32px solid #67b0c7;
    border-bottom: 32px solid #67b0c7;
    border-bottom-right-radius: 16px;
  }
  .prizes_card:nth-child(3) .prizes_card-icon-search, .prizes_card:nth-child(4) .prizes_card-icon-search, .prizes_card:nth-child(5) .prizes_card-icon-search {
    bottom: 8px;
    right: 10px;
  }
  .prizes_card:nth-child(3) .prizes_card-icon-search img, .prizes_card:nth-child(4) .prizes_card-icon-search img, .prizes_card:nth-child(5) .prizes_card-icon-search img {
    width: 20.48px;
    height: 20.48px;
  }
  .prizes_card:nth-child(4), .prizes_card:nth-child(5) {
    margin-left: 33px;
  }
}
.prizes_card-inner {
  width: 100%;
  background: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 900px) {
  .prizes_card-inner:nth-child(1), .prizes_card-inner:nth-child(2) {
    border-radius: 24px;
  }
  .prizes_card-inner:nth-child(3), .prizes_card-inner:nth-child(4), .prizes_card-inner:nth-child(5) {
    border-radius: 16px;
  }
}
.prizes_card-top {
  width: 100%;
}
.prizes_card-img {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 4/3.52;
}
.prizes_card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.prizes_card-bottom {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 160%;
  width: 100%;
  height: 56px;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.prizes_card-button {
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  border-radius: 8px;
  outline: none;
  cursor: pointer;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .prizes_card-button {
    border-radius: 24px;
  }
}
.prizes_card-button:hover {
  border: 2px solid #9ed0e0;
}
@media screen and (min-width: 900px) {
  .prizes_card-button:hover {
    border: 4px solid #9ed0e0;
  }
}
.prizes_card-num {
  position: absolute;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .prizes_card-num {
    top: -50px;
  }
}
.prizes_card-num-bg img {
  width: 48px;
  height: 48px;
}
@media screen and (min-width: 900px) {
  .prizes_card-num-bg img {
    width: 100px;
    height: 100px;
  }
}
.prizes_card-icon-triangle {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 18px solid transparent;
  border-left: 18px solid transparent;
  border-right: 18px solid #67b0c7;
  border-bottom: 18px solid #67b0c7;
  border-bottom-right-radius: 8px;
}
@media screen and (min-width: 900px) {
  .prizes_card-icon-triangle {
    border-top: 50px solid transparent;
    border-left: 50px solid transparent;
    border-right: 50px solid #67b0c7;
    border-bottom: 50px solid #67b0c7;
    border-bottom-right-radius: 24px;
  }
}
.prizes_card-icon-search {
  position: absolute;
  bottom: 2.12px;
  right: 5.22px;
}
@media screen and (min-width: 900px) {
  .prizes_card-icon-search {
    bottom: 14px;
    right: 15px;
  }
}
.prizes_card-icon-search img {
  width: 11.52px;
  height: 11.52px;
}
@media screen and (min-width: 900px) {
  .prizes_card-icon-search img {
    width: 32px;
    height: 32px;
  }
}
.prizes_button {
  margin-top: 17px;
  font-size: 16px;
  margin-bottom: 34px;
  padding: 5px 24px 6px 24px;
}
@media screen and (max-width: 340px) {
  .prizes_button {
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) {
  .prizes_button {
    margin-top: 40px;
    font-size: 20px;
    height: 56px;
    padding: 10px 40px 12px 40px;
  }
}
.prizes_bottom-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: -45px;
  margin-left: -20px;
  margin-right: -20px;
}
@media screen and (min-width: 900px) {
  .prizes_bottom-img {
    margin-left: -30px;
    margin-right: -30px;
    margin-top: 17px;
  }
}
.prizes_bottom-img img {
  width: 100%;
  min-width: 580px;
  height: 260px;
  aspect-ratio: 580/260;
}
@media screen and (min-width: 900px) {
  .prizes_bottom-img img {
    height: 640px;
  }
}

.modal {
  width: 336px;
  height: 480px;
  position: fixed;
  inset: 0;
  overscroll-behavior-y: none;
  background: #fff;
  border-radius: 24px;
  border: none;
  overflow: hidden;
  text-align: center;
  padding: 0;
}
@media screen and (min-width: 900px) {
  .modal {
    width: 480px;
    height: 650px;
  }
}
.modal::-ms-backdrop {
  opacity: 0.7;
  background: #000;
}
.modal::backdrop {
  opacity: 0.7;
  background: #000;
}
.modal_img {
  aspect-ratio: 8/5;
  overflow: hidden;
}
.modal_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.modal_bottom {
  padding: 39px 20px 56px;
}
@media screen and (min-width: 900px) {
  .modal_bottom {
    padding: 32px 30px 106px;
  }
}
.modal_bottom-head {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
}
@media screen and (min-width: 900px) {
  .modal_bottom-head {
    font-size: 20px;
  }
}
.modal_bottom-text {
  margin-top: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 160%;
}
@media screen and (min-width: 900px) {
  .modal_bottom-text {
    font-size: 16px;
  }
}
.modal_bottom-button {
  margin-top: 16px;
}
@media screen and (min-width: 900px) {
  .modal_bottom-button {
    margin-top: 24px;
  }
}

.spots {
  background: #67b0c7;
  position: relative;
}
@media screen and (min-width: 900px) {
  .spots {
    margin-top: 2px;
  }
}
.spots::before {
  content: "";
  position: absolute;
  top: -44px;
  left: 0;
  width: 100%;
  height: 45.714px; /* 波の高さ */
  background: url(../img/spots-top-wave-SP.png);
  background-repeat: repeat-x; /* 横に繰り返す */
  background-position: top left;
  background-size: 94px 45px;
}
@media screen and (min-width: 900px) {
  .spots::before {
    background: url(../img/spots-top-wave-PC.png);
    top: -119px;
    height: 120px;
    background-size: 250px 100%;
  }
}
.spots::after {
  content: "";
  position: absolute;
  bottom: -45px;
  left: 0;
  width: 100%;
  height: 45.714px;
  background: url(../img/spots-bottom-wave-SP.png);
  background-repeat: repeat-x; /* 横に繰り返す */
  background-position: top left;
  background-size: auto 100%;
}
@media screen and (min-width: 900px) {
  .spots::after {
    background: url(../img/spots-bottom-wave-PC.png);
    bottom: -119px;
    background-size: 250px 100%;
    height: 120px;
  }
}
.spots_bg-pawpads {
  display: none;
}
@media screen and (min-width: 900px) {
  .spots_bg-pawpads {
    background: url(../img/spots-pawpads.png) no-repeat center center/cover;
    width: 80px;
    height: 176px;
    position: absolute;
    bottom: 0;
    left: 36px;
  }
}
@media screen and (min-width: 1200px) {
  .spots_bg-pawpads {
    width: 100px;
    height: 220px;
  }
}
.spots_inner {
  overflow: hidden;
}
.spots_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 900px) {
  .spots_top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
    padding-left: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .spots_top {
    padding-bottom: 174px;
    padding-left: clamp(30px, 16vw, 245px);
  }
}
.spots_top-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding-top: 5px;
  padding-bottom: 22px;
}
@media screen and (min-width: 900px) {
  .spots_top-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 15px;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.spots_top-head-icon {
  background: url(../img/spots-starIcon.png) no-repeat center center/cover;
  width: 28px;
  height: 28px;
}
@media screen and (min-width: 900px) {
  .spots_top-head-icon {
    width: 56px;
    height: 56px;
  }
}
.spots_top-head-text {
  color: #fff;
  font-family: "Kiwi Maru", sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 125%;
}
@media screen and (min-width: 900px) {
  .spots_top-head-text {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    font-family: "Kiwi Maru", sans-serif;
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 0.25em;
  }
}
.spots_bottom {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 900px) {
  .spots_bottom {
    padding-bottom: 10px;
  }
}
@media screen and (min-width: 1200px) {
  .spots_bottom {
    padding-bottom: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: center;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 4px;
    width: 1024px;
  }
}
.spots_bottom-img {
  background: url(../img/spots-img-SPOTS.png) no-repeat center center/cover;
  width: 255px;
  height: 55px;
}
@media screen and (min-width: 900px) {
  .spots_bottom-img {
    width: 495px;
    height: 107px;
  }
}
@media screen and (min-width: 1200px) {
  .spots_bottom-contents {
    text-align: center;
    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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.spots_bottom-text {
  color: #fff;
  margin-top: 16px;
  font-family: "Noto Sans JP";
  font-size: 11.444px;
  font-weight: 400;
  line-height: 160%;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 340px) {
  .spots_bottom-text {
    font-size: 10px;
  }
}
@media screen and (min-width: 900px) {
  .spots_bottom-text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .spots_bottom-text {
    margin-top: 0;
    font-size: 16px;
  }
}
.spots_bottom-button {
  margin-top: 20px;
  height: 40px;
  margin-bottom: 19.84px;
  font-size: 16px;
}
@media screen and (max-width: 340px) {
  .spots_bottom-button {
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) {
  .spots_bottom-button {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1200px) {
  .spots_bottom-button {
    margin-top: 24px;
    margin-left: 8px;
    font-size: 20px;
    height: 56px;
    padding: 9px 35px 15px 40px;
    border: 3px solid #4a3636;
  }
}
.spots_swiper-button {
  display: none;
}
@media screen and (min-width: 900px) {
  .spots_swiper-button {
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 700px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: absolute;
    bottom: 150px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 5;
  }
}
@media screen and (min-width: 1200px) {
  .spots_swiper-button {
    width: 947px;
  }
}
.spots_swiper-button-prev {
  display: none;
}
@media screen and (min-width: 900px) {
  .spots_swiper-button-prev {
    display: block;
    background: url(../img/spots-arrow-prev.png) no-repeat center center/cover;
    width: 80px;
    height: 80px;
    z-index: 3;
  }
}
.spots_swiper-button-next {
  display: none;
}
@media screen and (min-width: 900px) {
  .spots_swiper-button-next {
    display: block;
    background: url(../img/spots-arrow-next.png) no-repeat center center/cover;
    width: 80px;
    height: 80px;
    z-index: 3;
  }
}

.spots_swiper {
  width: min(100%, 1776px);
  height: 402px;
}
@media screen and (min-width: 900px) {
  .spots_swiper {
    width: min(100%, 2826px);
    height: 542px;
    padding: 0;
    position: relative;
  }
}

.spots_swiper-slide {
  width: 240px;
  height: 100%;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 31.159px;
  border-radius: 12px;
}
@media screen and (min-width: 900px) {
  .spots_swiper-slide {
    width: 344px;
    gap: 24px;
    padding-bottom: 40px;
    border-radius: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .spots_swiper-slide {
    margin-left: auto;
  }
}

.spots_swiper-img {
  width: 100%;
  height: 180px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 12px 12px 0 0;
}
@media screen and (min-width: 900px) {
  .spots_swiper-img {
    height: 240px;
    border-radius: 24px 24px 0 0;
  }
}
.spots_swiper-img1 {
  background: url(../img/spots-img1.png) no-repeat center center/cover;
}
.spots_swiper-img2 {
  background: url(../img/spots-img2.png) no-repeat center center/cover;
}
.spots_swiper-img3 {
  background: url(../img/spots-img3.png) no-repeat center center/cover;
}
.spots_swiper-img4 {
  background: url(../img/spots-img4.png) no-repeat center center/cover;
}
.spots_swiper-img5 {
  background: url(../img/spots-img5.png) no-repeat center center/cover;
}
.spots_swiper-img6 {
  background: url(../img/spots-img6.png) no-repeat center center/cover;
}
.spots_swiper-img7 {
  background: url(../img/spots-img7.png) no-repeat center center/cover;
}

.spots_swiper-contents {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 0 24px;
}
@media screen and (min-width: 900px) {
  .spots_swiper-contents {
    padding: 0 32px;
    gap: 24px;
  }
}
.spots_swiper-contents-head {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
}
@media screen and (min-width: 900px) {
  .spots_swiper-contents-head {
    font-size: 20px;
  }
}
.spots_swiper-contents-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 160%;
}
@media screen and (min-width: 900px) {
  .spots_swiper-contents-text {
    font-size: 16px;
  }
}

.qa {
  width: 100%;
  background: #e9f6f8;
  text-align: center;
  padding: 86px 20px 28px 20px;
}
@media screen and (min-width: 900px) {
  .qa {
    padding: 241px 30px 120px 30px;
  }
}
.qa_inner {
  width: 100%;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
@media screen and (min-width: 900px) {
  .qa_inner {
    gap: 39px;
  }
}
.qa_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.qa_boxes {
  width: 100%;
  max-width: 596px;
  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;
  gap: 13px;
}
@media screen and (min-width: 900px) {
  .qa_boxes {
    gap: 24px;
    max-width: 1024px;
  }
}
.qa_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 12px;
  border: 2px solid #4a3636;
  overflow: hidden;
  color: #4a3636;
}
@media screen and (min-width: 900px) {
  .qa_box {
    border-radius: 16px;
  }
}
.qa_box-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  gap: 13px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: left;
  padding: 10px 55px 9px 14px;
  background: #fff;
  border: none;
  position: relative;
}
@media screen and (min-width: 900px) {
  .qa_box-head {
    gap: 16px;
    padding: 28px 24px 21px 23px;
  }
}
.qa_box-head.is-active .qa_box-head-btn:before {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
          transform: translate(-50%, -50%) rotate(-90deg);
}
.qa_box-head-icon {
  color: #9ed0e0;
  font-family: "Josefin Sans", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 125%;
  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 (min-width: 900px) {
  .qa_box-head-icon {
    font-size: 32px;
  }
}
.qa_box-head-text {
  color: #4a3636;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 160%;
}
@media screen and (min-width: 900px) {
  .qa_box-head-text {
    font-size: 20px;
  }
}
.qa_box-head-btn {
  position: absolute;
  top: 50%;
  right: 4%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 26.182px;
  height: 26.182px;
  border-radius: 50%;
  background: #9ed0e0;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}
@media screen and (min-width: 900px) {
  .qa_box-head-btn {
    right: 2%;
    width: 48px;
    height: 48px;
  }
}
.qa_box-head-btn::before, .qa_box-head-btn::after {
  content: "";
  background-color: #fff;
  border-radius: 10px;
  height: 1.455px;
  width: 10.182px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
@media screen and (min-width: 900px) {
  .qa_box-head-btn::before, .qa_box-head-btn::after {
    width: 18.667px;
    height: 2.667px;
  }
}
.qa_box-head-btn::before {
  height: 10.182px;
  width: 1.455px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (min-width: 900px) {
  .qa_box-head-btn::before {
    width: 2.667px;
    height: 18.667px;
  }
}
.qa_box-body {
  background: #f5f5f5;
  display: none;
}
.qa_box-a {
  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;
  gap: 16px;
  padding: 18px 16px 13px 14px;
}
@media screen and (min-width: 900px) {
  .qa_box-a {
    padding: 24px 24px 22px 22px;
  }
}
.qa_box-a-icon {
  color: #9ed0e0;
  font-family: "Josefin Sans", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 125%;
  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 (min-width: 900px) {
  .qa_box-a-icon {
    font-size: 32px;
  }
}
.qa_box-a-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
  text-align: left;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .qa_box-a-text {
    font-size: 16px;
  }
}

.entry {
  background: #e9f6f8;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.entry_inner {
  max-width: 600px;
  border: 8px solid #fff;
  background: rgba(255, 255, 255, 0.5);
  padding: 17px 15px 17px 15px;
  margin-right: 20px;
  margin-left: 20px;
  margin-bottom: 32px;
}
@media screen and (min-width: 900px) {
  .entry_inner {
    max-width: 1024px;
    padding: 30px 48px;
    margin-right: 30px;
    margin-left: 30px;
    margin-bottom: 122px;
  }
}
.entry_wrapper {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
@media screen and (min-width: 900px) {
  .entry_wrapper {
    gap: 40px;
  }
}
.entry_contents {
  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;
}
.entry_content {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  border-bottom: 1px solid #ccc;
}
@media screen and (min-width: 900px) {
  .entry_content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
    padding-bottom: 11px;
  }
}
.entry_content:nth-child(5) {
  border-bottom: none;
}
.entry_content-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 900px) {
  .entry_content-head {
    width: 240px;
    padding-left: 16px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.entry_content-head-title {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9ed0e0;
}
@media screen and (min-width: 900px) {
  .entry_content-head-title {
    margin-top: 7px;
  }
}
.entry_content-head-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 156.5%;
}
@media screen and (min-width: 900px) {
  .entry_content-head-text {
    font-size: 16px;
  }
}
.entry_content-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 160%;
  padding-bottom: 14px;
}
@media screen and (min-width: 900px) {
  .entry_content-text {
    width: 100%;
    font-size: 16px;
    padding-bottom: 0;
  }
}
.entry_content-text span {
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  cursor: pointer;
}
.entry_content-text span:hover {
  color: #9ed0e0;
}
.entry_content-item {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 160%;
  line-height: 159%;
  padding-left: 18px;
  position: relative;
}
.entry_content-item::before {
  content: "・";
  position: absolute;
  top: 0.1em;
  left: 0.2em;
}
@media screen and (min-width: 900px) {
  .entry_content-item {
    width: 100%;
    font-size: 16px;
    padding-bottom: 0;
    padding-left: 24px;
    line-height: 163%;
  }
}
.entry_content-item a {
  color: #4a3636;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  cursor: pointer;
}
.entry_content-item a:hover {
  color: #9ed0e0;
}
.entry-bottom-bg {
  padding: 0;
  width: 100%;
}

.contact {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 45px;
}
@media screen and (min-width: 900px) {
  .contact {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
.contact_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -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 (min-width: 900px) {
  .contact_wrapper {
    gap: 34px;
  }
}
.contact_contents {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .contact_contents {
    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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.contact_contents-text {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 160%;
  margin-bottom: 24px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .contact_contents-text {
    font-size: 16px;
    margin-bottom: 40px;
  }
}
.contact_forms {
  width: 100%;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media screen and (min-width: 900px) {
  .contact_forms {
    max-width: 848px;
  }
}
.contact_form {
  width: 100%;
}
.contact_form-inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 900px) {
  .contact_form-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
  }
}
.contact_form-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 900px) {
  .contact_form-head-message {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.contact_form-head-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 160%;
}
@media screen and (min-width: 900px) {
  .contact_form-head-title {
    font-size: 16px;
  }
}
.contact_form-head-tag {
  border-radius: 4px;
  background: #ce2073;
  padding: 4px 8px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 160%;
}
.contact_form-item input {
  width: 100%;
  border: none;
  height: 56px;
  padding: 16px;
  border-radius: 8px;
  background: #f5f5f5;
  color: #ccc;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
}
@media screen and (min-width: 900px) {
  .contact_form-item input {
    font-size: 16px;
    width: 628px;
  }
}
.contact_form-item input::-webkit-input-placeholder {
  color: #ccc;
}
.contact_form-item input::-moz-placeholder {
  color: #ccc;
}
.contact_form-item input:-ms-input-placeholder {
  color: #ccc;
}
.contact_form-item input::-ms-input-placeholder {
  color: #ccc;
}
.contact_form-item input::placeholder {
  color: #ccc;
}
.contact_form-item input:focus {
  background: #e9f6f8;
  outline: none;
  border: 1px solid #9ed0e0;
  color: #4a3636;
}
.contact_form-item input:not(:-moz-placeholder) {
  color: #4a3636;
  background: #e9f6f8;
  border: 1px solid #9ed0e0;
}
.contact_form-item input:not(:-ms-input-placeholder) {
  color: #4a3636;
  background: #e9f6f8;
  border: 1px solid #9ed0e0;
}
.contact_form-item input:not(:placeholder-shown) {
  color: #4a3636;
  background: #e9f6f8;
  border: 1px solid #9ed0e0;
}
.contact_form-item textarea {
  border: none;
  width: 100%;
  height: 160px;
  padding: 16px;
  border-radius: 8px;
  background: #f5f5f5;
  color: #ccc;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
  margin-top: -2px;
}
@media screen and (min-width: 900px) {
  .contact_form-item textarea {
    font-size: 16px;
    width: 628px;
  }
}
.contact_form-item textarea::-webkit-input-placeholder {
  color: #ccc;
}
.contact_form-item textarea::-moz-placeholder {
  color: #ccc;
}
.contact_form-item textarea:-ms-input-placeholder {
  color: #ccc;
}
.contact_form-item textarea::-ms-input-placeholder {
  color: #ccc;
}
.contact_form-item textarea::placeholder {
  color: #ccc;
}
.contact_form-item textarea:focus {
  background: #e9f6f8;
  outline: none;
  border: 1px solid #9ed0e0;
}
.contact_form-item textarea:not(:-moz-placeholder) {
  color: #4a3636;
  background: #e9f6f8;
  border: 1px solid #9ed0e0;
}
.contact_form-item textarea:not(:-ms-input-placeholder) {
  color: #4a3636;
  background: #e9f6f8;
  border: 1px solid #9ed0e0;
}
.contact_form-item textarea:not(:placeholder-shown) {
  color: #4a3636;
  background: #e9f6f8;
  border: 1px solid #9ed0e0;
}
.contact_form-text {
  border: none;
  width: 100%;
  height: 56px;
  padding: 16px;
  border-radius: 8px;
  background: #f5f5f5;
}
.contact_privacy {
  text-align: center;
  margin-top: -8.5px;
  margin-left: 35px;
}
@media screen and (min-width: 900px) {
  .contact_privacy {
    margin-top: 10px;
    margin-left: 37px;
  }
}
.contact_button {
  height: 40px;
  font-size: 16px;
}
@media screen and (min-width: 900px) {
  .contact_button {
    margin-top: 16px;
    padding: 6px 40px 8px 40px;
  }
}

.form-item {
  position: relative;
  width: 100%;
  height: 56px;
}
@media screen and (min-width: 900px) {
  .form-item {
    width: 628px;
  }
}
.form-item select:focus {
  border-color: #9ed0e0;
}
.form-item-arrow {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  background: #9ed0e0;
  pointer-events: none;
  width: 52px;
}
.form-item-arrow::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(../img/contact-arrow-Icon.png) no-repeat center center/cover;
  width: 32px;
  height: 32px;
}
.form-select {
  display: block;
  color: #4a3636;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  letter-spacing: 1px;
}
@media screen and (min-width: 900px) {
  .form-select {
    font-size: 16px;
    letter-spacing: normal;
  }
}
@media screen and (min-width: 900px) {
  .form-radio-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 110px;
  }
}
.form-radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media screen and (min-width: 900px) {
  .form-radios {
    height: 56px;
  }
}
.form-radio {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  position: relative;
}
@media screen and (min-width: 900px) {
  .form-radio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 56px;
  }
}
.form-radio:hover .form-radio_text::before {
  border: 1px solid #9ed0e0;
}
.form-radio_input {
  width: 1px;
  height: 1px;
  position: absolute;
  left: -9999px;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.form-radio_input:focus, .form-radio_input:active {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.form-radio_input:checked + .form-radio_text {
  font-weight: 700;
}
.form-radio_input:checked + .form-radio_text::after {
  opacity: 1;
}
.form-radio_input:checked + .form-radio_text::before {
  border: 1px solid #9ed0e0;
}
.form-radio_input:hover + .form-radio_text::before {
  border: 1px solid #9ed0e0;
}
.form-radio_text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
  padding-left: 32px;
  position: relative;
}
.form-radio_text::before, .form-radio_text::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}
.form-radio_text::before {
  width: 24px;
  height: 24px;
  left: 0;
  background: #f5f5f5;
  -webkit-transition: border-color;
  transition: border-color;
}
.form-radio_text::after {
  width: 12px;
  height: 12px;
  left: 6px;
  background: #9ed0e0;
  opacity: 0;
}
@media screen and (min-width: 900px) {
  .form-radio_text {
    font-size: 16px;
  }
}
.form-checkbox_input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-checkbox_input:checked + .form-checkbox_text::after {
  opacity: 1;
}
.form-checkbox_input:checked + .form-checkbox_text::before {
  border: 1px solid #9ed0e0;
}
.form-checkbox_text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
  position: relative;
}
@media screen and (min-width: 900px) {
  .form-checkbox_text {
    font-size: 16px;
  }
}
.form-checkbox_text::before, .form-checkbox_text::after {
  content: "";
  position: absolute;
  left: -35px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 900px) {
  .form-checkbox_text::before, .form-checkbox_text::after {
    left: -37px;
  }
}
.form-checkbox_text::before {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: #f5f5f5;
  border: 1px solid transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.form-checkbox_text::after {
  width: 14px;
  height: 9px;
  margin-left: 5px;
  background: url(../img/contact-privacy-bector.png) no-repeat center center/cover;
  opacity: 0;
}
.form-checkbox_text a {
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.form-checkbox_text a:hover {
  color: #9ed0e0;
}

.err {
  display: none;
  color: #ce2073;
  font-size: 12px;
  margin-top: 6px;
}

.contact_form-item.is-error input,
.contact_form-item.is-error textarea,
.contact_form-item.is-error select {
  border: 1px solid #ce2073 !important;
  background: #fff0f7;
}

.contact_privacy.is-error .form-checkbox_text::before {
  border: 1px solid #ce2073;
  background: #fff0f7;
}

.contact_form.is-error .contact_form-head-title {
  color: #ce2073;
}
.contact_form.is-error .contact_form-item input,
.contact_form.is-error .contact_form-item textarea,
.contact_form.is-error .contact_form-item select {
  border: 1px solid #ce2073 !important;
  background: #fff0f7;
}

.contact_form.is-error .err {
  display: block;
}

.contact_form.is-error .form-item-arrow {
  background: #ce2073;
}

.footer {
  width: 100%;
  background: #e9f6f8;
  padding-top: 40px;
  overflow-x: hidden;
  position: relative;
}
@media screen and (min-width: 900px) {
  .footer {
    padding-top: 120px;
  }
}
.footer_inner {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 900px) {
  .footer_inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.footer_heading {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.footer_heading-head {
  font-family: "Josefin Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 125%;
}
@media screen and (min-width: 900px) {
  .footer_heading-head {
    font-size: 24px;
  }
}
.footer_heading-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 42px;
}
.footer_heading-icon img {
  width: 30px;
  height: 30px;
}
@media screen and (min-width: 900px) {
  .footer_heading-icon img {
    width: 40px;
    height: 40px;
  }
}
.footer_onomichi {
  margin-top: 15px;
}
@media screen and (min-width: 900px) {
  .footer_onomichi {
    margin-top: 41px;
  }
}
.footer_onomichi img {
  width: 328px;
  height: 34.405px;
}
@media screen and (min-width: 900px) {
  .footer_onomichi img {
    width: 755px;
    height: 82.231px;
  }
}
.footer_wrapper {
  width: 100%;
  max-width: 600px;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 16px;
}
@media screen and (min-width: 900px) {
  .footer_wrapper {
    max-width: 1024px;
    height: 400px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    margin-top: -3px;
    margin-bottom: 120px;
  }
}
@media screen and (min-width: 900px) and (min-width: 1200px) {
  .footer_wrapper {
    width: 1024px;
    height: 400px;
  }
}
.footer_wrapper-map {
  width: 100%;
  max-width: 600px;
  height: 271px;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .footer_wrapper-map {
    height: 100%;
  }
}
.footer_wrapper-map iframe {
  width: 100%;
  height: 100%;
  max-width: 600px;
  min-width: 0;
  display: block;
}
@media screen and (min-width: 900px) {
  .footer_wrapper-map iframe {
    max-height: 485px;
  }
}
@media screen and (min-width: 1200px) {
  .footer_wrapper-map iframe {
    width: 512px;
    height: 400px;
  }
}
.footer_wrapper-contents {
  width: 100%;
  max-width: 600px;
  background: #fff;
  padding: 19px 26px 29px 28px;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .footer_wrapper-contents {
    padding: 103px 61.5px;
    max-width: 512px;
    border-top-left-radius: 16px;
    border-bottom-right-radius: 0;
  }
}
@media screen and (min-width: 900px) {
  .footer_wrapper-head {
    text-align: left;
  }
}
.footer_wrapper-head img {
  width: 153px;
  height: 20px;
}
@media screen and (min-width: 900px) {
  .footer_wrapper-head img {
    width: 183px;
    height: 24px;
  }
}
.footer_wrapper-items {
  width: 100%;
  max-width: 100%;
  margin-top: 29px;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .footer_wrapper-items {
    margin-top: 25px;
    gap: 13px;
  }
}
.footer_wrapper-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 16px;
  position: relative;
}
.footer_wrapper-item::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9ed0e0;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.footer_wrapper-item-head {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 160%;
  min-width: 64px;
  white-space: nowrap;
}
@media screen and (min-width: 900px) {
  .footer_wrapper-item-head {
    font-size: 16px;
    width: 104px;
  }
}
.footer_wrapper-item-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 160%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 900px) {
  .footer_wrapper-item-text {
    font-size: 16px;
  }
}
.footer_pawpad {
  margin-top: 23px;
  margin-bottom: 24px;
  border: none;
  background: none;
}
.footer_pawpad img {
  width: 75px;
  height: 78px;
}
@media screen and (min-width: 900px) {
  .footer_pawpad {
    display: none;
  }
}
.footer_bottom-wave {
  width: 100%;
  height: 46px;
  background: url(../img/footer-bg-wave.png);
  background-repeat: repeat-x;
  background-position: top left;
  background-size: 96px 46px;
  margin-bottom: 40px;
}
@media screen and (min-width: 900px) {
  .footer_bottom-wave {
    height: 120px;
    background: url(../img/spots-top-wave-PC.png);
    background-size: 252px 120px;
    margin-bottom: 54px;
  }
}
.footer_bottom-copyright {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 42px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 160%;
  background: #67b0c7;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .footer_bottom-copyright {
    height: 55px;
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) {
  .footer-bg-pawpads {
    background: url(../img/footer-bg-pawpads.png) no-repeat center center/cover;
    width: 70px;
    height: 154px;
    position: absolute;
    top: 80px;
    right: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .footer-bg-pawpads {
    width: 100px;
    height: 220px;
  }
}

.pagetop {
  display: none;
}
@media screen and (min-width: 900px) {
  .pagetop {
    z-index: 1000;
    display: block;
    opacity: 0;
    position: fixed;
    right: 40px;
    bottom: 15px;
    width: 100px;
    height: 104px;
    visibility: hidden;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
  }
}
.pagetop.is-show {
  opacity: 1;
  visibility: visible;
}

.fade-in-up {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
.fade-in-up.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

#about-anchor {
  display: block;
  position: relative;
  top: -50px;
}
@media screen and (min-width: 900px) {
  #about-anchor {
    top: -90px;
  }
}

#prizes-anchor {
  display: block;
  position: relative;
  top: -90px;
}
@media screen and (min-width: 900px) {
  #prizes-anchor {
    top: -100px;
  }
}

#spots-anchor {
  display: block;
  position: relative;
  top: -110px;
}
@media screen and (min-width: 900px) {
  #spots-anchor {
    top: -190px;
  }
}

#qa-anchor {
  display: block;
  position: relative;
  top: -90px;
}
#entry-anchor {
  display: block;
  position: relative;
  top: -90px;
}

#contact-anchor {
  display: block;
  position: relative;
  top: -100px;
}