@charset "UTF-8";
/* ================================================================================
共通パーツ
================================================================================ */
/* ================================================================================
reset
================================================================================ */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

a img {
  border: none;
}

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

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* ================================================================================
ブレークポイント定義
================================================================================ */
/* ================================================================================
変数定義
================================================================================ */
:root {
  --black: #232C38;
  --grade-key: linear-gradient(90deg, #30D1CC 0%, #0064C2 75%, #043687 100%);
  --grade-key02: linear-gradient(-180deg, #30D1CC 0%, #0064C2 75%, #043687 100%);
  --gray-bg: #F4F6F6;
  --gray-bar: #D3E0E4;
  --pale: #B9D4DE;
  --hover-scal: 1.3;
  --hover-trans: all .4s;
  --hover-opacity: 0.6;
  --font-ja: "Zen Kaku Gothic Antique", sans-serif;
  --font-en: "Montserrat", sans-serif;
  --base-width: 1200px;
  --max-width: 1440px;
  --sml-width: 900px;
  --sp-img-width: 400px;
  --sp-sectop: 70px;
  --pc-sectop: 80px;
  --pc-topsec: 120px;
}

/* body
--------------------------------------------------- */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  color: var(--black);
  font-weight: 500;
  font-size: 100%;
  line-height: 1.6;
  font-family: var(--font-ja);
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  position: relative;
}

img {
  width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
}

main {
  overflow: hidden;
}
main section {
  padding-top: var(--sp-sectop);
}
main section.bdr_top {
  margin-top: var(--sp-sectop);
  border-top: 1px solid var(--gray-bar);
}
main section.bdr_btm {
  padding-bottom: var(--sp-sectop);
  border-bottom: 1px solid var(--pale);
}

a[href*="tel:"] {
  color: var(--black);
  text-decoration: none;
}

@media screen and (min-width : 768px) {
  main section {
    padding-top: var(--pc-sectop);
  }
  main section.bdr_top {
    margin-top: var(--pc-sectop);
  }
  a[href*="tel:"] {
    cursor: default;
    pointer-events: none;
  }
}
/* content
--------------------------------------------------- */
.contents_wrap {
  position: relative;
}
.contents_wrap:before, .contents_wrap:after {
  z-index: -1;
  position: absolute;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}
.contents_wrap:before {
  top: 0;
  right: 0;
  width: min(60vw, 400px);
  background-image: url(/assets/images/common/main_content_bg01.webp);
  background-position: right 0;
}
.contents_wrap:after {
  top: 700px;
  left: 0;
  width: min(60vw, 400px);
  background-image: url(/assets/images/common/main_content_bg02.webp);
}

.content_inner {
  padding-inline: clamp(1.25rem, 0.9659090909rem + 1.2121212121vw, 1.875rem);
}

.contents_xsml {
  padding-inline: clamp(2.5rem, 1.9318181818rem + 2.4242424242vw, 3.75rem);
}

@media screen and (max-width : 767px) {
  .contents_xsml.sp_wide {
    padding-inline: clamp(1.25rem, 0.9659090909rem + 1.2121212121vw, 1.875rem);
  }
}
@media screen and (min-width : 768px) {
  .contents_wrap:before {
    z-index: -2;
    top: -20px;
    width: min(50vw, 660px);
    background-image: url(/assets/images/common/main_content_bg01_pc.webp);
  }
  .contents_wrap:after {
    top: 460px;
    background-image: url(/assets/images/common/main_content_bg02_pc.webp);
  }
  .content_inner {
    max-width: calc(var(--base-width) + clamp(1.25rem, 0.9659090909rem + 1.2121212121vw, 1.875rem) * 2);
    margin-inline: auto;
  }
  .contents_xsml {
    max-width: calc(var(--sml-width) + clamp(2.5rem, 1.9318181818rem + 2.4242424242vw, 3.75rem) * 2);
    margin-inline: auto;
  }
}
/* リンク無効化
--------------------------------------------------- */
.disabled_link {
  cursor: default;
  pointer-events: none;
}

/* ================================================================================
header
================================================================================ */
.header {
  z-index: 99999;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  -webkit-box-shadow: 0px 5px 5px -1px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 5px 5px -1px rgba(0, 0, 0, 0.05);
}

.header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  height: 78px;
  padding-inline: clamp(0.625rem, 0.0568181818rem + 2.4242424242vw, 1.875rem);
}

.header_logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}
.header_logo .logo_txt {
  color: var(--black);
  font-size: clamp(0.6875rem, 0.6022727273rem + 0.3636363636vw, 0.875rem);
}

.header_logo_img {
  width: 185px;
}

.header_btn_entry {
  z-index: 100;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  background: #fff;
}
.header_btn_entry .btn_txt {
  font-size: clamp(1.0625rem, 1.0625rem + 0vw, 1.0625rem);
}

#fixed_btn {
  z-index: 9999;
  position: fixed;
  right: 0;
  bottom: 0;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, opacity 0.3s ease;
  transition: transform 0.4s ease, opacity 0.3s ease, -webkit-transform 0.4s ease;
}
#fixed_btn.is_hidden {
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

@media screen and (min-width : 768px) {
  .header_logo_img {
    width: min(26vw, 240px);
  }
  .header_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
  }
  .header_btn_entry {
    position: static;
    width: min(30vw, 240px);
    padding: 0;
  }
  .header_btn_entry .btn_txt {
    font-size: clamp(0.9375rem, 0.9090909091rem + 0.1212121212vw, 1rem);
  }
  #fixed_btn {
    position: static;
  }
}
/* グローバルメニューボタン
--------------------------------------------------- */
.header_btn_nav {
  position: relative;
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background: var(--grade-key);
  cursor: pointer;
}
.header_btn_nav .header_btn_icon {
  display: block;
  position: relative;
}
.header_btn_nav .header_btn_icon span {
  position: absolute;
  left: 13px;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  -webkit-transition: var(--hover-trans);
  transition: var(--hover-trans);
}
.header_btn_nav .header_btn_icon span:nth-of-type(1) {
  top: 16px;
}
.header_btn_nav .header_btn_icon span:nth-of-type(2) {
  top: 23px;
}
.header_btn_nav .header_btn_icon span:nth-of-type(3) {
  top: 30px;
}
.header_btn_nav.is_open .header_btn_icon span:nth-of-type(1) {
  -webkit-transform: translateY(7px) rotate(-45deg);
  transform: translateY(7px) rotate(-45deg);
}
.header_btn_nav.is_open .header_btn_icon span:nth-of-type(2) {
  opacity: 0;
}
.header_btn_nav.is_open .header_btn_icon span:nth-of-type(3) {
  -webkit-transform: translateY(-7px) rotate(45deg);
  transform: translateY(-7px) rotate(45deg);
}

@media screen and (min-width : 768px) {
  .header_btn_nav {
    background-image: none;
  }
  .header_btn_nav .header_btn_icon span {
    width: 26px;
    background: var(--black);
  }
}
/* グローバルメニュー
--------------------------------------------------- */
.header_panel_nav {
  display: none;
  z-index: 9999;
  position: relative;
  position: fixed;
  top: 78px;
  left: 0;
  width: 100%;
  height: calc(100vh - 78px);
  height: calc(100dvh - 78px);
  overflow-y: auto;
  background: #fff;
  -webkit-box-shadow: inset 0px 10px 8px -7px rgba(0, 0, 0, 0.06);
  box-shadow: inset 0px 10px 8px -7px rgba(0, 0, 0, 0.06);
}
.header_panel_nav.is_open {
  display: block;
}

.header_panel_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100%;
}

.header_nav_img {
  display: none;
}

.header_nav_wrap {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-height: 100%;
}

.header_nav_entry {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-inline: clamp(1.25rem, 0.3977272727rem + 3.6363636364vw, 3.125rem);
  padding-block: clamp(1.5625rem, 0.8522727273rem + 3.0303030303vw, 3.125rem);
  background: var(--gray-bg);
}
.header_nav_entry .txt_blue {
  margin-bottom: 0.9em;
  font-weight: 600;
  font-size: clamp(0.9375rem, 0.7386363636rem + 0.8484848485vw, 1.375rem);
  letter-spacing: 0;
  text-align: center;
}

.header_nav_links {
  position: relative;
  min-height: 100%;
  padding-block: clamp(10.625rem, 8.9204545455rem + 7.2727272727vw, 14.375rem) 60px;
}
.header_nav_links:before, .header_nav_links:after {
  z-index: -1;
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}
.header_nav_links:before {
  top: 0;
  right: 0;
  width: min(70vw, 270px);
  height: 675px;
  background-image: url(/assets/images/common/header_nav_bg01.svg);
  background-position: right 0;
}
.header_nav_links:after {
  bottom: 0;
  left: 0;
  width: min(90vw, 370px);
  height: 300px;
  background-image: url(/assets/images/common/header_nav_bg02.svg);
}

.header_nav {
  padding-inline: clamp(1.875rem, 0.1136363636rem + 7.5151515152vw, 5.75rem);
}
.header_nav .disabled_link {
  color: #ccc;
}
.header_nav .disabled_link:before, .header_nav .disabled_link:after {
  opacity: 0.5;
}

.header_nav_item {
  padding-block: 10px;
  border-bottom: 1px solid var(--gray-bar);
}
.header_nav_item:before, .header_nav_item:after {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.header_nav_head {
  position: relative;
  padding-block: 10px;
  font-weight: 600;
  font-size: clamp(1.25rem, 1.25rem + 0vw, 1.25rem);
}
.header_nav_head a {
  display: block;
  color: var(--black);
  text-decoration: none;
}
.header_nav_head:after, .header_nav_head:before {
  position: absolute;
  top: 50%;
  width: 22px;
  height: 2px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
}
.header_nav_head:before {
  right: 0;
  background-image: var(--grade-key);
}
.header_nav_head:after {
  right: 0;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  background: #1087c6;
  -webkit-transition: var(--hover-trans);
  transition: var(--hover-trans);
}
.header_nav_head.is_active:after {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.header_nav_head.arrow_icon:after, .header_nav_head.arrow_icon:before {
  display: none;
}
.header_nav_head.arrow_icon a {
  position: relative;
  padding-right: 30px;
}
.header_nav_head.arrow_icon a:before, .header_nav_head.arrow_icon a:after {
  position: absolute;
  right: 0;
  bottom: 5px;
  width: 23px;
  height: 23px;
  content: "";
}
.header_nav_head.arrow_icon a:before {
  border-radius: 50%;
  background-image: var(--grade-key);
}
.header_nav_head.arrow_icon a:after {
  background-image: url(/assets/images/common/arrow_white.svg);
  background-position: 50% 50%;
  background-size: 8.5px auto;
  background-repeat: no-repeat;
}

.header_lower {
  display: none;
}

.header_lower_item {
  padding-block: 5px;
}
.header_lower_item a {
  display: block;
  display: block;
  position: relative;
  padding-left: 25px;
  padding-block: 7px;
  color: var(--black);
  text-decoration: none;
}
.header_lower_item a:before, .header_lower_item a:after {
  position: absolute;
  bottom: 11px;
  left: 0;
  width: 16px;
  height: 16px;
  content: "";
}
.header_lower_item a:before {
  border-radius: 50%;
  background-image: var(--grade-key);
}
.header_lower_item a:after {
  background-image: url(/assets/images/common/arrow_white.svg);
  background-position: 50% 50%;
  background-size: 7px auto;
  background-repeat: no-repeat;
}

.header_external {
  padding: 20px clamp(1.875rem, 0.1136363636rem + 7.5151515152vw, 5.75rem) 0;
}

.header_external_item {
  padding-block: 10px;
}
.header_external_item a {
  color: var(--black);
  text-decoration: none;
}

@media screen and (min-width : 768px) {
  .header_nav_head {
    padding-top: 5px;
  }
  .header_nav_head:before, .header_nav_head:after {
    display: none;
  }
  .header_nav_head.arrow_icon a {
    padding-right: 0;
    padding-left: 25px;
  }
  .header_nav_head.arrow_icon a:before, .header_nav_head.arrow_icon a:after {
    right: auto;
    bottom: 0.4em;
    left: 0;
    width: 16px;
    height: 16px;
  }
  .header_nav_head.arrow_icon a:after {
    background-size: 7px auto;
  }
  .header_lower {
    display: block;
  }
  .header_lower_item {
    padding-block: 1px;
  }
  .header_external {
    padding-top: 30px;
  }
  .header_external_item {
    padding-block: 7px;
  }
}
@media screen and (min-width : 1024px) {
  .header_panel_inner {
    position: relative;
  }
  .header_panel_inner:after {
    position: absolute;
    top: 0;
    left: 0;
    width: min(38%, 550px);
    height: 100%;
    background-image: url(/assets/images/common/global_nav_bg.webp);
    background-position: 50% 0;
    background-size: cover;
    background-repeat: no-repeat;
    content: "";
  }
  .header_nav_wrap {
    position: relative;
    margin-left: min(38%, 550px);
    padding-block: min(4.16vw, 50px) min(4.16vw, 50px);
  }
  .header_nav_wrap:before {
    z-index: -1;
    position: absolute;
    top: 0;
    right: 0;
    width: min(70vw, 300px);
    height: 570px;
    background-image: url(/assets/images/common/header_nav_bg01_pc.svg);
    background-size: cover;
    background-repeat: no-repeat;
    content: "";
  }
  .header_nav_wrap:after {
    z-index: -1;
    position: absolute;
    bottom: 0;
    left: 0;
    width: min(30vw, 220px);
    height: 820px;
    background-image: url(/assets/images/common/header_nav_bg02_pc.svg);
    background-size: auto 100%;
    background-repeat: no-repeat;
    content: "";
  }
  .header_nav_entry {
    position: static;
    width: auto;
    margin-inline: clamp(1.875rem, 0.0284090909rem + 7.8787878788vw, 5.9375rem);
    border-radius: 10px;
  }
  .header_nav_links {
    min-height: initial;
    padding-block: 0 3em;
  }
  .header_nav_links:before, .header_nav_links:after {
    display: none;
  }
  .header_nav_item {
    padding-block: 15px;
  }
  .header_nav_item a {
    -webkit-transition: var(--hover-trans);
    transition: var(--hover-trans);
  }
  .header_nav_item a:hover {
    opacity: var(--hover-opacity);
  }
}
.header_external_item a:hover {
  opacity: var(--hover-opacity);
}

/* ================================================================================
footer
================================================================================ */
.footer {
  margin-top: var(--sp-sectop);
  padding-bottom: 75px;
}

@media screen and (min-width : 768px) {
  .footer {
    margin-top: calc(var(--pc-sectop) + 40px);
    padding-bottom: 0;
  }
}
/* footer_cta / エントリーボタン
--------------------------------------------------- */
.footer_cta {
  margin-inline: clamp(0.625rem, 0.3409090909rem + 1.2121212121vw, 1.25rem);
  padding-block: 50px;
  border-radius: 10px;
  background-image: var(--grade-key);
}
.footer_cta .btn_group {
  margin-top: 1.5em;
}
.footer_cta .btn {
  border-radius: 10px;
}
.footer_cta .btn .btn_bg:before {
  border-radius: 10px;
}
.footer_cta .btn .btn_txt {
  padding-block: 32px;
  font-size: clamp(1.25rem, 1.1931818182rem + 0.2424242424vw, 1.375rem);
}
.footer_cta .btn .btn_txt:before {
  width: 24px;
  height: 24px;
}
.footer_cta .btn .btn_txt:after {
  width: 24px;
  height: 24px;
  background-size: 12px auto;
}

.footer_cta_head {
  color: #fff;
  font-weight: 600;
  text-align: center;
}
.footer_cta_head .txt_jp {
  font-size: clamp(0.9375rem, 0.8522727273rem + 0.3636363636vw, 1.125rem);
}
.footer_cta_head .txt_en {
  margin-block: 0.2em;
  font-size: clamp(2.5rem, 1.4772727273rem + 4.3636363636vw, 4.75rem);
  line-height: 1.2;
  font-family: var(--font-en);
  letter-spacing: 0.08em;
}
.footer_cta_head .head {
  font-size: clamp(1.125rem, 0.8409090909rem + 1.2121212121vw, 1.75rem);
}

@media screen and (min-width : 768px) {
  .footer_cta {
    position: relative;
    padding-block: 90px;
  }
  .footer_cta:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/assets/images/common/footer_entry_bg.svg);
    background-position: 50% 50%;
    background-size: auto 110%;
    background-repeat: no-repeat;
    content: "";
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0.4;
  }
  .footer_cta .btn_group {
    margin-top: 2.5em;
  }
  .footer_cta .btn .btn_txt {
    padding-inline: 30px;
    padding-block: 45px;
  }
  .footer_cta .btn .btn_txt:before {
    width: 34px;
    height: 34px;
  }
  .footer_cta .btn .btn_txt:after {
    width: 34px;
    height: 34px;
    background-size: 18px auto;
  }
  .footer_cta_head .txt_en {
    margin-block: 0.08em;
  }
}
/* footer_content / フッタコンテンツ
--------------------------------------------------- */
.footer_content {
  padding-block: 80px;
  text-align: center;
}

.footer_logo {
  width: 280px;
  margin: 0 auto;
}

.footer_nav {
  margin-top: 20px;
  font-weight: 400;
}
.footer_nav .footer_nav_item {
  display: inline-block;
  font-size: clamp(0.875rem, 0.8181818182rem + 0.2424242424vw, 1rem);
}
.footer_nav .footer_nav_item:after {
  display: inline-block;
  padding-inline: 5px;
  content: "|";
  color: #798589;
}
.footer_nav .footer_nav_item:last-child:after {
  display: none;
}
.footer_nav a {
  color: #798589;
  text-decoration: none;
}

@media screen and (min-width : 768px) {
  .footer_content {
    padding-block: 60px;
  }
  .footer_logo {
    width: 320px;
  }
}
@media screen and (min-width : 1024px) {
  .footer_nav a {
    -webkit-transition: var(--hover-trans);
    transition: var(--hover-trans);
  }
  .footer_nav a:hover {
    text-decoration: underline;
    opacity: var(--hover-opacity);
  }
}
/* footer_copyright / コピーライト
--------------------------------------------------- */
.footer_copyright {
  padding: 50px 20px;
  background-image: url(/assets/images/common/footer_bg.webp);
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.footer_copyright .copyright_txt {
  color: #fff;
  font-size: clamp(0.875rem, 0.8465909091rem + 0.1212121212vw, 0.9375rem);
  letter-spacing: 0.02em;
  text-align: center;
}

@media screen and (min-width : 768px) {
  .footer_copyright {
    padding-block: 60px;
  }
}
/* ================================================================================
element
================================================================================ */
.is_sp {
  display: block;
}

.is_pc {
  display: none;
}

@media screen and (min-width : 768px) {
  .is_sp {
    display: none;
  }
  .is_pc {
    display: inline-block;
  }
}
/* text-align
--------------------------------------------------- */
.txt_al_c {
  text-align: center;
}

.txt_al_l {
  text-align: left;
}

.txt_al_r {
  text-align: right;
}

/* テキスト装飾等
--------------------------------------------------- */
.txt_sml {
  font-size: clamp(0.9375rem, 0.9375rem + 0vw, 0.9375rem);
}

.txt_bold {
  font-weight: 600;
}

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

.txt_blue {
  background-image: var(--grade-key);
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* ================================================================================
パンくず
================================================================================ */
.breadcrumb_lists {
  margin-top: 1.5em;
  color: #fff;
}

.breadcrumb_item {
  display: inline-block;
  font-size: clamp(0.875rem, 0.8181818182rem + 0.2424242424vw, 1rem);
}

.breadcrumb_link {
  color: #fff;
  text-decoration: none;
}
.breadcrumb_link:after {
  display: inline-block;
  width: 8px;
  height: 10px;
  margin-left: 8px;
  padding-right: 8px;
  background-image: url(/assets/images/common/breadcrumb_bg.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

@media screen and (min-width : 768px) {
  .breadcrumb_lists {
    margin-top: 2.5em;
  }
}
/* ================================================================================
カードリスト
================================================================================ */
.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}
.card img {
  vertical-align: top;
}

@media screen and (min-width : 768px) {
  .card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 30px;
  }
  .card.col2 .card_item {
    width: calc((100% - 30px) / 2);
  }
  .card.col3 .card_item {
    width: calc((100% - 60px) / 3);
  }
}
@media screen and (min-width : 1024px) {
  .card {
    gap: 50px;
  }
  .card.col2 .card_item {
    width: calc((100% - 50px) / 2);
  }
  .card.col3 .card_item {
    width: calc((100% - 100px) / 3);
  }
}
/* ================================================================================
画像ボックス
================================================================================ */
.content_mv {
  padding-top: var(--sp-sectop);
}

.img_box {
  margin-top: 1.5em;
}

@media screen and (min-width : 768px) {
  .content_mv {
    padding-top: var(--pc-sectop);
  }
  .img_box {
    margin-top: 2.5em;
  }
}
/* ================================================================================
リスト
================================================================================ */
.list_disc > li {
  position: relative;
  margin-bottom: 1em;
  margin-left: 1em;
  text-indent: -1em;
}
.list_disc > li:before {
  content: "・";
}
.list_disc.mgt {
  margin-top: 2em;
}

/* ================================================================================
テーブル
================================================================================ */
/* .tbl_def */
.tbl_def {
  border-top: 1px solid var(--gray-bar);
}
.tbl_def .tbl_item {
  padding-block: 20px;
  border-bottom: 1px solid var(--gray-bar);
}
.tbl_def .tbl_head {
  margin-bottom: 0.2em;
  font-weight: 600;
}

@media screen and (min-width : 768px) {
  .tbl_def .tbl_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-block: 25px;
    gap: 20px;
  }
  .tbl_def .tbl_head {
    width: min(22%, 200px);
    margin-bottom: 0;
  }
  .tbl_def .tbl_body {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
/* tbl_line */
.tbl_line {
  border-top: 1px solid var(--gray-bar);
}
.tbl_line .tbl_item {
  padding-block: 20px;
  border-bottom: 1px solid var(--gray-bar);
}
.tbl_line .tbl_head {
  margin-bottom: 0.5em;
  font-weight: 600;
}
.tbl_line .tbl_item_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid var(--gray-bar);
}
.tbl_line .tbl_item_wrap .tbl_item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 20px 10px;
  border-bottom: none;
}
.tbl_line .tbl_id {
  display: table;
  width: 40px;
  background: var(--pale);
  text-align: center;
}
.tbl_line .num {
  display: table-cell;
  vertical-align: middle;
}

@media screen and (max-width : 767px) {
  .tbl_item_wrap.tbl_header {
    display: none;
  }
}
@media screen and (min-width : 768px) {
  .tbl_line .tbl_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-block: 0;
  }
  .tbl_line .tbl_head {
    display: table;
    width: min(22%, 240px);
    margin-bottom: 0;
    padding: 25px 10px;
    border-right: 1px solid var(--gray-bar);
    font-weight: 500;
  }
  .tbl_line .tbl_body {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 20px 10px;
  }
  .tbl_line .tbl_item_wrap.tbl_header {
    background: var(--pale);
    font-weight: 600;
  }
  .tbl_line .tbl_item_wrap .tbl_item {
    padding: 0;
  }
  .tbl_line .tbl_item_wrap .tbl_head {
    display: table;
    width: min(27vw, 50%);
    border-right: 1px solid var(--gray-bar);
    font-weight: 500;
  }
  .tbl_line .tbl_id {
    width: 60px;
    border-right: 1px solid var(--gray-bar);
    background: none;
  }
  .tbl_line .title {
    display: table-cell;
    vertical-align: middle;
  }
}
/* ================================================================================
ボックス装飾
================================================================================ */
.suppl_area {
  position: relative;
  max-width: var(--base-width);
  margin-top: clamp(3.75rem, 2.0454545455rem + 7.2727272727vw, 7.5rem);
  margin-inline: auto;
  padding-top: 40px;
  padding-bottom: 60px;
  padding-inline: clamp(1.25rem, 0.9659090909rem + 1.2121212121vw, 1.875rem);
  border-radius: 20px;
  background: var(--gray-bg);
}

.suppl_head_en {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  -webkit-transform: translateX(-50%) translateY(-75%);
  transform: translateX(-50%) translateY(-75%);
  color: var(--black);
  font-weight: 600;
  font-size: clamp(2.5rem, 1.3636363636rem + 4.8484848485vw, 5rem);
  line-height: 1;
  font-family: var(--font-en);
  text-align: center;
  opacity: 0.1;
}

@media screen and (min-width : 768px) {
  .suppl_area {
    margin-top: clamp(2.5rem, 2.5rem + 0vw, 2.5rem);
    padding-top: 80px;
  }
  .suppl_content {
    max-width: var(--sml-width);
    margin-inline: auto;
  }
  .suppl_head_en {
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
  }
}
/* ================================================================================
interview_slider インタビュー一覧
================================================================================ */
.interview_slider {
  position: relative;
  padding-bottom: 50px;
  padding-left: clamp(1.25rem, 0.9659090909rem + 1.2121212121vw, 1.875rem);
}
.interview_slider:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: var(--grade-key);
  content: "";
}

.interview_slider_lists a {
  display: block;
  color: var(--black);
  text-decoration: none;
}

.interview_slider_item:nth-child(even) {
  margin-top: 30px;
}

.interview_slider_img {
  position: relative;
}
.interview_slider_img .img_people {
  vertical-align: top;
}

.interview_slider_body {
  z-index: 2;
  position: relative;
  margin-top: -1.25em;
  padding-inline: 15px;
  font-weight: 600;
}

.interview_slider_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: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-right: 1em;
  margin-bottom: 1em;
  gap: 5px;
}
.interview_slider_title span {
  display: inline-block;
  margin-right: -1em;
  padding: 3px 5px;
  background: #fff;
  font-size: clamp(1.0625rem, 1.0625rem + 0vw, 1.0625rem);
  letter-spacing: 0;
}

.interview_slider_dept,
.interview_slider_year {
  color: #fff;
  font-size: clamp(0.9375rem, 0.9090909091rem + 0.1212121212vw, 1rem);
}

@media screen and (min-width : 1024px) {
  .interview_slider {
    padding-left: clamp(1.25rem, -2.0833333333rem + 6.9444444444vw, 3.125rem);
  }
  .interview_slider:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: var(--grade-key);
    content: "";
  }
}
@media screen and (min-width : 1200px) {
  .interview_slider_lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: calc(var(--base-width) + 40px);
    margin-inline: auto;
    padding-inline: 20px;
    gap: 50px;
  }
  .interview_slider_item:nth-child(even) {
    margin-top: 0;
  }
  .interview_slider_item:nth-child(odd) {
    margin-top: 30px;
  }
  .interview_slider_body {
    padding-inline: 13px;
  }
  .interview_slider_img {
    position: relative;
    overflow: hidden;
  }
  .interview_slider_img:after {
    z-index: 1;
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background-color: #fff;
    content: "";
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .interview_slider_item:hover .interview_slider_img:after {
    opacity: 0.3;
  }
}
/*swiper 上書き*/
.interview_slider .swiper {
  overflow: visible;
}
.interview_slider .swiper-slide {
  width: min(75vw, 320px);
}
.interview_slider .swiper-button-prev,
.interview_slider .swiper-button-next {
  top: 30%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-image: url(/assets/images/common/arrow_blue.svg);
  background-position: 50% 50%;
  background-size: 13px auto;
  background-repeat: no-repeat;
  background-color: #fff;
}
.interview_slider .swiper-button-prev:after,
.interview_slider .swiper-button-next:after {
  display: none;
}
.interview_slider .swiper-button-prev {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

@media screen and (min-width : 1024px) {
  .interview_slider .swiper {
    overflow: visible;
  }
  .interview_slider .swiper-slide {
    width: min(75vw, 320px);
  }
}
@media screen and (min-width : 1200px) {
  .interview_slider {
    padding-left: 0;
  }
  .interview_slider .swiper-slide {
    width: calc((100% - 150px) / 4);
  }
  .interview_slider .swiper-wrapper {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .interview_slider .swiper-button-prev,
  .interview_slider .swiper-button-next {
    display: none;
  }
}
/* ================================================================================
ページタイトル
================================================================================ */
.page_head_wrap {
  position: relative;
  padding-block: 30px 45px;
}
.page_head_wrap:before {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--grade-key);
  content: "";
}

.page_head_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #fff;
}

.page_head_en {
  z-index: -1;
  position: relative;
  margin-right: calc(50% - 50vw);
  font-size: clamp(3.125rem, 1.4204545455rem + 7.2727272727vw, 6.875rem);
  line-height: 1;
  font-family: var(--font-en);
  letter-spacing: 0.05em;
  text-align: right;
  opacity: 0.2;
}

.page_head_sub {
  margin-top: -1em;
  font-size: clamp(1.0625rem, 1.0625rem + 0vw, 1.0625rem);
  letter-spacing: 0;
}

.page_head_jp {
  margin-top: -0.5em;
  font-size: clamp(1.875rem, 1.5340909091rem + 1.4545454545vw, 2.625rem);
  line-height: 1.35;
}

.page_head_desc {
  margin-top: 0.5em;
  font-size: clamp(0.9375rem, 0.9090909091rem + 0.1212121212vw, 1rem);
  line-height: 2;
}

@media screen and (max-width : 767px) {
  .page_head_sub + .page_head_jp {
    margin-top: 0;
  }
}
@media screen and (min-width : 768px) {
  .page_head_wrap {
    padding-top: 60px;
  }
  .page_head_body {
    min-height: 170px;
  }
  .page_head_en {
    z-index: -1;
    margin-right: auto;
    font-size: clamp(3.75rem, -1.8055555556rem + 11.5740740741vw, 6.875rem);
    text-align: left;
  }
  .page_head_jp {
    margin-top: 0.2em;
    font-size: clamp(1.875rem, 0.5416666667rem + 2.7777777778vw, 2.625rem);
  }
}
@media screen and (min-width : 1024px) {
  .page_head_wrap {
    padding-block: 60px 80px;
  }
  .page_head_body {
    min-height: 200px;
  }
  .page_head_sub {
    margin-top: -1.5em;
  }
}
@media screen and (min-width : 1200px) {
  .page_head_wrap {
    padding-block: 110px 80px;
  }
  .page_head_body {
    min-height: 270px;
  }
  .page_head_body:after {
    position: absolute;
    right: calc(50% - 50vw);
    bottom: -680px;
    height: 645px;
    content: "";
  }
}
/* 画像あり */
.page_head_wrap.media .page_head_img {
  margin-bottom: 0.5em;
}
.page_head_wrap.media .page_head_img.outside_right {
  margin-right: calc(50% - 50vw);
}
.page_head_wrap.media .page_head_img.outside_left {
  margin-left: calc(50% - 50vw);
}

@media screen and (min-width : 768px) {
  .page_head_wrap.media {
    padding-bottom: 0;
  }
  .page_head_wrap.media::before {
    height: var(--head-height, 0px);
  }
  .page_head_wrap.media .page_head_media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 30px;
  }
  .page_head_wrap.media .page_head_img {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-top: clamp(0.1875rem, -0.1534090909rem + 1.4545454545vw, 0.9375rem);
    margin-bottom: 0;
  }
  .page_head_wrap.media .page_head_img img {
    display: block;
  }
  .page_head_wrap.media .page_head_body {
    width: 45%;
    margin-bottom: 30px;
  }
  .page_head_wrap.media .page_head_en {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  .page_head_wrap.media .page_head_jp .is_pc {
    display: none;
  }
}
@media screen and (min-width : 1024px) {
  .page_head_wrap.media .page_head_media {
    gap: 50px;
  }
  .page_head_wrap.media .page_head_body {
    width: 50%;
    margin-bottom: 50px;
  }
}
@media screen and (min-width : 1200px) {
  .page_head_wrap.media .page_head_body {
    margin-bottom: 80px;
  }
  .page_head_wrap.media .page_head_jp .is_pc {
    display: block;
  }
}
/* ================================================================================
見出し
================================================================================ */
.content_head {
  font-weight: 600;
}
.content_head .icon_line {
  position: relative;
  padding-left: 25px;
}
.content_head .icon_line:after {
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 14px;
  height: 3px;
  background: var(--grade-key);
  content: "";
}
.content_head .content_head02 {
  margin-bottom: 0.8em;
  font-size: clamp(1.75rem, 1.5795454545rem + 0.7272727273vw, 2.125rem);
}
.content_head .content_head03 {
  margin-bottom: 0.8em;
  font-size: clamp(1.625rem, 1.5113636364rem + 0.4848484848vw, 1.875rem);
}
.content_head .content_head04 {
  margin-bottom: 0.8em;
  font-size: clamp(1.5rem, 1.5rem + 0vw, 1.5rem);
}
.content_head .content_head05 {
  margin-bottom: 0.8em;
  font-size: clamp(1.375rem, 1.375rem + 0vw, 1.375rem);
}
.content_head .content_head06 {
  margin-bottom: 0.8em;
  font-size: clamp(1.25rem, 1.25rem + 0vw, 1.25rem);
}

.circle_num {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  border-radius: 50%;
  background: var(--grade-key);
  color: #fff;
  font-weight: 500;
  font-size: clamp(0.9375rem, 0.9375rem + 0vw, 0.9375rem);
  line-height: 24px;
  text-align: center;
}

/* ================================================================================
button
================================================================================ */
.btn_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

@media screen and (min-width : 768px) {
  .btn_group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 30px;
  }
  .btn_group a {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (min-width : 1024px) {
  .btn_group {
    gap: 50px;
  }
  .btn_group a {
    width: calc((100% - 50px) / 2);
  }
}
.btn {
  display: block;
  position: relative;
  padding: 1px;
  overflow: hidden;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}
.btn:after {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}
.btn .btn_bg {
  display: block;
  z-index: 2;
  position: relative;
}
.btn .btn_bg:before {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  content: "";
  opacity: 0;
  -webkit-transition: 0.6s all;
  transition: 0.6s all;
}
.btn .btn_txt {
  display: block;
  z-index: 3;
  position: relative;
  padding: 18px 50px 18px 20px;
  line-height: 1;
  -webkit-transition: 0.6s all;
  transition: 0.6s all;
}
.btn .btn_txt:before, .btn .btn_txt:after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
}
.btn .btn_txt:before {
  border-radius: 50%;
}
.btn .btn_txt:after {
  background-position: 50% 50%;
  background-size: 8.4px auto;
  background-repeat: no-repeat;
}

/* 青色ボタン
--------------------------------------------------- */
.btn_blue:after {
  background-image: var(--grade-key);
}
.btn_blue .btn_bg {
  color: #fff;
}
.btn_blue .btn_bg:before {
  background-color: #fff;
}
.btn_blue .btn_txt:before {
  background-color: #fff;
}
.btn_blue .btn_txt:after {
  background-image: url(/assets/images/common/arrow_blue.svg);
}

/* 白ボタン
--------------------------------------------------- */
.btn_white:after {
  background-color: #fff;
}
.btn_white .btn_bg {
  color: var(--black);
}
.btn_white .btn_bg:before {
  background-image: var(--grade-key);
}
.btn_white .btn_txt:before {
  background-image: var(--grade-key);
}
.btn_white .btn_txt:after {
  background-image: url(/assets/images/common/arrow_white.svg);
}

/* moreボタン
--------------------------------------------------- */
.btn_more:after {
  background: #E0EFED;
}
.btn_more .btn_bg {
  color: var(--black);
}
.btn_more .btn_bg:before {
  background-image: var(--grade-key);
}
.btn_more .btn_txt {
  padding-inline: 30px 60px;
}
.btn_more .btn_txt:before {
  background-image: var(--grade-key);
}
.btn_more .btn_txt:after {
  background-image: url(/assets/images/common/arrow_white.svg);
}

/* bover設定
--------------------------------------------------- */
@media screen and (min-width : 1024px) {
  .btn:hover .btn_bg {
    color: var(--black);
  }
  .btn:hover .btn_bg:before {
    opacity: 1;
  }
  .btn_blue:hover .btn_txt:before {
    background-image: var(--grade-key);
    background-color: transparent;
  }
  .btn_blue:hover .btn_txt:after {
    background-image: url(/assets/images/common/arrow_white.svg);
  }
  .btn_white:hover .btn_bg, .btn_more:hover .btn_bg {
    color: #fff;
  }
  .btn_white:hover .btn_txt:before, .btn_more:hover .btn_txt:before {
    background-image: none;
    background-color: #fff;
  }
  .btn_white:hover .btn_txt:after, .btn_more:hover .btn_txt:after {
    background-image: url(/assets/images/common/arrow_blue.svg);
  }
}
/* ボタンサイズ
--------------------------------------------------- */
.btn_block {
  width: min(100%, 600px);
  margin: 0 auto;
}
.btn_block .btn_txt {
  padding-block: 23px;
  font-size: clamp(1.125rem, 1.0113636364rem + 0.4848484848vw, 1.375rem);
}
.btn_block .btn_txt:before {
  width: 26px;
  height: 26px;
}
.btn_block .btn_txt:after {
  width: 26px;
  height: 26px;
  background-size: 11px auto;
}

.btn_sml {
  width: 220px;
}

/* ================================================================================
link
================================================================================ */
/* 矢印リンク
--------------------------------------------------- */
.link_arrow {
  position: relative;
  padding-right: 27px;
}
.link_arrow:before, .link_arrow:after {
  position: absolute;
  right: 0;
  bottom: 3px;
  width: 16px;
  height: 16px;
  content: "";
}
.link_arrow:before {
  border-radius: 50%;
  background-image: var(--grade-key);
}
.link_arrow:after {
  background-image: url(/assets/images/common/arrow_white.svg);
  background-position: 50% 50%;
  background-size: 7px auto;
  background-repeat: no-repeat;
}
.link_arrow.arrow_lrg {
  padding-right: 30px;
}
.link_arrow.arrow_lrg:before, .link_arrow.arrow_lrg:after {
  bottom: 5px;
  width: 23px;
  height: 23px;
}
.link_arrow.arrow_lrg:after {
  background-size: 8.5px auto;
}

@media screen and (min-width : 1200px) {
  .link_arrow:hover {
    opacity: var(--hover-opacity);
  }
}
/* 別ウィンドウ
--------------------------------------------------- */
.link_blank {
  position: relative;
  padding-right: 27px;
  color: var(--black);
}
.link_blank:before {
  position: absolute;
  right: 0;
  bottom: 0.1em;
  width: 20px;
  height: 15px;
  background-image: url(/assets/images/common/icon_blank.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

@media screen and (min-width : 1024px) {
  .link_blank:hover {
    opacity: var(--hover-opacity);
  }
}
/* テキスト内リンク
--------------------------------------------------- */
.link_txt {
  color: #0064C2;
}

@media screen and (min-width : 1024px) {
  .link_txt:hover {
    opacity: var(--hover-opacity);
  }
}
/* アニメーション
--------------------------------------------------- */
.fade_up {
  -webkit-transform: translateY(80px);
  transform: translateY(80px);
  opacity: 0;
  -webkit-transition: opacity 1.5s ease-out, -webkit-transform 1.5s ease-out;
  transition: opacity 1.5s ease-out, -webkit-transform 1.5s ease-out;
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
  transition: opacity 1.5s ease-out, transform 1.5s ease-out, -webkit-transform 1.5s ease-out;
}

.fade_up.animated {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.slide_right {
  -webkit-transform: translateX(50px);
  transform: translateX(50px);
  opacity: 0;
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}

.slide_right.animated {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

.slide_left {
  -webkit-transform: translateX(-50px);
  transform: translateX(-50px);
  opacity: 0;
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}

.slide_left.animated {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

.slide_left_card {
  -webkit-transform: translateX(-50px);
  transform: translateX(-50px);
  opacity: 0;
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}

.slide_left_card.animated {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

.fede_up_card {
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
}

.fede_up_card.animated {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

/* ================================================================================
各ページ
================================================================================ */
/* ================================================================================
トップページ
================================================================================ */
/* top_mainimg
--------------------------------------------------- */
.top_mainimg {
  position: relative;
  padding-block: 50px 40px;
  background-image: url(/assets/images/top/main_img_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

.top_mainimg_copy {
  max-width: calc(var(--base-width) + clamp(1.25rem, 0.9659090909rem + 1.2121212121vw, 1.875rem) * 2);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 0.9659090909rem + 1.2121212121vw, 1.875rem);
  color: #fff;
}

.top_mainimg_head {
  font-weight: 700;
  font-size: clamp(2.125rem, 1.8125rem + 1.3333333333vw, 2.8125rem);
  line-height: 1.65;
  letter-spacing: 0.01em;
}
.top_mainimg_head span {
  font-size: clamp(3rem, 2.5170454545rem + 2.0606060606vw, 4.0625rem);
}

.top_mainimg_txt {
  margin-top: 0.5em;
  font-weight: 600;
  font-size: clamp(1.375rem, 1.2045454545rem + 0.7272727273vw, 1.75rem);
}

.top_mainimg_slider {
  z-index: 10;
  position: relative;
  padding-top: 40px;
  overflow: hidden;
}
.top_mainimg_slider .swiper-wrapper {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}
.top_mainimg_slider .swiper-slide {
  width: 175px;
}
.top_mainimg_slider .swiper-slide:nth-child(even) {
  margin-top: 40px;
}
.top_mainimg_slider .swiper {
  opacity: 0;
}
.top_mainimg_slider .swiper.swiper-initialized {
  opacity: 1;
}

@media screen and (min-width : 768px) {
  .top_mainimg {
    padding-block: 70px 50px;
  }
  .top_mainimg_head {
    line-height: 1.3;
  }
  .top_mainimg_txt {
    margin-top: 1em;
  }
}
@media screen and (min-width : 1024px) {
  .top_mainimg_slider .swiper-slide {
    width: 220px;
  }
}
@media screen and (min-width : 1200px) {
  .top_mainimg {
    padding-block: 110px 60px;
  }
}
/* 初期状態 */
.top_mainimg_head, .top_mainimg_txt, .top_mainimg_slider {
  -webkit-transform: translateX(-100px);
  transform: translateX(-100px);
  opacity: 0;
}

/* アニメーション後 */
.top_mainimg_head.animated, .top_mainimg_txt.animated, .top_mainimg_slider.animated {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.top_mainimg_slider {
  -webkit-transform: none;
  transform: none;
  -webkit-transition: opacity 1.5s ease;
  transition: opacity 1.5s ease;
}

/* top_guidenav
--------------------------------------------------- */
.top_guidenav {
  padding-block: 30px;
  background: var(--black);
}
.top_guidenav a {
  display: block;
}
.top_guidenav .disabled_link {
  position: relative;
}
.top_guidenav .disabled_link::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #232C38;
  content: "";
  opacity: 0.8;
}
.top_guidenav .disabled_link:after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  content: "COMMING SOON";
  color: #fff;
  font-weight: 600;
  font-size: clamp(1.125rem, 0.7840909091rem + 1.4545454545vw, 1.875rem);
  font-family: var(--font-en);
}

.latest_news_area {
  margin-top: 15px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}
.latest_news_area .link_arrow:before, .latest_news_area .link_arrow:after {
  bottom: 1px;
}

.latest_news_head {
  position: relative;
  padding-left: 10px;
  color: #fff;
  font-weight: 600;
  font-size: clamp(1rem, 0.9431818182rem + 0.2424242424vw, 1.125rem);
}
.latest_news_head:before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 18px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: var(--grade-key02);
  content: "";
}

.latest_news {
  font-size: clamp(0.9375rem, 0.9375rem + 0vw, 0.9375rem);
}
.latest_news a {
  color: #fff;
  text-decoration: none;
}
.latest_news .date {
  padding-right: 1em;
}

@media screen and (min-width : 768px) {
  .top_guidenav {
    padding-block: 60px;
  }
  .top_guidenav .disabled_link:after {
    font-size: clamp(1.125rem, 0.0138888889rem + 2.3148148148vw, 1.75rem);
  }
  .latest_news_area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 40px;
    padding: 30px;
    gap: 40px;
  }
  .latest_news_area:before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 5px;
    height: 38px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: var(--grade-key02);
    content: "";
  }
  .latest_news_head:before {
    right: -20px;
    left: auto;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    content: "";
  }
}
@media screen and (min-width : 1024px) {
  .top_guidenav {
    padding-block: 60px;
  }
  .top_guidenav a:hover {
    opacity: var(--hover-opacity);
  }
}
/* top_catch
--------------------------------------------------- */
.top_catch {
  margin-bottom: 30px;
  overflow: hidden;
}
.top_catch img {
  width: auto;
  height: 42px;
}

@media screen and (min-width : 768px) {
  .top_catch {
    max-width: 1600px;
    margin-inline: auto;
    text-align: center;
  }
  .top_catch img {
    width: 100%;
    height: auto;
  }
}
/* top_section_head
--------------------------------------------------- */
.top_section_head {
  margin-bottom: 25px;
  font-weight: 600;
}
.top_section_head .lead {
  font-size: clamp(1.125rem, 1.125rem + 0vw, 1.125rem);
}
.top_section_head .head {
  font-size: clamp(2.125rem, 1.8977272727rem + 0.9696969697vw, 2.625rem);
}

@media screen and (min-width : 768px) {
  .top_section_head {
    margin-bottom: 50px;
  }
}
/* top_about
--------------------------------------------------- */
.top_about {
  padding-block: 0 var(--sp-sectop);
  overflow: hidden;
  background: url(/assets/images/top/about_bg_sp.svg), var(--grade-key);
  background-position: right bottom, 0 0;
  background-size: 100% auto, 100% 100%;
  background-repeat: no-repeat;
}
.top_about .top_section_head {
  color: #fff;
}
.top_about a {
  display: block;
  color: var(--black);
  text-decoration: none;
}

.top_about_body {
  padding: 20px;
  border-radius: 0 0 10px 10px;
  background-color: #fff;
  font-weight: 600;
}
.top_about_body .link_arrow {
  display: block;
}

@media screen and (min-width : 768px) {
  .top_about {
    padding-bottom: var(--pc-topsec);
    background: url(/assets/images/top/about_bg_pc.svg), var(--grade-key);
    background-position: right bottom, 0 0;
    background-size: auto 96%, 100% 100%;
    background-repeat: no-repeat;
  }
}
@media screen and (min-width : 1024px) {
  .top_about a {
    position: relative;
    -webkit-transition: var(--hover-trans);
    transition: var(--hover-trans);
  }
  .top_about a:after {
    z-index: 1;
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background-color: #fff;
    content: "";
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .top_about a:hover:after {
    opacity: 0.3;
  }
}
/* top_interview
--------------------------------------------------- */
.top_interview {
  position: relative;
}
.top_interview:before {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 50%;
  background-image: url(/assets/images/top/member_bg_left_sp.webp);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}
.top_interview .interview_slider {
  margin-inline: calc(50% - 50vw);
}

@media screen and (min-width : 768px) {
  .top_interview {
    padding-top: 120px;
  }
  .top_interview:before {
    width: 70%;
    height: 80%;
    background-image: url(/assets/images/top/member_bg_left_pc.webp);
  }
  .top_interview:after {
    z-index: -1;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 25%;
    height: 95%;
    background-image: url(/assets/images/top/member_bg_right_pc.webp);
    background-position: right bottom;
    background-size: contain;
    background-repeat: no-repeat;
    content: "";
  }
  .top_interview .top_catch {
    position: absolute;
    top: 120px;
    left: 50%;
    width: 100%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
/* top_crosstalk
--------------------------------------------------- */
.top_crosstalk {
  position: relative;
  padding-block: 40px var(--sp-sectop);
}
.top_crosstalk:before {
  z-index: -1;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 25%;
  height: 80%;
  background-image: url(/assets/images/top/crosstalk_bg_sp.webp);
  background-position: right bottom;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}
.top_crosstalk .btn_box {
  margin-top: 30px;
}
.top_crosstalk .btn_more {
  text-align: left;
}

.top_crosstalk_block .crosstalk_head {
  margin-bottom: 30px;
  font-weight: 600;
  font-size: clamp(1.625rem, 1.5113636364rem + 0.4848484848vw, 1.875rem);
  line-height: 1.5;
}
.top_crosstalk_block .crosstalk_lead {
  margin-bottom: 30px;
  line-height: 2;
}
.top_crosstalk_block .crosstalk_img {
  margin-top: 30px;
}

@media screen and (min-width : 768px) {
  .top_crosstalk {
    padding-block: var(--pc-topsec);
  }
  .top_crosstalk:before {
    top: 0;
    bottom: auto;
    width: 50%;
    background-image: url(/assets/images/top/crosstalk_bg_pc.webp);
    background-position: right top;
  }
  .btn_more {
    display: inline-block;
  }
}
@media screen and (min-width : 1024px) {
  .top_crosstalk_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 60px;
  }
  .top_crosstalk_block .crosstalk_body {
    width: 33%;
  }
  .top_crosstalk_block .crosstalk_img {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
/* top_training
--------------------------------------------------- */
.top_training {
  padding-bottom: var(--sp-sectop);
  background-image: url(/assets/images/top/training_bg_sp.webp);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-color: var(--black);
}
.top_training .top_section_head {
  color: #fff;
}

.top_training_lists .card_item {
  border-radius: 10px;
  background-color: #fff;
}
.top_training_lists a {
  display: block;
  padding: 30px;
  color: var(--black);
  text-decoration: none;
}

.top_training_head {
  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;
  margin-bottom: 0.8em;
  gap: 5px;
  text-align: center;
}
.top_training_head .head_en {
  font-weight: 600;
  font-size: clamp(1rem, 1rem + 0vw, 1rem);
  font-family: var(--font-en);
}
.top_training_head .head_jp {
  display: inline-block;
  font-size: clamp(1.5rem, 1.5rem + 0vw, 1.5rem);
}
.top_training_head .link_arrow {
  padding-right: 44px;
}
.top_training_head .link_arrow:before, .top_training_head .link_arrow:after {
  bottom: 6px;
  width: 24px;
  height: 24px;
}
.top_training_head .link_arrow:after {
  background-size: 12px auto;
}

@media screen and (min-width : 768px) {
  .top_training {
    position: relative;
    padding-block: var(--pc-topsec);
    background-image: url(/assets/images/top/training_bg_pc.webp);
  }
  .top_training .top_catch {
    position: absolute;
    top: 120px;
    left: 50%;
    width: 100%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .top_training_lists a {
    padding: 20px;
  }
  .top_training_head .head_jp {
    font-size: clamp(1.125rem, 1.125rem + 0vw, 1.125rem);
  }
  .top_training_head .link_arrow:before, .top_training_head .link_arrow:after {
    bottom: 1px;
  }
}
@media screen and (min-width : 1024px) {
  .top_training_lists a {
    padding: 30px;
    -webkit-transition: var(--hover-trans);
    transition: var(--hover-trans);
  }
  .top_training_lists a:hover {
    opacity: var(--hover-opacity);
  }
  .top_training_head .head_jp {
    font-size: clamp(1.375rem, 0.6477272727rem + 1.1363636364vw, 1.5rem);
  }
  .top_training_head .link_arrow:before, .top_training_head .link_arrow:after {
    bottom: 6px;
  }
}
/* top_career
--------------------------------------------------- */
.top_career {
  padding-block: 0 var(--sp-sectop);
  background: var(--gray-bg);
}
.top_career .top_section_head {
  text-align: center;
}

.top_career_lists .card_item {
  border-radius: 20px;
  background: #fff;
}
.top_career_lists a {
  display: block;
  padding: 30px 20px 20px;
  text-decoration: none;
}
.top_career_lists .btn {
  font-size: clamp(1.125rem, 1.125rem + 0vw, 1.125rem);
}
.top_career_lists .career_icon {
  width: 125px;
  margin: 0 auto 20px;
}

@media screen and (min-width : 768px) {
  .top_career {
    padding-bottom: var(--pc-topsec);
  }
  .top_career_lists a {
    padding-top: 40px;
  }
  .top_career_lists .btn {
    font-size: clamp(1rem, 1rem + 0vw, 1rem);
  }
}
@media screen and (min-width : 1024px) {
  .top_career_lists a {
    -webkit-transition: var(--hover-trans);
    transition: var(--hover-trans);
  }
  .top_career_lists a:hover .btn_bg {
    color: var(--black);
  }
  .top_career_lists a:hover .btn_bg:before {
    opacity: 1;
  }
  .top_career_lists a:hover .btn_txt:before {
    background-image: var(--grade-key);
    background-color: transparent;
  }
  .top_career_lists a:hover .btn_txt:after {
    background-image: url(/assets/images/common/arrow_white.svg);
  }
  .top_career_lists .btn .btn_txt {
    padding-block: 23px;
  }
  .top_career_lists .career_icon {
    width: 140px;
  }
}
@media screen and (min-width : 1200px) {
  .top_career_lists .btn {
    font-size: clamp(1.125rem, 1.125rem + 0vw, 1.125rem);
  }
}
/* top_news
--------------------------------------------------- */
.top_news_lists {
  border-top: 1px solid var(--gray-bar);
}

.top_news_item {
  padding-block: 20px;
  border-bottom: 1px solid var(--gray-bar);
}
.top_news_item a {
  color: var(--black);
  text-decoration: none;
}
.top_news_item .date {
  margin-bottom: 0.3em;
}

@media screen and (min-width : 768px) {
  .top_news {
    padding-top: var(--pc-topsec);
  }
  .top_news_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-block: 30px;
    gap: 10px;
  }
  .top_news_item .date {
    width: 140px;
  }
  .top_news_item .news_txt {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
@media screen and (min-width : 1024px) {
  .top_news_item a {
    -webkit-transition: var(--hover-trans);
    transition: var(--hover-trans);
  }
  .top_news_item a:hover {
    text-decoration: underline;
  }
}
/* ================================================================================
社長メッセージ
================================================================================ */
.message_area .contents_xsml {
  padding-inline: clamp(1.25rem, 0.9659090909rem + 1.2121212121vw, 1.875rem);
}
.message_area .img_box {
  margin-bottom: 20px;
}
.message_area p {
  margin-bottom: 1em;
  line-height: 2;
}
.message_area .date {
  margin-top: 30px;
  margin-bottom: 0;
}

@media screen and (min-width : 768px) {
  .message_area .contents_xsml {
    padding-inline: clamp(2.5rem, 1.9318181818rem + 2.4242424242vw, 3.75rem);
  }
  .message_area .date {
    margin-top: 60px;
  }
}
/* ================================================================================
社員を知る - スペシャルコンテンツ
================================================================================ */
.special_content_wrap {
  padding-top: var(--sp-sectop);
}

.special_links {
  gap: 50px;
}
.special_links a {
  display: block;
  color: var(--black);
  text-decoration: none;
}

.special_img {
  margin-bottom: 1em;
}

.special_body .head {
  display: inline-block;
  margin-bottom: 0.5em;
  font-weight: 600;
  font-size: clamp(1.625rem, 1.5681818182rem + 0.2424242424vw, 1.75rem);
  line-height: 1.5;
}
.special_body .lead {
  font-size: 16, 18;
}

@media screen and (min-width : 768px) {
  .special_content_wrap {
    padding-top: var(--pc-sectop);
  }
  .special_links a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
  }
  .special_body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .special_body .lead {
    margin-top: auto;
  }
}
@media screen and (min-width : 1024px) {
  .special_links a {
    -webkit-transition: var(--hover-trans);
    transition: var(--hover-trans);
  }
  .special_links a:hover {
    opacity: var(--hover-opacity);
  }
}
/* ================================================================================
社員を知る - インタビュー一覧
================================================================================ */
.interview_lists_area .content_head02 {
  margin-bottom: 0.2em;
}
.interview_lists_area .content_subhead {
  margin-bottom: 1.5em;
  font-size: clamp(1.125rem, 1.0681818182rem + 0.2424242424vw, 1.25rem);
}
.interview_lists_area .content_lead {
  font-weight: 500;
}

@media screen and (min-width : 768px) {
  .interview_lists_area .content_head02 {
    margin-bottom: 0;
  }
  .interview_lists_area .content_subhead {
    margin-bottom: 1em;
  }
}
.interview_lists {
  margin-top: 40px;
  border-top: 1px solid var(--gray-bar);
}
.interview_lists a {
  color: var(--black);
  text-decoration: none;
}
.interview_lists .interview_item {
  padding-block: 20px 25px;
  border-bottom: 1px solid var(--gray-bar);
  font-weight: 600;
}
.interview_lists .interview_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.6em;
}
.interview_lists .interview_img {
  width: 100px;
  height: 100px;
}
.interview_lists .interview_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}
.interview_lists .interview_body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-right: 0;
  padding-bottom: 25px;
  padding-left: 10px;
  font-size: clamp(1rem, 0.9431818182rem + 0.2424242424vw, 1.125rem);
}
.interview_lists .interview_body.link_arrow:before, .interview_lists .interview_body.link_arrow:after {
  width: 22px;
  height: 22px;
}
.interview_lists .interview_body.link_arrow:after {
  background-size: 10px auto;
}
.interview_lists .interview_dept {
  font-size: clamp(1.3125rem, 1.1704545455rem + 0.6060606061vw, 1.625rem);
}
.interview_lists .interview_year {
  margin-top: 0.7em;
  font-weight: 500;
  font-size: clamp(0.9375rem, 0.9090909091rem + 0.1212121212vw, 1rem);
}
.interview_lists .interview_copy {
  font-size: clamp(1rem, 0.8863636364rem + 0.4848484848vw, 1.25rem);
}

@media screen and (min-width : 768px) {
  .interview_lists {
    margin-top: 60px;
  }
  .interview_lists .interview_info {
    margin-top: 0.8em;
  }
  .interview_lists .interview_img {
    width: 200px;
    height: 200px;
  }
  .interview_lists .interview_body {
    padding-bottom: 35px;
    padding-left: 30px;
  }
  .interview_lists .interview_body.link_arrow:before, .interview_lists .interview_body.link_arrow:after {
    width: 32px;
    height: 32px;
  }
  .interview_lists .interview_body.link_arrow:after {
    background-size: 16px auto;
  }
}
@media screen and (min-width : 1024px) {
  .interview_lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0 40px;
    border-top: none;
  }
  .interview_lists .interview_item {
    width: calc((100% - 40px) / 2);
    padding-block: 40px;
  }
  .interview_lists .interview_item:nth-child(-n+2) {
    border-top: 1px solid var(--gray-bar);
  }
  .interview_lists a {
    -webkit-transition: var(--hover-trans);
    transition: var(--hover-trans);
  }
  .interview_lists a:hover {
    opacity: var(--hover-opacity);
  }
}
/* ================================================================================
社員を知る - インタビュー
================================================================================ */
/* インタビュー
--------------------------------------------------- */
.interview_content > p {
  margin-bottom: 1.5em;
  line-height: 2;
}
.interview_content > p:last-child {
  margin-bottom: 0;
}

@media screen and (min-width : 768px) {
  .interview_content {
    width: min(85%, var(--sml-width));
    margin-inline: auto;
  }
  .interview_content > p {
    margin-bottom: 1.8em;
  }
}
/* スケジュール
--------------------------------------------------- */
.interview_schedule .content_head {
  text-align: center;
}

.schedule_list {
  position: relative;
}
.schedule_list:before {
  position: absolute;
  top: 0;
  left: 40px;
  width: 5px;
  height: 98%;
  background: #0064C2;
  content: "";
  opacity: 0.5;
}

.schedule_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
  position: relative;
  margin-bottom: 20px;
  padding: 23px 20px;
  gap: 10px;
  border-radius: 10px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 11px -5px #b9d4de;
  box-shadow: 0px 0px 11px -5px #b9d4de;
}
.schedule_item:last-child {
  margin-bottom: 0;
}

.schedule_time {
  width: 60px;
  text-align: center;
}

.schedule_time_txt {
  font-size: clamp(1.125rem, 1.0681818182rem + 0.2424242424vw, 1.25rem);
  font-family: var(--font-en);
}

.schedule_info {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.schedule_head {
  margin-bottom: 0.3em;
  font-weight: 600;
  font-size: clamp(1.125rem, 1.125rem + 0vw, 1.125rem);
}

.schedule_txt {
  font-size: clamp(0.9375rem, 0.9090909091rem + 0.1212121212vw, 1rem);
}

@media screen and (min-width : 768px) {
  .schedule_item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .schedule_time {
    width: 70px;
  }
  .schedule_info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
  }
  .schedule_head {
    margin-bottom: 0;
    white-space: nowrap;
  }
}
/* Other Interview
--------------------------------------------------- */
.interview_others {
  position: relative;
  margin-top: var(--sp-sectop);
  padding-top: var(--sp-sectop);
}
.interview_others:after {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(100%, 1200px);
  height: 1px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: var(--pale);
  content: "";
}

.interview_others_title {
  margin-bottom: 30px;
  font-weight: 600;
  font-size: clamp(1.75rem, 1.4659090909rem + 1.2121212121vw, 2.375rem);
  font-family: var(--font-en);
  text-align: center;
}

@media screen and (min-width : 768px) {
  .interview_others {
    margin-top: var(--pc-sectop);
    padding-top: var(--pc-sectop);
  }
}
/* ================================================================================
数字でわかるメガ・テクノロジー
================================================================================ */
/* ================================================================================
クロストーク
================================================================================ */
/* ================================================================================
事業を知る
================================================================================ */
/* ================================================================================
研修を知る
================================================================================ */
/* ================================================================================
よくある質問
================================================================================ */
/* ================================================================================
採用情報を知る
================================================================================ */
/* ================================================================================
個人情報保護方針
================================================================================ */
.privacy_content {
  padding-top: var(--sp-sectop);
}
.privacy_content.bdr_btm {
  padding-bottom: var(--sp-sectop);
  border-bottom: 1px solid var(--pale);
}
.privacy_content .txt_lead {
  margin-bottom: 3em;
  line-height: 2;
}
.privacy_content a[href*="mailto:"] {
  color: var(--black);
  text-decoration: none;
}
.privacy_content .link_underline {
  color: var(--black);
  text-decoration: underline;
}

.privacy_establish {
  padding-top: 20px;
  text-align: right;
}

.privacy_item {
  padding-top: 50px;
}
.privacy_item:first-child {
  padding-top: 0;
}

.privacy_contact {
  margin-top: 1em;
}

.privacy_info_tbl dt {
  font-weight: 600;
}

.privacy_link {
  padding-top: 50px;
}

@media screen and (min-width : 768px) {
  .privacy_content {
    padding-top: var(--pc-sectop);
  }
  .privacy_content.bdr_btm {
    padding-bottom: var(--pc-sectop);
  }
  .privacy_establish {
    padding-top: 50px;
  }
  .privacy_contact {
    margin-top: 0.5em;
  }
  .privacy_info_tbl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .privacy_info_tbl dt {
    font-weight: 500;
  }
  .privacy_info_tbl dd:before {
    content: "：";
  }
}
/* ================================================================================
新着情報
================================================================================ */
.news_article {
  padding-top: var(--sp-sectop);
}

@media screen and (min-width : 768px) {
  .news_article {
    padding-top: var(--pc-sectop);
  }
}
.news_article_head {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--gray-bar);
}
.news_article_head .head {
  margin-bottom: 0.3em;
  font-size: clamp(1.75rem, 1.5795454545rem + 0.7272727273vw, 2.125rem);
}
.news_article_head .date {
  font-size: clamp(0.9375rem, 0.9375rem + 0vw, 0.9375rem);
}

@media screen and (min-width : 768px) {
  .news_article_head {
    margin-bottom: 60px;
    padding-bottom: 60px;
  }
}
.news_article_content h3 {
  margin-bottom: 0.8em;
  font-size: clamp(1.625rem, 1.5113636364rem + 0.4848484848vw, 1.875rem);
}
.news_article_content h4 {
  margin-bottom: 0.8em;
  font-size: clamp(1.5rem, 1.5rem + 0vw, 1.5rem);
}
.news_article_content h5 {
  margin-bottom: 0.8em;
  font-size: clamp(1.375rem, 1.375rem + 0vw, 1.375rem);
}
.news_article_content h6 {
  margin-bottom: 0.8em;
  font-size: clamp(1.25rem, 1.25rem + 0vw, 1.25rem);
}
.news_article_content p {
  margin-bottom: 1.5em;
}
.news_article_content ol {
  margin-bottom: 1.5em;
  margin-left: 1.2em;
}
.news_article_content ol li {
  list-style: decimal;
}
.news_article_content ul {
  margin-bottom: 1.5em;
  margin-left: 1.2em;
}
.news_article_content ul li {
  list-style: disc;
}
.news_article_content a {
  color: #0064C2;
  word-break: break-all;
}
/*# sourceMappingURL=maps/style.css.map */