@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #4A3636;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 778px) {
  body {
    min-width: 380px;
  }
}

.all-wraper {
  overflow: hidden;
}

@media screen and (max-width: 778px) {
  .inner {
    width: 375px;
    padding: 0 20px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 778px) {
  .inner {
    max-width: 1024px;
    padding: 0 30px;
    margin: 0 auto;
  }
}

.button {
  display: inline-block;
  background-color: #FFFFFF;
  font-weight: 700;
  border: 3px solid #4A3636;
  text-align: center;
  border-radius: 40px;
  box-shadow: 0px 4px 0px 0px #4A3636;
  padding: 6px 24px 8px 24px;
  transition: background-color 0.5s ease 0s;
}
.button:hover {
  background-color: #FFEE56;
}
.button a {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 778px) {
  .button a {
    font-size: 20px;
  }
}
@media screen and (min-width: 778px) {
  .button {
    padding: 10px 40px 12px 40px;
  }
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
@media screen and (min-width: 778px) {
  .header-inner {
    flex-direction: row;
    padding: 0 24px;
  }
}
@media screen and (min-width: 779px) and (max-width: 1023px) {
  .header-inner {
    max-width: 940px;
    padding: 0 20px;
    margin: 0 auto;
  }
}

.header-img img {
  max-width: 183px;
}

.header-nav {
  display: none;
}
@media screen and (min-width: 778px) {
  .header-nav {
    display: block;
    margin-left: auto;
  }
}
@media screen and (min-width: 779px) and (max-width: 1023px) {
  .header-nav {
    display: none;
  }
}

@media screen and (min-width: 778px) {
  .header-item-list {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: border 0.5s ease 0s;
  }
}

@media screen and (min-width: 778px) {
  .header-item {
    position: relative;
  }
  .header-item::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: transparent;
    transition: all 0.5s ease 0s;
  }
  .header-item:hover::after, .header-item.is-active::after {
    background-color: #9ED0E0;
  }
  .header-item.is-active::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
  }
  .header-item:hover, .header-item.is-active {
    opacity: 0.7;
  }
}

@media screen and (min-width: 778px) {
  .header-link {
    font-size: 12px;
  }
}
@media screen and (min-width: 779px) and (max-width: 1023px) {
  .header-link {
    font-size: 11px;
  }
}

@media screen and (min-width: 778px) {
  .header-button-link {
    font-size: 14px;
    font-weight: 700;
  }
  .header-button-link:hover {
    background-color: #FFEE56;
  }
}
@media screen and (min-width: 779px) and (max-width: 1023px) {
  .header-button-link {
    font-size: 13px;
  }
}

.header-button {
  display: inline-block;
  background-color: #FFFFFF;
  border: 3px solid #4A3636;
  border-radius: 40px;
  box-shadow: 0px 4px 0px 0px #4A3636;
  padding: 6px 24px 8px 24px;
}
.header-button:hover {
  background-color: #FFEE56;
}
@media screen and (min-width: 779px) and (max-width: 1023px) {
  .header-button {
    font-size: 16px;
  }
}

.drawer-icon {
  position: relative;
  flex-direction: column;
  align-items: center;
  background-color: transparent;
  width: 32px;
  height: 24px;
  border: none;
  z-index: 51;
}
.drawer-icon.is-checked .drawer-icon-bar:nth-of-type(2),
.drawer-icon.is-checked .drawer-icon-right:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon-bar:nth-of-type(1),
.drawer-icon.is-checked .drawer-icon-right:nth-of-type(1) {
  transform: rotate(45deg);
  top: 10px;
  width: 32px;
}
.drawer-icon.is-checked .drawer-icon-bar:nth-of-type(3),
.drawer-icon.is-checked .drawer-icon-right:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 10px;
}
.drawer-icon.is-checked .drawer-icon-bar:nth-of-type(4),
.drawer-icon.is-checked .drawer-icon-right:nth-of-type(4) {
  display: none;
}
@media screen and (min-width: 778px) {
  .drawer-icon {
    display: none;
  }
}
@media screen and (min-width: 779px) and (max-width: 1023px) {
  .drawer-icon {
    display: block;
  }
}

.drawer-icon-right {
  position: absolute;
  top: 0;
  right: 0;
  left: 28px;
  width: 4.3px;
  height: 3px;
  background: #4a3636;
  border-radius: 6px;
}

.drawer-icon-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 3px;
  border-radius: 6px;
  background: #4A3636;
  transition: transform 0.5s linear, top 0.5s linear;
}
.drawer-icon-bar:nth-of-type(1) {
  width: 25.6px;
}
.drawer-icon-bar:nth-of-type(3) {
  top: 12px;
}
.drawer-icon-bar:nth-of-type(4) {
  top: 24px;
}

.drawer-contents {
  width: 100%;
  height: 100%;
  padding-block: 82px;
  position: fixed;
  margin-top: 50px;
  top: 0;
  right: 0;
  background: #FFFFFF;
  z-index: 20;
  overflow-y: auto;
  padding: 86px 40px;
  transform: translateY(-100%);
  transition: transform 0.5s linear;
}
.drawer-contents.is-checked {
  transform: translateY(0);
}

.drawer-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.drawer-link {
  display: block;
  font-size: 14px;
}

.drawer-button a {
  font-size: 20px;
  font-weight: 700;
}

.main {
  background-color: #E9F6F8;
  width: 100%;
  margin: 0 auto;
}

.main-mv {
  padding-top: 17px;
  margin-bottom: 190px;
  height: 554px;
  background: url(../img/Onomichi_02\ 2.jpg) center center/cover;
  border-radius: 0px 0px 24px 24px;
}
@media screen and (min-width: 778px) {
  .main-mv {
    background: url(../img/onomichi-bg-pc.jpg) center center/cover;
    width: 100%;
    padding-top: 34px;
    padding-bottom: 17px;
    height: 740px;
    border-radius: 0px 0px 40px 40px;
  }
}

.main-mv-inner {
  position: relative;
}

.main-mv-contents {
  text-align: center;
  margin-top: 50px;
}

.main-mv-text {
  font-family: "Kiwi Maru", serif;
}
@media screen and (min-width: 778px) {
  .main-mv-text {
    font-size: 24px;
    font-weight: 500;
  }
}

.main-mv-title-img {
  margin-top: 20px;
}
.main-mv-title-img img {
  width: 335px;
}
@media screen and (min-width: 778px) {
  .main-mv-title-img img {
    width: 520px;
  }
}

.main-mv-title-img2 {
  margin-top: 12px;
}
@media screen and (min-width: 778px) {
  .main-mv-title-img2 {
    margin-top: 16px;
  }
}
.main-mv-title-img2 img {
  width: 240px;
}
@media screen and (min-width: 778px) {
  .main-mv-title-img2 img {
    width: 356px;
  }
}

.main-mv-wrap {
  position: relative;
}

.main-mv-topics {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 58px;
}
@media screen and (min-width: 778px) {
  .main-mv-topics {
    gap: 260px;
  }
}

.main-mv-logo-img {
  margin-top: 17px;
}
.main-mv-logo-img img {
  width: 142px;
}
@media screen and (min-width: 778px) {
  .main-mv-logo-img img {
    width: 244px;
    height: 125.969px;
  }
}

.main-mv-circle {
  display: block;
  background-color: #CE2073;
  text-align: center;
  justify-content: center;
  border-radius: 500px;
  width: 110px;
  height: 110px;
  padding-top: 10px;
  padding-bottom: 16px;
  margin-top: 10px;
  font-size: 14.667px;
  font-weight: 700;
  color: #FFFFFF;
}
@media screen and (min-width: 778px) {
  .main-mv-circle {
    width: 180px;
    height: 180px;
    font-size: 24px;
    margin-right: 90px;
  }
}

.main-mv-img-phone {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  right: 0;
  text-align: center;
}
@media screen and (min-width: 778px) {
  .main-mv-img-phone {
    margin-top: 33px;
    bottom: 0;
    top: 0;
  }
}
.main-mv-img-phone img {
  border-radius: 20px;
  width: 200px;
}
@media screen and (min-width: 778px) {
  .main-mv-img-phone img {
    border-radius: 30px;
    width: 250px;
  }
}

.topics-text {
  font-size: 10px;
  color: #FFFFFF;
  font-weight: 700;
}
@media screen and (min-width: 778px) {
  .topics-text {
    font-size: 16px;
  }
}

.topics-text-yellow {
  font-size: 30.458px;
  font-weight: 700;
  line-height: 125%; /* 38.072px */
  color: #FFEE56;
}
@media screen and (min-width: 778px) {
  .topics-text-yellow {
    font-size: 49.84px;
  }
}

.topics-text-2 {
  font-size: 9.778px;
  font-weight: 700;
  color: #FFEE56;
}
@media screen and (min-width: 778px) {
  .topics-text-2 {
    font-size: 16px;
  }
}

.topics-text-3 {
  font-size: 9.778px;
  font-weight: 700;
  color: #FFFFFF;
}
@media screen and (min-width: 778px) {
  .topics-text-3 {
    font-size: 16px;
  }
}

.main-mv-drink-img {
  position: absolute;
  top: 330px;
  left: 50px;
}
@media screen and (min-width: 778px) {
  .main-mv-drink-img {
    left: 97px;
    top: 130%;
  }
}
.main-mv-drink-img img {
  width: 47px;
}
@media screen and (min-width: 778px) {
  .main-mv-drink-img img {
    width: 111px;
  }
}

.main-mv-food-img {
  position: absolute;
  bottom: 0;
  top: 413px;
  left: 10px;
}
.main-mv-food-img img {
  width: 54px;
}
@media screen and (min-width: 778px) {
  .main-mv-food-img img {
    width: 127px;
  }
}

.mv-cats {
  position: relative;
}
@media screen and (min-width: 778px) {
  .mv-cats {
    margin-left: 66px;
  }
}

.main-mv-cat1-img {
  position: absolute;
  mix-blend-mode: multiply;
  top: 220px;
  right: 0;
  margin: 29px 20px 0 5px;
}
@media screen and (min-width: 778px) {
  .main-mv-cat1-img {
    top: 100px;
  }
}
.main-mv-cat1-img img {
  width: 62px;
}
@media screen and (min-width: 778px) {
  .main-mv-cat1-img img {
    width: 170px;
  }
}

.main-mv-cat2-img {
  position: absolute;
  top: 290px;
  right: 0;
  left: 65%;
}
@media screen and (min-width: 778px) {
  .main-mv-cat2-img {
    top: 260px;
    left: 80%;
  }
}
.main-mv-cat2-img img {
  width: 98px;
}
@media screen and (min-width: 778px) {
  .main-mv-cat2-img img {
    width: 100%;
  }
}

.about {
  z-index: 1;
  margin-top: 43px;
  position: relative;
}
@media screen and (min-width: 778px) {
  .about {
    margin-top: 97px;
  }
}

.about-slider,
.swiper-wrapper {
  transition-timing-function: linear; /*スライドの動きをスムーズにする*/
}

@media screen and (min-width: 778px) {
  .about-wrapper {
    display: flex;
    justify-content: space-between;
  }
}

.swiper-slide {
  margin-right: 10px;
  overflow: hidden;
}
@media screen and (min-width: 778px) {
  .swiper-slide {
    border-radius: 38px;
  }
}
@media screen and (max-width: 778px) {
  .swiper-slide img {
    border-radius: 8px;
    width: 126px;
  }
}

@media screen and (min-width: 778px) {
  .about-slide img {
    width: 200px;
  }
}

.hidden-sp {
  display: none !important;
}

@media screen and (min-width: 778px) {
  .about-img {
    position: fixed;
    display: inline-block;
    z-index: 1001;
    right: 40px;
    bottom: 40px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s;
  }
  .about-img.is-show {
    opacity: 1;
    visibility: visible;
  }
}
.about-img img {
  display: none;
}
@media screen and (min-width: 778px) {
  .about-img img {
    display: block;
    width: 100px;
    height: 104px;
  }
}

@media screen and (max-width: 778px) {
  .about-decoration-first-img {
    display: none;
  }
}
@media screen and (min-width: 778px) {
  .about-decoration-first-img {
    display: block;
    position: absolute;
    top: -20px;
    right: calc(50% + 470px);
    overflow: hidden;
    width: 24.4140625%;
    border-radius: 24px;
  }
}
.about-decoration-first-img img {
  width: 250px;
}

.about-picture-left {
  position: absolute;
  z-index: -1;
  top: 395px;
  right: calc(50% + 128px);
  width: 200px;
  overflow: hidden;
  border-radius: 24px;
}
@media screen and (min-width: 778px) {
  .about-picture-left {
    z-index: 3;
    right: calc(50% + 375px);
    top: 73px;
    width: 46.875%;
    border-radius: 40px;
  }
}
.about-picture-left img {
  width: 200px;
}
@media screen and (min-width: 778px) {
  .about-picture-left img {
    width: 480px;
  }
}

.about-picture-right {
  position: absolute;
  z-index: -1;
  top: 274px;
  left: calc(50% + 127px);
  width: 200px;
  overflow: hidden;
  border-radius: 24px;
}
@media screen and (min-width: 778px) {
  .about-picture-right {
    left: calc(100% - 140px);
    width: 46.875%;
    top: 74px;
    z-index: 2;
  }
}
@media screen and (min-width: 779px) and (max-width: 1023px) {
  .about-picture-right {
    left: calc(50% + 360px);
    border-radius: 40px;
  }
}
.about-picture-right img {
  width: 200px;
}
@media screen and (min-width: 778px) {
  .about-picture-right img {
    width: 480px;
  }
}

.about-img-icon {
  position: absolute;
  right: 0;
  z-index: -1;
}
@media screen and (min-width: 778px) {
  .about-img-icon {
    top: -50px;
    left: calc(100% - 250px);
    width: 11.1111111111%;
  }
}
.about-img-icon img {
  width: 54px;
}
@media screen and (min-width: 778px) {
  .about-img-icon img {
    width: 100px;
  }
}

@media screen and (min-width: 778px) {
  .about-inner {
    max-width: 910px;
    padding: 0 30px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 779px) and (max-width: 1023px) {
  .about-inner {
    max-width: 650px;
    padding: 0 30px;
    margin: 0 auto;
  }
}

.about-card {
  background-color: #FFFFFF;
  padding-top: 40px;
  padding-right: 20px;
  padding-bottom: 36px;
  padding-left: 20px;
  border-radius: 24px;
}
@media screen and (min-width: 778px) {
  .about-card {
    padding: 40px 0;
  }
}

.section-title {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
@media screen and (min-width: 778px) {
  .section-title {
    gap: 8px;
  }
}

.section-title-card {
  position: relative;
}

.section-title-icon img {
  width: 37.333px;
}
@media screen and (min-width: 778px) {
  .section-title-icon img {
    width: 48px;
  }
}

.title-head {
  font-family: "Courgette", sans-serif;
  font-size: 16px;
  line-height: 125%; /* 20px */
}
@media screen and (min-width: 778px) {
  .title-head {
    font-size: 20px;
  }
}

.title-main {
  font-family: "Kiwi Maru", serif;
  width: 200px;
  margin: 0 auto;
  color: #4A3636;
  font-size: 20px;
  font-weight: 500;
  line-height: 125%; /* 25px */
  padding-bottom: 12px;
  border-bottom: 6px solid #FFEE56;
}
@media screen and (min-width: 778px) {
  .title-main {
    width: 320px;
    font-size: 32px;
  }
}

.about-img-left {
  position: absolute;
  left: 0;
  right: 60%;
}
@media screen and (min-width: 778px) {
  .about-img-left {
    right: 75%;
    left: 30px;
  }
}
.about-img-left img {
  width: 80px;
}
@media screen and (min-width: 778px) {
  .about-img-left img {
    width: 134px;
  }
}

.about-img-right {
  position: absolute;
  right: 0;
  left: 60%;
}
@media screen and (min-width: 778px) {
  .about-img-right {
    left: 75%;
    right: 30px;
  }
}
.about-img-right img {
  width: 80px;
}
@media screen and (min-width: 778px) {
  .about-img-right img {
    width: 134px;
  }
}

.about-contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media screen and (min-width: 778px) {
  .about-contents {
    gap: 32px;
  }
}

.about-title-text {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 778px) {
  .about-title-text {
    font-size: 16px;
    margin-top: 32px;
  }
}

.about-text {
  text-align: center;
  font-size: 12px;
}
@media screen and (min-width: 778px) {
  .about-text {
    font-size: 16px;
  }
}
.about-text:not(:first-child) {
  margin-top: 20px;
}

.about-text-font {
  font-weight: 700;
}

.about-text-bottom {
  font-size: 14px;
  font-weight: 700;
  padding-bottom: 8px;
  border-bottom: 3px dotted #9ED0E0;
}
@media screen and (min-width: 778px) {
  .about-text-bottom {
    font-size: 20px;
  }
}

.about-button::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 100px;
  height: 36px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: #cce1e4;
  transform: translateX(-50%);
}
@media screen and (min-width: 778px) {
  .about-button::after {
    width: 140px;
    height: 50px;
  }
}

.about-bottom {
  margin-bottom: 176px;
}
@media screen and (min-width: 778px) {
  .about-bottom {
    margin-bottom: 258px;
  }
}

.about-logo {
  position: absolute;
  left: 5px;
  top: 859px;
  z-index: 3;
}
@media screen and (min-width: 778px) {
  .about-logo {
    top: 120%;
    left: 22%;
  }
}
@media screen and (min-width: 779px) and (max-width: 1023px) {
  .about-logo {
    top: 120%;
    left: 160px;
  }
}
.about-logo img {
  width: 100%;
  margin: 0 auto;
}
.about-decoration-item1-img {
  position: absolute;
  bottom: -15%;
  left: calc(50% - 3px);
}
@media screen and (min-width: 778px) {
  .about-decoration-item1-img {
    top: 92%;
    left: calc(50% + 290px);
    width: 30.078125%;
  }
}
@media screen and (min-width: 779px) and (max-width: 1023px) {
  .about-decoration-item1-img {
    left: calc(50% + 113px);
  }
}
.about-decoration-item1-img img {
  width: 133px;
}
@media screen and (min-width: 778px) {
  .about-decoration-item1-img img {
    width: 308px;
  }
}

.about-decoration-item2-img {
  position: absolute;
  bottom: -55px;
  left: calc(50% + 113px);
}
@media screen and (min-width: 778px) {
  .about-decoration-item2-img {
    top: 65%;
    left: calc(100% - 230px);
    width: 9.86328125%;
  }
}
@media screen and (min-width: 779px) and (max-width: 1023px) {
  .about-decoration-item2-img {
    left: calc(50% + 310px);
  }
}
.about-decoration-item2-img img {
  width: 48px;
}
@media screen and (min-width: 778px) {
  .about-decoration-item2-img img {
    width: 101px;
  }
}

@media screen and (max-width: 778px) {
  .about-decoration-item3-img {
    display: none;
  }
}
@media screen and (min-width: 778px) {
  .about-decoration-item3-img {
    display: block;
    z-index: -1;
    position: absolute;
    bottom: 300px;
    left: calc(50% + 120px);
  }
}
@media screen and (min-width: 778px) {
  .about-decoration-item3-img img {
    width: 874px;
  }
}

.about-picture-step {
  position: absolute;
  right: calc(50% + 150px);
  bottom: -210px;
  left: 0;
  left: 0;
  width: 138px;
  background-color: transparent;
}
@media screen and (min-width: 778px) {
  .about-picture-step {
    right: calc(50% + 432px);
    bottom: -450px;
    width: 427px;
  }
}
@media screen and (max-width: 778px) {
  .about-picture-step img {
    width: 138px;
  }
}
@media screen and (min-width: 778px) {
  .about-picture-step img {
    width: 427px;
  }
}

.how-to {
  margin-top: 65px;
  position: relative;
}
@media screen and (min-width: 778px) {
  .how-to {
    margin-top: 120px;
  }
}

@media screen and (min-width: 779px) and (max-width: 1023px) {
  .how-to-inner {
    max-width: 920px;
    padding-inline: 30px;
    margin: 0 auto;
  }
}

.how-to-cat-img {
  position: absolute;
  right: 0;
  mix-blend-mode: multiply;
}
@media screen and (min-width: 778px) {
  .how-to-cat-img {
    right: 9%;
    bottom: 0;
    top: -18px;
    width: 23.2421875%;
  }
}
@media screen and (min-width: 779px) and (max-width: 1023px) {
  .how-to-cat-img {
    width: 16.40625%;
  }
}
.how-to-cat-img img {
  width: 105px;
}
@media screen and (min-width: 778px) {
  .how-to-cat-img img {
    width: 238px;
  }
}

.how-to-cat-img-2 {
  position: absolute;
  right: -49px;
  mix-blend-mode: multiply;
}
@media screen and (min-width: 778px) {
  .how-to-cat-img-2 {
    right: 3px;
    width: 20.8984375%;
  }
}
@media screen and (min-width: 779px) and (max-width: 1023px) {
  .how-to-cat-img-2 {
    width: 14.6875%;
  }
}
.how-to-cat-img-2 img {
  width: 94px;
}
@media screen and (min-width: 778px) {
  .how-to-cat-img-2 img {
    width: 214px;
  }
}

.how-to-map-img {
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 778px) {
  .how-to-map-img {
    left: 30px;
    width: 31.0810810811%;
  }
}
.how-to-map-img img {
  width: 149px;
}
@media screen and (min-width: 778px) {
  .how-to-map-img img {
    width: 460px;
  }
}

.how-to-icon-img {
  position: absolute;
  right: 10px;
  top: 5%;
}
@media screen and (min-width: 778px) {
  .how-to-icon-img {
    top: 200px;
    width: 6.7567567568%;
  }
}
.how-to-icon-img img {
  width: 55px;
}
@media screen and (min-width: 778px) {
  .how-to-icon-img img {
    width: 100px;
  }
}

.how-to-icon-img2 {
  position: absolute;
  top: 43%;
  transform: translateY(-43px);
  left: 15px;
}
@media screen and (min-width: 778px) {
  .how-to-icon-img2 {
    left: 58px;
    top: 79%;
    width: 6.7567567568%;
  }
}
.how-to-icon-img2 img {
  width: 55px;
}
@media screen and (min-width: 778px) {
  .how-to-icon-img2 img {
    width: 100px;
  }
}

.how-to-icon-img3 {
  position: absolute;
  right: 15px;
  top: 65%;
  transform: translateY(-6%);
}
@media screen and (min-width: 778px) {
  .how-to-icon-img3 {
    display: none;
  }
}
.how-to-icon-img3 img {
  width: 55px;
}

.how-to-main {
  width: 100px;
}
@media screen and (min-width: 778px) {
  .how-to-main {
    font-size: 32px;
    width: 160px;
  }
}

.how-to-contents {
  margin-top: 32px;
}
@media screen and (min-width: 778px) {
  .how-to-contents {
    margin-top: 40px;
  }
}

.how-to-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 778px) {
  .how-to-items {
    flex-direction: row;
    justify-content: center;
    gap: 52px;
  }
}

.how-to-step {
  text-align: center;
}
.how-to-step:not(:first-child) {
  margin-top: 34px;
}
@media screen and (min-width: 778px) {
  .how-to-step:not(:first-child) {
    margin-top: 0;
  }
  .how-to-step:not(:first-child):nth-last-of-type(2) {
    margin-top: 69px;
  }
  .how-to-step:not(:first-child):nth-last-of-type(2) .how-to-after:after {
    margin-top: -69px;
  }
}
@media screen and (min-width: 778px) {
  .how-to-step {
    width: calc(33.3% - 16px);
  }
}

@media screen and (min-width: 778px) {
  .how-to-picture img {
    width: 87.5%;
  }
}

.how-to-item {
  text-align: center;
}

.how-to-after {
  position: relative;
}
.how-to-after::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 34px;
  background-image: url(../img/sp/how-to-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
@media screen and (min-width: 778px) {
  .how-to-after::after {
    position: absolute;
    display: block;
    content: "";
    background-image: url(../img/how-to-icon-pc-.png);
    width: 113px;
    height: 24px;
    top: 168px;
    left: auto;
    right: -103px;
  }
}
@media screen and (min-width: 778px) and (min-width: 779px) and (max-width: 1023px) {
  .how-to-after::after {
    top: 125px;
    left: 250px;
  }
}

.how-to-item-title {
  display: block;
  font-weight: 700;
  margin-top: 16px;
}
@media screen and (min-width: 778px) {
  .how-to-item-title {
    margin-top: 24px;
    font-size: 20px;
  }
}

.how-to-body {
  margin: 16px 0;
}
@media screen and (min-width: 778px) {
  .how-to-body {
    margin-top: 16px;
  }
}

.how-to-text {
  font-size: 12px;
}
@media screen and (min-width: 778px) {
  .how-to-text {
    font-size: 16px;
    white-space: nowrap;
  }
}
@media screen and (min-width: 779px) and (max-width: 1023px) {
  .how-to-text {
    font-size: 12px;
  }
}

.how-to-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #FFFFFF;
  padding: 8px 12px;
  margin-bottom: 16px;
}

.how-to-icon img {
  width: 20px;
}
@media screen and (min-width: 778px) {
  .how-to-icon img {
    width: 24px;
  }
}

.how-to-text-bottom {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 778px) {
  .how-to-text-bottom {
    font-size: 16px;
  }
}
@media screen and (min-width: 779px) and (max-width: 1023px) {
  .how-to-text-bottom {
    font-size: 13px;
  }
}

.sub-text {
  font-size: 12px;
  font-weight: 700;
}

@media screen and (min-width: 778px) {
  .button-box {
    text-align: center;
    margin-top: 40px;
  }
}

.how-to-button a {
  font-size: 16px;
  font-weight: 700;
  line-height: 160%; /* 25.6px */
  white-space: nowrap;
}

.prizes {
  margin-top: 37px;
}
@media screen and (min-width: 778px) {
  .prizes {
    margin-top: 120px;
  }
}

@media screen and (max-width: 778px) {
  .prizes-inner {
    width: 375px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 778px) {
  .prizes-inner {
    max-width: 1024px;
    padding: 0 30px;
    margin: 0 auto;
  }
}

.prizes-title {
  position: relative;
}
.prizes-title::before {
  content: "";
  position: absolute;
  margin-top: -20px;
  z-index: -1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 320px;
  background: #FFFFFF;
  width: 200px;
  height: 200px;
}
@media screen and (min-width: 778px) {
  .prizes-title::before {
    width: 320px;
    height: 311.567px;
    margin-top: -28px;
  }
}

@media screen and (max-width: 778px) {
  .prizes-title-icon-left {
    display: none;
  }
}
@media screen and (min-width: 779px) and (max-width: 1023px) {
  .prizes-title-icon-left {
    display: none;
  }
}
@media screen and (min-width: 778px) {
  .prizes-title-icon-left {
    position: absolute;
    left: 0;
    top: 3%;
  }
}
@media screen and (min-width: 778px) {
  .prizes-title-icon-left img {
    width: 315px;
  }
}

@media screen and (max-width: 778px) {
  .prizes-title-icon-right {
    display: none;
  }
}
@media screen and (min-width: 779px) and (max-width: 1023px) {
  .prizes-title-icon-right {
    display: none;
  }
}
@media screen and (min-width: 778px) {
  .prizes-title-icon-right {
    position: absolute;
    right: 0;
    top: 3%;
  }
}
@media screen and (min-width: 778px) {
  .prizes-title-icon-right img {
    width: 315px;
  }
}

.prizes-wrap {
  position: relative;
  z-index: 2;
  padding-inline: 20px;
  padding-top: 24px;
  padding-bottom: 30px;
}
@media screen and (min-width: 778px) {
  .prizes-wrap {
    padding-inline: 56px;
    padding-top: 32px;
    padding-bottom: 53px;
  }
}
.prizes-wrap::after {
  position: absolute;
  z-index: -1;
  content: "";
  background-color: #fff;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 83px);
  border-radius: 24px;
}
@media screen and (min-width: 778px) {
  .prizes-wrap::after {
    height: calc(100% - 148px);
  }
}
@media screen and (min-width: 778px) {
  .prizes-wrap {
    border-radius: 24px;
    padding-inline: 56px;
    padding-bottom: 53px;
  }
  .prizes-wrap::after {
    content: "";
    height: calc(100% - 148px);
  }
}

.prizes-main {
  width: 160px;
}
@media screen and (min-width: 778px) {
  .prizes-main {
    width: 256px;
  }
}

.prizes-text-body {
  margin-top: 16px;
}
@media screen and (min-width: 778px) {
  .prizes-text-body {
    margin-top: 40px;
  }
}

.prizes-item-body-bottom {
  width: 160px;
}

.prizes-text {
  font-size: 12px;
}
@media screen and (min-width: 778px) {
  .prizes-text {
    font-size: 15px;
    text-align: center;
  }
}

.prizes-contents {
  margin: 24px 0;
}
@media screen and (min-width: 778px) {
  .prizes-contents {
    margin-top: 32px;
  }
}

.prizes-items {
  display: flex;
  flex-wrap: wrap;
  row-gap: 39px;
  column-gap: 15px;
  justify-content: center;
  margin-top: 48px;
}
@media screen and (min-width: 778px) {
  .prizes-items {
    display: grid;
    grid-template-rows: repeat(2, auto);
    grid-template-columns: repeat(6, 1fr);
    grid-row-gap: 80px;
    grid-column-gap: 32px;
  }
}

.prizes-item {
  position: relative;
  text-align: center;
}
@media screen and (min-width: 778px) {
  .prizes-item:nth-child(n+3) {
    margin-top: 0;
  }
}
@media screen and (min-width: 778px) {
  .prizes-item:nth-of-type(1) {
    grid-area: 1/1/2/4;
  }
  .prizes-item:nth-of-type(2) {
    grid-area: 1/4/2/7;
  }
  .prizes-item:nth-of-type(3) {
    grid-area: 2/1/3/3;
    width: calc(100% - 2.6666666667px);
  }
  .prizes-item:nth-of-type(4) {
    grid-area: 2/3/3/5;
    width: calc(100% - 2.6666666667px);
    margin-left: 1px;
  }
  .prizes-item:nth-of-type(5) {
    grid-area: 2/5/3/7;
    width: calc(100% - 2.6666666667px);
    margin-left: 3px;
  }
}

.prizes-bottom {
  display: grid;
  justify-items: center;
  align-items: center;
}

.prizes-item-head-img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -18px;
  z-index: 3;
}
@media screen and (min-width: 778px) {
  .prizes-item-head-img {
    top: -35px;
  }
}
.prizes-item-head-img img {
  width: 48px;
}
@media screen and (min-width: 778px) {
  .prizes-item-head-img img {
    width: 100px;
  }
}

.prizes-img {
  cursor: pointer;
  overflow: hidden;
}
.prizes-img img {
  border-radius: 10px 10px 0 0;
  display: block;
  width: 100%;
  height: 100%;
  transition: transform 1s ease; /* ゆっくり変化させる */
}
@media screen and (max-width: 778px) {
  .prizes-img img {
    max-width: 160px;
  }
}
.prizes-img img:hover {
  border-radius: 10px 10px 0 0;
  transform: scale(1.1);
}
@media screen and (min-width: 778px) {
  .prizes-img img {
    width: 440px;
  }
}

.prizes-item-body:hover {
  opacity: 0.7;
}

.prizes-item-pa {
  padding: 9px 0;
}

.prizes-bg-3 {
  padding: 18px 0;
}

.prizes-bg {
  position: relative;
  background-color: #F5F5F5;
  padding: 9px 0;
}
@media screen and (min-width: 778px) {
  .prizes-bg {
    max-width: 440px;
  }
}

.prizes-icon-side {
  position: absolute;
  z-index: 2;
  bottom: 0.9%;
  right: 0.9%;
}
.prizes-icon-side img {
  width: 36px;
  border-radius: 0 0 10px 0;
}
@media screen and (min-width: 778px) {
  .prizes-icon-side img {
    width: 60px;
  }
}

.item-text {
  font-size: 12px;
  font-weight: 700;
}
@media screen and (min-width: 778px) {
  .item-text {
    font-size: 20px;
  }
}

.about-modal {
  border-radius: 24px;
  border: none;
  position: fixed;
  inset: 0;
  margin: auto;
  width: 336px;
  max-width: calc(100% - 30px);
  max-height: calc(100% - 40px);
  padding: 0;
  padding-bottom: 19px;
  padding-inline: 3px;
  overscroll-behavior-y: none;
}
.about-modal::backdrop {
  background: #000;
  opacity: 0.7;
}
@media screen and (min-width: 778px) {
  .about-modal {
    width: 480px;
    height: 650px;
    padding-bottom: 23px;
    padding-inline: 40px;
  }
}

@media screen and (min-width: 778px) {
  .about-modal-contents {
    margin: -40px;
  }
}

@media screen and (max-width: 778px) {
  .modal-img,
  .modal-img-2 {
    margin-left: -40px;
    margin-top: -20px;
  }
}
@media screen and (max-width: 778px) {
  .modal-img img,
  .modal-img-2 img {
    width: calc(100% + 40px);
    margin-left: 20px;
  }
}
@media screen and (min-width: 778px) {
  .modal-img img,
  .modal-img-2 img {
    width: calc(100% + 100px);
  }
}

.modal-item-body {
  text-align: center;
  margin-top: 39px;
  padding-inline: 20px;
}
@media screen and (min-width: 778px) {
  .modal-item-body {
    margin-top: 32px;
  }
}

.modal-title {
  font-size: 16px;
  font-weight: 700;
}

.modal-text {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 400;
  line-height: 160%; /* 19.2px */
}
@media screen and (min-width: 778px) {
  .modal-text {
    font-size: 16px;
    padding-bottom: 48px;
  }
}

.modal-close-button {
  text-align: center;
  font-weight: 700;
  margin-top: 16px;
  padding-bottom: 56px;
}
.modal-close-button:nth-child(n+3) {
  margin-top: 25px;
}
@media screen and (min-width: 778px) {
  .modal-close-button {
    margin-top: 24px;
    padding-bottom: 106px;
  }
}

.modal-bottom-button {
  margin-top: 50px;
}

.view-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 778px) {
  .view-inner {
    display: block;
  }
}

.view-img {
  display: block;
}

.view-img img {
  width: 100%;
  min-width: 580px;
}

.spots {
  background-color: #67B0C7;
  position: relative;
  padding-top: 30.7px;
  padding-bottom: 45.7px;
  margin-top: -45.7px;
}
@media screen and (min-width: 778px) {
  .spots {
    padding-top: 120px;
    padding-bottom: 120px;
    margin-top: -120px;
  }
}

.spots::before {
  content: "";
  position: absolute;
  left: 0;
  top: -20px;
  background: url(../img/img_bg_wave-up.png);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: left -3px center;
  width: 100%;
  height: 45.7px;
}
@media screen and (min-width: 778px) {
  .spots::before {
    height: 120px;
    top: -30px;
    background-position: left center;
  }
}

.spots-after {
  position: relative;
}

.spots-after::after {
  content: "";
  position: absolute;
  background: url(../img/img_bg_wave-down.png);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: left -6px center;
  width: 100%;
  height: 45.7px;
  left: 0;
  bottom: -33px;
}
@media screen and (min-width: 778px) {
  .spots-after::after {
    height: 120px;
  }
}

@media screen and (min-width: 778px) {
  .spots-inner {
    max-width: calc(1054px + (100% - 1024px) / 2);
    margin-left: auto;
  }
}
@media screen and (min-width: 779px) and (max-width: 1023px) {
  .spots-inner {
    padding-left: max(30px, 50vw - 512px);
  }
}

@media screen and (min-width: 778px) {
  .spots-wrap {
    display: flex;
    column-gap: 32px;
  }
}

.spots-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media screen and (min-width: 778px) {
  .spots-title {
    position: relative;
    writing-mode: vertical-rl;
  }
}

.spots-title-icon img {
  width: 28px;
}
@media screen and (min-width: 778px) {
  .spots-title-icon img {
    position: absolute;
    top: 45px;
    left: 5px;
  }
}
@media screen and (min-width: 778px) {
  .spots-title-icon img {
    width: 56px;
    top: 0;
  }
}

.spots-title-text {
  font-family: "Kiwi Maru", serif;
  color: #FFFFFF;
  font-size: 28px;
  font-weight: 500;
  line-height: 125%; /* 35px */
}
@media screen and (min-width: 778px) {
  .spots-title-text {
    margin-top: -95px;
    margin-bottom: 135px;
    font-size: 40px;
    font-weight: 500;
    line-height: 125%; /* 50px */
  }
}

@media screen and (min-width: 778px) {
  .spots-slider {
    width: calc(100% - 56px - 32px);
    margin-top: 0;
  }
}

.spots-items {
  display: flex;
}
.spots-item {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  height: auto;
}
@media screen and (min-width: 778px) {
  .spots-item {
    margin-top: 0;
  }
}

.spots-article {
  height: 100%;
  padding-bottom: 30px;
  overflow: hidden;
  background: #fff;
  border-radius: 12px;
}
@media screen and (min-width: 778px) {
  .spots-article {
    height: calc(100% - 100px);
  }
}

.spots-img img {
  width: 100%;
  border-radius: 10px 10px 0 0;
}
@media screen and (min-width: 778px) {
  .spots-img img {
    width: calc(100% + 64px);
  }
}

.spots-item-body {
  padding-inline: 24px;
}
@media screen and (min-width: 778px) {
  .spots-item-body {
    padding-inline: 32px;
    padding-bottom: 41px;
  }
}

.spots-item-title {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  padding-top: 16px;
}
@media screen and (min-width: 778px) {
  .spots-item-title {
    padding-top: 24px;
    font-size: 20px;
  }
}

.spots-item-text {
  margin-top: 16px;
  font-size: 12px;
}
@media screen and (min-width: 778px) {
  .spots-item-text {
    flex-grow: 1;
    font-size: 16px;
    margin-top: 24px;
    margin-bottom: 88px;
  }
}

@media screen and (min-width: 778px) {
  .spots-bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding-right: 40px;
  }
}

.spots-text-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media screen and (min-width: 778px) {
  .spots-text-bottom {
    display: block;
    margin-top: 24px;
  }
}

.spots-icon-img {
  position: absolute;
  z-index: 1;
  top: -60%;
  left: -155px;
  margin-left: 36px;
  width: 6.7567567568%;
}
.spots-icon-img img {
  display: none;
}
@media screen and (min-width: 778px) {
  .spots-icon-img img {
    display: block;
    width: 100px;
  }
}

.spots-logo {
  text-align: center;
}
@media screen and (min-width: 778px) {
  .spots-logo {
    display: block;
  }
}
.spots-logo img {
  width: 255px;
}
@media screen and (min-width: 778px) {
  .spots-logo img {
    width: 495px;
  }
}

.spots-logo-text {
  text-align: center;
  color: #FFFFFF;
  font-size: 11.444px;
  margin-top: 16px;
  margin-bottom: 24px;
}
@media screen and (min-width: 778px) {
  .spots-logo-text {
    font-size: 16px;
  }
}

.swiper-button-prev,
.swiper-button-next {
  top: 77%;
}

.swiper-button-next {
  right: 23%;
}

.swiper-button-prev {
  left: -10px;
}

@media screen and (max-width: 778px) {
  .spots-prev {
    display: none;
  }
}
@media screen and (min-width: 778px) {
  .spots-prev {
    background-image: url(../img/spots-prev.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #FFEE56;
    width: 80px;
    height: 80px;
    border-radius: 50%;
  }
  .spots-prev::after {
    display: none;
  }
}

@media screen and (max-width: 778px) {
  .spots-next {
    display: none;
  }
}
@media screen and (min-width: 778px) {
  .spots-next {
    background-image: url(../img/spots-next.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #FFEE56;
    width: 80px;
    height: 80px;
    border-radius: 50%;
  }
  .spots-next::after {
    display: none;
  }
}

.qa {
  padding-block: 40px;
}
@media screen and (min-width: 778px) {
  .qa {
    padding-block: 120px;
  }
}

@media screen and (min-width: 778px) {
  .qa-inner {
    max-width: 1024px;
    padding-inline: 30px;
    margin: 0 auto;
  }
}

.qa-main {
  width: 140px;
}
@media screen and (min-width: 778px) {
  .qa-main {
    width: 244px;
  }
}

.qa-contents {
  margin-top: 24px;
}
@media screen and (min-width: 778px) {
  .qa-contents {
    margin-top: 40px;
  }
}

.qa-items {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
@media screen and (min-width: 778px) {
  .qa-items {
    gap: 24px;
  }
}

.qa-item {
  border: 2px solid #000;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (min-width: 778px) {
  .qa-item {
    width: 100%;
  }
}
.qa-item.is-open .qa_box_icon .qa_box_bar2 {
  transform: translate(-50%, -50%) rotate(90deg);
}

.qa-body-head {
  background-color: #FFFFFF;
  padding: 12px 16px;
}
@media screen and (min-width: 778px) {
  .qa-body-head {
    padding: 24px;
  }
}

.qa-meta-head {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
}
@media screen and (min-width: 778px) {
  .qa-meta-head {
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
  }
}

.qa-icon-head img {
  width: 22px;
}
@media screen and (min-width: 778px) {
  .qa-icon-head img {
    width: 29px;
  }
}

.qa-text-head {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 778px) {
  .qa-text-head {
    margin-right: auto;
    font-size: 20px;
    font-weight: 700;
  }
}

.qa_box_icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 26px;
  height: 26px;
  background-color: #9ED0E0;
  border-radius: 600px;
}

.qa_box_bar1 {
  width: 17px;
  height: 2px;
  background-color: #FFFFFF;
}

.qa_box_bar2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 17px;
  background-color: #FFFFFF;
  transition: transform 0.5s ease 0s;
}

.qa-body-bottom {
  display: none;
  background-color: #F5F5F5;
  padding: 16px;
}
@media screen and (min-width: 778px) {
  .qa-body-bottom {
    padding: 24px;
  }
}
.qa-body-bottom.is-open {
  display: block;
}
.qa-body-bottom.is-open .qa_box_icon .qa_box_bar2 {
  transform: rotate(90deg);
}

.qa-meta-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
@media screen and (min-width: 778px) {
  .qa-meta-bottom {
    justify-content: flex-start;
  }
}

.qa-icon-bottom {
  font-family: "Josefin Sans", sans-serif;
  color: #9ED0E0;
  font-size: 24px;
  line-height: 125%; /* 30px */
}
@media screen and (min-width: 778px) {
  .qa-icon-bottom {
    font-size: 32px;
  }
}

.qa-text-bottom {
  font-size: 14px;
}
@media screen and (min-width: 778px) {
  .qa-text-bottom {
    font-size: 16px;
  }
}

@media screen and (min-width: 778px) {
  .entry-inner {
    max-width: 1024px;
    padding-inline: 56px;
    margin: 0 auto;
  }
}

.entry-card {
  padding-block: 24px;
  border: 8px solid #FFF;
  background: rgba(255, 255, 255, 0.5);
}
@media screen and (min-width: 778px) {
  .entry-card {
    padding-block: 40px;
  }
}

.entry-main {
  width: 80px;
}
@media screen and (min-width: 778px) {
  .entry-main {
    width: 128px;
  }
}

.entry-contents {
  margin-top: 24px;
  padding-inline: 18px;
}
@media screen and (min-width: 778px) {
  .entry-contents {
    margin-top: 40px;
  }
}

.entry-items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.entry-item:not(:last-child) {
  border-bottom: 1px solid #ccc;
  width: 100%;
}
@media screen and (min-width: 778px) {
  .entry-item {
    display: flex;
    align-items: baseline;
  }
}

.entry-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.entry-icon {
  flex-shrink: 0;
}
.entry-icon img {
  width: 8px;
}

.entry-title {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 778px) {
  .entry-title {
    white-space: nowrap;
    font-size: 16px;
  }
}

.entry-text {
  font-size: 12px;
  margin-top: 8px;
  margin-bottom: 16px;
}
@media screen and (min-width: 778px) {
  .entry-text {
    font-size: 16px;
  }
}

@media screen and (min-width: 778px) {
  .entry-text-1 {
    margin-left: 94px;
  }
}

@media screen and (min-width: 778px) {
  .entry-text-2 {
    margin-left: 144px;
  }
}

@media screen and (min-width: 778px) {
  .entry-text-3 {
    margin-left: 176px;
  }
}

@media screen and (min-width: 778px) {
  .entry-text-4 {
    margin-left: 112px;
  }
}

.entry-lists {
  position: relative;
  margin-top: 8px;
}

.entry-list {
  font-size: 12px;
}
@media screen and (min-width: 778px) {
  .entry-list {
    margin-left: 144px;
  }
}
@media screen and (min-width: 778px) {
  .entry-list {
    font-size: 16px;
  }
}
.entry-list::before {
  position: absolute;
  content: "・";
  left: -15px;
}
@media screen and (min-width: 778px) {
  .entry-list::before {
    margin-left: 144px;
  }
}

.view-entry-picture {
  display: block;
  width: 100%;
  margin-top: 32px;
  margin-inline: auto;
}
@media screen and (min-width: 778px) {
  .view-entry-picture {
    margin-top: 120px;
  }
}

.contact {
  padding-block: 40px;
  background-color: #FFFFFF;
}
@media screen and (min-width: 778px) {
  .contact {
    padding-block: 120px;
  }
}

@media screen and (min-width: 778px) {
  .contact-inner {
    max-width: 910px;
    padding-inline: 30px;
    margin: 0 auto;
  }
}

.contact-main {
  width: 120px;
}
@media screen and (min-width: 778px) {
  .contact-main {
    width: 196px;
  }
}

.contact-text-contents {
  margin-block: 24px;
  text-align: center;
}
@media screen and (min-width: 778px) {
  .contact-text-contents {
    margin-top: 32px;
  }
}

.contact-text {
  font-size: 12px;
}
@media screen and (min-width: 778px) {
  .contact-text {
    font-size: 16px;
  }
}

@media screen and (min-width: 778px) {
  .is-none {
    display: none;
  }
}
@media screen and (min-width: 779px) and (max-width: 1023px) {
  .is-none {
    display: none;
  }
}
@media screen and (min-width: 778px) {
  .contact-form {
    margin-top: 40px;
  }
}

.contact-items {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

@media screen and (min-width: 778px) {
  .contact-form-field {
    display: flex;
    flex-shrink: 0;
  }
}

.contact-name-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media screen and (min-width: 778px) {
  .contact-name-head {
    gap: 8px;
    width: 260px;
  }
}

.massage-name-head {
  align-items: flex-start;
}

.label-field {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 778px) {
  .label-field {
    font-size: 16px;
  }
}

.contact-label-tag {
  font-size: 12px;
  font-weight: 700;
  color: #FFFFFF;
  background-color: #CE2073;
  border-radius: 4px;
  padding: 8px;
}
.form-field-item {
  margin-top: 8px;
}
@media screen and (min-width: 778px) {
  .form-field-item {
    width: 100%;
    display: flex;
    gap: 40px;
    align-items: center;
  }
}

.input-form {
  width: 100%;
  font-size: 14px;
  border: none;
  background-color: #F5F5F5;
  padding: 16px;
}
@media screen and (min-width: 778px) {
  .input-form {
    font-size: 16px;
  }
}
.input-form.error {
  background-color: #FFF0F7;
}
.input-form:focus {
  background-color: #E9F6F8;
  border: 1px solid #9ED0E0;
}

.input-radio {
  width: 1px; /*デフォルトのラジオ、チェックアイコンを打ち消す*/
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.input-radio:checked + .form-field-radio-text {
  font-weight: 700;
}
.input-radio:checked + .form-field-radio-text::after {
  opacity: 1;
}
.input-radio:checked + .form-field-radio-text::before {
  border: 1px solid #9ed0e0;
}

.form-field-radio-text {
  position: relative;
  padding-left: 32px;
}
.form-field-radio-text::before {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 24px;
  background: #f5f5f5;
  border: 1px solid transparent;
  border-radius: 50%;
}
.form-field-radio-text::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 6px;
  width: 12px;
  height: 12px;
  background: #9ed0e0;
  opacity: 0;
  border-radius: 50%;
}

.select-form {
  appearance: none;
  width: 100%;
  font-size: 14px;
  background-color: #F5F5F5;
  padding: 16px;
  background-image: url(../img/Icon-contact-arrow.png), linear-gradient(to left, #9ed0e0 52px, #f5f5f5 52px);
  background-repeat: no-repeat, no-repeat;
  background-position: center right 11.5px, center center;
  background-size: 30.9px 30.78px, cover;
  border: 1px solid transparent;
  border-radius: 8px;
}
.select-form.error {
  background-color: #FFF0F7;
  border: 1px solid #CE2073;
}
@media screen and (min-width: 778px) {
  .select-form {
    font-size: 16px;
  }
}

.form-textarea {
  width: 100%;
  font-size: 14px;
  padding: 16px;
  background-color: #F5F5F5;
}
@media screen and (min-width: 778px) {
  .form-textarea {
    font-size: 16px;
  }
}
.form-textarea.error {
  background-color: #FFF0F7;
}
.form-textarea:focus {
  background-color: #E9F6F8;
}

.contact-privacy {
  margin-top: 24px;
  text-align: center;
}

.form-checked {
  cursor: pointer;
}

.input-checkbox {
  width: 1px; /*デフォルトのラジオ、チェックアイコンを打ち消す*/
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.input-checkbox:checked + .form-checkbox-text::after {
  opacity: 1;
}

.form-checkbox-text {
  display: inline-block;
  position: relative;
  padding-left: 36px;
  font-size: 14px;
}
.form-checkbox-text a {
  text-decoration: underline;
}
@media screen and (min-width: 778px) {
  .form-checkbox-text {
    font-size: 16px;
  }
}
.form-checkbox-text::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 24px;
  height: 24px;
  background: #f5f5f5;
  border: 1px solid transparent;
}
.form-checkbox-text::before.error {
  background-color: #FFF0F7;
}
.form-checkbox-text::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 3px;
  width: 18px;
  height: 24px;
  opacity: 0;
  background-image: url(../img/contact-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.contact-button {
  margin-top: 24px;
  text-align: center;
}
@media screen and (min-width: 778px) {
  .contact-button {
    margin-top: 40px;
  }
}

.follow {
  padding-top: 40px;
}
@media screen and (min-width: 778px) {
  .follow {
    padding-block: 120px;
  }
}

.title-head {
  font-size: 20px;
  line-height: 1.25; /* 25px */
  margin-bottom: 24px;
}

.title-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.follow-icon-1 img,
.follow-icon-2 img,
.follow-icon-3 img {
  width: 32px;
}

@media screen and (min-width: 778px) {
  .map-flex {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
  }
}

.map-title-img {
  margin-top: 24px;
}
@media screen and (min-width: 778px) {
  .map-title-img {
    margin-top: 30px;
    text-align: center;
  }
}
.map-title-img img {
  width: 333px;
}
@media screen and (min-width: 778px) {
  .map-title-img img {
    width: 755px;
  }
}

.map-img img {
  width: 335px;
  border-radius: 10px 10px 0 0;
}
@media screen and (min-width: 778px) {
  .map-img img {
    width: 512px;
  }
}

.map-text-body {
  background-color: #FFFFFF;
  padding-block: 24px;
  padding-inline: 24px;
  text-align: center;
}
@media screen and (min-width: 778px) {
  .map-text-body {
    width: 512px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

@media screen and (min-width: 778px) {
  .map-logo {
    margin-left: -200px;
  }
}
.map-logo img {
  width: 153px;
}

.map-items {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
}
@media screen and (min-width: 778px) {
  .map-items {
    gap: 12px;
  }
}

.map-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.map-text-icon img {
  width: 8px;
}

.map-text-left {
  font-size: 12px;
  font-weight: 700;
}
@media screen and (min-width: 778px) {
  .map-text-left {
    font-size: 16px;
  }
}
@media screen and (min-width: 779px) and (max-width: 1023px) {
  .map-text-left {
    font-size: 15px;
  }
}

.map-text-right {
  font-size: 12px;
}
@media screen and (min-width: 778px) {
  .map-text-right {
    font-size: 16px;
  }
}
@media screen and (min-width: 779px) and (max-width: 1023px) {
  .map-text-right {
    font-size: 13px;
  }
}

.map-text-margin {
  margin-left: 20px;
}

.map-text-margin-2 {
  margin-left: 32px;
}

.map-text-margin-3 {
  margin-left: 8px;
}

.map-text-margin-4 {
  margin-left: 8px;
}

.top-img {
  text-align: center;
  padding-block: 24px;
}
@media screen and (min-width: 778px) {
  .top-img {
    display: none;
  }
}
.top-img img {
  width: 75px;
}

.footer {
  position: relative;
  background-color: #67B0C7;
  padding-bottom: 24px;
}
.footer::before {
  content: "";
  position: absolute;
  left: 0;
  top: -35px;
  background: url(../img/img_bg_wave-up.png);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: left -3px center;
  width: 100%;
  height: 80px;
}

.footer-text {
  color: #FFFFFF;
  font-size: 10px;
  display: block;
  text-align: center;
  padding-top: 45px;
  padding-bottom: 32px;
}/*# sourceMappingURL=style.css.map */