@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", serif, sans-serif;
  font-weight: normal;
  line-height: 1;
}

a {
  text-decoration: none;
}

img {
  vertical-align: middle;
}

ul {
  list-style: none;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.l-header {
  padding: 17px 80px 18px;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
}
.l-header__list {
  padding: 20px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 920px;
  margin: 0 auto;
  border: 4px solid #000;
  border-radius: 100px;
  background: #fff;
  gap: 5.5555555556vw;
}
.l-header__list__item {
  font-size: 20px;
  font-family: "Noto sans JP";
  font-weight: bold;
  text-align: center;
  position: relative;
  transition: all 0.3s;
}
.l-header__list__item a {
  display: block;
  color: #333;
}
.l-header__list__item a span {
  display: block;
  font-family: "Noto Sans JP";
  font-weight: normal;
  font-size: 12px;
  line-height: 1.1;
  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: #ef9d93;
  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: #ef9d93;
}

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

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

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

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

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

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

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

@media screen and (min-width: 2000px) {
  .l-header__list {
    display: flex;
    gap: 80px;
  }
}
@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: #333333;
  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.6;
  }
}
.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;
  transition: all 0.3s;
}
@media (hover: hover) {
  .l-footer__link a:hover {
    opacity: 0.6;
  }
}
.l-footer small {
  font-size: 10px;
}

.p-top {
  position: fixed;
  z-index: 1100;
  top: 0;
  left: 0;
}
.p-top a {
  display: block;
  width: 30%;
  height: 30%;
  transition: all 0.3s;
}
@media (hover: hover) {
  .p-top a:hover {
    transform: scale(1.05);
  }
}
.p-top a img {
  width: 100%;
}

.u-spOnly {
  display: none;
}

.p-apply {
  position: fixed;
  bottom: 2.7777777778vw;
  right: 2.7777777778vw;
  z-index: 1100;
}
.p-apply__btn {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 1.3888888889vw;
  line-height: 1.6;
  width: 15.2777777778vw;
  height: 15.2777777778vw;
  border-radius: 50%;
  text-align: center;
  padding-top: 5.5555555556vw;
  position: relative;
}
.p-apply__btn::before {
  display: block;
  content: "";
  width: 15.5555555556vw;
  height: 15.5555555556vw;
  background: url(../img/deco/deco_loop_text.png);
  background-size: cover;
  position: absolute;
  z-index: 1111;
  top: -2%;
  left: -2%;
  animation: spin 12s linear infinite;
  z-index: -1;
}
@media (hover: hover) {
  .p-apply__btn:hover {
    transform: scale(1.05);
  }
}

@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;
  user-select: none;
  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: "";
  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: 12px 24px;
  border-radius: 30px;
  transition: all 0.3s;
}
.c-blackBtn--big {
  font-size: 22px;
  padding: 8px 16px;
}
@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: #F0E1C6;
  padding: 7px 14px;
  border-radius: 30px;
  transition: all 0.3s;
}
@media (hover: hover) {
  .c-pinkBtn:hover {
    color: #F0E1C6;
    background-color: #fff;
    box-shadow: inset 0px 0px 0px 2px #F0E1C6;
  }
}

.p-section {
  padding: 6.25vw 50px;
}
.p-section--round {
  background-color: #F0E1C6;
}
.p-section--tool {
  margin-top: 80px;
  scroll-margin-top: 80px;
  max-width: 1240px;
  margin: 0 auto;
  border-radius: 40vw;
  padding: 160px 80px;
}
.p-section--biege {
  background-color: #F0E1C6;
}
.p-section--timeTable {
  background-color: #F0E1C6;
  position: relative;
  padding: 120px 50px 90px;
  margin-bottom: 160px;
}
.p-section--timeTable::before {
  position: absolute;
  display: block;
  content: "";
  width: 100vw;
  height: 2.9166666667vw;
  background-image: url(../img/deco/deco_flag_line.png);
  background-size: cover;
  top: -0.25%;
  left: 0%;
}
.p-section--timeTable::after {
  position: absolute;
  display: block;
  content: "";
  width: 100vw;
  height: 2.9166666667vw;
  background-image: url(../img/deco/deco_flag_line.png);
  background-size: cover;
  bottom: -2.2222222222vw;
  left: 0%;
}
.p-section--pb230 {
  padding-bottom: 200px;
  position: relative;
}
.p-section__inner {
  max-width: 1240px;
  margin: 0 auto;
}

.c-title {
  margin-bottom: 42px;
  text-align: center;
  position: relative;
  z-index: 100;
}
.c-title img {
  height: 5vw;
  max-height: 72px;
}
.c-title img:first-child {
  rotate: -5.5deg;
  height: 4.4444444444vw;
}
.c-title__icon {
  rotate: 2deg;
  display: block;
  height: 72px;
  width: auto;
}
.c-title__text {
  width: auto;
  height: 72px;
  display: block;
}
.c-title--mb {
  margin-bottom: 70px;
}
.c-title--about {
  text-align: left;
}
.c-title__en {
  font-family: "Jost";
  font-weight: 800;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.c-title__en span {
  font-size: 64px;
}
.c-title__en--about {
  color: #ffffff;
}
.c-title__about {
  justify-content: flex-start;
}
.c-title__about--tablet {
  display: none;
}
.c-title__jp {
  font-weight: bold;
  font-size: 1.6666666667vw;
  line-height: 36px;
  letter-spacing: 0.6px;
  color: #333;
  paint-order: stroke;
}
.c-title__jp--about {
  font-size: 2.7777777778vw;
  line-height: 3.75vw;
  text-align: start;
  margin-top: 24px;
}
.c-title--about {
  color: #fff;
  line-height: 1.45;
  text-align: center;
}
.c-title--white {
  font-size: 40px;
  color: #fff;
}
.c-title--beige {
  font-size: 40px;
  color: #fff;
}
.c-title--recommend {
  position: relative;
}

.c-marker {
  background: #72654E;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0 0.1em 0.1em 0.2em;
  color: #fff;
  display: inline-block;
  margin: 2px 4px;
}

@media screen and (min-width: 2000px) {
  .c-title__jp {
    font-size: 24px;
  }
  .c-title__jp--about {
    line-height: 1.6;
  }
}
@media screen and (max-width: 1000px) {
  .u-1000 {
    display: none;
  }
  .c-marker {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .u-pcOnly {
    display: none;
  }
  .u-spOnly {
    display: block;
  }
  .p-apply__btn {
    padding-top: 9.1145833333vw;
    width: 23.4375vw;
    height: 23.4375vw;
    font-size: 1.953125vw;
  }
  .p-apply__btn::before {
    width: 23.4375vw;
    height: 23.4375vw;
    left: 0;
    top: 0;
  }
  .c-categoryBtn {
    width: 150px;
    font-size: 20px;
  }
  a.btn-border-shadow:before {
    top: -7px;
    left: -7px;
  }
  .c-blackBtn {
    white-space: nowrap;
    text-align: center;
    font-size: 16px;
    display: inline-block;
    color: #fff;
    background-color: #000;
    padding: 16px 24px;
    border-radius: 30px;
    transition: all 0.3s;
  }
  .c-blackBtn--big {
    font-size: 22px;
    padding: 8px 16px;
  }
  .c-pinkBtn {
    white-space: nowrap;
    text-align: center;
    font-size: 16px;
    display: inline-block;
    color: #fff;
    background-color: #F0E1C6;
    padding: 7px 14px;
    border-radius: 30px;
    transition: all 0.3s;
  }
}
@media screen and (max-width: 768px) and (hover: hover) {
  .c-pinkBtn:hover {
    color: #F0E1C6;
    background-color: #fff;
    box-shadow: inset 0px 0px 0px 2px #F0E1C6;
  }
}
@media screen and (max-width: 768px) {
  .p-section {
    padding: 80px 50px;
  }
  .p-section--timeTable::before {
    width: 100%;
    height: 40px;
  }
  .p-section--timeTable::after {
    width: 100%;
    height: 40px;
    bottom: -4.1666666667vw;
  }
  .p-section--tool {
    margin-top: 80px;
    scroll-margin-top: 80px;
    max-width: 1240px;
    margin: 0 auto;
    border-radius: 40vw;
    padding: 160px 50px;
  }
  .p-section--pb230 {
    padding-bottom: 80px;
  }
  .p-section__inner {
    max-width: 668px;
  }
  .c-title {
    margin-bottom: 30px;
  }
  .c-title--about {
    text-align: center;
  }
  .c-title__en {
    font-size: 48px;
    margin-bottom: 15px;
  }
  .c-title__en span {
    font-size: 32px;
  }
  .c-title__en--about {
    color: #fff;
  }
  .c-title__en img {
    height: 48px;
  }
  .c-title__en img:first-child {
    height: 38px;
  }
  .c-title__en--tool {
    font-size: 48px;
    margin-bottom: 15px;
  }
  .c-title__en--tool img {
    height: 40px;
  }
  .c-title__en--tool img:first-child {
    height: 32px;
  }
  .c-title__jp {
    font-size: 18px;
    letter-spacing: 0.5px;
    line-height: 1;
  }
  .c-title__jp--about {
    font-size: 26px;
    line-height: 1.6;
  }
  .c-title--recommend::after {
    width: 7.8125vw;
    height: 11.71875vw;
    background-repeat: no-repeat;
    background-size: cover;
    top: 50%;
    right: -7%;
    animation: floating 3s ease-in-out infinite alternate;
    z-index: 10;
  }
  .c-title__about--pc {
    display: none;
  }
  .c-title__about--tablet {
    display: flex;
    justify-content: center;
    margin-bottom: 7.2916666667vw;
  }
  .c-title__about--tablet img {
    height: 56px;
  }
  .c-title__about--tablet img:first-child {
    height: 54px;
  }
}
@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: 2.7272727273vw;
    width: 31.8181818182vw;
    height: 31.8181818182vw;
    padding-top: 11.8181818182vw;
  }
  .p-apply__btn::before {
    width: 31.8181818182vw;
    height: 31.8181818182vw;
  }
  .c-categoryBtn {
    width: 36.3636363636vw;
    font-size: 3.6363636364vw;
  }
  a.btn-border-shadow {
    padding: 20px 0 30px;
    background-color: #03c28c;
  }
  a.btn-border-shadow:before {
    top: -5px;
    left: -5px;
  }
  .c-blackBtn {
    font-size: 3.6363636364vw;
    padding: 14px 28px;
    border-radius: 6.8181818182vw;
  }
  .c-blackBtn--big {
    font-size: 4.3181818182vw;
    padding: 1.8181818182vw 3.6363636364vw;
  }
  .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 #F0E1C6;
  }
}
@media screen and (max-width: 440px) {
  .p-section {
    padding: 13.6363636364vw 7%;
  }
  .p-section--tool {
    padding: 22.7272727273vw 7% 22.7272727273vw;
  }
  .p-section--pb230 {
    padding-bottom: 18.1818181818vw;
  }
  .p-section--pb230::before {
    display: none;
  }
  .p-section--pb230::after {
    display: none;
  }
  .p-section__inner {
    max-width: 100%;
  }
  .p-section--timeTable::before {
    height: 11vw;
  }
  .p-section--timeTable::after {
    height: 11vw;
  }
  .p-section--timeTable {
    padding-top: 96px;
  }
  .c-title {
    margin-bottom: 7.9545454545vw;
  }
  .c-title img {
    height: 9.0909090909vw;
  }
  .c-title img:first-child {
    height: 8.1818181818vw;
  }
  .c-title__en {
    font-size: 11.3636363636vw;
    margin-bottom: 2.7272727273vw;
  }
  .c-title__en span {
    font-size: 7.2727272727vw;
  }
  .c-title__en--tool img {
    height: 32px;
  }
  .c-title__en--tool img:first-child {
    height: 28px;
  }
  .c-title__jp {
    font-size: 4.5454545455vw;
    line-height: 5.9090909091vw;
    letter-spacing: 0.1136363636vw;
  }
  .c-title__jp--about {
    margin-bottom: 5.4545454545vw;
    font-size: 26px;
    line-height: 1.6;
  }
  .c-title--recommend::after {
    width: 6.8181818182vw;
    height: 10.2272727273vw;
    top: 50%;
    right: -7%;
    z-index: 10;
    animation: floating;
  }
  .c-title__about {
    justify-content: center;
  }
  .c-title__about--pc {
    display: none;
  }
  .c-title__about--tablet {
    display: flex;
    margin: 0 auto 8.1818181818vw;
  }
  .c-title__about--tablet img {
    height: 42px;
  }
  .c-title__about--tablet img:first-child {
    height: 36px;
    rotate: -5deg;
  }
}
.p-kv__sp {
  display: none;
}
.p-kv {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.p-kv__bg {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.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: 4.2s;
  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: 3.8s;
  animation-delay: 0s;
}
.p-kv .petal-8 {
  bottom: 20%;
  left: 3%;
  width: 8%;
  animation-duration: 1.7s;
  animation-delay: 0s;
}

@media screen and (min-width: 2000px) {
  .p-kv {
    max-width: 2000px;
  }
}
@media screen and (max-width: 440px) {
  .p-kv__pc {
    display: none;
  }
  .p-kv__sp {
    display: block;
  }
  .p-kv__sp__bg {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  .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 {
  margin: 24px auto 80px;
  padding: 6.25vw 6.9444444444vw;
  position: relative;
  scroll-margin-top: 80px;
}
.p-about__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: flex-end;
  flex-direction: row-reverse;
  justify-content: space-between;
  position: relative;
}
.p-about__inner::before {
  position: absolute;
  display: block;
  content: "";
  background-image: url(../img/bg_about.png);
  width: 62.5vw;
  height: 18.75vw;
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  z-index: -1;
}
.p-about__left {
  width: 48%;
  max-width: 548px;
}
.p-about__text {
  color: #333333;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
}
.p-about__right {
  width: 43.0555555556vw;
  max-width: 620px;
}
.p-about__right img {
  width: 100%;
}
.p-about__right__top {
  max-width: 450px;
  min-width: 350px;
  margin-bottom: 30px;
  justify-self: end;
  position: relative;
}
.p-about__right__top__img {
  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 img {
  width: 100%;
  box-shadow: 0 10px 6px rgba(0, 0, 0, 0.3019607843);
}

@media screen and (max-width: 768px) {
  .p-about {
    padding: 40px 50px 0px;
  }
  .p-about::before {
    width: 50px;
    height: 75px;
    top: 2.6041666667vw;
    right: 7.8125vw;
  }
  .p-about::after {
    display: none;
    content: none;
    background-image: none;
  }
  .p-about__inner {
    max-width: 668px;
    display: flex;
    flex-direction: column-reverse;
    gap: 12px;
  }
  .p-about__inner::before {
    display: none;
  }
  .p-about__left {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    margin-bottom: 40px;
  }
  .p-about__right {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 0 auto;
  }
  .p-about__right__img img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-about {
    scroll-margin-top: 0;
  }
}
@media screen and (max-width: 440px) {
  .p-about {
    padding: 13.6363636364vw 7% 0vw;
  }
  .p-about::before {
    width: 9.0909090909vw;
    height: 13.6363636364vw;
    top: 4.5454545455vw;
    right: 6.8181818182vw;
  }
  .p-about__inner {
    max-width: 100%;
    display: flex;
    flex-direction: column-reverse;
  }
  .p-about__inner::before {
    display: none;
  }
  .p-about__text {
    font-size: 14px;
    line-height: 28px;
  }
  .p-about__left {
    width: 100%;
    margin-bottom: 0;
  }
  .p-about__right {
    max-width: 100%;
    gap: 4.0909090909vw;
  }
  .p-about__right__img {
    width: 100%;
  }
  .p-about__right__img img {
    width: 100%;
  }
}
.p-books {
  width: 100%;
  padding: 90px 0 83px;
  background-color: #F0E1C6;
  position: relative;
}
.p-books::before {
  position: absolute;
  display: block;
  content: "";
  width: 100vw;
  height: 2.9166666667vw;
  background-image: url(../img/deco/deco_flag_line.png);
  background-size: cover;
  top: -1%;
  rotate: 0.25deg;
}
.p-books::after {
  position: absolute;
  display: block;
  content: "";
  width: 100vw;
  height: 2.9166666667vw;
  background-image: url(../img/deco/deco_flag_line.png);
  background-size: cover;
  bottom: -2.2222222222vw;
  rotate: 0.5deg;
}
.p-books__text {
  position: absolute;
  display: inline-block;
  content: "";
  background-image: url(../img/bg_books.png);
  width: 58.125vw;
  height: 22.7777777778vw;
  background-repeat: no-repeat;
  background-size: cover;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-books__container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.infinite-slider {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 30px;
}
.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;
  -o-object-fit: contain;
     object-fit: contain;
  box-shadow: -4px 4px 4px #333;
  transition: all 0.3s;
}
@media (hover: hover) {
  .infinite-slider .swiper-slide img:hover {
    transform: scale(1.05);
    box-shadow: -4px 4px 12px #333;
  }
}

@media screen and (max-width: 768px) {
  .p-books {
    padding: 80px 0;
  }
  .p-books::before {
    width: 100%;
    height: 40px;
    top: -1%;
    rotate: 0.25deg;
  }
  .p-books::after {
    width: 100%;
    height: 40px;
    bottom: -4%;
    rotate: 0.5deg;
  }
  .p-books__container {
    gap: 30px;
  }
}
@media screen and (max-width: 440px) {
  .p-books {
    padding: 13.6363636364vw 0;
  }
  .p-books::before {
    height: 10vw;
  }
  .p-books::after {
    height: 10vw;
  }
  .p-books__container {
    gap: 4.5454545455vw;
  }
  .infinite-slider {
    padding-top: 4.5454545455vw;
    padding-bottom: 4.5454545455vw;
  }
  .infinite-slider .swiper-slide {
    width: auto;
  }
  .infinite-slider .swiper-slide img {
    display: block;
    height: 56.8181818182vw;
    box-shadow: -0.9090909091vw 0.9090909091vw 0.9090909091vw #333;
  }
}
#recommend {
  scroll-margin-top: 80px;
}

.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;
  -moz-column-gap: 40px;
       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) {
  #recommend {
    scroll-margin-top: 58px;
  }
  .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;
  }
}
@media screen and (max-width: 500px) {
  #recommend {
    scroll-margin-top: 0;
  }
}
#event {
  scroll-margin-top: 80px;
  position: relative;
  background-color: #F0E1C6;
  border-radius: 40vw;
  margin: 160px auto;
  padding: 5.5555555556vw 0 120px;
  width: 86.1111111111vw;
  max-width: 1240px;
}

#special {
  position: relative;
}
#special::before {
  position: absolute;
  display: inline-block;
  content: "";
  background-image: url(../img/hubuki_02.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 69.4444444444vw;
  height: 45.625vw;
  left: 0;
  top: 10%;
}

.p-experience {
  margin-top: 0px;
}
.p-experience__card {
  padding: 0px 50px;
  width: 52.4305555556vw;
  max-width: 755px;
  margin: -2.7777777778vw auto 0;
  z-index: 10;
  position: relative;
}
.p-experience__card__box {
  padding: 40px 0px 40px;
}
.p-experience__card__box:nth-of-type(2) {
  padding-top: 40px;
  padding-bottom: 40px;
  border-top: 4px dashed #72654E;
  border-bottom: 4px dashed #72654E;
}
.p-experience__card__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.7777777778vw;
  justify-content: space-between;
}
.p-experience__card__inner--reverse {
  display: flex;
  flex-direction: row-reverse;
  gap: 2.7777777778vw;
  justify-content: center;
  align-items: center;
}
.p-experience__card__left {
  max-width: 500px;
}
.p-experience__card__left img {
  width: 15.2777777778vw;
  max-width: 220px;
}
.p-experience__card__right {
  width: 100%;
}
.p-experience__card__right__text {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
}

.p-read {
  z-index: 10;
  display: block;
  margin: 0 auto 119px;
  display: flex;
  justify-content: center;
}
.p-read__title {
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  line-height: 29px;
  margin-bottom: 25px;
}
.p-read__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}

.p-box {
  display: flex;
  justify-content: center;
  height: 100%;
}
.p-box__event {
  background-color: #fff;
  padding: 40px 36px 36px;
  min-height: -moz-fit-content;
  min-height: fit-content;
  border-radius: 80px 24px 24px 24px;
  border: 4px solid #333;
  box-shadow: 6px 6px 0px #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: calc((1240px - 5.5555555556vw) / 2);
  width: 100%;
}
.p-box__event__p {
  font-weight: bold;
  font-size: 1.9444444444vw;
  margin-bottom: 10px;
}
.p-box__all {
  display: flex;
  flex-direction: row;
  margin-bottom: 80px;
  position: relative;
  gap: 5.5555555556vw;
  width: -moz-fit-content;
  width: fit-content;
}
.p-box__all::before {
  display: block;
  content: "";
  width: 1px;
  height: 100%;
  border-right: 4px dashed #72654E;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.p-box__Wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
  gap: 56px;
}
.p-box__h3 {
  width: 19.4444444444vw;
}
.p-box__h3 img {
  width: 100%;
}

.p-lineUp {
  background-color: #fff;
  padding: 40px 36px 36px;
  max-width: calc((1240px - 5.5555555556vw) / 2);
  min-height: -moz-fit-content;
  min-height: fit-content;
  border-radius: 80px 24px 24px 24px;
  border: 4px solid #333;
  box-shadow: 6px 6px 0px #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  z-index: 10;
  position: relative;
  height: 100%;
}
.p-lineUp__innerHead {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 30px;
  width: 100%;
}
.p-lineUp__innerBook {
  display: flex;
  flex-direction: row;
  gap: 32px;
  height: 172px;
  align-items: center;
}
.p-lineUp__innerBook__img {
  max-width: 124px;
  min-width: 124px;
}
.p-lineUp__innerBook__img img {
  width: 100%;
  border: 1px solid #e7e7e7;
}
.p-lineUp--check {
  width: 100%;
  max-width: 1235px;
  margin: 0 auto;
  margin-bottom: 200px;
  padding: 90px 0 60px;
  text-align: center;
  justify-content: center;
}
.p-lineUp--check::before {
  background-image: url(../img/check.png);
}
.p-lineUp .p-check__title {
  font-weight: 900;
  margin-bottom: 43px;
  font-size: 40px;
  line-height: 48px;
}
.p-lineUp .p-check__text {
  font-weight: 700;
  font-size: 32px;
  line-height: 44px;
}
.p-lineUp .p-check__text span {
  color: #FF4397;
}
.p-lineUp__icon {
  display: block;
  width: 8.6111111111vw;
  max-width: 124px;
  height: 124px;
  max-height: 124px;
}
.p-lineUp__icon img {
  display: block;
  width: 100%;
  border-radius: 50%;
}
.p-lineUp__left {
  max-width: 180px;
  min-width: 180px;
}
.p-lineUp__left img {
  width: 100%;
  border-radius: 50%;
}
.p-lineUp__right {
  max-width: 536px;
}
.p-lineUp__right__time {
  font-family: "Poppins";
  font-weight: bold;
  font-size: 2.7777777778vw;
  margin-bottom: 10px;
}
.p-lineUp__right__tag {
  background-color: #333;
  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: 1.25vw;
  line-height: 1;
  margin-bottom: 8px;
}
.p-lineUp__right__name {
  font-size: 1.6666666667vw;
  line-height: 1;
  margin-bottom: 10px;
}
.p-lineUp__right__title {
  font-weight: bold;
  font-size: 1.6666666667vw;
  line-height: 1.6;
  padding-bottom: 10px;
}
.p-lineUp__right__text {
  padding-top: 10px;
  font-size: 15px;
  line-height: 1.6;
}
.p-lineUp__right__text a {
  color: #333;
  border-bottom: 1px solid #333;
  transition: all 0.3s;
}
.p-lineUp__right__text a:hover {
  color: #3334ff;
  border-bottom: 1px solid #3334ff;
}

.p-present {
  background-color: #fff;
  padding: 40px 50px;
  border-radius: 10px;
  border: 4px solid #333;
  box-shadow: 6px 6px 5px rgba(51, 48, 0, 0.4039215686);
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 25px;
  margin-top: 110px;
  margin-bottom: 100px;
  position: relative;
  z-index: 10;
  position: relative;
}
.p-present::before {
  position: absolute;
  display: inline-block;
  content: "";
  background-image: url(../img/hukidashi_01.png);
  width: 278px;
  height: 110px;
  background-repeat: no-repeat;
  background-size: contain;
  top: -68px;
  left: -40px;
}
.p-present--reverse {
  flex-direction: row-reverse;
}
.p-present--reverse::before {
  background-image: url(../img/hukidashi_02.png);
}
.p-present--reverse::after {
  position: absolute;
  display: inline-block;
  content: "";
  background-image: url(../img/present_hana.png);
  width: 196px;
  height: 192px;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: -80px;
  right: -50px;
  animation: floating 3s ease-in-out infinite alternate;
}
.p-present:last-of-type {
  margin-bottom: 80px;
}
.p-present__font {
  max-width: 594px;
  width: 100%;
}
.p-present__font--big {
  max-width: 702px;
  width: 100%;
}
.p-present__title {
  color: #FF4397;
  font-size: 40px;
  line-height: 50px;
  font-weight: 600;
  padding-bottom: 26px;
  border-bottom: 1px solid #333;
}
.p-present__text {
  padding-top: 26px;
  color: #333;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 30px;
}
.p-present__text span {
  color: #FF4346;
}
.p-present__img {
  max-width: 393px;
  min-width: 300px;
  height: auto;
}
.p-present__img--small {
  max-width: 300px;
  min-width: 200px;
}
.p-present__img img {
  width: 100%;
}

@media screen and (min-width: 2000px) {
  .p-box__h3 {
    width: 64%;
  }
  .p-lineUp__right__time {
    font-size: 54px;
  }
  .p-lineUp__right__position {
    font-size: 20px;
  }
  .p-lineUp__right__name {
    font-size: 32px;
  }
  .p-lineUp__right__title {
    font-size: 32px;
  }
  .p-lineUp__right__text {
    font-size: 18px;
  }
  .p-box__event__p {
    font-size: 40px;
  }
  .p-box__all {
    gap: 32px;
  }
}
@media screen and (max-width: 1000px) {
  #event {
    padding: 11.1111111111vw 0 8.3333333333vw;
  }
  .p-read__text {
    font-size: 16px;
  }
  .p-lineUp {
    width: 100%;
    max-width: 100%;
  }
  .p-box {
    width: 100%;
    padding: 0;
  }
  .p-box__event {
    max-width: 100%;
  }
  .p-box__all {
    gap: 36px;
  }
  .p-box__Wrap:first-of-type {
    border: none;
  }
  .p-experience__card {
    max-width: 80%;
    padding: 0 60px;
    margin: -2.7777777778vw auto 0;
  }
  .p-experience__card__inner {
    flex-flow: column;
    gap: 10px;
  }
  .p-experience__card__inner--reverse {
    flex-flow: column;
  }
  .p-experience__card__left {
    max-width: 780px;
    min-width: 0;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 15px;
  }
  .p-experience__card__left img {
    width: 220px;
  }
  .p-experience__card__right__text {
    font-size: 14px;
    padding: 0 5.5555555556vw;
  }
}
@media screen and (max-width: 768px) {
  #event {
    width: 100%;
    scroll-margin-top: 58px;
    padding: 15.625vw 0 7.8125vw;
  }
  #event::before {
    width: 680px;
    height: 457px;
    right: 0;
    bottom: 0;
  }
  #special::before {
    width: 88.5416666667vw;
    height: 59.5052083333vw;
    left: 0;
    top: 30%;
  }
  .p-experience {
    margin-top: 20px;
    max-width: 100%;
  }
  .p-experience__card {
    padding: 40px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .p-experience__card__box {
    width: 72vw;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .p-experience__card__right__text {
    font-size: 16px;
    line-height: 24px;
    padding: 0 5.2083333333vw 0;
  }
  .p-read {
    padding: 0;
    max-width: 100%;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 80px;
  }
  .p-read__title {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 29px;
  }
  .p-read__text {
    font-size: 15px;
    line-height: 1.6;
  }
  .p-box {
    display: block;
    width: 80vw;
    margin-bottom: 16px;
    border: none;
  }
  .p-box__event {
    width: 80vw;
  }
  .p-box__event__p {
    font-size: 18px;
  }
  .p-box__all {
    display: flex;
    flex-direction: column;
    border: none;
    gap: 72px;
  }
  .p-box__all::before {
    display: none;
  }
  .p-box__Wrap {
    width: 100%;
    gap: 40px;
  }
  .p-box__Wrap:first-of-type {
    padding: 0;
  }
  .p-box__h3 {
    width: 36vw;
  }
  .p-lineUp {
    padding: 50px 23px 60px 34px;
    max-width: 100%;
    margin-bottom: 0;
    flex-direction: column;
    gap: 16px;
    min-height: 100%;
  }
  .p-lineUp::before {
    top: -80px;
    left: -25px;
    width: 180px;
    height: 145px;
  }
  .p-lineUp--check {
    margin-bottom: 80px;
    margin-top: 80px;
    padding: 55px 20px 45px 20px;
    text-align: center;
  }
  .p-lineUp--check::before {
    background-image: url(../img/check.png);
  }
  .p-lineUp__innerHead {
    height: -moz-fit-content;
    height: fit-content;
  }
  .p-lineUp__innerBook {
    display: flex;
    gap: 30px;
    height: -moz-fit-content;
    height: fit-content;
    justify-content: space-between;
    width: 100%;
  }
  .p-lineUp__icon {
    height: 100px;
    width: 100px;
  }
  .p-lineUp .p-check__title {
    margin-bottom: 40px;
    font-size: 30px;
    line-height: 38px;
  }
  .p-lineUp .p-check__text {
    font-size: 22px;
    line-height: 34px;
  }
  .p-lineUp__left {
    max-width: 150px;
    min-width: unset;
  }
  .p-lineUp__right {
    max-width: 100%;
  }
  .p-lineUp__right__time {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .p-lineUp__right__tag {
    margin-bottom: 11px;
    border-radius: 5px;
    max-width: 130px;
    padding: 10px 19px;
    font-size: 14px;
    line-height: 14px;
  }
  .p-lineUp__right__position {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 10px;
  }
  .p-lineUp__right__name {
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 0;
  }
  .p-lineUp__right__title {
    font-size: 18px;
    line-height: 28px;
  }
  .p-lineUp__right__text {
    font-size: 14px;
    line-height: 22px;
  }
  .p-present {
    padding: 40px 40px;
    flex-direction: column-reverse;
    gap: 30px;
    margin-bottom: 100px;
  }
  .p-present--reverse {
    flex-direction: column-reverse;
  }
  .p-present--reverse::after {
    width: 106px;
    height: 102px;
    bottom: -50px;
    right: -20px;
  }
  .p-present:last-of-type {
    margin-bottom: 20px;
  }
  .p-present__title {
    font-size: 30px;
    line-height: 40px;
  }
  .p-present__img {
    max-width: 600px;
    min-width: 0;
  }
  .p-present__img--small {
    max-width: 250px;
  }
  .p-present__btn {
    text-align: center;
  }
}
@media screen and (max-width: 500px) {
  #event {
    width: 100%;
    scroll-margin-top: 0;
    border-radius: 50vw 50vw 0px 0px;
    padding-top: 120px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 440px) {
  #special::before {
    left: 0;
    top: 40%;
  }
  .p-experience {
    margin-top: 4.5454545455vw;
  }
  .p-experience__card {
    max-width: 100%;
    padding: 0 7%;
    gap: 4.5454545455vw;
  }
  .p-experience__card__title {
    font-size: 4.5454545455vw;
  }
  .p-experience__card__right__text {
    font-size: 3.6363636364vw;
    line-height: 5.4545454545vw;
  }
  .p-experience__card__left img {
    width: 48vw;
  }
  .p-read {
    padding: 6.8181818182vw 0vw;
    margin-bottom: 18.1818181818vw;
    padding: 0;
  }
  .p-read::before {
    width: 14.0909090909vw;
    height: 13.6363636364vw;
  }
  .p-read::after {
    width: 8.1818181818vw;
    height: 16.8181818182vw;
  }
  .p-read__title {
    font-size: 4.0909090909vw;
    line-height: 5vw;
    margin-bottom: 3.4090909091vw;
  }
  .p-read__text {
    font-size: 3.1818181818vw;
    line-height: 4.5454545455vw;
  }
  .p-box {
    display: block;
    height: 100%;
    width: 100%;
  }
  .p-box__h3 {
    width: 63.6363636364vw;
  }
  .p-box__all {
    display: flex;
    flex-direction: column;
    border: none;
    gap: 60px;
  }
  .p-box__Wrap {
    width: 100%;
  }
  .p-box__Wrap:first-of-type {
    border: none;
  }
  .p-lineUp {
    padding: 8.1818181818vw 5.4545454545vw 8.1818181818vw;
    margin-bottom: 0;
    gap: 16px;
  }
  .p-lineUp::before {
    top: -7.9545454545vw;
    left: -5.6818181818vw;
    width: 34.0909090909vw;
    height: 27.2727272727vw;
  }
  .p-lineUp--check {
    margin-top: 9.0909090909vw;
    margin-bottom: 15.9090909091vw;
    padding: 10.2272727273vw 2.2727272727vw 5.6818181818vw 2.2727272727vw;
  }
  .p-lineUp--check::before {
    background-image: url(../img/check.png);
  }
  .p-lineUp__innerHead {
    display: flex;
    gap: 12px;
  }
  .p-lineUp__icon {
    max-width: 100px;
    min-height: 100px;
  }
  .p-lineUp__icon img {
    max-width: 100px;
    min-width: 100px;
  }
  .p-lineUp__innerBook {
    display: flex;
    gap: 10px;
  }
  .p-lineUp__innerBook__img {
    max-width: 80px;
    min-width: 80px;
  }
  .p-lineUp__innerBook__img img {
    max-width: 80px;
    min-width: 80px;
  }
  .p-lineUp .p-check__title {
    margin-bottom: 9.0909090909vw;
    font-size: 5.9090909091vw;
    line-height: 8.1818181818vw;
  }
  .p-lineUp .p-check__text {
    font-size: 3.6363636364vw;
    line-height: 6.3636363636vw;
  }
  .p-lineUp__left {
    max-width: 43.1818181818vw;
  }
  .p-lineUp__right__time {
    font-size: 6.8181818182vw;
    margin-bottom: 2.2727272727vw;
  }
  .p-lineUp__right__tag {
    margin-bottom: 3.4090909091vw;
    border-radius: 1.1363636364vw;
    width: 23.6363636364vw;
    padding: 2.2727272727vw;
    font-size: 3.1818181818vw;
    line-height: 3.1818181818vw;
  }
  .p-lineUp__right__position {
    font-size: 2.5vw;
    line-height: 4.5454545455vw;
    margin-bottom: 1.8181818182vw;
  }
  .p-lineUp__right__name {
    font-size: 3.6363636364vw;
    line-height: 3.6363636364vw;
    margin-bottom: 1.3636363636vw;
  }
  .p-lineUp__right__title {
    font-size: 4.5454545455vw;
    line-height: 5.4545454545vw;
  }
  .p-lineUp__right__text {
    font-size: 3.1818181818vw;
    line-height: 5vw;
  }
  .p-present {
    padding: 6.8181818182vw 6.8181818182vw;
    gap: 6.8181818182vw;
    margin-bottom: 11.3636363636vw;
    margin-top: 18.1818181818vw;
  }
  .p-present::before {
    width: 40.9090909091vw;
    top: -12.2727272727vw;
    left: -5.2272727273vw;
  }
  .p-present--reverse::after {
    width: 24.0909090909vw;
    height: 23.1818181818vw;
    bottom: -11.3636363636vw;
    right: -4.5454545455vw;
  }
  .p-present__title {
    font-size: 5.4545454545vw;
    line-height: 8.1818181818vw;
    padding-bottom: 3.4090909091vw;
  }
  .p-present__text {
    font-size: 3.6363636364vw;
    line-height: 5.9090909091vw;
    padding-top: 3.4090909091vw;
  }
  .p-present__img {
    width: 100%;
    min-width: unset;
  }
  .p-present__img--small {
    width: 38.6363636364vw;
  }
}
#access {
  scroll-margin-top: 80px;
  margin: 80px auto;
}

.p-access {
  max-width: 1125px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
  position: relative;
}
.p-access__map {
  width: 531px;
  height: 300px;
  position: relative;
  flex-shrink: 0;
}
.p-access__map iframe {
  width: 100%;
  height: 100%;
}
.p-access__map iframe body {
  width: 100%;
  height: 100%;
}
.p-access__address {
  max-width: 553px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-access__address__text {
  font-size: 1.3888888889vw;
  line-height: 36px;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.p-access__address__text::before {
  position: static;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.875vw;
  height: 1.875vw;
  display: block;
  background-image: url(../img/icon/icon_map.png);
}
.p-access__address__text:nth-child(2)::before {
  background-image: url(../img/icon/icon_train.png);
}
.p-access__address__btn {
  width: 100%;
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

@media screen and (min-width: 2000px) {
  .p-access__address__text {
    font-size: 26px;
  }
  .p-access__address ::before {
    width: 26px;
    height: 26px;
  }
  .p-access__address ::after {
    width: 26px;
    height: 26px;
  }
}
@media screen and (max-width: 768px) {
  #access {
    scroll-margin-top: 58px;
  }
  .p-access {
    max-width: 531px;
    flex-direction: column-reverse;
    gap: 30px;
  }
  .p-access::before {
    width: 150px;
    height: 200px;
    top: -250px;
    left: -60px;
  }
  .p-access::after {
    width: 60px;
    height: 80px;
    top: -200px;
    right: -40px;
  }
  .p-access__map {
    width: 100%;
    height: 300px;
    flex-shrink: 0;
  }
  .p-access__map::before {
    width: 60px;
    height: 80px;
    bottom: -100px;
    left: -40px;
  }
  .p-access__address {
    max-width: 461px;
  }
  .p-access__address__text {
    font-size: 20px;
    line-height: 46px;
    margin-bottom: 20px;
  }
  .p-access__address__text::before {
    width: 24px;
    height: 24px;
  }
  .p-access__address__text::after {
    width: 24px;
    height: 24px;
  }
  .p-access__address__btn {
    max-width: 369px;
    margin: 0 auto;
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 500px) {
  #access {
    scroll-margin-top: 0;
  }
}
@media screen and (max-width: 440px) {
  .p-access {
    max-width: 100%;
    gap: 60px;
  }
  .p-access__map {
    height: 48.8636363636vw;
    flex-shrink: 0;
  }
  .p-access__map::before {
    width: 11.3636363636vw;
    height: 15.9090909091vw;
    bottom: -22.7272727273vw;
    left: 0;
  }
  .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;
  }
}
#info {
  scroll-margin-top: 80px;
  max-width: 1240px;
  margin: 0 auto;
  border-radius: 40vw;
  padding: 160px 80px;
}

.p-info {
  max-width: 620px;
  margin: 0 auto;
  color: #333333;
  position: relative;
  padding: 36px 52px 36px;
}
.p-info__Wrap {
  background: #ffffff;
  max-width: 620px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  border: 3px solid #333;
  border-radius: 24px;
  box-shadow: 6px 6px 0px #333333;
}
.p-info__item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 18px;
}
.p-info__item:last-of-type {
  margin-bottom: 0;
}
.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;
}
.p-info__tool {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  background: #ffffff;
  border: 3px solid #333;
  border-radius: 24px;
  box-shadow: 6px 6px 0px #333333;
  max-width: 620px;
  padding: 36px 52px 36px;
  gap: 24px;
}
.p-info__tool__h3 {
  font-size: 2.2222222222vw;
  text-align: center;
}
.p-info__tool__head {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.p-info__tool__head .p-lineUp__right__time {
  margin-bottom: 0;
  line-height: 1.6;
}
.p-info__tool__icon {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  background: #72654E;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 8px 24px;
  border-radius: 100px;
  line-height: 1.6;
}
.p-info__tool__img {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex-direction: row;
  gap: 16px;
}
.p-info__tool__img img {
  width: 100%;
  display: block;
  border: 1px solid #efefef;
}
.p-info__tool__p {
  font-size: 15px;
  line-height: 1.6;
}
.p-info__tool__a {
  color: #333;
  font-weight: 500;
  border-bottom: 2px solid #333;
}
.p-info__tool__span {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-bottom: 0;
  margin: 0 2px -1px;
  background-image: url(../img/icon/icon_blank.png);
  background-size: cover;
}

@media screen and (min-width: 2000px) {
  .p-info__tool__h3 {
    font-size: 42px;
  }
}
@media screen and (max-width: 768px) {
  #info {
    scroll-margin-top: 58px;
  }
  .p-info {
    max-width: 480px;
    padding: 56px 24px 56px;
  }
  .p-info::after {
    width: 13.671875vw;
    height: 14.0625vw;
    bottom: -13.0208333333vw;
    left: -10.4166666667vw;
  }
  .p-info__item {
    display: block;
    padding: 0;
    margin-bottom: 24px;
  }
  .p-info__item:first-of-type {
    padding: 0;
  }
  .p-info__item__title {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .p-info__item__text {
    font-size: 16px;
    line-height: 22px;
  }
  .p-info__tool {
    max-width: 480px;
    padding: 56px 24px 56px;
  }
  .p-info__tool__head {
    display: flex;
    gap: 24px;
  }
  .p-info__tool__h3 {
    font-size: 4.6875vw;
  }
  .p-info__tool__icon {
    font-size: 2.34375vw;
  }
  .p-info__tool__p {
    font-size: 15px;
  }
  .p-info__tool__a {
    color: #333;
    font-weight: 500;
  }
  .p-info__tool__span {
    display: inline-block;
    width: 12px;
    height: 12px;
  }
  .p-info__tool__span img {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  #info {
    scroll-margin-top: 0;
    border-radius: 50vw 50vw 0 0;
    padding: 120px 7% 40px;
  }
  .p-info__tool__head {
    display: flex;
    justify-content: center;
  }
  .p-info__tool__head .p-lineUp__right__time {
    font-size: 20px;
  }
  .p-info__tool__icon {
    font-size: 12px;
  }
}
@media screen and (max-width: 440px) {
  .p-info {
    max-width: 86.3636363636vw;
    padding: 5.4545454545vw 8.1818181818vw;
  }
  .p-info::after {
    width: 17.2727272727vw;
    height: 17.7272727273vw;
    bottom: -22.7272727273vw;
    left: -4.5454545455vw;
  }
  .p-info__item {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 32px;
  }
  .p-info__item:first-of-type {
    padding-top: 4.5454545455vw;
    padding-bottom: 0;
  }
  .p-info__item__title {
    font-size: 4.0909090909vw;
    margin-bottom: 1.8181818182vw;
  }
  .p-info__item__text {
    font-size: 3.6363636364vw;
    line-height: 5vw;
  }
  .p-info__tool__head {
    display: flex;
    justify-content: center;
  }
  .p-info__tool__head .p-lineUp__right__time {
    font-size: 20px;
  }
  .p-info__tool__icon {
    font-size: 12px;
  }
}
.p-company {
  max-width: 1020px;
  margin: 0 auto;
}

.p-venue {
  margin-bottom: 0px;
}
.p-venue__title {
  text-align: center;
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 50px;
}
.p-venue__img {
  max-width: 420px;
  margin: 0 auto;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
}
.p-venue__img:hover {
  transform: scale(1.04);
}
.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-evenly;
  gap: 50px;
}
.p-exhibitor__inner__link {
  width: 340px;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-exhibitor__inner__link img {
  height: 150px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-exhibitor__inner__link:hover {
  transform: scale(1.04);
}

@media screen and (max-width: 1039px) {
  .p-exhibitor__inner {
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .p-company {
    max-width: 510px;
  }
  .p-venue {
    margin-bottom: 0;
  }
  .p-venue__title {
    font-size: 32px;
    line-height: 32px;
    margin-bottom: 40px;
  }
  .p-venue__img {
    display: flex;
    justify-content: center;
    max-width: 300px;
  }
  .p-exhibitor__title {
    font-size: 32px;
    line-height: 32px;
    margin-bottom: 40px;
  }
  .p-exhibitor__inner {
    -moz-column-gap: 30px;
         column-gap: 30px;
    row-gap: 30px;
  }
  .p-exhibitor__inner__link {
    width: 300px;
  }
  .p-exhibitor__inner__link img {
    height: 100%;
  }
}
@media screen and (max-width: 440px) {
  .p-company {
    max-width: 75vw;
  }
  .p-venue__title {
    font-size: 5.9090909091vw;
    line-height: 7.2727272727vw;
    margin-bottom: 7.9545454545vw;
  }
  .p-venue__img {
    max-width: 68.1818181818vw;
  }
  .p-exhibitor__title {
    font-size: 26px;
    line-height: 7.2727272727vw;
    margin-bottom: 7.9545454545vw;
  }
  .p-exhibitor__inner {
    -moz-column-gap: 6.8181818182vw;
         column-gap: 6.8181818182vw;
    row-gap: 9.0909090909vw;
  }
  .p-exhibitor__inner__link {
    width: 54.5454545455vw;
  }
  .p-exhibitor__inner__link img {
    width: 100%;
  }
}
.p-detail {
  max-width: 1100px;
  margin: 0 auto;
}
.p-detail__box {
  width: 100%;
  padding: 42px 102px 42px 50px;
  background-color: #fff;
  border: 4px solid #000;
  box-shadow: 6px 6px 5px rgba(0, 0, 0, 0.4039215686);
  border-radius: 10px;
  margin-bottom: 50px;
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 30px;
}
.p-detail__box__left {
  max-width: 250px;
  min-width: 200px;
}
.p-detail__box__left img {
  width: 100%;
}
.p-detail__box__right {
  max-width: 672px;
}
.p-detail__box__right__top {
  margin-bottom: 30px;
}
.p-detail__box__right__title {
  font-size: 28px;
  line-height: 38px;
  font-weight: bold;
  margin-bottom: 18px;
}
.p-detail__box__right__subTitle {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 20px;
}
.p-detail__box__right__info {
  font-size: 18px;
  margin-bottom: 10px;
}
.p-detail__box__right__publisher {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 20px;
  align-items: center;
}
.p-detail__box__right__head {
  padding: 7px 20px;
  color: #fff;
  background-color: #5b5b5b;
}
.p-detail__box__right__body {
  font-weight: 600;
}
.p-detail__box__right__tag {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 40px;
}
.p-detail__box__right__text {
  color: #fff;
  font-size: 16px;
  line-height: 18px;
  padding: 7px 20px;
  border-radius: 5px;
}
.p-detail__box__right__text--yellow {
  background-color: #F3DF03;
}
.p-detail__box__right__text--blue {
  background-color: #80D0FF;
}
.p-detail__box__right__text--purple {
  background-color: #8f80ff;
}
.p-detail__box__right__text--orange {
  background-color: #ffa680;
}

@media screen and (max-width: 768px) {
  .p-detail {
    max-width: 668px;
  }
  .p-detail__box {
    width: 100%;
    padding: 30px;
    flex-direction: column;
    gap: 20px;
  }
  .p-detail__box__left {
    width: 200px;
    min-width: 0;
    margin: 0 auto;
  }
  .p-detail__box__right {
    width: 100%;
  }
  .p-detail__box__right__title {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 15px;
  }
  .p-detail__box__right__subTitle {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 15.24px;
  }
  .p-detail__box__right__info {
    font-size: 16px;
    margin-bottom: 10.85px;
  }
  .p-detail__box__right__tag {
    gap: 20px;
    margin-bottom: 25px;
  }
  .p-detail__box__right__text {
    font-size: 16px;
    line-height: 16px;
    padding: 11px 11.6px;
  }
  .p-detail__btn {
    text-align: center;
  }
}
@media screen and (max-width: 440px) {
  .p-detail {
    max-width: 86.3636363636vw;
  }
  .p-detail__box {
    padding: 5.6818181818vw;
    gap: 5.6818181818vw;
  }
  .p-detail__box__left {
    width: 45.4545454545vw;
  }
  .p-detail__box__right__top {
    margin-bottom: 2.2727272727vw;
  }
  .p-detail__box__right__title {
    font-size: 4.5454545455vw;
    line-height: 6.3636363636vw;
    margin-bottom: 3.4090909091vw;
  }
  .p-detail__box__right__subTitle {
    font-size: 3.8636363636vw;
    line-height: 5.9090909091vw;
    margin-bottom: 3.4090909091vw;
  }
  .p-detail__box__right__info {
    font-size: 3.1818181818vw;
    line-height: 5.4545454545vw;
    margin-bottom: 1.8181818182vw;
  }
  .p-detail__box__right__publisher {
    gap: 2.2727272727vw;
    margin-bottom: 3.4090909091vw;
    font-size: 4.0909090909vw;
  }
  .p-detail__box__right__head {
    padding: 2.5vw 2.6363636364vw;
  }
  .p-detail__box__right__tag {
    gap: 4.5454545455vw;
    margin-bottom: 5.6818181818vw;
  }
  .p-detail__box__right__text {
    font-size: 3.6363636364vw;
    line-height: 3.6363636364vw;
    padding: 2.5vw 2.6363636364vw;
  }
}
.p-loop {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  background: #fff;
  border-top: 0.2083333333vw solid #FF4397;
  border-bottom: 0.2083333333vw solid #FF4397;
  color: #FF4397;
}
.p-loop__item {
  display: flex;
  animation: loop 80s linear infinite;
  width: -moz-max-content;
  width: max-content;
}
.p-loop__block {
  display: flex;
  align-items: center;
  min-width: -moz-max-content;
  min-width: max-content;
  margin-right: 2.0833333333vw;
  padding: 1.8055555556vw 0;
}
.p-loop__text {
  text-align: center;
  font-weight: 600;
  font-size: 1.6666666667vw;
  white-space: nowrap;
}
.p-loop__text p {
  font-size: 0.9722222222vw;
  margin: 0;
  padding-top: 0.5555555556vw;
  font-weight: 400;
}
.p-loop__eventspecial {
  font-size: 3.3333333333vw;
  font-weight: 700;
  font-family: "Jost", sans-serif;
  margin: 0 2.7777777778vw;
  white-space: nowrap;
}

@keyframes loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 440px) {
  .p-loop {
    border-top: 0.6818181818vw solid #FF4397;
    border-bottom: 0.6818181818vw solid #FF4397;
  }
  .p-loop__block {
    margin-right: 4.5454545455vw;
    padding: 3.6363636364vw 0;
  }
  .p-loop__text {
    font-size: 4.0909090909vw;
  }
  .p-loop__text p {
    font-size: 2.7272727273vw;
    padding-top: 1.3636363636vw;
  }
  .p-loop__eventspecial {
    font-size: 8.6363636364vw;
    margin: 0 4.5454545455vw;
  }
}
.p-card {
  max-width: 1190px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 25px;
       column-gap: 25px;
  row-gap: 25px;
}
.p-card__box {
  width: 380px;
  background-color: #fff;
  padding: 3.3333333333vw 3.3333333333vw;
}
.p-card__box__head {
  max-width: 300px;
  margin: 0 auto;
  margin-bottom: 15px;
}
.p-card__box__head img {
  width: 100%;
}
.p-card__box__body {
  max-width: 323px;
  margin-bottom: 15px;
}
.p-card__box__body__title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}
.p-card__box__body__publisher {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-size: 17px;
  gap: 10px;
}
.p-card__box__body__company {
  padding: 7px 15px;
  white-space: nowrap;
  color: #fff;
  background-color: #5b5b5b;
}
.p-card__box__body__name {
  font-weight: 600;
}
.p-card__box__body__text {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 10px;
}

@media screen and (max-width: 1289px) {
  .p-card {
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .p-card {
    max-width: 770px;
    row-gap: 30px;
  }
  .p-card__box {
    width: 300px;
    padding: 2.7777777778vw 2.7777777778vw;
  }
  .p-card__box__head {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 440px) {
  .p-card {
    max-width: 440px;
    row-gap: 6.8181818182vw;
  }
  .p-card__box {
    width: 86.3636363636vw;
    padding: 6.8181818182vw 6.8181818182vw;
  }
  .p-card__box__head {
    max-width: 300px;
    margin-bottom: 3.4090909091vw;
  }
  .p-card__box__body {
    max-width: 320;
    margin-bottom: 3.4090909091vw;
  }
  .p-card__box__body__title {
    font-size: 4.0909090909vw;
    margin-bottom: 3.4090909091vw;
  }
  .p-card__box__body__publisher {
    margin-bottom: 3.4090909091vw;
    font-size: 3.8636363636vw;
    gap: 2.2727272727vw;
  }
  .p-card__box__body__company {
    padding: 1.5909090909vw 2.2727272727vw;
  }
  .p-card__box__body__text {
    font-size: 3.6363636364vw;
    line-height: 5.4545454545vw;
    margin-bottom: 2.2727272727vw;
  }
}/*# sourceMappingURL=style.css.map */