@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* 大枠 */
:root {
  /* Typography (base) */
  --font-family-base: 'Zen Kaku Gothic New', sans-serif;
  --font-family-en: 'Montserrat', sans-serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --line-height-base: 1.6;
  /* Colors (base) */
  --Brand-color-Primary: #0757B2;
  --Brand-color-Primary-Deep: #06468F;
  --Object-Primary: #36363B;
  --Object-Secondary: #4D5C80;
  --Object-Disabled: #A2A9B3;
  --Object-Primary-Reverse: #FFFFFF;
  --Object-Attention: #0757B2;
  --Object-News-Date: #4D5C80;
  --Object-News-Attention: #D81833;
  --Background-Primary: #FFFFFF;
  --Background-Primary-Base: #EDF6FA;
  --Background-Secondary: #FFFFFF;
  --Background-Tertiary: #E1F2FA;
  --Background-Tag-Attention: #FFEAEE;
  --Background-Quaternary: #EEF0F3;
  --Line-Primary: #CED0D9;
  --Line-News: #E4E6F0;
  --Line-Secondary: #E6E8F0;
  /* Radius */
  --Corner-Radius-Circle: 9999px;
  /* Type scale (PC base) */
  --Heading-H1-JA: 48px;
  --Heading-H1-EN: 18px;
  --Heading-H1: 54px;
  --Heading-H2: 29px;
  --Heading-H3: 23px;
  --Heading-H4: 20px;
  --Heading-H5: 18px;
  --Heading-ArticleTitle: 40px;
  --Heading-H4: 20px;
  --Label-Medium: 16px;
  --Label-Small: 14px;
  --Label-X-Small: 13px;
  --Caption-X-Small: 12px;
  --Footer-Copyright: 12px;
  /* News section tokens (PC base) */
  --News-Item-Title-Size: 16px;
  --News-Item-Date-Size: 13px;
  --News-Category-Width: 144px;
  --News-Section-Title-Size: 16px;
  --News-Category-Size: 13px;
  --News-New-Size: 13px;
  /* SP base */
}
@media screen and (max-width: 767px) {
  :root {
    --Heading-H1-JA: 32px;
    --Heading-H1-EN: 14px;
    --Heading-H1: 32px;
    --Heading-H2: 24px;
    --Heading-H3: 20px;
    --Heading-H4: 18px;
    --Heading-H5: 16px;
    --Heading-ArticleTitle: 24px;
    --Label-Medium: 15px;
    --Label-Small: 13px;
    --Label-X-Small: 12px;
    --Caption-X-Small: 12px;
    --Footer-Copyright: 11px;
    --News-Item-Title-Size: 15px;
    --News-Item-Date-Size: 13px;
    --News-Category-Width: 128px;
    --News-Section-Title-Size: 14px;
    --News-Category-Size: 13px;
    --News-New-Size: 13px;
  }
}

.group_icon_bg {
  background: linear-gradient(134.65deg, #C6E3F5 -1.56%, #E6F2FF 67.35%, #FAF6C3 101.56%);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.group_icon_bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #6daee7;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='112' height='112' viewBox='0 0 112 112'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='112' height='112' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-position: left top;
  mix-blend-mode: multiply;
  opacity: 0.35;
  -webkit-mask-image: radial-gradient(circle at 20% 20%, #000 0%, rgba(0, 0, 0, 0.92) 40%, rgba(0, 0, 0, 0.4) 72%, rgba(0, 0, 0, 0) 100%);
  mask-image: radial-gradient(circle at 20% 20%, #000 0%, rgba(0, 0, 0, 0.92) 40%, rgba(0, 0, 0, 0.4) 72%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

html,
body {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -webkit-overflow-scrolling: touch !important;
  -moz-osx-font-smoothing: grayscale;
  font-family: var(--font-family-base);
  font-size: var(--Label-Medium);
  font-weight: var(--font-weight-regular);
  font-style: normal;
  color: var(--Object-Primary);
}

body {
  background-image: url(../img/main_bg_pc.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100%;
  background-color: var(--Background-Primary-Base);
  line-height: var(--line-height-base);
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media screen and (max-width: 767px) {
  body {
    background-image: url(../img/main_bg_sp.png);
  }
}
body.wrap {
  overflow: hidden;
}
body #wrapper {
  height: auto;
}

#wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

#screen {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #596581;
  opacity: 0.2;
  z-index: 200;
}
@media screen and (min-width: 768px), print {
  #screen {
    z-index: 999;
  }
}

/* アクセシビリティ */
img {
  image-rendering: auto;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -webkit-box-shadow: #000 0 0 0;
          box-shadow: #000 0 0 0; /* ロールオーバー対応 */
}

img,
x:-moz-any-link,
x:default {
  box-shadow: #000 0 0 0; /* IE7対応 */
}

/* リンク */
a {
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
a:link, a:visited, a:active {
  color: inherit;
  text-decoration: none;
}
@media (hover: hover) {
  a:hover {
    color: inherit;
    opacity: 0.7;
    text-decoration: none;
  }
}

.container {
  width: 100%;
  width: min(100%, 1288px);
  padding: 0 24px;
  margin: 0 auto;
  position: relative;
}
.container--1000 {
  width: min(100%, 1048px);
}

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

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

/* ▼▼▼ ヘッダー
====================================================== */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
header.header_hidden {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
header.is-active {
  background: var(--Background-Primary-Base);
}
@media screen and (max-width: 767px) {
  header.is-active .header_inner {
    background: var(--Background-Primary-Base);
  }
}
header.menu_open {
  background: var(--Background-Primary) !important;
}
header.menu_open .header_inner, header.menu_open .header_pc {
  background: var(--Background-Primary) !important;
}
@media screen and (max-width: 767px) {
  header {
    height: auto;
  }
}
@media (hover: hover) {
  header a:hover {
    opacity: 1;
    color: var(--Brand-color-Primary);
    text-decoration: underline;
  }
}

.header {
  width: 100%;
}
.header_pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 8px 48px 0;
  border-bottom: 1px solid var(--Line-Primary);
}
@media screen and (max-width: 767px) {
  .header_pc {
    padding: 8px 24px 0;
    border-bottom: none;
    position: relative;
    z-index: 10;
  }
}
.header_pc_sites {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 16px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.01em;
}
.header_pc_sites a {
  padding-bottom: 8px;
}
.header_pc_sites .is-current {
  color: var(--Brand-color-Primary);
  border-bottom: 2px solid var(--Brand-color-Primary);
}
@media (hover: hover) {
  .header_pc_sites .is-current:hover {
    text-decoration: none;
  }
}
@media screen and (max-width: 767px) {
  .header_pc_sites {
    width: 100%;
    border-bottom: 1px solid var(--Line-Primary);
    font-size: 12px;
  }
}
.header_pc_search {
  background: var(--Background-Primary);
  margin-left: auto;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .header_pc_search {
    display: none;
  }
}
.header_pc_lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .header_pc_lang {
    display: none;
  }
}
.header_pc_lang .current {
  color: var(--Object-Disabled);
}
@media (hover: hover) {
  .header_pc_lang .current:hover {
    text-decoration: none;
  }
}
.header_pc_lang a {
  padding: 0 16px;
  position: relative;
}
.header_pc_lang a:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 17px;
  background: var(--Line-Primary);
  position: absolute;
  top: 2px;
  right: 0;
}
@media screen and (max-width: 767px) {
  .header_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 16px 24px;
    position: relative;
    width: 100%;
    z-index: 2000;
  }
}
.header_main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0 16px;
  padding: 24px 48px 0;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .header_main {
    zoom: 0.8;
  }
}
@media screen and (max-width: 767px) {
  .header_main {
    display: contents;
  }
}
.header_logo-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px 24px;
}
@media screen and (max-width: 767px) {
  .header_logo-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (hover: hover) {
  .header_logo-wrap:hover {
    opacity: 0.7;
    color: var(--Object-Primary);
    text-decoration: none;
  }
}
.header_logo {
  display: block;
}
.header_logo img {
  display: block;
  width: 200px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .header_logo img {
    width: 143px;
  }
}
.header_company {
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.01em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .header_company {
    font-size: 10px;
  }
}
.header_sp_actions {
  display: none;
}
@media screen and (max-width: 767px) {
  .header_sp_actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
  }
}
.header_sp_contact {
  width: 40px;
  height: 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: url(../img/header_sp_contact.svg) no-repeat center/contain;
}
.header_sp_contact.hide {
  display: none;
}

.menu {
  display: none;
}
@media screen and (max-width: 767px) {
  .menu {
    --menu-width: 40px;
    --menu-height: 40px;
    --menu-bar-color:var(--Object-Primary);
    --menu-bar-width:18px;
    --menu-bar-height:2px;
    --menu-bar-gap:5px;
    background: var(--Background-Primary);
    display: block;
    border-radius: 4px;
    width: var(--menu-width);
    height: var(--menu-height);
    z-index: 2000;
    position: relative;
  }
  .menu .icon {
    display: block;
    width: var(--menu-bar-width);
    height: var(--menu-bar-height);
    background: var(--menu-bar-color);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .menu .icon::before, .menu .icon::after {
    content: "";
    width: var(--menu-bar-width);
    height: var(--menu-bar-height);
    background: var(--menu-bar-color);
    position: absolute;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    right: 0;
  }
  .menu .icon::before {
    top: calc(-1 * var(--menu-bar-gap));
  }
  .menu .icon::after {
    bottom: calc(-1 * var(--menu-bar-gap));
  }
  .menu .icon.active {
    width: 25px;
    background: transparent;
  }
  .menu .icon.active::before, .menu .icon.active::after {
    width: 25px;
  }
  .menu .icon.active::before {
    -webkit-transform: rotate(-145deg);
            transform: rotate(-145deg);
    top: 0;
  }
  .menu .icon.active::after {
    -webkit-transform: rotate(145deg);
            transform: rotate(145deg);
    bottom: 0;
  }
}

#gnav {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  #gnav {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    min-height: 100dvh;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
  }
  #gnav.open {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}
#gnav .header_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  #gnav .header_nav {
    border-top: 1px solid var(--Line-Primary);
    display: block;
    width: 100%;
  }
}
#gnav .header_nav_item {
  padding: 12px 0 36px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #gnav .header_nav_item {
    padding: 24px 0;
    width: 100%;
    font-weight: 500;
  }
  #gnav .header_nav_item:not(:last-child) {
    position: relative;
    border-bottom: 1px solid var(--Line-Primary);
  }
  #gnav .header_nav_item:not(:last-child)::after {
    content: "";
    width: 16px;
    border-bottom: 1px solid var(--Brand-color-Primary);
    position: absolute;
    bottom: -1px;
    left: 0;
  }
}
@media screen and (min-width: 768px), print {
  #gnav .header_nav_item.header_menu_item_dropdown {
    cursor: pointer;
  }
}
#gnav .header_nav_item.header_menu_item_dropdown.is_open {
  position: relative;
}
#gnav .header_nav_item.header_menu_item_dropdown.is_open::before {
  content: "";
  width: 100%;
  height: 2px;
  background: var(--Brand-color-Primary);
  position: absolute;
  bottom: 0;
  left: 0;
}
#gnav .header_nav_item.header_menu_item_dropdown.is_open > span {
  color: var(--Brand-color-Primary);
}
#gnav .header_nav_item.header_menu_item_dropdown .arrow_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
#gnav .header_nav_item.header_menu_item_dropdown .arrow_nav::after {
  content: "";
  background-image: url("../img/icon_arrow_nav.svg");
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  width: 16px;
  height: 16px;
}
@media screen and (max-width: 767px) {
  #gnav .header_nav_item.header_menu_item_dropdown .arrow_nav {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #gnav .header_nav_item.header_menu_item_dropdown .arrow_nav a {
    background: url(../img/icon_arrow.svg) no-repeat center right/auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
  #gnav .header_nav_item.header_menu_item_dropdown .arrow_nav.sp_open::after {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  #gnav .header_nav_item.header_menu_item_dropdown .arrow_nav.sp_close::after {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
}
@media (hover: hover) {
  #gnav .header_nav_item.header_menu_item_dropdown:hover .arrow_nav::after {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}
#gnav .header_nav a:not(.header_mega_menu_btn).arrow::after {
  display: none;
}
@media screen and (max-width: 767px) {
  #gnav .header_nav a:not(.header_mega_menu_btn).arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  #gnav .header_nav a:not(.header_mega_menu_btn).arrow::after {
    display: block;
  }
}
#gnav .header_nav .arrow_external {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px), print {
  #gnav .header_nav .arrow_external {
    gap: 4px;
  }
  #gnav .header_nav .arrow_external::after {
    content: "";
    background: none;
    border: none;
    width: 20px;
    height: 20px;
    background: url("../img/icon_arrow_external.svg") no-repeat center/contain;
  }
}
#gnav .header_mega_menu {
  border-top: 1px solid var(--Line-Primary);
  background: var(--Background-Primary-Base);
  display: none;
  width: 100%;
  padding: 48px 24px;
  position: fixed;
  left: 0;
  z-index: 1000;
}
@media screen and (max-width: 767px) {
  #gnav .header_mega_menu {
    border-top: none;
    position: static;
    padding: 0;
  }
}
#gnav .header_mega_menu_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 48px;
  width: min(100%, 1240px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #gnav .header_mega_menu_inner {
    display: block;
  }
}
#gnav .header_mega_menu_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: var(--Heading-H4);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-width: 240px;
}
#gnav .header_mega_menu_btn::after {
  content: "";
  border: 1px solid var(--Brand-color-Primary);
  background: url(../img/icon_arrow_wht.svg) no-repeat center/16px, var(--Brand-color-Primary);
  border-radius: 2px;
  width: 40px;
  height: 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (hover: hover) {
  #gnav .header_mega_menu_btn:hover {
    text-decoration: underline;
  }
  #gnav .header_mega_menu_btn:hover::after {
    background-color: var(--Background-Primary);
    background-image: url(../img/icon_arrow.svg);
  }
}
@media screen and (max-width: 767px) {
  #gnav .header_mega_menu_btn {
    display: none;
  }
}
#gnav .header_mega_menu_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px 24px;
  width: min(100%, 912px);
}
@media screen and (max-width: 767px) {
  #gnav .header_mega_menu_list {
    display: block;
  }
}
#gnav .header_mega_menu_list > div {
  min-width: calc(25% - 18px);
}
#gnav .header_mega_menu_list a {
  border-bottom: 1px solid var(--Line-Primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4px;
  width: 100%;
  padding-bottom: 8px;
}
@media (hover: hover) {
  #gnav .header_mega_menu_list a:hover {
    border-color: var(--Brand-color-Primary);
    text-decoration: none;
  }
}
@media screen and (max-width: 767px) {
  #gnav .header_mega_menu_list a {
    border: none;
    margin-top: 16px;
    font-weight: normal;
  }
}
#gnav .header_mega_menu_list a:after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url("../img/icon_arrow.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  #gnav .header_mega_menu_list a:after {
    display: none;
  }
}
@media screen and (min-width: 768px), print {
  #gnav .header_contact {
    display: block;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    width: 96px;
    padding: 11px 0;
    background: var(--Brand-color-Primary);
    color: var(--Object-Primary-Reverse) !important;
    border: 1px solid var(--Brand-color-Primary);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    letter-spacing: 0.01em;
    border-radius: 4px;
  }
}
@media screen and (max-width: 767px) {
  #gnav .header_contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    border: 1px solid currentColor;
    background: var(--Brand-color-Primary);
    border-radius: 4px;
    width: min(100%, 384px);
    padding: 19.5px 16px;
    padding-right: 55px !important;
    font-size: var(--Label-Medium);
    font-weight: 500;
    line-height: 1;
    color: var(--Object-Primary-Reverse);
    position: relative;
  }
  #gnav .header_contact:has(.btn_icon) {
    padding: 15px 16px;
  }
  #gnav .header_contact::after {
    content: "";
    width: 40px;
    height: 40px;
    border-radius: 2px;
    background-color: var(--Brand-color-Primary-Deep);
    background-image: url("../img/icon_contact.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    position: absolute;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    top: 50%;
    right: 8px;
  }
  #gnav .header_contact.external::after {
    background-image: url("../img/icon_arrow_external_wht.svg");
  }
}
@media (hover: hover) {
  #gnav .header_contact:hover {
    text-decoration: none;
    background: var(--Object-Primary-Reverse);
    color: var(--Brand-color-Primary) !important;
  }
  #gnav .header_contact:hover::after {
    background: url("../img/icon_arrow_external.svg") no-repeat center/contain;
  }
}
#gnav .header_search_panel {
  background: var(--Background-Primary-Base);
  display: none;
  width: 100%;
  padding: 40px 45px;
  position: fixed;
  left: 0;
  z-index: 1000;
}
#gnav .header_search_panel.is_open {
  display: block;
}
@media screen and (max-width: 767px) {
  #gnav .header_search_panel {
    display: block;
    padding: 0;
    margin-top: 24px;
    position: static;
  }
}
#gnav .header_search_panel_inner {
  width: min(100%, 848px);
  margin: 0 auto;
  padding: 0 24px;
}
@media screen and (max-width: 767px) {
  #gnav .header_search_panel_inner {
    width: min(100%, 384px);
    padding: 0;
  }
}
#gnav .header_search_panel .header_search_input_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--Background-Primary);
  border: 1px solid var(--Brand-color-Primary);
  border-radius: 4px;
  height: 52px;
  padding-left: 16px;
  position: relative;
}
#gnav .header_search_panel input {
  display: block;
  width: 100%;
  border: none;
  background: none;
  font-family: var(--font-family-base);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  outline: none;
  color: var(--Object-Primary);
}
#gnav .header_search_panel .header_search_submit {
  background: none;
  border: none;
  width: 49px;
  height: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: url("../img/icon_search.svg") no-repeat center right 16px/14px;
  pointer-events: all;
  cursor: pointer;
  position: relative;
}
#gnav .header_search_panel .header_search_submit::before {
  content: "";
  height: 15px;
  border-left: 1px solid var(--Line-Primary);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  top: 50%;
  left: 0;
}
@media screen and (max-width: 767px) {
  #gnav .header_search_panel .header_search_submit {
    width: 52px;
  }
}
#gnav .header_search_panel .header_search_close {
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  right: 45px;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  #gnav .header_search_panel .header_search_close {
    display: none;
  }
}
#gnav .gnav_pc_wrap {
  display: contents;
}
@media screen and (max-width: 767px) {
  #gnav .gnav_pc_wrap {
    display: block;
    background: var(--Background-Primary-Base);
    padding: 155px 24px 24px;
  }
}
#gnav .gnav_sp_lang {
  display: none;
}
@media screen and (max-width: 767px) {
  #gnav .gnav_sp_lang {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    font-family: var(--font-family-en);
  }
}
#gnav .gnav_sp_lang a {
  padding: 6px 24px;
  position: relative;
  line-height: 1;
}
#gnav .gnav_sp_lang a:not(:last-child)::before {
  content: "";
  width: 1px;
  height: 20px;
  background: var(--Line-Primary);
  position: absolute;
  top: 2px;
  right: 0;
}
#gnav .gnav_sp_lang a.current {
  color: var(--Object-Disabled);
}
#gnav .gnav_sp_wrap {
  display: none;
}
@media screen and (max-width: 767px) {
  #gnav .gnav_sp_wrap {
    display: grid;
    grid-template-columns: 100%;
    gap: 16px;
    background: var(--Background-Primary);
    padding: 32px 24px;
    font-size: 14px;
  }
  #gnav .gnav_sp_wrap a {
    display: block;
    width: 100%;
  }
}

/* ▼▼▼ メイン 「コンテンツとサイドを囲む要素」
====================================================== */
#main {
  margin: 0 auto;
  clear: both;
  overflow: hidden;
}

/* ▼ パンくず
--------------------------------------- */
#path {
  margin: 0 auto;
  padding: 64px 24px 16px;
}
@media screen and (max-width: 767px) {
  #path {
    padding: 16px 24px 0;
  }
}
#path ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 24px;
  padding: 16px 0;
  white-space: nowrap;
  overflow-x: scroll;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
#path ol::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 767px) {
  #path ol {
    padding: 8px 0;
  }
}
#path li {
  font-size: var(--Label-Small);
  color: var(--Object-Secondary);
  font-weight: 500;
  line-height: 1;
  min-width: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#path li:not(:last-child) {
  position: relative;
}
#path li:not(:last-child)::after {
  content: "";
  background: url(../img/arrow_path.svg) no-repeat center/16px;
  width: 24px;
  height: 100%;
  position: absolute;
  right: -24px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#path li a {
  color: var(--Object-Primary);
  text-decoration: underline;
}
@media (hover: hover) {
  #path li a:hover {
    opacity: 1;
    text-decoration: none;
  }
}

/* ▼ 各ページ共通
--------------------------------------- */
.subject {
  margin: 0 auto;
  padding: 0 24px 64px;
}
.subject .heading_H1 {
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .subject {
    padding: 0 24px 48px;
  }
  .subject .heading_H1 {
    margin-bottom: 4px;
  }
}

.heading_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: last baseline;
      -ms-flex-align: last baseline;
          align-items: last baseline;
  gap: 16px;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .heading_title {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4px 0;
    margin-bottom: 24px;
  }
}
.heading_title_ja {
  width: auto;
  height: 100%;
  font-weight: 400;
  font-size: var(--Heading-H1-JA);
  line-height: 140%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background: linear-gradient(135deg, #0F52D9 0%, #36373B 54%, #0F52D9 100%), #36363B;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.heading_title_en {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  font-family: var(--font-family-en);
  font-weight: 500;
  font-size: var(--Heading-H1-EN);
  line-height: 1;
  color: var(--Brand-color-Primary);
}
.heading_title_en::before {
  content: "";
  background: var(--Brand-color-Primary);
  border-radius: 4px;
  width: 24px;
  height: 1px;
}
@media screen and (max-width: 767px) {
  .heading_title_en {
    gap: 8px;
  }
  .heading_title_en::before {
    width: 20px;
  }
}

.heading_H1 {
  display: inline-block;
  width: auto;
  height: 100%;
  font-weight: 400;
  font-size: var(--Heading-H1);
  line-height: 140%;
  background: linear-gradient(137.5deg, #0F52D9 12.12%, #36373B 52.29%, #0F52D9 86.54%), #36363B;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  -ms-flex-positive: 0;
      flex-grow: 0;
}
.heading_H1_en {
  font-family: var(--font-family-en);
  font-weight: 500;
  font-size: var(--Heading-H1-EN);
  line-height: 1;
  color: var(--Brand-color-Primary);
}

.heading_H2 {
  padding-left: 19px;
  font-size: var(--Heading-H2);
  font-weight: 500;
  line-height: 1.4;
  font-weight: 400;
  position: relative;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .heading_H2 {
    margin-bottom: 24px;
  }
}
.heading_H2::before {
  content: "";
  background: var(--Brand-color-Primary);
  width: 3px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.heading_H3 {
  background: var(--Background-Tertiary);
  border-radius: 2px;
  font-size: var(--Heading-H3);
  font-weight: 400;
  padding: 16px 24px;
}
@media screen and (max-width: 767px) {
  .heading_H3 {
    padding: 8px 24px;
  }
}

a.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  border: 1px solid var(--Brand-color-Primary);
  background: var(--Brand-color-Primary);
  border-radius: 4px;
  width: min(100%, 384px);
  padding: 8px 16px;
  padding-right: 72px !important;
  font-size: var(--Label-Medium);
  font-weight: 500;
  line-height: 1;
  height: 56px;
  color: var(--Object-Primary-Reverse);
  position: relative;
}
a.btn small {
  font-size: var(--Label-X-Small);
}
a.btn:has(.btn_icon) {
  padding: 15px 16px;
}
a.btn::after {
  content: "";
  width: 64px;
  height: 40px;
  background-color: var(--Brand-color-Primary-Deep);
  border-radius: 2px;
  background-image: url("../img/icon_arrow_wht.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  right: 8px;
}
a.btn.external::after {
  background-image: url("../img/icon_arrow_external_wht.svg");
}
a.btn.large {
  padding-top: 33px;
  padding-bottom: 33px;
}
@media screen and (max-width: 767px) {
  a.btn.large {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
a.btn.center {
  margin: 0 auto;
}
a.btn.line::before {
  content: "";
  background-color: var(--Brand-color-Primary);
  width: 2px;
  height: 20px;
}
@media (hover: hover) {
  a.btn:hover {
    opacity: 1;
    background: var(--Object-Primary-Reverse);
    color: var(--Brand-color-Primary);
  }
  a.btn:hover.external::after {
    background-image: url("../img/icon_arrow_external.svg");
  }
}
a.btn.wht {
  background: var(--Background-Secondary);
  color: var(--Object-Primary);
  border-color: var(--Line-Primary);
}
a.btn.wht::after {
  background-image: url("../img/icon_arrow.svg");
  border-color: var(--Line-Primary);
}
a.btn.wht.external::after {
  background-image: url("../img/icon_arrow_external.svg");
}
@media (hover: hover) {
  a.btn.wht:hover {
    color: var(--Object-Attention);
    border-color: var(--Object-Attention);
  }
  a.btn.wht:hover::after {
    border-color: var(--Object-Attention);
  }
}
a.btn.gray {
  background: #A2A9B3;
  border-color: #A2A9B3;
}
@media (hover: hover) {
  a.btn.gray:hover {
    background: var(--Object-Primary-Reverse);
    border-color: var(--Object-Attention);
  }
}

.btn_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--Background-Secondary);
  border-radius: 2px;
  width: 56px;
  height: 56px;
}

.arrow, .arrow_external {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.arrow::after, .arrow_external::after {
  content: "";
  width: 40px;
  height: 24px;
  background-color: var(--Brand-color-Primary);
  border-radius: 2px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.arrow.lage::after, .arrow_external.lage::after {
  width: 64px;
  height: 40px;
}
@media screen and (max-width: 767px) {
  .arrow.lage::after, .arrow_external.lage::after {
    width: 40px;
    height: 24px;
  }
}

.arrow::after {
  background-image: url(../img/icon_arrow_wht.svg);
}

.arrow[target=_blank]::after, .arrow_external::after {
  background-image: url("../img/icon_arrow_external_wht.svg");
}

.pagination_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: auto;
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .pagination_wrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 32px auto 0;
    width: min(100%, 279px);
  }
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: auto;
  gap: 3px;
}
@media screen and (max-width: 767px) {
  .pagination {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
    padding-bottom: 42px;
    position: relative;
  }
}

.page-item:not(.page-item-prev):not(.page-item-next) {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.page-item.active .page-link {
  width: 40px;
  height: 40px;
  background-color: var(--Background-Primary);
  border-radius: 4px;
  color: var(--Brand-color-Primary);
  cursor: default;
}
.page-item.active .page-link:hover {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .page-item.page-item-prev, .page-item.page-item-next {
    position: absolute;
    bottom: 0;
  }
}
.page-item.page-item-prev .page-link, .page-item.page-item-next .page-link {
  gap: 8px;
  text-decoration: none;
  font-family: var(--font-family-base);
  font-size: var(--Label-Medium);
}
.page-item.page-item-prev .page-link::after, .page-item.page-item-next .page-link::after {
  content: "";
  background: url(../img/icon_arrow_wht.svg) no-repeat center/auto, var(--Brand-color-Primary);
  width: 40px;
  height: 24px;
  border-radius: 4px;
}
.page-item.page-item-next {
  margin-left: 32px;
}
@media screen and (max-width: 767px) {
  .page-item.page-item-next {
    margin: 0;
    right: 0;
  }
}
.page-item.page-item-next .page-link::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.page-item.page-item-prev {
  margin-right: 32px;
}
@media screen and (max-width: 767px) {
  .page-item.page-item-prev {
    margin: 0;
    left: 0;
  }
}
.page-item.page-item-prev .page-link {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.page-item.page-item-prev .page-link::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.page-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: var(--font-family-en);
  font-weight: 500;
  font-size: var(--Label-Small);
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-decoration: none;
  min-width: 30px;
  height: 36px;
  padding: 0;
  display: flex;
}
@media screen and (max-width: 767px) {
  .page-link {
    font-size: 14px;
  }
}
.page-link-ellipsis {
  color: var(--Object-Secondary);
  cursor: default;
  min-width: 0;
}
.page-link-ellipsis:hover {
  opacity: 1;
}

.c-group-card-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .c-group-card-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

.c-group-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 352px;
  background: var(--Background-Primary);
  border-radius: 4px;
}
.c-group-card__cardlink {
  height: 100%;
  padding: 24px 24px 48px;
}
@media screen and (max-width: 767px) {
  .c-group-card {
    min-height: auto;
  }
  .c-group-card__cardlink {
    padding: 24px;
  }
}
.c-group-card__heading {
  font-size: var(--Heading-H3);
  font-weight: 400;
  line-height: 140%;
}
.c-group-card__heading-en {
  display: block;
  color: var(--Brand-color-Primary);
  font-family: var(--font-family-en);
  font-size: 14px;
  font-weight: 500;
}
.c-group-card__heading-en small {
  font-size: 13px;
}
.c-group-card__img {
  min-width: 216px;
  width: 100%;
  overflow: hidden;
  margin-bottom: 16px;
  border-radius: 4px;
}
.c-group-card__img img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-group-card__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-width: auto;
    width: 140px;
    height: 93px;
  }
}
.c-group-card__lead {
  font-size: var(--Heading-H5);
  font-weight: 400;
  line-height: 140%;
}
.c-group-card__arrow {
  position: absolute;
  right: 24px;
  bottom: 24px;
}
.c-group-card__arrow::after {
  content: "";
  width: 40px;
  height: 24px;
  background-color: var(--Brand-color-Primary);
  border: #fff 1px solid;
  border-radius: 2px;
  background-image: url(../img/icon_arrow_wht.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  position: absolute;
  right: 8px;
  bottom: 0;
}
.c-group-card a:hover .c-group-card__arrow::after {
  background-color: #fff;
  border: var(--Brand-color-Primary) 1px solid;
  background-image: url(../img/icon_arrow.svg);
}
.c-group-card--wide {
  min-height: 192px;
}
.c-group-card--wide a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  padding: 24px;
}
.c-group-card--wide .c-group-card__img {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .c-group-card--wide {
    min-height: 422px;
  }
  .c-group-card--wide a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
  .c-group-card--wide .c-group-card__img {
    width: auto;
    height: auto;
  }
  .c-group-card--wide .c-group-card__img img {
    width: 100%;
  }
}
.c-group-card__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px;
  padding: 32px;
}
@media screen and (max-width: 767px) {
  .c-group-card__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    padding: 24px;
  }
}
.c-group-card__link .c-group-card__info {
  width: 664px;
}
@media screen and (max-width: 767px) {
  .c-group-card__link .c-group-card__info {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
  }
}
.c-group-card__link .c-group-card__img {
  width: 352px;
  height: 311px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0;
  background-color: var(--Background-Primary-Base);
}
@media screen and (max-width: 767px) {
  .c-group-card__link .c-group-card__img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    max-width: 279px;
    width: 100%;
    max-height: 157px;
  }
  .c-group-card__link .c-group-card__img img {
    width: 100%;
  }
}
.c-group-card__link .c-group-card__arrow {
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-group-card__link .c-group-card__arrow::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: var(--Line-Primary);
  margin-right: 32px;
}
.c-group-card__link .c-group-card__arrow::after {
  width: 64px;
  height: 40px;
  display: block;
  background-image: url(../img/icon_arrow_external_wht.svg);
  position: static;
}
@media screen and (max-width: 767px) {
  .c-group-card__link .c-group-card__arrow {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
  .c-group-card__link .c-group-card__arrow::before {
    background: none;
    margin-right: 0;
  }
  .c-group-card__link .c-group-card__arrow::after {
    width: 40px;
    height: 24px;
    background-image: url(../img/icon_arrow_wht.svg);
  }
}
.c-group-card a.c-group-card__link:hover .c-group-card__arrow::after {
  background-image: url(../img/icon_arrow_external.svg);
}
@media screen and (max-width: 767px) {
  .c-group-card a.c-group-card__link:hover .c-group-card__arrow::after {
    background-image: url(../img/icon_arrow.svg);
  }
}

.c-side-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 48px;
}
@media screen and (max-width: 767px) {
  .c-side-layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 32px;
  }
}
.c-side-layout__main {
  width: 840px;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .c-side-layout__main {
    width: 100%;
  }
}
.c-side-layout__side {
  min-width: 270px;
  width: 320px;
  background: var(--Background-Tertiary);
  border-radius: 10px;
  padding: 16px;
  position: sticky;
  top: 176px;
}
@media screen and (max-width: 767px) {
  .c-side-layout__side {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    padding: 8px 16px;
    border-radius: 0;
    top: 76px;
    overflow: hidden;
  }
}
.c-side-layout__side--menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
}
@media screen and (max-width: 767px) {
  .c-side-layout__side--menu {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2px 12px;
    overflow: auto;
    scrollbar-width: none;
  }
  .c-side-layout__side--menu::-webkit-scrollbar {
    display: none;
  }
}
.c-side-layout__side--menu li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 12px;
  border: 1px solid transparent;
}
@media screen and (max-width: 767px) {
  .c-side-layout__side--menu li {
    padding-block: 4px 6px;
    padding-inline: 12px;
  }
}
.c-side-layout__side--menu a {
  display: inline-block;
  color: #8F9197;
  font-size: var(--Label-Medium);
  font-weight: 500;
  line-height: 140%;
  padding-left: 16px;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-side-layout__side--menu a {
    white-space: nowrap;
  }
}
.c-side-layout__side--menu a::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: #8F9197;
  border-radius: 50%;
}
.c-side-layout__side--menu li.is-active > a {
  color: #2E2F32;
}
.c-side-layout__side--menu li.is-active > a::before {
  background-color: var(--Brand-color-Primary);
}

/* ▼ システム
--------------------------------------- */
.disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* ▼▼▼ フッターお問い合わせ
====================================================== */
.footer_contact {
  padding: 64px 24px;
  margin-top: 64px;
  position: relative;
}
.footer_contact::after {
  content: "";
  border-top: 1px solid var(--Line-Primary);
  width: 100%;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .footer_contact {
    padding: 48px 24px;
    margin-top: 0;
  }
}
.footer_contact_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  background: var(--Brand-color-Primary);
  border-radius: 4px;
  width: min(100%, 1224px);
  margin: 0 auto;
  padding: 64px;
  color: var(--Object-Primary-Reverse);
}
@media screen and (max-width: 767px) {
  .footer_contact_wrap {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 24px;
  }
}
@media screen and (max-width: 767px) {
  .footer_contact_block {
    display: contents;
  }
}
.footer_contact_block_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: last baseline;
      -ms-flex-align: last baseline;
          align-items: last baseline;
  font-family: var(--font-family-en);
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--Object-Primary-Reverse);
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .footer_contact_block_head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    grid-column: 1/3;
    gap: 8px;
    width: 100%;
    margin: 0;
  }
}
.footer_contact_block_head_ja {
  font-size: 34px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .footer_contact_block_head_ja {
    font-size: 24px;
  }
}
.footer_contact_block_head_en {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  font-size: 15px;
  font-family: var(--font-family-en);
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .footer_contact_block_head_en {
    font-size: 13px;
  }
}
.footer_contact_block_head_en::before {
  content: "";
  background: currentColor;
  width: 24px;
  height: 1px;
}
.footer_contact_block_text {
  font-weight: 400;
}
.footer_contact_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--Brand-color-Primary-Deep);
  width: 120px;
  height: 72px;
  border-radius: 2px;
}
@media screen and (max-width: 767px) {
  .footer_contact_btn {
    width: 40px;
    height: 40px;
  }
}

/* ▼▼▼ フッターメイン
====================================================== */
footer {
  padding-top: 24px;
}
@media screen and (max-width: 767px) {
  footer {
    padding-top: 24px;
  }
}
@media (hover: hover) {
  footer a:not(.btn):hover {
    opacity: 1;
    text-decoration: underline;
    color: var(--Brand-color-Primary);
  }
}

.footer_main_inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  -webkit-column-gap: 48px;
     -moz-column-gap: 48px;
          column-gap: 48px;
  row-gap: 24px;
  gap: 32px;
  width: min(100%, 1288px);
  padding: 0 24px 60px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .footer_main_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 48px;
    padding: 0 24px;
  }
}
.footer_brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  grid-row: 1/3;
}
@media screen and (max-width: 767px) {
  .footer_brand {
    gap: 8px;
    grid-row: auto;
  }
}
@media (hover: hover) {
  .footer_logo_wrap:hover {
    opacity: 0.7 !important;
    color: var(--Object-Primary) !important;
    text-decoration: none !important;
  }
}
.footer_logo {
  display: inline-block;
}
.footer_logo img {
  display: block;
  width: 244px;
}
@media screen and (max-width: 767px) {
  .footer_logo img {
    width: 210px;
  }
}
.footer_company {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .footer_company {
    font-size: 12px;
    margin-bottom: 8px;
  }
}
.footer_nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: min(100%, 766px);
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .footer_nav {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.footer_nav_col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .footer_nav_col {
    gap: 8px 0;
  }
}
.footer_nav_item {
  border-bottom: 1px solid var(--Line-Primary);
  font-size: var(--Footer-Nav-Title);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
  padding-bottom: 8px;
}
.footer_nav_item a {
  display: block;
  background: url(../img/icon_arrow.svg) no-repeat right center/16px;
  width: 100%;
  padding-right: 16px;
}
@media screen and (max-width: 767px) {
  .footer_nav_item {
    margin-top: 0;
  }
  .footer_nav_item a {
    width: 100%;
  }
}
.footer_nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .footer_nav_list {
    margin-top: 0;
  }
}
.footer_related {
  background: var(--Background-Secondary);
  border-radius: 4px;
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 24px;
  grid-column: 1/-1;
}
@media screen and (max-width: 767px) {
  .footer_related {
    grid-template-columns: 1fr;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    grid-column: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    padding: 24px;
    margin: 0 -24px;
  }
}
.footer_related_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px 24px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .footer_related_block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer_related_block h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: var(--Background-Tertiary);
  border-radius: 2px;
  font-size: var(--Label-X-Small);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.02em;
  padding: 0 30px;
  height: 100%;
  text-align: center;
}
@media screen {
  .footer_related_block h3 {
    height: auto;
    padding: 4px 33px;
  }
}
.footer_related_block ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px 16px;
  height: 100%;
}
.footer_related_block a {
  font-size: var(--Label-Small);
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.footer_related_block a::after {
  content: "";
  display: inline-block;
  vertical-align: sub;
  width: 16px;
  height: 16px;
  background: url("../img/icon_arrow_external.svg") no-repeat center/contain;
  -webkit-transition: background-image 0.3s;
  transition: background-image 0.3s;
  margin-left: 2px;
}
@media screen and (max-width: 767px) {
  .footer_related_block {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }
}
.footer_bottom {
  background: var(--Object-Primary);
  padding: 16px 24px;
}
@media screen and (max-width: 767px) {
  .footer_bottom {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    padding: 12px 24px;
  }
}
.footer_bottom_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px 16px;
  width: min(100%, 1200px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .footer_bottom_inner {
    width: 90%;
    margin: 0;
  }
}
.footer_bottom_inner a {
  font-size: var(--Label-Small);
  font-weight: 400;
  line-height: 1.6;
  color: var(--Object-Primary-Reverse) !important;
  text-decoration: none !important;
}
@media (hover: hover) {
  .footer_bottom_inner a:hover {
    text-decoration: underline !important;
  }
}
.footer_copyright {
  width: min(100%, 1200px);
  margin: 8px auto 0;
  font-family: var(--font-family-en);
  font-size: var(--Footer-Copyright);
  line-height: 1.4;
  color: var(--Object-Primary-Reverse);
  opacity: 0.5;
}

/* クッキー同意ダイアログ
--------------------------------------- */
.cookie_dialog {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--Background-Primary);
  -webkit-box-shadow: 0px -8px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0px -8px 20px rgba(0, 0, 0, 0.1);
  z-index: 99999;
  display: none;
  padding: 24px 0;
}
@media screen and (max-width: 767px) {
  .cookie_dialog {
    padding: 32px 0px 16px;
  }
}
.cookie_dialog .container {
  position: relative;
}
.cookie_dialog .btn_area {
  max-width: 1030px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 48px;
}
@media screen and (max-width: 767px) {
  .cookie_dialog .btn_area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}
.cookie_dialog .btn_area .cookie_dialog_text {
  font-size: var(--Label-Small);
}
.cookie_dialog .btn_area .cookie_dialog_text a {
  text-decoration: underline;
}
.cookie_dialog .btn_area .cookie_dialog_text a:hover {
  text-decoration: none;
}
.cookie_dialog .btn_area .gradient_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--Brand-color-Primary);
  border: 1px solid var(--Brand-color-Primary);
  border-radius: 4px;
  width: 152px;
  height: 40px;
  padding-left: 16px;
  color: var(--Object-Primary-Reverse);
  font-weight: 500;
  text-align: center;
  position: relative;
}
.cookie_dialog .btn_area .gradient_btn::after {
  content: "";
  width: 48px;
  height: 24px;
  border-radius: 2px;
  background: url(../img/icon_arrow_wht.svg) no-repeat center/16px, var(--Brand-color-Primary-Deep);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  position: absolute;
  top: 8px;
  right: 8px;
}
@media (hover: hover) {
  .cookie_dialog .btn_area .gradient_btn:hover {
    opacity: 1;
    background-color: var(--Background-Primary);
    color: var(--Brand-color-Primary);
  }
}
.cookie_dialog_close {
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  right: 24px;
  background-color: transparent;
  font-size: 24px;
  line-height: 1;
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 767px) {
  .cookie_dialog_close {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    top: 5px;
    right: 16px;
  }
}
.cookie_dialog_close::before {
  content: "×";
  display: block;
}

/* ▼ ページ上部へ戻る
--------------------------------------- */
.pagetop {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  background: var(--Brand-color-Primary);
  bottom: 15px;
  right: 20px;
  z-index: 200;
  position: fixed;
  cursor: pointer;
}
.pagetop::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/icon_arrow_wht.svg) no-repeat center/contain;
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
          transform: translate(-50%, -50%) rotate(-90deg);
  position: absolute;
  top: 50%;
  left: 50%;
}

/* ▼▼▼ 医療従事者アラート
======================================================*/
.medical-alert {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 99999;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.medical-alert.is_open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.medical-alert_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(54, 55, 59, 0.75);
}

.medical-alert_content {
  position: relative;
  z-index: 1;
  width: calc(100% - 48px);
  max-width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 768px), print {
  .medical-alert_content {
    width: 100%;
    max-width: 960px;
  }
}
.medical-alert_inner {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 48px 24px;
}

@media screen and (min-width: 768px), print {
  .medical-alert_inner {
    padding: 40px 48px;
  }
}
.medical-alert_heading {
  width: 100%;
  margin-bottom: 40px;
}

@media screen and (min-width: 768px), print {
  .medical-alert_heading {
    margin-bottom: 48px;
  }
}
.medical-alert_title {
  font-weight: 500;
  font-size: var(--Heading-H2);
  text-align: center;
}

.medical-alert_text {
  margin-bottom: 40px;
}

@media screen and (min-width: 768px), print {
  .medical-alert_text {
    margin-bottom: 48px;
    text-align: center;
  }
}
.medical-alert_question {
  font-weight: 500;
  font-size: var(--Heading-H4);
  text-align: center;
  margin-bottom: 32px;
}

.medical-alert_buttons {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 16px;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

@media screen and (min-width: 768px), print {
  .medical-alert_buttons {
    width: auto;
    gap: 24px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.medical-alert_button {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: 500;
  font-size: var(--Navigation-medium-base);
  text-align: center;
  border-radius: 100vmax;
  padding: 12px 16px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: #109CF3;
  border: 1px solid var(--Line-Primary);
  max-width: 140px;
  width: 100%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (min-width: 768px), print {
  .medical-alert_button {
    max-width: 240px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }
}
.medical-alert_button:hover {
  opacity: 1;
  background: radial-gradient(circle at 8% 50%, rgb(16, 156, 243) 25%, rgb(104, 176, 255) 64%, rgb(143, 202, 255) 90%, rgb(175, 224, 255) 100%);
  color: #FFFFFF;
}

/* 印刷用設定
--------------------------------------- */
@media print {
  :root {
    /* Typography (base) */
    --font-family-base: 'Zen Kaku Gothic New', sans-serif;
    --font-family-en: 'Montserrat', sans-serif;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
    --line-height-base: 1.6;
    /* Colors (base) */
    --Brand-color-Primary: #0757B2;
    --Brand-color-Primary-Deep: #06468F;
    --Object-Primary: #36363B;
    --Object-Disabled: #A2A9B3;
    --Object-Primary-Reverse: #FFFFFF;
    --Object-Attention: #0757B2;
    --Object-News-Date: #4D5C80;
    --Object-News-Attention: #D81833;
    --Background-Primary: #FFFFFF;
    --Background-Primary-Base: #EDF6FA;
    --Background-Secondary: #FFFFFF;
    --Background-Tag-Attention: #FFEAEE;
    --Line-Primary: #E1E1E1;
    --Line-News: #E4E6F0;
    /* Radius */
    --Corner-Radius-Circle: 9999px;
    /* Type scale (PC base) */
    --Heading-H1-JA: 48px;
    --Heading-H1-EN: 18px;
    --Heading-H1: 54px;
    --Heading-H2: 29px;
    --Heading-H3: 23px;
    --Heading-H4: 20px;
    --Heading-H5: 18px;
    --Heading-ArticleTitle: 40px;
    --Heading-H4: 20px;
    --Label-Medium: 16px;
    --Label-Small: 14px;
    --Label-X-Small: 13px;
    --Caption-X-Small: 12px;
    --Footer-Copyright: 12px;
    /* News section tokens (PC base) */
    --News-Item-Title-Size: 16px;
    --News-Item-Date-Size: 13px;
    --News-Category-Width: 144px;
    --News-Section-Title-Size: 16px;
    --News-Category-Size: 13px;
    --News-New-Size: 13px;
  }
  #wrapper {
    position: relative !important;
    min-width: 1440px;
    width: 100%;
  }
  body {
    zoom: 70%;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.45;
    color: #000;
    font-size: var(--body-medium-base);
  }
  div {
    height: auto !important;
  }
  #main {
    padding-top: 116px;
    background-color: #EDF6FA !important;
  }
  header {
    position: absolute;
    top: 0 !important;
  }
  footer {
    position: relative;
  }
  .footer_contact {
    margin-top: 0 !important;
    padding-top: 128px !important;
  }
  .footer_contact, footer {
    background-color: #EDF6FA !important;
  }
  #gnav {
    display: none !important;
  }
  .sp {
    display: none !important;
  }
  .cookie_dialog {
    display: none !important;
  }
  div p,
  div h1,
  div h2,
  div h3,
  div h4,
  div h5,
  div h6 {
    /* 改ページ前のページ末尾に書かれるべき最低行数 */
    orphans: 3;
    /* 改ページ後のページ先頭に書かれるべき最低行数 */
    widows: 3;
  }
  div h1,
  div h2,
  div h3,
  div h4,
  div h5,
  div h6 {
    page-break-after: avoid;
  }
  div table,
  div img,
  div pre,
  div blockquote {
    page-break-inside: avoid;
  }
  a[href]:after {
    content: "" !important;
  }
  abbr[title]:after {
    content: "" !important;
  }
  body {
    -webkit-print-color-adjust: exact;
  }
  .heading_H1 {
    padding-left: 2px !important;
  }
  .csr_item_box.bg02::before, .csr_item_box.bg06::before {
    background-image: none !important;
    background-color: #D3ECF6;
    opacity: 0.5 !important;
  }
  .group-recruit_contents .c-group-card__img {
    height: 160px !important;
  }
  .ethics_contents {
    display: block !important;
  }
  .ethics-chapter {
    margin-bottom: 48px !important;
  }
  .contents_section_list {
    display: block !important;
  }
  .sitemap_block {
    margin-bottom: 60px !important;
  }
}