* {
  box-sizing: border-box;
}

@media only screen and (max-width: 1024px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}

.sp {
  display: none;
}

.top-page {
  background: #FCEAF2;
}
@media only screen and (max-width: 1024px) {
  .top-page {
    padding-top: 0;
    background-color: #fff;
  }
}

html {
  background: #FCEAF2;
}

body.is-top-page {
  background: #FCEAF2;
}

.float-img {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(-10%);
  }
  50% {
    transform: translateY(10%);
  }
}
.fadeup {
  opacity: 0;
  transform: translateY(100px);
  will-change: opacity, transform;
}

.fadeup.is-animated {
  animation-name: fadeUpAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

@keyframes fadeUpAnime {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .fadeup {
    animation: none;
    opacity: 1;
    transform: translateY(0);
  }
}
.shake-img {
  animation: shake 6s ease-in-out infinite;
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(10px);
  }
}
@media only screen and (max-width: 1024px) {
  @keyframes shake {
    0%, 100% {
      transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
      transform: translateX(-5px);
    }
    20%, 40%, 60%, 80% {
      transform: translateX(5px);
    }
  }
}
.heartbeat-img {
  animation: heartbeat 1.2s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}
.bounce-img {
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
.rollInL-img {
  animation: rollInL 3s ease-in-out infinite;
}

@keyframes rollInL {
  0% {
    opacity: 0;
    transform: rotate3d(0, 0, 1, -120deg);
  }
  100% {
    opacity: 1;
    transform: translate3d(100%, 0, 0);
  }
}
.mv {
  background: #FCEAF2;
  overflow: hidden;
  position: relative;
}
.mv:before {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.mv__inner {
  position: relative;
}

.mv__top {
  position: relative;
}

.mv__image {
  position: relative;
}

.mv__slide {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}

.mv__slide.is-active {
  opacity: 1;
}

.mv__slide img {
  display: block;
  width: 100%;
  height: 100%;
}

.mv__slide img.sp {
  display: none;
}

@media only screen and (min-width: 1025px) {
  .mv__slide img.pc {
    display: block;
  }
  .mv__slide img.sp {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .mv__slide img.pc {
    display: none;
  }
  .mv__slide img.sp {
    display: block;
  }
}
.mv__slide--a img {
  object-fit: cover;
}

.mv__slide--b img {
  object-fit: cover;
}

.mv__bubble {
  position: absolute;
  display: block;
  pointer-events: none;
}

.mv__copy {
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.mv__copy:before {
  content: "";
  display: block;
  background: url(../images/top/top_icon_2.png) no-repeat;
  background-size: contain;
  position: absolute;
  animation: float 4s ease-in-out infinite;
}

.mv__copy--main {
  margin: 0;
}

.mv__copy--main .bg {
  display: table;
  width: fit-content;
  background: #FFFFFF;
}

.mv__copy--main .bg span {
  display: block;
  color: #F478A3;
  font-weight: 500;
  white-space: nowrap;
}

.mv__copy--sub p {
  margin: 0;
  color: #4F3B17;
  font-weight: 400;
}

.mv__bottom {
  position: relative;
  z-index: 1;
}

.mv__bottom-inner {
  position: relative;
}

.mv__info {
  position: relative;
  z-index: 1;
}

.mv__info-title {
  position: relative;
  margin: 0;
  color: #4F3B17;
  font-weight: 500;
}

.mv__info-title::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-image: url("../images/top/info-niji.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.mv__info-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mv__info-link {
  display: flex;
  color: #4F3B17;
  text-decoration: none;
}

.mv__info-date {
  color: #9A8765;
  font-family: "Bpmf Huninn", sans-serif;
  font-weight: 400;
  flex-shrink: 0;
}

.mv__info-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
}

.mv__info-more {
  display: flex;
  align-items: center;
  width: fit-content;
  margin-left: auto;
  background: #F478A3;
  border: 2px solid #F478A3;
  border-radius: 50px;
  color: #FFFFFF;
  font-weight: 500;
  text-decoration: none;
}

.mv__info-more-icon {
  position: relative;
  display: block;
  border-radius: 50%;
  background: #FFFFFF;
  flex-shrink: 0;
}

.mv__info-more-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #F478A3;
  transform: translate(-35%, -50%);
}

.mv__data {
  position: relative;
  z-index: 2;
}

.mv__data-outer {
  position: relative;
  border-radius: 5px;
}

.mv__data-outer::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #FFB6CC;
  border-radius: 5px;
  pointer-events: none;
}

.mv__data-outer::after {
  content: "";
  position: absolute;
  background-image: url("../images/top/top_icon_18.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

.mv__data-card {
  position: relative;
  padding: 0 0 0 15px;
  border-top: 1px solid #E8E8E8;
  border-bottom: 1px solid #E8E8E8;
}

.mv__data-card::before {
  content: "";
  position: absolute;
  top: -12px;
  bottom: 0px;
  left: -33px;
  width: 10px;
  background-image: radial-gradient(circle 5px, #EDEDED 99%, transparent 100%);
  background-size: 10px 35px;
  background-repeat: repeat-y;
  z-index: 10;
}

.mv__data-section {
  border-bottom: 1px solid #E8E8E8;
}

.mv__data-section--last {
  border-bottom: 0;
}

.mv__data-head {
  display: flex;
  align-items: center;
}

.mv__data-title {
  margin: 0;
  color: #4F3B17;
  font-weight: 500;
}

.mv__data-icon {
  position: relative;
  display: block;
  flex-shrink: 0;
}

.mv__data-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.mv__data-icon--facility::before {
  background-image: url("../images/top/top_icon_4.png");
}

.mv__data-icon--reserve::before {
  background-image: url("../images/top/data-icon02.png");
}

.mv__data-icon--time::before {
  background-image: url("../images/top/data-icon03.png");
}

.mv__data-body {
  margin: 0;
  color: #4F3B17;
  font-weight: 400;
}
.mv__data-body a {
  margin: 0;
  color: #4F3B17;
  font-weight: 400;
}

.mv__data-map-btn {
  display: flex;
  align-items: center;
  width: fit-content;
  background: #F478A3;
  border: 2px solid #F478A3;
  border-radius: 50px;
  color: #FFFFFF;
  font-weight: 500;
  text-decoration: none;
}

.mv__data-map-btn::before {
  content: "";
  display: block;
  background: url(../images/hf/pin_white.png) no-repeat;
  background-size: contain;
  width: 23px;
  height: 23px;
  top: 1px;
  position: relative;
}

@media only screen and (min-width: 1025px) {
  .mv {
    --mv-scale: 1;
    padding-bottom: 130px;
  }
  .mv:before {
    background: url(../images/top/mv-nami_pc.png) no-repeat;
    background-size: 100% 100%;
    height: 38px;
  }
  .mv__top {
    display: grid;
    grid-template-rows: 636px 185px;
  }
  .mv__image {
    width: 100%;
    max-width: 1471px;
    margin: 0 auto;
    grid-column: 1;
    grid-row: 1/3;
  }
  .mv__slide--a {
    top: 0;
    left: 0;
    width: 1043px;
    max-width: 70%;
    aspect-ratio: 1043/788;
    transform: scale(var(--mv-scale));
    transform-origin: top left;
  }
  .mv__slide--a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .mv__slide--b {
    top: 30px;
    right: 0px;
    width: 487px;
    max-width: 32%;
    aspect-ratio: 487/370;
    overflow: hidden;
    transform: scale(var(--mv-scale));
    transform-origin: top right;
  }
  .mv__slide--b img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .mv__bubble--first {
    top: 330px;
    right: 45px;
    width: 118px;
    height: 110px;
    object-fit: contain;
    transform: scale(var(--mv-scale));
    transform-origin: top right;
  }
}
@media only screen and (min-width: 1025px) and (max-height: 900px) {
  .mv__image {
    max-width: 1200px;
  }
  .mv__top {
    grid-template-rows: 572px 185px;
  }
}
@media only screen and (min-width: 1025px) and (max-height: 800px) {
  .mv__top {
    grid-template-rows: 509px 185px;
  }
}
@media only screen and (min-width: 1025px) and (max-height: 700px) {
  .mv__top {
    grid-template-rows: 445px 185px;
  }
}
@media only screen and (min-width: 1025px) {
  .mv__copy {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    max-width: 1280px;
    margin: -70px auto 0;
    padding-left: 100px;
  }
  .mv__copy:before {
    width: 75px;
    height: 132px;
    top: -30px;
    left: 0;
    z-index: 10;
  }
  .mv__copy-inner {
    width: 540px;
  }
  .mv__copy--main {
    margin-bottom: 20px;
  }
  .mv__copy--main .bg {
    height: 66px;
    margin-bottom: 5px;
    padding: 0 20px 0;
    border-radius: 10px;
  }
  .mv__copy--main .bg span {
    font-size: 36px;
    line-height: 66px;
    letter-spacing: 3.6px;
  }
  .mv__copy--sub p {
    font-size: 16px;
    line-height: 34px;
    letter-spacing: 0.8px;
  }
  .mv__bottom {
    margin-top: 40px;
  }
  .mv__bottom-inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
  }
  .mv__info {
    width: 565px;
    border-radius: 15px;
    padding-left: 15px;
    position: relative;
  }
  .mv__info:before {
    content: "";
    display: block;
    width: 200%;
    height: 106%;
    background-color: #fff;
    border-radius: 0px 30px 30px 0px;
    z-index: -1;
    position: absolute;
    top: 16px;
    right: -70px;
  }
  .mv__info-title {
    margin-bottom: 25px;
    font-size: 24px;
    line-height: 35px;
    letter-spacing: 1.44px;
  }
  .mv__info-title::before {
    width: 40px;
    height: 26px;
    margin-right: 12px;
    margin-top: -6px;
  }
  .mv__info-item {
    margin-bottom: 7px;
  }
  .mv__info-link {
    gap: 24px;
    transition: color 0.25s ease, transform 0.25s ease;
  }
  .mv__info-link:hover {
    color: #F478A3;
    transform: translateX(8px);
  }
  .mv__info-link:hover .mv__info-date {
    color: #F478A3;
  }
  .mv__info-date {
    width: 88px;
    font-size: 15px;
    line-height: 23px;
    letter-spacing: 1.2px;
    padding-top: 3px;
  }
  .mv__info-text {
    font-size: 15px;
    line-height: 26px;
    letter-spacing: 0.75px;
  }
  .mv__info-more {
    height: 38px;
    margin-top: 20px;
    padding: 0 23px 1px 13px;
    gap: 8px;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 0.9px;
    transition: all 0.4s ease;
  }
  .mv__info-more-icon {
    width: 23px;
    height: 23px;
    transition: all 0.4s ease;
  }
  .mv__info-more:hover {
    background: #FFFFFF;
    color: #F478A3;
  }
  .mv__info-more:hover .mv__info-more-icon {
    background: #F478A3;
  }
  .mv__info-more:hover .mv__info-more-icon::before {
    border-left: 6px solid #fff;
  }
  .mv__data {
    position: absolute;
    top: -265px;
    right: -20px;
    width: 562px;
  }
  .mv__data-outer {
    padding: 30px 30px 30px 60px;
    background-color: #fff;
    border: 1px solid #E8E8E8;
    border-radius: 5px;
  }
  .mv__data-outer::before {
    top: -2px;
    right: 6px;
    bottom: -21px;
    left: 4px;
    transform: rotate(4deg);
    transform-origin: center;
  }
  .mv__data-outer::after {
    right: 18px;
    bottom: 0;
    width: 80px;
    height: 71px;
  }
  .mv__data-section {
    padding: 20px 0;
  }
  .mv__data-head {
    gap: 8px;
    float: left;
    min-height: 32px;
  }
  .mv__data-title {
    font-size: 17px;
    line-height: 25px;
    letter-spacing: 1.36px;
  }
  .mv__data-icon {
    width: 25px;
    height: 31px;
  }
  .mv__data-icon::before {
    inset: 0;
  }
  .mv__data-body {
    padding-left: 169px;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.8px;
  }
  .mv__data-body a {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.8px;
  }
  .mv__data-map-btn {
    min-width: 150px;
    min-height: 36px;
    margin-top: 8px;
    margin-left: 172px;
    padding: 0 18px 1px 14px;
    gap: 8px;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 0.9px;
    transition: background 0.4s ease, color 0.4s ease;
  }
  .mv__data-map-btn::before {
    width: 23px;
    height: 23px;
    transition: background 0.4s ease, color 0.4s ease;
  }
  .mv__data-map-btn:hover {
    background: #FFFFFF;
    color: #F478A3;
  }
  .mv__data-map-btn:hover::before {
    background: url(../images/hf/pin_pink.png) no-repeat;
    background-size: contain;
  }
}
@media only screen and (max-width: 1024px) {
  .mv {
    padding-bottom: 61px;
  }
  .mv:before {
    background: url(../images/top/mv-nami_smp.png) no-repeat;
    background-size: 100% 100%;
    height: 19px;
  }
  .mv__top {
    min-height: 612px;
    padding-top: 26px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  .mv__image {
    height: 398px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  .mv__image:before {
    content: "";
    display: block;
    width: 32px;
    height: 56px;
    background: url(../images/top/top_icon_2.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: 100px;
    left: 20px;
    animation: float 4s ease-in-out infinite;
  }
  .mv__slide--a {
    top: 0;
    right: -60px;
    width: 392px;
    height: 297px;
  }
  .mv__slide--a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .mv__slide--b {
    top: 250px;
    left: -30px;
    width: 207px;
    height: 157px;
    overflow: hidden;
  }
  .mv__bubble--first {
    top: 270px;
    right: 18px;
    width: 66px;
    height: 61px;
    object-fit: contain;
  }
  .mv__copy {
    width: 100%;
    margin-top: -17px;
    padding: 0 20px;
  }
  .mv__copy:before {
    display: none;
  }
  .mv__copy--main {
    margin-bottom: 20px;
  }
  .mv__copy--main .bg {
    height: 40px;
    margin-bottom: 3px;
    padding: 2px 10px 0;
    border-radius: 5px;
  }
  .mv__copy--main .bg span {
    font-size: 23px;
    line-height: 34px;
    letter-spacing: 2.3px;
  }
  .mv__copy--sub p {
    font-size: 15px;
    line-height: 23px;
    letter-spacing: 0.45px;
  }
  .mv__bottom-inner {
    width: 330px;
    margin: 0 auto;
    display: flex;
    flex-direction: column-reverse;
    gap: 70px;
  }
  .mv__info {
    order: 2;
    width: 323px;
    border-radius: 15px;
    position: relative;
  }
  .mv__info:before {
    content: "";
    display: block;
    width: 300%;
    height: 100%;
    position: absolute;
    background-color: #fff;
    border-radius: 0 15px 15px 0;
    top: 15px;
    right: -23px;
    z-index: -1;
  }
  .mv__info-title {
    margin-bottom: 14px;
    font-size: 17px;
    line-height: 27px;
    letter-spacing: 1.02px;
  }
  .mv__info-title::before {
    width: 30px;
    height: 19px;
    margin: 0 8px 5px 0;
  }
  .mv__info-item {
    margin-bottom: 7px;
  }
  .mv__info-link {
    display: block;
  }
  .mv__info-date {
    display: block;
    margin-bottom: 2px;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 1px;
  }
  .mv__info-text {
    display: block;
    max-width: 100%;
    font-size: 15px;
    line-height: 21px;
    letter-spacing: 0.45px;
  }
  .mv__info-more {
    min-height: 35px;
    margin-top: 10px;
    padding: 0 16px 1px 10px;
    gap: 6px;
    font-size: 15px;
    line-height: 18px;
    letter-spacing: 0.45px;
  }
  .mv__info-more-icon {
    width: 15px;
    height: 15px;
  }
  .mv__data {
    order: 1;
    width: 100%;
  }
  .mv__data-outer {
    background: #fff;
    padding: 0;
  }
  .mv__data-outer::before {
    top: -3px;
    right: 0px;
    bottom: -10px;
    transform: rotate(3deg);
    transform-origin: center;
    border-radius: 2.5px;
  }
  .mv__data-card {
    padding: 20px 30px 20px 36px;
  }
  .mv__data-outer::after {
    right: 9px;
    bottom: 0;
    width: 55px;
    height: 49px;
  }
  .mv__data-card::before {
    top: 15px;
    bottom: 11px;
    left: 15px;
    width: 15px;
    background-size: 11px 25px;
  }
  .mv__data-section {
    padding: 15px 16px 14px 15px;
  }
  .mv__data-section:first-child {
    border-top: 1px solid #E8E8E8;
  }
  .mv__data-section:last-child {
    border-bottom: 1px solid #E8E8E8;
  }
  .mv__data-head {
    gap: 6px;
    margin-bottom: 8px;
  }
  .mv__data-title {
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 1.12px;
  }
  .mv__data-icon {
    width: 18px;
    height: 22px;
  }
  .mv__data-icon::before {
    inset: 0;
  }
  .mv__data-body {
    font-size: 13px;
    line-height: 24px;
    letter-spacing: 0.65px;
  }
  .mv__data-body a {
    font-size: 13px;
    line-height: 24px;
    letter-spacing: 0.65px;
  }
  .mv__data-map-btn {
    min-height: 30px;
    margin-top: 8px;
    padding: 0 13px 1px 10px;
    gap: 6px;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 0.78px;
  }
  .mv__data-map-btn::before {
    width: 16px;
    height: 16px;
  }
}
.first__inner {
  margin-inline: auto;
}

.first__lead {
  position: relative;
  display: flex;
  align-items: center;
  background: #EFFAFD;
  border: 2px dashed #74CDD8;
}

.first__read {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.first__read-label {
  display: block;
  text-align: center;
}

.first__text {
  text-align: center;
}

.first__title {
  margin: 0;
  color: #1AAED3;
  font-weight: 500;
}

.first__desc {
  margin: 0;
  color: #4F3B17;
  font-weight: 400;
}

.first__click {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 0;
  background: transparent;
  color: #F478A3;
  font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
  cursor: pointer;
}

.first__click-icon {
  position: relative;
  display: block;
  border: 2px solid #F478A3;
  border-radius: 50%;
  animation: first-heartbeat 1.5s ease-in-out infinite;
}

.first__click-icon::before {
  content: "";
  position: absolute;
  border-right: 3px solid #F478A3;
  border-bottom: 3px solid #F478A3;
  transform: rotate(45deg);
}

.first__click-text {
  display: block;
  font-weight: 400;
}

.first__panel {
  margin-inline: auto;
  background: #EFFAFD;
  border: 2px dashed #74CDD8;
  border-top: 0;
}

.first__panel-lead {
  margin: 0;
  color: #4F3B17;
  text-align: center;
}

.first__steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.first__step {
  display: flex;
  align-items: flex-start;
}

.first__step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  flex-direction: column;
  border: 2px dotted #1AAED3;
  border-radius: 50%;
  color: #1AAED3;
  font-family: "Bpmf Huninn", sans-serif;
  font-weight: 400;
  line-height: 1;
  background-color: #fff;
}

.first__step-num span {
  font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
  font-weight: 400;
}

.first__step-title {
  margin: 0;
  color: #4F3B17;
  font-weight: 500;
}

.first__step-text {
  margin: 0;
  color: #4F3B17;
  font-weight: 400;
}

.first__step-tel {
  margin: 0;
  color: #F478A3;
  font-family: "Bpmf Huninn", sans-serif;
  font-weight: 400;
}

.first__step-tel a {
  color: inherit;
  text-decoration: none;
}

.first__panel-docs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #F478A3;
  color: #FFFFFF;
  font-weight: 700;
  text-decoration: none;
}

.first__panel-docs-icon {
  position: relative;
  display: block;
  flex-shrink: 0;
  border-radius: 50%;
  background: #FFFFFF;
}

.first__panel-docs-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 8px;
  background-color: #F478A3;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 8'%3E%3Cpath d='M1 .8C1 .2 1.7-.1 2.2.3l3 2.6c.6.5.6 1.5 0 2l-3 2.6C1.7 7.9 1 7.6 1 7V.8Z' fill='%23000'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 8'%3E%3Cpath d='M1 .8C1 .2 1.7-.1 2.2.3l3 2.6c.6.5.6 1.5 0 2l-3 2.6C1.7 7.9 1 7.6 1 7V.8Z' fill='%23000'/%3E%3C/svg%3E") center/contain no-repeat;
  transform: translate(-38%, -50%);
}

.first__panel-more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  margin-inline: auto;
  border-radius: 999px;
  background: #F478A3;
  color: #FFFFFF;
  font-weight: 700;
  text-decoration: none;
}

.first__panel-more-icon {
  position: relative;
  display: block;
  flex-shrink: 0;
  border-radius: 50%;
  background: #FFFFFF;
}

.first__panel-more-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 8px;
  background-color: #F478A3;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 8'%3E%3Cpath d='M1 .8C1 .2 1.7-.1 2.2.3l3 2.6c.6.5.6 1.5 0 2l-3 2.6C1.7 7.9 1 7.6 1 7V.8Z' fill='%23000'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 8'%3E%3Cpath d='M1 .8C1 .2 1.7-.1 2.2.3l3 2.6c.6.5.6 1.5 0 2l-3 2.6C1.7 7.9 1 7.6 1 7V.8Z' fill='%23000'/%3E%3C/svg%3E") center/contain no-repeat;
  transform: translate(-38%, -50%);
}

.first__close {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  border: 0;
  border-radius: 8px 8px 0 0;
  background: #74CDD8;
  color: #FFFFFF;
  font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
  font-weight: 700;
  cursor: pointer;
}

.first__close span {
  display: block;
  width: 14px;
  height: 12px;
  font-size: 0;
  line-height: 0;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 24'%3E%3Cpath d='M12.32 3.36c.8-1.2 2.56-1.2 3.36 0l11.56 17.2c.9 1.34-.06 3.14-1.68 3.14H2.44c-1.62 0-2.58-1.8-1.68-3.14L12.32 3.36Z' fill='%23000'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 24'%3E%3Cpath d='M12.32 3.36c.8-1.2 2.56-1.2 3.36 0l11.56 17.2c.9 1.34-.06 3.14-1.68 3.14H2.44c-1.62 0-2.58-1.8-1.68-3.14L12.32 3.36Z' fill='%23000'/%3E%3C/svg%3E") center/contain no-repeat;
}

.first.is-open .first__lead {
  border-bottom: 0;
  border-radius: 80px 80px 0 0;
}

.first.is-open .first__click {
  display: none;
}

.first__buttons {
  display: flex;
  justify-content: center;
}

.first__btn {
  display: flex;
  align-items: center;
  border-radius: 100px;
  color: #4F3B17;
  text-decoration: none;
}

.first__btn--tel {
  background: #FFB6CC;
}

.first__btn--guide {
  background: #F8DE83;
}

.first__btn--docs {
  background: #9AE0D5;
}

.first__btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: #FFFFFF;
}

.first__btn-icon::before {
  font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
  font-weight: 700;
}

.first__btn--tel .first__btn-icon::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url(../images/top/top_icon_10.png) no-repeat;
  background-size: contain;
}

.first__btn--guide .first__btn-icon::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url(../images/top/top_icon_11.png) no-repeat;
  background-size: contain;
}

.first__btn--docs .first__btn-icon::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url(../images/top/top_icon_12.png) no-repeat;
  background-size: contain;
  position: relative;
}

.first__btn-main {
  display: block;
  font-weight: 500;
}

.first__btn-sub {
  display: block;
  color: #FFFFFF;
  font-family: "Bpmf Huninn", sans-serif;
  font-weight: 400;
}

.first__btn-arrow {
  display: block;
  width: 11px;
  height: 14px;
  margin-left: auto;
  background-color: #FFFFFF;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 14'%3E%3Cpath d='M1.5 1.3C1.5.5 2.4.1 3.1.6l7 5.4c.6.5.6 1.5 0 2l-7 5.4c-.7.5-1.6.1-1.6-.7V1.3Z' fill='%23000'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 14'%3E%3Cpath d='M1.5 1.3C1.5.5 2.4.1 3.1.6l7 5.4c.6.5.6 1.5 0 2l-7 5.4c-.7.5-1.6.1-1.6-.7V1.3Z' fill='%23000'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
}

.aboutus {
  position: relative;
  background: #FCEAF2 0% 0% no-repeat padding-box;
  position: relative;
}
.aboutus:before {
  content: "";
  display: block;
  width: 100%;
  height: 461px;
  background: transparent linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%) 0% 0% no-repeat padding-box;
  position: absolute;
  top: 0;
  left: 0;
}
.aboutus:after {
  content: "";
  display: block;
  background: url(../images/top/train-cars.png) no-repeat;
  background-size: contain;
  position: absolute;
}

.aboutus__inner {
  position: relative;
  margin-inline: auto;
  text-align: center;
}

.aboutus__mark {
  margin-inline: auto;
  background-image: url("../images/top/top_icon_1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.aboutus__title {
  margin: 0;
  color: #4F3B17;
  font-weight: 500;
}

.aboutus__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #F478A3;
  font-weight: 500;
}

.aboutus__copy span {
  display: block;
  width: fit-content;
  border-bottom: 1px dashed #9A8765;
}

.aboutus__text p {
  margin: 0;
  color: #4F3B17;
  font-weight: 400;
}

.aboutus__slider {
  overflow: hidden;
}

.aboutus__track {
  display: flex;
  width: max-content;
  animation: aboutus-loop 36s linear infinite;
}

.aboutus__track img {
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

@keyframes first-heartbeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.12);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.12);
  }
  70% {
    transform: scale(1);
  }
}
@keyframes aboutus-loop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media only screen and (min-width: 1025px) {
  .first {
    padding: 70px 0 0;
    background-color: #fff;
  }
  .first__inner {
    width: 1080px;
  }
  .first__lead {
    width: 1000px;
    margin: 0 auto;
    height: 130px;
    padding: 0 65px 0 130px;
    border-radius: 100px;
  }
  .first__read {
    position: absolute;
    width: 124px;
    height: 144px;
    left: 40px;
  }
  .first__read img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .first__read img.sp {
    display: none;
  }
  .first__read img.pc {
    display: block;
  }
  .first__text {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
  .first__title {
    margin-bottom: 13px;
    font-size: 26px;
    line-height: 38px;
    letter-spacing: 2.6px;
  }
  .first__desc {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.8px;
  }
  .first__click {
    margin-left: auto;
    width: 66px;
    height: 89px;
    transition: opacity 0.2s ease;
  }
  .first__click img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.2s ease;
    animation: heartbeat 1s ease-in-out infinite;
  }
  .first__click:hover img {
    opacity: 0.5;
  }
  .first__click:hover {
    opacity: 0.5;
  }
  .first__click-icon {
    width: 44px;
    height: 44px;
  }
  .first__click-icon::before {
    top: 9px;
    left: 15px;
    width: 12px;
    height: 19px;
  }
  .first__panel {
    width: 1000px;
    padding: 0 95px 0;
    border-radius: 0 0 80px 80px;
  }
  .first__panel-lead {
    width: 720px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid #CDE7ED;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0.8px;
  }
  .first__steps {
    width: 780px;
    margin: 36px auto 0;
  }
  .first__step {
    gap: 28px;
  }
  .first__step + .first__step {
    margin-top: 20px;
  }
  .first__step-num {
    width: 56px;
    height: 56px;
    margin-top: 2px;
    font-size: 27px;
    letter-spacing: 1.25px;
  }
  .first__step-num span {
    margin-bottom: 3px;
    font-size: 12px;
    line-height: 10px;
    letter-spacing: 0.5px;
  }
  .first__step-title {
    margin: 15px 0 24px;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: 1.1px;
  }
  .first__step-text {
    font-size: 15px;
    line-height: 26px;
    letter-spacing: 0.75px;
  }
  .first__step-tel {
    margin-top: 15px;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 1.2px;
    font-family: "Bpmf Huninn", sans-serif;
  }
  .first__step-tel a {
    font-family: "Bpmf Huninn", sans-serif;
    font-size: 25px;
  }
  .first__panel-docs {
    min-height: 39px;
    margin-top: 15px;
    padding: 0 19px;
    gap: 8px;
    font-size: 13px;
    line-height: 19px;
    letter-spacing: 0.78px;
    border: 2px solid #F478A3;
    box-sizing: border-box;
    transition: all 0.4s ease;
  }
  .first__panel-docs-icon {
    width: 20px;
    height: 20px;
    transition: all 0.4s ease;
  }
  .first__panel-docs:hover {
    background: #FFFFFF;
    color: #F478A3;
  }
  .first__panel-docs:hover .first__panel-docs-icon {
    background: #F478A3;
  }
  .first__panel-docs:hover .first__panel-docs-icon::before {
    background-color: #FFFFFF;
  }
  .first__panel-more {
    min-width: 347px;
    min-height: 59px;
    margin-top: 34px;
    padding: 0 35px;
    gap: 11px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.96px;
    border: 2px solid #F478A3;
    box-sizing: border-box;
    transition: all 0.4s ease;
  }
  .first__panel-more-icon {
    width: 24px;
    height: 24px;
    transition: all 0.4s ease;
  }
  .first__panel-more:hover {
    background: #FFFFFF;
    color: #F478A3;
  }
  .first__panel-more:hover .first__panel-more-icon {
    background: #F478A3;
  }
  .first__panel-more:hover .first__panel-more-icon::before {
    background-color: #FFFFFF;
  }
  .first__close {
    width: 282px;
    min-height: 35px;
    margin-top: 35px;
    margin-bottom: -2px;
    gap: 10px;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1.4px;
    border: 2px solid #74CDD8;
    box-sizing: border-box;
    transition: all 0.3s ease;
  }
  .first__close:hover {
    background: #FFFFFF;
    color: #74CDD8;
  }
  .first__buttons {
    gap: 20px;
    margin-top: 63px;
  }
  .first__btn {
    width: 345px;
    min-height: 90px;
    padding: 10px 28px 10px 15px;
  }
  .first__btn-icon {
    width: 70px;
    height: 70px;
    margin-right: 15px;
  }
  .first__btn-icon::before {
    font-size: 18px;
    letter-spacing: 0.4px;
  }
  .first__btn-main {
    font-size: 19px;
    line-height: 28px;
    letter-spacing: 1.14px;
  }
  .first__btn-arrow.sp {
    display: none;
  }
  .first__btn--tel .first__btn-main {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.96px;
  }
  .first__btn-sub {
    margin-top: 4px;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 0.65px;
  }
  .first__btn-sub .tel {
    font-size: 20px;
    line-height: 20px;
    font-family: "Bpmf Huninn", serif;
    letter-spacing: 1px;
  }
  .first__btn--guide,
  .first__btn--docs {
    transition: all 0.4s ease;
    border: solid 2px transparent;
  }
  .first__btn--guide:hover,
  .first__btn--docs:hover {
    background: #FFFFFF;
  }
  .first__btn--guide:hover {
    border: solid 2px #F8DE83;
  }
  .first__btn--guide:hover .first__btn-arrow {
    background-color: #F8DE83;
  }
  .first__btn--docs:hover {
    border: solid 2px #9AE0D5;
  }
  .first__btn--docs:hover .first__btn-arrow {
    background-color: #9AE0D5;
  }
  .aboutus {
    padding: 90px 0 60px;
  }
  .aboutus:after {
    width: 540px;
    height: 125px;
    bottom: -20px;
    right: 10px;
  }
  .aboutus__inner {
    width: 1000px;
  }
  .aboutus__mark {
    width: 82px;
    height: 77px;
    margin-bottom: 20px;
  }
  .aboutus__title {
    margin-bottom: 40px;
    font-size: 32px;
    line-height: 46px;
    letter-spacing: 1.92px;
  }
  .aboutus__copy {
    gap: 10px;
    margin-bottom: 40px;
    font-size: 28px;
    line-height: 40px;
    letter-spacing: 2.8px;
  }
  .aboutus__copy span {
    padding: 0 8px 3px;
  }
  .aboutus__copy span.sp {
    display: none;
  }
  .aboutus__text {
    display: flex;
    flex-direction: column;
    gap: 17px;
  }
  .aboutus__text p {
    font-size: 16px;
    line-height: 40px;
    letter-spacing: 0.8px;
    text-align: center;
  }
  .aboutus__slider {
    margin-top: 75px;
  }
  .aboutus__track {
    gap: 54px;
    padding-left: 20px;
  }
  .aboutus__track img {
    width: 1930px;
    height: 310px;
  }
}
@media only screen and (max-width: 1024px) {
  .first {
    padding: 100px 0 0;
    background-color: #fff;
  }
  .first__inner {
    width: 370px;
    margin: 0 auto;
  }
  .first__lead {
    position: relative;
    min-height: 125px;
    padding: 22px 24px 20px;
    border-radius: 150px;
    flex-direction: column;
    justify-content: center;
  }
  .first__read {
    position: absolute;
    bottom: calc(100% - 14px);
    left: 50%;
    width: 72px;
    height: 81px;
    transform: translateX(-50%);
  }
  .first__read img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .first__read img.sp {
    display: block;
  }
  .first__read img.pc {
    display: none;
  }
  .first__read img {
    width: 100%;
    height: auto;
  }
  .first__title {
    margin-bottom: 8px;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 2px;
  }
  .first__desc {
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 0.45px;
    text-align: center;
  }
  .first__desc .sp {
    display: block;
  }
  .first__click {
    position: absolute;
    top: 34px;
    right: 22px;
    width: 39px;
    height: 57px;
    margin-top: 0;
    gap: 3px;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 0.65px;
  }
  .first__click img {
    width: 100%;
    height: auto;
    animation: heartbeat 1s ease-in-out infinite;
  }
  .first__click-icon {
    width: 34px;
    height: 34px;
  }
  .first__click-icon::before {
    top: 7px;
    left: 12px;
    width: 9px;
    height: 15px;
  }
  .first__panel {
    padding: 0 39px 0;
    border-radius: 0 0 45px 45px;
  }
  .first__panel-lead {
    padding-top: 20px;
    border-top: 1px solid #CDE7ED;
    font-size: 13px;
    line-height: 22px;
    letter-spacing: 0.65px;
    text-align: left;
  }
  .first__steps {
    margin-top: 28px;
  }
  .first__step {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 15px 18px;
  }
  .first__step + .first__step {
    margin-top: 20px;
  }
  .first__step-num {
    width: 42px;
    height: 42px;
    margin: 0;
    font-size: 20px;
    letter-spacing: 1px;
  }
  .first__step-num span {
    margin-bottom: 2px;
    font-size: 8px;
    line-height: 8px;
    letter-spacing: 0.4px;
  }
  .first__step-title {
    align-self: center;
    margin-bottom: 0;
    font-size: 17px;
    line-height: 25px;
    letter-spacing: 0.85px;
    white-space: nowrap;
  }
  .first__step-body {
    display: contents;
  }
  .first__step-text {
    grid-column: 1/-1;
    font-size: 13px;
    line-height: 22px;
    letter-spacing: 0.39px;
  }
  .first__step-tel {
    grid-column: 1/-1;
    font-size: 13px;
    line-height: 24px;
    letter-spacing: 1px;
    font-family: "Bpmf Huninn", sans-serif;
  }
  .first__step-tel a {
    font-size: 22.5px;
    font-family: "Bpmf Huninn", sans-serif;
  }
  .first__panel-docs {
    grid-column: 1/-1;
    justify-self: start;
    min-height: 34px;
    padding: 0 14px;
    gap: 7px;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.72px;
  }
  .first__panel-docs-icon {
    width: 18px;
    height: 18px;
  }
  .first__panel-more {
    width: 270px;
    min-height: 50px;
    margin-top: 20px;
    padding: 0 22px;
    gap: 9px;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.84px;
  }
  .first__panel-more-icon {
    width: 20px;
    height: 20px;
  }
  .first__close {
    width: 210px;
    min-height: 34px;
    margin-top: 45px;
    margin-bottom: -2px;
    gap: 8px;
    font-size: 13px;
    line-height: 19px;
    letter-spacing: 1.3px;
  }
  .first__buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 45px;
  }
  .first__btn {
    width: 300px;
    min-height: 60px;
    padding: 8px 18px 8px 10px;
  }
  .first__btn-icon {
    width: 44px;
    height: 44px;
    margin-right: 16px;
  }
  .first__btn-icon::before {
    font-size: 15px;
  }
  .first__btn--tel .first__btn-icon::before {
    width: 30px;
    height: 30px;
  }
  .first__btn--guide .first__btn-icon::before {
    width: 30px;
    height: 30px;
  }
  .first__btn--docs .first__btn-icon::before {
    width: 30px;
    height: 30px;
  }
  .first__btn-main {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.96px;
  }
  .first__btn--tel .first__btn-main {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.84px;
  }
  .first__btn-sub {
    margin-top: 2px;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.65px;
  }
  .first__btn-sub .tel {
    font-size: 18px;
  }
  .first__btn-arrow {
    width: 7px;
    height: 10px;
  }
  .aboutus {
    padding: 48px 20px 52px;
  }
  .aboutus:after {
    width: 270px;
    height: 63px;
    right: 0;
    bottom: -30px;
  }
  .aboutus__inner {
    max-width: 400px;
  }
  .aboutus__mark {
    width: 41px;
    height: 39px;
    margin-bottom: 20px;
  }
  .aboutus__title {
    margin-bottom: 24px;
    font-size: 25px;
    line-height: 34px;
    letter-spacing: 1.5px;
  }
  .aboutus__copy {
    gap: 7px;
    margin-bottom: 33px;
    font-size: 21px;
    line-height: 30px;
    letter-spacing: 2.1px;
  }
  .aboutus__copy .sp {
    display: block;
  }
  .aboutus__copy span {
    padding-bottom: 2px;
  }
  .aboutus__text {
    width: 325px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .aboutus__text p {
    font-size: 15px;
    line-height: 27px;
    letter-spacing: 0.45px;
  }
  .aboutus__slider {
    margin-top: 30px;
    margin-inline: -20px;
  }
  .aboutus__track {
    gap: 24px;
    padding-left: 12px;
    animation-duration: 28s;
  }
  .aboutus__track img {
    width: 965px;
    height: 155px;
  }
}
.conditions {
  background: #FFFFFF;
}

.conditions__inner {
  margin-inline: auto;
}

.conditions__card {
  position: relative;
  background: #F7F7F7;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.16);
}

.conditions__balloon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4F3B17;
  text-align: center;
  font-weight: 500;
}

.conditions__title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: #4F3B17;
  font-weight: 500;
}

.conditions__title-icon {
  position: relative;
  display: block;
  flex-shrink: 0;
}
.conditions__title-icon img {
  vertical-align: baseline;
}

.conditions__list {
  margin: 0;
}

.conditions__row {
  display: flex;
  border-top: 1px solid #D8D8D8;
}

.conditions__row:last-child {
  border-bottom: 1px solid #D8D8D8;
}

.conditions__row dt {
  color: #F478A3;
  font-weight: 700;
  flex-shrink: 0;
}

.conditions__row dd {
  margin: 0;
  color: #4F3B17;
  font-weight: 400;
}

.conditions__note {
  margin: 0;
  color: #4F3B17;
  font-weight: 400;
  text-indent: -1em;
  padding-left: calc(1em + 27px);
}

.conditions__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-inline: auto;
  background: #F478A3;
  border: 2px solid #F478A3;
  border-radius: 100px;
  color: #FFFFFF;
  font-weight: 700;
  text-decoration: none;
}

.conditions__btn-icon {
  position: relative;
  display: block;
  border-radius: 50%;
  background: #FFFFFF;
  flex-shrink: 0;
}

.conditions__btn-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #F478A3;
  transform: translate(-35%, -50%);
}

@media only screen and (min-width: 1025px) {
  .conditions {
    padding: 112px 0 90px;
  }
  .conditions__inner {
    width: 1000px;
  }
  .conditions__card {
    min-height: 628px;
    padding: 90px 150px 50px;
    border-radius: 20px;
    box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.1607843137);
  }
  .conditions__balloon {
    top: -95px;
    left: 40px;
    width: 215px;
    height: 198px;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.8px;
    padding-bottom: 6px;
    background: url(../images/top/conditions-balloon.png) no-repeat;
    background-size: cover;
  }
  .conditions__title {
    gap: 20px;
    margin-bottom: 38px;
    font-size: 32px;
    line-height: 46px;
    letter-spacing: 1.92px;
  }
  .conditions__title-icon {
    width: 40px;
    height: 40px;
  }
  .conditions__list {
    width: 700px;
    margin-inline: auto;
  }
  .conditions__row {
    min-height: 64px;
    align-items: center;
  }
  .conditions__row:nth-child(2) {
    min-height: 90px;
  }
  .conditions__row dt {
    width: 203px;
    padding-left: 30px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1.6px;
  }
  .conditions__row dd {
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.8px;
  }
  .conditions__note {
    margin-top: 30px;
    font-size: 15px;
    line-height: 27px;
    letter-spacing: 0.75px;
  }
  .conditions__btn {
    min-height: 77px;
    margin-top: 36px;
    padding: 0 80px;
    gap: 10px;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 1.08px;
    transition: all 0.4s ease;
  }
  .conditions__btn-icon {
    width: 22px;
    height: 22px;
  }
  .conditions__btn:hover {
    background: #FFFFFF;
    color: #F478A3;
  }
  .conditions__btn:hover .conditions__btn-icon {
    background: #F478A3;
  }
  .conditions__btn:hover .conditions__btn-icon::before {
    border-left: 8px solid #fff;
  }
}
@media only screen and (max-width: 1024px) {
  .conditions {
    background: #F7F7F7;
    width: 100%;
    max-width: 400px;
    margin: 100px auto 0;
    border-radius: 20px;
    padding: 70px 0 45px;
  }
  .conditions__inner {
    width: 350px;
    margin: 0 auto;
  }
  .conditions__card {
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }
  .conditions__balloon {
    top: -145px;
    left: -12px;
    width: 154px;
    height: 142px;
    font-size: 13px;
    line-height: 19px;
    letter-spacing: 1.04px;
    background: url(../images/top/conditions-balloon.png) no-repeat center/contain;
  }
  .conditions__balloon::before,
  .conditions__balloon::after {
    content: none;
  }
  .conditions__title {
    gap: 10px;
    margin-bottom: 30px;
    font-size: 25px;
    line-height: 36px;
    letter-spacing: 1.5px;
    white-space: nowrap;
  }
}
@media only screen and (max-width: 1024px) and (max-width: 399px) {
  .conditions__title {
    gap: 0px;
  }
}
@media only screen and (max-width: 1024px) {
  .conditions__title-icon {
    width: 30px;
    height: 30px;
  }
}
@media only screen and (max-width: 1024px) and (max-width: 399px) {
  .conditions__title-icon {
    width: 28px;
    height: 28px;
  }
}
@media only screen and (max-width: 1024px) {
  .conditions__row {
    display: flex;
    align-items: baseline;
    padding: 13px 0;
  }
  .conditions__row dt {
    width: 126px;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.8px;
  }
  .conditions__row dd {
    font-size: 15px;
    line-height: 26px;
    letter-spacing: 0.45px;
  }
  .conditions__note {
    margin-top: 22px;
    font-size: 15px;
    line-height: 27px;
    letter-spacing: 0.45px;
    padding-left: 1em;
  }
  .conditions__btn {
    min-width: 268px;
    min-height: 60px;
    margin-top: 26px;
    padding: 0 28px;
    gap: 10px;
    font-size: 17px;
    line-height: 23px;
    letter-spacing: 1.36px;
  }
  .conditions__btn-icon {
    width: 18px;
    height: 18px;
  }
}
.features {
  position: relative;
  overflow: hidden;
  position: relative;
  background: #fff;
}
.features:before, .features:after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.features__inner {
  position: relative;
  z-index: 1;
  margin-inline: auto;
  background: transparent linear-gradient(0deg, #FFE5EC 0%, #FFEFF5 100%) 0% 0% no-repeat padding-box;
}

.features__head {
  position: relative;
}

.features__side {
  position: relative;
}

.features__bee::before {
  content: none;
}

.features__bee::after {
  content: none;
}

.features__title {
  margin: 0;
  color: #4F3B17;
  font-weight: 500;
  position: relative;
}
.features__title:before {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/top/top_icon_10.png) no-repeat;
  background-size: contain;
  animation: shake 10s ease-in-out infinite;
}
.features__title:after {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/top/sakura.png) no-repeat;
  background-size: contain;
  animation: float 2s ease-in-out infinite;
}

.features__copy {
  display: flex;
  flex-direction: column;
  color: #F478A3;
  font-weight: 500;
}

.features__copy span {
  display: block;
  width: fit-content;
  border-bottom: 1px dashed #9A8765;
}

.features__text p {
  margin: 0;
  color: #4F3B17;
  font-weight: 400;
}

.features__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border: 3px solid #F478A3;
  border-radius: 100px;
  background: #FFFFFF;
  color: #F478A3;
  font-weight: 700;
  text-decoration: none;
}

.features__btn-icon {
  position: relative;
  display: block;
  border-radius: 50%;
  background: #F478A3;
  flex-shrink: 0;
}

.features__btn-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #FFFFFF;
  transform: translate(-35%, -50%);
}

.features__main-img img {
  display: block;
  width: 100%;
  height: auto;
}

.features__cards {
  position: relative;
}
.features__cards::before, .features__cards::after {
  content: "";
  display: block;
  position: absolute;
}

.features__card {
  position: relative;
}

.features__card:nth-child(2) {
  animation-delay: 0.15s;
}

.features__card:nth-child(3) {
  animation-delay: 0.3s;
}

.features__card:nth-child(4) {
  animation-delay: 0.45s;
}

.features__card:nth-child(5) {
  animation-delay: 0.6s;
}

.features__card-img {
  display: block;
  height: auto;
}

.features__card-title {
  margin: 0;
  color: #FFFFFF;
  font-weight: 500;
}

.features__card-title span {
  display: table;
  width: fit-content;
  background: #F478A3;
  border-radius: 5px;
}

.features__card-text {
  margin: 0;
  color: #4F3B17;
  font-weight: 400;
}

@media only screen and (min-width: 1025px) {
  .features {
    padding: 100px 0;
  }
  .features:before {
    background: url(../images/top/feature-nami_pc.png) no-repeat;
    background-size: 100% 100%;
    height: 100px;
    top: 0px;
  }
  .features:after {
    background: url(../images/top/feature-nami02_pc.png) no-repeat;
    background-size: 100% 100%;
    height: 100px;
    bottom: 0px;
  }
  .features__inner {
    width: 100%;
  }
  .features__head {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 80px 638px 1fr;
    align-items: start;
    min-height: 470px;
  }
  .features__side {
    padding: 90px 0 0 55px;
  }
  .features__bee {
    top: -34px;
    left: 18px;
  }
  .features__title {
    writing-mode: vertical-rl;
    margin-inline: auto;
    font-size: 26px;
    line-height: 38px;
    letter-spacing: 1.56px;
  }
  .features__title::before {
    width: 56px;
    height: 63px;
    top: -80px;
    left: -33px;
  }
  .features__title::after {
    width: 37px;
    height: 36px;
    top: -111px;
    left: 23px;
  }
  .features__body {
    padding: 85px 0 0 50px;
  }
  .features__copy {
    gap: 10px;
    margin-bottom: 24px;
    font-size: 32px;
    line-height: 53px;
    letter-spacing: 3.2px;
  }
  .features__copy .sp {
    display: none;
  }
  .features__copy span {
    padding-bottom: 2px;
  }
  .features__text {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 30px;
  }
  .features__text p {
    font-size: 16px;
    line-height: 34px;
    letter-spacing: 0.8px;
  }
  .features__btn {
    min-width: 379px;
    min-height: 77px;
    padding: 0 44px;
    gap: 14px;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 1.08px;
    transition: background 0.4s ease, color 0.4s ease;
  }
  .features__btn:hover {
    background: #F478A3;
    color: #FFFFFF;
  }
  .features__btn:hover .features__btn-icon {
    background: #FFFFFF;
  }
  .features__btn:hover .features__btn-icon::before {
    border-left-color: #F478A3;
  }
  .features__btn-icon {
    width: 23px;
    height: 23px;
  }
  .features__main-img {
    width: 740px;
    justify-self: end;
    margin-top: -66px;
  }
  .features__cards {
    display: grid;
    grid-template-columns: repeat(3, 300px);
    justify-content: center;
    column-gap: 40px;
    row-gap: 10px;
    width: 974px;
    margin: 20px auto 0;
    padding-bottom: 10px;
  }
  .features__cards::before {
    background: url(../images/top/top_icon_19.png) no-repeat;
    background-size: contain;
    width: 38px;
    height: 67px;
    bottom: 0;
    right: 20px;
  }
  .features__cards::after {
    background: url(../images/top/top_icon_18.png) no-repeat;
    background-size: contain;
    width: 94px;
    height: 83px;
    bottom: 70px;
    right: -100px;
  }
  .features__card {
    width: 300px;
    text-align: center;
  }
  .features__card--clean {
    grid-column: 1;
    margin-left: 170px;
  }
  .features__card--sick {
    grid-column: 2;
    margin-left: 170px;
  }
  .features__card-img {
    display: block;
    width: 250px;
    height: 254px;
    object-fit: contain;
    object-position: center bottom;
  }
  .features__card-title {
    position: relative;
    z-index: 1;
    margin-top: -95px;
    margin-bottom: 12px;
    font-size: 22px;
    line-height: 42px;
    letter-spacing: 1.76px;
    gap: 2px;
    display: flex;
    flex-direction: column;
  }
  .features__card:nth-child(4) .features__card-title, .features__card:nth-child(5) .features__card-title {
    margin-top: -53px;
  }
  .features__card-title span {
    padding: 0 14px 2px;
    margin-inline: auto 0;
  }
  .features__card-text {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.8px;
    text-align: right;
  }
}
@media only screen and (max-width: 1024px) {
  .features {
    margin-top: 75px;
    padding: 0;
    background: transparent linear-gradient(0deg, #FFE5EC 0%, #FFEFF5 100%) 0% 0% no-repeat padding-box;
    position: relative;
    overflow: visible;
  }
  .features::before {
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    height: 30px;
    background: url(../images/top/feature-nami_pc.png) no-repeat;
    background-size: 100% 100%;
  }
  .features::after {
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 30px;
    background: url(../images/top/feature-nami02_pc.png) no-repeat;
    z-index: 999999;
    background-size: 100% 100%;
  }
  .features__inner {
    display: grid;
    grid-template-columns: 56px 1fr;
    column-gap: 20px;
    width: 367px;
    margin: 0 auto;
    padding-bottom: 55px;
  }
  .features__head {
    display: contents;
  }
  .features__side {
    grid-column: 1;
    grid-row: 1/span 3;
    padding: 60px 0 0 15px;
  }
  .features__bee {
    top: 0;
    left: 0;
  }
  .features__title {
    writing-mode: vertical-rl;
    margin-inline: auto;
    font-size: 23px;
    line-height: 35px;
    letter-spacing: 1.8px;
  }
  .features__title:before {
    width: 33px;
    height: 37px;
    top: -50px;
    left: -18px;
  }
  .features__title::after {
    width: 23px;
    height: 22px;
    top: -55px;
    left: 20px;
  }
  .features__body {
    display: contents;
  }
  .features__copy {
    grid-column: 2;
    grid-row: 1;
    gap: 10px;
    padding-top: 50px;
    font-size: 21px;
    line-height: 31px;
    letter-spacing: 2.1px;
  }
  .features__copy span {
    padding-bottom: 2px;
  }
  .features__main-img {
    grid-column: 2;
    grid-row: 2;
    width: 340px;
    position: relative;
    left: -25px;
    top: -5px;
  }
  .features__text {
    width: 310px;
    grid-column: 2;
    grid-row: 3;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    left: -40px;
  }
  .features__text p {
    font-size: 15px;
    line-height: 30px;
    letter-spacing: 0.45px;
  }
  .features__btn {
    grid-column: 1/-1;
    grid-row: 5;
    justify-self: center;
    min-width: 330px;
    min-height: 60px;
    margin: 30px auto 0;
    padding: 0 26px;
    gap: 10px;
    position: relative;
    left: -22px;
    background: #FFFFFF;
    color: #F478A3;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 1.36px;
  }
  .features__btn-icon {
    width: 18px;
    height: 18px;
    background: #F478A3;
  }
  .features__btn-icon::before {
    border-left-color: #FFFFFF;
  }
  .features__cards {
    width: 100%;
    max-width: 367px;
    grid-column: 1/-1;
    grid-row: 4;
    margin-top: 30px;
  }
  .features__cards::before {
    background: url(../images/top/top_icon_19.png) no-repeat;
    background-size: contain;
    width: 24px;
    height: 42px;
    bottom: 370px;
    right: inherit;
    left: 30px;
  }
  .features__cards::after {
    background: url(../images/top/top_icon_18.png) no-repeat;
    background-size: contain;
    width: 52px;
    height: 46px;
    bottom: 140px;
    right: 20px;
  }
  .features__card {
    width: 100%;
    min-height: 208px;
  }
  .features__card-img {
    display: block;
    width: 200px;
    height: 205px;
    object-fit: contain;
    object-position: center bottom;
  }
  .features__card:nth-child(odd) .features__card-img {
    margin-left: 0;
  }
  .features__card:nth-child(even) .features__card-img {
    margin-left: auto;
  }
  .features__card-title {
    position: relative;
    z-index: 1;
    margin-bottom: 14px;
    font-size: 17px;
    line-height: 29px;
    letter-spacing: 0.83px;
    margin-top: -115px;
    margin-bottom: 14px;
    font-size: 17px;
    line-height: 29px;
    letter-spacing: 0.83px;
    padding-left: 30px;
  }
  .features__card-title span {
    padding: 0 8px;
    border-radius: 2.5px;
    margin-bottom: 2.5px;
  }
  .features__card:nth-child(odd) .features__card-title {
    margin-left: 149px;
    position: relative;
    top: -5px;
    white-space: nowrap;
  }
  .features__card:last-child .features__card-title {
    margin-left: 149px;
    position: relative;
    top: 25px;
    white-space: nowrap;
  }
  .features__card:nth-child(even) .features__card-title {
    margin-left: 0;
    padding-left: 10px;
  }
  .features__card:nth-child(odd) .features__card-title span {
    margin-left: 0;
  }
  .features__card:nth-child(even) .features__card-title span {
    margin-right: auto;
  }
  .features__card-text {
    font-size: 15px;
    line-height: 27px;
    letter-spacing: 0.45px;
    position: relative;
    top: -10px;
  }
  .features__card:nth-child(odd) .features__card-text {
    margin-left: 177px;
  }
  .features__card:last-child .features__card-text {
    margin-left: 182px;
    top: 20px;
  }
  .features__card:nth-child(even) .features__card-text {
    padding-left: 10px;
    white-space: nowrap;
  }
  .features__card:last-child {
    margin-bottom: 0;
  }
}
.schedule {
  position: relative;
  overflow: hidden;
  background: #FFFFFF;
}

.schedule__inner {
  position: relative;
  margin-inline: auto;
}

.schedule__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.schedule__mark {
  margin-inline: auto;
  background-image: url("../images/top/info-niji.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.schedule__lead {
  position: relative;
  width: fit-content;
  margin-inline: auto;
  color: #4F3B17;
  font-weight: 500;
}

.schedule__lead::before {
  content: "";
  position: absolute;
  top: 50%;
  background-image: url("../images/top/kazari-schedule_left.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.schedule__lead::after {
  content: "";
  position: absolute;
  top: 50%;
  background-image: url("../images/top/kazari-schedule_right.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.schedule__title {
  margin: 0;
  color: #F478A3;
  font-weight: 500;
}

.schedule__text {
  margin: 0;
  color: #4F3B17;
  font-weight: 400;
}

.schedule__image {
  position: absolute;
  border-radius: 30px;
}

.schedule__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.schedule__flow-title {
  position: relative;
  width: fit-content;
  margin: 0;
  color: #4F3B17;
  font-weight: 500;
}

.schedule__flow-title::before {
  content: "";
  position: absolute;
  background-image: url("../images/top/top_icon_2.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.schedule__flow-list {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.schedule__flow-item {
  width: 110px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.schedule__flow-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 54px;
  right: -60px;
  width: 58px;
  height: 9px;
  background: url(../images/top/dott-schedule.png) no-repeat;
  background-size: contain;
}

.schedule__flow-icon {
  position: relative;
  display: block;
  border-radius: 50%;
  background: #FCEAF2;
}

.schedule__flow-icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: translate(-50%, -50%);
}

.schedule__flow-icon--sun::before {
  width: 50px;
  height: 50px;
  background-image: url("../images/top/sunny.png");
}

.schedule__flow-icon--meal::before {
  width: 50px;
  height: 50px;
  background-image: url("../images/top/cutlery.png");
}

.schedule__flow-icon--snack::before {
  width: 50px;
  height: 50px;
  background-image: url("../images/top/top_icon_24.png");
}

.schedule__flow-icon--report::before {
  width: 50px;
  height: 50px;
  background-image: url("../images/top/pencil.png");
}

.schedule__flow-item time {
  color: #F478A3;
  font-family: "Bpmf Huninn", sans-serif;
  font-weight: 400;
}

.schedule__flow-item span:last-child {
  color: #4F3B17;
  font-weight: 500;
  white-space: nowrap;
}

.schedule__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-inline: auto;
  background: #F478A3;
  border: 2px solid #F478A3;
  border-radius: 100px;
  color: #FFFFFF;
  font-weight: 700;
  text-decoration: none;
}

.schedule__btn-icon {
  position: relative;
  display: block;
  border-radius: 50%;
  background: #FFFFFF;
  flex-shrink: 0;
}

.schedule__btn-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #F478A3;
  transform: translate(-35%, -50%);
}

@media only screen and (min-width: 1025px) {
  .schedule {
    padding: 90px 0;
  }
  .schedule__inner {
    width: 1280px;
    min-height: 670px;
  }
  .schedule__content {
    width: 720px;
    margin-inline: auto;
  }
  .schedule__mark {
    width: 99px;
    height: 64px;
    margin-bottom: 17px;
  }
  .schedule__lead {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 1.44px;
  }
  .schedule__lead::before {
    right: calc(100% + 20px);
    width: 27px;
    height: 39px;
    transform: translateY(-50%);
  }
  .schedule__lead::after {
    left: calc(100% + 20px);
    width: 27px;
    height: 39px;
    transform: translateY(-50%);
  }
  .schedule__title {
    margin-bottom: 40px;
    font-size: 42px;
    line-height: 60px;
    letter-spacing: 2.52px;
  }
  .schedule__text {
    font-size: 16px;
    line-height: 34px;
    letter-spacing: 0.8px;
    text-align: center;
  }
  .schedule__image--top {
    top: 0;
    left: 53px;
    width: 220px;
    height: 165px;
  }
  .schedule__image--top::before {
    content: "";
    display: block;
    width: 99px;
    height: 64px;
    background: url(../images/top/top_icon_20.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: -50px;
    right: -60px;
  }
  .schedule__image--left {
    left: -110px;
    top: 328px;
    width: 330px;
    height: 248px;
  }
  .schedule__image--right {
    right: -85px;
    top: 225px;
    width: 310px;
    height: 233px;
  }
  .schedule__image--right::before {
    content: "";
    display: block;
    width: 84px;
    height: 88px;
    background: url(../images/top/kazari-greens.png) no-repeat;
    background-size: contain;
    position: absolute;
    bottom: -75px;
    right: 60px;
  }
  .schedule__flow {
    margin-top: 45px;
  }
  .schedule__flow-title {
    margin-bottom: 23px;
    padding-left: 34px;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: 1.1px;
  }
  .schedule__flow-title .small {
    font-size: 16px;
    letter-spacing: 0.8px;
  }
  .schedule__flow-title::before {
    left: 0;
    top: 50%;
    width: 25px;
    height: 44px;
    transform: translateY(-50%);
  }
  .schedule__flow-list {
    justify-content: center;
    gap: 65px;
  }
  .schedule__flow-icon {
    width: 110px;
    height: 110px;
    margin-bottom: 11px;
  }
  .schedule__flow-item time {
    margin-bottom: 7px;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.9px;
  }
  .schedule__flow-item span:last-child {
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0.9px;
  }
  .schedule__btn {
    min-width: 329px;
    min-height: 77px;
    margin-top: 39px;
    padding: 0 42px;
    gap: 13px;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 1.08px;
    transition: all 0.4s ease;
  }
  .schedule__btn-icon {
    width: 23px;
    height: 23px;
    transition: background 0.4s ease, transform 0.4s ease;
  }
  .schedule__btn:hover {
    background: #FFFFFF;
    color: #F478A3;
  }
  .schedule__btn:hover .schedule__btn-icon {
    background: #F478A3;
  }
  .schedule__btn:hover .schedule__btn-icon::before {
    border-left: 8px solid #fff;
  }
}
@media only screen and (max-width: 1024px) {
  .schedule {
    padding: 75px 0 40px;
  }
  .schedule__inner {
    display: grid;
    grid-template-columns: 1fr 110px;
    column-gap: 12px;
    width: 350px;
    margin: 0 auto;
  }
  .schedule__content {
    display: contents;
  }
  .schedule__mark {
    grid-column: 1/-1;
    grid-row: 1;
    justify-self: center;
    width: 70px;
    height: 45px;
    margin-bottom: 14px;
  }
  .schedule__lead {
    grid-column: 1/-1;
    grid-row: 2;
    font-size: 12px;
    line-height: 21px;
    letter-spacing: 0.96px;
  }
  .schedule__lead::before {
    right: calc(100% + 13px);
    width: 18px;
    height: 16px;
    transform: translateY(-50%);
  }
  .schedule__lead::after {
    left: calc(100% + 13px);
    width: 18px;
    height: 16px;
    transform: translateY(-50%);
  }
  .schedule__title {
    grid-column: 1/-1;
    grid-row: 3;
    margin-bottom: 22px;
    font-size: 25px;
    line-height: 42px;
    letter-spacing: 1.5px;
  }
  .schedule__text {
    grid-column: 1/-1;
    grid-row: 4;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0.45px;
    width: 325px;
    margin: 0 auto;
  }
  .schedule__image {
    position: relative;
    width: 110px;
    height: 83px;
    border-radius: 10px;
  }
  .schedule__image img {
    border-radius: 10px;
  }
  .schedule__image--top {
    grid-column: 2;
    grid-row: 5;
    margin: 95px 0 0;
  }
  .schedule__image--top::before {
    content: "";
    display: block;
    width: 32px;
    height: 20px;
    background: url(../images/top/top_icon_20.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: -10px;
    left: -10px;
  }
  .schedule__image--left {
    grid-column: 2;
    grid-row: 6;
    margin: 10px 0 0;
  }
  .schedule__image--right {
    grid-column: 2;
    grid-row: 7;
    margin: 10px 0 0;
  }
  .schedule__image--right::before {
    content: "";
    display: block;
    width: 35px;
    height: 37px;
    background: url(../images/top/kazari-greens.png) no-repeat;
    background-size: contain;
    position: absolute;
    bottom: -35px;
    right: 0px;
  }
  .schedule__flow {
    grid-column: 1;
    grid-row: 5/span 3;
    margin-top: 30px;
  }
  .schedule__flow-title {
    margin-bottom: 17px;
    padding-left: 32px;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0.9px;
  }
  .schedule__flow-title .small {
    font-size: 14px;
  }
  .schedule__flow-title::before {
    left: 0;
    top: 50%;
    width: 22.5px;
    height: 40px;
    transform: translateY(-50%);
  }
  .schedule__flow-list {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .schedule__flow-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    column-gap: 20px;
    align-items: center;
    text-align: left;
  }
  .schedule__flow-item:not(:last-child)::after {
    top: 76px;
    left: 26px;
    width: 15px;
    height: 5px;
    background: url(../images/top/dott-schedule.png) no-repeat;
    background-size: contain;
    rotate: 90deg;
  }
  .schedule__flow-icon {
    grid-row: 1/span 2;
    width: 70px;
    height: 70px;
  }
  .schedule__flow-icon::before {
    width: 35px;
    height: 35px;
  }
  .schedule__flow-item time {
    grid-column: 2;
    align-self: end;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.7px;
  }
  .schedule__flow-item span:last-child {
    grid-column: 2;
    align-self: start;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.8px;
  }
  .schedule__btn {
    grid-column: 1/-1;
    grid-row: 8;
    justify-self: center;
    min-width: 311px;
    min-height: 60px;
    margin-top: 30px;
    padding: 0 30px;
    gap: 10px;
    font-size: 17px;
    line-height: 23px;
    letter-spacing: 1.36px;
  }
  .schedule__btn-icon {
    width: 18px;
    height: 18px;
  }
}
.staff {
  position: relative;
  background: #FFFFFF;
}

.staff__inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}
.staff__inner::before, .staff__inner:after {
  content: "";
  display: block;
  position: absolute;
}

.staff__heading {
  color: #4F3B17;
  font-weight: 500;
  writing-mode: vertical-rl;
}

.staff__en {
  color: #F478A3;
  font-family: "Bpmf Huninn", sans-serif;
  font-weight: 400;
  line-height: 1;
}

.staff__title {
  color: #4F3B17;
  font-weight: 500;
}

.staff__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.staff__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.staff__copy span {
  display: inline-block;
  border-radius: 10px;
  background: #FFF4F9;
  color: #F478A3;
  font-weight: 500;
}

.staff__text {
  color: #4F3B17;
  font-weight: 400;
}

.staff__text::before {
  content: "";
  display: inline-block;
  background: #FFB6CC;
  border-radius: 100px;
}

.staff__btn,
.voice__btn,
.faq__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #F478A3;
  color: #FFFFFF;
  font-weight: 700;
}

.staff__btn-icon,
.voice__btn-icon,
.faq__btn-icon {
  position: relative;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #FFFFFF;
}

.staff__btn-icon::before,
.voice__btn-icon::before,
.faq__btn-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #F478A3;
  transform: translate(-38%, -50%);
}

.voice {
  background: #F7F7F7;
}

.voice__inner {
  position: relative;
  max-width: 1230px;
  margin: 0 auto;
}

.voice__title {
  color: #4F3B17;
  font-weight: 500;
}

.voice__copy span {
  color: #F478A3;
  font-weight: 500;
  display: block;
  width: fit-content;
  border-bottom: 1px dashed #9A8765;
}

.voice__text {
  color: #4F3B17;
}

.voice__item {
  position: absolute;
  margin: 0;
  text-align: center;
}

.voice__item blockquote {
  position: relative;
  margin: 0;
  color: #4F3B17;
  font-weight: 500;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.voice__item blockquote::after {
  content: none;
}

.voice__item img {
  display: block;
  border-radius: 50%;
  object-fit: cover;
}

.voice__item figcaption {
  color: #4F3B17;
  font-weight: 500;
}

.voice__item--ah blockquote {
  background-image: url("../images/top/bubble01_smp.png");
  animation: float 4s ease-in-out infinite;
  animation-delay: -1.3s;
}

.voice__item--sk blockquote {
  background-image: url("../images/top/bubble02_smp.png");
  animation: float 4s ease-in-out infinite;
  animation-delay: -0.8s;
}

.voice__item--mm blockquote {
  background-image: url("../images/top/bubble03_smp.png");
}

.banner-first,
.faq,
.banner-second,
.instagram {
  background: #FFFFFF;
}

.banner-first__inner,
.banner-second__inner,
.instagram__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.top-banner,
.small-banner {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 10px;
}

.top-banner--first {
  background: #DAF2F8;
}

.top-banner--first .top-banner__icon {
  color: #74CDD8;
}

.top-banner--safety,
.small-banner--recruit {
  background: #FDF3CD;
}

.top-banner--safety .top-banner__icon {
  color: #F2C94C;
}

.small-banner--access {
  background: #FDE7F1;
}

.small-banner--access .small-banner__icon {
  color: #F478A3;
}

.small-banner--company {
  background: #DAF8F1;
}

.small-banner--company .small-banner__icon {
  color: #80DCCA;
}

.small-banner--recruit .small-banner__icon {
  color: #F2C94C;
}

.top-banner__icon,
.small-banner__icon {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 3px solid currentColor;
  background: #FFFFFF;
}

.top-banner__icon img,
.small-banner__icon img {
  display: block;
  object-fit: contain;
}

.top-banner__title,
.small-banner__title {
  display: block;
  color: #4F3B17;
  font-weight: 500;
}

.top-banner__text,
.small-banner__text {
  display: block;
  color: #4F3B17;
}

.top-banner__arrow,
.small-banner__arrow {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 10px;
  height: 12px;
  border: 0;
  background-color: #FFFFFF;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 12'%3E%3Cpath d='M1.6 1.3C1.6.5 2.5.1 3.1.6L8.7 5C9.4 5.5 9.4 6.5 8.7 7L3.1 11.4C2.5 11.9 1.6 11.5 1.6 10.7V1.3Z' fill='%23000'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 12'%3E%3Cpath d='M1.6 1.3C1.6.5 2.5.1 3.1.6L8.7 5C9.4 5.5 9.4 6.5 8.7 7L3.1 11.4C2.5 11.9 1.6 11.5 1.6 10.7V1.3Z' fill='%23000'/%3E%3C/svg%3E") center/contain no-repeat;
  transform: translateY(-50%);
}

.top-banner__arrow {
  right: 25px;
  background-color: #6DC9D5;
}

.top-banner--safety .top-banner__arrow {
  background-color: #F0CB4A;
}

.faq__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.faq__card {
  position: relative;
  margin: 0 auto;
  border: 4px solid #EAEAEA;
  border-radius: 30px;
  background-color: #FFFFFF;
  background-image: linear-gradient(#F7F7F7 1px, transparent 1px), linear-gradient(90deg, #F7F7F7 1px, transparent 1px);
  background-size: 24px 24px;
}
.faq__card:before {
  content: "";
  display: block;
  background: url(../images/top/nuigurumi.png) no-repeat;
  background-size: contain;
  position: absolute;
}

.faq__title {
  position: relative;
  color: #4F3B17;
  font-weight: 500;
  text-align: center;
}

.faq__title::before,
.faq__title::after {
  content: "";
  position: absolute;
  top: 50%;
  background-image: url("../images/top/kazari-faq.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-50%);
}

.faq__item dt {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  column-gap: 0.5em;
  color: #F478A3;
  font-weight: 500;
}

.faq__item-num {
  white-space: nowrap;
}

.faq__item-question {
  display: block;
}

.faq__item dd {
  margin: 0;
  color: #4F3B17;
}

.instagram__head {
  color: #4F3B17;
}

.instagram__title {
  font-family: "Bpmf Huninn", sans-serif;
  font-weight: 400;
}
.instagram__title:before {
  content: "";
  display: block;
  background: url(../images/top/icon-instagram.png) no-repeat;
  background-size: contain;
  position: absolute;
}

.instagram__account {
  color: #989494;
}

.instagram__feed {
  display: grid;
  background: #FAFAFA;
}

.instagram__feed:empty::before {
  content: "";
  display: block;
  min-height: 100%;
  border: 2px dashed #E8E8E8;
  border-radius: 8px;
}

.instagram__feed #sb_instagram {
  width: 100% !important;
  max-width: none !important;
  padding: 0 !important;
}

.instagram__feed #sb_instagram .sb_instagram_header {
  display: none !important;
}

.instagram__feed #sb_instagram #sbi_load {
  display: none !important;
}

.instagram__feed #sb_instagram #sbi_images {
  display: grid !important;
  float: none !important;
  width: 100% !important;
  padding: 0 !important;
}

.instagram__feed #sb_instagram .sbi_item {
  float: none !important;
  width: auto !important;
  padding: 0 !important;
}

.instagram__feed #sb_instagram .sbi_photo {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}

@media only screen and (min-width: 1025px) {
  .staff {
    padding: 0 0 110px;
  }
  .staff__inner {
    min-height: 520px;
  }
  .staff__inner::before {
    width: 160px;
    height: 750px;
    background: url(../images/top/staff-left.png) no-repeat;
    background-size: contain;
    top: 10px;
    left: -30px;
  }
  .staff__inner::after {
    width: 362px;
    height: 840px;
    background: url(../images/top/staff-right.png) no-repeat;
    background-size: contain;
    top: 90px;
    right: -110px;
  }
  .staff__heading {
    position: absolute;
    top: 85px;
    left: 100px;
    gap: 17px;
  }
  .staff__en {
    font-size: 15px;
    letter-spacing: 1.2px;
    margin-left: 20px;
  }
  .staff__title {
    font-size: 36px;
    line-height: 52px;
    letter-spacing: 7px;
  }
  .staff__image {
    width: 928px;
    height: 705px;
    max-width: 100%;
    margin: 0 0 0 235px;
    object-fit: cover;
    position: relative;
  }
  .staff__image::before {
    content: "";
    display: block;
    background: url(../images/top/tentoumushi02.png) no-repeat;
    background-size: contain;
    position: absolute;
    width: 80px;
    height: 48px;
    bottom: 10%;
    left: -270px;
    opacity: 0;
    transform: rotate3d(0, 0, 1, -120deg);
  }
  .staff__image.is-animated::before {
    animation: rollInL 3s ease-in-out forwards;
  }
  .staff__content {
    margin: -130px 0 0 189px;
  }
  .staff__copy {
    gap: 8px;
    margin-bottom: 29px;
    z-index: 10;
    position: relative;
  }
  .staff__copy span {
    padding: 7px 20px 9px;
    font-size: 28px;
    line-height: 39px;
    letter-spacing: 2.8px;
  }
  .staff__text {
    position: relative;
    padding-left: 40px;
    font-size: 16px;
    line-height: 34px;
    letter-spacing: 0.8px;
  }
  .staff__text::before {
    position: absolute;
    top: 5px;
    left: 0;
    width: 5px;
    height: 100%;
  }
  .staff__btn,
  .voice__btn,
  .faq__btn {
    min-height: 77px;
    padding: 0 42px;
    gap: 13px;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 1.08px;
  }
  .staff__btn {
    min-width: 361px;
    margin-top: 30px;
    border: 2px solid #F478A3;
    transition: all 0.4s ease;
  }
  .voice__btn,
  .faq__btn {
    border: 2px solid #F478A3;
    transition: all 0.4s ease;
  }
  .staff__btn:hover {
    background: #FFFFFF;
    color: #F478A3;
  }
  .voice__btn:hover {
    background: #FFFFFF;
    color: #F478A3;
  }
  .faq__btn:hover {
    background: #FFFFFF;
    color: #F478A3;
  }
  .staff__btn:hover .staff__btn-icon {
    background: #F478A3;
  }
  .voice__btn:hover .voice__btn-icon {
    background: #F478A3;
  }
  .faq__btn:hover .faq__btn-icon {
    background: #F478A3;
  }
  .staff__btn:hover .staff__btn-icon::before {
    border-left: 8px solid #FFFFFF;
  }
  .voice__btn:hover .voice__btn-icon::before {
    border-left: 8px solid #FFFFFF;
  }
  .faq__btn:hover .faq__btn-icon::before {
    border-left: 8px solid #FFFFFF;
  }
  .staff__btn-icon,
  .voice__btn-icon,
  .faq__btn-icon {
    width: 23px;
    height: 23px;
    transition: background 0.4s ease, transform 0.4s ease;
  }
  .voice {
    padding: 100px 0 80px;
  }
  .voice__inner {
    min-height: 500px;
    display: flex;
    justify-content: space-between;
  }
  .voice__content {
    width: 430px;
    margin-left: 50px;
  }
  .voice__title {
    margin-bottom: 30px;
    font-size: 32px;
    line-height: 46px;
    letter-spacing: 1.92px;
  }
  .voice__copy {
    margin-bottom: 29px;
  }
  .voice__copy span {
    padding: 6px 0;
    font-size: 26px;
    line-height: 38px;
    letter-spacing: 2.6px;
  }
  .voice__copy span + span {
    margin-top: 5px;
  }
  .voice__text {
    font-size: 16px;
    line-height: 34px;
    letter-spacing: 0.8px;
  }
  .voice__btn {
    min-width: 323px;
    margin-top: 30px;
  }
  .voice__items {
    width: 100%;
    max-width: 716px;
    position: relative;
  }
  .voice__item blockquote {
    border-radius: 0;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0.8px;
  }
  .voice__item--ah {
    top: 0;
    left: 0;
    width: 307px;
    height: 296px;
  }
  .voice__item--ah blockquote {
    width: 207px;
    height: 206px;
    margin: 0 0 0 110px;
    padding: 50px 0 0 10px;
    background-image: url("../images/top/bubble01_pc.png");
  }
  .voice__item--ah img {
    width: 130px;
    height: 133px;
    position: relative;
    top: -80px;
  }
  .voice__item--ah figcaption {
    position: relative;
    top: -70px;
  }
  .voice__item--sk {
    top: 45px;
    right: 0;
    width: 336px;
    height: 310px;
  }
  .voice__item--sk blockquote {
    width: 236px;
    height: 208px;
    padding: 56px 0 0 20px;
  }
  .voice__item--sk img {
    width: 130px;
    height: 133px;
    margin: -60px 0 0 auto;
  }
  .voice__item--sk figcaption {
    position: relative;
    margin: 10px 0 0 auto;
  }
  .voice__item--mm {
    bottom: 0px;
    right: 240px;
    width: 304px;
    height: 328px;
  }
  .voice__item--mm blockquote {
    width: 272px;
    height: 252px;
    padding: 80px 0 0 10px;
    background-image: url("../images/top/bubble03_pc.png");
  }
  .voice__item--mm img {
    width: 130px;
    height: 133px;
    margin: -80px 0 0 170px;
    z-index: 10;
    position: relative;
  }
  .voice__item--mm figcaption {
    position: relative;
    margin: 10px 0 0 170px;
  }
  .voice__item figcaption {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1.28px;
    width: 130px;
  }
  .banner-first {
    padding: 90px 0 89px;
  }
  .banner-first__inner {
    display: grid;
    grid-template-columns: repeat(2, 550px);
    gap: 40px;
    justify-content: center;
  }
  .top-banner {
    min-height: 170px;
    padding: 35px 60px 35px 134px;
    transition: all 0.3s ease;
  }
  .top-banner:hover {
    cursor: pointer;
    transform: translateY(-20px);
  }
  .top-banner__icon {
    position: absolute;
    top: 40px;
    left: 26px;
    width: 90px;
    height: 90px;
  }
  .top-banner__icon img {
    width: 62px;
    height: 62px;
  }
  .top-banner__title {
    margin-bottom: 7px;
    font-size: 24px;
    line-height: 35px;
    letter-spacing: 1.44px;
  }
  .top-banner__text {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0.75px;
  }
  .faq {
    padding-bottom: 82px;
    position: relative;
  }
  .faq__card {
    width: 900px;
    min-height: 792px;
    padding: 101px 138px 74px;
  }
  .faq__card:before {
    width: 132px;
    height: 71px;
    bottom: -10px;
    right: 60px;
  }
  .faq__title {
    margin-bottom: 44px;
    font-size: 32px;
    line-height: 46px;
    letter-spacing: 1.92px;
  }
  .faq__title::before {
    left: 137px;
    width: 40px;
    height: 33px;
  }
  .faq__title::after {
    right: 137px;
    width: 40px;
    height: 33px;
  }
  .faq__item + .faq__item {
    margin-top: 35px;
  }
  .faq__item dt {
    margin-bottom: 17px;
    font-size: 22px;
    line-height: 33px;
    letter-spacing: 1.1px;
  }
  .faq__item dd {
    padding-left: 3em;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.8px;
  }
  .faq__btn {
    display: flex;
    width: max-content;
    min-width: 303px;
    margin: 52px auto 0;
  }
  .banner-second {
    padding-bottom: 90px;
  }
  .banner-second__inner {
    display: grid;
    grid-template-columns: repeat(3, 400px);
    gap: 32px;
    justify-content: center;
  }
  .small-banner {
    min-height: 178px;
    padding: 35px 46px 31px 46px;
    transition: all 0.3s ease;
    border-radius: 20px;
  }
  .small-banner:hover {
    cursor: pointer;
    transform: translateY(-20px);
  }
  .small-banner::before {
    content: "";
    display: block;
    width: 30px;
    height: 100%;
    border-radius: 0px 20px 20px 0px;
    position: absolute;
    top: 0;
    right: 0;
  }
  .small-banner--access::before {
    background: #FD8CAE 0% 0% no-repeat padding-box;
  }
  .small-banner--recruit::before {
    background: #F5D873 0% 0% no-repeat padding-box;
  }
  .small-banner--company::before {
    background: #8CDBCF 0% 0% no-repeat padding-box;
  }
  .small-banner__icon {
    position: absolute;
    top: -28px;
    left: -18px;
    width: 106px;
    height: 106px;
  }
  .small-banner__icon img {
    width: 60px;
    height: 60px;
  }
  .small-banner__title {
    margin-bottom: 13px;
    font-size: 20px;
    line-height: 29px;
    letter-spacing: 1px;
    padding-left: 55px;
  }
  .small-banner__text {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0.45px;
  }
  .instagram {
    padding: 0 0 125px;
  }
  .instagram__inner {
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 40px;
    align-items: center;
    width: 1230px;
  }
  .instagram__title {
    margin-bottom: 23px;
    font-size: 30px;
    line-height: 30px;
    letter-spacing: 3px;
    position: relative;
    padding-left: 60px;
  }
  .instagram__title:before {
    width: 40px;
    height: 40px;
    left: 0;
    top: -4px;
  }
  .instagram__account {
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 1.6px;
  }
  .instagram__feed {
    min-height: 0;
    background: transparent;
  }
  .instagram__feed #sb_instagram #sbi_images {
    grid-template-columns: repeat(4, 220px) !important;
    gap: 7px !important;
  }
  .instagram__feed #sb_instagram .sbi_item {
    aspect-ratio: 1/1;
  }
  .instagram__feed #sb_instagram .sbi_photo {
    background-size: cover !important;
  }
  .instagram__feed #sb_instagram .sbi_item:nth-child(n+9) {
    display: none !important;
  }
}
@media only screen and (max-width: 1024px) {
  .staff {
    padding: 40px 0 45px;
  }
  .staff__inner {
    width: 370px;
    margin: 0 auto;
  }
  .staff__inner::before {
    background: url(../images/top/staff-right_smp.png) no-repeat;
    background-size: contain;
    width: 120px;
    height: 465px;
    top: -50px;
    right: -30px;
  }
  .staff__inner::after {
    background: url(../images/top/top_icon_1.png) no-repeat;
    background-size: contain;
    width: 50px;
    height: 46px;
    top: 58px;
    left: -12px;
  }
  .staff__heading {
    margin-bottom: 24px;
    writing-mode: horizontal-tb;
  }
  .staff__en {
    margin-bottom: 4px;
    font-size: 12.5px;
    letter-spacing: 1px;
  }
  .staff__title {
    font-size: 25px;
    line-height: 37px;
    letter-spacing: 1.5px;
  }
  .staff__image {
    width: 360px;
    height: 273px;
    margin: 0 auto 22px;
    position: relative;
  }
  .staff__image::before {
    content: "";
    display: block;
    background: url(../images/top/tentoumushi02.png) no-repeat;
    background-size: contain;
    position: absolute;
    width: 40px;
    height: 30px;
    bottom: 20px;
    left: -40px;
    opacity: 0;
    transform: rotate3d(0, 0, 1, -120deg);
  }
  .staff__image.is-animated::before {
    animation: rollInL 3s ease-in-out forwards;
  }
  .staff__copy {
    gap: 3px;
    margin-bottom: 30px;
    margin-top: -45px;
    margin-left: 10px;
    position: relative;
    z-index: 10;
  }
  .staff__copy span {
    padding: 5px 12px 6px;
    font-size: 19px;
    line-height: 24px;
    letter-spacing: 1.9px;
  }
  .staff__text {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0.45px;
    padding-left: 25px;
    margin-left: 10px;
    width: 335px;
  }
  .staff__text::before {
    width: 8px;
    height: 225px;
    margin-right: 12px;
    vertical-align: top;
    position: absolute;
    left: 10px;
  }
  .staff__btn,
  .voice__btn,
  .faq__btn {
    min-height: 60px;
    padding: 0 28px;
    gap: 10px;
    font-size: 17px;
    line-height: 25px;
    letter-spacing: 1.36px;
  }
  .staff__btn {
    display: flex;
    width: 342px;
    margin: 30px auto 0;
  }
  .staff__btn-icon,
  .voice__btn-icon,
  .faq__btn-icon {
    width: 18px;
    height: 18px;
  }
  .voice {
    padding: 45px 0 40px;
  }
  .voice__inner {
    display: flex;
    flex-direction: column;
    width: 350px;
    margin: 0 auto;
  }
  .voice__content {
    display: contents;
  }
  .voice__title {
    margin-bottom: 12px;
    font-size: 25px;
    line-height: 37px;
    letter-spacing: 1.5px;
    text-align: center;
  }
  .voice__copy {
    margin-bottom: 20px;
  }
  .voice__copy span {
    margin: 0 auto;
    padding: 6px 4px;
    font-size: 21px;
    line-height: 22px;
    letter-spacing: 2.1px;
    white-space: nowrap;
  }
  .voice__copy span + span {
    margin-top: 10px;
  }
  .voice__text {
    width: 310px;
    margin: 0 auto 25px;
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0.45px;
  }
  .voice__btn {
    order: 1;
    align-self: center;
    min-width: 305px;
    min-height: 60px;
    margin-top: 35px;
    font-size: 17px;
    line-height: 25px;
    letter-spacing: 1.36px;
  }
  .voice__items {
    display: grid;
    gap: 20px;
  }
  .voice__item {
    position: relative;
    display: grid;
    grid-template-columns: 125px 1fr;
    gap: 0 12px;
    align-items: center;
    text-align: center;
  }
  .voice__item blockquote {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    justify-self: end;
    width: 190px;
    height: 188px;
    padding: 0 0 0 11px;
    border-radius: 0;
    font-size: 15px;
    line-height: 26px;
    letter-spacing: 1.2px;
  }
  .voice__item--mm blockquote {
    background-image: url(../images/top/voice3_hukidashi_smp.png);
  }
  .voice__item img {
    grid-column: 1;
    grid-row: 1;
    width: 125px;
    height: 128px;
  }
  .voice__item figcaption {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 1.2px;
    margin-top: -35px;
  }
  .voice__item--sk {
    grid-template-columns: 1fr 125px;
  }
  .voice__item--sk blockquote {
    grid-column: 1;
    justify-self: start;
    width: 213px;
    height: 188px;
  }
  .voice__item--sk img {
    grid-column: 2;
  }
  .voice__item--sk figcaption {
    grid-column: 2;
  }
  .banner-first {
    padding: 45px 0;
  }
  .banner-first__inner {
    width: 100%;
    max-width: 370px;
    margin: 0 auto;
  }
  .banner-second__inner {
    width: 345px;
  }
  .faq__inner {
    width: 100%;
    max-width: 390px;
  }
  .instagram__inner {
    width: 100%;
    max-width: 400px;
  }
  .banner-first__inner,
  .banner-second__inner,
  .instagram__inner,
  .faq__inner {
    margin: 0 auto;
  }
  .banner-first__inner,
  .banner-second__inner {
    display: grid;
    gap: 20px;
  }
  .top-banner {
    min-height: 143px;
    padding: 24px 40px 24px 98px;
  }
  .top-banner__icon {
    position: absolute;
    top: 39px;
    left: 18px;
    width: 65px;
    height: 65px;
  }
  .top-banner__icon img {
    width: 40px;
    height: 40px;
  }
  .top-banner__title {
    margin-bottom: 6px;
    font-size: 17px;
    line-height: 26px;
    letter-spacing: 1.02px;
  }
  .top-banner__text {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0.36px;
  }
  .faq {
    padding: 0 0 56px;
  }
  .faq__card {
    padding: 40px 19px 70px;
    border-radius: 20px;
    border: 5px solid #EAEAEA;
  }
}
@media only screen and (max-width: 1024px) and (max-width: 1024px) and (min-width: 768px) {
  .faq__card::before {
    width: 90px;
    height: 48px;
    bottom: -14px;
    right: 25px;
  }
}
@media only screen and (max-width: 1024px) and (max-width: 767px) {
  .faq__card::before {
    height: 88px;
    width: 49px;
    bottom: -35px;
    right: 49px;
    transform: rotate(-90deg);
  }
}
@media only screen and (max-width: 1024px) {
  .faq__title {
    margin-bottom: 30px;
    font-size: 25px;
    line-height: 37px;
    letter-spacing: 1.5px;
  }
  .faq__title::before {
    left: 48px;
    width: 30px;
    height: 25px;
  }
  .faq__title::after {
    right: 48px;
    width: 30px;
    height: 25px;
  }
  .faq__item + .faq__item {
    margin-top: 20px;
  }
  .faq__item dt {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.9px;
  }
  .faq__item dd {
    margin-left: 2.5em;
    font-size: 15px;
    line-height: 26px;
    letter-spacing: 0.45px;
  }
  .faq__btn {
    display: flex;
    width: 287px;
    margin: 30px auto 0;
  }
  .banner-second {
    padding: 0 0 44px;
  }
  .small-banner {
    padding: 25px 55px 25px 40px;
    margin-left: 10px;
  }
  .small-banner__icon {
    position: absolute;
    top: -20px;
    left: -15px;
    width: 70px;
    height: 70px;
  }
  .small-banner__icon img {
    width: 40px;
    height: 40px;
  }
  .top-banner__arrow {
    width: 10px;
    height: 12px;
    right: 18px;
  }
  .top-banner--first .top-banner__arrow {
    background-color: #6DC9D5;
  }
  .top-banner--safety .top-banner__arrow {
    background-color: #F0CB4A;
  }
  .small-banner__arrow {
    top: 0;
    right: 0;
    width: 25px;
    height: 100%;
    border: 0;
    border-radius: 0 10px 10px 0;
    -webkit-mask: none;
    mask: none;
    transform: none;
  }
  .small-banner__arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 12px;
    background-color: #FFFFFF;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 12'%3E%3Cpath d='M1.6 1.3C1.6.5 2.5.1 3.1.6L8.7 5C9.4 5.5 9.4 6.5 8.7 7L3.1 11.4C2.5 11.9 1.6 11.5 1.6 10.7V1.3Z' fill='%23000'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 12'%3E%3Cpath d='M1.6 1.3C1.6.5 2.5.1 3.1.6L8.7 5C9.4 5.5 9.4 6.5 8.7 7L3.1 11.4C2.5 11.9 1.6 11.5 1.6 10.7V1.3Z' fill='%23000'/%3E%3C/svg%3E") center/contain no-repeat;
    transform: translate(-50%, -50%);
  }
  .small-banner--access .small-banner__arrow {
    background: #FD8CAE;
  }
  .small-banner--recruit .small-banner__arrow {
    background: #F5D873;
  }
  .small-banner--company .small-banner__arrow {
    background: #8CDBCF;
  }
  .small-banner__title {
    margin-bottom: 7px;
    font-size: 17px;
    line-height: 25px;
    letter-spacing: 0.85px;
    margin-left: 22px;
  }
  .small-banner__text {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0.6px;
  }
  .instagram {
    padding: 0 0 45px;
  }
  .instagram__head {
    margin-bottom: 24px;
  }
  .instagram__icon {
    width: 25px;
    height: 25px;
    margin-bottom: 14px;
    border-radius: 7px;
  }
  .instagram__title {
    margin-bottom: 8px;
    font-size: 22.5px;
    line-height: 33px;
    letter-spacing: 2.25px;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
    padding-left: 33px;
    position: relative;
  }
  .instagram__title::before {
    width: 25px;
    height: 25px;
    left: 0;
    top: 3px;
  }
  .instagram__account {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 1.2px;
    text-align: center;
  }
  .instagram__feed {
    display: block;
    min-height: 114px;
    overflow: hidden;
    background: transparent;
  }
  .instagram__feed #sb_instagram #sbi_images {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 7px !important;
    width: max-content !important;
    animation: instagram-loop 28s linear infinite;
  }
  .instagram__feed #sb_instagram .sbi_item {
    flex: 0 0 140px;
    width: 140px !important;
    aspect-ratio: 1/1;
  }
  .instagram__feed #sb_instagram .sbi_photo {
    background-size: cover !important;
  }
  .instagram__feed #sb_instagram .sbi_item:nth-child(n+9):not(.is-instagram-clone) {
    display: none !important;
  }
}
@keyframes instagram-loop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
