@charset "UTF-8";

*,
*:before,
*:after {
  box-sizing: border-box
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
main,
header,
section,
article,
aside,
footer,
dl,
dd,
ul,
ol,
li {
  margin: 0;
  padding: 0
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%
}

ul,
ol,
li {
  list-style: none
}

img,
picture {
  max-width: 100%;
  height: auto;
  display: block;
  border: none
}

button {
  margin: 0;
  padding: 0;
  border: none;
  background: none
}

a {
  text-decoration: none
}

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

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto
  }

  *,
  *:before,
  *:after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important
  }


}

@font-face {
  font-family: Noto Sans JP;
  src: url(../../font/entrytama2025/NotoSansJP-VariableFont.ttf) format("truetype-variations");
  font-weight: 100 900;
  font-display: swap
}

@font-face {
  font-family: Red Hat Display;
  src: url(../../font/entrytama2025/RedHatDisplay-VariableFont.ttf) format("truetype-variations");
  font-weight: 100 900;
  font-display: swap
}

body {
  font-family: Noto Sans JP,
    sans-serif
}

.rhd {
  font-family: Red Hat Display, sans-serif
}

.section__h2 {
  font-size: 20px;
  font-weight: 700;
  line-height: 175%;
  letter-spacing: 1px;
  color: #444;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px
}

@media screen and (min-width: 1024px) {
  .section__h2 {
    font-size: 25px;
    letter-spacing: 1.25px
  }


}

.section__h2:before,
.section__h2:after {
  content: "";
  width: 24px;
  height: 1px;
  background-color: #444
}

.section__h3 {
  color: #444;
  font-size: 20px;
  font-weight: 700;
  line-height: 175%;
  letter-spacing: 1px;
  text-align: center
}

@media screen and (min-width: 1024px) {
  .section__h3 {
    font-size: 25px;
    letter-spacing: 1.25px
  }


}

.header {
  width: 100%;
  height: 64px;
  padding: 0 4.26%;
  background: #f9f8f6;
  display: flex;
  justify-content: center;
  position: fixed;
  z-index: 1000
}

@media screen and (min-width: 1024px) {
  .header {
    height: 88px
  }


}

@media screen and (min-width: 1440px) {
  .header {
    padding: 0
  }


}

.header__inner {
  width: 100%;
  max-width: 1360px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between
}

@media screen and (min-width: 1440px) {
  .header__inner {
    width: 1360px
  }


}

.header__left {
  display: flex;
  align-items: center;
  gap: 12px
}

.header__logo a {
  transition: opacity .3s
}

@media (any-hover: hover) {
  .header__logo a:hover {
    opacity: .7
  }


}

.header__logoImg {
  width: 104px;
  height: auto
}

@media screen and (min-width: 1024px) {
  .header__logoImg {
    width: 280px
  }


}

.header__right {
  display: flex;
  align-items: center
}

@media screen and (min-width: 1024px) {
  .header__right {
    gap: 18px
  }


}

@media screen and (min-width: 1280px) {
  .header__right {
    gap: 32px
  }


}

.hamburger__btn {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 8px;
  width: 40px;
  height: 40px
}

@media screen and (min-width: 1024px) {
  .hamburger__btn {
    display: none
  }


}

.hamburger__btn span {
  position: absolute;
  width: 24px;
  height: 2px;
  background: #d62d29;
  border-radius: 1px
}

.hamburger__btn span:nth-of-type(1) {
  animation: hamburger-bar01 .75s forwards;
  top: 8px
}

@keyframes hamburger-bar01 {
  0% {
    transform: translateY(11px) rotate(45deg)
  }

  50% {
    transform: translateY(11px) rotate(0)
  }

  to {
    transform: translateY(0) rotate(0)
  }


}

.hamburger__btn span:nth-of-type(2) {
  transition: opacity .25s .25s;
  opacity: 1;
  top: 19px
}

.hamburger__btn span:nth-of-type(3) {
  animation: hamburger-bar03 .75s forwards;
  top: 30px
}

@keyframes hamburger-bar03 {
  0% {
    transform: translateY(-11px) rotate(-45deg)
  }

  50% {
    transform: translateY(-11px) rotate(0)
  }

  to {
    transform: translateY(0) rotate(0)
  }


}

.hamburger__btn.active span:nth-of-type(1) {
  animation: active-hamburger-bar01 .75s forwards
}

@keyframes active-hamburger-bar01 {
  0% {
    transform: translateY(0) rotate(0)
  }

  50% {
    transform: translateY(11px) rotate(0)
  }

  to {
    transform: translateY(11px) rotate(45deg)
  }


}

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

.hamburger__btn.active span:nth-of-type(3) {
  animation: active-hamburger-bar03 .75s forwards
}

@keyframes active-hamburger-bar03 {
  0% {
    transform: translateY(0) rotate(0)
  }

  50% {
    transform: translateY(-11px) rotate(0)
  }

  to {
    transform: translateY(-11px) rotate(-45deg)
  }


}

.scrollHidden {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%
}

.headerNav__list {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-weight: 400;
  line-height: 175%;
  letter-spacing: .7px;
  position: fixed;
  top: 64px;
  right: -100%;
  padding: 0 16px;
  width: 100%;
  height: 100vh;
  background-color: #f9f8f6;
  transition: right .3s;
  z-index: 100
}

@media screen and (min-width: 1024px) {
  .headerNav__list {
    position: static;
    height: 0;
    padding: 0;
    flex-direction: row;
    align-items: center;
    gap: 18px
  }


}

@media screen and (min-width: 1280px) {
  .headerNav__list {
    gap: 32px;
    font-size: 16px
  }


}

.headerNav__item {
  border-bottom: 1px solid #C3C3C3;
  position: relative;
  display: block
}

@media screen and (min-width: 1024px) {
  .headerNav__item {
    border: none
  }


}

.headerNav__item:after {
  content: "";
  position: absolute;
  background-image: url(../../img/entrytama2025/entrytama2025/icon/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 18px;
  height: 18px;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  pointer-events: none
}

@media screen and (min-width: 1024px) {
  .headerNav__item:after {
    display: none
  }


}

.headerNav__item a {
  display: block;
  padding: 16px 8px;
  width: 100%;
  color: #444;
  transition: opacity .3s
}

@media screen and (min-width: 1024px) {
  .headerNav__item a {
    padding: 0
  }


}

@media (any-hover: hover) {
  .headerNav__item a:hover {
    opacity: .7
  }


}

.headerNav__item a:visited {
  color: #444
}

.headerNav__list.isOpen {
  right: 0
}

.signup__btn {
  background: #d62d29;
  color: #fff;
  padding: 12px;
  position: relative;
  font-size: 12px;
  font-weight: 700;
  line-height: 100%
}

@media screen and (min-width: 1024px) {
  .signup__btn {
    font-size: 16px;
    padding: 16px 48px 16px 16px
  }


}

.header__cta:after {
  display: none
}

@media screen and (min-width: 1024px) {
  .header__cta:after {
    display: block
  }


}

body {
  width: 100%;
  background: #f9f8f6;
  overflow-x: hidden
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%
}

.section {
  width: 100%;
  padding: 48px 4.26% 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px
}

@media screen and (min-width: 1024px) {
  .section {
    padding: 88px 4.26% 0;
    gap: 88px
  }


}

.section__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px
}

@media screen and (min-width: 1024px) {
  .section__inner {
    gap: 48px
  }


}

.container {
  width: 100%;
  max-width: 944px
}

.section__title {
  display: flex;
  flex-direction: column;
  align-items: center
}

#kv {
  padding-top: 64px;
  width: 100%
}

@media screen and (min-width: 1024px) {
  #kv {
    padding-top: 88px
  }


}

#about {
  padding-top: 16px
}

@media screen and (min-width: 1024px) {
  #about {
    padding-top: 32px
  }


}

.footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px 16px;
  gap: 24px;
  background: #000;
  color: #fff
}

@media screen and (min-width: 1024px) {
  .footer {
    padding: 32px 12px 16px;
    gap: 32px
  }


}

.footer__link {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: .5px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity .3s
}

@media (any-hover: hover) {
  .footer__link:hover {
    opacity: .7
  }


}

.footer__link:visited {
  color: #fff
}

@media screen and (min-width: 1024px) {
  .footer__link {
    font-size: 16px
  }


}

.footer__link:after {
  content: "";
  background-image: url(../../img/entrytama2025/icon/square-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
  width: 16px;
  height: 16px
}

.copy__right {
  font-size: 10px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: .5px;
  text-align: center
}

#kv .signup__btn {
  padding: 12px 60.5px 12px 24px;
  width: 343px;
  height: 48px;
  font-size: 14px;
  font-weight: 700;
  line-height: 100%
}

#kv .signup__btn:after {
  right: 92.5px
}

#kv .signup__btn {
  order: 2
}

@media screen and (min-width: 1024px) {
  #kv .signup__btn {
    padding: 24px 56px 24px 32px;
    width: 232px;
    height: 64px;
    font-size: 16px
  }

  #kv .signup__btn:after {
    right: 12px
  }

  #kv .signup__btn {
    order: 3
  }


}

#kv .splide__kv {
  position: relative;
  width: 100%;
  max-width: 1360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px
}

@media screen and (min-width: 1440px) {
  #kv .splide__kv {
    width: 1360px
  }


}

#kv .splide__kv .splide__track {
  width: 100%;
  order: 1
}

.splide__kv .splide__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 100%;
  overflow: hidden
}

.splide__slideInner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center
}

.splide__slideImg {
  width: 100%;
  height: 100%;
  border-radius: 8px
}

.splide__slideMovie {
  border-radius: 8px;
  height: 100%;
  width: 100%
}

.splide__pagination {
  position: static !important;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  order: 3
}

.splide__pagination li {
  line-height: 0
}

@media screen and (min-width: 1024px) {
  .splide__pagination {
    align-self: flex-end;
    padding-right: 8px;
    order: 2
  }


}

.single__page {
  width: 8px !important;
  height: 8px !important;
  margin: 0 !important
}

.single__page.is-active {
  background: #19944a !important;
  transform: none !important
}

@media screen and (min-width: 1024px) {
  .single__page {
    width: 12px !important;
    height: 12px !important
  }


}

.catch__copy {
  position: absolute;
  left: 2.13vw;
  bottom: 3.2vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: end;
  gap: 4px
}

@media screen and (min-width: 768px) {
  .catch__copy {
    left: 2.77vw;
    bottom: 2.77vw
  }


}

@media screen and (min-width: 1024px) {
  .catch__copy {
    gap: 16px
  }


}

@media screen and (min-width: 1440px) {
  .catch__copy {
    top: 384px
  }


}

.catch__logo {
  height: auto;
  background-color: #444;
  width: clamp(176px,
      16.53vw + 114.01px,
      352px);
  padding: clamp(5px,
      .28vw + 3.95px,
      8px) clamp(8px,
      .75vw + 5.19px,
      16px)
}

.catch__text {
  background-color: #fff;
  padding: 5px 8px;
  font-size: clamp(14px,
      3.7vw,
      56px);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.2px;
  color: #444;
  display: flex;
  align-items: center
}

@media screen and (min-width: 768px) {
  .catch__text {
    font-size: clamp(28px,
        3.89vw,
        56px);
    letter-spacing: 2.8px
  }


}

@media screen and (min-width: 1024px) {
  .catch__text {
    padding: 16px
  }


}

.textRed {
  color: #d62d29;
  position: relative;
  display: inline-block;
  z-index: 1
}

.textRed:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 4px;
  background: linear-gradient(to bottom,
      #d62d2929 0% 100%);
  z-index: -1
}

@media screen and (min-width: 1024px) {
  .textRed:after {
    bottom: -4px;
    height: 8px
  }


}

.about__exp {
  font-size: 14px;
  font-weight: 400;
  line-height: 175%;
  letter-spacing: .7px;
  color: #444;
  text-align: center
}

@media screen and (min-width: 1024px) {
  .about__exp {
    font-size: 18px;
    letter-spacing: .8px
  }


}

@media screen and (min-width: 1280px) {
  .about__exp {
    font-size: 20px;
    letter-spacing: 1px
  }


}

.br___768 {
  display: none
}

@media screen and (min-width: 768px) {
  .br___768 {
    display: block
  }


}

#about .signup__btn {
  padding: 17px 56px 17px 24px;
  text-align: center;
  width: 332px
}

@media screen and (min-width: 1024px) {
  #about .signup__btn {
    padding: 24px 56px 24px 32px;
    width: 376px
  }


}

.meritInner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px
}

@media screen and (min-width: 768px) {
  .meritInner {
    gap: 32px
  }


}

.about .section__h3 {
  position: relative;
  padding: 64px 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 145px;
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 1px
}

@media screen and (min-width: 1024px) {
  .about .section__h3 {
    padding: 50px 0 0;
    font-size: 25px;
    letter-spacing: 1.25px;
    line-height: 1.4;
    min-height: 132px
  }


}

.curveText {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  top: 24px;
  width: 100px;
  height: 25px
}

@media screen and (min-width: 1024px) {
  .curveText {
    top: 11px
  }


}

.num__h3 {
  color: #19944a;
  font-size: 31px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 1.55px
}

@media screen and (min-width: 1024px) {
  .num__h3 {
    font-size: 39px;
    letter-spacing: 1.95px
  }


}

.text__h3 {
  color: #19944a;
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 1.2px
}

@media screen and (min-width: 1024px) {
  .text__h3 {
    font-size: 31px;
    letter-spacing: 1.55px
  }


}

.meritCard {
  display: grid;
  grid-template-columns: repeat(1,
      1fr);
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 1140px
}

@media screen and (min-width: 768px) {
  .meritCard {
    grid-template-columns: repeat(2,
        1fr);
    gap: 24px
  }


}

.meritCard__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  border: 1px solid #19944a;
  overflow: hidden;
  position: relative;
  opacity: 0;
  visibility: hidden
}

@media screen and (min-width: 1024px) {
  .meritCard__item {
    max-width: 550px
  }


}

.meritCard__item:before {
  position: absolute;
  width: 40px;
  height: 40px;
  content: "";
  background-image: url(../../img/entrytama2025/about/tag_white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 40px 40px;
  top: 0;
  left: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Red Hat Display,
    sans-serif;
  color: #19944a;
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1px
}

.meritCard__item:nth-child(1):before {
  content: "01"
}

.meritCard__item:nth-child(2):before {
  content: "02"
}

.meritCard__item:nth-child(3):before {
  content: "03"
}

.meritCard__item:nth-child(4):before {
  content: "04"
}

.meritTitle {
  background-color: #19944a;
  width: 100%;
  padding: 8px 16px 12px 72px;
  min-height: 87px;
  display: flex;
  align-items: center;
  justify-content: center
}

@media screen and (min-width: 1024px) {
  .meritTitle {
    padding: 12px 8px 12px 56px;
    min-height: 67px
  }


}

.meritTitle__text {
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 1px;
  color: #fff
}

@media screen and (min-width: 1024px) {
  .meritTitle__text {
    text-align: center
  }


}

.meritTitle__text span {
  display: inline-block
}

.meritTitle__text .rhd {
  font-size: 31px;
  letter-spacing: 1.55px
}

.meritTitle__text .br__539 {
  display: block
}

@media screen and (min-width: 540px) {
  .meritTitle__text .br__539 {
    display: none
  }


}

.meritImg {
  width: 100%;
  height: auto;
  aspect-ratio: 343/212
}

@media screen and (min-width: 1024px) {
  .meritImg {
    aspect-ratio: 550/340
  }


}

.meritText {
  padding: 16px;
  background-color: #fff;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 175%;
  letter-spacing: .7px;
  flex-grow: 1
}

@media screen and (min-width: 1024px) {
  .meritText {
    font-size: 16px;
    letter-spacing: .8px
  }


}

.onText {
  position: relative
}

.meritSub {
  padding: 4px 12px;
  background: #ffffffe6;
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translate(-50%);
  white-space: nowrap
}

@media screen and (min-width: 1024px) {
  .meritSub {
    padding: 8px 12px;
    bottom: 12px
  }


}

.meritSub_text {
  color: #444;
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: .7px;
  text-align: center
}

@media screen and (min-width: 1024px) {
  .meritSub_text {
    font-size: 16px;
    letter-spacing: .8px
  }


}

.slider {
  gap: 32px
}

.title__group {
  display: flex;
  flex-direction: column-reverse;
  align-items: center
}

.sub__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 175%;
  letter-spacing: .7px;
  color: #19944a
}

@media screen and (min-width: 1024px) {
  .sub__title {
    font-size: 16px;
    letter-spacing: .8px
  }


}

.slider__exp {
  font-size: 14px;
  font-weight: 400;
  line-height: 175%;
  letter-spacing: .7px;
  color: #444;
  text-align: center
}

@media screen and (min-width: 1024px) {
  .slider__exp {
    font-size: 16px;
    letter-spacing: .8px
  }


}

.slider__wrap {
  display: flex;
  align-items: flex-start;
  width: 100vw;
  height: auto;
  overflow: hidden
}

.slider__wrap img {
  max-width: none;
  width: auto;
  height: 292px
}

@media screen and (min-width: 1024px) {
  .slider__wrap img {
    height: 436px
  }


}

.slider__wrap img:first-child {
  animation: loop 80s -40s linear infinite
}

@keyframes loop {
  0% {
    transform: translate(100%)
  }

  to {
    transform: translate(-100%)
  }


}

.slider__wrap img:last-child {
  animation: loop2 80s linear infinite
}

@keyframes loop2 {
  0% {
    transform: translate(0)
  }

  to {
    transform: translate(-200%)
  }


}

.access {
  position: relative;
  padding: 0;
  min-height: auto;
  width: 100vw
}

.access .container {
  max-width: none;
  position: relative;
  width: 100%;
  height: auto;
  clip-path: inset(0);
  padding: 48px 4.26%;
  display: flex;
  align-items: center;
  justify-content: center
}

@media screen and (min-width: 1024px) {
  .access .container {
    padding: 88px 4.26%
  }


}

.access .container:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url(../../img/entrytama2025/about/bg_access_sp.webp);
  background-size: cover;
  background-position: center;
  z-index: -1
}

@media screen and (min-width: 1024px) {
  .access .container:before {
    background-image: url(../../img/entrytama2025/about/bg_access_pc.webp)
  }


}

.access__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  background: #fffc;
  border-radius: 8px;
  padding: 16px 4.26%;
  width: 100%;
  max-width: 944px;
  height: auto;
  z-index: 1
}

@media screen and (min-width: 1024px) {
  .access__wrap {
    padding: 32px 2.22%;
    gap: 32px
  }


}

.access_exp {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 14px;
  font-weight: 400;
  line-height: 175%;
  letter-spacing: .7px;
  color: #444
}

@media screen and (min-width: 1024px) {
  .access_exp {
    flex-direction: row;
    gap: 40px;
    font-size: 16px;
    letter-spacing: .8px
  }


}

.access__textInner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px
}

@media screen and (min-width: 1024px) {
  .access__textInner {
    gap: 24px
  }


}

.access__h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 175%;
  letter-spacing: 1px
}

.facility {
  background-color: #19944a;
  color: #fff;
  padding: 0 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 175%;
  letter-spacing: .8px
}

.facility__list {
  display: flex;
  flex-direction: column;
  gap: 24px
}

@media screen and (min-width: 601px) {
  .facility__list {
    flex-direction: row
  }


}

@media screen and (min-width: 1024px) {
  .facility__list {
    gap: 16px
  }


}

.facility__listItem {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.facility__name {
  font-size: 14px;
  font-weight: 700;
  line-height: 175%;
  letter-spacing: .7px
}

@media screen and (min-width: 1024px) {
  .facility__name {
    font-size: 16px;
    letter-spacing: .8px
  }


}

.line {
  width: 100%;
  height: 1px;
  background-color: #444
}

@media screen and (min-width: 1024px) {
  .line {
    width: 452px
  }


}

.map {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3
}

@media screen and (min-width: 1024px) {
  .map {
    width: 388px
  }


}

.youtube {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: 8px
}

@media screen and (min-width: 1024px) {
  .youtube {
    width: 880px
  }


}

#reviews {
  background-color: #fff;
  padding: 48px 4.26%
}

@media screen and (min-width: 1024px) {
  #reviews {
    padding: 88px 4.26%
  }


}

.reviews .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px
}

.reviews .container .signup__btn {
  align-self: center;
  padding: 17px 56px 17px 24px;
  width: 262px;
  font-size: 14px;
  font-weight: 700;
  line-height: 100%
}

@media screen and (min-width: 1024px) {
  .reviews .container .signup__btn {
    width: 296px;
    padding: 24px 56px 24px 32px;
    font-size: 16px
  }


}

.splide__reviews {
  position: relative;
  width: 100%;
  margin: 0 auto;
  cursor: pointer
}

.splide__reviews .splide__track {
  padding-bottom: 68px
}

@media screen and (min-width: 1280px) {
  .splide__reviews .splide__track {
    padding-bottom: 8px !important
  }


}

.splide__reviews .splide__slide {
  width: 100%;
  padding: 4px;
  height: 100%
}

.splide__reviews .reviews__inner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 4px #0000003d;
  padding: 16px;
  min-height: 204px;
  height: 100%
}

@media screen and (min-width: 768px) {
  .splide__reviews .reviews__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
    min-height: 277px
  }


}

.splide__reviews .splide__arrow {
  background-color: #707070;
  border: none;
  width: 48px;
  height: 48px;
  opacity: 1;
  box-shadow: 0 0 4px #0000003d;
  transition: background-color .3s;
  top: auto;
  bottom: 0;
  -webkit-tap-highlight-color: transparent
}

@media screen and (min-width: 1280px) {
  .splide__reviews .splide__arrow {
    width: 56px;
    height: 56px;
    top: 40%
  }


}

@media (any-hover: hover) {
  .splide__reviews .splide__arrow:hover {
    background-color: #19944a
  }


}

.splide__reviews .splide__arrow:active {
  background-color: #19944a;
  transition: none
}

.splide__reviews .splide__arrow svg {
  display: none
}

.splide__reviews .splide__arrow[disabled] {
  opacity: .3;
  background-color: #707070;
  cursor: not-allowed
}

.splide__reviews .splide__arrow[disabled]:hover {
  background-color: #707070
}

.splide__reviews .splide__arrow--prev {
  left: 50%;
  transform: translate(calc(-100% - 8px))
}

@media screen and (min-width: 1280px) {
  .splide__reviews .splide__arrow--prev {
    left: -80px;
    transform: none
  }


}

.splide__reviews .splide__arrow--prev:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,
      -50%);
  width: 12px;
  height: 12px;
  background-image: url(../../img/entrytama2025/icon/arrow_prev.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain
}

.splide__reviews .splide__arrow--prev.arrow-animated:before {
  animation: floatLeft 1s ease-in-out infinite
}

.splide__reviews .splide__arrow--prev[disabled]:before {
  animation: none
}

.splide__reviews .splide__arrow--next {
  right: 50%;
  transform: translate(calc(100% + 8px))
}

@media screen and (min-width: 1280px) {
  .splide__reviews .splide__arrow--next {
    right: -80px;
    transform: none
  }


}

.splide__reviews .splide__arrow--next:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,
      -50%);
  width: 12px;
  height: 12px;
  background-image: url(../../img/entrytama2025/icon/arrow_next.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain
}

.splide__reviews .splide__arrow--next.arrow-animated:before {
  animation: floatRight 1s ease-in-out infinite
}

.splide__reviews .splide__arrow--next[disabled]:before {
  animation: none
}

@keyframes floatRight {

  0%,
  to {
    transform: translate(-50%,
        -50%)
  }

  50% {
    transform: translate(calc(-50% + 4px),
        -50%)
  }


}

@keyframes floatLeft {

  0%,
  to {
    transform: translate(-50%,
        -50%)
  }

  50% {
    transform: translate(calc(-50% - 4px),
        -50%)
  }


}

.profile {
  display: flex;
  flex-direction: column-reverse;
  gap: 12px
}

@media screen and (min-width: 768px) {
  .profile {
    flex-direction: row-reverse
  }


}

.reviewsText {
  color: #444;
  font-size: 14px;
  font-weight: 400;
  line-height: 175%;
  letter-spacing: .7px;
  flex: 1;
  overflow-wrap: break-word
}

.profileInner {
  color: #333
}

.profileAge {
  font-size: 16px;
  font-weight: 700;
  line-height: 175%;
  letter-spacing: .8px
}

@media screen and (min-width: 1024px) {
  .profileAge {
    font-size: 20px;
    letter-spacing: 1px
  }


}

.profileJob {
  font-size: 14px;
  font-weight: 700;
  line-height: 175%;
  letter-spacing: .7px
}

#flow {
  background-color: #fff;
  padding: 0;
  gap: 0
}

.flow {
  padding: 48px 4.26% 32px
}

@media screen and (min-width: 1024px) {
  .flow {
    padding: 88px 4.26% 48px
  }


}

.flow .section__h3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px
}

@media screen and (min-width: 1024px) {
  .flow .section__h3 {
    gap: 8px;
    padding-bottom: 8px
  }


}

.flow .section__h3 span {
  position: relative;
  display: inline-block;
  z-index: 1
}

.flow .section__h3 span:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 12px;
  background: linear-gradient(to bottom,
      #ffe9e8 0% 100%);
  z-index: -1
}

.troubles {
  display: flex;
  flex-direction: column;
  gap: 32px
}

@media screen and (min-width: 768px) {
  .troubles {
    flex-direction: row;
    gap: 24px
  }


}

.sp__view {
  display: block
}

@media screen and (min-width: 768px) {
  .sp__view {
    display: none
  }


}

.pc__view {
  display: none
}

@media screen and (min-width: 768px) {
  .pc__view {
    display: block
  }


}

.troubles__item {
  display: flex;
  align-items: center;
  gap: 16px
}

@media screen and (min-width: 768px) {
  .troubles__item {
    display: contents
  }


}

.trouble__text {
  display: contents
}

@media screen and (min-width: 768px) {
  .trouble__text {
    display: flex;
    flex-direction: column;
    gap: 32px
  }


}

.troubles__icon {
  width: 101px;
  height: 101px
}

@media screen and (min-width: 768px) {
  .troubles__icon {
    width: 133px;
    height: 133px
  }


}

.trouble__message {
  background-color: #f6f6f6;
  padding: 16px;
  border-radius: 16px 16px 16px 0;
  width: 100%;
  max-width: 944px;
  font-size: 14px;
  font-weight: 400;
  line-height: 175%;
  letter-spacing: .7px;
  color: #444
}

@media screen and (min-width: 1024px) {
  .trouble__message {
    padding: 24px;
    font-size: 20px;
    letter-spacing: 1px
  }


}

.troubles__list {
  font-size: 14px;
  font-weight: 400;
  line-height: 175%;
  letter-spacing: .7px;
  color: #444;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px
}

@media screen and (min-width: 1024px) {
  .troubles__list {
    font-size: 16px;
    letter-spacing: .8px
  }


}

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

.troubles__listItem:before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #19944a;
  border-radius: 50%;
  margin: 8px;
  flex-shrink: 0
}

.step {
  background-color: #f9f8f6;
  padding: 0 4.26% 48px
}

@media screen and (min-width: 1024px) {
  .step {
    padding: 0 4.26% 88px
  }


}

.step .signup__btn {
  align-self: center;
  padding: 17px 56px 17px 24px;
  width: 262px;
  font-size: 14px;
  font-weight: 700;
  line-height: 100%
}

@media screen and (min-width: 1024px) {
  .step .signup__btn {
    width: 296px;
    padding: 24px 56px 24px 32px;
    font-size: 16px
  }


}

.triangle {
  width: 0px;
  height: 0px;
  border-top: 24px solid #fff;
  border-right: 24px solid transparent;
  border-left: 24px solid transparent;
  top: 0
}

.step__list {
  display: grid;
  grid-template-columns: repeat(2,
      1fr);
  gap: 11px
}

@media screen and (min-width: 1024px) {
  .step__list {
    grid-template-columns: repeat(4,
        1fr);
    gap: 40px;
    width: 100%;
    max-width: 1140px
  }


}

.step__listItem {
  background-color: #fff;
  border-radius: 8px;
  padding: 40px 8px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  gap: 16px;
  width: 100%;
  max-width: 255px;
  min-height: 264px;
  position: relative
}

@media screen and (min-width: 1280px) {
  .step__listItem {
    padding: 1.66vw
  }


}

@media screen and (min-width: 1440px) {
  .step__listItem {
    min-height: 308px
  }


}

.step__listItem:before {
  position: absolute;
  width: 40px;
  height: 40px;
  content: "";
  background-image: url(../../img/entrytama2025/flow/tag.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 40px 40px;
  top: 0;
  left: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Red Hat Display,
    sans-serif;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1px
}

@media screen and (min-width: 1024px) {
  .step__listItem:before {
    left: 24px;
    font-size: 24px;
    letter-spacing: 1.2px
  }


}

.step__listItem:nth-child(1):before {
  content: "01"
}

.step__listItem:nth-child(2):before {
  content: "02"
}

.step__listItem:nth-child(3):before {
  content: "03"
}

.step__listItem:nth-child(4):before {
  content: "04"
}

.step__text {
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: .6px;
  color: #444;
  text-align: center
}

@media screen and (min-width: 1024px) {
  .step__text {
    font-size: 14px;
    line-height: 175%;
    letter-spacing: .7px
  }


}

.step__icon {
  width: 120px;
  height: 120px
}

@media screen and (min-width: 1024px) {
  .step__icon {
    width: 144px;
    height: 144px
  }


}

#faq {
  padding: 48px 4.26% 88px
}

@media screen and (min-width: 1024px) {
  #faq {
    padding: 96px 4.26%
  }


}

.details {
  border-top: 2px solid #D6D6D6;
  padding: 24px 16px;
  cursor: pointer
}

.details:last-of-type {
  border-bottom: 2px solid #D6D6D6
}

.details {
  transition: opacity .3s
}

@media (any-hover: hover) {
  .details:not([open]):hover {
    opacity: .7
  }


}

.detailsSummary {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  color: #444;
  font-size: 16px;
  font-weight: 400;
  line-height: 175%;
  letter-spacing: .8px;
  padding-right: 40px
}

@media screen and (min-width: 1024px) {
  .detailsSummary {
    gap: 24px
  }


}

.detailsSummary:before {
  content: "Q";
  font-family: Red Hat Display,
    sans-serif;
  display: inline-block;
  color: #d62d29;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 1.6px
}

@media screen and (min-width: 1024px) {
  .detailsSummary:before {
    font-size: 25px;
    line-height: 140%;
    letter-spacing: 2px
  }


}

.detailsSummary::-webkit-details-marker {
  display: none
}

.btn {
  position: absolute;
  width: 24px;
  height: 24px;
  right: 0;
  top: 50%;
  transform: translateY(-50%)
}

.btn:before,
.btn:after {
  content: "";
  position: absolute;
  background-color: #444;
  transition: transform .3s ease,
    opacity .3s ease
}

.btn:after {
  width: 24px;
  height: 2.25px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  opacity: 1
}

.btn.is-active:after {
  transform: translateY(-50%) rotate(90deg);
  opacity: 0
}

.btn:before {
  width: 2.25px;
  height: 24px;
  top: 0;
  left: 50%;
  transform: translate(-50%)
}

.btn.is-active:before {
  transform: translate(-50%) rotate(90deg)
}

.detailsContent {
  margin-top: 24px;
  padding: 24px;
  background-color: #fff;
  overflow: hidden;
  display: block;
  height: 0;
  opacity: 0
}

.details[open] .detailsContent {
  height: auto;
  opacity: 1
}

.detailAnswer {
  font-size: 14px;
  font-weight: 400;
  line-height: 175%;
  letter-spacing: .7px;
  color: #444;
  margin: 0
}

@media screen and (min-width: 1024px) {
  .detailAnswer {
    font-size: 16px;
    letter-spacing: .8px
  }


}

.signup__btn {
  background-color: #d62d29;
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden
}

.signup__btn:before {
  position: absolute;
  content: "";
  top: 0;
  left: -105%;
  width: 100%;
  height: 100%;
  transform: skew(-25deg);
  background: linear-gradient(to right,
      #fff0,
      #fff6 90%,
      #fff0)
}

@media (any-hover: hover) {
  .signup__btn:hover:before {
    animation: shine .8s
  }


}

@keyframes shine {
  0% {
    left: -105%
  }

  to {
    left: 105%
  }


}

.signup__btn:after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 16px;
  background-image: url(../../img/entrytama2025/icon/arrow_red.svg);
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: center
}

.signup__btn:visited {
  color: #fff
}

.header__cta {
  width: 132px
}

@media screen and (min-width: 1024px) {
  .header__cta {
    width: 208px
  }


}

@media (any-hover: hover) {
  .header__cta:hover:before {
    animation: shine .9s
  }


}

@media (any-hover: hover) {
  #kv .signup__btn:hover:before {
    animation: shine .8s
  }


}

@media screen and (any-hover: hover) and (min-width: 768px) {
  #kv .signup__btn:hover:before {
    animation: shine .9s
  }


}

.pageTop {
  display: grid;
  place-content: center;
  border: none;
  width: 56px;
  height: 56px;
  position: fixed;
  bottom: 16px;
  right: 4.26%;
  border-radius: 28px;
  background: #707070;
  box-shadow: 0 0 4px #0000003d;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s,
    background-color .3s,
    transform .3s
}

.pageTop.is-show {
  opacity: 1;
  pointer-events: auto
}

@media (any-hover: hover) {
  .pageTop:hover {
    opacity: .7
  }


}

@media screen and (min-width: 1024px) {
  .pageTop {
    width: 48px;
    height: 48px;
    right: 1.25%;
    bottom: 24px
  }


}

.splide__container {
  box-sizing: border-box;
  position: relative
}

.splide__list {
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block
}

.splide__pagination {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto
}

.splide:not(.is-overflow) .splide__pagination {
  display: none
}

.splide__progress__bar {
  width: 0
}

.splide {
  position: relative;
  visibility: hidden
}

.splide.is-initialized,
.splide.is-rendered {
  visibility: visible
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative
}

.splide__slide img {
  vertical-align: bottom
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  contain: strict;
  display: inline-block;
  height: 20px;
  inset: 0;
  margin: auto;
  position: absolute;
  width: 20px
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0
}

@keyframes splide-loading {
  0% {
    transform: rotate(0)
  }

  to {
    transform: rotate(1turn)
  }


}

.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none
}

.splide__track--fade>.splide__list>.splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0
}

.splide__track--fade>.splide__list>.splide__slide.is-active {
  opacity: 1;
  z-index: 1
}

.splide--rtl {
  direction: rtl
}

.splide__track--ttb>.splide__list {
  display: block
}

.splide__arrow {
  -ms-flex-align: center;
  align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  height: 2em;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: .7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  z-index: 1
}

.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em
}

.splide__arrow:hover:not(:disabled) {
  opacity: .9
}

.splide__arrow:disabled {
  opacity: .3
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px
}

.splide__arrow--prev {
  left: 1em
}

.splide__arrow--prev svg {
  transform: scaleX(-1)
}

.splide__arrow--next {
  right: 1em
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px
}

.splide__pagination {
  bottom: .5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: .7;
  padding: 0;
  position: relative;
  transition: transform .2s linear;
  width: 8px
}

.splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1.4);
  z-index: 1
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: .9
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px
}

.splide__progress__bar {
  background: #ccc;
  height: 3px
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0,
      0,
      0,
      0)
}

.splide__slide:focus {
  outline: 0
}

@supports (outline-offset:-3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px
  }


}

@media screen and (-ms-high-contrast:none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf
  }


}

@supports (outline-offset:-3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px
  }


}

@media screen and (-ms-high-contrast:none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf
  }

  .splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus {
    border-color: #0bf
  }


}

.splide__toggle {
  cursor: pointer
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px
}

.splide__track--nav>.splide__list>.splide__slide {
  border: 3px solid transparent;
  cursor: pointer
}

.splide__track--nav>.splide__list>.splide__slide.is-active {
  border: 3px solid #000
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1)
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1)
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%)
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg)
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg)
}

.splide__pagination--ttb {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  inset: 0 .5em 0 auto;
  padding: 1em 0
}