@charset "UTF-8";
@font-face {
  font-family: "MOBO-Bold";
  src: url("./font/MOBO.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
html {
  width: 100%;
  overflow-x: hidden;
}
html.active {
  overflow-y: hidden;
}

body {
  color: #666;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 2.2em;
  padding: 0;
  margin: 0;
  width: 100%;
  overflow-x: hidden;
  font-feature-settings: "palt";
}
body.active {
  overflow-y: hidden;
}

img, object, video {
  max-width: 100%;
  height: auto;
}

.image {
  font-size: 0;
  line-height: 0;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  padding: 8px 30px 0;
  gap: 16px;
  z-index: 9999;
}
@media screen and (max-width: 1024px) {
  .header {
    padding: 24px 30px;
  }
}
@media screen and (max-width: 768px) {
  .header {
    padding: 24px 20px;
  }
}
.header--fixed {
  position: absolute;
}
.header--fixed:before {
  opacity: 0;
}
.header--fixed .header__logo {
  filter: brightness(0) invert(1) brightness(1000%);
}
.header--fixed .header__nav > ul > li > a:link, .header--fixed .header__nav > ul > li > a:visited, .header--fixed .header__nav > ul > li > a:hover, .header--fixed .header__nav > ul > li > a:active {
  color: #fff;
}
.header--fixed .header__nav > ul > li > a:after {
  background: #fff;
}
.header--fixed .header__nav > ul > li > a > img {
  filter: brightness(0) invert(1) brightness(1000%);
}
.header--fixed .header__btn {
  filter: brightness(0) invert(1) brightness(1000%);
}
.header:before {
  content: "";
  width: 100%;
  height: 8px;
  background: url(./img/header-border.webp) no-repeat;
  background-size: cover;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .header:before {
    background-size: 100% auto;
    background-repeat: repeat-y;
  }
}
.header__logo {
  font-size: 0;
  line-height: 0;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1180px) {
  .header__logo {
    width: 200px;
  }
}
@media screen and (max-width: 1024px) {
  .header__nav {
    display: none;
  }
}
.header__nav > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  gap: 32px;
}
@media screen and (max-width: 1280px) {
  .header__nav > ul {
    gap: 24px;
  }
}
@media screen and (max-width: 1180px) {
  .header__nav > ul {
    gap: 16px;
  }
}
.header__nav > ul > li {
  position: relative;
}
.header__nav > ul > li > a {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1em;
  padding: 32px 0;
  display: block;
  display: flex;
  justify-content: flex-start;
  transition: color 0.3s;
  gap: 4px;
  position: relative;
}
.header__nav > ul > li > a:link, .header__nav > ul > li > a:visited, .header__nav > ul > li > a:hover, .header__nav > ul > li > a:active {
  text-decoration: none;
  color: #383A3A;
}
.header__nav > ul > li > a:after {
  content: "";
  width: 100%;
  height: 2px;
  background: #383A3A;
  position: absolute;
  left: 0;
  bottom: 20px;
  transform: scale(0, 1);
  transition: transform 0.3s;
  transform-origin: left center;
}
.header__nav > ul > li img {
  display: none;
}
@media (hover: hover) {
  .header__nav > ul > li img {
    display: inherit;
    transition: transform 0.3s;
  }
  .header__nav > ul > li:hover > a:after, .header__nav > ul > li:active > a:after {
    transform: scale(1, 1);
  }
  .header__nav > ul > li:hover > a > img, .header__nav > ul > li:active > a > img {
    transform: scale(1, -1);
  }
  .header__nav > ul > li:hover .header__megamenu, .header__nav > ul > li:active .header__megamenu {
    opacity: 1;
    pointer-events: inherit;
    transform: translateY(0);
  }
}
.header__megamenu {
  transition: opacity 0.3s, transform 0.3s;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  position: absolute;
  left: 0;
  top: 100%;
  padding: 30px 16px;
  min-width: 280px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.header__megamenu > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  counter-reset: number 0;
}
.header__megamenu > ul > li {
  font-size: 0;
  line-height: 0;
}
.header__megamenu > ul > li > a {
  font-size: 16px;
  line-height: 1em;
  font-weight: 600;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  margin-right: auto;
  transition: color 0.3s;
}
.header__megamenu > ul > li > a:before {
  counter-increment: number 1;
  content: counter(number) ".";
  background: linear-gradient(180deg, #D33A69 0%, #FF6C04 100%);
  background-clip: text;
  color: transparent;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  line-height: 1em;
  display: block;
  width: 50px;
  text-align: center;
  transition: color 0.3s;
}
.header__megamenu > ul > li > a:link, .header__megamenu > ul > li > a:visited, .header__megamenu > ul > li > a:hover, .header__megamenu > ul > li > a:active {
  text-decoration: none;
  color: #383A3A;
}
@media (hover: hover) {
  .header__megamenu > ul > li > a:hover, .header__megamenu > ul > li > a:active {
    color: #D33A69;
  }
  .header__megamenu > ul > li > a:hover:before, .header__megamenu > ul > li > a:active:before {
    color: #D33A69;
  }
}
.header__megamenu > dl {
  margin: 0;
  padding: 30px 0 0;
  border-top: 1px solid #CCC;
  display: flex;
  justify-content: flex-start;
  gap: 16px;
}
.header__megamenu > dl dt {
  margin: 0;
  padding: 0;
}
.header__megamenu > dl dd {
  margin: 0;
  padding: 0;
}
.header__megamenu > dl dd > ul {
  margin: 0;
  padding: 4px 0 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.header__megamenu > dl dd > ul > li {
  font-size: 0;
  line-height: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}
.header__megamenu > dl dd > ul > li span {
  display: flex;
  padding: 4px 6px;
  gap: 4px;
  background: #ECB214;
  color: #fff;
  font-size: 12px;
  line-height: 1em;
  border-radius: 3px;
}
.header__megamenu > dl dd > ul > li > a {
  font-size: 14px;
  line-height: 1em;
  font-weight: 500;
  transition: color 0.3s;
}
.header__megamenu > dl dd > ul > li > a:link, .header__megamenu > dl dd > ul > li > a:visited, .header__megamenu > dl dd > ul > li > a:hover, .header__megamenu > dl dd > ul > li > a:active {
  text-decoration: none;
  color: #383A3A;
}
@media (hover: hover) {
  .header__megamenu > dl dd > ul > li > a:hover, .header__megamenu > dl dd > ul > li > a:active {
    color: #D33A69;
  }
}
@media screen and (max-width: 1128px) {
  .header__contact {
    display: none;
  }
}
.header__btn {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header__btn {
    display: block;
    width: 32px;
    height: 32px;
    cursor: pointer;
    position: relative;
  }
  .header__btn:before {
    content: "";
    width: 16px;
    height: 2px;
    background: #383A3A;
    display: block;
    position: absolute;
    right: 0;
    top: calc(50% - 1px);
  }
  .header__btn span {
    display: block;
    display: block;
    font-size: 0;
    line-height: 0;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
  .header__btn span:before {
    content: "";
    width: 24px;
    height: 2px;
    background: #383A3A;
    display: block;
    position: absolute;
    right: 0;
    top: calc(50% - 8px);
  }
  .header__btn span:after {
    content: "";
    width: 8px;
    height: 2px;
    background: #383A3A;
    display: block;
    position: absolute;
    right: 0;
    top: calc(50% + 7px);
  }
}

.btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.btn--primary {
  background: linear-gradient(90deg, #D33A69 0%, #FF6C04 100%);
  font-size: 14px;
  line-height: 1.5em;
  font-weight: 700;
  border-radius: 100px;
  padding: 16px 24px;
  gap: 4px 16px;
  transition: filter 0.3s;
  text-align: left;
  border: none;
  color: #fff !important;
  cursor: pointer;
}
.btn--primary:link, .btn--primary:visited, .btn--primary:hover, .btn--primary:active {
  text-decoration: none !important;
  color: #fff !important;
}
.btn--primary:after {
  content: "";
  width: 8px;
  height: 9px;
  display: block;
  background: url(./img/icon-arrow01.svg) no-repeat center center;
}
@media (hover: hover) {
  .btn--primary:hover, .btn--primary:active {
    filter: saturate(200%);
  }
  .btn--primary:hover:after, .btn--primary:active:after {
    animation: arrow 0.6s ease-in-out;
  }
}
.btn--primary span {
  font-size: 18px;
  line-height: 1.3em;
}
.btn--primary span small {
  font-size: 12px;
  line-height: 1em;
  font-weight: 400;
}
.btn--standard {
  display: flex;
  justify-content: space-between;
  border: 1px solid #D33A69;
  padding: 16px 24px;
  font-size: 12px;
  line-height: 1em;
  font-weight: 700;
  border-radius: 50px;
  min-width: 180px;
  box-sizing: border-box;
  background: #fff;
}
.btn--standard:link, .btn--standard:visited, .btn--standard:hover, .btn--standard:active {
  text-decoration: none !important;
  color: #D33A69 !important;
}
.btn--standard:after {
  content: "";
  width: 8px;
  height: 9px;
  display: block;
  background: url(./img/icon-arrow02.svg) no-repeat center center;
}
@media (hover: hover) {
  .btn--standard:hover:after, .btn--standard:active:after {
    animation: arrow 0.6s ease-in-out;
  }
}
.btn--scroll {
  display: flex;
  justify-content: space-between;
  border: 1px solid #D33A69;
  padding: 16px 24px;
  font-size: 12px;
  line-height: 1em;
  font-weight: 700;
  border-radius: 50px;
  min-width: 180px;
  box-sizing: border-box;
  background: #fff;
}
.btn--scroll:link, .btn--scroll:visited, .btn--scroll:hover, .btn--scroll:active {
  text-decoration: none;
  color: #D33A69;
}
.btn--scroll:after {
  content: "";
  width: 8px;
  height: 9px;
  display: block;
  background: url(./img/icon-arrow04.svg) no-repeat center center;
}
@media (hover: hover) {
  .btn--scroll:hover:after, .btn--scroll:active:after {
    animation: scroll 0.6s ease-in-out;
  }
}
.btn--link {
  line-height: 1.6em;
  color: #449BAA;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .btn--link {
    font-size: 12px;
    line-height: 1.6em;
  }
}
.btn--link:link, .btn--link:visited, .btn--link:hover, .btn--link:active {
  text-decoration: none;
  color: #449BAA;
}
@media (hover: hover) {
  .btn--link:hover, .btn--link:active {
    text-decoration: underline;
  }
}

.required:after {
  content: "*";
  color: #D33A69;
}

@keyframes arrow {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(8px);
    opacity: 0;
  }
  51% {
    transform: translateX(-8px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
@keyframes scroll {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(8px);
    opacity: 0;
  }
  51% {
    transform: translateY(-8px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .sp-hide {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .pc-hide {
    display: none;
  }
}

.mv {
  background: url(./img/mv-bg.webp) no-repeat center center;
  background-size: cover;
  border-radius: 0 0 60px 60px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  min-height: 660px;
  height: calc(100vh + 60px);
  box-sizing: border-box;
  position: relative;
  padding: 0 60px;
}
@media screen and (max-width: 1024px) {
  .mv {
    align-items: center;
    padding-top: 80px;
    min-height: 900px;
    max-height: 100vh;
  }
}
@media screen and (max-width: 768px) {
  .mv {
    border-radius: 0 0 30px 30px;
    height: calc(100dvh + 30px);
    max-height: 100%;
    padding: 0 20px;
    min-height: 800px;
    background-image: url(./img/mv-bg-sp.webp);
  }
}
.mv__inner {
  width: 100%;
  max-width: 1100px;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .mv__inner {
    flex-direction: column;
  }
}
.mv__image {
  position: absolute;
  right: -30px;
  top: calc(50% - 260px);
  opacity: 0;
}
@media screen and (max-width: 1180px) {
  .mv__image {
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  .mv__image {
    position: relative;
    top: auto;
    order: 1;
    width: 69%;
    right: 0;
    margin-top: -30px;
  }
}
@media screen and (max-width: 413px) {
  .mv__image {
    margin-top: 0;
  }
}
@media screen and (max-width: 1180px) {
  .mv__title {
    width: 62%;
  }
}
@media screen and (max-width: 1024px) {
  .mv__title {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  .mv__title {
    width: 100%;
  }
}
.mv__title svg {
  width: 100%;
  height: auto;
  max-width: 660px;
}
.mv__title svg path {
  opacity: 0;
}
.mv__text {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .mv__text {
    order: 2;
    max-width: 660px;
    margin: -24px auto 0;
    z-index: 2;
  }
}
@media screen and (max-width: 768px) {
  .mv__text {
    margin-top: -8px;
    gap: 24px;
  }
}
.mv__desc {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 200%; /* 36px */
  opacity: 0;
}
.mv__desc p {
  margin: 0;
  padding: 0;
}
.mv__btn {
  max-width: 540px;
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .mv__btn {
    max-width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .mv__btn {
    flex-direction: column;
  }
}
.mv__btn .btn {
  flex: 1;
}
.mv__deco {
  font-size: 0;
  line-height: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 1;
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .mv__deco {
    display: none;
  }
}
.mv__deco svg {
  width: 100%;
  height: auto;
}
.mv__deco svg path {
  opacity: 0;
}

.sec {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 60px 30px 80px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .sec {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 768px) {
  .sec--pages {
    padding: 40px 30px;
  }
}
.sec--pages + .sec--pagenav {
  padding-top: 0;
}
.sec__inner {
  width: 100%;
  max-width: 1160px;
}
.sec__header {
  margin: 0 0 60px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sec__title-en {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 1em;
  font-weight: 600;
  color: #383A3A;
  display: flex;
  gap: 8px;
  align-items: center;
}
.sec__title-en:before {
  content: "";
  width: 9px;
  height: 9px;
  display: block;
  background: url("./img/icon-title01.svg") no-repeat center center;
  background-size: cover;
}
.sec__title {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1em;
  margin: 0;
  color: #383A3A;
}
.sec--top-service {
  width: 100%;
  overflow: hidden;
}
.sec--support {
  position: relative;
  border-radius: 60px 60px 0 0;
  overflow: hidden;
  padding-bottom: 140px;
}
@media screen and (max-width: 768px) {
  .sec--support {
    border-radius: 30px 30px 0 0;
    padding-bottom: 120px;
  }
}
.sec--support:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url("./img/mv-bg.webp") no-repeat center center;
  background-size: cover;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0.3;
}
.sec--support + .sec--top-voice {
  margin-top: -60px;
}
.sec--top-voice {
  background: url("./img/bg01.webp") center center;
  background-size: 1280px auto;
  border-radius: 60px 60px 0 0;
  padding-bottom: 140px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .sec--top-voice {
    border-radius: 30px 30px 0 0;
    padding-bottom: 120px;
  }
}
.sec--top-voice + .sec--column {
  margin-top: -60px;
}
.sec--column {
  background: #fff;
  border-radius: 60px 60px 0 0;
}
@media screen and (max-width: 768px) {
  .sec--column {
    border-radius: 30px 30px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .sec--column + .sec--pagenav {
    padding-top: 0;
  }
}
.sec--contact {
  position: relative;
  border-radius: 60px 60px 0 0;
  overflow: hidden;
  padding-bottom: 140px;
}
@media screen and (max-width: 768px) {
  .sec--contact {
    border-radius: 30px 30px 0 0;
    padding-bottom: 120px;
  }
}
.sec--contact:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url("./img/mv-bg.webp") no-repeat center center;
  background-size: cover;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0.3;
}

.top-service {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-service {
    gap: 16px;
  }
}
.top-service__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.top-service__image {
  mix-blend-mode: multiply;
}
@media screen and (max-width: 1024px) {
  .top-service__image {
    max-width: 330px;
    margin: 0 auto;
  }
}
.top-service__title {
  color: #383A3A;
  font-family: MOBO-Bold;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2em; /* 48px */
  margin: 0;
}
@media screen and (max-width: 768px) {
  .top-service__title {
    font-size: 24px;
    line-height: 1.2em;
  }
}
.top-service__subtitle {
  color: #383A3A;
  text-align: center;
  font-family: MOBO-Bold;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 27px */
  margin: 0;
}
@media screen and (max-width: 768px) {
  .top-service__subtitle {
    font-size: 16px;
    line-height: 1.5em;
  }
}
.top-service__desc {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 220%; /* 35.2px */
}
@media screen and (max-width: 768px) {
  .top-service__desc {
    text-align: left;
    max-width: 420px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 2.2em;
  }
}
.top-service__desc p {
  margin: 0;
}
.top-service__desc p:not(:last-child) {
  margin-bottom: 2em;
}
.top-service__btn {
  display: flex;
  justify-content: center;
}
.top-service__deco {
  font-size: 0;
  line-height: 0;
  position: absolute;
  z-index: -1;
}
@media screen and (max-width: 480px) {
  .top-service__deco {
    display: none;
  }
}
.top-service__deco svg {
  width: 100%;
  height: auto;
  overflow: inherit;
}
.top-service__deco--01 {
  left: calc(100% - 300px);
  top: -60px;
}
@media screen and (max-width: 1024px) {
  .top-service__deco--01 {
    left: calc(100% - 60px);
    width: 200px;
  }
}
.top-service__deco--02 {
  right: calc(100% - 300px);
  bottom: 0;
}
@media screen and (max-width: 1024px) {
  .top-service__deco--02 {
    right: calc(100% - 100px);
    width: 300px;
    bottom: auto;
    top: 50%;
  }
}

.support {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.support__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}
.support__title {
  color: #383A3A;
  font-family: MOBO-Bold;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2em; /* 48px */
  margin: 0;
}
@media screen and (max-width: 768px) {
  .support__title {
    font-size: 24px;
    line-height: 1.2em;
  }
}
.support__subtitle {
  color: #383A3A;
  font-family: MOBO-Bold;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 27px */
  margin: 0;
}
@media screen and (max-width: 768px) {
  .support__subtitle {
    font-size: 16px;
    line-height: 1.5em;
    white-space: nowrap;
  }
}

.promise {
  display: flex;
  justify-content: flex-start;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .promise {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }
}
.promise__item {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
}
.promise__icon {
  width: 64px;
  height: 64px;
  background: #E27065;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: calc(50% - 120px);
  top: 0;
  z-index: 2;
}
.promise__icon span {
  display: block;
  font-size: 12px;
  line-height: 1em;
  font-weight: 600;
  text-align: center;
}
.promise__icon span strong {
  display: block;
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 32px */
}
.promise__image {
  border-radius: 50%;
  overflow: hidden;
  box-sizing: border-box;
  border: 3px solid #383A3A;
}
.promise__image img {
  aspect-ratio: 1/1;
  object-fit: cover;
}
.promise__title {
  color: #383A3A;
  text-align: center;
  font-family: MOBO-Bold;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 28.8px */
  margin: 0;
}
.promise__desc {
  padding: 0 24px;
  color: #383A3A;
}
@media screen and (max-width: 1024px) {
  .promise__desc {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .promise__desc {
    max-width: 480px;
  }
}
.promise__desc p {
  margin: 0;
  line-height: 1.8em;
}

.top-voice {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .top-voice {
    gap: 30px;
  }
}
.top-voice__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}
.top-voice__title {
  color: #383A3A;
  font-family: MOBO-Bold;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2em; /* 48px */
  margin: 0;
}
@media screen and (max-width: 768px) {
  .top-voice__title {
    font-size: 24px;
    line-height: 1.2em;
  }
}
.top-voice__subtitle {
  color: #383A3A;
  font-family: MOBO-Bold;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 27px */
  margin: 0;
}
@media screen and (max-width: 768px) {
  .top-voice__subtitle {
    font-size: 16px;
    line-height: 1.5em;
  }
}
.top-voice__desc {
  text-align: center;
  padding: 16px 0 0;
}
@media screen and (max-width: 768px) {
  .top-voice__desc {
    padding: 0;
    text-align: left;
    max-width: 480px;
    margin: 0 auto;
  }
}
.top-voice__desc p {
  margin: 0;
}
.top-voice__btn {
  display: flex;
  justify-content: center;
}

.voice-list {
  display: flex;
  justify-content: flex-start;
  gap: 60px;
}
@media screen and (max-width: 1024px) {
  .voice-list {
    gap: 16px;
  }
}
@media screen and (max-width: 768px) {
  .voice-list {
    display: block;
    width: calc(100% + 10px);
    transform: translateX(-5px);
  }
}
.voice-list__item {
  flex: 1;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .voice-list__item {
    margin: 0 5px;
    border-radius: 8px;
  }
}
.voice-list__image img {
  width: 100%;
  height: auto;
}
.voice-list__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
}
.voice-list__title {
  margin: 0;
  padding: 0;
  color: #383A3A;
  font-family: MOBO-Bold;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 28.8px */
}
.voice-list__age {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  line-height: 1em;
}
.voice-list__desc p {
  margin: 0;
  line-height: 1.8em;
}

.label {
  display: inline-block;
  font-size: 12px;
  line-height: 1em;
  font-weight: 500;
  padding: 8px;
  color: #fff;
  border-radius: 4px;
}
.label--achieve {
  background: #E27065;
}
.label--career {
  background: #5DAE80;
}

.top-column__btn {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .top-column__btn {
    margin-top: 60px;
  }
}

.column-list {
  display: flex;
  flex-wrap: wrap;
}
.column-list--two {
  gap: 0 60px;
}
@media screen and (max-width: 768px) {
  .column-list--two {
    display: block;
    width: calc(100% + 10px);
    transform: translateX(-5px);
  }
}
.column-list--two .column-list__item {
  width: calc(50% - 30px);
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 768px) {
  .column-list--two .column-list__item {
    width: 100%;
    border-top: none;
    padding: 0;
    flex-wrap: wrap;
    margin: 0 5px;
  }
}
.column-list--two .column-list__image {
  max-width: 220px;
}
@media screen and (max-width: 768px) {
  .column-list--two .column-list__image {
    max-width: 100%;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 768px) {
  .column-list--two .column-list__text {
    padding-right: 8px;
  }
}
.column-list__item {
  border-top: 1px solid #ccc;
  padding: 32px 30px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .column-list__item {
    padding-left: 0;
    padding-right: 0;
  }
}
.column-list__image {
  max-width: 290px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: auto;
}
@media screen and (max-width: 768px) {
  .column-list__image {
    border-radius: 8px;
  }
}
@media screen and (max-width: 680px) {
  .column-list__image {
    max-width: 100%;
    width: 100%;
  }
}
.column-list__image img {
  aspect-ratio: 4/3;
  object-fit: cover;
}
.column-list__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.column-list__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.column-list__date {
  color: #666;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 12px */
  letter-spacing: 1.2px;
}
.column-list__cat {
  font-size: 0;
  line-height: 0;
}
.column-list__title {
  color: #383A3A;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
  margin: 0;
}
.column-list__title a:link, .column-list__title a:visited, .column-list__title a:hover, .column-list__title a:active {
  text-decoration: none;
  color: #383A3A;
}
.column-list__desc {
  color: #666;
  font-size: 14px;
  line-height: 2em;
}
.column-list__desc p {
  margin: 0;
}
.column-list__desc a:link, .column-list__desc a:visited, .column-list__desc a:hover, .column-list__desc a:active {
  text-decoration: none;
  color: #666;
}

.cat {
  display: inline-block;
  color: #fff;
  font-family: Inter;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 10px */
  padding: 8px 16px;
  background: #C7AB55;
  border-radius: 3px;
  text-transform: uppercase;
}
.cat:link, .cat:visited, .cat:hover, .cat:active {
  text-decoration: none;
  color: #fff;
}

.pagenav {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 60px;
}
@media screen and (max-width: 1024px) {
  .pagenav {
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .pagenav {
    flex-direction: column;
    gap: 16px;
  }
}
.pagenav__item {
  width: calc(33.3% - 40px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: url("./img/bg01.webp");
  background-size: 1280px auto;
  box-sizing: border-box;
  padding: 24px;
  border-radius: 16px;
  position: relative;
  gap: 24px;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .pagenav__item {
    width: calc(33.3% - 20px);
  }
}
@media screen and (max-width: 768px) {
  .pagenav__item {
    width: 100%;
    gap: 16px;
    border-radius: 8px;
  }
}
@media (hover: hover) {
  .pagenav__item:hover .pagenav__title-en:before {
    transform: rotate(360deg);
  }
  .pagenav__item:hover:before {
    animation: arrow 0.6s ease-in-out;
  }
}
.pagenav__item--l {
  width: calc(50% - 30px);
}
@media screen and (max-width: 1024px) {
  .pagenav__item--l {
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 768px) {
  .pagenav__item--l {
    width: 100%;
  }
}
.pagenav__item:after {
  content: "";
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #D33A69;
  box-sizing: border-box;
  display: block;
}
.pagenav__item:before {
  content: "";
  width: 8px;
  height: 9px;
  display: block;
  background: url(./img/icon-arrow02.svg) no-repeat center center;
  position: absolute;
  right: 36px;
}
.pagenav__image {
  width: 100px;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .pagenav__image {
    display: none;
  }
}
.pagenav__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-right: auto;
}
.pagenav__title-en {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 1em;
  font-weight: 600;
  color: #383A3A;
  display: flex;
  gap: 8px;
  align-items: center;
}
.pagenav__title-en:before {
  content: "";
  width: 9px;
  height: 9px;
  display: block;
  background: url("./img/icon-title01.svg") no-repeat center center;
  background-size: cover;
  transition: transform 1.3s;
}
.pagenav__title {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1em;
  margin: 0;
  color: #383A3A;
}
.pagenav__title a:link, .pagenav__title a:visited, .pagenav__title a:hover, .pagenav__title a:active {
  text-decoration: none;
  color: #383A3A;
}
.pagenav__desc {
  font-size: 12px;
  line-height: 1.8em;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer-contact__desc {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer-contact__desc {
    text-align: left;
    max-width: 480px;
    margin: 0 auto;
  }
}
.footer-contact__desc p {
  margin: 0;
}
.footer-contact__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .footer-contact__block {
    gap: 12px;
    width: 100%;
    max-width: 380px;
  }
}
.footer-contact__btn {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer-contact__btn {
    padding: 0;
    border: none;
  }
}
.footer-contact .sec__header {
  margin-bottom: 0;
}
.footer-contact .sec__title-en {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
}
.footer-contact .sec__title {
  text-align: center;
  color: #383A3A;
  font-family: MOBO-Bold;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 48px */
}
@media screen and (max-width: 768px) {
  .footer-contact .sec__title {
    font-size: 24px;
    line-height: 1.2em;
  }
}

.drawer {
  position: fixed;
  z-index: 99999;
  top: 0;
  right: 0;
  width: 100%;
  height: 100dvh;
  overflow-y: scroll;
  max-width: 300px;
  background: #fff;
  box-sizing: border-box;
  padding: 40px 20px;
  transform: translateX(300px);
  transition: transform 0.3s;
}
.drawer.active {
  transform: translateX(0);
}
.drawer__logo {
  font-size: 0;
  line-height: 0;
  margin-bottom: 40px;
  width: 200px;
}
.drawer__link {
  list-style: none;
  display: flex;
  border-top: 1px solid #CCC;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 16px 40px;
  padding: 60px 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .drawer__link {
    order: 1;
    gap: 16px 24px;
  }
}
.drawer__link > li {
  font-size: 0;
  line-height: 0;
}
.drawer__link > li a {
  color: #383A3A;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 12px */
}
.drawer__link > li a:link, .drawer__link > li a:visited, .drawer__link > li a:hover, .drawer__link > li a:active {
  text-decoration: none;
  color: #383A3A;
}
.drawer__open {
  width: 32px;
  height: 32px;
  display: block;
  font-size: 0;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
  right: -10px;
  bottom: 0;
  border-radius: 50%;
  background: #F2F2F2;
  cursor: pointer;
  transition: transform 0.3s;
}
.drawer__open.active {
  transform: rotate(45deg);
}
.drawer__open:after {
  content: "";
  width: 12px;
  height: 1px;
  background: #666;
  display: block;
  position: absolute;
  left: calc(50% - 6px);
  top: 50%;
}
.drawer__open:before {
  content: "";
  width: 12px;
  height: 1px;
  background: #666;
  display: block;
  position: absolute;
  left: calc(50% - 6px);
  top: 50%;
  transform: rotate(90deg);
}
.drawer__megamenu {
  display: none;
}
.drawer__megamenu > ul {
  list-style: none;
  padding: 24px 0 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  counter-reset: number 0;
}
.drawer__megamenu > ul > li {
  font-size: 0;
  line-height: 0;
}
.drawer__megamenu > ul > li > a {
  font-size: 16px;
  line-height: 1em;
  font-weight: 600;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  margin-right: auto;
  transition: color 0.3s;
}
.drawer__megamenu > ul > li > a:before {
  counter-increment: number 1;
  content: counter(number) ".";
  background: linear-gradient(180deg, #D33A69 0%, #FF6C04 100%);
  background-clip: text;
  color: transparent;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  line-height: 1em;
  display: block;
  width: 50px;
  text-align: center;
  transition: color 0.3s;
}
.drawer__megamenu > ul > li > a:link, .drawer__megamenu > ul > li > a:visited, .drawer__megamenu > ul > li > a:hover, .drawer__megamenu > ul > li > a:active {
  text-decoration: none;
  color: #383A3A;
}
@media (hover: hover) {
  .drawer__megamenu > ul > li > a:hover, .drawer__megamenu > ul > li > a:active {
    color: #D33A69;
  }
  .drawer__megamenu > ul > li > a:hover:before, .drawer__megamenu > ul > li > a:active:before {
    color: #D33A69;
  }
}
.drawer__megamenu > dl {
  margin: 0;
  padding: 30px 0 0;
  border-top: 1px solid #CCC;
  display: flex;
  justify-content: flex-start;
  gap: 16px;
}
.drawer__megamenu > dl dt {
  margin: 0;
  padding: 0;
}
.drawer__megamenu > dl dd {
  margin: 0;
  padding: 0;
}
.drawer__megamenu > dl dd > ul {
  margin: 0;
  padding: 4px 0 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.drawer__megamenu > dl dd > ul > li {
  font-size: 0;
  line-height: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}
.drawer__megamenu > dl dd > ul > li span {
  display: flex;
  padding: 4px 6px;
  gap: 4px;
  background: #ECB214;
  color: #fff;
  font-size: 12px;
  line-height: 1em;
  border-radius: 3px;
}
.drawer__megamenu > dl dd > ul > li > a {
  font-size: 14px;
  line-height: 1em;
  font-weight: 500;
  transition: color 0.3s;
}
.drawer__megamenu > dl dd > ul > li > a:link, .drawer__megamenu > dl dd > ul > li > a:visited, .drawer__megamenu > dl dd > ul > li > a:hover, .drawer__megamenu > dl dd > ul > li > a:active {
  text-decoration: none;
  color: #383A3A;
}
@media (hover: hover) {
  .drawer__megamenu > dl dd > ul > li > a:hover, .drawer__megamenu > dl dd > ul > li > a:active {
    color: #D33A69;
  }
}

.drawer-bg {
  background: url("./img/mv-bg.webp") no-repeat center center;
  background-size: cover;
  width: 100vw;
  height: 100dvh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99998;
  cursor: pointer;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.drawer-bg.active {
  opacity: 0.9;
  pointer-events: inherit;
}

.drawer-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 745px;
  margin-bottom: 60px;
}
.drawer-nav__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.drawer-nav__title-en {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 1em;
  font-weight: 600;
  color: #383A3A;
  display: flex;
  gap: 8px;
  align-items: center;
}
.drawer-nav__title-en:before {
  content: "";
  width: 9px;
  height: 9px;
  display: block;
  background: url("./img/icon-title01.svg") no-repeat center center;
  background-size: cover;
}
.drawer-nav__title {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1em;
  margin: 0;
  color: #383A3A;
  position: relative;
}
.drawer-nav__title a:link, .drawer-nav__title a:visited, .drawer-nav__title a:hover, .drawer-nav__title a:active {
  text-decoration: none;
  color: #383A3A;
}

.footer {
  border-radius: 60px 60px 0 0;
  background: #fff;
  margin-top: -60px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .footer {
    border-radius: 30px 30px 0 0;
    padding-top: 60px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  .footer__logo {
    width: 220px;
  }
}
.footer__inner {
  width: 100%;
  max-width: 1220px;
  box-sizing: border-box;
  padding: 0 30px;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .footer__top {
    flex-direction: column;
  }
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  border-top: 1px solid #F2F2F2;
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 0;
  }
}
.footer__copyright {
  color: #666;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 12px */
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    order: 2;
  }
}
.footer__link {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 16px 40px;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .footer__link {
    order: 1;
    gap: 16px 24px;
  }
}
.footer__link > li {
  font-size: 0;
  line-height: 0;
}
.footer__link > li a {
  color: #383A3A;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 12px */
}
.footer__link > li a:link, .footer__link > li a:visited, .footer__link > li a:hover, .footer__link > li a:active {
  text-decoration: none;
  color: #383A3A;
}
.footer__image {
  transform-origin: bottom center;
  pointer-events: none;
}

.footer-nav {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 745px;
}
.footer-nav__item {
  width: calc(33.3% - 20px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .footer-nav__item {
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 480px) {
  .footer-nav__item {
    width: 100%;
  }
}
@media (hover: hover) {
  .footer-nav__item:hover .footer-nav__title-en:before {
    transform: rotate(360deg);
  }
}
.footer-nav__title-en {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 1em;
  font-weight: 600;
  color: #383A3A;
  display: flex;
  gap: 8px;
  align-items: center;
}
.footer-nav__title-en:before {
  content: "";
  width: 9px;
  height: 9px;
  display: block;
  background: url("./img/icon-title01.svg") no-repeat center center;
  background-size: cover;
  transition: transform 1.3s;
}
.footer-nav__title {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1em;
  margin: 0;
  color: #383A3A;
}
.footer-nav__title a:link, .footer-nav__title a:visited, .footer-nav__title a:hover, .footer-nav__title a:active {
  text-decoration: none;
  color: #383A3A;
}

.fixed-cta {
  position: fixed;
  z-index: 9999;
  right: 30px;
  bottom: 30px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 50px;
  padding: 8px 8px 8px 24px;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
  .fixed-cta {
    width: 100vw;
    right: 0;
    bottom: 0;
    border-radius: 0;
    justify-content: center;
  }
}
.fixed-cta__title {
  margin: 0;
  color: var(--text, #383A3A);
  text-align: right;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 16.8px */
}
.fixed-cta__count {
  display: flex;
  align-items: baseline;
  color: #383A3A;
}
.fixed-cta__count span {
  font-family: Inter;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 40px */
}
.fixed-cta__count small {
  font-size: 12px;
  line-height: 1em;
}

.slick-list {
  overflow: inherit;
}

.slick-track {
  display: flex;
}

.slick-slide {
  height: auto !important;
}

.topicpath {
  padding: 8px 30px;
  line-height: 1em;
  width: 100%;
  max-width: 1220px;
  list-style: none;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #CCC;
}
.topicpath br {
  display: none;
}
@media screen and (max-width: 768px) {
  .topicpath {
    padding: 0 20px;
  }
}
.topicpath__item {
  display: inline;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 12px */
  color: #CCC;
}
.topicpath__item:not(:first-child):before {
  content: "/";
  display: inline-block;
  margin: 0 8px;
}
.topicpath__item a:link, .topicpath__item a:visited, .topicpath__item a:hover, .topicpath__item a:active {
  text-decoration: none;
  color: #383A3A;
}

.pages {
  display: flex;
  justify-content: flex-start;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .pages {
    gap: 60px;
    flex-direction: column;
  }
}
.pages:not(:last-child) {
  margin-bottom: 60px;
}
.pages--single {
  flex-direction: column;
}
.pages__header {
  width: 100%;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .pages__header {
    max-width: 100%;
  }
}
.pages__header--single {
  max-width: 100%;
}
.pages__body {
  width: 100%;
  flex: 1;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .pages__body {
    max-width: 100%;
  }
}
.pages__body--single {
  max-width: 100%;
}
.pages__body:empty {
  display: none;
}
.pages__title-en {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 1em;
  font-weight: 600;
  color: #383A3A;
  display: flex;
  gap: 8px;
  align-items: center;
}
.pages__title-en:before {
  content: "";
  width: 9px;
  height: 9px;
  display: block;
  background: url("./img/icon-title01.svg") no-repeat center center;
  background-size: cover;
}
.pages__title {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2em;
  margin: 0;
  color: #383A3A;
}
@media screen and (max-width: 768px) {
  .pages__title {
    font-size: 24px;
    line-height: 1.1em;
  }
}
.pages__title a:link, .pages__title a:visited, .pages__title a:hover, .pages__title a:active {
  text-decoration: none;
  color: #383A3A;
}

.about__eyecatch {
  overflow: hidden;
  border-radius: 16px;
}
@media screen and (max-width: 768px) {
  .about__eyecatch {
    border-radius: 0px;
    width: 100vw;
    transform: translateX(-30px);
  }
}
.about__body {
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .about__body {
    padding: 0;
  }
}
.about__body.contents h2 {
  color: #383A3A;
  font-family: MOBO-Bold;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2em; /* 48px */
}
@media screen and (max-width: 768px) {
  .about__body.contents h2 {
    font-size: 24px;
    line-height: 1.2em;
  }
}

.contents > * {
  margin: 0 0 2em;
}
.contents > *:last-child {
  margin-bottom: 0;
}
.contents .btn {
  min-width: 180px;
  max-width: 180px;
}
.contents a {
  text-underline-offset: 3px;
}
.contents a:link, .contents a:visited {
  text-decoration: underline;
  color: #383A3A;
}
.contents a:hover, .contents a:active {
  text-decoration: underline;
  color: #383A3A;
}
.contents figure {
  font-size: 0;
  line-height: 0;
}
.contents figure:last-child {
  margin-bottom: 0px;
}
.contents figure figcaption {
  font-size: 12px;
  line-height: 1.6em;
  margin: 10px 0 0;
}
.contents blockquote {
  background: #EDEDED;
  padding: 20px;
  font-style: italic;
  color: #333;
}
.contents p,
.contents ul,
.contents ol,
.contents blockquote {
  margin: 0 0 2em;
  line-height: 2em;
  letter-spacing: 1px;
}
.contents ul, .contents ol {
  padding-left: 1em;
}
.contents h1, .contents h2, .contents h3, .contents h4, .contents h5, .contents h6 {
  color: #383A3A;
  font-weight: 700;
}
.contents h1 {
  font-size: 32px;
  line-height: 1.5em;
  margin: 0 0 1em;
}
.contents h1:not(:first-child) {
  margin-top: 2em;
}
.contents h2 {
  font-size: 24px;
  line-height: 1.5em;
  margin: 0 0 1em;
}
.contents h2:not(:first-child) {
  margin-top: 2em;
}
.contents h3 {
  font-size: 1.14rem;
  line-height: 1.5em;
  margin: 0 0 1em;
}
.contents h3:not(:first-child) {
  margin-top: 2em;
}
.contents h4 {
  font-size: 1rem;
  line-height: 1.5em;
  margin: 0 0 1em;
}
.contents h4:not(:first-child) {
  margin-top: 2em;
}
.contents table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.contents table tr th {
  border-top: 1px solid #ccc;
  padding: 24px 0;
  text-align: left;
  font-weight: normal;
  white-space: nowrap;
}
.contents table tr td {
  border-top: 1px solid #ccc;
  padding: 24px;
  text-align: left;
  color: #383A3A;
}
.contents form table {
  border-bottom: 1px solid #ccc;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .contents form table tr {
    display: block;
  }
}
.contents form table tr th {
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .contents form table tr th {
    display: block;
    padding: 24px 0 16px;
    font-size: 14px;
    line-height: 1em;
  }
}
.contents form table tr th p {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .contents form table tr td {
    display: block;
    border-top: none;
    padding: 0 0 24px;
  }
}
.contents form table tr td p {
  margin: 0;
}
.contents input[type=text],
.contents input[type=email],
.contents input[type=tel] {
  background: #F2F2F2;
  padding: 16px;
  border: none;
  width: 100%;
  max-width: 400px;
  box-sizing: border-box;
  border-radius: 4px;
  -webkit-appearance: none;
}
.contents textarea {
  background: #F2F2F2;
  padding: 16px;
  border: none;
  width: 100%;
  box-sizing: border-box;
  border-radius: 4px;
  -webkit-appearance: none;
}

.wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.wpcf7-radio .wpcf7-list-item {
  width: calc(50% - 4px);
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .wpcf7-radio .wpcf7-list-item {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .wpcf7-radio .wpcf7-list-item {
    width: 100%;
  }
}

.service__body {
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .service__body {
    padding: 0;
  }
}
.service__body.contents h2 {
  color: #383A3A;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4em; /* 48px */
}
@media screen and (max-width: 768px) {
  .service__body.contents h2 {
    font-size: 24px;
    line-height: 1.4em;
  }
}

.service-sec {
  padding: 60px 0 0;
  display: flex;
  flex-direction: column;
  gap: 60px;
  position: relative;
}
.service-sec:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #ccc;
  display: block;
  position: absolute;
  left: 0;
  top: -1px;
}
@media screen and (max-width: 768px) {
  .service-sec:before {
    width: 100vw;
    transform: translateX(-30px);
  }
}
.service-sec__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-sec__title-en {
  color: #383A3A;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 14px */
}
.service-sec__title {
  color: #383A3A;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4em; /* 33.6px */
  margin: 0;
}
.service-sec__body {
  padding: 0 30px;
}
@media screen and (max-width: 1100px) {
  .service-sec__body {
    padding: 0;
  }
}
.service-sec__tips {
  display: flex;
  justify-content: flex-start;
}
.service-sec__tips span {
  display: flex;
  padding: 4px 6px;
  gap: 4px;
  background: #ECB214;
  color: #fff;
  font-size: 12px;
  line-height: 1em;
  border-radius: 3px;
}

.faq__body {
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .faq__body {
    padding: 0;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-list__item {
  padding: 60px 30px;
  border-top: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .faq-list__item {
    padding: 60px 0;
  }
}
.faq-list__item dt {
  padding: 0;
  margin: 0;
  color: #383A3A;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 25.2px */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}
.faq-list__item dt:before {
  content: "Q";
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  background: #5DAE80;
  color: #fff;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}
.faq-list__item dd {
  padding: 0 0 0 24px;
  box-sizing: border-box;
  margin: 0;
  border-left: 4px solid #C7AB55;
}

.flow {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.flow-list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}
@media screen and (max-width: 1100px) {
  .flow-list {
    gap: 60px;
  }
}
.flow-list__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 1100px) {
  .flow-list__item {
    flex: inherit;
    width: calc(50% - 30px);
  }
}
@media screen and (max-width: 768px) {
  .flow-list__item {
    width: 100%;
  }
}
.flow-list__header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .flow-list__header {
    justify-content: center;
    gap: 16px;
  }
}
.flow-list__image {
  text-align: center;
}
.flow-list__image img {
  max-width: 252px;
}
.flow-list__step {
  color: #D33A69;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  border-right: 1px solid #CCC;
  padding-right: 8px;
}
@media screen and (max-width: 768px) {
  .flow-list__step {
    padding-right: 16px;
  }
}
.flow-list__step span {
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 12px */
}
@media screen and (max-width: 768px) {
  .flow-list__step span {
    line-height: 1.2em;
  }
}
.flow-list__step strong {
  text-align: center;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 24px */
}
@media screen and (max-width: 768px) {
  .flow-list__step strong {
    font-size: 32px;
    line-height: 1em;
  }
}
.flow-list__title {
  color: #383A3A;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 22.4px */
  margin: 0;
}
@media screen and (max-width: 768px) {
  .flow-list__title {
    font-size: 18px;
    line-height: 1.4em;
  }
}
.flow-list__desc {
  line-height: 2em;
  padding-right: 8px;
}
@media screen and (max-width: 1100px) {
  .flow-list__desc {
    padding-right: 0;
  }
}

.report {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.report__body h2 {
  color: #383A3A;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 44.8px */
}
@media screen and (max-width: 768px) {
  .report__body h2 {
    font-size: 24px;
    line-height: 1.4em;
  }
}

.report-image {
  display: flex;
  justify-content: flex-start;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .report-image {
    gap: 8px;
    flex-direction: column;
  }
}
.report-image__item {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: auto;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .report-image__item {
    border-radius: 8px;
  }
}
.report-image__item:first-child {
  max-width: calc(62% - 30px);
}
@media screen and (max-width: 768px) {
  .report-image__item:first-child {
    max-width: 100%;
  }
}
.report-image__item:last-child {
  max-width: calc(38% - 30px);
}
@media screen and (max-width: 768px) {
  .report-image__item:last-child {
    max-width: 100%;
    text-align: center;
  }
  .report-image__item:last-child img {
    max-width: 240px;
    height: auto;
  }
}

.price {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.price__body h2 {
  color: #383A3A;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 44.8px */
}
@media screen and (max-width: 768px) {
  .price__body h2 {
    font-size: 24px;
    line-height: 1.4em;
  }
}

.price-list {
  display: flex;
  justify-content: flex-start;
  gap: 60px;
}
@media screen and (max-width: 1100px) {
  .price-list {
    gap: 0;
  }
}
@media screen and (max-width: 768px) {
  .price-list {
    display: block;
  }
}
.price-list__item {
  flex: 1;
  box-sizing: border-box;
  border: 4px solid #5DAE80;
  border-radius: 30px;
  overflow: hidden;
}
@media screen and (max-width: 1100px) {
  .price-list__item {
    border-radius: 16px 0 0 16px;
  }
}
@media screen and (max-width: 1100px) {
  .price-list__item--career {
    border-right: 1px solid #CCC;
  }
}
.price-list__item--achievement {
  border-color: #E27065;
}
@media screen and (max-width: 1100px) {
  .price-list__item--achievement {
    border-radius: 0 16px 16px 0;
    border-left: none;
  }
}
.price-list__item__header {
  background: #5DAE80;
  color: #fff;
  padding: 30px 0 20px;
}
@media screen and (max-width: 768px) {
  .price-list__item__header {
    padding: 20px 0;
  }
}
.price-list__item__header--achievement {
  background: #E27065;
}
.price-list__item__title-en {
  color: #FFF;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 16px */
  margin: 0;
}
@media screen and (max-width: 768px) {
  .price-list__item__title-en {
    font-size: 14px;
    line-height: 1.5em;
  }
}
.price-list__item__title {
  color: #FFF;
  text-align: center;
  font-family: MOBO-Bold;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 48px */
  letter-spacing: -4px;
  margin: 8px 0 16px;
}
@media screen and (max-width: 1100px) {
  .price-list__item__title {
    font-size: 32px;
    line-height: 1.2em;
  }
}
@media screen and (max-width: 768px) {
  .price-list__item__title {
    font-size: 28px;
    line-height: 1em;
    margin-bottom: 8px;
  }
}
.price-list__item__desc {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
}
@media screen and (max-width: 768px) {
  .price-list__item__desc {
    font-size: 14px;
    line-height: 1.5em;
  }
}
.price-list__item__price {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .price-list__item__price {
    gap: 8px;
  }
}
.price-list__item__price strong {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  background: #C7AB55;
  color: #fff;
  font-size: 16px;
  line-height: 1.2em;
  font-weight: 700;
  border-radius: 50%;
  position: relative;
}
.price-list__item__price strong:after {
  position: absolute;
  right: -4px;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .price-list__item__price strong {
    font-size: 12px;
    line-height: 1.2em;
    width: 50px;
    height: 50px;
  }
}
.price-list__item__price div {
  color: var(--text, #383A3A);
  text-align: center;
  font-family: Inter;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 48px */
}
@media screen and (max-width: 768px) {
  .price-list__item__price div {
    font-size: 40px;
    line-height: 1em;
  }
}
.price-list__item__price div:before {
  content: "¥";
  font-weight: 400;
}
.price-list__item__btn {
  max-width: 400px;
  margin: 0 auto;
}
.price-list__item__body {
  text-align: center;
  padding: 30px;
}
@media screen and (max-width: 1100px) {
  .price-list__item__body {
    padding: 0;
  }
}
.price-list__item__body dl {
  padding: 0;
  margin: 0;
}
.price-list__item__body dl dt {
  padding: 0;
  margin: 0;
  position: relative;
}
.price-list__item__body dl dd {
  padding: 0;
  margin: 0;
}
.price-list__item__body dl:first-child dt {
  background: #F2F2F2;
  color: #383A3A;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 16px */
  padding: 12px 8px;
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .price-list__item__body dl:first-child dt {
    font-size: 12px;
    line-height: 1em;
  }
}
.price-list__item__body dl:first-child dd {
  margin: 0;
  padding: 16px 0 24px;
  color: #383A3A;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 32px */
}
@media screen and (max-width: 1100px) {
  .price-list__item__body dl:first-child dd {
    padding: 16px 16px 24px;
    font-size: 24px;
    line-height: 1.2em;
  }
}
@media screen and (max-width: 768px) {
  .price-list__item__body dl:first-child dd {
    padding: 16px 16px 24px;
    font-size: 24px;
    line-height: 1em;
  }
}
.price-list__item__body dl:first-child dd p {
  margin: 0;
  font-size: 24px;
  line-height: 1.2em;
}
@media screen and (max-width: 1100px) {
  .price-list__item__body dl:first-child dd p {
    font-size: 18px;
    line-height: 1.2em;
  }
}
@media screen and (max-width: 768px) {
  .price-list__item__body dl:first-child dd p {
    font-size: 18px;
    line-height: 1.2em;
  }
}
.price-list__item__body dl:first-child dd p small {
  font-size: 18px;
  line-height: 1em;
}
@media screen and (max-width: 768px) {
  .price-list__item__body dl:first-child dd p small {
    font-size: 16px;
    line-height: 1.2em;
  }
}
.price-list__item__body dl:last-child dt {
  border-top: 1px solid #CCC;
  font-size: 14px;
  line-height: 1em;
  padding: 16px 0;
}
@media screen and (max-width: 768px) {
  .price-list__item__body dl:last-child dt {
    font-size: 12px;
    line-height: 1em;
  }
}
.price-list__item__body dl:last-child dd {
  padding-bottom: 16px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.price-list__item__body dl:last-child dd p {
  margin: 0;
  font-size: 24px;
  line-height: 1.2em;
  color: #383A3A;
  font-weight: 700;
}
@media screen and (max-width: 1100px) {
  .price-list__item__body dl:last-child dd p {
    font-size: 18px;
    line-height: 1.2em;
  }
}
@media screen and (max-width: 768px) {
  .price-list__item__body dl:last-child dd p {
    font-size: 18px;
    line-height: 1.2em;
  }
}
.price-list__item__body dl:last-child dd p small {
  font-size: 18px;
  line-height: 1em;
}
@media screen and (max-width: 768px) {
  .price-list__item__body dl:last-child dd p small {
    font-size: 16px;
    line-height: 1.2em;
  }
}

.journey {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.journey__body h2 {
  color: #383A3A;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 44.8px */
}
@media screen and (max-width: 768px) {
  .journey__body h2 {
    font-size: 24px;
    line-height: 1.4em;
  }
}

.journey-table {
  border: 4px solid #5DAE80;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 30px;
  display: flex;
  justify-content: flex-start;
  background: #5DAE80;
  position: relative;
}
@media screen and (max-width: 768px) {
  .journey-table {
    border-radius: 16px;
    width: 100vw;
    transform: translateX(-30px);
    border-radius: 0;
    border: none;
    border-top: 2px solid #5DAE80;
    border-bottom: 2px solid #5DAE80;
    border-right: 2px solid #5DAE80;
  }
}
.journey-table__header {
  width: 180px;
}
@media screen and (max-width: 768px) {
  .journey-table__header {
    width: 120px;
  }
}
.journey-table__header__title-en {
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 18.2px */
  margin: 0;
}
@media screen and (max-width: 768px) {
  .journey-table__header__title-en {
    font-size: 12px;
    line-height: 1.3em;
  }
}
.journey-table__header__title {
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
  margin: 0;
}
@media screen and (max-width: 768px) {
  .journey-table__header__title {
    font-size: 12px;
    line-height: 1.5em;
  }
}
.journey-table__header dl {
  padding: 0;
  margin: 0;
}
.journey-table__header dl dt {
  background: #5DAE80;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 0 16px 0;
  height: 157px;
  color: #fff;
  margin: 0;
  box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 768px) {
  .journey-table__header dl dt {
    gap: 8px;
    padding: 0;
  }
}
.journey-table__header dl dt:after {
  content: "";
  width: 173px;
  height: 973px;
  background: url(./img/journey-arrow.svg) no-repeat center top;
  background-size: 100% auto;
  display: block;
  pointer-events: none;
  top: 100%;
  position: absolute;
  left: calc(50% - 86px);
  opacity: 0.3;
  mix-blend-mode: overlay;
}
.journey-table__header dl dd {
  border-top: 1px solid #CCC;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  height: 142px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  padding-top: 24px;
  background: #5DAE80;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .journey-table__header dl dd {
    gap: 4px;
  }
}
.journey-table__header dl dd:nth-of-type(1) {
  background: #ADD6BE;
}
.journey-table__header dl dd:nth-of-type(2) {
  background: #A0D0B4;
}
.journey-table__header dl dd:nth-of-type(3) {
  background: #92C9A9;
}
.journey-table__header dl dd:nth-of-type(4) {
  background: #85C29F;
}
.journey-table__header dl dd:nth-of-type(5) {
  background: #77BB94;
}
.journey-table__header dl dd:nth-of-type(6) {
  background: #69B48A;
}
.journey-table__header dl dd div {
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
  margin: 0;
}
@media screen and (max-width: 768px) {
  .journey-table__header dl dd div {
    font-size: 12px;
    line-height: 1.5em;
  }
}
.journey-table__header dl dd div span {
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 18.2px */
  margin: 0;
}
@media screen and (max-width: 768px) {
  .journey-table__header dl dd div span {
    font-size: 12px;
    line-height: 1.3em;
  }
}
.journey-table__body {
  width: calc(100% - 180px);
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width: 1100px) {
  .journey-table__body {
    overflow-x: auto;
  }
  .journey-table__body:after {
    content: "";
    width: 20px;
    height: 100%;
    display: block;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1));
    display: none;
  }
}
@media screen and (max-width: 1100px) and (max-width: 1100px) {
  .journey-table__body:after {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .journey-table__body {
    width: calc(100% - 120px);
  }
}
.journey-table__body dl {
  width: 24%;
  border-left: 1px solid #CCC;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1100px) {
  .journey-table__body dl {
    width: 220px;
    flex-shrink: 0;
  }
}
.journey-table__body dl.career-session {
  width: 28%;
}
@media screen and (max-width: 1100px) {
  .journey-table__body dl.career-session {
    width: 220px;
  }
}
.journey-table__body dl.career-session dd {
  background: #fff;
}
.journey-table__body dl dt {
  background: #F6F2EC;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 16px 0;
  height: 157px;
  box-sizing: border-box;
}
.journey-table__body dl dd {
  border-top: 1px solid #CCC;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  height: 142px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  padding-top: 24px;
  background: #FAFAFA;
}
.journey-table__title {
  margin: 0;
  padding: 0;
  color: #383A3A;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2em; /* 21px */
}
.journey-table__title br {
  display: none;
}
@media screen and (max-width: 768px) {
  .journey-table__title br {
    display: inherit;
  }
}
.journey-table__title.image {
  padding-top: 16px;
}
.journey-table__desc {
  color: #666;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 18px */
  min-height: 80px;
}
.journey-table__icon {
  justify-content: center;
}
.journey-table__comment {
  text-align: center;
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.5em;
  color: #383A3A;
}
.journey-table__comment strong {
  color: #E27065;
}

.recommend-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .recommend-list {
    gap: 30px;
  }
}
.recommend-list__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: calc(50% - 30px);
}
@media screen and (max-width: 768px) {
  .recommend-list__item {
    width: 100%;
  }
}
.recommend-list__image {
  text-align: center;
}
.recommend-list__image img {
  max-width: 252px;
}
.recommend-list__title {
  color: #383A3A;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 25.2px */
  margin: 0;
}

.tooltip {
  position: absolute;
  width: 320px;
  box-sizing: border-box;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
  background: #fff;
  text-align: left;
  font-size: 14px;
  line-height: 2em;
  font-weight: 400;
  color: #383A3A;
}
.tooltip h3 {
  color: #D33A69;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 200%; /* 28px */
  margin: 0 0 8px;
}
.tooltip p {
  margin: 0;
}
.tooltip p:not(:last-child) {
  margin-bottom: 1em;
}
.tooltip__icon {
  cursor: pointer;
  position: relative;
}
.tooltip__icon:after {
  content: "i";
  width: 20px;
  height: 20px;
  display: inline-block;
  border-radius: 50%;
  background: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  line-height: 20px;
  font-style: normal;
  font-weight: 700;
  box-sizing: border-box;
  color: #D33A69;
  border: 1px solid #D33A69;
}
.tooltip__link {
  cursor: pointer;
  position: relative;
}
.tooltip__link:after {
  content: "i";
  width: 20px;
  height: 20px;
  display: inline-block;
  border-radius: 50%;
  background: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  line-height: 20px;
  font-style: normal;
  font-weight: 700;
  box-sizing: border-box;
  color: #D33A69;
  border: 1px solid #D33A69;
}

.column {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 60px;
}
.column__title {
  color: #383A3A;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 24px */
  text-transform: uppercase;
  margin: 0 0 30px;
}
@media screen and (max-width: 768px) {
  .column__title {
    font-size: 18px;
    line-height: 1.5em;
  }
}
.column__main {
  width: calc(100% - 320px);
}
@media screen and (max-width: 1024px) {
  .column__main {
    width: 100%;
  }
}
.column__sub {
  width: 260px;
}
@media screen and (max-width: 1024px) {
  .column__sub {
    width: 100%;
  }
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.sidebar__item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sidebar__item ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sidebar__item ul li {
  margin: 0;
  padding: 0;
  color: #383A3A;
  font-family: Inter, "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 14px */
  text-transform: uppercase;
}
.sidebar__item ul li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
.sidebar__item ul li a:link, .sidebar__item ul li a:visited {
  text-decoration: none;
  color: #383A3A;
}
.sidebar__item ul li a:hover, .sidebar__item ul li a:active {
  text-decoration: none;
  color: #383A3A;
}
.sidebar__item ul li a:before {
  content: "";
  width: 12px;
  height: 12px;
  box-sizing: border-box;
  border: 1px solid #C7AB55;
  border-radius: 50%;
}
.sidebar__item ul li.current-cat a:before {
  background: #C7AB55;
}
.sidebar__title {
  margin: 0;
  color: #383A3A;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 16px */
}
.sidebar__desc {
  font-size: 14px;
  line-height: 2em;
}

.pager {
  border-top: 1px solid #CCC;
  color: #383A3A;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 12px */
  padding: 30px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 1024px) {
  .pager {
    padding-left: 0;
    padding-right: 0;
  }
}
.pager span, .pager a {
  display: flex;
  width: 32px;
  height: 32px;
  border-radius: 3px;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
}
.pager span.current, .pager a.current {
  border-color: #383A3A;
  background: #383A3A;
  color: #fff;
}
.pager a:link, .pager a:visited, .pager a:hover, .pager a:active {
  text-decoration: none;
  color: #383A3A;
}

.column-detail {
  border-top: 1px solid #CCC;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .column-detail {
    padding: 30px 0;
  }
}
.column-detail__title {
  color: #383A3A;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 44.8px */
  margin: 0;
}
.column-detail__image img {
  border-radius: 16px;
}
@media screen and (max-width: 768px) {
  .column-detail__image img {
    border-radius: 8px;
  }
}
.column-detail__body img {
  border-radius: 16px;
}
@media screen and (max-width: 768px) {
  .column-detail__body img {
    border-radius: 8px;
  }
}
.column-detail__nav {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #CCC;
  color: #383A3A;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 12px */
  padding: 30px;
}
@media screen and (max-width: 1024px) {
  .column-detail__nav {
    padding-left: 0;
    padding-right: 0;
  }
}
.column-detail__nav a {
  display: flex;
  padding: 8px 16px;
  border-radius: 3px;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
  font-size: 14px;
  line-height: 1em;
}
@media screen and (max-width: 768px) {
  .column-detail__nav a {
    padding: 6px;
  }
}
.column-detail__nav a:link, .column-detail__nav a:visited, .column-detail__nav a:hover, .column-detail__nav a:active {
  text-decoration: none;
  color: #383A3A;
}

.voice-detail-list {
  display: flex;
  flex-direction: column;
}
.voice-detail-list__item {
  display: flex;
  flex-wrap: wrap;
  padding: 60px 30px;
  border-top: 1px solid #CCC;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .voice-detail-list__item {
    padding: 60px 0;
    gap: 24px;
  }
}
.voice-detail-list__image {
  width: 100%;
  max-width: 230px;
}
@media screen and (max-width: 768px) {
  .voice-detail-list__image {
    max-width: 100%;
    text-align: center;
  }
  .voice-detail-list__image img {
    max-width: 280px;
    height: auto;
  }
}
.voice-detail-list__image .image {
  border-radius: 16px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .voice-detail-list__image .image {
    border-radius: 8px;
  }
}
.voice-detail-list__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.voice-detail-list__title {
  color: #383A3A;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 44.8px */
  margin: 0;
}
@media screen and (max-width: 768px) {
  .voice-detail-list__title {
    font-size: 24px;
    line-height: 1.4em;
  }
}
.voice-detail-list__age {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  line-height: 1em;
}

.indent {
  text-indent: -1em;
  padding-left: 1em;
}

.recruit {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.recruit__header {
  display: flex;
  justify-content: flex-start;
  gap: 60px;
  padding: 0 30px;
}
@media screen and (max-width: 1024px) {
  .recruit__header {
    padding: 0;
    flex-wrap: wrap;
  }
}
.recruit__body {
  flex: 1;
  order: 2;
}
@media screen and (max-width: 768px) {
  .recruit__body {
    flex: inherit;
    width: 100%;
    order: 1;
  }
}
.recruit__nav {
  flex: 1;
  order: 1;
}
@media screen and (max-width: 768px) {
  .recruit__nav {
    flex: inherit;
    width: 100%;
    order: 2;
  }
}

.recruit-sec {
  padding: 60px 30px 0;
  display: flex;
  justify-content: flex-start;
  position: relative;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .recruit-sec {
    padding-left: 0;
    padding-right: 0;
    gap: 60px;
  }
}
.recruit-sec:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #ccc;
  display: block;
  position: absolute;
  left: 0;
  top: -1px;
}
@media screen and (max-width: 768px) {
  .recruit-sec:before {
    width: 100vw;
    transform: translateX(-30px);
  }
}
.recruit-sec__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 290px;
}
@media screen and (max-width: 768px) {
  .recruit-sec__header {
    width: 100%;
  }
}
.recruit-sec__title-en {
  color: #383A3A;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 14px */
}
.recruit-sec__title {
  color: #383A3A;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4em; /* 33.6px */
  margin: 0;
}
.recruit-sec__body {
  width: calc(100% - 290px);
}
@media screen and (max-width: 768px) {
  .recruit-sec__body {
    width: 100%;
  }
}
.recruit-sec__body h3 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}
.recruit-sec__body .btn {
  max-width: 180px;
}

.localnav {
  display: flex;
  flex-direction: column;
}
.localnav__item {
  border-top: 1px solid #ccc;
  color: #383A3A;
}
.localnav__item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 20px 0;
  color: #383A3A;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 16px */
  position: relative;
}
.localnav__item a:link, .localnav__item a:visited, .localnav__item a:hover, .localnav__item a:active {
  text-decoration: none;
  color: #383A3A;
}
.localnav__item a:after {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: block;
  border: 1px solid #ccc;
}
.localnav__item a:before {
  content: "";
  display: block;
  position: absolute;
  right: 8px;
  top: calc(50% - 2px);
  width: 9px;
  height: 5px;
  background: url(./img/icon-arrow05.svg) no-repeat center center;
  background-size: 100% auto;
}
@media (hover: hover) {
  .localnav__item a:hover:before {
    animation: scroll 0.6s ease-in-out;
  }
}

.line-qr {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .line-qr {
    padding: 0;
    border: none;
    background: none;
    width: 100%;
  }
}
.line-qr__copy {
  margin: 0;
  padding: 0;
  text-align: center;
  font-size: 16px;
  line-height: 1.5em;
  color: #383A3A;
  font-weight: 700;
}
.line-qr__title {
  margin: 0;
  padding: 0;
  text-align: center;
  font-size: 16px;
  line-height: 1.5em;
  color: #383A3A;
}
.line-qr__title a:link, .line-qr__title a:visited, .line-qr__title a:hover, .line-qr__title a:active {
  text-decoration: none;
  color: #383A3A;
}
@media screen and (max-width: 768px) {
  .line-qr__title a:link, .line-qr__title a:visited, .line-qr__title a:hover, .line-qr__title a:active {
    color: #fff;
    display: flex;
    background: #07b53b;
    border: 2px solid #07b53b;
    border-radius: 100px;
    padding: 16px 24px;
    justify-content: space-between;
    align-items: center;
    line-height: 1.2em;
    box-sizing: border-box;
    text-align: left;
    transition: filter 0.3s;
  }
  .line-qr__title a:link:after, .line-qr__title a:visited:after, .line-qr__title a:hover:after, .line-qr__title a:active:after {
    content: "";
    width: 8px;
    height: 9px;
    display: block;
    background: url(./img/icon-arrow01.svg) no-repeat center center;
  }
}
@media screen and (max-width: 768px) and (hover: hover) {
  .line-qr__title a:link:hover, .line-qr__title a:link:active, .line-qr__title a:visited:hover, .line-qr__title a:visited:active, .line-qr__title a:hover:hover, .line-qr__title a:hover:active, .line-qr__title a:active:hover, .line-qr__title a:active:active {
    filter: saturate(200%);
  }
  .line-qr__title a:link:hover:after, .line-qr__title a:link:active:after, .line-qr__title a:visited:hover:after, .line-qr__title a:visited:active:after, .line-qr__title a:hover:hover:after, .line-qr__title a:hover:active:after, .line-qr__title a:active:hover:after, .line-qr__title a:active:active:after {
    animation: arrow 0.6s ease-in-out;
  }
}
.line-qr__image {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .line-qr__image {
    display: none;
  }
}
.line-qr__image img {
  max-width: 160px;
}

.btn-wrap {
  display: flex;
}
@media screen and (max-width: 768px) {
  .btn-wrap {
    justify-content: center;
  }
}

.grecaptcha-badge {
  visibility: hidden;
}
