@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Poppins:wght@600&display=swap");
:root {
  --font-base: "Noto Sans JP", sans-serif;
  --font-accent: "Poppins", sans-serif;
  --font-accent-weight: 600;
  --font-size-large: clamp(2.4rem, 2rem + 0.5vw, 3.2rem);
}

html {
  font-size: 62.5%; /* remを使用するための基準サイズ */
}

.font-en {
  font-family: var(--font-accent);
  font-weight: var(--font-accent-weight);
}

.ore {
  color: #FDA516;
}

.gre {
  color: #8BB708;
}

.bl {
  color: #3DBEE3;
}

.pur {
  color: #9A73ED;
}

.white {
  color: white;
}

.bold {
  font-weight: 700;
}

body {
  position: relative;
  color: #1D1D1D;
  font-size: 1.6rem;
  font-family: var(--font-base);
  letter-spacing: 0.04em;
  line-height: 1.8;
  width: 100%;
  overflow-x: hidden;
  /*スマホの文字の大きさ一定*/
  -webkit-text-size-adjust: 100%;
  /*アンチエイリアス*/
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media print, screen and (min-width: 920px) {
  body {
    font-size: 1.6rem;
  }
}
body.fix {
  overflow: hidden;
}

/*breakpoint display*/
.sp_min {
  display: block;
}

.sp_min_inline {
  display: inline;
}

.sp {
  display: block;
}

.sp_inline {
  display: inline;
}

.sp_tab {
  display: block;
}

.sp_tab_inline {
  display: inline;
}

.pc,
.pc_inline {
  display: none !important;
}

.tab,
.tab_inline {
  display: none !important;
}

.pc_tab,
.pc_tab_inline {
  display: none !important;
}

@media print, screen and (min-width: 360px) {
  .sp_min,
  .sp_min_inline {
    display: none !important;
  }
}
@media print, screen and (min-width: 768px) {
  .sp,
  .sp_inline {
    display: none !important;
  }
  .tab {
    display: block !important;
  }
  .tab_inline {
    display: inline !important;
  }
  .pc_tab {
    display: block !important;
  }
  .pc_tab_inline {
    display: inline !important;
  }
}
@media print, screen and (min-width: 920px) {
  .sp_tab,
  .sp_tab_inline {
    display: none !important;
  }
  .tab,
  .tab_inline {
    display: none !important;
  }
  .pc {
    display: block !important;
  }
  .pc_inline {
    display: inline !important;
  }
}
/*box-sizing default*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-shadow: none;
  box-shadow: none;
}
*:before,
* :after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/*aタグ デフォルト設定*/
a {
  transition: all 0.3s ease;
  color: inherit;
  text-decoration: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

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

/*スマホ時のfocusの青枠削除*/
a,
a:focus,
button,
button:focus {
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-shadow: none;
  box-shadow: none;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

input,
button,
label,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
}
input:hover, input:focus, input:active,
button:hover,
button:focus,
button:active,
label:hover,
label:focus,
label:active,
textarea:hover,
textarea:focus,
textarea:active,
select:hover,
select:focus,
select:active {
  -webkit-tap-highlight-color: transparent !important;
  outline: none !important;
}

select::-ms-expand {
  display: none;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}

@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot?e0fuq0");
  src: url("../fonts/icomoon.eot?e0fuq0#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?e0fuq0") format("truetype"), url("../fonts/icomoon.woff?e0fuq0") format("woff"), url("../fonts/icomoon.svg?e0fuq0#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow:before {
  content: "\e901";
}

.icon-document-file-jpg:before {
  content: "\e90a";
}

.icon-word:before {
  content: "\e90b";
}

.icon-pdf:before {
  content: "\e90c";
}

.icon-excel:before {
  content: "\e90d";
}

.icon-text:before {
  content: "\e90e";
}

.icon-blank:before {
  content: "\e900";
}

.icon-sns_inst:before {
  content: "\e907";
}

.icon-sns_yt:before {
  content: "\e908";
}

.page_inner_s {
  max-width: 800px;
  width: calc(100% - 40px);
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) {
  .page_inner_s {
    max-width: unset;
    width: calc(100% - 200px);
  }
}

.page_inner_m {
  max-width: 960px;
  width: calc(100% - 30px);
  margin: 0 auto;
}
@media print, screen and (min-width: 920px) {
  .page_inner_m {
    width: calc(100% - 80px);
  }
}

.page_inner_m.relative {
  position: relative;
}

.page_inner_l {
  max-width: 1040px;
  width: calc(100% - 40px);
  margin: 0 auto;
}
@media print, screen and (min-width: 920px) {
  .page_inner_l {
    width: calc(100% - 160px);
  }
}

.page_inner_ll {
  max-width: 1380px;
  width: calc(100% - 40px);
  margin: 0 auto;
}
@media print, screen and (min-width: 920px) {
  .page_inner_ll {
    width: calc(100% - 80px);
  }
}

.page_head_title_l.front,
.page_head_title_l.page {
  position: relative;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 768px) {
  .page_head_title_l.front,
  .page_head_title_l.page {
    margin-bottom: 30px;
  }
}
.page_head_title_l.front .jp,
.page_head_title_l.page .jp {
  position: relative;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.2;
  color: #1D1D1D;
  letter-spacing: 0;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .page_head_title_l.front .jp,
  .page_head_title_l.page .jp {
    font-size: 1.8rem;
  }
}
.page_head_title_l.front.center,
.page_head_title_l.page.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}
.page_head_title_l.front.type_white .en,
.page_head_title_l.page.type_white .en {
  color: #fff;
}
.page_head_title_l.front.type_white .jp,
.page_head_title_l.page.type_white .jp {
  color: #fff;
}
.page_head_title_l.front.type_white .jp::before,
.page_head_title_l.page.type_white .jp::before {
  background-color: #fff;
}
.page_head_title_l.front.type_fs_m .en,
.page_head_title_l.page.type_fs_m .en {
  font-size: clamp(2.5rem, 2.5rem + 1vw, 5rem);
}

.page_head_title_l.front .jp {
  font-size: clamp(3.2rem, 3.2rem + 0.05vw, 4rem);
}
@media print, screen and (min-width: 768px) {
  .page_head_title_l.front .jp {
    font-size: clamp(3.2rem, 3.2rem + 1vw, 4rem);
  }
}

.global_nav.global_nav__pc {
  display: none;
}
@media print, screen and (min-width: 920px) {
  .global_nav.global_nav__pc {
    display: block;
  }
}
.global_nav.global_nav__sp {
  display: block;
}
@media print, screen and (min-width: 920px) {
  .global_nav.global_nav__sp {
    display: none;
  }
}

.ta_c {
  text-align: center;
}

.ta_l {
  text-align: left;
}

.ta_r {
  text-align: right;
}

.admin-edit {
  display: none;
  position: absolute;
  z-index: 9998;
  margin: 0 !important;
  padding: 0 !important;
  inset: auto 0 1rem auto;
}
@media print, screen and (min-width: 768px) {
  .admin-edit {
    display: block;
  }
}
.admin-edit.left {
  inset-inline: 0 auto;
}
.admin-edit.top {
  inset-block: 1rem auto;
}
.admin-edit a {
  padding: 0 0.35rem;
  background-color: #000;
  color: white;
  font-size: 1.5rem;
  font-weight: normal;
  text-decoration: none;
  white-space: nowrap;
  opacity: 0.25;
}
.admin-edit a:hover {
  opacity: 1;
}

@media print, screen and (min-width: 920px) {
  .main_contents.padding {
    padding-top: 100px;
  }
}

.header {
  position: relative;
  width: 100%;
  z-index: 100;
  opacity: 1;
  transform: translateY(0);
  transition: 0.3s;
}
.header.hidden {
  opacity: 0;
  transform: translateY(-29px);
}
.header.fixed {
  position: fixed;
  top: 0;
  left: 0;
}
.header.fade-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
  pointer-events: auto;
  background-color: #fff;
}
.header .header_inner {
  padding-block: 1.5rem;
}
.fixed .header .header_inner {
  padding-block: 1rem;
  min-height: 8rem;
}
.header .logo-img {
  position: absolute;
  top: -1rem;
  left: 0;
  opacity: 0;
  pointer-events: none;
  height: auto;
  max-width: 100%;
  transition: none !important;
}
.header #logo-img-normal,
.header #logo-img-small {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: none !important;
}
.header #logo-img-normal.visible,
.header #logo-img-small.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.header .logo {
  position: relative;
  display: inline-block;
}

body:not(.home) .header__content {
  position: fixed;
  right: 10px;
  top: 10px;
}
@media print, screen and (min-width: 920px) {
  body:not(.home) .header__content {
    right: 20px;
    top: auto;
  }
}
@media print, screen and (min-width: 1180px) {
  body:not(.home) .header__content {
    right: 35px;
    top: auto;
  }
}

.header_inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  transition: all 0.3s;
  padding: 15px 10px;
}
@media print, screen and (min-width: 768px) {
  .header_inner {
    padding: 8px 10px 0 10px;
  }
}
@media print, screen and (min-width: 920px) {
  .header_inner {
    padding: 20px 32px 0 32px;
  }
}
@media print, screen and (min-width: 1180px) {
  .header_inner {
    padding: 28px 32px 0 32px;
  }
}

.logo-normal-shown .header__logo {
  left: 50%;
  transform: translateX(-50%);
}
@media print, screen and (min-width: 768px) {
  .logo-normal-shown .header__logo {
    left: auto;
    transform: unset;
  }
}

.header__logo {
  position: relative;
}
.header__logo .logo {
  width: 115px;
}
@media print, screen and (min-width: 920px) {
  .header__logo .logo {
    width: 180px;
  }
}
@media print, screen and (min-width: 1180px) {
  .header__logo .logo {
    width: 210px;
  }
}

.header__content {
  display: flex;
  align-items: center;
  letter-spacing: 0.03em;
  column-gap: 24px;
}
@media print, screen and (min-width: 1180px) {
  .header__content {
    column-gap: 32px;
  }
}

.gl_nav_wrap {
  display: none;
}
@media print, screen and (min-width: 920px) {
  .gl_nav_wrap {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
  }
}

.gl_nav_main {
  display: flex;
  align-items: center;
  border-radius: 100px;
  column-gap: 20px;
}
@media print, screen and (min-width: 1180px) {
  .gl_nav_main {
    column-gap: 28px;
  }
}
.gl_nav_main > li > a,
.gl_nav_main > li > label {
  display: flex;
  padding: 12px 0;
  line-height: 1.4;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
}
@media print, screen and (min-width: 920px) {
  .gl_nav_main > li > a,
  .gl_nav_main > li > label {
    font-size: 1.4rem;
  }
}
@media print, screen and (min-width: 1180px) {
  .gl_nav_main > li > a,
  .gl_nav_main > li > label {
    padding: 10px 0;
    font-size: 1.6rem;
  }
}
@media (hover: hover) {
  .gl_nav_main > li > a:where(:any-link, :enabled, summary, span, dt, div, label):hover,
  .gl_nav_main > li > label:where(:any-link, :enabled, summary, span, dt, div, label):hover {
    opacity: 0.5;
  }
}
.gl_nav_main > li.toggle_area {
  position: relative;
}
.gl_nav_main > li.toggle_area .toggle_btn,
.gl_nav_main > li.toggle_area label {
  position: relative;
  padding-right: 20px;
}
.gl_nav_main > li.toggle_area .toggle_btn::after,
.gl_nav_main > li.toggle_area label::after {
  content: "";
  position: absolute;
  display: block;
  right: 4px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #00adec;
  border-left: 2px solid #00adec;
  top: calc(50% - 2px);
  transform: translateY(-50%) rotate(225deg);
  transition: 0.3s;
}
@media print, screen and (min-width: 1180px) {
  .gl_nav_main > li.toggle_area .toggle_btn::after,
  .gl_nav_main > li.toggle_area label::after {
    top: calc(50% - 1px);
  }
}
.gl_nav_main > li.toggle_area.active .toggle_btn {
  color: #00adec;
}
.gl_nav_main > li.toggle_area.active .toggle_btn::after {
  top: calc(50% + 2px);
  transform: translateY(-50%) rotate(45deg);
}
@media print, screen and (min-width: 1180px) {
  .gl_nav_main > li.toggle_area.active .toggle_btn::after {
    top: calc(50% + 3px);
  }
}
.gl_nav_main > li.toggle_area.active .toggle_menu {
  opacity: 1;
  visibility: visible;
  top: 42px;
}
@media print, screen and (min-width: 1180px) {
  .gl_nav_main > li.toggle_area.active .toggle_menu {
    top: 59px;
  }
}
.gl_nav_main > li.toggle_area .toggle_menu {
  position: absolute;
  top: 32px;
  left: 0;
  width: 220px;
  z-index: 1;
  padding-top: 15px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
@media print, screen and (min-width: 1180px) {
  .gl_nav_main > li.toggle_area .toggle_menu {
    top: 49px;
  }
}
.gl_nav_main > li.toggle_area .toggle_menu_inner {
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding: 14px;
  box-shadow: 0 0 15px rgba(15, 59, 88, 0.16);
}
.gl_nav_main > li.toggle_area .toggle_menu_first_title,
.gl_nav_main > li.toggle_area .sub-menu-class li > a {
  position: relative;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4;
}
.gl_nav_main > li.toggle_area .toggle_menu_first_title:after,
.gl_nav_main > li.toggle_area .sub-menu-class li > a:after {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  top: 1px;
  display: inline-block;
  content: "\e901";
  color: #00adec;
  margin-left: 5px;
}
@media (hover: hover) {
  .gl_nav_main > li.toggle_area .toggle_menu_first_title:where(:any-link, :enabled, summary, span, dt, div, label):hover,
  .gl_nav_main > li.toggle_area .sub-menu-class li > a:where(:any-link, :enabled, summary, span, dt, div, label):hover {
    color: #00adec;
  }
}
.gl_nav_main > li.toggle_area .sub-menu-class .sub-menu-class,
.gl_nav_main > li.toggle_area .toggle_menu_list {
  padding-left: 1em;
}
.gl_nav_main > li.toggle_area .sub-menu-class .sub-menu-class li a,
.gl_nav_main > li.toggle_area .toggle_menu_list li a {
  position: relative;
  font-size: 1.3rem;
  line-height: 1.4;
}
.gl_nav_main > li.toggle_area .sub-menu-class .sub-menu-class li a:after,
.gl_nav_main > li.toggle_area .toggle_menu_list li a:after {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  top: 1px;
  display: inline-block;
  content: "\e901";
  color: #00adec;
  margin-left: 5px;
}
@media (hover: hover) {
  .gl_nav_main > li.toggle_area .sub-menu-class .sub-menu-class li a:where(:any-link, :enabled, summary, span, dt, div, label):hover,
  .gl_nav_main > li.toggle_area .toggle_menu_list li a:where(:any-link, :enabled, summary, span, dt, div, label):hover {
    color: #00adec;
  }
}

.menu-recruit-container > ul > li a {
  display: none;
  padding: 11px 20px 10px 20px;
  line-height: 1.4;
  background-color: #1D1D1D;
  border: solid 1px transparent;
  color: #fff;
  border-radius: 100px;
  font-size: 1.4rem;
  font-weight: 700;
  border: solid 2px #1D1D1D;
  gap: 8px;
}
@media print, screen and (min-width: 920px) {
  .menu-recruit-container > ul > li a {
    padding: 11px 17px;
  }
}
@media print, screen and (min-width: 1180px) {
  .menu-recruit-container > ul > li a {
    padding: 11px 20px 10px 20px;
  }
}
.menu-recruit-container > ul > li a svg {
  width: 14px;
}
@media print, screen and (min-width: 1180px) {
  .menu-recruit-container > ul > li a svg {
    width: 20px;
  }
}
@media print, screen and (min-width: 920px) {
  .menu-recruit-container > ul > li a {
    display: flex;
  }
}
@media (hover: hover) {
  .menu-recruit-container > ul > li a:where(:any-link, :enabled, summary, span, dt, div, label):hover {
    background-color: #fff;
    color: #1D1D1D;
  }
}

.header_sp {
  display: flex;
  align-items: center;
  height: 50px;
}
@media print, screen and (min-width: 920px) {
  .header_sp {
    display: none;
  }
}
.header_sp .header__logo {
  font-size: 0;
  width: 50%;
  max-width: 158px;
  margin-left: 12px;
}

.header_sp_menu_group {
  display: flex;
  margin-left: auto;
}

.header_sp_setting button {
  width: 50px;
  height: 50px;
  display: block;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  line-height: 1;
  color: #004181;
}
.header_sp_setting button::before {
  margin-top: -2px;
  display: block;
  content: "\e903";
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 2rem;
  margin-bottom: 2px;
}

.sp_menu_toggle {
  position: relative;
  display: flex;
  align-items: center;
}
.sp_menu_toggle:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 1px;
  height: calc(100% - 20px);
  background: #004181;
}

.sp_menu_toggle__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 48px;
  background-image: url("../img/common/toggle_menu.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transition: background-image 0.5s;
}
@media print, screen and (min-width: 920px) {
  .sp_menu_toggle__btn {
    display: none;
  }
}
.sp_menu_toggle__btn.active {
  background-image: url("../img/common/toggle_close.svg");
}

.sp_menu_toggle__btn__line {
  position: relative;
  display: block;
  width: 50%;
  height: 14px;
}
.sp_menu_toggle__btn__line span {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  transition: 0.3s;
}
.sp_menu_toggle__btn__line span:nth-child(1) {
  top: calc(50% - 6px);
}
.sp_menu_toggle__btn__line span:nth-child(3) {
  top: calc(50% + 6px);
}

.sp_menu_area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  max-height: calc(100vh - 10px);
  z-index: 110;
  background: #ffffff;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.sp_menu_area.active {
  opacity: 1;
  visibility: visible;
}

.sp_menu_header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 8px 10px;
}

.sp_menu_header__logo {
  margin-top: -3.75rem;
}
@media print, screen and (min-width: 768px) {
  .sp_menu_header__logo {
    margin-top: auto;
  }
}
.sp_menu_header__logo .logo {
  font-size: 0;
  width: 115px;
  margin-inline: auto;
}
@media print, screen and (min-width: 920px) {
  .sp_menu_header__logo .logo {
    width: 180px;
  }
}
@media print, screen and (min-width: 1180px) {
  .sp_menu_header__logo .logo {
    width: 210px;
  }
}

.sp_menu_header__content {
  margin-left: auto;
}

.sp_menu_content {
  padding: 0 20px 100px;
}

.sp_menu_main_list {
  margin-top: 30px;
}
.sp_menu_main_list > li:not(:first-child) {
  margin-top: 20px;
}

.sp_menu_main_list > li > a {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
  color: #1D1D1D;
  line-height: 1.4;
  font-weight: 700;
}
.sp_menu_main_list > li > a:hover {
  opacity: 0.5;
}

.sp_menu_main_list_child li,
.sp_menu_main_list .sub-menu li {
  margin-top: 5px;
}
.sp_menu_main_list_child li a,
.sp_menu_main_list .sub-menu li a {
  color: #fff;
  font-size: 1.5rem;
}

.sp_menu_sub_list {
  display: flex;
  margin-top: 35px;
  gap: 16px;
}
@media print, screen and (min-width: 768px) {
  .sp_menu_sub_list {
    gap: 32px;
  }
}
.sp_menu_sub_list li {
  position: relative;
}
.sp_menu_sub_list li:not(:first-child)::after {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: -8px;
  width: 1px;
  height: 60%;
  background: #fff;
}
@media print, screen and (min-width: 768px) {
  .sp_menu_sub_list li:not(:first-child)::after {
    left: -16px;
  }
}
.sp_menu_sub_list li a {
  color: #fff;
}

.sp_global_nav {
  position: fixed;
  width: 100%;
  height: 100svh;
  top: 0;
  left: 0;
  display: block;
  z-index: 200;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.sp_global_nav.active {
  opacity: 1;
  visibility: visible;
}

.sp_global_nav_inner {
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
  padding-bottom: 100px;
}

.sp_global_nav_header {
  padding: 17px 17px 0;
  display: flex;
  align-items: center;
  height: 67px;
}
.sp_global_nav_header .header__logo {
  font-size: 0;
  width: 50%;
  max-width: 158px;
  margin-left: 12px;
}

.sp_search_keyword_area {
  padding: 20px;
}

.sp_sub_menu {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  padding: 0 20px;
}
.sp_sub_menu li {
  width: calc((100% - 16px) / 2);
  font-family: "Noto Serif JP", serif;
  font-size: 1.4rem;
  line-height: 1.4;
}
.sp_sub_menu li a {
  position: relative;
  display: block;
  padding-left: 18px;
}
.sp_sub_menu li a:before {
  content: "";
  position: absolute;
  display: block;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid #333;
  border-left: 1px solid #333;
  -webkit-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
}

.sp_global_nav__list {
  margin-top: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #cecece;
}

.sp_global_nav__list_item {
  margin-top: -1px;
}

.sp_global_nav__list_item__title {
  display: flex;
  border-top: 1px solid #cecece;
  line-height: 1.4;
}
.sp_global_nav__list_item__title a {
  display: block;
  width: 100%;
  padding: 20px;
  font-size: 1.6rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
}
.sp_global_nav__list_item__title .toggle {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  flex-shrink: 0;
}
.sp_global_nav__list_item__title .toggle:before {
  position: absolute;
  left: 0;
  top: 10px;
  content: "";
  height: calc(100% - 20px);
  width: 1px;
  background: #cecece;
}
.sp_global_nav__list_item__title .toggle span {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
}
.sp_global_nav__list_item__title .toggle span:before, .sp_global_nav__list_item__title .toggle span:after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 1px;
  background: #004181;
}
.sp_global_nav__list_item__title .toggle span:after {
  transform: translate(-50%, -50%) rotate(-90deg);
}
.sp_global_nav__list_item__title .toggle.active {
  background-color: #ffffff;
}
.sp_global_nav__list_item__title .toggle.active span:after {
  transform: translate(-50%, -50%) rotate(-180deg);
}

.sp_global_nav__list_child_nav {
  display: none;
  padding: 30px 20px;
  background: #ffffff;
}
.sp_global_nav__list_child_nav.active {
  display: block;
}

.sp_global_nav__list_child_nav__item:not(:first-of-type) {
  margin-top: 20px;
}
.sp_global_nav__list_child_nav__item .first_link {
  margin-bottom: 10px;
}
.sp_global_nav__list_child_nav__item .first_link a {
  position: relative;
  display: block;
  padding: 0 0 16px 20px;
  display: block;
  line-height: 1.4;
  border-bottom: 1px solid #cecece;
  font-size: 1.5rem;
}
.sp_global_nav__list_child_nav__item .first_link a:before {
  content: "";
  position: absolute;
  display: block;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid #333;
  border-left: 1px solid #333;
  -webkit-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
}
.sp_global_nav__list_child_nav__item .second_link a {
  display: block;
  padding: 8px 20px;
  line-height: 1.4;
}

.button-big {
  background-color: white;
  width: fit-content;
  padding: 1rem 2rem;
  border-radius: 8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -5rem;
  min-width: 315px;
  max-width: 325px;
  width: calc(100% - 20px);
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .button-big {
    padding: 3rem 5rem;
    bottom: -6rem;
    width: auto;
    max-width: 440px;
  }
}
.button-big .bold {
  font-size: 20px;
}
.button-big svg path {
  color: #fff;
}
.button-big .small {
  font-size: 1.2rem;
  margin-top: 5px;
}

.footer {
  position: relative;
  background: white;
  padding-top: 50px;
  padding-bottom: 25px;
}
@media print, screen and (min-width: 920px) {
  .footer {
    padding-top: 70px;
    padding-bottom: 50px;
  }
}

.footer_flex {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-inline: 30px;
}
@media print, screen and (min-width: 1180px) {
  .footer_flex {
    flex-direction: row;
  }
}

.footer_flex__logo {
  flex-shrink: 0;
  text-align: center;
}
@media print, screen and (min-width: 1024px) {
  .footer_flex__logo {
    text-align: left;
  }
}
.footer_flex__logo img {
  width: 160px;
  aspect-ratio: 160/132;
}

.footer_flex__content {
  display: flex;
  gap: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media print, screen and (min-width: 920px) {
  .footer_flex__content {
    align-items: flex-end;
    justify-content: flex-end;
  }
}

.footer_main_nav {
  width: 100%;
  display: none;
}
@media print, screen and (min-width: 768px) {
  .footer_main_nav {
    display: flex;
  }
}

.footer_main_nav .menu {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
@media print, screen and (min-width: 920px) {
  .footer_main_nav .menu {
    justify-content: flex-end;
    gap: 25px;
  }
}
@media (hover: hover) {
  .footer_main_nav .menu a:where(:any-link, :enabled, summary, span, dt, div, label):hover {
    opacity: 0.7;
  }
}

.footer_main_nav_list__first_title,
.footer_main_nav > ul li label,
.footer_main_nav > ul li a {
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.4;
}
@media print, screen and (min-width: 768px) {
  .footer_main_nav_list__first_title,
  .footer_main_nav > ul li label,
  .footer_main_nav > ul li a {
    font-size: 1.6rem;
  }
}

.footer_copyright {
  text-align: center;
  color: #383838;
  opacity: 0.4;
}

.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.category-filter.page {
  justify-content: center;
  padding-bottom: 4rem;
  background-color: #f5f6f7;
}
@media print, screen and (min-width: 920px) {
  .category-filter.page {
    padding-bottom: 6rem;
  }
}
.category-filter li {
  flex-grow: 1;
  width: 40%;
}
@media print, screen and (min-width: 768px) {
  .category-filter li {
    width: auto;
    flex-grow: unset;
  }
}
.category-filter li > button,
.category-filter li > a {
  display: block;
  padding: 2px 16px;
  color: #fff;
  border: solid 4px transparent;
  border-radius: 4rem;
  font-weight: 700;
  width: 100%;
  text-align: center;
  transition: 0.3s;
}
@media print, screen and (min-width: 768px) {
  .category-filter li > button,
  .category-filter li > a {
    padding: 2px 20px;
    text-align: left;
    width: auto;
  }
}
@media print, screen and (min-width: 1180px) {
  .category-filter li > button,
  .category-filter li > a {
    padding: 2px 32px;
  }
}
.category-filter button[data-cat=all],
.category-filter li.all a {
  border: solid 4px #1D1D1D;
  color: #1D1D1D;
  background-color: #fff;
}
.category-filter button[data-cat=all].active,
.category-filter li.all a.active {
  background-color: #1D1D1D;
  color: #fff;
}
.category-filter button[data-cat=all]:hover,
.category-filter li.all a:hover {
  background-color: #1D1D1D;
  color: #fff;
}
.category-filter button[data-cat=report],
.category-filter li.report a {
  border: solid 4px #FDA516;
  background-color: #fff;
  color: #FDA516;
}
.category-filter button[data-cat=report].active,
.category-filter li.report a.active {
  background-color: #FDA516;
  color: #fff;
}
.category-filter button[data-cat=report]:hover,
.category-filter li.report a:hover {
  background-color: #FDA516;
  color: #fff;
}
.category-filter button[data-cat=topic],
.category-filter li.topic a {
  border: solid 4px #3DBEE3;
  background-color: #fff;
  color: #3DBEE3;
}
.category-filter button[data-cat=topic].active,
.category-filter li.topic a.active {
  background-color: #3DBEE3;
  color: #fff;
}
.category-filter button[data-cat=topic]:hover,
.category-filter li.topic a:hover {
  background-color: #3DBEE3;
  color: #fff;
}
.category-filter button[data-cat=event],
.category-filter li.event a {
  border: solid 4px #8BB708;
  background-color: #fff;
  color: #8BB708;
}
.category-filter button[data-cat=event].active,
.category-filter li.event a.active {
  background-color: #8BB708;
  color: #fff;
}
.category-filter button[data-cat=event]:hover,
.category-filter li.event a:hover {
  background-color: #8BB708;
  color: #fff;
}

.page_btn {
  display: inline-flex;
  align-items: center;
  column-gap: 14px;
  text-decoration: none;
  background-color: #1D1D1D;
  color: #fff;
  padding: 1rem 1.5rem 1rem 3rem;
  border-radius: 4rem;
  border: solid 2px #1D1D1D;
}
@media print, screen and (min-width: 768px) {
  .page_btn {
    column-gap: 20px;
  }
}
@media (hover: hover) {
  .page_btn:not(.no_hover):where(:any-link, :enabled, summary, span, dt, div, label):hover {
    background-color: #fff;
    color: #1D1D1D;
  }
}
.page_btn .text {
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
}
@media print, screen and (min-width: 920px) {
  .page_btn .text {
    font-size: 1.6rem;
  }
}
.page_btn .circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: solid 1px #fff;
  background-color: #1d1d1d;
  position: relative;
}
.page_btn svg {
  position: absolute;
  width: 16px;
  height: 10px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}
.page_btn.type_white {
  color: #fff;
}
.page_btn.type_white .circle {
  color: #00adec;
}
.page_btn.type_white .circle::after {
  background-color: #fff;
}
.page_btn.type_white .circle::before {
  border-color: #fff;
}
.page_btn.type_white .circle .arrow::before {
  color: #00adec;
}
.page_btn.type_white .circle .arrow::after {
  color: #fff;
}
@media (hover: hover) {
  .page_btn.type_white:where(:any-link, :enabled, summary, span, dt, div, label):hover {
    color: #fff;
  }
}

.page_btn_box {
  margin-top: 20px;
}
@media print, screen and (min-width: 768px) {
  .page_btn_box {
    margin-top: 40px;
  }
}

.swiper_controller {
  display: flex;
  align-items: center;
  column-gap: 40px;
  margin-top: 50px;
}

.parts_type_bnr_link_block {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media print, screen and (min-width: 920px) {
  .parts_type_bnr_link_block {
    flex-direction: row;
    gap: 40px 0;
    margin-left: -15px;
    margin-right: -15px;
  }
}

.parts_type_bnr_link_block__item {
  display: flex;
  width: 100%;
}
.parts_type_bnr_link_block__item.sp_colm2_1 {
  width: calc(50% - 5px);
}
@media print, screen and (min-width: 920px) {
  .parts_type_bnr_link_block__item.colm4_1 {
    width: 25%;
    padding: 0 15px;
  }
  .parts_type_bnr_link_block__item.colm3_1 {
    width: 33.33333%;
    padding: 0 15px;
  }
  .parts_type_bnr_link_block__item.colm2_1 {
    width: 50%;
    padding: 0 15px;
  }
}
.parts_type_bnr_link_block__item > a, .parts_type_bnr_link_block__item > span {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.parts_type_bnr_link_block__item > a img, .parts_type_bnr_link_block__item > span img {
  width: 100%;
  transition: 0.3s;
}
@media (hover: hover) {
  .parts_type_bnr_link_block__item > a:where(:any-link, :enabled, summary, span, dt, div, label):hover img {
    transform: scale(1.05);
  }
}
.parts_type_bnr_link_block__item.type_text > a, .parts_type_bnr_link_block__item.type_text > span {
  border: 1px solid #cecece;
  padding: 20px;
}
.parts_type_bnr_link_block__item.type_text > a {
  position: relative;
  padding-right: 50px;
}
.parts_type_bnr_link_block__item.type_text > a:not([target=_blank]):before {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 100px;
  border: 1px solid #1D1D1D;
}
@media print, screen and (min-width: 920px) {
  .parts_type_bnr_link_block__item.type_text > a:not([target=_blank]):before {
    width: 25px;
    height: 25px;
  }
}
.parts_type_bnr_link_block__item.type_text > a:not([target=_blank]):after {
  content: "";
  position: absolute;
  display: block;
  top: calc(50% - 3px);
  right: 29px;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-top: 1px solid #1D1D1D;
  border-left: 1px solid #1D1D1D;
  transform: rotate(135deg);
}
@media print, screen and (min-width: 920px) {
  .parts_type_bnr_link_block__item.type_text > a:not([target=_blank]):after {
    width: 6px;
    height: 6px;
    top: calc(50% - 3px);
    right: 30px;
  }
}
.parts_type_bnr_link_block__item.type_text > a[target=_blank] {
  padding-right: 45px;
}
.parts_type_bnr_link_block__item.type_text > a[target=_blank]:after {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e900";
  font-size: 1.2em;
}
@media (hover: hover) {
  .parts_type_bnr_link_block__item.type_text > a:where(:any-link, :enabled, summary, span, dt, div, label):hover {
    background-color: #004181;
    color: #fff;
  }
}

.parts_type_bnr_link_block__facility {
  font-size: 1.4rem;
  line-height: 1.4;
}
@media print, screen and (min-width: 920px) {
  .parts_type_bnr_link_block__facility {
    font-size: 1.5rem;
  }
}

.parts_type_bnr_link_block__name {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  line-height: 1.4;
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
  font-weight: 600;
  gap: 10px 20px;
}
@media print, screen and (min-width: 920px) {
  .parts_type_bnr_link_block__name {
    margin-top: 4px;
    font-size: 2.3rem;
  }
}
.parts_type_bnr_link_block__name .font_s {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: normal;
}
@media print, screen and (min-width: 920px) {
  .parts_type_bnr_link_block__name .font_s {
    font-size: 1.5rem;
  }
}


.top_contact_area {
  overflow: hidden;
  position: relative;
  background-image: url("../img/top/contact_sp_bg.jpg?250524");
  background-size: cover;
  background-position: bottom;
  padding: 60px 0 90px;
}
@media print, screen and (min-width: 768px) {
  .top_contact_area {
    background-image: url("../img/top/contact_bg.jpg?250524");
    background-position: center;
  }
}
.top_contact_area .inner {
  max-width: 800px;
  width: calc(100% - 40px);
  margin: 0 auto;
}
.top_contact_area .frame {
  position: relative;
  padding: 60px 20px 85px 20px;
  border: solid 4px white;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  font-weight: 700;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .top_contact_area .frame {
    padding: 50px 32px 95px 32px;
    font-size: 1.8rem;
  }
}
@media print, screen and (min-width: 920px) {
  .top_contact_area .frame {
    padding: 60px 32px 105px 32px;
  }
}
.top_contact_area .frame p {
  position: relative;
  line-height: 2;
}
.top_contact_area .frame::before {
  position: absolute;
  inset: 0;
  content: "";
  width: 100%;
  height: auto;
  background: rgba(0, 0, 0, 0.2);
}
.top_contact_area .page_head_title_l .jp {
  font-size: clamp(2.2rem, 6.87vw, 2.4rem);
}
@media print, screen and (min-width: 920px) {
  .top_contact_area .page_head_title_l .jp {
    font-size: clamp(3.2rem, 3.2rem + 0.05vw, 4rem);
  }
}
.top_contact_area .nagasaki {
  color: #fff;
  font-size: 1.2rem;
  position: absolute;
  bottom: 8px;
  right: 8px;
}
@media print, screen and (min-width: 920px) {
  .top_contact_area .nagasaki {
    font-size: 1.3rem;
  }
}

.top_contact_box {
  position: relative;
}

.recruit_btn {
  margin-top: 35px;
}
@media print, screen and (min-width: 768px) {
  .recruit_btn {
    margin-top: 75px;
  }
}

.recruit_scroll_box {
  position: absolute;
  display: flex;
  justify-content: space-between;
  left: 40%;
  top: -45em;
  height: 1550px;
  width: 80%;
  transform: rotate(14deg);
}
@media print, screen and (min-width: 768px) {
  .recruit_scroll_box {
    left: 40%;
    width: 74%;
  }
}
@media print, screen and (min-width: 1180px) {
  .recruit_scroll_box {
    width: 70%;
  }
}

.recruit_scroll_box__item {
  width: calc(50% - 3px);
  height: 100%;
}
@media print, screen and (min-width: 768px) {
  .recruit_scroll_box__item {
    width: calc(50% - 6px);
  }
}
.recruit_scroll_box__item:nth-of-type(2) .recruit_scroll_box__slide_wrap {
  animation: slideShow2 67s infinite linear 1s both;
}

.recruit_scroll_box__slide_wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 6px;
  animation: slideShow 67s infinite linear 1s both;
}
@media print, screen and (min-width: 768px) {
  .recruit_scroll_box__slide_wrap {
    gap: 12px;
  }
}
.recruit_scroll_box__slide_wrap + .recruit_scroll_box__slide_wrap {
  margin-top: 6px;
}
@media print, screen and (min-width: 768px) {
  .recruit_scroll_box__slide_wrap + .recruit_scroll_box__slide_wrap {
    margin-top: 12px;
  }
}
.recruit_scroll_box__slide_wrap span {
  position: relative;
  display: block;
}
.recruit_scroll_box__slide_wrap span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(62, 76, 89, 0.5);
}

@keyframes slideShow {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes slideShow2 {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
.page_section_intro_text {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.6;
}
@media print, screen and (min-width: 768px) {
  .page_section_intro_text {
    font-size: 2.5rem;
  }
}
.page_section_intro_text.type_white {
  color: #fff;
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.section_front_member {
  position: relative;
  background-color: #fff;
  padding: 114px 0 56px;
}
@media print, screen and (min-width: 768px) {
  .section_front_member {
    padding: 160px 0 100px;
  }
}
.section_front_member::before, .section_front_member::after {
  content: "";
  position: absolute;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.section_front_member::before {
  background-image: url("../img/top/member-left.svg");
  aspect-ratio: 238/223;
  top: -3%;
  width: 28%;
  left: 5%;
}
@media print, screen and (min-width: 768px) {
  .section_front_member::before {
    width: 17%;
    left: 15%;
  }
}
.section_front_member::after {
  width: 25%;
  aspect-ratio: 265/197;
  background-image: url("../img/top/member-right.svg");
  right: 3%;
  top: 5%;
}
@media print, screen and (min-width: 768px) {
  .section_front_member::after {
    width: 18%;
    right: 8%;
  }
}
.section_front_member .modal_wrap {
  overflow: hidden;
  max-height: fit-content;
}
.section_front_member .modal_wrap .inner {
  overflow-y: auto;
  height: calc(90vh - 3rem);
  padding-inline: 2rem;
}

.member-list-wrap {
  position: relative;
}
.member-list-wrap li {
  cursor: pointer;
}
.member-list-wrap .scroll_left {
  position: absolute;
  font-size: 3.2rem;
  font-weight: 700;
  writing-mode: vertical-rl;
  top: 50%;
  left: 15px;
  transform: translateX(-50%) translateY(-50%);
  height: 100%;
}
@media print, screen and (min-width: 920px) {
  .member-list-wrap .scroll_left {
    left: 10px;
  }
}
.member-list-wrap .scroll_left::after {
  content: "";
  display: inline-block;
  position: absolute;
  background-color: #000;
  right: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% - 330px);
  animation: scroll 3s infinite;
}
.member-list-wrap .scroll_right {
  position: absolute;
  font-size: 3.2rem;
  font-weight: 700;
  writing-mode: vertical-rl;
  top: 50%;
  left: 15px;
  transform: translateX(-50%) translateY(-50%);
  height: 100%;
}
@media print, screen and (min-width: 920px) {
  .member-list-wrap .scroll_right {
    right: -11%;
    left: auto;
  }
}
.member-list-wrap .scroll_right::after {
  content: "";
  display: inline-block;
  position: absolute;
  background-color: #000;
  right: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% - 190px);
  animation: scroll 5s infinite;
}

.member-list-wrap + .member-list-wrap {
  margin-top: 8rem;
}

.member-list-large .position,
.member-list-small .position,
.modal-content .position {
  display: block;
  margin-top: 2rem;
}
.member-list-large .name,
.member-list-large .position,
.member-list-small .name,
.member-list-small .position,
.modal-content .name,
.modal-content .position {
  font-weight: bold;
}
.member-list-large li,
.member-list-small li,
.modal-content li {
  position: relative;
  transition: opacity 0.3s;
}
.member-list-large li img,
.member-list-small li img,
.modal-content li img {
  transition: 0.3s;
}
.member-list-large li:hover img,
.member-list-small li:hover img,
.modal-content li:hover img {
  opacity: 0.7;
}
.member-list-large li:hover .position,
.member-list-large li:hover .name,
.member-list-large li:hover svg,
.member-list-small li:hover .position,
.member-list-small li:hover .name,
.member-list-small li:hover svg,
.modal-content li:hover .position,
.modal-content li:hover .name,
.modal-content li:hover svg {
  opacity: 0.7;
}
.member-list-large .name,
.member-list-small .name,
.modal-content .name {
  font-size: 2.4rem;
  line-height: 1.4;
}
@media print, screen and (min-width: 768px) {
  .member-list-large .name,
  .member-list-small .name,
  .modal-content .name {
    font-size: 3.2rem;
  }
}
.member-list-large .font-en,
.member-list-small .font-en,
.modal-content .font-en {
  color: #1d1d1d;
  opacity: 0.4;
  line-height: 1.2;
  margin-top: 4px;
}

.member-list-large svg,
.modal-content svg {
  position: absolute;
  right: 0;
  bottom: 3rem;
}
@media print, screen and (min-width: 768px) {
  .member-list-large svg,
  .modal-content svg {
    right: 1rem;
  }
}

.member-list-small svg {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media print, screen and (min-width: 768px) {
  .member-list-small svg {
    right: 0;
    bottom: 3rem;
  }
}

.modal .modal-content {
  padding: 40px 20px;
}
@media print, screen and (min-width: 768px) {
  .modal .modal-content {
    padding: 80px 60px;
  }
}
.modal .modal-content svg {
  position: absolute;
  right: 2rem;
  top: 2rem;
}
.modal .modal-content.modal-content_person {
  max-height: 90vh;
  height: 100%;
}
@media print, screen and (min-width: 768px) {
  .modal .modal-content.modal-content_person {
    max-height: none;
    height: auto;
  }
}

.member-list-large {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4vw;
  margin-inline: auto;
  flex-direction: column-reverse;
  padding-left: 44px;
}
@media print, screen and (min-width: 920px) {
  .member-list-large {
    flex-direction: row;
    width: 48vw;
  }
}
.member-list-large > li,
.member-list-large img {
  width: 100%;
}

.member-list-small {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 7.7%;
  row-gap: 40px;
  margin-inline: auto;
  flex-direction: column;
  padding-left: 40px;
}
@media print, screen and (min-width: 920px) {
  .member-list-small {
    flex-direction: row;
    padding-left: 0;
  }
}
.member-list-small:not(:first-child) {
  margin-top: 40px;
}
@media print, screen and (min-width: 768px) {
  .member-list-small:not(:first-child) {
    margin-top: 60px;
  }
}
.member-list-small > li {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 4%;
}
@media print, screen and (min-width: 920px) {
  .member-list-small > li {
    gap: 0.5rem;
    flex-direction: column;
    width: 28.2%;
  }
  .member-list-small > li img {
    width: 100%;
  }
}
.member-list-small > li img {
  height: 100%;
  object-fit: contain;
  flex-shrink: 0;
  width: 48%;
}
@media print, screen and (min-width: 920px) {
  .member-list-small > li img {
    width: 100%;
  }
}
.member-list-small > li > div {
  padding-bottom: 4rem;
}
@media print, screen and (min-width: 920px) {
  .member-list-small > li > div {
    padding-bottom: 0;
  }
}
.member-list-small > li .position {
  margin-top: 0;
}
@media print, screen and (min-width: 920px) {
  .member-list-small > li .position {
    margin-top: 2rem;
  }
}

.topics-wrapper {
  margin-top: 3rem;
}

.list_item_topics.front {
  border-top: none;
}
.list_item_topics.front .item_topics:last-child(1) {
  border-bottom: none;
}

.item_topics {
  border-bottom: solid 1px #d9dae7;
}
.item_topics a {
  padding-block: 32px;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 10px 40px;
  padding-block: 25px;
}
@media print, screen and (min-width: 768px) {
  .item_topics a {
    padding-block: 30px;
  }
}
.item_topics a:hover {
  opacity: 0.5;
}
.item_topics .info {
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.item_topics .category {
  background: #1d1d1d;
  border-radius: 2rem;
  color: white;
  padding: 0.15rem 1.25rem 0.25rem 1.25rem;
  font-size: 1.4rem;
}
.item_topics .category.report {
  background-color: #FDA516;
}
.item_topics .category.event {
  background-color: #8BB708;
}
.item_topics .category.topic {
  background-color: #3DBEE3;
}

.modal_title {
  font-weight: 700;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 4rem;
}

/*# sourceMappingURL=common.css.map */
