@charset "UTF-8";
:root {
  --main-color: #ED707C;
  --txt-color: #333;
  --white: #FFFFFF;
  --green: #63B5B5;
  --purple: #8D73C5;
  --font-main: "Zen Maru Gothic", sans-serif;
  --font-en: "Quicksand", sans-serif;
}

html {
  font-family: var(--font-main);
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%; /* iOS 8+ */
}
@media screen and (width <= 767px) {
  html {
    font-size: 2.5641025641vw;
  }
}
@media screen and (width > 767px), print {
  html {
    font-size: 10px;
  }
}

body {
  color: var(--txt-color);
  font-size: 1.6rem;
  letter-spacing: 0;
  word-break: break-word;
}
@media screen and (width <= 767px) {
  body {
    min-width: 320px;
  }
}

summary::-webkit-details-marker {
  display: none;
}

@media screen and (width <= 767px) {
  main {
    padding-block: 5.7rem 5rem;
  }
}
@media screen and (width > 767px), print {
  main {
    padding-block: 11.5rem 6rem;
  }
}
main:not(.toppage)::after {
  content: "";
  display: block;
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: -10;
}
@media screen and (width <= 767px) {
  main:not(.toppage)::after {
    background-image: url(../images/common/main_bg_sp.jpg);
  }
}
@media screen and (width > 767px), print {
  main:not(.toppage)::after {
    background-image: url(../images/common/main_bg_pc.jpg);
  }
}

p {
  margin-top: 1rem;
  line-height: 1.75;
}

img {
  max-width: 100%;
}

@media screen and (width > 767px), print {
  .-sp {
    display: none;
  }
}

@media screen and (width <= 767px) {
  .-pc {
    display: none;
  }
}

.container {
  width: 100%;
  max-width: 1110px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.container.-s {
  max-width: 960px;
  padding-inline: 2rem;
}

#header {
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
}
@media screen and (width <= 767px) {
  #header {
    position: absolute;
    padding-top: 0.8rem;
  }
}
@media screen and (width > 767px), print {
  #header {
    position: fixed;
    background-color: var(--white);
    -webkit-box-shadow: 0.3rem 0.3rem 1rem rgba(0, 0, 0, 0.1);
            box-shadow: 0.3rem 0.3rem 1rem rgba(0, 0, 0, 0.1);
    -webkit-transition: padding 0.3s;
    transition: padding 0.3s;
  }
  #header[data-condition=fixed] {
    padding: 0;
    position: fixed;
  }
  #header[data-condition=fixed] .header_inner {
    width: 100%;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  #header[data-condition=fixed] .header_nav {
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 0;
    border-left: 0.1rem solid #BCBCBC;
    border-right: 0.1rem solid #BCBCBC;
  }
}

.header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (width <= 767px) {
  .header_inner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (width > 767px), print {
  .header_inner {
    width: 100%;
    margin-inline: auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-transition: -webkit-box-shadow 0.3s;
    transition: -webkit-box-shadow 0.3s;
    transition: box-shadow 0.3s;
    transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
  }
}
.header_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.6rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: 500;
}
@media screen and (width <= 767px) {
  .header_logo {
    font-size: 1.4rem;
  }
}
@media screen and (width > 767px), print {
  .header_logo {
    font-size: 1.6rem;
  }
}
@media screen and (width <= 767px) {
  .header_logo img {
    width: 5.2rem;
  }
}
@media screen and (width > 767px), print {
  .header_logo img {
    width: 6rem;
  }
}
.header_logo p {
  margin-top: 0;
}
.header_nav {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (width <= 767px) {
  .header_nav {
    width: 100%;
    -webkit-box-shadow: 0.3rem 0.3rem 1rem rgba(0, 0, 0, 0.1);
            box-shadow: 0.3rem 0.3rem 1rem rgba(0, 0, 0, 0.1);
    position: fixed;
    left: 0;
    top: calc(100dvh - 6.5rem);
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    opacity: 0;
  }
  .header_nav[data-condition-sp=show] {
    opacity: 1;
  }
}
@media screen and (width > 767px), print {
  .header_nav {
    max-width: 80.9rem;
    margin-left: 1.5rem;
    border-left: 0.1rem solid #BCBCBC;
    border-right: 0.1rem solid #BCBCBC;
    overflow: hidden;
  }
}
.header_nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  position: relative;
}
.header_nav_list::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
@media screen and (width > 767px), print {
  .header_nav_list::after {
    border-radius: 1rem;
  }
}
.header_nav_list > li {
  width: 16.6666666667%;
  text-align: center;
  color: #6D4121;
}
@media screen and (width <= 767px) {
  .header_nav_list > li {
    font-size: 1.1rem;
  }
}
@media screen and (width > 767px), print {
  .header_nav_list > li {
    font-size: 1.4rem;
  }
}
.header_nav_list > li:not(:last-of-type) {
  border-right: 0.1rem solid #BCBCBC;
}
.header_nav_list > li .header_nav_item_inner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media screen and (width <= 767px) {
  .header_nav_list > li .header_nav_item_inner {
    padding-block: 4.3rem 1.1rem;
  }
}
@media screen and (width > 767px), print {
  .header_nav_list > li .header_nav_item_inner {
    padding-block: 4.2rem 0.8rem;
  }
}
.header_nav_list > li .header_nav_item_inner img {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.header_nav_list > li .header_nav_item_inner span {
  display: inline-block;
}
.header_nav_list > li .header_nav_item_inner .coming_soon {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--white);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.9;
}
.header_nav_list > li .header_nav_item_inner .coming_soon::after {
  content: "";
  display: block;
  width: calc(100% - 0.4rem);
  height: calc(100% - 0.4rem);
  border-radius: 0.5rem;
  background-color: #aaa;
  position: absolute;
  top: 0.2rem;
  left: 0.2rem;
}
.header_nav_list > li .header_nav_item_inner .coming_soon[data-span="4"] {
  width: 400%;
}
.header_nav_list > li .header_nav_item_inner .coming_soon[data-span="4"]::after {
  width: calc(100% - 0.2rem);
}
.header_nav_list > li .header_nav_item_inner .coming_soon p {
  margin-top: 0;
  padding-inline: 0.8rem;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}
@media screen and (width <= 767px) {
  .header_nav_list > li[data-page=report] img {
    width: 3.2rem;
    top: 0.8rem;
  }
}
@media screen and (width > 767px), print {
  .header_nav_list > li[data-page=report] img {
    width: 3.3rem;
    top: 0.6rem;
  }
}
@media screen and (width <= 767px) {
  .header_nav_list > li[data-page=interview] .header_nav_item_inner {
    padding-block: 3.7rem 0.6rem;
  }
}
@media screen and (width <= 767px) {
  .header_nav_list > li[data-page=interview] img {
    width: 2.6rem;
    top: 0.7rem;
  }
}
@media screen and (width > 767px), print {
  .header_nav_list > li[data-page=interview] img {
    width: 2.8rem;
    top: 0.9rem;
  }
}
.header_nav_list > li[data-page=interview] span:nth-of-type(2) {
  letter-spacing: -0.1em;
}
@media screen and (width <= 767px) {
  .header_nav_list > li[data-page=voice] img {
    width: 4.5rem;
    top: 1.2rem;
  }
}
@media screen and (width > 767px), print {
  .header_nav_list > li[data-page=voice] img {
    width: 4.6rem;
    top: 1rem;
  }
}
@media screen and (width <= 767px) {
  .header_nav_list > li[data-page=overview] img {
    width: 2.6rem;
    top: 1rem;
  }
}
@media screen and (width > 767px), print {
  .header_nav_list > li[data-page=overview] img {
    width: 2.6rem;
    top: 0.9rem;
  }
}
@media screen and (width <= 767px) {
  .header_nav_list > li[data-page=message] .header_nav_item_inner {
    padding-block: 3.7rem 0.6rem;
  }
}
@media screen and (width <= 767px) {
  .header_nav_list > li[data-page=message] img {
    width: 3.1rem;
    top: 0.9rem;
  }
}
@media screen and (width > 767px), print {
  .header_nav_list > li[data-page=message] img {
    width: 3.2rem;
    top: 1.1rem;
  }
}
@media screen and (width <= 767px) {
  .header_nav_list > li[data-page=exam] img {
    width: 3.6rem;
    top: 1rem;
  }
}
@media screen and (width > 767px), print {
  .header_nav_list > li[data-page=exam] img {
    width: 3.5rem;
    top: 0.9rem;
  }
}
.header_nav_list > li a {
  -webkit-transition: color 0.6s;
  transition: color 0.6s;
}
.header_nav_list > li a img {
  -webkit-transition: -webkit-filter 0.6s;
  transition: -webkit-filter 0.6s;
  transition: filter 0.6s;
  transition: filter 0.6s, -webkit-filter 0.6s;
}
.header_nav_list > li a::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #FEAAAA), color-stop(50%, #ED707C), to(#FEAAAA));
  background-image: linear-gradient(to right, #FEAAAA 0, #ED707C 50%, #FEAAAA 100%);
  background-size: 200% 100%;
  background-position: 0 0;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0;
  -webkit-transition: background-position 0.6s, opacity 0.6s;
  transition: background-position 0.6s, opacity 0.6s;
}
.header_nav_list > li a:hover {
  color: var(--white);
}
.header_nav_list > li a:hover img {
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(1%) hue-rotate(152deg) brightness(106%) contrast(101%);
          filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(1%) hue-rotate(152deg) brightness(106%) contrast(101%);
}
.header_nav_list > li a:hover::after {
  background-position: 100% 0;
  opacity: 1;
}
.header_nav_list > li[data-current=true] {
  color: var(--white);
}
.header_nav_list > li[data-current=true] img {
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(1%) hue-rotate(152deg) brightness(106%) contrast(101%);
          filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(1%) hue-rotate(152deg) brightness(106%) contrast(101%);
}
.header_nav_list > li[data-current=true] a::after {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #E96A7C), to(#D15163));
  background-image: linear-gradient(to right, #E96A7C 0, #D15163 100%);
  background-position: 0 0;
  opacity: 1;
}

#footer {
  background-color: var(--white);
}

.footer_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-block: 2rem 11rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer_logo {
  display: block;
  width: 20.7rem;
  -webkit-transition: opacity 0.7s;
  transition: opacity 0.7s;
}
@media screen and (width > 767px), print {
  .footer_logo:hover {
    opacity: 0.7;
  }
}
.footer_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}
.footer_sns li a {
  display: block;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
@media screen and (width > 767px), print {
  .footer_sns li a:hover {
    opacity: 0.7;
  }
}
.footer_sns li img {
  width: 4rem;
}
.footer_copy {
  margin-top: 4rem;
  font-size: 1.2rem;
}

#to_top_btn {
  display: block;
  background-image: -webkit-gradient(linear, left top, right top, from(#E96A7C), to(#D15163));
  background-image: linear-gradient(to right, #E96A7C, #D15163);
  border-radius: 50%;
  position: relative;
  position: fixed;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: 90;
  opacity: 0;
}
@media screen and (width <= 767px) {
  #to_top_btn {
    width: 3.6rem;
    height: 3.6rem;
    right: 1.5rem;
    top: calc(100dvh - 11.6rem);
  }
}
@media screen and (width > 767px), print {
  #to_top_btn {
    width: 4.5rem;
    height: 4.5rem;
    right: 3rem;
    bottom: 3rem;
  }
}
#to_top_btn::before {
  content: "";
  display: block;
  background-image: url(../images/common/arw_up.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (width <= 767px) {
  #to_top_btn::before {
    width: 1.8rem;
    height: 1.1rem;
  }
}
@media screen and (width > 767px), print {
  #to_top_btn::before {
    width: 2.3rem;
    height: 1.3rem;
  }
}
#to_top_btn[data-condition=show] {
  opacity: 1;
}

.main_box {
  padding-top: 1.8rem;
  background-image: url(../images/common/parts_separator.svg), -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.9)), to(rgba(255, 255, 255, 0.9))), url(../images/common/parts_separator_btm.svg);
  background-image: url(../images/common/parts_separator.svg), linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url(../images/common/parts_separator_btm.svg);
  background-repeat: repeat-x, no-repeat, repeat-x;
  background-size: 6rem 1.8rem, 100% calc(100% - 3.6rem), 6rem 1.8rem;
  background-position: 0 0, center 1.8rem, 0 bottom;
}
@media screen and (width <= 767px) {
  .main_box {
    padding-bottom: 6rem;
  }
}
@media screen and (width > 767px), print {
  .main_box {
    padding-bottom: 8rem;
  }
}

.page_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (width <= 767px) {
  .page_title {
    margin-top: 0.7rem;
  }
}
@media screen and (width > 767px), print {
  .page_title {
    margin-top: 2.2rem;
  }
}
.page_title img {
  display: block;
}
@media screen and (width <= 767px) {
  .page_title.-report img {
    width: 3.5rem;
    margin-bottom: 0.8rem;
  }
}
@media screen and (width > 767px), print {
  .page_title.-report img {
    width: 4.1rem;
    margin-bottom: 1.1rem;
  }
}

.heading_lv1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
}
@media screen and (width <= 767px) {
  .heading_lv1 {
    margin-bottom: 2rem;
    font-size: 2.8rem;
  }
}
@media screen and (width > 767px), print {
  .heading_lv1 {
    margin-bottom: 4rem;
    font-size: 3.5rem;
  }
}
@media screen and (width <= 767px) {
  .heading_lv1 .-num {
    font-size: 3rem;
  }
}
@media screen and (width > 767px), print {
  .heading_lv1 .-num {
    font-size: 3.8rem;
  }
}
.heading_lv1::after {
  content: attr(data-ttl);
  color: var(--main-color);
  font-family: var(--font-en);
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media screen and (width <= 767px) {
  .heading_lv1::after {
    margin-top: 0.9rem;
    font-size: 1.4rem;
  }
}
@media screen and (width > 767px), print {
  .heading_lv1::after {
    margin-top: 0.8rem;
    font-size: 1.5rem;
  }
}

.list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}
.list a {
  color: var(--main-color);
  text-decoration: underline;
}
@media screen and (width > 767px), print {
  .list a:hover {
    text-decoration: none;
  }
}
.list.-dotted > li {
  padding-left: 2rem;
  position: relative;
}
@media screen and (width <= 767px) {
  .list.-dotted > li {
    line-height: 1.625;
  }
}
@media screen and (width > 767px), print {
  .list.-dotted > li {
    line-height: 1.75;
  }
}
.list.-dotted > li::before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  border-radius: 0.5rem;
  background-color: var(--ttl-blue);
  position: absolute;
  top: 1rem;
  left: 0;
}
.list.-note > li {
  padding-left: 2.2rem;
  font-size: 1.4rem;
  position: relative;
}
@media screen and (width <= 767px) {
  .list.-note > li {
    line-height: 1.43;
  }
}
@media screen and (width > 767px), print {
  .list.-note > li {
    line-height: 1.57;
  }
}
.list.-note > li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.anchor_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (width <= 767px) {
  .anchor_list {
    gap: 2rem;
  }
}
@media screen and (width > 767px), print {
  .anchor_list {
    gap: 2rem 12rem;
  }
}
.anchor_list li {
  font-size: 1.6rem;
}
@media screen and (width <= 767px) {
  .anchor_list li {
    width: calc(50% - 1rem);
  }
}
@media screen and (width > 767px), print {
  .anchor_list li {
    width: calc(50% - 6rem);
    max-width: 30rem;
  }
}
.anchor_list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  padding-bottom: 0.9rem;
}
@media screen and (width <= 767px) {
  .anchor_list li a {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (width > 767px), print {
  .anchor_list li a {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .anchor_list li a:hover {
    opacity: 0.7;
  }
}
.anchor_list li a::after {
  content: "";
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  -webkit-mask-image: url(../images/common/anchor_arw.svg);
          mask-image: url(../images/common/anchor_arw.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.anchor_list li a.-green {
  border-bottom: 0.1rem solid var(--green);
  color: var(--green);
}
.anchor_list li a.-green::after {
  background-color: var(--green);
}
.anchor_list li a.-purple {
  border-bottom: 0.1rem solid var(--purple);
  color: var(--purple);
}
.anchor_list li a.-purple::after {
  background-color: var(--purple);
}