@charset "UTF-8";
:root {
  --base: #000;
  --primary: #317DF9;
  --secondary: #12C3DF;
  --white: #FFF;
  --regular: 400;
  --medium: 500;
  --semi: 600;
  --bold: 700;
  --black: 900;
  --gradient: linear-gradient(90deg, rgba(39,117,255, 1) 0, rgba(148,227,239, 1) 100%);
  --jp: "Noto Sans JP", sans-serif;
  --en: "Plus Jakarta Sans", sans-serif;
  --ita: italic;
  --playwrite: "Playwrite CU", sans-serif;
  --s: .3s;
}

html {
  font-size: 62.5%;
}

body {
  color: var(--base);
  font-size: min(3.6vw, 18px);
  font-family: var(--jp);
  font-weight: var(--regular);
  font-optical-sizing: auto;
  line-height: 1.5556;
  letter-spacing: 0.05em;
  background: #E9FAFF;
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
  overflow-y: scroll;
}
body:has(dialog[open]) {
  width: 100%;
  position: fixed;
  left: 0;
}

article, aside, figcaption, figure, footer, header, main, nav, section, picture, summary {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  margin-top: 1.5em;
}

p, ul, ol, dl, blockquote, table {
  margin-top: 2em;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, dl, blockquote, table {
  margin-bottom: 0;
}

figure {
  margin: 0;
}

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

dialog {
  padding: 0;
  border: 0;
}

ul, ol {
  list-style: none;
  padding-left: 0;
}

dd {
  margin-left: 0;
}

b, strong {
  font-weight: var(--bold);
}

em {
  font-style: normal;
}

small {
  font-size: inherit;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
  position: relative;
}

sup {
  top: -0.5em;
}

a {
  color: var(--base);
  background-color: transparent;
  text-decoration: underline;
}
a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}
a[tabindex] {
  outline: none;
}
a[href^="tel:"] {
  text-decoration: none;
}

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
  border: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  font-weight: normal;
  text-align: left;
}

hr {
  display: block;
  margin: 0;
  border: none;
}

a, button {
  touch-action: manipulation;
}

button {
  color: inherit;
  font: inherit;
  background: transparent;
  text-align: inherit;
  margin: 0;
  padding: 0;
  border: none;
  cursor: pointer;
  overflow: visible;
}
button:disabled, button[aria-disabled=true] {
  cursor: default;
}

*:first-child {
  margin-top: 0;
}

.header {
  background: var(--white);
  width: 100%;
  box-shadow: 0px 3px 6px 0 rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10;
}
.header .header_inner {
  display: flex;
  align-items: center;
  height: min(10.8vw, 54px);
  padding-left: min(2.4vw, 12px);
  padding-right: min(12.8vw, 64px);
}
.header .header_logo {
  line-height: 1;
  width: min(60.8vw, 304px);
}
.header .header_menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(12.8vw, 64px);
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}
.header .header_menu::before, .header .header_menu::after,
.header .header_menu > span::before {
  content: "";
  background: var(--primary);
  display: block;
  width: 30px;
  height: 3px;
  margin: 0 auto;
  border-radius: 3px;
  position: absolute;
  top: calc(50% - 1.5px);
  left: 0;
  right: 0;
}
.header .header_menu::before {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}
.header .header_menu::after {
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
}
.header .header_menu > span {
  width: 30px;
  height: 19px;
  position: relative;
}
.header .header_menu.header_menu--close {
  height: min(10.8vw, 54px);
}
.header .header_menu.header_menu--close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header .header_menu.header_menu--close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.header .header_dialog {
  background-color: transparent;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  overflow: hidden;
}
.header .header_dialog:not(.is-active) {
  opacity: 0;
}
.header .header_dialog_inner {
  background: url(../img/frame_bg.jpg) no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.header .header_dialog_body {
  background: #E9FAFF;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 500px;
  height: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
}
.header .header_nav {
  row-gap: min(8vw, 40px);
  margin-top: 0;
}

.container {
  background: linear-gradient(180deg, #c6eafc 0%, #4ab1ff 100%);
}

.frame {
  display: none;
}
.frame .frame_side {
  display: none;
}

.content {
  background: #E9FAFF;
  max-width: 500px;
  margin-inline: auto;
  position: relative;
}

.side-left {
  display: none;
}

.side-right {
  display: none;
}

.gnav {
  font-weight: var(--bold);
  display: flex;
  flex-direction: column;
  row-gap: min(1.953125vw, 30px);
}
.gnav .gnav_link {
  color: rgba(0, 0, 0, 0.33);
  text-decoration: none;
  position: relative;
}
.gnav .gnav_link:hover {
  opacity: 1;
}
.gnav .gnav_link.is-active {
  color: #000;
}
.gnav .gnav_link.is-active::after {
  background: var(--base);
}
.gnav .gnav_link::after {
  content: "";
  display: block;
  background: rgba(0, 0, 0, 0.33);
  width: 0;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -2px;
}

.footer {
  line-height: 1;
  background: var(--white);
  text-align: center;
  padding: min(8vw, 40px) min(4vw, 20px);
}
.footer .footer_logo {
  width: min(68.8vw, 344px);
  margin-inline: auto;
}
.footer .footer_copy {
  font-size: min(2.4vw, 12px);
  margin-top: min(2.4vw, 12px);
}

.btn-gradient {
  color: var(--white);
  background: var(--gradient);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: min(10vw, 50px);
}
.btn-gradient[target=_blank]::after {
  content: "";
  display: block;
  background: var(--white);
  -webkit-mask: url(../img/icon_blank.svg) no-repeat;
          mask: url(../img/icon_blank.svg) no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
}

.btn-border {
  font-weight: var(--bold);
  background: var(--gradient);
  display: block;
  text-decoration: none;
  padding: min(0.8vw, 4px);
  border-radius: min(10vw, 50px);
  box-sizing: border-box;
}
.btn-border[target=_blank] > span::after {
  content: "";
  display: block;
  background: var(--primary);
  -webkit-mask: url(../img/icon_blank.svg) no-repeat;
          mask: url(../img/icon_blank.svg) no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
}
.btn-border > span {
  color: var(--primary);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: min(10vw, 50px);
}

.mv {
  background: linear-gradient(180deg, white 30%, #49d9ff 100%);
  padding-bottom: min(18vw, 90px);
}
.mv .mv_pic {
  padding: min(2.2vw, 11px) min(2vw, 10px) 0;
  position: relative;
}
.mv .mv_title {
  width: min(67.2vw, 336px);
  margin-top: 0;
  position: absolute;
  top: min(43.6vw, 218px);
  left: min(5.3vw, 26.5px);
}
.mv .mv_body {
  padding-left: min(4.8vw, 24px);
  padding-right: min(4.8vw, 24px);
}
.mv .mv_copy {
  font-size: min(3.2vw, 16px);
  font-weight: var(--medium);
  line-height: 1.875;
  letter-spacing: 0.026em;
  text-align: center;
}
.mv .mv_intro {
  margin-top: min(10.4vw, 52px);
}

.intro::before {
  content: "";
  background: url(../img/icon_arrow.svg) no-repeat;
  background-size: cover;
  display: block;
  width: min(15.6vw, 78px);
  height: min(7vw, 35px);
  margin: 0 auto;
}
.intro .intro_list {
  display: flex;
  flex-direction: column;
  row-gap: min(4vw, 20px);
  margin-top: min(8vw, 40px);
}
.intro .intro_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.intro .intro_item:nth-child(1) > img {
  width: min(24vw, 120px);
  margin-left: min(3.4vw, 17px);
}
.intro .intro_item:nth-child(2) {
  flex-direction: row-reverse;
}
.intro .intro_item:nth-child(2) > img {
  width: min(16.4vw, 82px);
  margin-right: min(7.6vw, 38px);
}
.intro .intro_item:nth-child(2) .intro_popover::after {
  left: inherit;
  right: min(2.8vw, 14px);
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.intro .intro_item:nth-child(3) > img {
  width: min(20.4vw, 102px);
  margin-left: min(5.2vw, 26px);
}
.intro .intro_popover {
  font-size: min(3.2vw, 16px);
  line-height: 1.35;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: min(61.8vw, 309px);
  min-height: min(16.8vw, 84px);
  border-radius: min(16.8vw, 84px);
  position: relative;
}
.intro .intro_popover::after {
  content: "";
  background: url(../img/intro_popover.svg) no-repeat;
  background-size: cover;
  display: block;
  width: min(8.2vw, 41px);
  height: min(5.6vw, 28px);
  position: absolute;
  top: calc(100% - 6px);
  left: min(2.8vw, 14px);
}
.intro .intro_popover > span {
  font-size: min(3.6vw, 18px);
  font-weight: var(--bold);
}
.intro .intro_text {
  font-size: min(4.8vw, 24px);
  font-weight: var(--bold);
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
  margin-top: min(8.8vw, 44px);
}
.intro .intro_text > span {
  font-size: min(4vw, 20px);
}
.intro .intro_text > span:first-child {
  font-size: min(3.6vw, 18px);
  display: block;
  margin-bottom: 0.2em;
}

.main {
  position: relative;
}
.main::before, .main::after {
  content: "";
  background-color: #E9FAFF;
  display: block;
  width: 100%;
  height: min(20vw, 100px);
  position: absolute;
  top: min(-11vw, -55px);
  left: 0;
}
.main::before {
  -webkit-transform: skewY(12deg);
          transform: skewY(12deg);
  -webkit-transform-origin: center left;
          transform-origin: center left;
}
.main::after {
  -webkit-transform: skewY(-12deg);
          transform: skewY(-12deg);
  -webkit-transform-origin: center right;
          transform-origin: center right;
}

.section {
  background-repeat: no-repeat;
  background-position: 50% 0;
}
.section .section_title {
  font-size: min(6.8vw, 34px);
  font-weight: var(--bold);
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.section .section_title > span {
  font-size: min(3.2vw, 16px);
  letter-spacing: 0.08em;
}
.section .section_strong {
  color: var(--primary);
  font-size: min(5.2vw, 26px);
  font-weight: var(--bold);
  line-height: 1.4615;
  letter-spacing: 0.05;
  text-align: center;
  margin-top: min(8vw, 40px);
}
.section .section_inner {
  margin-top: min(8vw, 40px);
  padding-left: min(10vw, 50px);
  padding-right: min(10vw, 50px);
}

.reason {
  background-image: url(../img/reason_bg.svg);
  background-position: 50% min(4.8vw, 24px);
  background-size: min(67.6vw, 338px) auto;
  padding-top: min(22vw, 110px);
  position: relative;
  z-index: 1;
}
.reason .reason_figure {
  width: min(78.4vw, 392px);
  margin-top: min(6vw, 30px);
}
.reason .reason_figure_caption {
  color: #6D6D6D;
  font-size: min(3.2vw, 16px);
  letter-spacing: 0.05;
  text-align: center;
  margin-top: min(5vw, 25px);
}

.style {
  background-image: url(../img/style_bg.svg);
  background-size: min(74.2vw, 371px) auto;
  margin-top: min(10vw, 50px);
  padding-top: min(10.4vw, 52px);
}
.style .style_figure {
  display: flex;
  justify-content: space-between;
  margin-top: min(8vw, 40px);
}
.style .style_figure_item {
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: min(41.2vw, 206px);
  height: min(41.2vw, 206px);
  border-radius: 50%;
  position: relative;
}
.style .style_figure_item:first-child {
  margin-right: min(-1.2vw, -6px);
  box-shadow: 0 0 24px rgba(130, 189, 239, 0.52);
}
.style .style_figure_item:first-child .style_figure_title {
  color: var(--primary);
}
.style .style_figure_item:first-child .style_figure_list > li::before {
  color: var(--primary);
}
.style .style_figure_item:last-child {
  margin-left: min(-1.2vw, -6px);
  box-shadow: 0 0 24px rgba(18, 195, 223, 0.52);
}
.style .style_figure_item:last-child .style_figure_title {
  color: var(--secondary);
}
.style .style_figure_item:last-child .style_figure_list > li::before {
  color: var(--secondary);
}
.style .style_figure_list {
  font-size: min(3vw, 15px);
  letter-spacing: 0.05;
  margin-top: min(2.4vw, 12px);
}
.style .style_figure_list > li {
  display: flex;
  align-items: center;
}
.style .style_figure_list > li::before {
  content: "●";
  font-size: min(1.6vw, 8px);
  display: inline-block;
  margin-right: min(1.4vw, 7px);
}

.data {
  background-image: url(../img/data_bg.svg);
  background-size: min(50vw, 250px) auto;
  margin-top: min(6.4vw, 32px);
  padding-top: min(15vw, 75px);
}
.data .data_list {
  display: flex;
  justify-content: space-between;
}
.data .data_list_item {
  font-size: min(3.2vw, 16px);
  font-weight: var(--medium);
  letter-spacing: 0.05em;
  text-align: center;
}
.data .data_list_item > img {
  display: block;
  width: min(19vw, 95px);
  margin: min(2.8vw, 14px) auto min(1.4vw, 7px);
}
.data .data_list_item > span {
  color: var(--primary);
  font-size: min(6vw, 30px);
  font-weight: var(--bold);
  line-height: 1;
  letter-spacing: 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
}
.data .data_list_item > span > span {
  font-size: min(4vw, 20px);
}
.data .data_sample {
  margin-top: min(9.2vw, 46px);
}
.data .data_sample_title {
  color: var(--white);
  font-size: min(4vw, 20px);
  font-weight: var(--bold);
  letter-spacing: 0.05em;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: min(9.4vw, 47px);
  border-radius: min(0.8vw, 4px);
  position: relative;
}
.data .data_sample_title::before {
  content: "";
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2241%22%20height%3D%2226%22%20viewBox%3D%220%200%2041%2026%22%3E%3Cpath%20d%3D%22M18.144%2C2.988a3%2C3%2C0%2C0%2C1%2C4.712%2C0L37.17%2C21.143A3%2C3%2C0%2C0%2C1%2C34.814%2C26H6.186A3%2C3%2C0%2C0%2C1%2C3.83%2C21.143Z%22%20transform%3D%22translate%2841%2026%29%20rotate%28180%29%22%20fill%3D%22%23317df9%22%2F%3E%3C%2Fsvg%3E") no-repeat;
  background-size: cover;
  display: block;
  width: min(8.2vw, 41px);
  height: min(5vw, 25px);
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: min(-2vw, -10px);
}
.data .data_sample_title > span {
  position: relative;
}
.data .data_sample_list {
  font-size: min(3.2vw, 16px);
  line-height: 1.5625;
  letter-spacing: 0.05em;
  display: flex;
  -webkit-column-gap: min(4.8vw, 24px);
     -moz-column-gap: min(4.8vw, 24px);
          column-gap: min(4.8vw, 24px);
  margin-top: min(6vw, 30px);
}
.data .data_sample_list > li {
  display: flex;
  flex-direction: column;
  row-gap: min(2vw, 10px);
  width: 50%;
}

.faq {
  background-image: url(../img/faq_bg.svg);
  background-size: min(53.2vw, 266px) auto;
  margin-top: min(11.2vw, 56px);
  padding-top: min(20vw, 100px);
}
.faq .faq_list {
  display: flex;
  flex-direction: column;
  row-gap: min(6vw, 30px);
}
.faq .faq_list_item:not(:first-child) {
  padding-top: min(6vw, 30px);
  border-top: min(0.4vw, 2px) dashed var(--primary);
}
.faq .faq_q,
.faq .faq_a {
  font-weight: var(--bold);
  display: flex;
  align-items: flex-start;
  padding: min(2vw, 10px) min(2vw, 10px) min(2.4vw, 12px) min(3vw, 15px);
  border-radius: min(2.6vw, 13px);
  box-shadow: 3px 3px 0 rgba(109, 94, 44, 0.16);
  position: relative;
}
.faq .faq_q::before, .faq .faq_q::after,
.faq .faq_a::before,
.faq .faq_a::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: 1.6vw solid transparent;
  position: absolute;
  top: min(3vw, 15px);
}
.faq .faq_q > span,
.faq .faq_a > span {
  font-family: var(--en);
  font-weight: var(--semi);
  font-style: var(--ita);
  margin-right: min(1.2vw, 6px);
}
.faq .faq_q {
  line-height: 1.2778;
  background: var(--white);
}
.faq .faq_q::before {
  border-right: 2.4vw solid rgba(109, 94, 44, 0.16);
  border-left: 0;
  left: -2.4vw;
  top: min(3.4vw, 17px);
}
.faq .faq_q::after {
  border-right: 2.4vw solid var(--white);
  border-left: 0;
  left: -2.4vw;
}
.faq .faq_q > span {
  color: var(--primary);
}
.faq .faq_a {
  color: var(--white);
  line-height: 1.3333;
  background: var(--primary);
  margin-top: min(2.4vw, 12px);
}
.faq .faq_a::before {
  border-left: 2.4vw solid rgba(109, 94, 44, 0.16);
  border-right: 0;
  right: -2.4vw;
  top: min(3.8vw, 19px);
}
.faq .faq_a::after {
  border-left: 2.4vw solid var(--primary);
  border-right: 0;
  right: -2.4vw;
}
.faq .faq_text {
  margin-top: min(5.2vw, 26px);
}
.faq .faq_benefit {
  display: flex;
  flex-direction: column;
  row-gap: min(2.6vw, 13px);
  margin-top: min(6.8vw, 34px);
}
.faq .faq_benefit_item {
  display: flex;
  align-items: center;
  background: var(--white);
}
.faq .faq_benefit_item:last-child .faq_benefit_text > span {
  font-size: min(4.8vw, 24px);
}
.faq .faq_benefit_item > img {
  width: min(21.4vw, 107px);
}
.faq .faq_benefit_text {
  display: flex;
  flex-direction: column;
  padding-left: min(3.6vw, 18px);
  padding-right: min(3vw, 15px);
}
.faq .faq_benefit_text > span {
  font-size: min(5.2vw, 26px);
  font-weight: var(--bold);
}
.faq .faq_goal {
  display: flex;
  justify-content: space-between;
  -webkit-column-gap: min(4vw, 20px);
     -moz-column-gap: min(4vw, 20px);
          column-gap: min(4vw, 20px);
  margin-top: min(6.8vw, 34px);
}
.faq .faq_goal_item {
  background: var(--white);
  width: 50%;
  padding: min(3vw, 15px) 0 min(8vw, 40px);
  border-radius: min(0.8vw, 4px);
  box-sizing: border-box;
}
.faq .faq_goal_item:first-child .faq_goal_pic {
  width: min(18.4vw, 92px);
}
.faq .faq_goal_item:last-child .faq_goal_pic {
  width: min(21.8vw, 109px);
}
.faq .faq_goal_title {
  color: var(--primary);
  font-weight: var(--bold);
  line-height: 1.0556;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 2.5em;
}
.faq .faq_goal_pic {
  display: flex;
  align-items: center;
  justify-content: center;
  height: min(24.2vw, 121px);
  margin: min(3vw, 15px) auto;
}
.faq .faq_goal_text {
  font-size: min(3.2vw, 16px);
  line-height: 1.5625;
  padding-left: min(4vw, 20px);
  padding-right: min(4vw, 20px);
}
.faq .faq_noet {
  color: #B1B1B1;
  font-size: min(3.2vw, 16px);
  line-height: 1.5625;
  margin-top: min(4vw, 20px);
}
.faq .faq_support {
  text-align: center;
  background: var(--white);
  margin-top: min(6vw, 30px);
  padding: min(6vw, 30px) 0 min(4vw, 20px);
  border-radius: min(1.2vw, 6px);
}
.faq .faq_support > img {
  width: min(75.6vw, 378px);
}
.faq .faq_support_title {
  color: var(--primary);
  font-size: min(4.8vw, 24px);
  font-weight: var(--bold);
  line-height: 1.2917;
  letter-spacing: 0.05em;
}
.faq .faq_support_title::after {
  content: "";
  display: block;
  background: var(--primary);
  width: min(4vw, 20px);
  height: min(0.8vw, 4px);
  margin: min(1.6vw, 8px) auto 0;
}
.faq .faq_support_text {
  font-size: min(3.2vw, 16px);
  line-height: 1.625;
  letter-spacing: 0.05em;
  margin: min(4vw, 20px) 0;
}

.interview {
  background-image: url(../img/interview_bg.svg);
  background-size: min(87.6vw, 438px) auto;
  margin-top: min(5vw, 25px);
  padding-top: min(14.4vw, 72px);
}
.interview .interview_inner {
  padding-left: min(8vw, 40px);
  padding-right: min(8vw, 40px);
}
.interview .interview_list {
  display: flex;
  flex-direction: column;
  row-gap: min(15.2vw, 76px);
  margin-top: min(16vw, 80px);
}
.interview .interview_list_item {
  background: var(--white);
  border-radius: min(1.6vw, 8px);
  box-shadow: 0 0 min(3.4vw, 17px) rgba(0, 0, 0, 0.16);
  position: relative;
}
.interview .interview_list_item::before {
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  width: min(22vw, 110px);
  height: min(22vw, 110px);
  position: absolute;
  top: min(-9.4vw, -47px);
  left: min(3.2vw, 16px);
  -webkit-filter: drop-shadow(0 min(0.6vw, 3px) min(1.2vw, 6px) rgba(0, 0, 0, 0.16));
          filter: drop-shadow(0 min(0.6vw, 3px) min(1.2vw, 6px) rgba(0, 0, 0, 0.16));
}
.interview .interview_list_item:first-child::before {
  background-image: url(../img/interview_icon_01.svg);
}
.interview .interview_list_item:last-child::before {
  background-image: url(../img/interview_icon_02.svg);
}
.interview .interview_list_item > img {
  border-radius: min(1.6vw, 8px) min(1.6vw, 8px) 0 0;
}
.interview .interview_body {
  padding: min(8vw, 40px) min(8.4vw, 42px) min(15vw, 75px);
}
.interview .interview_title {
  font-size: min(4.8vw, 24px);
  font-weight: var(--bold);
  line-height: 1.2916;
  letter-spacing: 0.05em;
}
.interview .interview_name {
  color: var(--primary);
  margin-top: min(2.4vw, 12px);
}
.interview .interview_details[open] .interview_btn::before {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.interview .interview_btn {
  background: #E8E8E8;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(8.4vw, 42px);
  height: min(8.4vw, 42px);
  margin: min(4vw, 20px) auto 0;
  border-radius: 50%;
  cursor: pointer;
}
.interview .interview_btn::before {
  content: "";
  display: block;
  background: url(../img/icon_details.svg) no-repeat;
  background-size: cover;
  width: min(3.6vw, 18px);
  height: min(2vw, 10px);
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
}
.interview .interview_btn > span {
  display: none;
}
.interview .interview_text {
  margin-top: min(3.6vw, 18px);
}

.registration {
  background: var(--white);
  margin-top: min(12.4vw, 62px);
  padding: min(4vw, 20px);
}
.registration .registration_inner {
  padding: min(6.4vw, 32px);
  border: 1px solid var(--base);
}
.registration .registration_title {
  font-size: min(4.6vw, 23px);
  font-weight: var(--bold);
  line-height: 1.3478;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: min(5.6vw, 28px);
}
.registration .registration_title::before, .registration .registration_title::after {
  content: "";
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2218.6%22%20height%3D%2230.835%22%20viewBox%3D%220%200%2018.6%2030.835%22%3E%3Cpath%20%20d%3D%22M-1087.355%2C9119.631l-15.963-29.4%2C2.636-1.432%2C15.963%2C29.4Z%22%20transform%3D%22translate%281103.318%20-9088.796%29%22%2F%3E%3C%2Fsvg%3E") no-repeat 50% 50%;
  background-size: contain;
  display: block;
  width: min(3.2vw, 16px);
  height: min(5.8vw, 29px);
}
.registration .registration_title::before {
  margin-right: min(2vw, 10px);
}
.registration .registration_title::after {
  margin-left: min(2vw, 10px);
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
}
.registration .registration_text {
  margin-top: min(5.6vw, 28px);
}
.registration .registration_btn {
  font-size: min(4vw, 20px);
  font-weight: var(--bold);
  letter-spacing: 0.03em;
  width: min(65.2vw, 326px);
  height: min(12.4vw, 62px);
  margin: min(8vw, 40px) auto 0;
}
.registration .registration_btn::after {
  width: min(4.2vw, 21px);
  height: min(4.2vw, 21px);
  margin-left: min(2.4vw, 12px);
}

.contact {
  padding: min(9.4vw, 47px) min(10vw, 50px) min(8vw, 40px);
}
.contact .contact_title {
  font-size: min(5.2vw, 26px);
  font-weight: var(--bold);
  letter-spacing: 0.02em;
  text-align: center;
}
.contact .contact_text {
  margin-top: min(2.6vw, 13px);
}
.contact .contact_btn {
  width: min(65.2vw, 326px);
  height: min(12.4vw, 62px);
  margin: min(4vw, 20px) auto 0;
}
.contact .contact_btn > span::after {
  width: min(4.2vw, 21px);
  height: min(4.2vw, 21px);
  margin-left: min(2.4vw, 12px);
}

.newsletter {
  background: var(--white);
  max-width: 500px;
  margin: 0 auto;
  border-radius: min(4vw, 20px) min(4vw, 20px) 0 0;
  box-shadow: 0 -4px 6px 0 rgba(0, 0, 0, 0.16);
  position: sticky;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
}
.newsletter .newsletter_inner {
  padding: min(3.6vw, 18px) min(4vw, 20px);
}
.newsletter .newsletter_title {
  font-size: min(3.6vw, 18px);
  font-weight: var(--bold);
}
.newsletter .newsletter_body {
  font-size: min(3.2vw, 16px);
  line-height: 1.375;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: min(1.2vw, 6px);
}
.newsletter .newsletter_btn {
  font-size: min(3vw, 15px);
  font-weight: var(--bold);
  width: min(38.4vw, 192px);
  height: min(8vw, 40px);
}
.newsletter .newsletter_btn::after {
  width: min(3vw, 15px);
  height: min(3vw, 15px);
  margin-left: min(2.4vw, 12px);
}

.sr {
  word-wrap: normal;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
}

@media screen and (width >= 500.1px) {
  body {
    background: #4AB1FF;
  }
  .header.is-hidden .header_menu {
    opacity: 0;
  }
  .header.is-fixed .header_menu {
    opacity: 1;
    position: fixed;
  }
  .frame {
    background: url(../img/frame_bg.jpg) no-repeat;
    background-size: cover;
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .frame .frame_side {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc((100% - 500px) / 2);
  }
  .content {
    margin-top: 32px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.31);
  }
  .main::before, .main::after {
    height: 100px;
    top: -55px;
  }
  .data .data_sample_title::before {
    bottom: 10px;
  }
  .faq .faq_q::before, .faq .faq_q::after,
  .faq .faq_a::before,
  .faq .faq_a::after {
    border-width: 8px;
  }
  .faq .faq_q::before {
    border-right-width: 12px;
    left: -12px;
  }
  .faq .faq_q::after {
    border-right-width: 12px;
    left: -12px;
  }
  .faq .faq_a::before {
    border-left-width: 12px;
    right: -12px;
  }
  .faq .faq_a::after {
    border-left-width: 12px;
    right: -12px;
  }
  .interview .interview_list_item::before {
    top: -47px;
  }
  .sp {
    display: none;
  }
}

@media (any-hover: hover) and (prefers-reduced-motion: no-preference) {
  a {
    transition: opacity 0.3s;
  }
  a:hover {
    opacity: 0.8;
  }
  button:hover {
    opacity: 0.8;
  }
  .gnav .gnav_link::after {
    transition: width 0.5s;
  }
}

@media (any-hover: hover) {
  button {
    transition: opacity 0.3s;
  }
  .gnav .gnav_link:hover::after {
    width: 100%;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .header .header_menu {
    transition: opacity 0.5s;
  }
  .header .header_dialog {
    transition: opacity 0.5s;
  }
}

@media screen and (width >= 981px) {
  .side-left {
    display: block;
    width: min(20.8984375vw, 321px);
    padding-bottom: min(2.2135416667vw, 34px);
  }
  .side-left .side-left_logo {
    line-height: 1;
    width: min(19.7916666667vw, 304px);
    margin-inline: auto;
  }
  .side-left .side-left_pic {
    margin-top: min(2.0833333333vw, 32px);
    position: relative;
  }
  .side-left .side-left_title {
    width: min(21.8098958333vw, 335px);
    margin: auto 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
  }
  .side-left .side-left_popover {
    margin-top: min(1.953125vw, 30px);
  }
  .side-right {
    display: block;
    width: min(18.6848958333vw, 287px);
    padding-bottom: min(1.953125vw, 30px);
  }
  .side-right .side-right_access {
    margin-top: min(7.8125vw, 120px);
  }
  .side-right .side-right_nav {
    font-size: min(1.171875vw, 18px);
  }
  .popover {
    font-size: min(1.0416666667vw, 16px);
    background: var(--white);
    text-align: center;
    border-radius: min(0.390625vw, 6px);
    overflow: hidden;
  }
  .popover .popover_title {
    color: var(--white);
    font-weight: var(--bold);
    line-height: 1.4375;
    background: url(../img/side_popover.svg) no-repeat;
    background-size: 100% auto;
    min-height: min(5.2734375vw, 81px);
    padding: min(0.78125vw, 12px) min(0.6510416667vw, 10px) 0;
    box-sizing: border-box;
  }
  .popover .popover_body {
    line-height: 1.4375;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: min(0.6510416667vw, 10px);
    padding: min(0.5208333333vw, 8px) min(1.8229166667vw, 28px) min(1.3020833333vw, 20px);
  }
  .popover .popover_btn {
    font-weight: var(--bold);
    -ms-grid-row-align: center;
        align-self: center;
    width: min(15.7552083333vw, 242px);
    height: min(2.8645833333vw, 44px);
  }
  .popover .popover_btn::after {
    width: min(1.1067708333vw, 17px);
    height: min(1.1067708333vw, 17px);
    margin-left: min(0.6510416667vw, 10px);
  }
  .qr {
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: min(1.3020833333vw, 20px);
    border-radius: min(0.390625vw, 6px);
  }
  .qr .qr_body {
    display: flex;
    flex-direction: column;
  }
  .qr .qr_pic {
    flex-shrink: 0;
    width: min(4.9479166667vw, 76px);
  }
  .qr .qr_en {
    color: var(--primary);
    font-family: var(--en);
    font-size: min(0.78125vw, 12px);
    font-weight: var(--medium);
  }
  .qr .qr_text {
    font-size: min(1.0416666667vw, 16px);
    font-weight: var(--bold);
    line-height: 1.4375;
    margin-top: min(0.3255208333vw, 5px);
  }
}

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