/* ------------------------
    base
------------------------ */
html,
body {
  overflow-x: hidden;
}

body {
  min-height: 100svh;
  line-height: 1.5;
  word-break: normal;
  overflow-wrap: break-word;
  line-break: strict;
}

a {
  display: block;
}

img {
  width: 100%;
  height: auto;
}

textarea {
  resize: vertical;
}

/* ------------------------
    utility
------------------------ */
.u-word {
  display: inline-block;
}

.u-pc {
  display: block;
}
@media (max-width: 768px) {
  .u-pc {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media (max-width: 768px) {
  .u-sp {
    display: block;
  }
}

.u-grid-col2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px max(4%, 20px);
}

.u-list-item-disc {
  display: flex;
  column-gap: 6px;
  align-items: flex-start;
  padding-left: 5px;
}
.u-list-item-disc::before {
  display: inline-block;
  flex-shrink: 0;
  width: 4px;
  aspect-ratio: 1;
  margin-top: 1px;
  content: "";
  background-color: currentcolor;
  border-radius: 50%;
  transform: translateY(0.7em);
}
@media (max-width: 768px) {
  .u-list-item-disc::before {
    width: 3px;
  }
}

:root {
  --black: #000;
  --white: #fff;
  --blue: #0068b7;
  --bg-light-blue: #e2f3ff;
  --transition: 0.3s;
  --base-font-size: 17;
  --header-height: 80px;
  --border-radius: 20px;
}

@media (max-width: 1024px) {
  :root {
    --header-height: 70px;
  }
}
@media (max-width: 1024px) {
  :root {
    --base-font-size: 16;
  }
}
@media (max-width: 768px) {
  :root {
    --base-font-size: 15;
    --header-height: 60px;
    --border-radius: 15px;
  }
}
/* ------------------------
  common
------------------------ */
body {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic Medium", Meiryo, sans-serif;
  font-size: calc(var(--base-font-size) / 16 * 1rem);
  font-weight: 500;
  line-height: 1.7647058824;
  color: var(--black);
  background-color: var(--white);
}
@media (max-width: 768px) {
  body {
    line-height: 1.6;
  }
}

.inner {
  width: 93%;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}
.inner--m {
  max-width: 1100px;
}
.inner--l {
  max-width: 1200px;
}
.inner--max {
  max-width: 1600px;
}
@media (max-width: 768px) {
  .inner {
    width: 90%;
  }
}

.section {
  padding-top: 100px;
  padding-bottom: 125px;
}
@media (max-width: 768px) {
  .section {
    padding-top: 70px;
    padding-bottom: 85px;
  }
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 25px 5%;
  justify-content: center;
}
@media (max-width: 1024px) {
  .btn-group {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .btn-group {
    gap: 15px 10px;
  }
}

.btn {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 16.5em;
  max-width: 300px;
  min-height: 74px;
  padding: 0 2.3em;
  overflow: hidden;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3333333333;
  color: var(--white);
  text-align: center;
  background: url("../images/icon_arrow.svg") no-repeat calc(100% - 1em) center/1.2em, var(--blue);
  border-radius: 10px;
  transition: opacity var(--transition);
}
@media (max-width: 1024px) {
  .btn {
    min-height: 65px;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .btn {
    font-size: 15px;
    border-radius: 8px;
  }
}
.btn > span {
  position: relative;
  z-index: 3;
}
.btn::before {
  z-index: 2;
  width: 100%;
  height: 100%;
  background: url("../images/icon_arrow.svg") no-repeat calc(100% - 1em) center/1.2em, linear-gradient(90deg, rgb(0, 215, 255) 0%, rgb(0, 104, 183) 100%);
  transition: opacity var(--transition);
  position: absolute;
  display: block;
  content: "";
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover::before, .btn:focus::before {
    opacity: 0;
  }
}
@media (hover: none) {
  .btn:active::before {
    opacity: 0;
  }
}

.heading-wrap {
  margin-bottom: 1em;
  font-size: 1.625rem;
  text-align: left;
}
@media (max-width: 1024px) {
  .heading-wrap {
    font-size: 1.375rem;
  }
}
@media (max-width: 768px) {
  .heading-wrap {
    font-size: 1.1875rem;
  }
}

.heading {
  font-weight: 700;
}

.heading-en {
  color: var(--blue);
  width: fit-content;
  margin-right: auto;
  font-size: 2.6923076923em;
  font-weight: 900;
  line-height: 1.3;
  background: linear-gradient(90deg, rgb(0, 215, 255) 0%, rgb(0, 104, 183) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .heading-en {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .u-grid-col2 {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
}
.u-grid-col2 p + .bl-ttl {
  margin-top: 1em;
}

.entry-btn {
  position: fixed;
  right: 0;
  bottom: 10%;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 11em;
  padding: 1.3em;
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  background: url("../images/icon_arrow.svg") no-repeat calc(100% - 0.8em) center/0.9em, var(--blue);
  transform-origin: 100% 0;
  transition: opacity var(--transition), transform var(--transition);
}
@media (width <= 1400px) and (min-width: 769px) {
  .entry-btn {
    width: 9em;
  }
  .entry-btn.js-active {
    transform: scale(0.8);
  }
}
@media (max-width: 1024px) {
  .entry-btn {
    padding: 1.2em;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .entry-btn {
    position: fixed !important;
    bottom: 0 !important;
    left: 0;
    width: 9em;
    padding: 0.5em 1.5em 0.7em 1em;
    font-size: 15px;
    letter-spacing: 0.12em;
    background-position-y: calc(50% - 0.1em);
    background-size: 0.85em, cover;
    border-top-right-radius: 8px;
  }
}
.entry-btn > span {
  position: relative;
  z-index: 32;
}
.entry-btn::before {
  bottom: 0;
  left: 0;
  z-index: 31;
  width: 100%;
  height: 100%;
  background: url("../images/icon_arrow.svg") no-repeat calc(100% - 0.8em) center/0.9em, linear-gradient(90deg, rgb(0, 215, 255) 0%, rgb(0, 104, 183) 100%);
  transition: opacity var(--transition);
  position: absolute;
  display: block;
  content: "";
}
@media (max-width: 768px) {
  .entry-btn::before {
    background-position-y: calc(50% - 0.1em);
    background-size: 0.85em, cover;
    border-top-right-radius: 10px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .entry-btn:hover::before, .entry-btn:focus::before {
    opacity: 0;
  }
}
@media (hover: none) {
  .entry-btn:active::before {
    opacity: 0;
  }
}

/* ------------------------
  header
------------------------ */
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding-right: 2.5%;
  padding-left: 1.5714285714%;
  transition: background-color var(--transition);
}
@media (min-width: 1025px) {
  .header.js-bg {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(3px);
  }
}
.header_logo {
  align-content: center;
  width: 255px;
  transition: opacity var(--transition);
}
@media (hover: hover) and (pointer: fine) {
  .header_logo:hover, .header_logo:focus {
    opacity: 0.8;
  }
}
@media (hover: none) {
  .header_logo:active {
    opacity: 0.8;
  }
}

.header-nav {
  transition: transform var(--transition);
}
.header-nav_list {
  display: flex;
  gap: 0 2.5em;
  align-items: center;
  font-size: 0.9375rem;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.05em;
}
.header-nav_link {
  font-weight: 500;
  transition: color var(--transition);
}
@media (hover: hover) and (pointer: fine) {
  .header-nav_link:hover, .header-nav_link:focus {
    color: var(--blue);
  }
}
@media (hover: none) {
  .header-nav_link:active {
    color: var(--blue);
  }
}
.header-nav_btn {
  display: none;
  align-content: center;
  width: fit-content !important;
  padding: 1em;
  margin-inline: auto;
  margin-top: 20px;
  font-weight: 700;
  border-radius: 8px;
  transition: opacity var(--transition);
}
@media (max-width: 1024px) {
  .header-nav_btn {
    display: block;
  }
}

.hamburger {
  position: fixed;
  top: 9px;
  right: 9px;
  z-index: 150;
  display: none;
  width: calc(var(--header-height) - 20px);
  height: calc(var(--header-height) - 20px);
  background: linear-gradient(90deg, rgb(0, 215, 255) 0%, rgb(0, 104, 183) 100%);
}
.hamburger > span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 55%;
  height: 1px;
  background: var(--white);
  transform: translateX(-50%);
  transition: ease 0.4s;
}
.hamburger > span:nth-of-type(1) {
  top: 32%;
}
.hamburger > span:nth-of-type(3) {
  top: 68%;
}
.hamburger.js-close > span {
  top: 50%;
}
.hamburger.js-close > span:nth-of-type(1) {
  transform: translateX(-50%) rotate(45deg);
}
.hamburger.js-close > span:nth-of-type(2) {
  width: 0;
  opacity: 0;
}
.hamburger.js-close > span:nth-of-type(3) {
  transform: translateX(-50%) rotate(-45deg);
}

@media (max-width: 1024px) {
  .header {
    position: relative;
    padding-left: 5%;
    margin-bottom: calc(var(--header-height) * -1);
  }
  .header::before {
    position: fixed;
    inset: 0;
    z-index: 99;
    display: none;
    width: 100vh;
    height: 100%;
    content: "";
    background: rgba(33, 46, 57, 0.5);
  }
  .header.js-active::before {
    display: block;
  }
  .header-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    display: grid;
    align-content: center;
    width: min(90%, 400px);
    height: 100vh;
    padding: calc(var(--header-height) - 1em) 2em 0;
    margin-top: 0;
    background-color: #fff;
    transform: translateX(110%);
  }
  .js-active .header-nav {
    transform: translateX(0);
  }
  .header-nav_list {
    flex-direction: column;
    margin-top: calc(var(--header-height) * -1 - 3em);
    font-size: 1rem;
  }
  .header-nav_item {
    width: 100%;
  }
  .header-nav_item:not(.header-nav_btn) {
    border-bottom: 1px solid #ccc;
  }
  .header-nav_link {
    padding: 1.1em;
    font-weight: 700;
  }
  .hamburger {
    display: block;
  }
}
/* ------------------------
  footer
------------------------ */
.footer {
  padding: 50px 5%;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--white);
  background-color: var(--blue);
  position: relative;
}
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    padding: 30px 5% 55px;
  }
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em 3em;
  justify-content: center;
  margin-right: auto;
  margin-bottom: 8px;
  margin-left: auto;
}
@media (max-width: 768px) {
  .footer-nav {
    justify-content: center;
  }
}
@media (width <= 600px) {
  .footer-nav {
    flex-direction: column;
    align-items: center;
  }
}
.footer-nav a {
  position: relative;
}
.footer-nav a:not(:last-child)::after {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  right: -1.5em;
  width: 1px;
  height: 0.9em;
  background: var(--white);
  transform: translateY(-50%);
}
@media (width <= 600px) {
  .footer-nav a:not(:last-child)::after {
    display: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  .footer-nav a:hover, .footer-nav a:focus {
    opacity: 0.75;
  }
}
@media (hover: none) {
  .footer-nav a:active {
    opacity: 0.75;
  }
}

.copyright {
  text-align: center;
}
@media (max-width: 768px) {
  .copyright {
    font-size: 0.6875rem;
  }
}

/* ------------------------
  about 
------------------------ */
.about-intro {
  grid-template-columns: 1fr 48%;
  gap: 30px 1em;
  align-items: center;
  margin-bottom: 40px;
}
@media (min-width: 1201px) {
  .about-intro_map {
    width: 110%;
    margin-left: -10%;
  }
}
@media (max-width: 768px) {
  .about-intro_map {
    order: 2;
    width: 94%;
    margin-inline: auto;
  }
}
.about-intro_txt {
  font-size: 1.1176470588em;
  text-align: justify;
}
@media (max-width: 768px) {
  .about-intro_txt {
    font-size: 0.9375rem;
  }
}
.about-intro_txt + .about-intro_txt {
  margin-top: 2em;
}

.topic {
  padding: 1.6em calc(var(--base-font-size) / 16 * 1rem * 2) 1.3em;
  text-align: justify;
  background-color: var(--bg-light-blue);
  position: relative;
}
@media (width <= 500px) {
  .topic {
    padding: 2.6em calc(var(--base-font-size) / 16 * 1rem * 2) 1.3em;
  }
}
.topic::before {
  position: absolute;
  top: 2px;
  right: 8px;
  z-index: 1;
  font-size: 90px;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  content: "TOPIC";
}
@media (max-width: 1024px) {
  .topic::before {
    font-size: 70px;
  }
}
@media (width <= 500px) {
  .topic::before {
    font-size: 50px;
  }
}
.topic_inner {
  position: relative;
  z-index: 2;
}
.topic_ttl {
  margin-bottom: 0.5em;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3571428571;
  color: var(--blue);
}
@media (max-width: 768px) {
  .topic_ttl {
    font-size: 1.25rem;
  }
}
@media (width <= 500px) {
  .topic_ttl br {
    display: none;
  }
}
.topic_achievement {
  display: grid;
  margin-top: 1.6em;
}
.topic_achievement-ttl {
  width: calc(100% + var(--base-font-size) / 16 * 1rem * 4);
  padding-left: calc(var(--base-font-size) / 16 * 1rem * 2);
  margin-bottom: 1em;
  margin-left: calc(var(--base-font-size) / 16 * 1rem * -2);
  color: var(--white);
  background-color: var(--blue);
}
.topic_achievement-body {
  display: grid;
  grid-template-rows: repeat(2, auto);
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: column;
  gap: 0.1em 1.5em;
  justify-self: center;
  width: min(100%, 700px);
}
@media (max-width: 768px) {
  .topic_achievement-body {
    grid-template-rows: unset;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    font-size: 0.875rem;
  }
}
.topic_achievement-body .year {
  min-width: 6.5em;
}

/* ------------------------
  job 
------------------------ */
.job {
  z-index: 1;
  position: relative;
}
.job::before {
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 80%;
  background: linear-gradient(rgba(226, 243, 255, 0.8), rgba(226, 243, 255, 0.8)), url("../images/bg_job.jpg") no-repeat 60% center/cover;
  background-blend-mode: multiply;
  position: absolute;
  display: block;
  content: "";
}
@media (max-width: 768px) {
  .job::before {
    width: 100%;
    background-size: 650% auto;
    background-position: 60% top;
  }
}
.job .heading-wrap {
  margin-bottom: 1.9em;
}

.tab-list {
  margin-bottom: 75px;
}
@media (max-width: 768px) {
  .tab-list {
    gap: 6px;
    margin-bottom: 30px;
  }
}

.tab {
  cursor: pointer;
}
@media (max-width: 768px) {
  .tab {
    width: calc((100% - 6px) / 2);
    min-width: unset;
    min-height: 50px;
    padding: 0 1.5em;
    font-size: 14px;
    background-position: calc(100% - 0.5em) center, center;
    background-size: 0.9em, cover;
  }
}
@media (max-width: 768px) {
  .tab::before {
    background-position: calc(100% - 0.5em) center, center;
    background-size: 0.9em, cover;
  }
}
.tab.js-active::before {
  opacity: 0;
}

.panel-wrap {
  width: calc((100vw - min(100%, 1000px)) / 2 + 100%);
  max-width: 1400px;
  background-color: var(--bg-light-blue);
}
@media (max-width: 768px) {
  .panel-wrap {
    width: 100%;
  }
}

.panel {
  display: none;
  padding: 1.5em 1.8em 1.8em;
}
@media (max-width: 768px) {
  .panel {
    padding: 1.5em 10px 15px;
  }
}
.panel.js-active {
  display: block;
}
.panel .btn-group {
  margin-bottom: 30px;
}
.panel .btn {
  min-width: 19em;
}
@media (max-width: 768px) {
  .panel .btn {
    min-width: 16.5em;
  }
}
.panel_ttl {
  margin-bottom: 0.7em;
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue);
  text-align: center;
}
@media (max-width: 768px) {
  .panel_ttl {
    font-size: 1.5rem;
  }
}
.panel_body {
  padding: 2em;
  text-align: justify;
  background-color: var(--white);
}
@media (max-width: 768px) {
  .panel_body {
    padding: 1.5em;
  }
}
.panel_item {
  gap: 10px max(3.5%, 15px);
  align-items: center;
}
.panel_item + .panel_item {
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .panel_item + .panel_item {
    margin-top: 25px;
    margin-bottom: 32px;
  }
}
@media (min-width: 769px) {
  .panel_item + .panel_item .panel_item-body {
    order: 2;
  }
}
.panel_item-ttl {
  margin-bottom: 0.5em;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--blue);
}
@media (max-width: 1024px) {
  .panel_item-ttl {
    font-size: 1.5625rem;
  }
}
@media (max-width: 768px) {
  .panel_item-ttl {
    margin-bottom: 0.2em;
    font-size: 1.25rem;
  }
}
.panel_attention {
  padding: 1em 1em 0;
  margin-bottom: 55px;
  text-align: center;
  background-color: var(--bg-light-blue);
}
@media (max-width: 768px) {
  .panel_attention {
    margin-bottom: 40px;
  }
}
.panel_attention-ttl {
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue);
  background-color: var(--white);
  position: relative;
}
@media (max-width: 1024px) {
  .panel_attention-ttl {
    font-size: 1.625rem;
  }
}
@media (max-width: 768px) {
  .panel_attention-ttl {
    font-size: 1.25rem;
  }
}
.panel_attention-ttl::before {
  top: 50%;
  left: calc(50% - 6.4em);
  width: 2.85em;
  aspect-ratio: 77/50;
  background: url("../images/icon_attention.svg") no-repeat center/contain;
  transform: translate(0, -50%);
  position: absolute;
  display: block;
  content: "";
}
@media (width <= 400px) {
  .panel_attention-ttl::before {
    left: 0.2em;
    width: 2.2em;
  }
}
.panel_attention-txt {
  padding-top: 1.75em;
  padding-bottom: 1.75em;
  font-size: 1.3529411765em;
}
@media (max-width: 1024px) {
  .panel_attention-txt {
    font-size: 1.125rem;
  }
}
@media (max-width: 768px) {
  .panel_attention-txt {
    padding-top: 0.75em;
    padding-bottom: 1em;
    font-size: 0.9375rem;
  }
}

/* ------------------------
  point 
------------------------ */
.point {
  background: url("../images/bg_point.jpg") no-repeat center bottom/100%;
}
@media (max-width: 768px) {
  .point {
    background-size: 155%;
  }
}
.point .heading-wrap {
  margin-bottom: 1.9em;
}

.point-list {
  display: grid;
  grid-template-areas: "item01 item01 item01 item02 item02 item02" "item03 item03 item04 item04 item05 item05" "item06 item06 item06 item06 item06 item06";
  grid-template-columns: repeat(6, 1fr);
  gap: 30px 25px;
  text-align: justify;
}
@media (max-width: 768px) {
  .point-list {
    grid-template-areas: unset;
    grid-template-columns: 1fr;
    width: min(97%, 500px);
    margin-inline: auto;
  }
}

.point-item {
  display: grid;
  padding: 2em 1em;
  background-color: var(--bg-light-blue);
}
@media (max-width: 768px) {
  .point-item {
    grid-area: unset !important;
    grid-template-rows: repeat(3, auto) !important;
    padding: 2em 1.5em;
  }
}
.point-item_ttl {
  align-self: center;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3571428571;
  color: var(--blue);
  text-align: center;
}
@media (max-width: 1024px) {
  .point-item_ttl {
    font-size: 1.5625rem;
  }
}
@media (max-width: 768px) {
  .point-item_ttl {
    font-size: 1.4375rem;
  }
}
.point-item .allowance-list {
  font-size: 0.9375rem;
}
.point-item .allowance-list_row {
  display: grid;
  grid-template-columns: 5.3em 1fr;
}
.point-item[data-num="01"] {
  grid-area: item01;
}
@media (min-width: 769px) {
  .point-item[data-num="01"] .point-item_img {
    padding-top: 3px;
    padding-bottom: 3px;
  }
}
.point-item[data-num="02"] {
  grid-area: item02;
}
.point-item[data-num="02"] .point-item_img {
  transform: translateY(-10%);
}
.point-item[data-num="03"] {
  grid-area: item03;
}
@media (max-width: 768px) {
  .point-item[data-num="03"] .point-item_img {
    max-height: 80px !important;
  }
}
.point-item[data-num="04"] {
  grid-area: item04;
}
@media (min-width: 769px) {
  .point-item[data-num="04"] .point-item_img {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
.point-item[data-num="05"] {
  grid-area: item05;
}
@media (min-width: 769px) {
  .point-item[data-num="05"] .point-item_img {
    padding-top: 4px;
    padding-bottom: 10px;
  }
}
.point-item[data-num="06"] {
  display: grid;
  grid-area: item06;
  grid-template-columns: 40% 1fr;
  gap: 25px 7%;
  align-items: center;
  padding: 1.6em 2.5em 1.5em;
}
@media (max-width: 768px) {
  .point-item[data-num="06"] {
    grid-template-rows: auto auto !important;
    grid-template-columns: 1fr;
    padding: 2em 1.5em 3em;
  }
}
.point-item[data-num="06"] .point-item_img {
  transform: scale(1.06);
}
@media (max-width: 768px) {
  .point-item[data-num="06"] .point-item_img {
    order: 2;
    max-width: 350px;
    margin-inline: auto;
  }
}
.point-item[data-num="06"] .point-item_ttl {
  margin-bottom: 0.7em;
}
.point-item[data-num="01"], .point-item[data-num="02"] {
  grid-template-rows: 5.25rem auto 1fr;
  row-gap: 1.0625rem;
}
.point-item[data-num="01"] .point-item_img, .point-item[data-num="02"] .point-item_img {
  max-height: 77px;
}
@media (max-width: 768px) {
  .point-item[data-num="01"] .point-item_img, .point-item[data-num="02"] .point-item_img {
    max-height: 60px;
  }
}
.point-item[data-num="03"], .point-item[data-num="04"], .point-item[data-num="05"] {
  grid-template-rows: 5.25rem auto 1fr;
  row-gap: 1.4375rem;
}
.point-item[data-num="03"] .point-item_img, .point-item[data-num="04"] .point-item_img, .point-item[data-num="05"] .point-item_img {
  max-height: 99px;
}
@media (max-width: 768px) {
  .point-item[data-num="03"] .point-item_img, .point-item[data-num="04"] .point-item_img, .point-item[data-num="05"] .point-item_img {
    max-height: 70px;
  }
}

/* ------------------------
  interview 
------------------------ */
.interview {
  background: linear-gradient(90deg, rgb(0, 215, 255) 0%, rgb(0, 104, 183) 100%);
}
.interview .heading-wrap {
  color: var(--white);
}
.interview .heading-en {
  color: var(--white);
  -webkit-text-fill-color: var(--white);
}

.interview-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px 3%;
  padding-top: 70px;
}
@media (max-width: 768px) {
  .interview-list {
    grid-template-columns: 1fr;
    width: min(95%, 450px);
    margin-inline: auto;
  }
}

.interview-item {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  padding: 0 1.5em 1.8em;
  text-align: justify;
  background-color: var(--white);
}
.interview-item .btn {
  width: 100%;
  min-width: 13.5em;
  max-width: 280px;
}
.interview-item_img {
  display: block;
  width: 90%;
  margin-inline: auto;
  margin-top: -50px;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .interview-item_img {
    width: 70%;
  }
}
.interview-item_comment {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4166666667;
  color: var(--blue);
}
@media (max-width: 1200px) {
  .interview-item_comment {
    font-size: 1.375rem;
  }
}
@media (max-width: 768px) {
  .interview-item_comment {
    font-size: 1.1875rem;
  }
}
.interview-item_info {
  align-self: flex-end;
  padding-top: 1em;
  padding-bottom: 1.4em;
  line-height: 1.2;
  text-align: right;
}
@media (hover: hover) and (pointer: fine) {
  .interview-item:hover .btn::before, .interview-item:focus .btn::before {
    opacity: 0;
  }
}
@media (hover: none) {
  .interview-item:active .btn::before {
    opacity: 0;
  }
}

.remodal-wrapper {
  padding: 0;
}

.remodal-overlay {
  background: rgba(226, 243, 255, 0.9);
}

.remodal {
  padding-top: 130px;
  padding-bottom: 350px;
  margin-bottom: 0;
  overflow-x: clip;
}
@media (max-width: 768px) {
  .remodal {
    padding-top: 80px;
  }
}

[data-remodal-target] {
  cursor: pointer;
}

.modal {
  position: relative;
  padding: 60px 5.5% 90px 4.5%;
  text-align: left;
  background: var(--white);
}
@media (max-width: 768px) {
  .modal {
    padding: 60px 4%;
  }
}
.modal .btn-group {
  margin-top: 65px;
}
@media (max-width: 768px) {
  .modal .btn-group {
    margin-top: 55px;
  }
}
.modal .btn {
  font-size: 1.125rem;
  color: var(--white);
  background: url("../images/icon_close.svg") no-repeat calc(100% - 1.5em) center/1em, var(--blue);
}
@media (max-width: 768px) {
  .modal .btn {
    max-width: 12.3em;
    font-size: 0.9375rem;
  }
}
.modal .btn::before {
  background: url("../images/icon_close.svg") no-repeat calc(100% - 1.5em) center/1em, linear-gradient(90deg, rgb(0, 215, 255) 0%, rgb(0, 104, 183) 100%);
}
.modal-top {
  margin-bottom: 45px;
  position: relative;
}
@media (max-width: 768px) {
  .modal-top {
    display: grid;
    margin-bottom: 30px;
  }
}
.modal-top_body {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .modal-top_body {
    position: static;
    transform: translateY(-20px);
  }
}
.modal-top_comment {
  display: inline;
  padding: 0.4em 0 0.4em 0.5em;
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 2.1;
  color: var(--white);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 10%, var(--blue) 10%, var(--blue) 90%, rgba(255, 255, 255, 0) 90%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
@media (max-width: 1024px) {
  .modal-top_comment {
    font-size: 1.875rem;
  }
}
@media (width <= 850px) {
  .modal-top_comment {
    font-size: 1.5625rem;
  }
}
@media (max-width: 768px) {
  .modal-top_comment {
    font-size: 1.125rem;
  }
}
.modal-top_info {
  margin-top: 1.3em;
  font-size: 1.1875rem;
}
@media (max-width: 1024px) {
  .modal-top_info {
    font-size: 1.0625rem;
  }
}
@media (max-width: 768px) {
  .modal-top_info {
    margin-top: 0.8em;
    font-size: 0.875rem;
  }
}
.modal_img {
  display: block;
  width: 44.1176470588%;
  margin-left: auto;
}
@media (max-width: 768px) {
  .modal_img {
    order: -1;
    width: 80%;
    margin-right: 4%;
  }
}
.modal_ttl {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--blue);
}
@media (max-width: 768px) {
  .modal_ttl {
    font-size: 1.0625rem;
    transform: translateY(-68%);
  }
}

@media (max-width: 768px) {
  [data-remodal-id=modal01] .modal-top_body {
    width: calc(100% + 0.5em);
  }
}

.question {
  padding-left: 2em;
  margin-bottom: 0.7em;
  font-size: 1.4375rem;
  font-weight: 700;
  line-height: 1.2173913043;
  position: relative;
}
@media (max-width: 1024px) {
  .question {
    font-size: 1.3125rem;
  }
}
@media (max-width: 768px) {
  .question {
    font-size: 1.0625rem;
  }
}
.question::before {
  position: absolute;
  top: -0.25em;
  left: 0;
  display: grid;
  place-content: center center;
  width: 1.65em;
  aspect-ratio: 1;
  padding-bottom: 0.3em;
  font-size: 1.0434782609em;
  color: var(--white);
  content: "Q";
  background-color: #3bbcdb;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .question::before {
    font-size: 1em;
  }
}

.answer {
  padding: 1em;
  margin-bottom: 50px;
  background-color: var(--bg-light-blue);
}
@media (max-width: 768px) {
  .answer {
    margin-bottom: 30px;
  }
}

.close-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  aspect-ratio: 1;
  background: url("../images/icon_close.svg") no-repeat center/18px, linear-gradient(90deg, rgb(0, 215, 255) 0%, rgb(0, 104, 183) 100%);
  border-radius: 50%;
  transform: translate(50%, -50%);
}
@media (max-width: 1200px) {
  .close-btn {
    transform: translate(30%, -50%);
  }
}
@media (max-width: 768px) {
  .close-btn {
    width: 40px;
    transform: translate(-30%, 30%);
  }
}

/* ------------------------
  flow 
------------------------ */
.flow {
  z-index: 1;
  padding-bottom: 70px;
  position: relative;
}
.flow::before {
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 41%;
  background: linear-gradient(rgba(226, 243, 255, 0.8), rgba(226, 243, 255, 0.8)), url("../images/bg_flow.jpg") no-repeat 51% center/cover;
  background-blend-mode: multiply;
  position: absolute;
  display: block;
  content: "";
}
@media (max-width: 768px) {
  .flow::before {
    width: 100%;
    background: linear-gradient(rgba(226, 243, 255, 0.3), rgba(226, 243, 255, 0.4)), url("../images/bg_flow.jpg") no-repeat 51% center/cover;
    background-blend-mode: unset;
  }
}

.flow-cont {
  width: calc((100vw - min(100%, 1000px)) / 2 + 100% - 5.5vw);
  max-width: 1260px;
  padding: 50px;
  margin-left: 5.5vw;
  background-color: var(--bg-light-blue);
}
@media (max-width: 768px) {
  .flow-cont {
    padding: 50px 20px 30px 60px;
  }
}

.flow-list {
  counter-reset: flow;
}

.flow-item {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 2em;
  counter-increment: flow;
}
@media (max-width: 768px) {
  .flow-item {
    position: relative;
    z-index: 1;
    grid-template-columns: 1fr;
  }
}
.flow-item::before {
  display: grid;
  align-items: center;
  justify-content: center;
  width: 2.2em;
  aspect-ratio: 1;
  font-size: 50px;
  font-weight: 200;
  color: var(--white);
  content: counter(flow, decimal-leading-zero);
  background: linear-gradient(90deg, rgb(0, 215, 255) 0%, rgb(0, 104, 183) 100%);
}
@media (max-width: 1024px) {
  .flow-item::before {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .flow-item::before {
    position: absolute;
    z-index: -1;
    align-items: unset;
    width: 2.3em;
    font-size: 21px;
    line-height: 1.4;
    text-indent: -0.5em;
    background: linear-gradient(90deg, rgb(0, 104, 183) 0%, rgb(0, 215, 255) 100%);
    transform: translate(-77%, -41%);
  }
}
.flow-item_ttl {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--blue);
}
@media (max-width: 768px) {
  .flow-item_ttl {
    margin-bottom: 0.1em;
    font-size: 1.4375rem;
    line-height: 1.2;
    text-shadow: 0 0 11px var(--bg-light-blue);
  }
}
.flow-item + .flow-item {
  margin-top: 35px;
}
@media (max-width: 768px) {
  .flow-item + .flow-item {
    margin-top: 45px;
  }
}

/* ------------------------
  join 
------------------------ */
.join {
  padding-top: 75px;
  padding-bottom: 75px;
  background: linear-gradient(rgba(0, 0, 0, 0.3) 0, rgba(0, 0, 0, 0.3) 100%), url("../images/bg_join.jpg") no-repeat center 47%/cover;
}
@media (max-width: 768px) {
  .join {
    padding-top: 40px;
    padding-bottom: 45px;
    background-position-y: 36%;
    background-size: 170%;
  }
}
.join .heading-wrap {
  color: var(--white);
  text-align: center;
}
.join .heading-en {
  margin-left: auto;
  color: var(--white);
  -webkit-text-fill-color: var(--white);
}/*# sourceMappingURL=style.css.map */