@charset "UTF-8";
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  margin: 0 auto;
  color: #000;
  background-color: #fff;
  box-sizing: border-box;
  font-family: "Noto Sans JP", "Jost", "Poppins", serif, sans-serif;
  font-weight: normal;
  line-height: 1;
}

a {
  text-decoration: none;
}

img {
  vertical-align: middle;
}

ul {
  list-style: none;
}

.l-header {
  background-color: #FF77B4;
  padding: 17px 80px 18px;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
}
.l-header__list {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  max-width: 1300px;
}
.l-header__list__item {
  font-size: 20px;
  font-family: "Jost";
  font-weight: bold;
  text-align: center;
  position: relative;
  transition: all 0.3s;
}
.l-header__list__item a {
  display: block;
  color: #fff;
}
.l-header__list__item a span {
  display: block;
  font-family: "Noto Sans JP";
  font-weight: normal;
  font-size: 12px;
  line-height: 20px;
  margin-top: 5px;
}
.l-header__list__item a::before {
  background: #fff;
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  top: 50%;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
@media (hover: hover) {
  .l-header__list__item a:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
  }
}

#g-nav {
  position: fixed;
  z-index: 999;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7215686275);
  transition: all 0.6s;
}

#g-nav.panelactive {
  right: 0;
}

#g-nav.panelactive #g-nav-list {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#g-nav ul {
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#g-nav li {
  list-style: none;
  text-align: center;
}

#g-nav li a {
  color: #fff;
  text-decoration: none;
  padding: 20px;
  display: block;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 15px;
}
#g-nav li a span {
  display: block;
  margin-top: 10px;
  font-size: 14px;
}

.openbtn {
  display: none;
  position: fixed;
  z-index: 9999;
  /*ボタンを最前面に*/
  top: 0;
  right: 0;
  cursor: pointer;
  width: 60px;
  height: 60px;
  background-color: #FF80B9;
}

.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  background-color: #fff;
  width: 40px;
}

.openbtn span:nth-of-type(1) {
  top: 20px;
}

.openbtn span:nth-of-type(2) {
  top: 30px;
}

.openbtn span:nth-of-type(3) {
  top: 40px;
}

.openbtn.active span:nth-of-type(1) {
  top: 25px;
  left: 10px;
  transform: translateY(6px) rotate(-45deg);
  width: 40px;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 37px;
  left: 11px;
  transform: translateY(-6px) rotate(45deg);
  width: 40px;
}

@media screen and (max-width: 768px) {
  .l-header {
    padding: 10px 30px 10px;
  }
  .l-header__list {
    max-width: 700px;
  }
  .l-header__list__item {
    font-size: 16px;
  }
  .l-header__list__item a span {
    font-size: 10px;
    line-height: 18px;
    margin-top: 4px;
  }
  .l-header__list__item a::before {
    height: 1px;
  }
}
@media screen and (max-width: 500px) {
  .l-header {
    display: none;
  }
  .openbtn {
    display: block;
  }
}
.l-footer {
  background-color: #FF80B9;
  padding: 40px 0;
  text-align: center;
  color: #fff;
}
.l-footer__sns {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
}
.l-footer__sns a {
  width: 40px;
  transition: all 0.3s;
}
.l-footer__sns a img {
  width: 100%;
}
@media (hover: hover) {
  .l-footer__sns a:hover {
    opacity: 0.7;
  }
}
.l-footer__contact {
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 10px;
}
.l-footer__link {
  margin-bottom: 11px;
}
.l-footer__link a {
  font-size: 14px;
  line-height: 20px;
  color: #fff;
}
.l-footer small {
  font-size: 10px;
}

.u-spOnly {
  display: none;
}

.p-apply {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1100;
}
.p-apply__btn {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 1.5277777778vw;
  line-height: 2.0833333333vw;
  background-image: linear-gradient(#ff7eb8, #ee3e8d);
  width: 11.1111111111vw;
  height: 11.1111111111vw;
  border-radius: 50%;
  text-align: center;
  padding-top: 2.7777777778vw;
  border: 0.2083333333vw solid #fff;
  position: relative;
  transition: all 0.3s;
}
.p-apply__btn::before {
  position: absolute;
  display: inline-block;
  content: "";
  background-image: url(../img/arrow.png);
  width: 1.875vw;
  height: 1.875vw;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 1.875vw;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s;
}
@media (hover: hover) {
  .p-apply__btn:hover {
    transform: scale(1.05);
  }
}

.c-coming {
  max-width: 1117px;
  margin: 0 auto;
}
.c-coming img {
  width: 100%;
}

@keyframes floating {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(-20px) rotate(2deg);
  }
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.scroll {
  transition: 0.8s ease-in-out;
  opacity: 0;
}

.scroll.on {
  opacity: 1;
}

.c-categoryBtn {
  width: 240px;
  font-size: 24px;
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #fff;
}

a.btn-border-shadow {
  padding: 25px 0 40px;
  background-color: #03C28C;
}

a.btn-border-shadow:before {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 100%;
  height: 100%;
  content: "";
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 3px solid #000;
}

@media (hover: hover) {
  a.btn-border-shadow:hover {
    padding: 30px 0;
  }
  a.btn-border-shadow:hover:before {
    top: 0;
    left: 0;
  }
}
.c-blackBtn {
  white-space: nowrap;
  text-align: center;
  font-size: 16px;
  display: inline-block;
  color: #fff;
  background-color: #000;
  padding: 7px 14px;
  border-radius: 30px;
  transition: all 0.3s;
}
@media (hover: hover) {
  .c-blackBtn:hover {
    color: #000;
    background-color: #fff;
    box-shadow: inset 0px 0px 0px 2px #000;
  }
}

.c-pinkBtn {
  white-space: nowrap;
  text-align: center;
  font-size: 16px;
  display: inline-block;
  color: #fff;
  background-color: #FF80B9;
  padding: 7px 14px;
  border-radius: 30px;
  transition: all 0.3s;
}
@media (hover: hover) {
  .c-pinkBtn:hover {
    color: #FF80B9;
    background-color: #fff;
    box-shadow: inset 0px 0px 0px 2px #FF80B9;
  }
}

.p-section {
  padding: 90px 50px;
}
.p-section--green {
  background-color: #01AB7B;
}
.p-section--pb230 {
  padding-bottom: 230px;
}
.p-section__inner {
  max-width: 1240px;
  margin: 0 auto;
}

.c-title {
  margin-bottom: 50px;
  text-align: center;
}
.c-title--about {
  text-align: left;
}
.c-title__en {
  font-family: "Jost";
  font-weight: 800;
  color: #FF80B9;
  font-size: 96px;
  -webkit-text-stroke: 6px #000;
  paint-order: stroke;
  margin-bottom: 10px;
}
.c-title__en span {
  font-size: 64px;
}
.c-title__en--about {
  color: #fff;
  -webkit-text-stroke: 6px #01AB7B;
}
.c-title__jp {
  font-weight: bold;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: 0.6px;
  color: #FF80B9;
  -webkit-text-stroke: 2px #000;
  paint-order: stroke;
}
.c-title__jp--about {
  color: #fff;
  -webkit-text-stroke: 2px #01AB7B;
}
.c-title--recommend {
  position: relative;
}
.c-title--recommend::after {
  position: absolute;
  display: inline-block;
  content: "";
  background-image: url(../img/deco_01.png);
  width: 5.4861111111vw;
  height: 8.2638888889vw;
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  right: 0;
  animation: fluffy2 3s ease-in-out infinite alternate;
  z-index: 10;
}

@media screen and (max-width: 768px) {
  .pcOnly {
    display: none;
  }
  .u-spOnly {
    display: block;
  }
  .p-apply {
    bottom: 10px;
    right: 10px;
  }
  .p-apply__btn {
    font-size: 16px;
    line-height: 24px;
    width: 110px;
    height: 110px;
    padding-top: 25px;
    border: 3px solid #fff;
  }
  .p-apply__btn::before {
    width: 20px;
    height: 20px;
    bottom: 15px;
  }
  .c-categoryBtn {
    width: 240px;
    font-size: 24px;
    font-weight: bold;
    position: relative;
    display: inline-block;
    padding: 1rem 4rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0.1em;
    color: #fff;
  }
  a.btn-border-shadow {
    padding: 25px 0 40px;
    background-color: #03C28C;
  }
  a.btn-border-shadow:before {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100%;
    height: 100%;
    content: "";
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: 3px solid #000;
  }
}
@media screen and (max-width: 768px) and (hover: hover) {
  a.btn-border-shadow:hover {
    padding: 30px 0;
  }
  a.btn-border-shadow:hover:before {
    top: 0;
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .c-blackBtn {
    white-space: nowrap;
    text-align: center;
    font-size: 16px;
    display: inline-block;
    color: #fff;
    background-color: #000;
    padding: 7px 14px;
    border-radius: 30px;
    transition: all 0.3s;
  }
}
@media screen and (max-width: 768px) and (hover: hover) {
  .c-blackBtn:hover {
    color: #000;
    background-color: #fff;
    box-shadow: inset 0px 0px 0px 2px #000;
  }
}
@media screen and (max-width: 768px) {
  .c-pinkBtn {
    white-space: nowrap;
    text-align: center;
    font-size: 16px;
    display: inline-block;
    color: #fff;
    background-color: #FF80B9;
    padding: 7px 14px;
    border-radius: 30px;
    transition: all 0.3s;
  }
}
@media screen and (max-width: 768px) and (hover: hover) {
  .c-pinkBtn:hover {
    color: #FF80B9;
    background-color: #fff;
    box-shadow: inset 0px 0px 0px 2px #FF80B9;
  }
}
@media screen and (max-width: 768px) {
  .p-section {
    padding: 80px 50px;
  }
  .p-section--pb230 {
    padding-bottom: 80px;
  }
  .p-section__inner {
    max-width: 668px;
  }
  .c-title {
    margin-bottom: 40px;
  }
  .c-title--about {
    text-align: center;
  }
  .c-title__en {
    font-size: 48px;
    -webkit-text-stroke: 5px #000;
    margin-bottom: 15px;
  }
  .c-title__en span {
    font-size: 32px;
  }
  .c-title__en--about {
    color: #fff;
    -webkit-text-stroke: 6px #01AB7B;
  }
  .c-title__jp {
    font-size: 16px;
    letter-spacing: 0.5px;
    -webkit-text-stroke: 2px #000;
  }
  .c-title__jp--about {
    -webkit-text-stroke: 2px #01AB7B;
  }
  .c-title--recommend::after {
    position: absolute;
    display: inline-block;
    content: "";
    background-image: url(../img/deco_01.png);
    width: 10.2864583333vw;
    height: 15.4947916667vw;
    background-repeat: no-repeat;
    background-size: cover;
    top: 0;
    right: 0;
    animation: fluffy2 3s ease-in-out infinite alternate;
    z-index: 10;
  }
}
@media screen and (max-width: 440px) {
  @keyframes floating {
    0% {
      transform: translateY(0) rotate(0deg);
    }
    100% {
      transform: translateY(-10px) rotate(2deg);
    }
  }
  .p-apply {
    bottom: 2.2727272727vw;
    right: 2.2727272727vw;
  }
  .p-apply__btn {
    font-size: 3.1818181818vw;
    line-height: 4.5454545455vw;
    width: 22.7272727273vw;
    height: 22.7272727273vw;
    padding-top: 5.6818181818vw;
    border: 0.4545454545vw solid #fff;
  }
  .p-apply__btn::before {
    width: 3.4090909091vw;
    height: 3.4090909091vw;
    bottom: 3.1818181818vw;
  }
  .c-blackBtn {
    font-size: 3.6363636364vw;
    padding: 1.5909090909vw 3.1818181818vw;
    border-radius: 6.8181818182vw;
  }
}
@media screen and (max-width: 440px) and (hover: hover) {
  .c-blackBtn:hover {
    box-shadow: inset 0px 0px 0px 0.4545454545vw #000;
  }
}
@media screen and (max-width: 440px) {
  .c-pinkBtn {
    font-size: 3.6363636364vw;
    padding: 1.5909090909vw 3.1818181818vw;
    border-radius: 6.8181818182vw;
  }
}
@media screen and (max-width: 440px) and (hover: hover) {
  .c-pinkBtn:hover {
    box-shadow: inset 0px 0px 0px 0.4545454545vw #FF80B9;
  }
}
@media screen and (max-width: 440px) {
  .p-section {
    padding: 13.6363636364vw 6.8181818182vw;
  }
  .p-section--pb230 {
    padding-bottom: 18.1818181818vw;
  }
  .p-section__inner {
    max-width: 100%;
  }
  .c-title {
    margin-bottom: 7.9545454545vw;
  }
  .c-title__en {
    font-size: 10.9090909091vw;
    -webkit-text-stroke: 0.9090909091vw #000;
    margin-bottom: 0.9090909091vw;
  }
  .c-title__en span {
    font-size: 7.2727272727vw;
  }
  .c-title__en--about {
    -webkit-text-stroke: 0.9090909091vw #01AB7B;
  }
  .c-title__jp {
    font-size: 3.6363636364vw;
    letter-spacing: 0.1136363636vw;
    -webkit-text-stroke: 0.4545454545vw #000;
  }
  .c-title__jp--about {
    -webkit-text-stroke: 0.4545454545vw #01AB7B;
  }
}
.p-kv {
  background-color: #01AB7B;
  position: relative;
  width: 100%;
  height: 55.5555555556vw;
  margin: 0 auto;
  overflow: hidden;
}
.p-kv__sp {
  display: none;
}
.p-kv::before {
  position: absolute;
  display: inline-block;
  content: "";
  background-image: url(../img/kv_flower_03.png);
  width: 12.4791666667vw;
  height: 12.0138888889vw;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 6.3888888889vw;
  right: 11.8055555556vw;
  animation: rotation linear infinite 12s;
}
.p-kv__bg {
  width: 87.0833333333vw;
  height: auto;
  display: block;
  margin: 0 auto;
  margin-top: 2.0138888889vw;
}
.p-kv .petals {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.p-kv .petal {
  position: absolute;
  width: 15%;
  animation-name: floating;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
.p-kv .petal-1 {
  bottom: 20%;
  right: 18%;
  width: 32%;
  animation-duration: 2s;
  animation-delay: -1s;
}
.p-kv .petal-2 {
  bottom: 53%;
  right: 24%;
  width: 17%;
  animation-duration: 3.6s;
  animation-delay: -2.5s;
}
.p-kv .petal-3 {
  top: 31%;
  right: 30%;
  width: 15%;
  animation-duration: 3s;
  animation-delay: 0s;
}
.p-kv .petal-4 {
  top: 13%;
  right: 47%;
  width: 2%;
  animation-duration: 2.9s;
  animation-delay: -1.5s;
}
.p-kv .petal-5 {
  top: 23%;
  right: 26%;
  width: 1.5%;
  animation-duration: 4.5s;
  animation-delay: -0.5s;
}
.p-kv .petal-6 {
  top: 5%;
  left: 3%;
  width: 14%;
  animation-duration: 3.3s;
  animation-delay: -0.5s;
}
.p-kv .petal-7 {
  top: 8%;
  right: 6%;
  width: 13%;
  animation-duration: 2.4s;
  animation-delay: 0s;
}
.p-kv .petal-8 {
  bottom: 20%;
  left: 3%;
  width: 8%;
  animation-duration: 1.7s;
  animation-delay: 0s;
}

@media screen and (max-width: 440px) {
  .p-kv {
    height: 140.9090909091vw;
  }
  .p-kv__pc {
    display: none;
  }
  .p-kv__sp {
    display: block;
  }
  .p-kv__sp__bg {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    margin-top: 4.5454545455vw;
  }
  .p-kv::before {
    width: 25vw;
    height: 25vw;
    bottom: 34.0909090909vw;
    right: 4.5454545455vw;
    animation: rotation linear infinite 12s;
  }
  .p-kv .petals {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  .p-kv .petal {
    position: absolute;
    width: 15%;
    animation-name: floating;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
  }
  .p-kv .petal-1 {
    top: 30%;
    right: 20%;
    width: 6.3636363636vw;
    animation-duration: 3.3s;
    animation-delay: -0.5s;
  }
  .p-kv .petal-2 {
    top: 38%;
    right: 15%;
    width: 4.5454545455vw;
    animation-duration: 2s;
    animation-delay: 0s;
  }
  .p-kv .petal-3 {
    top: 51%;
    right: 22%;
    width: 4.5454545455vw;
    animation-duration: 3s;
    animation-delay: -0.8s;
  }
  .p-kv .petal-4 {
    top: 82%;
    left: 14%;
    width: 4.0909090909vw;
    animation-duration: 3.4s;
    animation-delay: -0.9s;
  }
  .p-kv .petal-5 {
    top: 92%;
    right: 15%;
    width: 4.5454545455vw;
    animation-duration: 2.8s;
    animation-delay: 0s;
  }
  .p-kv .petal-6 {
    top: 1%;
    left: 3%;
    width: 23%;
    animation-duration: 2s;
    animation-delay: -0.5s;
  }
}
.p-about {
  background-image: url(../img/bg_about.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 90px 50px;
  position: relative;
}
.p-about::before {
  position: absolute;
  display: inline-block;
  content: "";
  background-image: url(../img/deco_01.png);
  width: 60px;
  height: 90px;
  background-repeat: no-repeat;
  background-size: cover;
  top: -2.8472222222vw;
  right: 2.7777777778vw;
  animation: floating 3s ease-in-out infinite alternate;
  z-index: 10;
}
.p-about::after {
  position: absolute;
  display: inline-block;
  content: "";
  background-image: url(../img/deco_02.png);
  width: 55px;
  height: 83px;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0.3472222222vw;
  left: 0.6944444444vw;
  z-index: 10;
  animation: floating 3s ease-in-out infinite alternate;
}
.p-about__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}
.p-about__left {
  max-width: 548px;
}
.p-about__text {
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  line-height: 30px;
}
.p-about__right {
  width: 605px;
}
.p-about__right__top {
  max-width: 450px;
  min-width: 350px;
  margin-bottom: 30px;
  justify-self: end;
  position: relative;
}
.p-about__right__top::before {
  position: absolute;
  display: inline-block;
  content: "";
  background-image: url(../img/deco_hana_01.png);
  width: 95px;
  height: 95px;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: -40px;
  left: -40px;
  animation: floating 2.2s ease-in-out infinite alternate;
  z-index: 10;
}
.p-about__right__top img {
  border-radius: 15px;
  width: 100%;
  box-shadow: 0 10px 6px rgba(0, 0, 0, 0.3019607843);
}
.p-about__right__bottom {
  max-width: 400px;
  min-width: 350px;
  position: relative;
}
.p-about__right__bottom::before {
  position: absolute;
  display: inline-block;
  content: "";
  background-image: url(../img/deco_hana_02.png);
  width: 95px;
  height: 95px;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: -40px;
  right: -40px;
  animation: floating 1.8s ease-in-out infinite alternate;
  z-index: 10;
}
.p-about__right__bottom img {
  border-radius: 15px;
  width: 100%;
  box-shadow: 0 10px 6px rgba(0, 0, 0, 0.3019607843);
}

@media screen and (max-width: 768px) {
  .p-about {
    background-image: url(../img/bg_about_sp.jpg);
    padding: 80px 50px;
  }
  .p-about::before {
    width: 69px;
    height: 104px;
    top: 2.6041666667vw;
    right: 7.8125vw;
  }
  .p-about::after {
    display: none;
    content: none;
    background-image: none;
  }
  .p-about__inner {
    max-width: 668px;
    display: block;
  }
  .p-about__left {
    max-width: 100%;
    margin: 0 auto;
    margin-bottom: 40px;
  }
  .p-about__right {
    width: 100%;
    max-width: 617px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 0 auto;
  }
  .p-about__right__top {
    max-width: 334px;
    min-width: 0;
    margin-bottom: 0;
  }
  .p-about__right__top::before {
    width: 70px;
    height: 70px;
    bottom: -40px;
    left: -40px;
  }
  .p-about__right__bottom {
    max-width: 253px;
    min-width: 0;
  }
  .p-about__right__bottom::before {
    width: 70px;
    height: 70px;
    bottom: -40px;
    right: -40px;
  }
}
@media screen and (max-width: 440px) {
  .p-about {
    padding: 13.6363636364vw 6.8181818182vw;
  }
  .p-about::before {
    width: 9.0909090909vw;
    height: 13.6363636364vw;
    top: 4.5454545455vw;
    right: 6.8181818182vw;
  }
  .p-about__inner {
    max-width: 100%;
  }
  .p-about__left {
    margin-bottom: 9.0909090909vw;
  }
  .p-about__text {
    font-size: 3.1818181818vw;
    line-height: 6.3636363636vw;
  }
  .p-about__right {
    max-width: 100%;
    gap: 4.0909090909vw;
  }
  .p-about__right__top {
    max-width: 100%;
    width: 46.7727272727vw;
    min-width: 0;
    margin-bottom: 0;
  }
  .p-about__right__top::before {
    width: 13.6363636364vw;
    height: 13.6363636364vw;
    bottom: -9.0909090909vw;
    left: -4.5454545455vw;
  }
  .p-about__right__bottom {
    width: 35.3181818182vw;
    max-width: 100%;
    min-width: 0;
  }
  .p-about__right__bottom::before {
    width: 13.6363636364vw;
    height: 13.6363636364vw;
    bottom: -9.0909090909vw;
    right: -4.5454545455vw;
    animation: floating 1.8s ease-in-out infinite alternate;
  }
}
.p-books {
  width: 100%;
  overflow: hidden;
  padding: 90px 0 83px;
  background-color: #E5F7F1;
  position: relative;
}
.p-books::before {
  position: absolute;
  display: inline-block;
  content: "";
  background-image: url(../img/bg_books.png);
  width: 74.9305555556vw;
  height: 39.7916666667vw;
  background-repeat: no-repeat;
  background-size: cover;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-books__container {
  display: flex;
  flex-direction: column;
  gap: 103px;
}

.infinite-slider {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
}
.infinite-slider .swiper-wrapper {
  transition-timing-function: linear;
}
.infinite-slider .swiper-slide {
  width: auto;
}
.infinite-slider .swiper-slide img {
  display: block;
  height: 254px;
  width: auto;
  object-fit: contain;
  box-shadow: -4px 4px 4px rgba(0, 0, 0, 0.4039215686);
  transition: all 0.3s;
}
.infinite-slider .swiper-slide img:hover {
  transform: scale(1.1);
}

.p-recommend {
  max-width: 910px;
  margin: 0 auto;
  padding: 10px 50px 0;
  position: relative;
}
.p-recommend::before {
  position: absolute;
  display: inline-block;
  content: "";
  background-image: url(../img/deco_hana_05.png);
  width: 140px;
  height: 121px;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: -13.8888888889vw;
  right: -2.7777777778vw;
  animation: floating 3s ease-in-out infinite alternate;
  z-index: 10;
}
.p-recommend__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 50px;
  column-gap: 40px;
}

#recommend {
  position: relative;
}
#recommend::before {
  position: absolute;
  display: inline-block;
  content: "";
  background-image: url(../img/deco_hana_01.png);
  width: 112px;
  height: 110px;
  background-repeat: no-repeat;
  background-size: cover;
  top: -2.6388888889vw;
  left: 2.7777777778vw;
  animation: floating 2s ease-in-out infinite alternate;
  z-index: 10;
}
#recommend::after {
  position: absolute;
  display: inline-block;
  content: "";
  background-image: url(../img/deco_02.png);
  width: 79px;
  height: 118px;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: -2.6388888889vw;
  left: 2.7777777778vw;
  animation: floating 2s ease-in-out infinite alternate;
  z-index: 10;
}

@media screen and (max-width: 999px) {
  .p-recommend__inner {
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .p-recommend {
    max-width: 100%;
    padding: 10px 0;
  }
  .p-recommend::before {
    width: 15.625vw;
    height: 15.625vw;
    bottom: -19.53125vw;
    right: -5.2083333333vw;
    animation: floating 3s ease-in-out infinite alternate;
    z-index: 10;
  }
  #recommend::before {
    width: 11.71875vw;
    height: 11.71875vw;
    top: -4.9479166667vw;
    left: 5.2083333333vw;
  }
  #recommend::after {
    width: 7.8125vw;
    height: 11.71875vw;
    bottom: -4.9479166667vw;
    left: 5.2083333333vw;
  }
}
.p-join {
  background-color: #fff;
  padding: 30px 55px 49px;
  max-width: 900px;
  border-radius: 10px;
  border: 3px solid #000;
  box-shadow: 6px 6px 5px rgba(0, 0, 0, 0.4039215686);
  margin: 0 auto;
  margin-bottom: 119px;
}
.p-join__title {
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  line-height: 29px;
  margin-bottom: 25px;
}
.p-join__text {
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  list-style: inside;
}

.p-box {
  display: flex;
  justify-content: start;
}
.p-box--end {
  justify-content: end;
}

.p-lineUp {
  background-color: #fff;
  padding: 30px 64px 35px 50px;
  max-width: 860px;
  border-radius: 10px;
  border: 4px solid #000;
  box-shadow: 6px 6px 5px rgba(0, 0, 0, 0.4039215686);
  margin-bottom: 106px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}
.p-lineUp::before {
  position: absolute;
  display: block;
  content: "";
  background-image: url(../img/lineup_01.png);
  width: 219.6px;
  height: 175px;
  background-repeat: no-repeat;
  background-size: cover;
  top: -78px;
  left: -50px;
}
.p-lineUp--second::before {
  background-image: url(../img/lineup_02.png);
}
.p-lineUp--third::before {
  background-image: url(../img/lineup_03.png);
}
.p-lineUp--forth::before {
  background-image: url(../img/lineup_04.png);
}
.p-lineUp__left {
  min-width: 180px;
}
.p-lineUp__left img {
  width: 100%;
}
.p-lineUp__right {
  max-width: 536px;
}
.p-lineUp__right__time {
  font-family: "Poppins";
  font-weight: bold;
  font-size: 32px;
  margin-bottom: 10px;
}
.p-lineUp__right__tag {
  background-color: #FF80B9;
  margin-bottom: 10px;
  color: #fff;
  border-radius: 5px;
  max-width: 140px;
  text-align: center;
  padding: 7px 22px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}
.p-lineUp__right__position {
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 8px;
}
.p-lineUp__right__name {
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 10px;
}
.p-lineUp__right__title {
  font-weight: bold;
  font-size: 20px;
  line-height: 26px;
  padding-bottom: 10px;
  border-bottom: 1px solid #000;
}
.p-lineUp__right__text {
  padding-top: 10px;
  font-size: 15px;
  line-height: 24px;
}

.p-present {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  margin-bottom: 60px;
}
.p-present--reverse {
  flex-direction: row-reverse;
}
.p-present:last-of-type {
  margin-bottom: 0;
}
.p-present__font {
  max-width: 594px;
}
.p-present__title {
  color: #fff;
  font-size: 40px;
  line-height: 50px;
  font-weight: 600;
  padding-bottom: 15px;
  border-bottom: 1px solid #fff;
}
.p-present__text {
  padding-top: 15px;
  color: #fff;
  font-size: 16px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 15px;
}
.p-present__img {
  max-width: 600px;
  min-width: 400px;
  height: auto;
}
.p-present__img img {
  width: 100%;
}

.p-access {
  max-width: 1125px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
}
.p-access__map {
  width: 531px;
  height: 300px;
}
.p-access__map iframe {
  width: 100%;
  height: 100%;
}
.p-access__address {
  max-width: 553px;
}
.p-access__address__text {
  font-size: 24px;
  line-height: 50px;
  margin-bottom: 20px;
}
.p-access__address__btn {
  max-width: 369px;
  display: flex;
  gap: 5px;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .p-access {
    max-width: 531px;
    flex-direction: column-reverse;
    gap: 30px;
  }
  .p-access__map {
    width: 100%;
    height: 300px;
  }
  .p-access__address {
    max-width: 461px;
  }
  .p-access__address__text {
    font-size: 20px;
    line-height: 46px;
    margin-bottom: 20px;
  }
  .p-access__address__btn {
    max-width: 369px;
    margin: 0 auto;
    display: flex;
    gap: 5px;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (max-width: 440px) {
  .p-access {
    max-width: 100%;
    gap: 6.8181818182vw;
  }
  .p-access__map {
    height: 48.8636363636vw;
  }
  .p-access__address {
    max-width: 100%;
  }
  .p-access__address__text {
    font-size: 3.6363636364vw;
    line-height: 8.1818181818vw;
    margin-bottom: 4.5454545455vw;
  }
  .p-access__address__btn {
    max-width: 100%;
    gap: 4.5454545455vw;
  }
}
.p-info {
  max-width: 900px;
  margin: 0 auto;
  color: #fff;
}
.p-info__item {
  padding-top: 19px;
  padding-bottom: 19px;
  border-top: 1px solid #fff;
  display: flex;
  align-items: center;
  gap: 90px;
  padding-left: 110px;
  padding-right: 100px;
}
.p-info__item:first-of-type {
  padding-top: 35px;
  padding-bottom: 35px;
}
.p-info__item:last-of-type {
  border-bottom: 1px solid #fff;
}
.p-info__item__title {
  font-weight: 800;
  font-size: 20px;
  white-space: nowrap;
}
.p-info__item__text {
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
}

@media screen and (max-width: 768px) {
  .p-info {
    max-width: 480px;
  }
  .p-info__item {
    padding-top: 20px;
    padding-bottom: 20px;
    display: block;
    padding-left: 50px;
    padding-right: 50px;
  }
  .p-info__item:first-of-type {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .p-info__item__title {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .p-info__item__text {
    font-size: 16px;
    line-height: 22px;
  }
}
@media screen and (max-width: 440px) {
  .p-info {
    max-width: 86.3636363636vw;
  }
  .p-info__item {
    padding-top: 4.5454545455vw;
    padding-bottom: 4.5454545455vw;
    padding-left: 0;
    padding-right: 0;
  }
  .p-info__item:first-of-type {
    padding-top: 4.5454545455vw;
    padding-bottom: 4.5454545455vw;
  }
  .p-info__item__title {
    font-size: 4.0909090909vw;
    margin-bottom: 1.8181818182vw;
  }
  .p-info__item__text {
    font-size: 3.6363636364vw;
    line-height: 5vw;
  }
}
.p-company {
  max-width: 1020px;
  margin: 0 auto;
}

.p-venue {
  margin-bottom: 140px;
}
.p-venue__title {
  text-align: center;
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 50px;
}
.p-venue__img {
  max-width: 420px;
  margin: 0 auto;
}
.p-venue img {
  width: 100%;
}

.p-exhibitor__title {
  text-align: center;
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 50px;
}
.p-exhibitor__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
  row-gap: 50px;
}
.p-exhibitor__inner a {
  max-width: 300px;
}
.p-exhibitor__inner a img {
  width: 100%;
}

@media screen and (max-width: 1039px) {
  .p-exhibitor__inner {
    justify-content: center;
  }
}/*# sourceMappingURL=style.css.map */