@charset "UTF-8";
/*--------------------------------------------------------------
共通でインポートモジュール
# mixinや変数の定義を行う
--------------------------------------------------------------*/
:root {
  --text-color: #000;
  --main-color: #685533;
  --sub-color: #323232;
  --bg-color: #fff;
  --border-color: #d8d8d8;
  --link-button-font-size: 1em;
  --link-color: #003279;
  --site-width: 1920px;
  --site-inline-padding: clamp(20px, -41.776px + 11.88vw, 80px);
  --site-inline-padding: clamp(1.25rem, -5.186rem + 19.8vw, 7.5rem);
  --content-width: 1200px;
  --header-height: 80px;
  --header-inline-padding: 20px;
  --menu-fsz: 16px;
  --entry-title-fsz: 20px;
  --entry-h2-fsz: 18px;
  --article-mt: 20px;
  --artilce-heading-mt: 40px;
  --news-navi-icon-size: 30px;
  --page-h2-fsz: 24px;
  --page-h3-fsz: 18px;
}
@media screen and (min-width: 768px) {
  :root {
    --entry-title-fsz: 26px;
    --entry-h2-fsz: 20px;
    --article-mt: 20px;
    --news-navi-icon-size: 40px;
    --artilce-heading-mt: 50px;
    --page-h2-fsz: 40px;
    --page-h3-fsz: 22px;
    --site-inline-padding: 50px;
  }
}
@media screen and (min-width: 900px) {
  :root {
    --header-height: 100px;
    --menu-fsz: 18px;
    --header-inline-padding: 25px 25px;
  }
}
@media screen and (min-width: 1230px) {
  :root {
    --content-width: 1366px;
  }
}
@media screen and (min-width: 1500px) {
  :root {
    --site-inline-padding: 0;
  }
}
:root {
  --fw-medium: 500;
  --fw-regular: 400;
  --fw-semi-bold: 600;
  --fw-bold: 700;
  --fw-black: 900;
  --line-height: 2.2;
  --base-font-size: 16px;
  --base-font-weight: var(--fw-medium);
  --base-font-family: YakuHanJP_Narrow, "Shippori Mincho", serif;
  --transition-time: 0.5s;
  --transition: var(--transition-time) ease;
  --min-viewport: 520;
  --max-viewport: 1025;
  --max-size: 80px;
  --min-size: 20px;
  /* a 傾き */
  --slope: calc((var(--max-size) - var(--min-size)) / (var(--max-viewport) - var(--min-viewport)));
  /* b 切片 */
  --intercept: calc(var(--min-size) - var(--slope) * var(--min-viewport));
  /* y = ax + b */
  --fluid-size: calc(var(--slope) * 100vw + var(--intercept) / 16 * 1rem);
  /* clamp( 最小サイズ , 可変サイズ , 最大サイズ) */
  --clamp-size: clamp(var(--min-size) / 16 * 1rem, var(--fluid-size), var(--max-size) / 16 * 1rem);
}

.is_serif_light {
  font-family: YakuHanJP_Narrow, "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.is_serif_regular {
  font-family: YakuHanJP_Narrow, "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.is_serif_medium {
  font-family: YakuHanJP_Narrow, "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.is_serif_bold {
  font-family: YakuHanJP_Narrow, "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.is_serif_black {
  font-family: YakuHanJP_Narrow, "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}

.is_sans_regular {
  font-family: YakuHanJP_Narrow, "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.is_sans_medium {
  font-family: YakuHanJP_Narrow, "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.is_sans_bold {
  font-family: YakuHanJP_Narrow, "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.is_sans_black {
  font-family: YakuHanJP_Narrow, "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}

.is_garamond,
.eb-garamond-medium {
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

@media screen and (min-width: 768px) {
  .br_sp {
    display: none;
  }
}

@media screen and (min-width:540px) {
  .br_sp_s {
    display: none;
  }
}

@media screen and (max-width: 767.98px) {
  .br_pc {
    display: none;
  }
}

@media screen and (min-width: 1230px) {
  .br_pc_w {
    display: none;
  }
}

@media screen and (max-width: 1229.98px) {
  .br_pc_w-max {
    display: none;
  }
}

@media screen and (max-width: 767.98px) {
  .is-pc {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .is-mobile {
    display: none !important;
  }
}

.section_pb_tb {
  padding-block: 30px 25px;
}
@media screen and (min-width: 768px) {
  .section_pb_tb {
    padding-block: 70px;
  }
}

.pd_tb_m {
  padding-top: 40px;
  padding-bottom: 120px;
}
@media screen and (min-width: 768px) {
  .pd_tb_m {
    padding-top: 70px;
    padding-bottom: 200px;
  }
}

.pd_tb_s {
  padding-top: 40px;
  padding-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .pd_tb_s {
    padding-top: 80px;
    padding-bottom: 160px;
  }
}

.is_align_center {
  margin-inline: auto;
  display: block;
}

@media screen and (min-width: 768px) {
  .is_align_left {
    float: right;
    margin-inline: 1.7em 0;
    margin-bottom: 1em;
  }
}

@media screen and (min-width: 768px) {
  .is_align_right {
    float: left;
    margin-inline: 0 1.7em;
    margin-bottom: 1em;
  }
}

.mt_s {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .mt_s {
    margin-top: 30px;
  }
}

.mt_m {
  margin-top: 40px !important;
}
@media screen and (min-width: 768px) {
  .mt_m {
    margin-top: 80px !important;
  }
}

.loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
}
.loading.is-active {
  opacity: 0;
  visibility: hidden;
}

.loadingInner > div {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 5px;
}
@media screen and (min-width: 768px) {
  .loadingInner > div {
    flex-direction: row;
    gap: 0;
  }
}
.loadingInner img {
  width: 112px;
  filter: brightness(0) invert(100%);
  margin-right: 10px;
}
.loadingInner {
  color: #fff;
  font-size: clamp(15px, 10.873px + 0.794vw, 19px);
}
@media screen and (min-width: 768px) {
  .loadingInner {
    font-size: 24px;
  }
}

.loading-animation {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background: linear-gradient(65deg, #0372ff, #0372b4, #00b5dd);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}
.loading-animation.is-active {
  opacity: 1;
  visibility: visible;
}

.is-slidein,
.is-fadein,
.is-fadeInLeft,
.is-fadeInRight,
.is-fadeUp {
  opacity: 0;
}

.is-fadeInLeft,
.is-fadeInRight,
.is-fadeUp {
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.is-wipe-in-bt {
  opacity: 0;
  overflow: hidden;
}
.is-wipe-in-bt > span {
  display: inline-block;
  opacity: 0;
  transform: matrix(1, 0, 0, 1, 0, 100);
  transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.is-line-rl::after,
.is-line-lr::after {
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}

.is-line-rl::before,
.is-line-lr::before {
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}

.is-line-lr::before {
  transform: translateX(calc(-1 * var(--history-line-width)));
}

.is-line-rl::before {
  transform: translateX(var(--history-line-width));
}

.is-line-lr::after {
  transform: scaleX(0);
  transform-origin: right;
}
@media screen and (min-width: 768px) {
  .is-line-lr::after {
    transform-origin: left;
  }
}

.is-line-rl::after {
  transform: scaleX(0);
  transform-origin: right;
}

.is-animated.is-fadeUp {
  animation-name: fadeUpAnime;
}
.is-animated.is-fadeInLeft {
  animation-name: fadeLeftAnime;
}
.is-animated.is-fadeInRight {
  animation-name: fadeRightAnime;
}
.is-animated.is-fadein {
  opacity: 0;
  animation: fadein 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.is-animated.is-slidein {
  opacity: 0;
  animation: slidein 1s ease-out forwards;
}
.is-animated.is-line-rl:before {
  animation-name: circle-rl;
}
.is-animated.is-line-rl:after {
  animation-name: line-scale;
}
.is-animated.is-line-lr:before {
  animation-name: circle-rl;
}
.is-animated.is-line-lr:after {
  animation-name: line-scale;
}
@media screen and (min-width: 768px) {
  .is-animated.is-line-lr:before {
    animation-name: circle-lr;
  }
}
.is-animated.is-wipe-in-bt {
  opacity: 1;
}
.is-animated.is-wipe-in-bt > * {
  opacity: 1;
  transform: matrix(1, 0, 0, 1, 0, 0);
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-300px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(300px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slidein {
  0% {
    opacity: 0;
    transform: translateX(-300px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes circle-lr {
  0% {
    transform: translateX(calc(-1 * var(--history-line-width)));
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes circle-rl {
  0% {
    transform: translateX(var(--history-line-width));
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes line-scale {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
.ly_siteHeader {
  width: 100%;
  z-index: 15;
  background-color: transparent;
  transition: background-color 0.2s ease;
  position: fixed;
}
.is_open .ly_siteHeader, .is_scrolled .ly_siteHeader {
  background-color: rgba(0, 0, 0, 0.8);
}

.ly_siteHeader_content {
  display: flex;
  justify-content: space-between;
  transition: height var(--transition), padding-right var(--transition);
  height: var(--header-height);
  width: 100%;
  max-width: var(--site-width);
  margin-inline: auto;
  padding-inline: var(--header-inline-padding);
  position: relative;
  gap: 15px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .ly_siteHeader_content {
    align-items: flex-start;
  }
  .is_scrolled .ly_siteHeader_content {
    --header-height: 70px;
    align-items: center;
    padding-right: 0;
  }
}
.ly_siteHeader_content .header_logo_image {
  width: 180px;
  margin-top: 0;
  margin-right: 11px;
  transition: all var(--transition);
}
@media screen and (min-width: 768px) {
  .is_scrolled .ly_siteHeader_content .header_logo_image {
    width: 150px;
    margin-top: 0;
  }
  .ly_siteHeader_content .header_logo_image {
    width: 260px;
    margin-top: 25px;
  }
}
.ly_siteHeader_content .bl_header_title {
  padding-inline: 10px;
}

.ly_siteHeader_nav {
  display: flex;
  gap: 10px;
}
@media screen and (min-width: 900px) {
  .ly_siteHeader_nav {
    margin-block: 30px 0;
    margin-inline: auto 15px;
  }
}

.ly_header_nav {
  margin-inline: auto;
  max-width: var(--site-width);
}
@media screen and (min-width: 768px) {
  .ly_header_nav {
    display: flex;
    justify-content: space-around;
  }
}

.ly_fixed_header {
  margin-top: 0;
}
.ly_fixed_header .ly_siteHeader {
  position: fixed;
  top: 0;
  left: 0;
}
.ly_fixed_header.admin-bar {
  margin-top: 0;
}
.ly_fixed_header.admin-bar .ly_siteHeader {
  top: 32px;
}

@media screen and (max-width: 767.98px) {
  .ly_mainVisual {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
}

.ly_breadcrumb {
  display: flex;
  max-width: var(--content-width);
  margin-inline: auto;
  margin-block: 10px;
  padding-inline: var(--site-inline-padding);
}

.ly_content_header {
  margin-inline: auto;
  max-width: var(--site-width);
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--content-header-height, 150px);
  padding: 20px;
}

.ly_siteMain {
  margin-inline: auto;
  width: 100%;
  overflow: hidden;
}

.ly_mainContent {
  max-width: var(--site-width);
  margin-inline: auto;
}

.ly_pageHeader {
  background-color: #000;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: var(--site-inline-padding);
  padding-block: 70px 20px;
}
@media screen and (min-width: 768px) {
  .ly_pageHeader {
    padding-block: 20px;
  }
}
.ly_pageHeader {
  color: var(--main-color);
  min-height: 250px;
  background-image: url(../images/header/page-header-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .ly_pageHeader {
    height: 350px;
  }
}

.ly_article {
  margin-inline: auto;
}
.ly_article .bl_postThumbnail {
  margin-bottom: var(--article-mt);
}
.ly_article .bl_article_content {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: var(--site-inline-padding);
}
.ly_article .bl_article_content > * + * {
  margin-top: var(--article-mt);
}
.ly_article .bl_article_content > * + h2,
.ly_article .bl_article_content > * + h3,
.ly_article .bl_article_content > * + h4,
.ly_article .bl_article_content > * + h5,
.ly_article .bl_article_content > * + h6 {
  margin-top: var(--artilce-heading-mt);
}

.ly_siteFooter {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-top: 1px solid var(--main-color);
}
.ly_siteFooter .bl_siteFooter {
  padding-inline: var(--site-inline-padding);
  max-width: var(--content-width);
  width: 100%;
}

.ly_footerCTA {
  border-top: 1px solid var(--main-color);
}
.bl_article_content .ly_footerCTA {
  border-top: none;
  border-bottom: 1px solid var(--main-color);
  --article-mt: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.ly_inner_content {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: var(--site-inline-padding);
}

.ly_pc2colsp1col {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .ly_pc2colsp1col {
    grid-template-columns: 1fr 1fr;
  }
}

article.not_found {
  grid-column: 1/-1;
  text-align: center;
}

body {
  min-width: 100%;
}

@media screen and (min-width: 768px) {
  .has_submenu .Main {
    margin-top: 160px;
  }
}

.emergency .emergency__type.no-link {
  pointer-events: none;
  cursor: default;
}
.emergency .emergency__type.no-link::after {
  content: none;
}
.emergency .emergency__type.emergency__type--blank::after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  overflow: hidden;
  background: no-repeat center;
  text-indent: 100%;
  vertical-align: middle;
  white-space: nowrap;
  right: 1.2em;
  width: 13px !important;
  height: 13px !important;
  margin-top: -6px;
  background-image: url(https://www.meidensha.co.jp/app-files/img/sprite/icon.svg#blank-usage), url(https://www.meidensha.co.jp/app-files/img/sprite/icon.svg#blank2-usage);
  background-size: contain, 0 0;
  border: none;
  transform: rotate(0);
}

.Main__guide {
  z-index: 2;
}

@media screen and (max-width: 767.98px) {
  .Main__content {
    padding-top: 3em;
  }
}

.heading2-v3 {
  margin-top: 67px;
}
@media screen and (min-width: 768px) {
  .heading2-v3 {
    margin-top: 115px;
  }
}
.heading2-v3 .heading2-v3__inner {
  display: flex;
  align-items: baseline;
}
@media screen and (max-width: 767.98px) {
  .heading2-v3 .heading2-v3__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.heading2-v3 h2 {
  font-size: 28px;
}
@media screen and (min-width: 768px) {
  .heading2-v3 h2 {
    font-size: 42px;
    line-height: 1.43;
  }
}
.heading2-v3 .heading2-v3__subtitle {
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .heading2-v3 .heading2-v3__subtitle {
    font-size: 16px;
  }
}

section div + .card-wrap {
  margin-top: 28px;
}
@media screen and (min-width: 768px) {
  section div + .card-wrap {
    margin-top: 70px;
  }
}

@media screen and (max-width: 767.98px) {
  .card-v2.is-vertical {
    margin-top: 33px;
  }
  .card-v2.is-vertical:first-child {
    margin-top: 0;
  }
}
.card-v2.is-vertical .card-v2__type {
  flex-direction: column;
  border: none;
}
.card-v2.is-vertical .card-v2__type .card-v2__head {
  width: 100%;
  max-width: none;
}
.card-v2.is-vertical .card-v2__type .card-v2__image img {
  max-width: none;
  width: 100%;
}
.card-v2.is-vertical .card-v2__type .card-v2__body {
  padding-block: 36px 60px;
  padding-inline: 22px 18px;
}
.card-v2.is-vertical .card-v2__type .card-v2__body h3.card-v2__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #202f69;
  font-size: 20px;
  line-height: 1.4;
  font-weight: var(--fw-medium);
}
.card-v2.is-vertical .card-v2__type .card-v2__body .card-v2__description {
  font-size: 13px;
  font-weight: var(--fw-medium);
}
@media screen and (min-width: 768px) {
  .card-v2.is-vertical .card-v2__type .card-v2__body .card-v2__description {
    font-size: 16px;
  }
}

.cover-v1 {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding-inline: 20px;
}
.cover-v1 .cover-v1__inner {
  max-width: 1170px;
  margin: 0 auto;
}
.cover-v1 p.text {
  font-size: 13px;
  font-weight: var(--fw-medium);
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .cover-v1 p.text {
    line-height: 1.75;
    font-size: clamp(12px, 7.013px + 0.649vw, 15px);
  }
  .cover-v1 p.text br.br_pc {
    display: none;
  }
}
@media screen and (min-width: 1230px) {
  .cover-v1 p.text {
    font-size: 16px;
  }
  .cover-v1 p.text br.br_pc {
    display: inline;
  }
}

h3.heading3-v1 {
  font-size: 28px;
  font-weight: var(--fw-bold);
  line-height: 1.68;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  h3.heading3-v1 {
    font-size: clamp(18px, -1.948px + 2.597vw, 30px);
  }
}
@media screen and (min-width: 1230px) {
  h3.heading3-v1 {
    font-size: 34px;
  }
}

.is_top_recruit {
  margin-top: 50px;
  max-width: 880px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .is_top_recruit {
    margin-top: 57px;
  }
}

.abstract {
  padding-block: 10px 20px;
}
@media screen and (min-width: 768px) {
  .abstract {
    padding-block: 0 20px;
  }
}
.abstract .abstract__heading {
  color: #415ed3;
  text-align: center;
  line-height: 1.7;
  font-size: 22px;
  font-weight: var(--fw-medium);
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  .abstract .abstract__heading {
    padding-top: 40px;
    line-height: 1.2;
    font-size: 32px;
  }
}
.abstract .abstract__text {
  text-align: center;
  line-height: 2.1;
  font-size: 16px;
  letter-spacing: 0.06em;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .abstract .abstract__text {
    font-size: 18px;
    margin-top: 60px;
  }
}

.anchor-navi__list {
  justify-content: center;
}
.abstract .anchor-navi__list {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .abstract .anchor-navi__list {
    margin-top: 70px;
  }
}

.notice__list {
  padding-left: 0;
  font-size: 0.7em;
  font-size: 11px;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .notice__list {
    font-size: 14px;
  }
}
.notice__list li {
  list-style: none;
  display: flex;
  gap: 2px;
}
.notice__list li::before {
  content: "※";
}

.is_large-text {
  font-size: 1.2em;
}
@media screen and (min-width: 768px) {
  .is_large-text {
    font-size: 1.4em;
  }
}

@media screen and (max-width: 1229.98px) {
  .Header {
    min-width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .Header__body {
    padding-top: 8px;
    padding-top: clamp(8px, 29.299px + -1.732vw, 16px);
  }
}

@media screen and (min-width: 768px) {
  .Header__inner {
    padding-inline: 20px;
  }
}
@media screen and (min-width: 1230px) {
  .Header__inner {
    padding-inline: 40px 30px;
  }
}

.header-logo {
  width: 172px;
}
@media screen and (min-width: 768px) {
  .header-logo {
    width: clamp(240px, 145.247px + 12.338vw, 297px);
  }
}

.header-menu-logo {
  width: 220px;
}
@media screen and (max-width: 767.98px) {
  .header-menu-logo {
    width: 220px;
  }
}

@media screen and (min-width: 768px) {
  .header-gnav .header-gnav__type {
    font-size: clamp(14px, 9.013px + 0.649vw, 17px);
  }
}

@media screen and (min-width: 768px) {
  .header-gnav__list > li {
    margin-left: clamp(20px, -4.935px + 3.247vw, 35px);
  }
}
@media screen and (max-width: 767.98px) {
  .header-gnav__list > li.is_pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .header-gnav__list > li.is_slideMenu {
    display: none;
  }
}

.Header__body__inner .header-buttons--sp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  margin-top: 2.4em;
}
@media screen and (min-width: 768px) {
  .Header__body__inner .header-buttons--sp {
    display: none;
  }
}
.Header__body__inner .header-buttons--sp a.button__type--blank {
  align-items: center;
  justify-content: center;
  display: flex;
}
.Header__body__inner .header-buttons--sp .button__label {
  font-size: 16px;
}
.Header__body__inner .header-buttons--sp .header-official--sp,
.Header__body__inner .header-buttons--sp .header-contact--sp {
  width: 100%;
  margin-top: 0;
}
.Header__body__inner a.button__type--blank {
  padding-block: 3px;
  min-width: 120px;
  border: 2px solid #eaeaea;
  padding-inline: 20px;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .Header__body__inner a.button__type--blank {
    min-height: 27.5px;
  }
}
.Header__body__inner a.button__type--blank::before {
  right: 1.4em;
  content: none;
}
.Header__body__inner a.button__type--blank .button__label::after {
  content: "";
  display: inline-block;
  position: relative;
  overflow: hidden;
  background: no-repeat center;
  background-size: contain;
  text-indent: 100%;
  vertical-align: middle;
  white-space: nowrap;
  top: -1px;
  width: 13px;
  height: 13px;
  margin-left: 7px;
  background-image: url(https://www.meidensha.co.jp/app-files/img/sprite/icon.svg#blank-usage), url(https://www.meidensha.co.jp/app-files/img/sprite/icon.svg#blank2-usage);
  background-size: contain, 0 0;
}
.Header__body__inner .button__label {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.688;
}
@media screen and (max-width: 767.98px) {
  .Header__body__inner .header-official--pc {
    display: none;
  }
}
.Header__body__inner .header-official--sp {
  width: 240px;
  margin: 1.5em auto 0;
}
@media screen and (min-width: 768px) {
  .Header__body__inner .header-official--sp {
    display: none;
  }
}
@media screen and (max-width: 767.98px) {
  .Header__body__inner .header-official--sp .header-official__button a {
    padding: 0.9em 2em;
    font-size: 1.5rem;
    font-weight: 500;
    justify-content: center;
  }
  .Header__body__inner .header-official--sp .header-official__button .button__label {
    font-size: 1.5rem;
    font-weight: 500;
  }
}
@media screen and (min-width: 768px) {
  .Header__body__inner .header-search__body[aria-hidden=false] {
    width: clamp(180px, -273.517px + 59.052vw, 317px);
  }
}

.header-submenu-navi {
  border-top: 1px solid #b9c5d5;
  border-bottom: 1px solid #b9c5d5;
  height: 60px;
}
@media screen and (max-width: 767.98px) {
  .header-submenu-navi {
    display: none;
  }
}

.header-submenu-list {
  display: flex;
  margin-block: 0;
  margin-inline: auto;
  max-width: 1170px;
  width: 100%;
  padding-left: 0;
  height: 100%;
}

.header-submenu-item {
  list-style: none;
  flex: 1 1;
  border-left: 1px solid #b9c5d5;
}
.header-submenu-item:last-child {
  border-right: 1px solid #b9c5d5;
}
.header-submenu-item {
  height: 100%;
}

.header-submenu-item-type {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-block: 10px;
  padding-inline: clamp(5px, -11.623px + 2.165vw, 15px);
  letter-spacing: 0.06em;
  font-size: 14px;
  font-size: clamp(10px, 3.351px + 0.866vw, 14px);
  transition: color var(--transition);
}
.header-submenu-item-type .current {
  color: #415ed3;
}
@media (hover: hover) {
  .header-submenu-item-type:hover {
    color: #415ed3;
  }
}

@media screen and (min-width: 768px) {
  .header-megamenu {
    overflow: scroll;
  }
}

.is_our-numbers [data-gnav-sub-current=our-numbers],
.is_welfare [data-gnav-sub-current=welfare],
.is_interview [data-gnav-sub-current=interview],
.is_faq [data-gnav-sub-current=faq],
.is_new_graduate [data-gnav-sub-current=new_graduate],
.is_career [data-gnav-sub-current=career],
.is_message [data-gnav-sub-current=message],
.is_benefits-support [data-gnav-sub-current=benefits-support],
.is_office-support [data-gnav-sub-current=office-support],
.is_facility-services [data-gnav-sub-current=facility-services] {
  color: #415ed3;
}

.is_recruit [data-gnav-current=recruit] .header-gnav__type,
.is_news [data-gnav-current=news] .header-gnav__type,
.is_business [data-gnav-current=business] .header-gnav__type,
.is_corporate [data-gnav-current=corporate] .header-gnav__type,
.is_sustainability [data-gnav-current=sustainability] .header-gnav__type {
  color: #415ed3;
}
.is_recruit [data-gnav-current=recruit] .header-gnav__type::before,
.is_news [data-gnav-current=news] .header-gnav__type::before,
.is_business [data-gnav-current=business] .header-gnav__type::before,
.is_corporate [data-gnav-current=corporate] .header-gnav__type::before,
.is_sustainability [data-gnav-current=sustainability] .header-gnav__type::before {
  width: 100%;
  opacity: 1;
}

.footer-logo {
  width: 275px;
}
@media screen and (min-width: 768px) {
  .footer-logo {
    width: 379px;
  }
}

.footer-utility .footer-utility__link-list {
  padding-inline: 0;
  margin-inline: auto;
  max-width: 300px;
}
@media screen and (min-width:540px) {
  .footer-utility .footer-utility__link-list {
    padding-inline: 0;
    max-width: 300px;
  }
}
@media screen and (min-width: 768px) {
  .footer-utility .footer-utility__link-list {
    max-width: none;
  }
}

.Main__content > section + .button-wrap--center {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .Main__content > section + .button-wrap--center {
    margin-top: 100px;
  }
}

.business-box {
  background-color: #f6f7fa;
  padding-block: 30px;
  padding-inline: 20px;
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .business-box {
    padding-block: 50px;
    padding-inline: 45px;
    margin-top: 100px;
  }
}
.abstract + .business-box {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .abstract + .business-box {
    margin-top: 60px;
  }
}
+ .business-box {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  + .business-box {
    margin-top: 60px;
  }
}

.business-box__heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .business-box__heading {
    grid-template-columns: 1fr 43.5%;
    gap: clamp(20px, -29.87px + 6.494vw, 50px);
  }
}
.business-box__heading .business-box__heading__title {
  font-size: 21px;
  font-weight: var(--fw-medium);
  line-height: 1.5;
  color: #202f69;
  margin-block: 0;
}
@media screen and (min-width: 768px) {
  .business-box__heading .business-box__heading__title {
    font-size: 40px;
    font-size: clamp(28px, 8.052px + 2.597vw, 40px);
  }
}
.business-box__heading.is_1column {
  grid-template-columns: 1fr;
}
.business-box__heading.is_1column .business-box__heading__title {
  font-size: 21px;
}
@media screen and (min-width: 768px) {
  .business-box__heading.is_1column .business-box__heading__title {
    font-size: 32px;
  }
}
.business-box__heading .business-box__heading__image {
  text-align: center;
}
.business-box__heading .business-box__heading__img {
  display: block;
  margin-inline: auto;
  margin-top: 45px;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .business-box__heading .business-box__heading__img {
    max-width: 270px;
  }
}
.business-box__heading .business-box__heading__text {
  line-height: 1.6875;
  font-size: 13px;
  margin-block: 20px 0;
}
@media screen and (min-width: 768px) {
  .business-box__heading .business-box__heading__text {
    margin-block: 30px 0;
    font-size: 16px;
  }
}

.business-box__content {
  margin-top: 26px;
  background-color: #fff;
  padding-block: 20px 30px;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .business-box__content {
    margin-top: 36px;
    padding-block: 40px 50px;
    padding-inline: 47px;
  }
}
.business-box__content h3 {
  font-size: 21px;
  font-weight: var(--fw-medium);
  line-height: 1.46;
  color: #202f69;
  margin-block: 0;
}
@media screen and (min-width: 768px) {
  .business-box__content h3 {
    margin-block: 0;
    font-size: 26px;
  }
}
.business-box__content h3 + p {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .business-box__content h3 + p {
    margin-top: 40px;
  }
}
.business-box__content h4 {
  line-height: 1.6875;
  font-size: 16px;
  font-weight: var(--fw-medium);
  color: #415ed3;
  margin-block: 15px 0;
}
@media screen and (min-width: 768px) {
  .business-box__content h4 {
    margin-block: 30px 0;
  }
}
.business-box__content p {
  margin-block: 5px 0;
  line-height: 1.6875;
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .business-box__content p {
    font-size: 16px;
  }
}
.business-box__content .button {
  margin-top: 30px;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .business-box__content .button {
    margin-top: 40px;
    justify-content: flex-start;
  }
}
.business-box__content .button a {
  max-width: 230px;
  min-height: 45px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .business-box__content .button a {
    min-height: 60px;
    max-width: none;
  }
}

.button-wrap.is_page-footer {
  display: grid;
  gap: 20px;
  margin-top: 30px;
  max-width: 609px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .button-wrap.is_page-footer {
    margin-top: 60px;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
  }
}
.button-wrap.is_page-footer .button-v3 {
  width: 100%;
  margin-left: 0;
  margin-top: 0;
}
.button-wrap.is_page-footer .button-v3 .button-v3__type {
  font-size: 19px;
  min-height: 72px;
}
@media screen and (min-width: 768px) {
  .button-wrap.is_page-footer .button-v3 .button-v3__type {
    font-size: 16px;
    min-height: 85px;
  }
}
.button-wrap.is_page-footer .button-v3 .button-v3__type:before {
  width: 50px;
  height: 50px;
  margin-top: 0;
  transform: translateY(-50%);
  right: 11px;
}
@media screen and (min-width: 768px) {
  .button-wrap.is_page-footer .button-v3 .button-v3__type:before {
    width: 37px;
    height: 38px;
  }
}
.button-wrap.is_page-footer .button-v3 .button-v3__type::after {
  right: 1.7em;
}
@media screen and (min-width: 768px) {
  .button-wrap.is_page-footer .button-v3 .button-v3__type::after {
    right: 1.7em;
  }
}
.button-wrap.is_page-footer .button-v3 .button-v3__type.button__type--pdf::before {
  content: none;
}
.button-wrap.is_page-footer .button-v3 .button-v3__type.button__type--pdf::after {
  border-color: #415ed3;
}
.button-wrap.is_page-footer .button-v3 .button-v3__type.button__type--pdf:hover::after {
  border-color: #fff;
}
.button-wrap.is_page-footer .button-v3 .button-v3__type.button__type--pdf > span::after {
  content: "";
  display: inline-block;
  position: relative;
  overflow: hidden;
  vertical-align: middle;
  white-space: nowrap;
  text-indent: 100%;
  width: 21px;
  height: 25px;
  top: -2px;
  margin-left: 10px;
  background: no-repeat center;
  background-size: contain;
  background-image: url(https://www.meidensha.co.jp/app-files/img/sprite/icon.svg#pdf-usage);
}
.button-wrap.is_return-parent {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .button-wrap.is_return-parent {
    margin-top: 30px;
  }
}
.business-box + .button-wrap.is_return-parent {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .business-box + .button-wrap.is_return-parent {
    margin-top: 80px;
  }
}
.business-box + .button-wrap.is_return-parent .button .button__type {
  max-width: 230px;
}
.button-wrap.is_return-parent .button .button__type {
  margin-inline: auto;
  max-width: 180px;
  font-size: 13px;
  min-height: 45px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .button-wrap.is_return-parent .button .button__type {
    max-width: 230px;
    font-size: 16px;
    min-height: 60px;
  }
}

.insurance__product {
  margin-block: 2em 3em;
}
.insurance__product .description-list {
  font-size: 1.5em;
  margin-block: 0 1em;
}
.insurance__product .description-list dt {
  width: auto;
  margin-right: 0;
  margin-bottom: 0;
  font-weight: var(--fw-regular);
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .insurance__product .description-list dt {
    font-size: 24px;
  }
}
.insurance__product .description-list dd {
  font-weight: var(--fw-medium);
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .insurance__product .description-list dd {
    font-size: 28px;
  }
}
.insurance__product .button {
  margin-top: 15px;
}

.index-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-block: 0;
}
@media screen and (min-width: 768px) {
  .index-wrap {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 30px;
         column-gap: 30px;
    row-gap: 50px;
  }
}

* + .index-wrap {
  margin-block: 3em 1em;
}

.index-wrap__item {
  display: flex;
  flex-direction: column;
}
.index-wrap__item h3 {
  margin-bottom: 0;
}
.index-wrap__item h3 + p {
  margin-top: 1em;
}
.index-wrap__item h3 span {
  display: block;
  font-size: 0.7em;
}
.index-wrap__item a {
  display: block;
  margin-top: auto;
  padding-top: 20px;
  text-align: center;
}

.is_insurance .abstract {
  padding-bottom: 0;
}
.is_insurance .is_flex_row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-top: 20px;
}
.is_insurance .is_flex_row > a {
  padding-top: 0;
}

.index-banner {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  a.not-link-pc {
    pointer-events: none;
  }
}

.is_coporate .coporate-box {
  background-color: #f6f7fa;
  padding-block: 30px;
  padding-inline: 20px;
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .is_coporate .coporate-box {
    padding-block: 50px;
    padding-inline: 45px;
    margin-top: 100px;
  }
}
+ .is_coporate .coporate-box {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  + .is_coporate .coporate-box {
    margin-top: 60px;
  }
}

.corporate-message {
  background-color: #f6f7fa;
  padding-block: 30px;
  padding-inline: 20px;
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .corporate-message {
    padding-block: 50px;
    padding-inline: 45px;
    margin-top: 100px;
  }
}

.corporate-message__heading {
  font-size: 21px;
  font-weight: var(--fw-medium);
  line-height: 1.5;
  color: #202f69;
  margin-block: 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .corporate-message__heading {
    font-size: 26px;
  }
}

.corporate-message__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .corporate-message__body {
    gap: 40px;
    flex-direction: row-reverse;
    margin-top: 40px;
  }
}

.corporate-message__image {
  width: 232px;
  flex-shrink: 0;
  margin-inline: auto;
  text-align: center;
}

.corporate-message__text .lead {
  margin-top: 0;
}

.corporate-heading__title {
  margin: 0;
  color: #415ed3;
  text-align: center;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.71;
  position: relative;
  padding-block: 0 15px;
}
@media screen and (min-width: 768px) {
  .corporate-heading__title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.68;
  }
}
.corporate-heading__title:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 2px;
  width: 50px;
  background-color: #415ed3;
  transform: translateX(-50%);
}

.is_corporate .Main__content > section + section {
  margin-top: 60px;
}

.corporate-mission {
  text-align: center;
  background-color: #f6f7fa;
  margin-top: 30px;
  padding-block: 50px 40px;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .corporate-mission {
    margin-top: 60px;
    padding-block: 50px 40px;
    padding-inline: 40px;
  }
}
.corporate-mission .lead + .corporate-mission__text {
  margin-top: 20px;
}
@media screen and (max-width: 767.98px) {
  .corporate-mission .lead + .corporate-mission__text {
    text-align: left;
  }
}
.corporate-mission .lead:first-child {
  margin-top: 0;
}

.image-list {
  padding-left: 0;
}
.image-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .image-list li {
    align-items: center;
  }
}
.image-list li + li {
  margin-top: 1em;
}
.image-list .image-list__image {
  flex-shrink: 0;
}
.image-list .image-list__text p {
  margin-block: 0;
}
.image-list .image-list__text p.lead {
  margin-block: 0;
}

.table__column {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .table__column {
    align-items: center;
    flex-direction: row;
  }
}
.table__column .button-wrap {
  margin-top: 0 !important;
}
@media screen and (max-width: 767.98px) {
  .table__column .button-wrap .button {
    width: 100%;
  }
}

.corporate-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .corporate-columns {
    gap: 40px;
    margin-top: 60px;
    grid-template-columns: repeat(2, 1fr);
  }
}

.corporate-column h3 {
  margin-block: 0;
}
.corporate-column .table {
  margin-top: 15px;
}
.corporate-column .button-wrap {
  margin-top: 5px;
}
@media screen and (max-width: 767.98px) {
  .corporate-column .button-wrap .button {
    width: 100%;
  }
}
.corporate-column iframe {
  aspect-ratio: 540/240;
  width: 100%;
  height: auto;
}

.is_sustainability .anchor-navi {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .is_sustainability .anchor-navi {
    margin-bottom: 60px;
  }
}
.is_sustainability section + section {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .is_sustainability section + section {
    margin-top: 100px;
  }
}
.is_sustainability .corporate-heading + * {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .is_sustainability .corporate-heading + * {
    margin-top: 30px;
  }
}

.text-wrap--center {
  width: -moz-fit-content;
  width: fit-content;
}

.heading3__inner {
  font-size: 18px;
  font-weight: var(--fw-medium);
  line-height: 1.4;
  color: #202f69;
  margin-top: 40px;
  border-bottom: 1px solid #dedede;
  padding-bottom: 0.3em;
}
@media screen and (min-width: 768px) {
  .heading3__inner {
    margin-top: 60px;
    font-size: 20px;
  }
}

.order-list + p {
  margin-top: 2em;
}

.footnote {
  margin-top: 1em;
}
.footnote .footnote__item {
  margin-block: 0;
  display: flex;
  gap: 0.5em;
  font-size: 11px;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .footnote .footnote__item {
    font-size: 14px;
  }
}
.footnote .footnote__list_mark {
  flex-shrink: 0;
}

.sustainability-lead-box {
  margin: 0;
  background-color: #f6f7fa;
  margin-top: 4.615em;
}
@media screen and (min-width: 768px) {
  .sustainability-lead-box {
    display: flex;
    align-items: center;
    margin-top: 6.25em;
  }
  .sustainability-lead-box[data-index-pc=image-left] {
    flex-flow: row nowrap;
  }
  .sustainability-lead-box[data-index-pc=image-left] .sustainability-lead-box__body {
    padding: 1.4em 6.25em 1.8em 7.25em;
  }
  .sustainability-lead-box[data-index-pc=image-right] {
    flex-flow: row-reverse nowrap;
  }
  .sustainability-lead-box[data-index-pc=image-right] .sustainability-lead-box__body {
    padding: 1.4em 7.25em 1.8em 6.25em;
  }
}

.sustainability-lead-box__head > *:first-child,
.sustainability-lead-box__head > section:first-child > *:first-child,
.sustainability-lead-box__head > [class^=list-wrap] > *:first-child {
  margin-top: 0 !important;
}
@media screen and (min-width: 768px) {
  .sustainability-lead-box__head {
    flex-shrink: 0;
    width: 50%;
  }
}

.sustainability-lead-box__body {
  padding: 1.8em 1.4em 3em;
}
.sustainability-lead-box__body > *:first-child,
.sustainability-lead-box__body > section:first-child > *:first-child,
.sustainability-lead-box__body > [class^=list-wrap] > *:first-child {
  margin-top: 0 !important;
}
@media screen and (min-width: 768px) {
  .sustainability-lead-box__body {
    width: 50%;
  }
}

.sustainability-lead-box__title {
  margin: 0;
  color: #202f69;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .sustainability-lead-box__title {
    font-size: 2.6rem;
  }
}

.sustainability-lead-box__button__type {
  display: block;
  position: relative;
  border: 2px solid #b9c5d5;
  background-color: #fff;
  text-align: center;
  padding: 0.9em 2.4em 0.9em 1em;
}
@media screen and (min-width: 768px) {
  .sustainability-lead-box__button__type {
    width: 100%;
    padding: 1.1em 2.8em 1.1em 1.4em;
  }
  .sustainability-lead-box__button__type:hover {
    border-color: #415ed3;
    background-color: #415ed3;
    color: #fff;
  }
  .sustainability-lead-box__button__type:hover:after {
    border-color: #fff;
  }
}
.sustainability-lead-box__button__type:after {
  right: 1.2em;
}
@media screen and (min-width: 768px) {
  .sustainability-lead-box__button__type:after {
    right: 1.4em;
  }
}

.sustainability-lead-box__button .sustainability-lead-box__button__type--blank {
  padding: 0.9em 4em 0.9em 1em;
}
@media screen and (min-width: 768px) {
  .sustainability-lead-box__button .sustainability-lead-box__button__type--blank {
    width: 100%;
    padding: 1.1em 2.8em 1.1em 1.4em;
  }
  .sustainability-lead-box__button .sustainability-lead-box__button__type--blank:hover {
    border-color: #415ed3;
    background-color: #415ed3;
    color: #fff;
  }
  .sustainability-lead-box__button .sustainability-lead-box__button__type--blank:hover:after {
    border-color: #fff;
  }
  .sustainability-lead-box__button .sustainability-lead-box__button__type--blank:hover:before {
    background-size: 0 0, contain;
  }
}
.sustainability-lead-box__button .sustainability-lead-box__button__type--blank:before {
  right: 1.2em;
  width: 12px;
  height: 12px;
}
@media screen and (min-width: 768px) {
  .sustainability-lead-box__button .sustainability-lead-box__button__type--blank:before {
    right: 1.2em;
    width: 12px;
    height: 12px;
  }
}

.sustainability-lead-box__title-wrap {
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .sustainability-lead-box__title-wrap {
    margin-bottom: 1.875em;
  }
}

.sustainability-lead-box__description {
  margin: 0.8em 0 0;
}
@media screen and (min-width: 768px) {
  .sustainability-lead-box__description {
    margin: 1em 0 0;
  }
}

.sustainability-lead-box__button {
  margin-top: 1.4em;
}
@media screen and (min-width: 768px) {
  .sustainability-lead-box__button {
    display: flex;
    margin-top: 2.875em;
  }
}

@media screen and (min-width: 768px) {
  .sustainability-medium-text {
    font-weight: 500 !important;
  }
}
.is_sustainability table.table__matrix thead th.table__cell--lv2 {
  text-align: center;
}
.is_sustainability table.table__matrix thead th.table__cell--lv2:first-child {
  text-align: left;
}
.is_sustainability table.table__matrix td.table__cell {
  text-align: center;
}

.is_recruit .heading__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .is_recruit .heading1 {
    height: auto;
    aspect-ratio: 1920/686;
    min-height: auto;
    width: 100%;
  }
}
.is_recruit .heading1__image {
  display: block;
}
@media screen and (min-width: 768px) {
  .is_recruit .heading1__image {
    height: auto;
    aspect-ratio: 1920/686;
  }
}
.is_recruit .heading1__image img {
  width: 100%;
  height: auto;
}
.is_recruit .abstract .abstract__text {
  letter-spacing: 0;
}

.recruit_column {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .recruit_column {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3.377px + 2.165vw, 30px);
  }
}
.recruit_column .column__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 20px;
  border: 1px solid #b9c5d5;
  min-height: 205px;
}
@media screen and (min-width: 768px) {
  .recruit_column .column__item {
    gap: 20px;
    padding: 30px;
    padding: clamp(20px, 3.377px + 2.165vw, 30px);
    min-height: clamp(205px, 47.078px + 20.563vw, 300px);
  }
}
.recruit_column .column__item:nth-child(even) {
  background: #6e89f5;
  color: #fff;
}
.recruit_column .column__item:nth-child(even) strong {
  color: #fff;
}
.recruit_column .column__item__heading {
  display: flex;
  width: 100%;
  justify-content: space-between;
  font-weight: var(--fw-medium);
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .recruit_column .column__item__heading {
    gap: 10px;
    align-items: center;
  }
}
.recruit_column .item__subtitle {
  line-height: 1.4;
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .recruit_column .item__subtitle {
    line-height: 1.4;
    margin-bottom: 8px;
    font-size: clamp(12px, 8.675px + 0.433vw, 14px);
  }
}
.recruit_column .item__title__text {
  line-height: 1.23;
  font-size: 21px;
  margin-top: 7px;
}
@media screen and (min-width: 768px) {
  .recruit_column .item__title__text {
    font-size: 22px;
    font-size: clamp(16px, 6.026px + 1.299vw, 22px);
    margin-top: 0;
  }
}
.recruit_column .item__title_icon {
  height: auto;
}
.recruit_column .is_annual_holiday .item__title_icon {
  width: 68px;
}
@media screen and (min-width: 768px) {
  .recruit_column .is_annual_holiday .item__title_icon {
    width: 96px;
    width: clamp(60px, 0.156px + 7.792vw, 96px);
  }
}
.recruit_column .is_long_vacation .item__title_icon {
  width: 74px;
}
@media screen and (min-width: 768px) {
  .recruit_column .is_long_vacation .item__title_icon {
    width: 98px;
    width: clamp(60px, -3.169px + 8.225vw, 98px);
  }
}
.recruit_column .is_paid_holidays .item__title_icon {
  width: 96px;
}
@media screen and (min-width: 768px) {
  .recruit_column .is_paid_holidays .item__title_icon {
    width: 130px;
    width: clamp(60px, -56.364px + 15.152vw, 130px);
  }
}
.recruit_column .is_maternity_childcare_leave .item__title_icon {
  width: 56px;
}
@media screen and (min-width: 768px) {
  .recruit_column .is_maternity_childcare_leave .item__title_icon {
    width: 73px;
    width: clamp(56px, 27.74px + 3.68vw, 73px);
  }
}
.recruit_column .is_average_length_of_employment .item__title_icon {
  width: 80px;
}
@media screen and (min-width: 768px) {
  .recruit_column .is_average_length_of_employment .item__title_icon {
    width: 110px;
    width: clamp(60px, -23.117px + 10.823vw, 110px);
  }
}
.recruit_column .is_turnover_rate .item__title_icon {
  width: 78px;
}
@media screen and (min-width: 768px) {
  .recruit_column .is_turnover_rate .item__title_icon {
    width: 96px;
    width: clamp(60px, 0.156px + 7.792vw, 96px);
  }
}
.recruit_column .column__item__number {
  font-size: 19px;
}
@media screen and (min-width: 768px) {
  .recruit_column .column__item__number {
    font-size: clamp(19px, 0.714px + 2.381vw, 30px);
  }
}
.recruit_column .column__item__number strong {
  font-size: 54px;
  color: #202f69;
  line-height: 1;
  vertical-align: -5px;
  margin-inline: 9px;
}
@media screen and (min-width: 768px) {
  .recruit_column .column__item__number strong {
    margin-inline: 9px;
    vertical-align: -7px;
    font-size: clamp(54px, 10.779px + 5.628vw, 80px);
  }
}
.recruit_column .column__item__number.is_annual_holiday {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .recruit_column .column__item__number.is_annual_holiday {
    gap: clamp(10px, -6.623px + 2.165vw, 20px);
    padding-bottom: 32px;
  }
}
@media screen and (min-width: 768px) {
  .recruit_column .column__item__number.is_annual_holiday strong {
    font-size: clamp(40px, -26.494px + 8.658vw, 80px);
  }
}
.recruit_column .column__item__number.is_annual_holiday .number_base {
  position: relative;
  margin-bottom: -20px;
}
@media screen and (min-width: 768px) {
  .recruit_column .column__item__number.is_annual_holiday .number_base {
    margin-bottom: -32px;
  }
}
.recruit_column .column__item__number.is_annual_holiday .number_base:before {
  content: "";
  position: absolute;
  background-color: #141414;
  transform: rotate(30deg);
  width: 2px;
  top: -23px;
  left: -11px;
  height: 57px;
}
@media screen and (min-width: 768px) {
  .recruit_column .column__item__number.is_annual_holiday .number_base:before {
    top: -36px;
    left: -8px;
    height: 87px;
    height: clamp(66px, 31.091px + 4.545vw, 87px);
  }
}

.recruit__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-block: 60px 38px;
  position: relative;
  padding-block: 0 30px;
}
@media screen and (min-width: 768px) {
  .recruit__heading {
    padding-block: 0 23px;
    margin-block: 100px 45px;
  }
}
.recruit__heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: #415ed3;
}
.recruit__heading .recruit_heading_subtitle {
  font-weight: var(--fw-medium);
  line-height: 1;
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .recruit__heading .recruit_heading_subtitle {
    font-size: 14px;
  }
}
.recruit__heading .recruit_heading_h2 {
  font-weight: var(--fw-medium);
  text-align: center;
  line-height: 1.5;
  font-size: 21px;
  margin-block: 25px 0;
}
@media screen and (min-width: 768px) {
  .recruit__heading .recruit_heading_h2 {
    font-size: 32px;
    margin-block: 30px 0;
  }
}
.recruit__heading .recruit_heading_bottomCopy {
  font-weight: var(--fw-medium);
  line-height: 1;
  margin-top: 15px;
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .recruit__heading .recruit_heading_bottomCopy {
    font-size: 16px;
  }
}

.recruit_cover {
  position: relative;
}
.recruit_cover .recruit_cover__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.recruit_cover .recruit_inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 20px 17px;
}
.recruit_cover .recruit_inner p {
  line-height: 2.08;
}
@media screen and (max-width: 767.98px) {
  .recruit_cover .recruit_inner p {
    font-size: 1.3rem;
    margin-top: 0;
  }
}
@media screen and (max-width: 767.98px) {
  .recruit_cover .recruit_inner .button {
    min-width: 170px;
  }
}
@media screen and (max-width: 767.98px) {
  .recruit_cover .recruit_inner .button + .button {
    margin-top: 20px;
  }
}
.recruit_cover .recruit_inner .button .button__type {
  min-height: 45px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .recruit_cover .recruit_inner .button .button__type {
    min-height: 80px;
  }
}

.box__barrier {
  border: 2px solid #b9c5d5;
  margin-top: 50px;
  padding-inline: 20px;
  padding-block: 30px 55px;
}
@media screen and (min-width: 768px) {
  .box__barrier {
    padding-block: 50px 60px;
  }
}
.box__barrier .media {
  max-width: 910px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .box__barrier .media__head {
    width: 34% !important;
    margin-right: 0 !important;
    padding-right: 20px;
  }
}
.box__barrier .media__head {
  flex-shrink: 0;
  display: flex;
  justify-content: flex-start;
}
.box__barrier .media__head figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.box__barrier .media__head figcaption {
  font-weight: var(--fw-medium);
  color: #202f69;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .box__barrier .media__head figcaption {
    font-size: 20px;
  }
}
.box__barrier .media__body {
  line-height: 1.6875;
}
@media screen and (min-width: 768px) {
  .box__barrier .media__body {
    width: 66% !important;
  }
}

.index__recruit {
  background: #f1f4f7;
  padding: 37px 20px 35px;
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .index__recruit {
    padding: 70px 20px;
    margin-top: 100px;
  }
}
.index__recruit p {
  text-align: center;
}

.index__recruit__heading {
  font-size: 21px;
  font-weight: var(--fw-medium);
  line-height: 1.5;
  color: #202f69;
  margin-block: 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .index__recruit__heading {
    font-size: 26px;
  }
}

.recruit__more {
  padding-block: 30px;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .recruit__more {
    padding-block: 70px;
    padding-inline: 20px;
  }
}

.slider__people__item {
  display: block;
}

.slider__people__item__body {
  margin-top: 16px;
}

.slider__people__item__comment {
  font-size: 13px;
  font-weight: var(--fw-medium);
  line-height: 1.75;
  position: relative;
  padding-right: 20px;
}
@media screen and (min-width: 768px) {
  .slider__people__item__comment {
    line-height: 1.5;
    font-size: 18px;
    font-size: clamp(14px, 7.351px + 0.866vw, 18px);
  }
}
.slider__people__item__comment:after {
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 0;
  overflow: hidden;
  content: "";
  -webkit-backface-visibility: hidden;
  border-top: 2px solid #415ed3;
  border-right: 2px solid #415ed3;
  width: 8px;
  height: 8px;
}

.slider__people__item__meta {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.slider__people__item__meta > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  letter-spacing: 0.06em;
  border: 1px solid #b9c5d5;
  background-color: #fff;
  padding: 5px;
  min-height: 30px;
  min-width: 120px;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .slider__people__item__meta > div {
    min-width: clamp(90px, 40.13px + 6.494vw, 120px);
    font-size: clamp(12px, 8.675px + 0.433vw, 14px);
  }
}

.slider__people__item__profile {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.slider__people__item__name {
  font-size: 26px;
  font-weight: var(--fw-medium);
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .slider__people__item__name {
    font-size: 30px;
  }
}

.slider__people__item__year {
  font-size: 13px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .slider__people__item__year {
    font-size: 16px;
  }
}

.slider__people__navi {
  display: flex;
  align-items: center;
  margin-top: 40px;
  gap: 11px;
}
@media screen and (max-width: 767.98px) {
  .slider__people__navi {
    margin-top: 32px;
    justify-content: center;
  }
}
.slider__people__navi > div {
  position: static !important;
}
.slider__people__navi .swiper-pagination {
  text-align: left;
  margin-left: 21px;
  --swiper-pagination-color: #202f69;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-inactive-color: #d7d7d7;
  line-height: 0;
  flex-grow: 0;
  width: auto;
}
.slider__people__navi .slider__people__button-prev,
.slider__people__navi .slider__people__button-next {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border: 2px #415ed3 solid;
  align-self: stretch;
  padding-inline: 10px;
  gap: 6px;
  transition: all 0.3s ease;
  width: 55px;
  height: 55px;
  cursor: pointer;
}
@media (hover: hover) {
  .slider__people__navi .slider__people__button-prev:hover,
  .slider__people__navi .slider__people__button-next:hover {
    background-color: #415ed3;
    border-color: #415ed3;
  }
  .slider__people__navi .slider__people__button-prev:hover::before,
  .slider__people__navi .slider__people__button-next:hover::before {
    border-color: #fff;
  }
}
.slider__people__navi .slider__people__button-prev:before,
.slider__people__navi .slider__people__button-next:before {
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  position: relative;
  border-color: #415ed3;
  border-width: 2px;
  border-style: solid solid none none;
  transform: rotate(45deg);
}
.slider__people__navi .slider__people__button-prev:before {
  transform: rotate(-135deg);
}

.page_navi {
  display: flex;
  align-items: center;
  margin-top: 60px;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (min-width:540px) {
  .page_navi {
    justify-content: space-between;
    flex-wrap: nowrap;
    margin-top: 100px;
  }
}

.page_nav__index {
  order: 3;
}
@media screen and (min-width:540px) {
  .page_nav__index {
    order: 2;
  }
}

.page_navi__prev,
.page_navi__next {
  align-self: stretch;
}
.page_navi__prev a,
.page_navi__next a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px #b9c5d5 solid;
  align-self: stretch;
  gap: 6px;
  line-height: 1;
  transition: all 0.3s ease;
  height: 100%;
  padding-block: 10px 12px;
  min-height: 44px;
}
@media (hover: hover) {
  .page_navi__prev a:hover,
  .page_navi__next a:hover {
    background-color: #415ed3;
    border-color: #415ed3;
    color: #f1f4f7;
  }
  .page_navi__prev a:hover:before, .page_navi__prev a:hover:after,
  .page_navi__next a:hover:before,
  .page_navi__next a:hover:after {
    border-color: #fff;
  }
}
.page_navi__prev.no-link a,
.page_navi__next.no-link a {
  cursor: default;
  pointer-events: none;
  opacity: 0.3;
}

.page_navi__prev {
  order: 1;
}
.page_navi__prev a {
  padding-inline: 15px 10px;
}
.page_navi__prev a::before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  position: relative;
  border-top: 2px solid #415ed3;
  border-right: 2px solid #415ed3;
  vertical-align: middle;
  content: "";
  transform: rotate(-135deg);
  margin-top: 2px;
  flex-shrink: 0;
}

.page_navi__next {
  order: 2;
}
@media screen and (min-width:540px) {
  .page_navi__next {
    order: 3;
  }
}
.page_navi__next a {
  padding-inline: 10px 15px;
  display: flex;
}
.page_navi__next a::after {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  position: relative;
  border-top: 2px solid #415ed3;
  border-right: 2px solid #415ed3;
  vertical-align: middle;
  content: "";
  transform: rotate(45deg);
  margin-top: 2px;
  flex-shrink: 0;
}

.recruit__more {
  background-color: #415ed3;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-block: 40px 50px;
  padding-inline: 20px;
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .recruit__more {
    margin-top: 100px;
    padding-block: 58px 74px;
  }
}
.recruit__more .recruit__more__inner {
  max-width: 1170px;
  margin: 0 auto;
}
.recruit__more .recruit__more__heading {
  color: #fff;
  font-size: 19px;
  font-weight: var(--fw-medium);
  margin-block: 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .recruit__more .recruit__more__heading {
    font-size: 22px;
  }
}
.recruit__more .button-wrap {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .recruit__more .button-wrap {
    margin-top: 46px;
  }
}
.recruit__more .button .button__type {
  min-height: 42px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .recruit__more .button .button__type {
    min-height: 80px;
  }
}
@media (hover: hover) {
  .recruit__more .button .button__type:hover {
    border: 2px solid #b9c5d5;
  }
}

.recruit-message {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2em;
}
@media screen and (min-width: 768px) {
  .recruit-message {
    grid-template-columns: 1fr 28%;
    gap: 3em;
  }
}
.recruit-message .recruit-message__image {
  order: 1;
  text-align: center;
}
.recruit-message .recruit-message__image img {
  max-width: 250px;
}
@media screen and (min-width: 768px) {
  .recruit-message .recruit-message__image {
    order: 2;
  }
  .recruit-message .recruit-message__image img {
    max-width: 100%;
  }
}
.recruit-message .recruit-message__text {
  order: 2;
}
.recruit-message .recruit-message__text > p:first-child {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .recruit-message .recruit-message__text {
    order: 1;
  }
}

.table__cell .unorder-list > li {
  margin-top: 0.1em;
}
.table__cell .footnote {
  margin-top: 0.1em;
}

.entry-flow {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-block: 2em 3em;
  padding-left: 0;
}
@media screen and (min-width: 900px) {
  .entry-flow {
    flex-direction: row;
    gap: 20px;
    margin-block: 2em 4em;
  }
}
.entry-flow .entry-flow_item {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background-color: #f1f4f7;
  padding-block: 30px 30px;
  padding-inline: 20px;
  position: relative;
  flex: 1 1 0;
}
.entry-flow .entry-flow_item::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 15px 20px 0 20px;
  border-style: solid solid none solid;
  border-color: #b9c5d5 transparent transparent transparent;
}
@media screen and (min-width: 900px) {
  .entry-flow .entry-flow_item::after {
    top: 50%;
    right: -30px;
    bottom: auto;
    left: auto;
    border-width: 15px 20px 0 20px;
    transform: translateY(-50%) rotate(-90deg);
  }
}
.entry-flow .entry-flow_item:last-child::after {
  content: none;
}
.entry-flow .entry-flow__image {
  background-color: #fff;
  margin-inline: auto;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.entry-flow .entry-flow__image img {
  width: 60%;
  height: 60%;
  -o-object-fit: contain;
     object-fit: contain;
}
.entry-flow .entry-flow__content {
  color: #202f69;
  font-weight: var(--fw-medium);
  font-size: 16px;
  text-align: center;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .entry-flow .entry-flow__content {
    font-size: 13px;
  }
}
@media screen and (min-width: 1230px) {
  .entry-flow .entry-flow__content {
    font-size: 18px;
  }
}
.entry-flow .entry-flow__content .entry-flow__subcaption {
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .entry-flow .entry-flow__content .entry-flow__subcaption {
    font-size: 11px;
  }
}
@media screen and (min-width: 1230px) {
  .entry-flow .entry-flow__content .entry-flow__subcaption {
    font-size: 14px;
  }
}

.entry-button {
  margin-top: 2em;
}
@media screen and (min-width: 768px) {
  .entry-button {
    margin-top: 4em;
  }
}
.entry-button .button__type--blank {
  align-items: center;
  min-height: 45px;
}
@media screen and (min-width: 768px) {
  .entry-button .button__type--blank {
    min-height: 80px;
  }
}

.is_our-numbers .Main__content > section + section {
  margin-top: 60px;
}

.review-index {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .review-index {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media screen and (min-width: 900px) {
  .review-index {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

.review-index__item {
  background-color: #f1f4f7;
}
.review-index__item .slider__people__item__body {
  padding-block: 0 25px;
  padding-inline: 20px;
}

.review__people__item {
  display: block;
}
@media (hover: hover) {
  .review__people__item:hover {
    opacity: 0.7;
  }
}
.review__people__item figure {
  text-align: center;
}

.interview__intro {
  background-color: #f6f7fa;
  margin: 2em auto 0;
  padding-block: 2em 2em;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .interview__intro {
    padding-block: 2em 2em;
    padding-inline: 7em;
  }
}

@media screen and (min-width: 768px) {
  .is_interview_single .index-v4__head {
    width: 41% !important;
    align-self: flex-start;
  }
}
.is_interview_single .index-v4__body {
  width: 100%;
}
.is_interview_single .index-v4__lead {
  margin-top: 0;
  font-size: clamp(16px, -0.623px + 2.165vw, 26px);
}
@media screen and (max-width: 767.98px) {
  .is_interview_single .index-v4__lead {
    font-size: 18px;
  }
  .is_interview_single .index-v4__lead br {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .is_interview_single [data-size-pc="2col"] {
    width: 41% !important;
    margin-top: 0.5em;
  }
}

.our_numbers__column {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .our_numbers__column {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 40px;
    -moz-column-gap: 42px;
         column-gap: 42px;
    row-gap: 35px;
  }
}
.our_numbers__column .column__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding-block: 30px 20px;
  padding-inline: 20px;
  border: 1px solid #b9c5d5;
  min-height: 205px;
}
@media screen and (min-width: 768px) {
  .our_numbers__column .column__item {
    gap: 20px;
    padding-block: 55px 30px;
    padding-inline: 37px;
    min-height: 300px;
  }
}
.our_numbers__column .column__item figure {
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .our_numbers__column.is_2col .column__item {
    padding-block: 30px;
  }
}
.our_numbers__column .column__heading {
  font-weight: var(--fw-medium);
  text-align: center;
  line-height: 1.5;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .our_numbers__column .column__heading {
    font-size: 24px;
  }
}
.our_numbers__column .column__heading .is_large {
  font-size: 1.6em;
  color: #415dd2;
  padding-inline: 3px;
  line-height: 1.2;
}
.our_numbers__column .column__text {
  margin-top: 0.6em;
}
@media screen and (min-width: 768px) {
  .our_numbers__column.is_2col {
    grid-template-columns: repeat(2, 1fr);
  }
  .our_numbers__column.is_2col .column__item {
    flex-direction: row;
    min-height: 200px;
    gap: 40px;
    padding-inline: 40px;
  }
  .our_numbers__column.is_2col .column__heading {
    text-align: left;
  }
}

.is_welfare .corporate-heading {
  margin-top: 55px;
}
@media screen and (min-width: 768px) {
  .is_welfare .corporate-heading {
    margin-top: 90px;
  }
}
.is_welfare h3 {
  font-size: 21px;
  font-weight: var(--fw-medium);
  line-height: 1.4;
  margin-top: 60px;
  color: #202f69;
}
@media screen and (min-width: 768px) {
  .is_welfare h3 {
    font-size: 26px;
    margin-top: 57px;
  }
}

.evaluation__cover {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 50px;
  padding-block: 40px;
  padding-inline: 20px;
  background-color: #f6f7fa;
}
@media screen and (min-width: 768px) {
  .evaluation__cover {
    background: linear-gradient(to bottom, #f6f7fa 0%, #f6f7fa 50%, #415ed3 50%, #415ed3 100%);
    padding-block: 74px;
  }
}

.evaluation__cover__inner {
  max-width: 1170px;
  margin: 0 auto;
}

.evaluation__column {
  display: grid;
  grid-template-columns: 1fr;
  gap: 82px;
}
@media screen and (min-width: 768px) {
  .evaluation__column {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}
.evaluation__column .column__item {
  position: relative;
}
@media screen and (max-width: 767.98px) {
  .evaluation__column .column__item::after {
    content: "";
    position: absolute;
    width: 100vw;
    height: 188px;
    background-color: #415ed3;
    left: -20px;
    bottom: -42px;
    z-index: 1;
  }
}
.evaluation__column .column__item__inner {
  background-color: #fff;
  padding-inline: 24px;
  padding-block: 27px 44px;
}
@media screen and (min-width: 768px) {
  .evaluation__column .column__item__inner {
    padding-block: 27px 78px;
  }
}
.evaluation__column .column__item__inner {
  position: relative;
  z-index: 2;
  height: 100%;
}
.evaluation__column .column__item__inner figure {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 214px;
}
.evaluation__column .column__heading {
  font-size: 19px;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .evaluation__column .column__heading {
    font-size: 22px;
  }
}
.evaluation__column .column__heading {
  font-weight: var(--fw-medium);
  line-height: 1.4;
  color: #202f69;
  text-align: center;
}
.evaluation__column .column__text {
  font-size: 13px;
  line-height: 1.69;
  text-align: left;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .evaluation__column .column__text {
    margin-top: 25px;
    font-size: 16px;
  }
}

.facility_column {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .facility_column {
    margin-top: 50px;
  }
  .facility_column.is_2col {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .facility_column.is_2col .column__item {
    min-height: 340px;
    padding-inline: 43px;
  }
  .facility_column.is_3col {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  .facility_column.is_3col .column__item {
    min-height: 406px;
    padding-inline: 20px;
  }
}
.facility_column + .facility_column {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .facility_column + .facility_column {
    margin-top: 50px;
  }
}
.facility_column .column__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f6f7fa;
  gap: 15px;
  padding: 20px;
  min-height: 205px;
  padding-inline: 20px;
  padding-block: 33px 50px;
  gap: 31px;
  min-height: 315px;
}
@media screen and (min-width: 768px) {
  .facility_column .column__item {
    gap: 36px;
    padding-block: 20px 20px;
  }
}
.facility_column .column__heading {
  font-size: 19px;
  font-weight: var(--fw-medium);
  line-height: 1.4;
  color: #202f69;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .facility_column .column__heading {
    font-size: 22px;
    line-height: 1.7;
  }
}
.facility_column .column__text {
  font-size: 13px;
  line-height: 1.69;
  text-align: left;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .facility_column .column__text {
    margin-top: 30px;
    font-size: 16px;
  }
}

.other_welfare_column {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}
@media screen and (min-width: 768px) {
  .other_welfare_column {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 40px;
         column-gap: 40px;
    row-gap: 36px;
  }
}
.other_welfare_column .column__item {
  border: 1px solid #b9c5d5;
  padding-block: 30px 45px;
  padding-inline: 18px;
}
@media screen and (min-width: 768px) {
  .other_welfare_column .column__item {
    padding-block: 39px 47px;
    padding-inline: 35px;
  }
}
.other_welfare_column .column__heading {
  font-size: 19px;
  font-weight: var(--fw-medium);
  line-height: 1.4;
  color: #202f69;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .other_welfare_column .column__heading {
    font-size: 22px;
    line-height: 1.7;
  }
}
.other_welfare_column .unorder-list {
  margin-top: 20px;
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .other_welfare_column .unorder-list {
    font-size: 16px;
  }
}
.other_welfare_column .unorder-list > li {
  margin-top: 0.5em;
}

.education-box {
  background-color: #f6f7fa;
  margin-top: 36px;
  padding-block: 45px 60px;
  padding-inline: 18px;
}
@media screen and (min-width: 768px) {
  .education-box {
    margin-top: 50px;
    padding-block: 60px 70px;
    padding-inline: 83px;
  }
}
.education-box h3 {
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .education-box h3 {
    font-size: 18px;
  }
}
.education-box h3 {
  margin-bottom: 0;
  margin-top: 0;
  color: #415ed3;
}
.education-box p {
  line-height: 1.69;
  margin-bottom: 0;
  font-size: 13px;
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .education-box p {
    font-size: 16px;
    margin-top: 23px;
  }
}
.education-box p + h3 {
  margin-top: 35px;
}
@media screen and (min-width: 768px) {
  .education-box p + h3 {
    margin-top: 50px;
  }
}

/* ----- news-pulldown-navi ----- */
.news-pulldown-navi__inner {
  position: relative;
  border: 2px solid #b9c5d5;
}
.news-pulldown-navi__inner:after {
  display: inline-block;
  position: absolute;
  top: 50%;
  content: "";
}

.news-pulldown-navi__select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background: none;
  padding: 0.7em 2.4em 0.8em 1.8em;
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  .news-pulldown-navi__select {
    padding: 0.6em 2.2em 0.6em 1.3em;
    cursor: pointer;
  }
}

.news-pulldown-navi-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .news-pulldown-navi-wrap {
    flex-direction: row;
    gap: 20px;
  }
}

.news-pulldown-navi {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .news-pulldown-navi {
    width: 233px;
  }
}

.news-pulldown-navi__inner:after {
  right: 1.3em;
  margin-top: -1px;
  border-top: 6px solid #415ed3;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-radius: 2px;
}
@media screen and (min-width: 768px) {
  .news-pulldown-navi__inner {
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  }
  .news-pulldown-navi__inner:hover {
    opacity: 0.7;
  }
  .news-pulldown-navi__inner:after {
    right: 1.2em;
    margin-top: -3px;
    border-top: 7px solid #415ed3;
    border-right: 6.5px solid transparent;
    border-left: 6.5px solid transparent;
    border-radius: 2px;
  }
}

.news-article-wrap {
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .news-article-wrap {
    margin-top: 1.6em;
  }
}

.news-article {
  border-top: 1px solid #dedede;
}
.news-article:nth-last-of-type(1) {
  border-bottom: 1px solid #dedede;
}
.news-article .news-article__type {
  display: block;
  position: relative;
  padding: 1.8em 3.6em 1.8em 0;
}
.news-article .news-article__type:after {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 5px;
  content: "";
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  border-color: #415ed3;
  border-width: 2px;
  border-style: solid solid none none;
}
@media screen and (min-width: 768px) {
  .news-article .news-article__type {
    padding: 1.8em 3.6em 1.8em 0;
  }
}
@media (hover: hover) {
  .news-article .news-article__type:hover:hover {
    background-color: #eaf0f5;
  }
  .news-article .news-article__type:hover:hover .news-article__title {
    color: #415ed3;
  }
}

.news-article__title {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .news-article__title {
    font-size: 1.6rem;
    font-weight: 400;
  }
}

.news-article__property {
  display: flex;
  align-items: center;
  flex-flow: row wrap;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 768px) {
  .news-article__property {
    margin-bottom: 1em;
  }
}

.news-article__date {
  min-width: 9em;
  color: #6d6d6d;
  margin-right: 0.8em;
  font-size: 1.1rem;
}
@media screen and (min-width: 768px) {
  .news-article__date {
    margin-right: 1em;
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 768px) {
  .news-article__category {
    display: flex;
    align-items: center;
  }
}

.news-article__head {
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .news-article__head {
    width: 90px;
    margin-right: 1.875em;
  }
}

.news-article__body {
  width: 100%;
}

.news-article__body > *:first-child,
.news-article__body > section:first-child > *:first-child,
.news-article__body > [class^=list-wrap] > *:first-child {
  margin-top: 0 !important;
}

.news-article__title {
  margin: 0;
}

.news-article__property {
  display: flex;
  align-items: center;
}

.news-article__date {
  min-width: 9em;
  color: #6d6d6d;
}

.news-article__status {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .news-article__status {
    margin-left: 0.5em;
  }
}

.news-article__status > * {
  margin-right: 8px;
}

.news-article__filesize {
  margin-left: 0.5em;
  font-family: "Heebo", "Noto Sans JP", Arial, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", Osaka, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: normal;
}

.news-article__image {
  border: 1px solid #cccccc;
}

@media screen and (min-width: 768px) {
  [data-sidebar=true] .Main__body {
    max-width: 1170px;
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  [data-sidebar=true] .Main__assist {
    width: 100%;
    padding-inline: 20px;
  }
}
@media screen and (min-width: 900px) {
  [data-sidebar=true] .Main__assist {
    width: 250px;
    padding-right: 0;
    padding-left: 40px;
  }
}

@media screen and (min-width: 768px) {
  [data-sidebar=true] .Main__content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 899.9px) {
  [data-sidebar=true] .Main__content {
    width: 100%;
  }
}
@media screen and (min-width: 900px) {
  [data-sidebar=true] .Main__content {
    padding-right: 0;
  }
}
@media screen and (min-width: 1230px) {
  [data-sidebar=true] .Main__content {
    padding-left: 0;
  }
}

ul.anchor-navi__list.is-left {
  justify-content: flex-start;
  flex-wrap: wrap;
}

.Main__head {
  position: relative;
  --head-content-padding: 20px;
}
@media screen and (min-width: 768px) {
  .Main__head {
    --head-content-padding: 40px;
  }
}

.Main__head__content {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  color: #fff;
  display: flex;
  padding-inline: var(--head-content-padding);
  padding-block: 40px;
  align-items: stretch;
}
@media screen and (min-width: 768px) {
  .Main__head__content {
    align-items: center;
  }
}

.home-hero-content {
  max-width: 1600px;
  width: 100%;
  margin-inline: auto;
  text-shadow: 2px 2px 10px #636363;
}

.home-hero-copy {
  font-size: 34px;
  font-weight: var(--fw-bold);
  line-height: 1.33;
  letter-spacing: 0.046em;
}
@media screen and (min-width: 768px) {
  .home-hero-copy {
    font-size: 64px;
    font-size: clamp(35px, -0.241px + 4.589vw, 64px);
  }
}

.home-hero-subcopy {
  letter-spacing: 0.046em;
  font-size: 16px;
  line-height: 1.56;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .home-hero-subcopy {
    line-height: 1.75;
    margin-top: 34px;
    margin-top: clamp(15px, -8.089px + 3.006vw, 34px);
    font-size: clamp(16px, 6.278px + 1.266vw, 24px);
  }
}

.home-carousel {
  max-width: 1920px;
  margin: 0 auto;
}

.home-carousel__control__wrapper {
  position: absolute;
  z-index: 2;
  left: 0;
  padding-inline: var(--head-content-padding);
  width: 100%;
  bottom: 36px;
}
@media screen and (min-width: 768px) {
  .home-carousel__control__wrapper {
    bottom: clamp(14px, -12.734px + 3.481vw, 36px);
  }
}

.home-carousel__control {
  max-width: 1400px;
  margin-inline: auto;
  width: 100%;
  display: flex;
  gap: 27px;
  align-items: center;
  justify-content: flex-start;
}
.home-carousel__control .swiper-pagination {
  position: relative;
  display: flex;
  align-items: center;
  gap: 17px;
  width: auto !important;
  --swiper-pagination-color: #202f69;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-inactive-color: #d7d7d7;
  --swiper-pagination-bottom: auto;
  --swiper-pagination-top: auto;
  --swiper-pagination-bullet-horizontal-gap: 0;
}
.home-carousel__control .swiper-pagination .swiper-pagination-bullet {
  transition: opactiy var(--transition);
}
@media (hover: hover) {
  .home-carousel__control .swiper-pagination .swiper-pagination-bullet:hover {
    opacity: 0.6;
  }
}

.home-carousel__button--pause,
.home-carousel__button--play {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: transparent;
  font-size: 0;
  line-height: 0;
  transition: opacity var(--transition);
}
@media screen and (min-width: 768px) {
  .home-carousel__button--pause,
  .home-carousel__button--play {
    width: 10px;
    height: 12px;
    cursor: pointer;
  }
}
.home-carousel__button--pause::before,
.home-carousel__button--play::before {
  content: "";
  display: block;
  width: 13px;
  height: 16px;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .home-carousel__button--pause::before,
  .home-carousel__button--play::before {
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  }
}
@media (hover: hover) {
  .home-carousel__button--pause:hover,
  .home-carousel__button--play:hover {
    opacity: 0.6;
  }
}

.home-carousel__button--pause:before {
  background-image: url(/ksn/app-files/img/home/icon_pause.svg);
  width: 13px;
  height: 16px;
}

.home-carousel__button--play:before {
  background-image: url(/ksn/app-files/img/home/icon_play.svg);
}

/* v2 */
.home-card-v2 {
  display: grid;
  margin: 4.62em 0 0;
  grid-template-columns: repeat(1, 1fr);
  gap: 26px;
}
@media screen and (min-width: 768px) {
  .home-card-v2 {
    gap: 40px;
    grid-template-columns: repeat(2, 1fr);
    margin: 6.25em 0 0;
  }
}

.home-card-v2__item {
  gap: 0;
  display: grid;
  grid-row: span 2;
  grid-template-rows: subgrid;
}
.home-card-v2__item > [class*=__type] {
  gap: inherit;
  display: inherit;
  grid-row: inherit;
  grid-template-rows: inherit;
}
.home-card-v2__item > [class*=__type]:not([class*=__type--nolink]) .home-card-v2__heading {
  position: relative;
}
@media screen and (min-width: 768px) {
  .home-card-v2__item > [class*=__type]:not([class*=__type--nolink]) .home-card-v2__heading {
    padding-right: 40px;
  }
}
.home-card-v2__item > [class*=__type]:not([class*=__type--nolink]) .home-card-v2__heading:after {
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 5px;
  overflow: hidden;
  content: "";
  -webkit-backface-visibility: hidden;
  border-top: 2px solid #415ed3;
  border-right: 2px solid #415ed3;
  width: 6px;
  height: 6px;
}
@media screen and (min-width: 768px) {
  .home-card-v2__item > [class*=__type]:not([class*=__type--nolink]) .home-card-v2__heading:after {
    width: 8px;
    height: 8px;
  }
}

.home-card-v2__head > *:first-child,
.home-card-v2__head > section:first-child > *:first-child,
.home-card-v2__head > [class^=list-wrap] > *:first-child {
  margin-top: 0 !important;
}

.home-card-v2__body {
  position: relative;
  background: #fff;
}
.home-card-v2__body > *:first-child,
.home-card-v2__body > section:first-child > *:first-child,
.home-card-v2__body > [class^=list-wrap] > *:first-child {
  margin-top: 0 !important;
}
.home-card-v2__body {
  margin: -29px 0 0 29px;
  padding: 31px 0 0 28px;
}
@media screen and (min-width: 768px) {
  .home-card-v2__body {
    margin: -50px 0 0 50px;
    padding: 34px 0 0 43px;
  }
}

.home-card-v2__image {
  background: #fff;
}
.home-card-v2__image img {
  width: 100%;
}

.home-card-v2__title,
.home-card-v2__subtitle {
  color: #202f69;
}

.home-card-v2__title {
  margin: 0;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .home-card-v2__title {
    font-size: 2.6rem;
    font-weight: 400;
  }
}

.home-card-v2__subtitle {
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .home-card-v2__subtitle {
    margin: 0.375em 0 0;
  }
}

.home-card-v2__text {
  margin-block: 1.3846em 3.2em;
  margin-inline: 0 2em;
  line-height: 1.69;
}
@media screen and (min-width: 768px) {
  .home-card-v2__text {
    margin: 1em 0 0;
    line-height: 1.63;
  }
}

.home-heading-v2 {
  gap: 0 30px;
  display: flex;
  align-items: center;
  margin: 5.5625em 0 0;
}

.home-heading-v2__head {
  gap: 0 20px;
  display: flex;
  align-items: baseline;
  width: calc((100% - 60px) / 3);
}

.home-heading-v2__body {
  flex: 1 1;
}

.home-heading-v2__title {
  font-size: 4.2rem;
  font-weight: 400;
}

.home-heading-v2__subtitle {
  font-weight: 500;
}

.home-heading-v2__text {
  line-height: 2;
}

/* ----- home-box ----- */
.home-box {
  --_background-color: #f6f7fa;
  border-width: 0;
  border-image-slice: 0 fill;
  border-image-source: linear-gradient(var(--_background-color), var(--_background-color));
  margin: 4.6154em 0 0;
  padding: 49px 0 60.5px;
  border-image-outset: 0 100vw;
}
@media screen and (min-width: 768px) {
  .home-box {
    gap: 0 45px;
    display: flex;
    margin: 6.25em -30px 0 0;
    padding-block: 101px 120px;
    border-image-outset: 0 100vw 0 0;
    padding-left: clamp(20px, -112.987px + 17.316vw, 100px);
    padding-right: 20px;
  }
}
@media screen and (min-width: 1500px) {
  .home-box {
    padding-inline: 100px 0;
  }
}

.home-box__head > *:first-child,
.home-box__head > section:first-child > *:first-child,
.home-box__head > [class^=list-wrap] > *:first-child {
  margin-top: 0 !important;
}
@media screen and (min-width: 768px) {
  .home-box__head .button {
    margin-top: 0;
  }
}
.home-box__head .button .button__type {
  min-width: auto;
  width: 100%;
  justify-content: center;
}
.home-box__head .home-button {
  margin-top: 2.6154em;
}
@media screen and (min-width: 768px) {
  .home-box__head .home-button {
    max-width: 235px;
    margin-top: 3.6875em;
  }
}
@media screen and (min-width: 768px) {
  .home-box__head > .home-heading-v3:first-child {
    margin-top: -0.75em !important;
  }
}

.home-box__body > *:first-child,
.home-box__body > section:first-child > *:first-child,
.home-box__body > [class^=list-wrap] > *:first-child {
  margin-top: 0 !important;
}
.home-box__body {
  margin: 1.0769em 0 0;
}
@media screen and (min-width: 768px) {
  .home-box__body {
    margin-top: 0;
    flex: 1 1;
  }
}

.home-box > *:first-child,
.home-box > section:first-child > *:first-child,
.home-box > [class^=list-wrap] > *:first-child {
  margin-top: 0 !important;
}

/* ----- home-news ----- */
.home-news {
  --_border: 1px solid #dedede;
}
@media screen and (min-width: 768px) {
  .home-news {
    border-top: var(--_border);
  }
}

.home-news__article {
  border-bottom: var(--_border);
}
.home-news__article .home-news__type,
.home-news__article .home-news__type--blank,
.home-news__article .home-news__type--pdf,
.home-news__article .home-news__type--nolink {
  display: block;
  position: relative;
  padding: 27px 0 17px 0;
}
@media screen and (min-width: 768px) {
  .home-news__article .home-news__type,
  .home-news__article .home-news__type--blank,
  .home-news__article .home-news__type--pdf,
  .home-news__article .home-news__type--nolink {
    padding: 29px 0;
  }
}
.home-news__article .home-news__type:after,
.home-news__article .home-news__type--blank:after,
.home-news__article .home-news__type--pdf:after {
  translate: 0 -50%;
  position: absolute;
  top: 50%;
  overflow: hidden;
  content: "";
  right: 2px;
}
@media screen and (min-width: 768px) {
  .home-news__article .home-news__type:after,
  .home-news__article .home-news__type--blank:after,
  .home-news__article .home-news__type--pdf:after {
    right: -2px;
  }
}
.home-news__article .home-news__type--blank:after,
.home-news__article .home-news__type--pdf:after {
  -webkit-mask: url("/kof/img/index_ic03.svg") no-repeat center/contain;
  mask: url("/kof/img/index_ic03.svg") no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .home-news__article .home-news__type--blank:after,
  .home-news__article .home-news__type--pdf:after {
    right: 0;
    width: 13px;
    height: 13px;
  }
}
.home-news__article .home-news__type,
.home-news__article .home-news__type--blank,
.home-news__article .home-news__type--pdf {
  padding-right: 35px;
}
@media screen and (min-width: 768px) {
  .home-news__article .home-news__type,
  .home-news__article .home-news__type--blank,
  .home-news__article .home-news__type--pdf {
    padding-right: 60px;
  }
}
@media screen and (min-width: 768px) {
  .home-news__article .home-news__type .home-news__title,
  .home-news__article .home-news__type--blank .home-news__title,
  .home-news__article .home-news__type--pdf .home-news__title {
    transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  }
  .home-news__article .home-news__type:hover,
  .home-news__article .home-news__type--blank:hover,
  .home-news__article .home-news__type--pdf:hover {
    background-color: #eaf0f5;
  }
  .home-news__article .home-news__type:hover .home-news__title,
  .home-news__article .home-news__type:hover .home-news__title,
  .home-news__article .home-news__type:hover .home-news__title,
  .home-news__article .home-news__type--blank:hover .home-news__title,
  .home-news__article .home-news__type--blank:hover .home-news__title,
  .home-news__article .home-news__type--blank:hover .home-news__title,
  .home-news__article .home-news__type--pdf:hover .home-news__title,
  .home-news__article .home-news__type--pdf:hover .home-news__title,
  .home-news__article .home-news__type--pdf:hover .home-news__title {
    color: #415ed3;
  }
}

.home-news__property {
  gap: 2.5px 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .home-news__property {
    min-height: 23px;
  }
}

.home-news__date {
  color: #6d6d6d;
  line-height: 1.1;
}
@media screen and (min-width: 768px) {
  .home-news__date {
    min-width: 9em;
    padding: 0 0 0.0714em;
    font-size: 1.4rem;
  }
}

.home-news__status {
  gap: 2.5px 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.home-news__title {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .home-news__title {
    font-size: 1.6rem;
    font-weight: 400;
  }
}

.home-news__caption {
  margin: 0.8125em 0 0;
}
@media screen and (min-width: 768px) {
  .home-news__caption {
    margin: 0.8125em 0 0;
  }
}

/* v3 */
.home-heading-v3 {
  color: #202f69;
}

.home-heading-v3__title {
  margin: 0;
  line-height: 1.4;
  font-size: 2.8rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .home-heading-v3__title {
    font-size: 4.2rem;
    font-weight: 400;
  }
}

.home-heading-v3__subtitle {
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .home-heading-v3__subtitle {
    margin: 0.1538em 0 0;
    font-weight: 500;
  }
}
@media screen and (min-width: 768px) {
  .home-heading-v3__subtitle {
    margin: 0.5em 0 0;
    font-weight: 500;
  }
}

.home-heading-v3 > *:first-child,
.home-heading-v3 > section:first-child > *:first-child,
.home-heading-v3 > [class^=list-wrap] > *:first-child {
  margin-top: 0 !important;
}

/* ----- home-badge ----- */
.home-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #415ed3;
  background: #fff;
  color: #415ed3;
  font-style: normal;
  min-width: 92px;
  padding: 0 10px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 19px;
}
@media screen and (min-width: 768px) {
  .home-badge {
    min-width: 114px;
    padding: 0 14px 1px 14px;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 20px;
  }
}

.home-badge-v2--plan,
.home-badge-v2--start,
.home-badge-v2--end {
  padding: 4px 10px;
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .home-badge-v2--plan,
  .home-badge-v2--start,
  .home-badge-v2--end {
    padding: 3px 8px 4.5px;
    font-size: 1.1rem;
    font-weight: 500;
  }
}

.home-badge-v3 {
  --_icon-side: 15px;
  padding-left: 20px;
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .home-badge-v3 {
    --_icon-side: 17px;
    padding-left: 22px;
    font-size: 1.2rem;
    font-weight: 500;
  }
}

.home-filesize {
  --_pdf-icon-width: 17px;
  font-size: 1.3rem;
  font-weight: 400;
}

.home-filesize:after {
  height: 20px;
}

@media screen and (min-width: 768px) {
  .home .media[data-media-v-align-pc=center] {
    align-items: center;
  }
}
.home .media.has-background-banner {
  position: relative;
  color: #fff;
}
.home .media.has-background-banner::before {
  margin-left: calc(-50vw + 50%);
  content: "";
  background-color: #415ed3;
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .home .media.has-background-banner::before {
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    z-index: -1;
    width: 100vw;
    height: calc(100% - 60px);
  }
}
.home .media .media__head {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-top: 0 !important;
}
@media screen and (min-width: 768px) {
  .home .media .media__head {
    width: 46%;
    margin-left: 8px !important;
  }
}
.home .media .media__image img {
  width: 100%;
}
.home .media .media__body {
  padding-block: 32px 47px;
  background-color: #415ed3;
}
@media screen and (min-width: 768px) {
  .home .media .media__body {
    padding-inline: 30px;
    padding-block: clamp(20px, -6.597px + 3.463vw, 36px);
    margin-block: 30px;
  }
}
@media screen and (min-width: 1230px) {
  .home .media .media__body {
    padding-inline: 0;
  }
}
@media screen and (max-width: 767.98px) {
  .home .emergency .emergency__type {
    padding-inline: clamp(30px, 3.571px + 8.259vw, 67px);
  }
}

.home .card-wrap,
.is_business .card-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .home .card-wrap,
  .is_business .card-wrap {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3.377px + 2.165vw, 30px);
  }
}
.home .card-wrap .card-v2,
.is_business .card-wrap .card-v2 {
  width: 100%;
  margin-inline: 0 !important;
  margin-block: 0 !important;
}/*# sourceMappingURL=style.css.map */