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

* {
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

#root, #__next {
  isolation: isolate;
}

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

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

/*  common  */
body {
  background: #FFF;
  font-family: "M PLUS Rounded 1c";
  -webkit-font-smoothing: antialiased;
  vertical-align: bottom;
  color: #707070;
  position: relative;
  display: flex;
  flex-direction: column;
  line-height: 170%;
  overscroll-behavior: none;
  background-image: url(../img/bgPC.svg);
  background-size: 100%;
  background-position: top -100px center;
}
@media screen and (max-width: 980px) {
  body {
    background-image: url(../img/bgSP.svg);
  }
}

a {
  color: #71A0D0;
  transition: 0.3s ease-in-out;
}
a:hover {
  opacity: 0.6;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 980px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
#container {
  width: 100%;
}

.fade {
  opacity: 0;
  transition-duration: 1s;
  transition-property: opacity;
}
.fade.fadein {
  opacity: 1;
}

.outerBtn {
  position: relative;
}
.outerBtn::after {
  content: url(../img/btnArrow.svg);
  position: absolute;
}

.town {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 95vw;
  height: auto;
  max-width: 1897px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.town::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media screen and (max-width: 640px) {
  .town {
    background-size: cover;
    width: 100%;
  }
  .town::after {
    background-size: cover;
  }
}

/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  width: 100%;
  padding: 0 5vw;
  transition: 0.3s ease-in-out;
}
header .headerLeft {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
header .headerLeft h1 {
  transition: 0.3s ease-in-out;
  opacity: 0;
  margin-right: 24px;
}
header .headerLeft h1 img {
  width: 35vw;
  max-width: 182px;
}
header .headerLeft a.insta {
  transition: 0.3s ease-in-out;
  position: absolute;
  left: -18px;
  top: 10px;
  width: 36px;
  height: 36px;
}
header .headerLeft a.insta img {
  width: 100%;
  height: 100%;
}
header .headerRight nav {
  padding-right: 200px;
}
header .headerRight nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .headerRight nav ul li a {
  width: 180px;
  display: flex;
  align-items: center;
  color: #707070;
  gap: 8px;
  text-decoration: none;
}
header .headerRight nav ul li:nth-child(1) a::before {
  width: 48px;
  height: 29px;
  content: url(../img/dot1.svg);
}
header .headerRight nav ul li:nth-child(2) a::before {
  width: 48px;
  height: 29px;
  content: url(../img/dot2.svg);
}
header .headerRight nav ul li:nth-child(3) a::before {
  width: 48px;
  height: 29px;
  content: url(../img/dot3.svg);
}
header .headerRight nav ul li:nth-child(4) a::before {
  width: 48px;
  height: 29px;
  content: url(../img/dot4.svg);
}
header .headerBtn {
  position: absolute;
  right: 0;
  top: 0;
}
header .headerBtn::after {
  right: 20px;
  top: 16px;
}
header.mini {
  height: 70px;
  background-color: rgba(255, 255, 255, 0.9);
}
header.mini .headerLeft h1 {
  opacity: 1;
}
header.mini .headerLeft a.insta {
  left: 220px;
}
@media screen and (max-width: 1384px) {
  header {
    height: 80px;
  }
  header .headerRight nav ul {
    padding: 5px 0;
    max-width: 360px;
    flex-wrap: wrap;
    row-gap: 10px;
  }
  header.mini {
    height: 80px;
  }
}
@media screen and (max-width: 980px) {
  header {
    height: 60px;
    padding: 0 7vw;
  }
  header .headerLeft a.insta {
    top: 13px;
    width: 30px;
    height: 30px;
  }
  header .headerRight.mini {
    height: 60px;
    background: none;
  }
  header .headerRight nav {
    padding-right: 0;
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    color: #fff;
    text-align: center;
    width: 100%;
    transform: translateX(100%);
    transition: all 0.3s;
  }
  header .headerRight nav ul {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    max-width: none;
    flex-direction: column;
    row-gap: 0;
  }
  header .headerRight nav ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    transition: 0.4s all;
  }
  header .headerRight nav ul li:last-child {
    padding-bottom: 0;
  }
  header .headerRight nav ul li:hover {
    background: #ddd;
  }
  header .headerRight nav ul li a {
    width: auto;
    display: block;
    padding: 1em 0;
    text-decoration: none;
    position: relative;
  }
  header .headerRight nav ul li a::before {
    position: absolute;
    left: 14px;
    top: 14px;
  }
  header .headerRight nav ul li:nth-child(1) a {
    background-color: #D4E2F1;
  }
  header .headerRight nav ul li:nth-child(2) a {
    background-color: #D9EFD6;
  }
  header .headerRight nav ul li:nth-child(3) a {
    background-color: #FAEDD1;
  }
  header .headerRight nav ul li:nth-child(4) a {
    background-color: #F9E0DE;
  }
  header .headerRight nav .navBg {
    position: absolute;
    left: 0;
    height: 0;
    width: 100vw;
    height: 100vh;
  }
  header .headerRight nav.active {
    opacity: 100;
    display: block;
    transform: translateX(0%);
  }
  header .headerRight .navIcon {
    display: block;
    position: fixed;
    z-index: 3;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    cursor: pointer;
    text-align: center;
  }
  header .headerRight .navIcon span {
    display: block;
    position: absolute;
    width: 26px;
    height: 4px;
    left: 17px;
    transition: 0.3s ease-in-out;
  }
  header .headerRight .navIcon span:nth-child(1) {
    top: 19px;
    background: #EFC269;
  }
  header .headerRight .navIcon span:nth-child(2) {
    top: 28px;
    background: #E69754;
  }
  header .headerRight .navIcon span:nth-child(3) {
    top: 37px;
    background: #EB9793;
  }
  header .headerRight .navIcon.active span:nth-child(1) {
    top: 28px;
    transform: rotate(-45deg);
  }
  header .headerRight .navIcon.active span:nth-child(2), header .headerRight .navIcon.active span:nth-child(3) {
    top: 28px;
    transform: rotate(45deg);
  }
  header.mini {
    height: 60px;
  }
  header.mini .headerLeft a.insta {
    left: 190px;
  }
}
@media screen and (max-width: 640px) {
  header .headerLeft h1 img {
    width: 145px;
  }
  header .headerLeft a.insta {
    top: 6px;
    left: -12px;
  }
  header.mini .headerLeft a.insta {
    left: 154px;
  }
}

/* footer */
footer {
  margin-top: 300px;
  background-color: #F2F2F2;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 60px;
  padding: 100px 0 120px;
}
footer .amekaze {
  width: 240px;
}
footer::before {
  content: "";
  height: 200px;
  width: 100%;
  position: absolute;
  left: 0;
  top: -199px;
  background-repeat: repeat-x;
  background-position: bottom center;
  background-size: auto 100%;
  background-image: url(../img/footer.svg);
}
@media screen and (max-width: 980px) {
  footer .amekaze {
    width: 180px;
  }
}
@media screen and (max-width: 680px) {
  footer {
    padding-bottom: 200px;
  }
  footer::before {
    background-size: auto 40%;
  }
}

.footerBtn {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 100;
}
.footerBtn::after {
  right: 16px;
  bottom: 8px;
}
@media screen and (max-width: 400px) {
  .footerBtn {
    transform-origin: 100% 100%;
    transform: scale(0.8);
  }
}

/* main */
main {
  width: 100%;
}
main .conts {
  padding: 0 5vw;
  display: flex;
  gap: 5vw;
}
main .conts .contsTitle {
  width: 300px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}
main .conts .contsTitle .contsTitleContainer {
  position: sticky;
  top: 100px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}
main .conts .contsTitle .contsTitleContainer h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 26px;
  font-weight: 100;
  width: -moz-fit-content;
  width: fit-content;
  gap: 10px;
}
main .conts .contsTitle .contsTitleContainer h2::before {
  margin-bottom: 10px;
}
main .conts .contsTitle .contsTitleContainer p {
  text-align: center;
  margin-top: 40px;
}
main .conts .contsTitle .contsTitleContainer p span {
  display: inline-block;
}
main .conts .contsMain {
  width: calc(100% - 5vw - 300px);
}
@media screen and (max-width: 1400px) {
  main .conts {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  main .conts .contsMain {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  main .conts {
    padding: 0 7vw;
  }
}
main .contsBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #FF9E20;
  color: white;
  text-decoration: none;
  margin: 0 auto;
  width: calc(100% - 20vw - 600px);
  min-width: 420px;
  height: 110px;
  box-sizing: border-box;
  gap: 6px;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.2);
  transition-property: transform, box-shadow, opacity;
  transition-duration: 0.3s;
}
main .contsBtn h3 {
  font-size: 24px;
  z-index: 2;
}
main .contsBtn span {
  font-size: 16px;
  font-weight: normal;
}
main .contsBtn:hover {
  opacity: 1;
  transform: translate(-5px, -5px);
  box-shadow: 5px 5px 40px rgba(0, 0, 0, 0.2);
  z-index: 0;
}
main .contsBtn::before {
  position: absolute;
  left: -22px;
  top: -9px;
  width: 100px;
  height: auto;
  aspect-ratio: 113/87;
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../img/btnShape.svg);
}
main .contsBtn::after {
  right: 16px;
  bottom: 8px;
}
@media screen and (max-width: 640px) {
  main .contsBtn {
    width: calc(100% - 14vw);
    min-width: auto;
    height: 90px;
    gap: 0;
  }
  main .contsBtn h3 {
    font-size: 19px;
  }
  main .contsBtn span {
    font-size: 13px;
  }
  main .contsBtn::before {
    top: -32px;
  }
  main .contsBtn::after {
    right: 8px;
    bottom: 1px;
  }
}
main #top {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  gap: 30px;
}
main #top h1 {
  font-size: 0;
  overflow: hidden;
  text-indent: -1000px;
  width: 40%;
  max-width: 730px;
  min-width: 450px;
  height: auto;
  aspect-ratio: 738/237;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/logoYoko2.svg);
}
main #top h2 {
  font-weight: normal;
  text-align: center;
  font-size: 24px;
  margin-bottom: 28px;
  line-height: 170%;
  z-index: 2;
}
main #top .scroll {
  position: absolute;
  right: 3vw;
  top: calc(50% + 80px);
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 16px;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: bold;
  gap: 0px;
}
@keyframes arrowMove {
  0% {
    bottom: calc(100% + 97px);
  }
  100% {
    bottom: calc(100% + 17px);
  }
}
@keyframes arrowHeight {
  0% {
    height: 0px;
  }
  100% {
    height: 80px;
  }
}
@keyframes arrowMoveHide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
main #top .scroll::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(-100% - 71px);
  width: 1px;
  height: 80px;
  background-color: black;
  animation: arrowHeight 1.6s ease-in-out infinite, arrowMoveHide 1.6s ease-out infinite;
}
main #top .scroll span {
  display: block;
  position: absolute;
  left: calc(50% - 6px);
  bottom: calc(100% + 66px);
  width: 13px;
  height: 15px;
  animation: arrowMove 1.6s ease-in-out infinite, arrowMoveHide 1.6s ease-out infinite;
}
main #top .scroll span::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 0;
  width: 9px;
  height: 9px;
  border-bottom: 1px solid black;
  transform: rotate(-35deg) translate(-1px, 4px);
}
main #top .town {
  transform: translate(-50%, 60%);
  aspect-ratio: 1897/613;
  background-image: url(../img/townTop.png);
}
main #top .town::after {
  background-image: url(../img/townTop.svg);
}
@media screen and (max-width: 1400px) {
  main #top h2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 640px) {
  main #top {
    height: 560px;
    gap: 10px;
  }
  main #top h1 {
    background-image: url(../img/logoTate2.svg);
    aspect-ratio: 195/290;
    width: 60%;
    max-width: 240px;
    min-width: auto;
  }
  main #top h2 {
    font-size: 16px;
  }
  main #top .scroll {
    display: none;
  }
  main #top .town {
    transform: translate(-50%, 80%);
    aspect-ratio: 430/300;
  }
}
@media screen and (max-width: 400px) {
  main #top h2 {
    font-size: 16px;
  }
}
main #program {
  margin-top: 18vw;
  padding-top: 10vw;
  padding-bottom: 24vw;
  position: relative;
}
main #program .conts {
  padding-bottom: 72px;
}
main #program .conts .contsTitle h2 {
  color: #71A0D0;
}
main #program .conts .contsTitle h2::before {
  content: url(../img/dot1.svg);
}
main #program .conts .contsTitle h2::after {
  width: 100%;
  height: 2px;
  background-color: #82CA77;
  content: "";
}
main #program .conts .contsMain p {
  margin-bottom: 32px;
}
main #program .conts .contsMain p:last-child {
  margin-bottom: 0;
}
main #program .town {
  transform: translate(-50%, 50%);
  aspect-ratio: 1897/510;
  background-image: url(../img/townProgram.png);
}
main #program .town::after {
  background-image: url(../img/townProgram.svg);
}
@media screen and (max-width: 640px) {
  main #program {
    margin-top: 190px;
    padding-top: 96px;
    padding-bottom: 200px;
  }
  main #program .town {
    aspect-ratio: 430/300;
  }
  main #program .conts {
    gap: 40px;
  }
  main #program p {
    text-align: center;
  }
  main #program p span {
    display: inline-block;
  }
}
main #host {
  margin-top: 13vw;
  padding-top: 10vw;
  padding-bottom: 24vw;
  position: relative;
}
main #host .conts {
  padding-bottom: 72px;
}
main #host .conts .contsTitle h2 {
  color: #82CA77;
}
main #host .conts .contsTitle h2::before {
  content: url(../img/dot2.svg);
}
main #host .conts .contsTitle h2::after {
  width: 100%;
  height: 2px;
  background-color: #E2C527;
  content: "";
}
main #host .conts .contsCard {
  display: flex;
  flex-wrap: wrap;
  gap: 2vw;
}
main #host .conts .contsCard p {
  font-size: 14px;
}
main #host .conts .contsCard .card {
  width: calc((100% - 4vw) / 3);
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
  background-color: white;
  position: relative;
}
main #host .conts .contsCard .card .cardHead {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  justify-content: center;
  gap: 6px;
  height: 140px;
  padding: 0 1vw;
  border-bottom: 3px solid #CCC;
  width: 100%;
}
main #host .conts .contsCard .card .cardHead h3 {
  font-weight: normal;
  display: flex;
  gap: 15px;
  align-items: center;
  font-size: 24px;
  margin-top: 5px;
}
main #host .conts .contsCard .card .cardHead h3 span {
  font-size: 45px;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
main #host .conts .contsCard .card .cardHead h4, main #host .conts .contsCard .card .cardHead p {
  padding-left: 3px;
  line-height: 140%;
}
main #host .conts .contsCard .card .cardBody {
  display: flex;
  flex-direction: column;
  padding: 20px 0 10px;
}
main #host .conts .contsCard .card .cardBody .cardPhoto {
  padding: 0 calc(1vw + 3px);
}
main #host .conts .contsCard .card .cardBody .cardPhoto .cardPhotoImg {
  width: 100%;
  height: 140px;
  border-radius: 8px;
  background-color: #EEE;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
main #host .conts .contsCard .card .cardBody p {
  padding: 10px calc(1vw + 3px);
}
main #host .conts .contsCard .card .badge {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  color: white;
  position: absolute;
  right: -8px;
  top: -8px;
  transform-origin: center center;
  transform: rotate(15deg);
}
main #host .conts .contsCard .card .badge span {
  z-index: 1;
}
main #host .conts .contsCard .card .badge::after, main #host .conts .contsCard .card .badge::before {
  z-index: 0;
  content: "";
  width: 40px;
  height: 40px;
  position: absolute;
  left: 0;
  top: 0;
  transform-origin: center center;
}
main #host .conts .contsCard .card .badge::after {
  transform: rotate(30deg);
}
main #host .conts .contsCard .card .badge::before {
  transform: rotate(60deg);
}
main #host .conts .contsCard .card:nth-child(2) {
  width: calc((100% - 4vw) / 3 * 2 + 2vw);
}
main #host .conts .contsCard .card:nth-child(2) .cardBody {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
main #host .conts .contsCard .card:nth-child(2) .cardBody .cardPhoto, main #host .conts .contsCard .card:nth-child(2) .cardBody p {
  width: calc(50% - 1vw - 3px);
}
main #host .conts .contsCard .card:nth-child(10n+1) .cardHead h3 span, main #host .conts .contsCard .card:nth-child(10n+1) .cardHead h4, main #host .conts .contsCard .card:nth-child(10n+1) .cardBody p {
  color: #71A0D0;
}
main #host .conts .contsCard .card:nth-child(10n+1) .badge, main #host .conts .contsCard .card:nth-child(10n+1) .badge::after, main #host .conts .contsCard .card:nth-child(10n+1) .badge::before {
  background-color: #71A0D0;
}
main #host .conts .contsCard .card:nth-child(10n+2) .cardHead h3 span, main #host .conts .contsCard .card:nth-child(10n+2) .cardHead h4, main #host .conts .contsCard .card:nth-child(10n+2) .cardBody p {
  color: #94CDCD;
}
main #host .conts .contsCard .card:nth-child(10n+2) .badge, main #host .conts .contsCard .card:nth-child(10n+2) .badge::after, main #host .conts .contsCard .card:nth-child(10n+2) .badge::before {
  background-color: #94CDCD;
}
main #host .conts .contsCard .card:nth-child(10n+3) .cardHead h3 span, main #host .conts .contsCard .card:nth-child(10n+3) .cardHead h4, main #host .conts .contsCard .card:nth-child(10n+3) .cardBody p {
  color: #82CA77;
}
main #host .conts .contsCard .card:nth-child(10n+3) .badge, main #host .conts .contsCard .card:nth-child(10n+3) .badge::after, main #host .conts .contsCard .card:nth-child(10n+3) .badge::before {
  background-color: #82CA77;
}
main #host .conts .contsCard .card:nth-child(10n+4) .cardHead h3 span, main #host .conts .contsCard .card:nth-child(10n+4) .cardHead h4, main #host .conts .contsCard .card:nth-child(10n+4) .cardBody p {
  color: #B7C92D;
}
main #host .conts .contsCard .card:nth-child(10n+4) .badge, main #host .conts .contsCard .card:nth-child(10n+4) .badge::after, main #host .conts .contsCard .card:nth-child(10n+4) .badge::before {
  background-color: #B7C92D;
}
main #host .conts .contsCard .card:nth-child(10n+5) .cardHead h3 span, main #host .conts .contsCard .card:nth-child(10n+5) .cardHead h4, main #host .conts .contsCard .card:nth-child(10n+5) .cardBody p {
  color: #E2C527;
}
main #host .conts .contsCard .card:nth-child(10n+5) .badge, main #host .conts .contsCard .card:nth-child(10n+5) .badge::after, main #host .conts .contsCard .card:nth-child(10n+5) .badge::before {
  background-color: #E2C527;
}
main #host .conts .contsCard .card:nth-child(10n+6) .cardHead h3 span, main #host .conts .contsCard .card:nth-child(10n+6) .cardHead h4, main #host .conts .contsCard .card:nth-child(10n+6) .cardBody p {
  color: #EFC269;
}
main #host .conts .contsCard .card:nth-child(10n+6) .badge, main #host .conts .contsCard .card:nth-child(10n+6) .badge::after, main #host .conts .contsCard .card:nth-child(10n+6) .badge::before {
  background-color: #EFC269;
}
main #host .conts .contsCard .card:nth-child(10n+7) .cardHead h3 span, main #host .conts .contsCard .card:nth-child(10n+7) .cardHead h4, main #host .conts .contsCard .card:nth-child(10n+7) .cardBody p {
  color: #E69754;
}
main #host .conts .contsCard .card:nth-child(10n+7) .badge, main #host .conts .contsCard .card:nth-child(10n+7) .badge::after, main #host .conts .contsCard .card:nth-child(10n+7) .badge::before {
  background-color: #E69754;
}
main #host .conts .contsCard .card:nth-child(10n+8) .cardHead h3 span, main #host .conts .contsCard .card:nth-child(10n+8) .cardHead h4, main #host .conts .contsCard .card:nth-child(10n+8) .cardBody p {
  color: #EB9793;
}
main #host .conts .contsCard .card:nth-child(10n+8) .badge, main #host .conts .contsCard .card:nth-child(10n+8) .badge::after, main #host .conts .contsCard .card:nth-child(10n+8) .badge::before {
  background-color: #EB9793;
}
main #host .conts .contsCard .card:nth-child(10n+9) .cardHead h3 span, main #host .conts .contsCard .card:nth-child(10n+9) .cardHead h4, main #host .conts .contsCard .card:nth-child(10n+9) .cardBody p {
  color: #C980AB;
}
main #host .conts .contsCard .card:nth-child(10n+9) .badge, main #host .conts .contsCard .card:nth-child(10n+9) .badge::after, main #host .conts .contsCard .card:nth-child(10n+9) .badge::before {
  background-color: #C980AB;
}
main #host .conts .contsCard .card:nth-child(10n+10) .cardHead h3 span, main #host .conts .contsCard .card:nth-child(10n+10) .cardHead h4, main #host .conts .contsCard .card:nth-child(10n+10) .cardBody p {
  color: #AF8BBE;
}
main #host .conts .contsCard .card:nth-child(10n+10) .badge, main #host .conts .contsCard .card:nth-child(10n+10) .badge::after, main #host .conts .contsCard .card:nth-child(10n+10) .badge::before {
  background-color: #AF8BBE;
}
main #host .conts .contsCard .card:nth-child(10n+1) .cardHead {
  border-color: #D4E2F1;
}
main #host .conts .contsCard .card:nth-child(10n+2) .cardHead {
  border-color: #DFF0F0;
}
main #host .conts .contsCard .card:nth-child(10n+3) .cardHead {
  border-color: #D9EFD6;
}
main #host .conts .contsCard .card:nth-child(10n+4) .cardHead {
  border-color: #E9EFBF;
}
main #host .conts .contsCard .card:nth-child(10n+5) .cardHead {
  border-color: #F9F2CE;
}
main #host .conts .contsCard .card:nth-child(10n+6) .cardHead {
  border-color: #FAEDD1;
}
main #host .conts .contsCard .card:nth-child(10n+7) .cardHead {
  border-color: #F8E0CB;
}
main #host .conts .contsCard .card:nth-child(10n+8) .cardHead {
  border-color: #F9E0DE;
}
main #host .conts .contsCard .card:nth-child(10n+9) .cardHead {
  border-color: #EFD9E6;
}
main #host .conts .contsCard .card:nth-child(10n+10) .cardHead {
  border-color: #E7DCEB;
}
main #host .town {
  transform: translate(-50%, 50%);
  aspect-ratio: 1897/539;
  background-image: url(../img/townHost.png);
}
main #host .town::after {
  background-image: url(../img/townHost.svg);
}
@media screen and (max-width: 980px) {
  main #host .conts .contsTitle p span {
    display: inline-block;
  }
  main #host .conts .contsCard {
    gap: 40px;
  }
  main #host .conts .contsCard .card {
    width: 100% !important;
  }
  main #host .conts .contsCard .card .cardHead {
    height: 120px;
    padding: 0 3vw;
  }
  main #host .conts .contsCard .card .cardHead p {
    font-size: 12px;
    padding-top: 3px;
  }
  main #host .conts .contsCard .card .cardHead h4 {
    font-size: 14.5px;
  }
  main #host .conts .contsCard .card .cardHead h4 span {
    display: inline-block;
  }
  main #host .conts .contsCard .card .cardBody .cardPhoto {
    width: 100% !important;
    padding: 0 calc(3vw + 3px);
  }
  main #host .conts .contsCard .card .cardBody .cardPhoto .cardPhotoImg {
    width: 100%;
    height: auto;
    aspect-ratio: 310/134;
  }
  main #host .conts .contsCard .card .cardBody p {
    width: 100% !important;
    padding: 10px calc(3vw + 3px);
  }
  main #host .conts .contsCard .card:nth-child(2) .cardBody p {
    border-bottom: 2px solid #DFF0F0;
  }
  main #host .conts .contsCard .card:nth-child(2) .cardBody p:last-child {
    border: none;
  }
}
@media screen and (max-width: 640px) {
  main #host {
    margin-top: 102px;
    padding-top: 96px;
    padding-bottom: 204px;
  }
  main #host .conts .contsCard {
    margin-top: 40px;
  }
  main #host .town {
    aspect-ratio: 430/300;
  }
}
main #voice {
  margin-top: 13vw;
  padding-top: 10vw;
  position: relative;
}
main #voice .conts .contsTitle h2 {
  color: #E2C527;
}
main #voice .conts .contsTitle h2::before {
  content: url(../img/dot3.svg);
}
main #voice .conts .contsTitle h2::after {
  width: 100%;
  height: 2px;
  background-color: #EB9793;
  content: "";
}
main #voice .conts .contsMain {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 80px;
}
main #voice .conts .contsMain .voiceEX {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1198/1271;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/voice_ex_pc.webp);
}
main #voice .conts .contsMain .voiceEX h3 {
  text-align: center;
  font-size: 26px;
  color: #EB9793;
  line-height: 140%;
}
main #voice .conts .contsMain .voiceEX .voiceFuki {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  height: auto;
  aspect-ratio: 1/1;
  background-color: white;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  position: absolute;
  animation: fuwafuwa 5s ease-in-out infinite alternate;
}
main #voice .conts .contsMain .voiceEX .voiceFuki:nth-of-type(1) {
  top: 2%;
  left: 45%;
  width: 240px;
}
main #voice .conts .contsMain .voiceEX .voiceFuki:nth-of-type(2) {
  animation-delay: 2.5s;
  top: 15%;
  left: 10%;
  width: 200px;
}
main #voice .conts .contsMain .voiceEX .voiceFuki:nth-of-type(3) {
  animation-delay: 1s;
  top: 15%;
  right: 4%;
  width: 220px;
}
main #voice .conts .contsMain .voiceEX .voiceFuki:nth-of-type(4) {
  animation-delay: 2s;
  bottom: 20%;
  left: 20%;
  width: 240px;
}
main #voice .conts .contsMain .voiceEX .voiceFuki:nth-of-type(5) {
  animation-delay: 3s;
  bottom: 2%;
  left: 42%;
  width: 260px;
}
main #voice .conts .contsMain .voiceEX .voiceFuki:nth-of-type(6) {
  bottom: 24%;
  right: 1%;
  width: 220px;
}
main #voice .conts .contsMain .voiceMessage {
  width: 100%;
  position: relative;
  display: flex;
}
main #voice .conts .contsMain .voiceMessage .voiceMessageImg {
  position: absolute;
  z-index: 0;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  right: 0;
  top: 250px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
main #voice .conts .contsMain .voiceMessage .voiceMessageHead {
  position: absolute;
  top: 0;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  aspect-ratio: 1/1;
  border-radius: 50%;
  padding: 12px 30px 30px;
  color: white;
  z-index: 2;
  justify-content: center;
}
main #voice .conts .contsMain .voiceMessage .voiceMessageHead h4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  font-weight: normal;
}
main #voice .conts .contsMain .voiceMessage .voiceMessageHead h4 span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: white;
  font-size: 18px;
  font-weight: bold;
  transform: translateY(-2px);
}
main #voice .conts .contsMain .voiceMessage .voiceMessageHead h3 {
  margin-top: 4px;
  font-size: 26px;
}
main #voice .conts .contsMain .voiceMessage .voiceMessageHead p {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid white;
  width: 216px;
  font-size: 12px;
  line-height: 22px;
  text-align: center;
}
main #voice .conts .contsMain .voiceMessage .voiceMessageLetter {
  margin-top: 120px;
  width: calc(100% - 260px);
  background-color: white;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
  padding: 64px 64px 80px;
  position: relative;
  z-index: 1;
  animation: fuwafuwa 5s ease-in-out infinite alternate;
}
main #voice .conts .contsMain .voiceMessage .voiceMessageLetter p {
  line-height: 27px;
  padding-bottom: 5px;
  padding-top: 1px;
}
main #voice .conts .contsMain .voiceMessage::before {
  content: "";
  width: 135px;
  height: 117px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 176px;
  bottom: -90px;
  transform: rotate(-24deg);
  z-index: 0;
}
main #voice .conts .contsMain .voiceMessage:nth-of-type(2) .voiceMessageHead {
  background-color: #E69754;
}
main #voice .conts .contsMain .voiceMessage:nth-of-type(2) .voiceMessageHead h4 span {
  color: #E69754;
}
main #voice .conts .contsMain .voiceMessage:nth-of-type(2) .voiceMessageLetter p {
  background-image: url(../img/voice_letter_bg1.webp);
}
main #voice .conts .contsMain .voiceMessage:nth-of-type(2)::before {
  background-image: url(../img/voice_env1.svg);
}
main #voice .conts .contsMain .voiceMessage:nth-of-type(3) {
  justify-content: flex-end;
}
main #voice .conts .contsMain .voiceMessage:nth-of-type(3) .voiceMessageImg {
  right: auto;
  left: 0;
}
main #voice .conts .contsMain .voiceMessage:nth-of-type(3) .voiceMessageHead {
  right: auto;
  left: 40px;
  background-color: #EFC269;
}
main #voice .conts .contsMain .voiceMessage:nth-of-type(3) .voiceMessageHead h4 span {
  color: #EFC269;
}
main #voice .conts .contsMain .voiceMessage:nth-of-type(3) .voiceMessageLetter {
  animation-delay: 4s;
}
main #voice .conts .contsMain .voiceMessage:nth-of-type(3) .voiceMessageLetter p {
  background-image: url(../img/voice_letter_bg2.webp);
}
main #voice .conts .contsMain .voiceMessage:nth-of-type(3)::before {
  background-image: url(../img/voice_env2.svg);
  transform: rotate(24deg);
  right: auto;
  left: 176px;
}
main #voice .conts .contsMain .voiceMessage:nth-of-type(4) .voiceMessageHead {
  background-color: #E2C527;
}
main #voice .conts .contsMain .voiceMessage:nth-of-type(4) .voiceMessageHead h4 span {
  color: #E2C527;
}
main #voice .conts .contsMain .voiceMessage:nth-of-type(4) .voiceMessageLetter {
  animation-delay: 2s;
}
main #voice .conts .contsMain .voiceMessage:nth-of-type(4) .voiceMessageLetter p {
  background-image: url(../img/voice_letter_bg3.webp);
}
main #voice .conts .contsMain .voiceMessage:nth-of-type(4)::before {
  background-image: url(../img/voice_env3.svg);
}
@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -20px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@media screen and (max-width: 980px) {
  main #voice .conts {
    align-items: center;
  }
  main #voice .conts .contsMain .voiceEX h3 {
    font-size: 20px;
  }
  main #voice .conts .contsMain .voiceEX .voiceFuki {
    font-size: 14px;
    padding: 20px;
  }
  main #voice .conts .contsMain .voiceEX .voiceFuki:nth-of-type(1) {
    width: 180px;
  }
  main #voice .conts .contsMain .voiceEX .voiceFuki:nth-of-type(2) {
    width: 180px;
  }
  main #voice .conts .contsMain .voiceEX .voiceFuki:nth-of-type(3) {
    width: 160px;
  }
  main #voice .conts .contsMain .voiceEX .voiceFuki:nth-of-type(4) {
    width: 180px;
  }
  main #voice .conts .contsMain .voiceEX .voiceFuki:nth-of-type(5) {
    width: 200px;
  }
  main #voice .conts .contsMain .voiceEX .voiceFuki:nth-of-type(6) {
    width: 170px;
  }
}
@media screen and (max-width: 767px) {
  main #voice {
    margin-top: 42px;
    padding-top: 156px;
  }
  main #voice .conts {
    align-items: center;
    padding: 0;
  }
  main #voice .conts .contsMain {
    padding-top: 0;
    gap: 120px;
  }
  main #voice .conts .contsMain .voiceEX {
    aspect-ratio: 645/2132;
    background-image: url(../img/voice_ex_sp.webp);
  }
  main #voice .conts .contsMain .voiceEX .voiceFuki:nth-of-type(1) {
    top: 2%;
    left: auto;
    right: 4px;
  }
  main #voice .conts .contsMain .voiceEX .voiceFuki:nth-of-type(2) {
    top: 13%;
    left: 2%;
  }
  main #voice .conts .contsMain .voiceEX .voiceFuki:nth-of-type(3) {
    top: 30%;
    right: 20%;
  }
  main #voice .conts .contsMain .voiceEX .voiceFuki:nth-of-type(4) {
    bottom: 31%;
    left: 4%;
  }
  main #voice .conts .contsMain .voiceEX .voiceFuki:nth-of-type(5) {
    bottom: 0%;
    left: 20%;
  }
  main #voice .conts .contsMain .voiceEX .voiceFuki:nth-of-type(6) {
    bottom: 15%;
    right: 1%;
  }
  main #voice .conts .contsMain .voiceMessage {
    padding: 0 5vw;
    flex-direction: column;
  }
  main #voice .conts .contsMain .voiceMessage .voiceMessageImg {
    top: 180px;
    left: auto !important;
    right: 0 !important;
  }
  main #voice .conts .contsMain .voiceMessage .voiceMessageHead {
    position: relative;
    left: auto !important;
    right: auto !important;
    top: auto;
    width: -moz-fit-content;
    width: fit-content;
  }
  main #voice .conts .contsMain .voiceMessage .voiceMessageLetter {
    margin-top: 200px;
    width: 100%;
    padding: 24px 24px 40px;
  }
  main #voice .conts .contsMain .voiceMessage::before {
    right: 20px !important;
    left: auto !important;
    transform: rotate(-24deg) !important;
  }
}
main #faq {
  margin-top: 13vw;
  padding-top: 10vw;
}
main #faq .conts {
  margin-bottom: 60px;
}
main #faq .conts .contsTitle h2 {
  color: #EB9793;
}
main #faq .conts .contsTitle h2::before {
  content: url(../img/dot4.svg);
}
main #faq .conts .contsTitle h2::after {
  width: 100%;
  height: 2px;
  background-color: #AF8BBE;
  content: "";
}
main #faq .conts .contsMain li {
  margin-bottom: 60px;
}
main #faq .conts .contsMain li div {
  padding-left: 80px;
  padding-top: 6px;
  padding-bottom: 32px;
  position: relative;
}
main #faq .conts .contsMain li div::before {
  position: absolute;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  left: 0px;
  top: -4px;
  background-color: #707070;
  font-size: 30px;
}
main #faq .conts .contsMain li div:nth-child(1)::before {
  content: "Q";
  background-color: #EB9793;
}
main #faq .conts .contsMain li div:nth-child(2)::before {
  content: "A";
  background-color: #AF8BBE;
}
main #faq .conts .contsMain li div .faqFlow {
  width: 100%;
  max-width: 800px;
  padding-top: 40px;
}
main #faq .conts .contsMain li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 980px) {
  main #faq .conts .contsMain li div .faqFlow {
    width: calc(100% - 80px);
  }
}
@media screen and (max-width: 640px) {
  main #faq {
    margin-top: 42px;
    padding-top: 96px;
  }
  main #faq .conts .contsMain {
    padding-top: 40px;
  }
}/*# sourceMappingURL=style.css.map */