html {
  font-size: min(calc(10 / 1500 * 100vw), 10px);
  /* font-size: calc(10 / 1500 * 100vw); */
}

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  font-family: 'Noto Sans JP', '游ゴシック', YuGothic, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', Verdana, 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  color: #000;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
}

img {
  width: 100%;
}

.dib {
  display: inline-block;
}

.inner {
  padding: 0 2.4rem;
  width: 100%;
  max-width: 124.8rem;
  margin: 0 auto;
}

.sp_block {
  display: none !important;
}

.sp_flex {
  display: none !important;
}

.sp_br {
  display: none;
}

.sec_ttl {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  margin-bottom: 7.2rem;
  font-size: 7.2rem;
  font-weight: 700;
  text-transform: uppercase;
}

.sec_ttl::after {
  content: '';
  width: 18rem;
  height: 1.5rem;
  margin: 0 auto;
  background-color: #000;
}

.fadein {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fadein.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 10rem;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

header .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background-color: #000;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 0;
}

header .btn::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #ff0078;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

header .btn:hover::before {
  transform: scaleX(1);
}

header .login_btn {
  width: 24rem;
}

header .register_btn {
  width: 32rem;
}

header .header_logo {
  width: 32rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
header .header_logo:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

/* footer */
footer {
  padding: 6.4rem 0;
  color: #fff;
  background-color: #000;
}

footer .footer_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  max-width: 140rem;
  margin: 0 auto 8rem;
  position: relative;
}

footer .logo {
  width: 20rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

footer .logo:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

footer .sns_wrap {
  display: flex;
  gap: 4rem;
}

footer .sns_wrap .icon {
  width: 7.2rem;
  transition: all 0.3s ease;
}

footer .sns_wrap .icon:hover {
  transform: scale(1.1);
}

footer .footer_nav .list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2.4rem;
}

footer .footer_nav .list .item {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: all 0.3s ease;
}

footer .footer_nav .list .item:hover {
  color: #ff0078;
}

footer .copyright {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

/* lp_content */
main {
  padding-top: 10rem;
}
#fv {
  width: 100%;
  text-align: center;
  background-color: #000;
}

#fv video {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  vertical-align: bottom;
}

#catch .ttl {
  padding: 4rem 0;
  text-align: center;
  font-size: 6.4rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

#worries {
  margin-bottom: 15rem;
}

#worries .ttl {
  padding: 7rem 0;
  text-align: center;
  font-size: 5.6rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

#worries .content_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  padding: 0 4rem;
}

#worries .content_wrap .content {
  width: 50%;
  padding-bottom: 6.4rem;
  position: relative;
}

#worries .content_wrap .content::before {
  content: '';
  width: 5px;
  height: 0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  transition: all 0.8s ease 0.8s;
}

#worries .content_wrap .content.is-visible::before {
  height: 100%;
}

#worries .content_wrap .content.creator::before {
  background-color: #0096ff;
}

#worries .content_wrap .content.fun::before {
  background-color: #ff0078;
}

#worries .content_wrap .content .content_ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 0 1.6rem;
  margin-bottom: 6.4rem;
  border: 5px solid;
  border-radius: 64px;
  background-color: #fff;
}

#worries .content_wrap .content.creator .content_ttl {
  border-color: #0096ff;
  color: #0096ff;
}

#worries .content_wrap .content.fun .content_ttl {
  border-color: #ff0078;
  color: #ff0078;
}

#worries .content_wrap .content .content_ttl .en {
  text-align: center;
  font-size: 6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
#worries .content_wrap .content .content_ttl .ja {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

#worries .content_wrap .content .list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding: 2.4rem;
  background-color: #fff;
  border: 5px solid;
  border-radius: 24px;
}

#worries .content_wrap .content.creator .list {
  border-color: #0096ff;
}

#worries .content_wrap .content.fun .list {
  border-color: #ff0078;
}

#worries .content_wrap .content .list .item {
  padding: 1.6rem 0;
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  border-radius: 40px;
}

#worries .content_wrap .content.creator .list .item {
  background-color: #0096ff;
}

#worries .content_wrap .content.fun .list .item {
  background-color: #ff0078;
}

#worries .resolution {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: calc(100% - 8rem);
  margin: 0 auto;
  padding: 4rem 0;
  text-align: center;
  font-size: 5.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background-color: #ffff00;
  border: 5px solid #000;
  border-radius: 80px;
}

#worries .resolution::before,
#worries .resolution::after {
  content: '';
  width: 14.4rem;
  height: 8px;
  background-color: #000;
}

#feature {
  margin-bottom: 15rem;
}

#feature .content_wrap {
  display: flex;
  flex-direction: column;
  gap: 12rem;
}

#feature .content_wrap .content {
  display: flex;
}

#feature .content_wrap .content:nth-child(even) {
  flex-direction: row-reverse;
}

#feature .content_wrap .content .img {
  width: 50%;
}

#feature .content_wrap .content .text_wrap {
  width: 50%;
  padding-left: 4rem;
}

#feature .content_wrap .content:nth-child(even) .text_wrap {
  padding-left: 0;
  padding-right: 4rem;
}

#feature .content_wrap .content .text_wrap .catch {
  margin-bottom: 0.8rem;
  font-size: 4.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ff0078;
}

#feature .content_wrap .content:first-child .text_wrap .catch {
  letter-spacing: 0.15em;
}

#feature .content_wrap .content:nth-child(even) .text_wrap .catch {
  color: #0096ff;
}

#feature .content_wrap .content .text_wrap .ttl {
  width: 25.6rem;
  margin-bottom: 2.4rem;
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #fff;
  background-color: #ff0078;
  border-radius: 40px;
}

#feature .content_wrap .content:nth-child(even) .text_wrap .ttl {
  background-color: #0096ff;
}

#feature .content_wrap .content .text_wrap .text {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

#belief {
  padding: 4rem 0 15rem;
  color: #fff;
  background-color: #0096ff;
}

#belief .ttl {
  margin-bottom: 2.8rem;
  text-align: center;
  font-size: 5.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

#belief .text {
  width: 100rem;
  margin: 0 auto;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

#activity {
  padding-bottom: 15rem;
  background-image: url('../img/top/activity_bg.svg');
  background-size: cover;
  background-position: top;
  position: relative;
  z-index: 1;
}

#activity::before {
  content: '';
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 6.4rem;
  background-color: #0096ff;
  z-index: -1;
}

#activity .ttl {
  padding: 4rem 0 0;
  margin-bottom: 6.4rem;
  background-color: #fff;
  border-radius: 40px 40px 0 0;

  text-align: center;
  font-size: 4.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

#activity .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
}

#activity .list .item {
  width: calc(100% / 3 - (4rem * 2 / 3));
}

#interview {
  padding: 8rem 0 12rem;
  background-color: #ffff00;
}

#interview .ttl {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  margin-bottom: 4rem;
  font-size: 4rem;
  font-weight: 700;
}

#interview .ttl::before {
  content: '';
  width: 14.2rem;
  height: 1.5rem;
  background-color: #000;
}

.popup-box {
  width: 60%;
  padding: 4rem;
  margin: 0 auto;
  background-color: #fff;
}

#interview .list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

#interview .list .item {
  width: calc(100% / 3 - (4rem * 2 / 3));
  margin-right: 4rem;
  margin-bottom: 4rem;
  max-height: 1000px;
  opacity: 1;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), margin 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
}

#interview .list .item:nth-child(3n) {
  margin-right: 0;
}

#interview .list .item.hidden {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  transform: translateY(-20px);
}

#interview .list .item .img {
  aspect-ratio: 378 / 300;
  margin-bottom: 2.4rem;
  overflow: hidden;
}

#interview .list .item .img img {
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

#interview .list .item:hover .img img {
  transform: scale(1.1);
}

#interview .list .item .item_ttl {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

#interview .list .item:hover .item_ttl {
  color: #ff0078;
}

#interview .more_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 23rem;
  height: 7rem;
  margin: 0 auto;
  background-color: #fff;
  border: 5px solid #000;
  border-radius: 7rem;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  transition: all 0.3s ease;
}

#interview .more_btn:hover {
  color: #fff;
  background-color: #ff0078;
  border-color: #ff0078;
}

#faq {
  padding: 8rem 0 12rem;
  background-color: #fff;
  border-radius: 64px;
  position: relative;
}

#faq::before {
  content: '';
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 6.4rem;
  background-color: #ffff00;
  z-index: -1;
}

#faq::after {
  content: '';
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 6.4rem;
  background-color: #595757;
  z-index: -1;
}

#faq .list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

#faq .list .item {
  background-color: #fff;
  border-top: 5px solid #000;
  border-right: 5px solid #000;
  cursor: pointer;
}

#faq .list .item .question {
  display: flex;
  gap: 4rem;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-bottom: 5px solid #000;
  position: relative;
}

#faq .list .item .question::before {
  content: '';
  width: 10rem;
  aspect-ratio: 1 / 1;
  background-color: #000;
  background-image: url(../img/top/question_icon.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

#faq .list .item .question::after {
  content: '';
  width: 3.2rem;
  aspect-ratio: 32 / 22;
  background-color: #000;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  position: absolute;
  top: 50%;
  right: 2.4rem;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

#faq .list .item:hover .question::after {
  background-color: #ff0078;
}

#faq .list .item.active .question::after {
  transform: translateY(-50%) rotate(180deg);
}

#faq .list .item .question .text {
  padding: 2.4rem 2.4rem 2.4rem 0;
}

#faq .list .item .answer_wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
  border-left: 5px solid #000;
}

#faq .list .item.active .answer_wrap {
  grid-template-rows: 1fr;
}

#faq .list .item .answer {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 0 1.6rem;
  border-bottom: 0 solid #000;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  overflow: hidden;
  transition: all 0.3s ease;
}

#faq .list .item .answer::before {
  content: 'A';
  font-size: 5.6rem;
  font-weight: 700;
}

#faq .list .item.active .answer {
  padding: 2.4rem 1.6rem;
  border-bottom: 5px solid #000;
}

.grad_bg {
  background-image: linear-gradient(to bottom, #595757, #000000);
}

.grad_bg .sec_ttl {
  color: #fff;
}

.grad_bg .sec_ttl::after {
  background-color: #fff;
}

#message {
  padding: 15rem 0 15rem;
}

#message .content_wrap {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  background-color: #fff;
  border-radius: 64px;
  padding: 6.4rem 8rem;
}

#message .content_wrap .content_ttl {
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

#message .content_wrap .text {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.06em;
}

#developer {
  padding: 0 0 15rem;
}

#developer .content_wrap {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

#developer .content_wrap .text {
  color: #fff;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.06em;
}

#developer .content_wrap .flex_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8rem;
}

#developer .content_wrap .flex_wrap .text {
  width: 50%;
}

#developer .content_wrap .flex_wrap .logo {
  width: 50%;
}

#benefit {
  padding: 10rem 0;
}

#benefit .text {
  margin-bottom: 7.2rem;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.06em;
}

#benefit .content_wrap {
  display: flex;
  gap: 4rem;
  margin-bottom: 10rem;
}

#benefit .content_wrap .content {
  width: 50%;
  padding: 4rem;
  border: 5px solid;
  border-radius: 64px;
}

#benefit .content_wrap .content.creator {
  border-color: #0096ff;
}

#benefit .content_wrap .content.fun {
  border-color: #ff0078;
}

#benefit .content_wrap .content .content_ttl {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 0.8rem 0 1.6rem;
  margin-bottom: 4rem;
}

#benefit .content_wrap .content.creator .content_ttl {
  color: #0096ff;
}

#benefit .content_wrap .content.fun .content_ttl {
  color: #ff0078;
}

#benefit .content_wrap .content .content_ttl .en {
  text-align: center;
  font-size: 6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

#benefit .content_wrap .content .content_ttl .ja {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

#benefit .content_wrap .content .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 2.4rem;
}

#benefit .content_wrap .content .list .item {
  width: calc(50% - (2.4rem * 1 / 2));
}

#benefit .content_wrap .content .list .item:first-child {
  width: 100%;
}

#benefit .content_wrap .content .list .item .icon {
  width: 19.6rem;
  margin: 0 auto;
}

#benefit .btn {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60rem;
  height: 13rem;
  margin: 0 auto;
  background-color: #ffff00;
  border: 3px solid #000;
  border-radius: 7rem;
  font-size: 5.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: all 0.3s ease;
  overflow: hidden;
}

#benefit .btn:hover {
  color: #fff;
  border-color: #ff0078;
}

#benefit .btn::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #ff0078;
  position: absolute;
  top: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
  border-radius: 7rem;
}

#benefit .btn:hover::before {
  transform: scaleX(1);
}

@media (max-width: 767px) {
  html {
    font-size: calc(10 / 400 * 100vw);
  }

  .sp_none {
    display: none !important;
  }

  .sp_block {
    display: block !important;
  }

  .sp_flex {
    display: flex !important;
  }

  .sp_br {
    display: inline !important;
  }

  .sec_ttl {
    gap: 1.6rem;
    font-size: 4rem;
    margin-bottom: 2.4rem;
  }

  .sec_ttl::after {
    width: 5.6rem;
    height: 0.8rem;
  }

  /* header */

  header {
    height: 6rem;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
  }

  header .header_logo {
    width: 16rem;
  }

  header .hamburger {
    height: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
    border-right: 1px solid #000;
  }

  header .hamburger span {
    display: block;
    width: 3.2rem;
    height: 0.4rem;
    background-color: #000;
    position: absolute;
    left: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  header .hamburger span:nth-child(1) {
    top: 25%;
    transform: translateX(-50%);
  }

  header .hamburger span:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%);
  }

  header .hamburger span:nth-child(3) {
    bottom: 25%;
    transform: translateX(-50%);
  }

  header .hamburger.active span {
    height: 0.4rem;
  }

  header .hamburger.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }

  header .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  header .hamburger.active span:nth-child(3) {
    bottom: auto;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  header .sp_icon {
    height: 100%;
  }

  header .sp_icon img {
    width: auto;
    height: 100%;
  }

  .sp_menu {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    background-color: #fff;
    padding: 12rem 0 8rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .sp_menu.active {
    opacity: 1;
    visibility: visible;
  }

  .sp_menu .list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.4rem;
    width: 100%;
    height: 100%;
    margin-bottom: 6.4rem;
  }

  .sp_menu .list a {
    color: #000;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.06em;
  }

  .sp_menu .sns_wrap {
    display: flex;
    justify-content: center;
    gap: 2.4rem;
    margin-bottom: 6.4rem;
  }

  .sp_menu .sns_wrap .icon {
    width: 4rem;
  }

  .sp_menu .link_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.4rem;
  }

  .sp_menu .link_wrap .item a {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.06em;
  }

  /* footer */
  footer {
    padding: 4rem 0;
  }

  footer .footer_inner {
    flex-direction: column;
    gap: 2.4rem;
    margin-bottom: 4rem;
  }

  footer .logo {
    width: 12rem;
    position: static;
    transform: none;
  }

  footer .sns_wrap {
    justify-content: center;
    gap: 4rem;
  }

  footer .sns_wrap .icon {
    width: 4rem;
  }

  footer .footer_nav .list {
    align-items: flex-start;
  }

  footer .footer_nav .list .item {
    font-size: 1.8rem;
  }

  /* lp_content */

  main {
    padding-top: 6rem;
  }

  #catch .ttl {
    padding: 2rem 0;
    font-size: 2.5rem;
    line-height: 1.5;
  }

  #worries {
    margin-bottom: 5.6rem;
  }

  #worries .ttl {
    padding: 4rem 0;
    font-size: 2.5rem;
    line-height: 1.5;
  }

  #worries .content_wrap {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  #worries .content_wrap .content {
    width: 100%;
    padding-bottom: 0;
    margin-bottom: 4rem;
    background-color: #fff;
    border: 5px solid;
    border-radius: 24px;
  }

  #worries .content_wrap .content.creator {
    border-color: #0096ff;
  }

  #worries .content_wrap .content.fun {
    border-color: #ff0078;
  }

  #worries .content_wrap .content.is-visible::before {
    height: calc(100% + 4.5rem);
  }

  #worries .content_wrap .content .content_ttl {
    border: none;
    padding: 2.4rem;
    margin-bottom: 0;
  }

  #worries .content_wrap .content .list {
    border: none;
    padding: 0 2.4rem 2.4rem;
    margin-bottom: 0;
  }

  #worries .content_wrap .content .list .item {
    font-size: 2rem;
  }

  #worries .resolution {
    width: 100%;
    padding: 2.4rem 1.6rem;
    font-size: 3.6rem;
    line-height: 1.25;
  }

  #worries .resolution::before,
  #worries .resolution::after {
    width: 8rem;
  }

  #worries .content_wrap .content .content_ttl .en {
    font-size: 4rem;
  }

  #feature {
    margin-bottom: 5.6rem;
  }

  #feature .content_wrap {
    gap: 4rem;
  }

  #feature .content_wrap .content,
  #feature .content_wrap .content:nth-child(even) {
    flex-direction: column;
    gap: 0;
  }

  #feature .content_wrap .content .img {
    width: 100%;
    margin-bottom: 1.6rem;
    order: 2;
  }

  #feature .content_wrap .content .text_wrap,
  #feature .content_wrap .content:nth-child(even) .text_wrap {
    width: 100%;
    padding: 0;
  }

  #feature .content_wrap .content .text_wrap {
    display: contents;
  }

  #feature .content_wrap .content .text_wrap .catch {
    font-size: 2.4rem;
    text-align: center;
    order: 0;
  }

  #feature .content_wrap .content .text_wrap .ttl {
    width: 16rem;
    font-size: 1.8rem;
    margin: 0 auto 1.6rem;
  }

  #feature .content_wrap .content .text_wrap .text {
    order: 3;
    font-size: 1.8rem;
  }

  #belief {
    padding: 2.4rem 0 4rem;
  }

  #belief .ttl {
    font-size: 2.4rem;
  }

  #belief .text {
    width: 100%;
    font-size: 1.8rem;
  }

  #activity {
    padding-bottom: 5.6rem;
  }

  #activity::before {
    height: 2.4rem;
  }

  #activity .ttl {
    padding: 2.4rem 0 0;
    font-size: 2.4rem;
  }

  #activity .list {
    gap: 1.6rem;
  }

  #activity .list .item {
    width: calc(100% / 3 - (1.6rem * 2 / 3));
  }

  #interview {
    padding: 4rem 0 5.6rem;
  }

  #interview .ttl {
    flex-direction: column-reverse;
    align-items: center;
    gap: 1.6rem;
    margin-bottom: 2.4rem;
    font-size: 2.4rem;
  }

  #interview .ttl::before {
    width: 5.6rem;
    height: 0.8rem;
  }

  #interview .list .item {
    width: calc(100% / 2 - (2.4rem * 1 / 2));
    margin-right: 2.4rem;
    margin-bottom: 2.4rem;
  }

  #interview .list .item:nth-child(3n) {
    margin-right: 2.4rem;
  }

  #interview .list .item:nth-child(2n) {
    margin-right: 0;
  }

  #interview .list .item .img {
    margin-bottom: 0.8rem;
  }

  #interview .list .item .item_ttl {
    font-size: 1.8rem;
  }

  #interview .more_btn {
    width: 100%;
    height: 5.6rem;
    font-size: 2.4rem;
  }

  #interview .more_btn:hover {
    color: #000;
    background-color: #fff;
    border-color: #000;
  }

  #faq {
    padding: 4rem 0 5.6rem;
    border-radius: 32px;
  }

  #faq .list {
    gap: 2rem;
  }

  #faq .list .item .question {
    gap: 1.6rem;
    font-size: 2rem;
    border-left: 0;
  }

  #faq .list .item .question .text {
    padding: 1.6rem 2.4rem 1.6rem 0;
  }

  #faq .list .item .question::before {
    width: 4rem;
    min-width: 4rem;
  }

  #faq .list .item .question::after {
    width: 1.6rem;
    right: 0.8rem;
  }

  #faq .list .item .answer::before {
    font-size: 2rem;
  }

  #faq .list .item .answer {
    gap: 1.6rem;
    font-size: 1.8rem;
  }

  #message {
    padding: 4rem 0 5.6rem;
  }

  #message .inner {
    padding: 0;
  }

  #message .content_wrap {
    padding: 4rem 1.6rem;
    border-radius: 32px;
  }

  #message .content_wrap .content_ttl {
    font-size: 2.4rem;
    line-height: 1.35;
    text-align: center;
  }

  #message .content_wrap .text {
    font-size: 1.6rem;
    text-align: justify;
    text-justify: inter-word;
  }

  #developer {
    padding-bottom: 5.6rem;
  }

  #developer .content_wrap .text {
    font-size: 1.8rem;
  }

  #developer .content_wrap .flex_wrap {
    flex-direction: column-reverse;
    gap: 4rem;
  }

  #developer .content_wrap .flex_wrap .text {
    width: 100%;
    text-align: center;
  }

  #developer .content_wrap .flex_wrap .logo {
    width: 18rem;
  }

  #benefit {
    padding: 4rem 0 5.6rem;
  }

  #benefit .text {
    margin-bottom: 4rem;
    text-align: center;
    font-size: 1.6rem;
  }

  #benefit .content_wrap {
    flex-direction: column;
    margin-bottom: 4rem;
  }

  #benefit .content_wrap .content {
    width: 100%;
    padding: 2.4rem;
    border-radius: 24px;
  }

  #benefit .content_wrap .content .content_ttl {
    margin-bottom: 0;
  }

  #benefit .content_wrap .content .content_ttl .en {
    font-size: 3.2rem;
  }

  #benefit .content_wrap .content .content_ttl .ja {
    font-size: 1.6rem;
  }

  #benefit .content_wrap .content .list {
    gap: 1.6rem;
  }

  #benefit .content_wrap .content .list .item,
  #benefit .content_wrap .content .list .item:first-child {
    width: calc(100% / 3 - (1.6rem * 2 / 3));
  }

  #benefit .content_wrap .content .list .item .icon {
    width: 100%;
  }

  #benefit .btn {
    width: 100%;
    height: 7.2rem;
    font-size: 3.2rem;
  }
}
