@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  outline: 0;
}

body {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
em {
  font-style: normal;
  word-wrap: break-word;
  word-break: normal;
  font-weight: 500;
}

ul,
li {
  list-style-type: none;
  margin: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  border-collapse: collapse;
  font-weight: normal;
  text-align: left;
  vertical-align: top;
}

/*HTML5対応*/
img {
  border: none;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

img[src$=".svg"] {
  width: 100%;
}

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

/*ディスプレイ設定*/
.tab_none,
.sp_none {
  display: inline;
}

.sp_block,
.tab_block {
  display: none;
}

@media (max-width: 820px) {
  .tab_l_none {
    display: none;
  }
}
@media (max-width: 768px) {
  .tab_none {
    display: none;
  }
  .tab_block {
    display: block;
  }
}
@media (max-width: 767px) {
  .sp_none {
    display: none;
  }
  .sp_block {
    display: block;
  }
}
.ib {
  display: inline-block;
}

/*リンク対策*/
a {
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
a img:hover {
  opacity: 0.8;
}



/*ボックスサイジング設定*/
*,
*:before,
*:after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/*flexレイアウト*/
.flex {
  display: flex;
  justify-content: flex-start;
}

.flex_center {
  align-items: center;
}

.flex_wrap {
  flex-wrap: wrap;
}

/** 基本指定：余白指定 **/
.pt_20 {
  padding-top: 20px;
}

.pt_30 {
  padding-top: 30px;
}

.pt_40 {
  padding-top: 40px;
}

.pt_50 {
  padding-top: 50px;
}

.pt_60 {
  padding-top: 60px;
}

.pt_70 {
  padding-top: 70px;
}

.pt_80 {
  padding-top: 80px;
}

.pt_90 {
  padding-top: 90px;
}

.pb_10 {
  padding-bottom: 10px;
}

.pb_20 {
  padding-bottom: 20px;
}

.pb_30 {
  padding-bottom: 30px;
}

.pb_40 {
  padding-bottom: 40px;
}

.pb_50 {
  padding-bottom: 50px;
}

.pb_60 {
  padding-bottom: 60px;
}

.pb_70 {
  padding-bottom: 70px;
}

.pb_80 {
  padding-bottom: 80px;
}

.pb_90 {
  padding-bottom: 90px;
}

.mt_20 {
  margin-top: 20px;
}

.mt_30 {
  margin-top: 30px;
}

.mt_50 {
  margin-top: 50px;
}

.mt_60 {
  margin-top: 60px;
}

.mt_70 {
  margin-top: 70px;
}

.mt_80 {
  margin-top: 80px;
}

.mt_90 {
  margin-top: 90px;
}

.mb_20 {
  margin-bottom: 20px;
}

.mb_30 {
  margin-bottom: 30px;
}

.mb_40 {
  margin-bottom: 40px;
}

.mb_50 {
  margin-bottom: 50px;
}

.mb_60 {
  margin-bottom: 60px;
}

.mb_70 {
  margin-bottom: 70px;
}

.mb_80 {
  margin-bottom: 80px;
}

.mb_90 {
  margin-bottom: 90px;
}

@media (max-width: 767px) {
  .pt_20 {
    padding-top: 10px;
  }
  .pt_30 {
    padding-top: 20px;
  }
  .pt_40 {
    padding-top: 20px;
  }
  .pt_50 {
    padding-top: 25px;
  }
  .pt_60 {
    padding-top: 30px;
  }
  .pt_70 {
    padding-top: 35px;
  }
  .pt_80 {
    padding-top: 40px;
  }
  .pt_90 {
    padding-top: 45px;
  }
  .pb_20 {
    padding-bottom: 10px;
  }
  .pb_30 {
    padding-bottom: 15px;
  }
  .pb_40 {
    padding-bottom: 20px;
  }
  .pb_50 {
    padding-bottom: 25px;
  }
  .pb_60 {
    padding-bottom: 30px;
  }
  .pb_70 {
    padding-bottom: 35px;
  }
  .pb_80 {
    padding-bottom: 40px;
  }
  .pb_90 {
    padding-bottom: 45px;
  }
  .mt_20 {
    margin-top: 10px;
  }
  .mt_30 {
    margin-top: 15px;
  }
  .mt_50 {
    margin-top: 25px;
  }
  .mt_60 {
    margin-top: 30px;
  }
  .mt_70 {
    margin-top: 35px;
  }
  .mt_80 {
    margin-top: 40px;
  }
  .mt_90 {
    margin-top: 45px;
  }
  .mb_20 {
    margin-bottom: 10px;
  }
  .mb_30 {
    margin-bottom: 15px;
  }
  .mb_40 {
    margin-bottom: 20px;
  }
  .mb_50 {
    margin-bottom: 25px;
  }
  .mb_60 {
    margin-bottom: 30px;
  }
  .mb_70 {
    margin-bottom: 35px;
  }
  .mb_80 {
    margin-bottom: 40px;
  }
  .mb_90 {
    margin-bottom: 45px;
  }
}
.tx_left {
  text-align: left !important;
}

.tx_center {
  text-align: center !important;
}

.tx_right {
  text-align: right !important;
}


.avatar-img {
    border-radius: 2rem;
    width: 300px;
    width: 31.25vw;
    max-width: unset;
    box-shadow: 0 0 3px 1px black;
    box-shadow: 0 0 5px 3px #00000054;
    animation-name: transformPerspective;
    animation-delay: 150ms;
    animation-timing-function: ease;
    animation-duration: 1000ms;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    transition: opacity 250ms ease;
    will-change: opacity;
}


@media screen and (max-width: 767px) {
  .sp_tx_left {
    text-align: left !important;
  }
  .sp_tx_center {
    text-align: center !important;
  }
  .sp_tx_right {
    text-align: right !important;
  }
}
.text-blue {
  color: #0f4c96;
}

/** breakpoint **/
/** colors **/
/* popin */
.popin,
.popin2,
.popin3,
.popin4 {
  opacity: 0;
  transition: 1.5s;
}
.popin.active,
.popin2.active,
.popin3.active,
.popin4.active {
  opacity: 1;
}

/*** animation ***/
@keyframes animStaffPWLogo {
  0% {
    transform: translate(-50%, 0);
  }
  100% {
    transform: translate(-55%, 7.5%);
  }
}
@keyframes animStalkerText {
  0% {
    scale: 0;
  }
  50% {
    scale: 1.025;
  }
  75% {
    scale: 0.9975;
  }
  100% {
    scale: 1;
  }
}
#stalker {
  pointer-events: none;
  position: fixed;
  top: -8px;
  left: -8px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  transform: translate(0, 0);
  opacity: 0;
  transition-property: opacity;
  transition-duration: 100ms;
  transition-timing-function: ease-out;
  z-index: 999;
  color: white;
}
#stalker.active {
  opacity: 1;
}
#stalker.active span {
  animation: animStalkerText 400ms ease-in-out 1 forwards;
}
#stalker span {
  background: rgba(0, 0, 0, 0.5);
  background: #0f4c96;
  background: rgb(0, 134, 196);
  background: linear-gradient(rgb(0, 134, 196) -25%, rgb(11, 72, 140) 150%);
  font-size: 11px;
  scale: 0.1;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.2em;
  border-radius: 100%;
}

/*** 基本指定 ***/
#site_bg {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}

.site_wrap {
  position: relative;
  z-index: 2;
}

.site_fade {
  animation: fadein 2s forwards;
  position: fixed;
  z-index: 1000;
  background: #fff;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

@keyframes fadein {
  0% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.wrap {
  max-width: 86%;
  margin: 0 auto;
  width: 1300px;
}
@media screen and (max-width: 767px) {
  .wrap.newsshosai_wrap {
    max-width: 100%;
  }
  .wrap.newsshosai_wrap .news_categoly_links.news_ichiran,
  .wrap.newsshosai_wrap .page_title_wrap,
  .wrap.newsshosai_wrap .btn_wrap.news_shosai {
    max-width: 86%;
    margin-left: auto;
    margin-right: auto;
  }
}

.wrap_l {
  width: 1200px;
}

.wrap_ll {
  width: 1400px;
}

.wrap_m {
  width: 1100px;
}

.wrap_s {
  width: 1000px;
}

.wrap_ll.priv_com {
  width: 100%;
  max-width: 1400px;
}

.wrap_ll .wrap_ll {
  width: 100%;
}

* {
  letter-spacing: 0.03em;
}

body,
select,
textarea,
input,
div,
p {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7em;
  color: #1a203d;
}

a {
  color: #333;
}

.eng {
  font-family: "Outfit", sans-serif, "Noto Sans JP";
}

.mlra {
  margin-left: auto;
  margin-right: auto;
}

.align-right {
  text-align: right;
}

/** var **/
:root {
  --border-radius: 10px;
  --border-radius-big: 28px;
  --recruit-content-pt: 3rem;
  --shift-up: 125vh;
  --recruit-slide-gap: 2rem;
}
@media screen and (max-width: 1280px) {
  :root {
    --recruit-slide-gap: 1rem;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --border-radius-big: 15px;
    --shift-up: 100vh;
    --recruit-slide-gap: 0.5rem;
  }
}

/** placeholder **/
.news_page_wrap, .news_ichiran_wrap, .donation_wrap .donation_item, .sns_wrap {
  background: #fff;
  border-radius: var(--border-radius);
  margin-left: auto;
  margin-right: auto;
  width: 1280px;
  max-width: 100%;
  padding: 45px 95px;
}

.reports_past_wrapper .reports_past_item, .news_return, .news_page_wrap .editor_button {
  pointer-events: all;
  cursor: pointer;
  transition-property: background-color;
  transition-duration: 250ms;
  transition-timing-function: ease;
  border: none;
  box-shadow: none;
  padding: 20px 50px;
}



.header_menu_wrap {
  position: fixed;
  right: 0;
  top: 23px;
  background: linear-gradient(90deg, rgba(15, 76, 150, 0.95) 0%, rgb(15, 76, 150) 80%, rgba(15, 76, 150, 0.7) 100%);
  border-radius: 100px 0 0 100px;
  padding: 0 100px 0 20px;
  box-shadow: 0 0 8px rgba(0, 26, 82, 0.1);
  z-index: 500;
}
.header_menu_wrap.sp-only {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header_menu_wrap.sp-only {
    display: block;
  }
}
.header_menu_wrap.pc-only {
  display: block;
}
@media screen and (max-width: 1024px) {
  .header_menu_wrap.pc-only {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .header_menu_wrap {
    opacity: 0;
    pointer-events: none;
    color: #fff;
    top: 0;
    width: 350px;
    box-sizing: border-box;
    height: 100%;
    border-radius: 0;
    box-shadow: none;
    visibility: visible;
    max-width: 85%;
    padding: 50px 30px 30px 30px;
    background: rgba(0, 74, 124, 0.95);
    transition: 0.3s;
  }
  .open .header_menu_wrap {
    opacity: 1;
    pointer-events: all;
    overflow-y: auto;
    background: rgba(15, 76, 150, 0.98);
  }
  .open .header_menu_wrap a {
    pointer-events: all;
  }
}
@media screen and (max-width: 1023px) {
  .header_menu_wrap a {
    pointer-events: none;
  }
}

@media screen and (max-width: 1023px) {
  .open .parent_menu ul {
    pointer-events: all !important;
  }
}

/* ハンバーガーアイコン */
.hbg_btn {
  display: none;
  position: fixed;
  background: rgb(15, 76, 150);
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 70px;
  height: 70px;
  top: 12px;
  right: 15px;
  z-index: 900;
  border-radius: 100px;
}
@media screen and (max-width: 1023px) {
  .hbg_btn {
    display: inline-block;
  }
}
@media screen and (max-width: 767px) {
  .hbg_btn {
    width: 60px;
    height: 60px;
    right: 10px;
  }
}
.hbg_btn span {
  display: inline-block;
  transition: all 0.3s ease 0s;
  box-sizing: border-box;
  position: absolute;
  left: 28%;
  right: 28%;
  height: 2px;
  background-color: #fff;
  margin: auto;
}
.hbg_btn span:nth-child(1) {
  top: 23px;
}
@media screen and (max-width: 767px) {
  .hbg_btn span:nth-child(1) {
    top: 18px;
  }
}
.hbg_btn span:nth-child(2) {
  top: 34px;
}
@media screen and (max-width: 767px) {
  .hbg_btn span:nth-child(2) {
    top: 28px;
  }
}
.hbg_btn span:nth-child(3) {
  top: 45px;
}
@media screen and (max-width: 767px) {
  .hbg_btn span:nth-child(3) {
    top: 38px;
  }
}
.open .hbg_btn {
  background: transparent;
}
.open .hbg_btn span:nth-child(1) {
  transform: rotate(45deg);
  top: 30px;
}
.open .hbg_btn span:nth-child(2) {
  display: none;
}
.open .hbg_btn span:nth-child(3) {
  transform: rotate(-45deg);
  top: 30px;
}

/* header / menu */
@media screen and (max-width: 1023px) {
  .header_menu {
    flex-direction: column;
  }
}
.header_menu li {
  position: relative;
}
@media screen and (max-width: 1023px) {
  .header_menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
}
.header_menu li a {
  display: block;
  padding: 15px;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
  letter-spacing: 0.07em;
  color: #ffffff;
}
.header_menu li a:hover {
  opacity: 0.9;
}
@media screen and (max-width: 1023px) {
  .header_menu li a {
    color: #fff;
    font-size: 15px;
    padding: 10px 13px;
  }
}
.header_menu li.sp {
  border: none;
  background: rgba(15, 76, 150, 0.98);
  margin-top: 1rem;
}
.header_menu li.sp a {
  background: rgba(0, 20, 50, 0.5);
  border-radius: 16px;
  overflow: hidden;
}

/* header / 階層メニュー */
.header_menu .donate-btn {
  position: relative;
}
.header_menu .donate-btn:before {
  content: "";
  width: 9px;
  height: 9px;
  background: url(../images/index/arrow_mini_white.svg) no-repeat center;
  position: absolute;
  right: 12.5px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
.header_menu .parent_menu {
  transition: 0.3s;
}
.header_menu .parent_menu:hover {
  background: rgba(0, 26, 82, 0.2);
}
.header_menu .parent_menu > a {
  padding-right: 30px;
}
.header_menu .parent_menu > a::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/index/menu_arr.svg) no-repeat;
  background-size: contain;
  transition: transform 0.3s ease;
}
.header_menu .parent_menu > a.open::before {
  transform: translateY(-50%) rotate(-180deg);
}
.header_menu .parent_menu ul {
  pointer-events: none;
  opacity: 0;
  transition: 0.3s;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 5px;
}
@media screen and (max-width: 1024px) {
  .header_menu .parent_menu ul {
    transition: 0s !important;
  }
}
.header_menu .parent_menu ul li {
  border-bottom: 1px solid rgba(15, 76, 150, 0.5);
}
.header_menu .parent_menu ul li a {
  white-space: nowrap;
  padding: 10px 15px 10px 50px;
  background: rgba(15, 76, 150, 0.96);
  line-height: 1.5em;
  font-size: 13px;
  color: #fff !important;
  letter-spacing: 0.02em;
  font-weight: 300;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .header_menu .parent_menu ul li a {
    white-space: normal;
    white-space: initial;
  }
}
.header_menu .parent_menu ul li a span {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  display: inline-block;
  padding-right: 9px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.header_menu .parent_menu ul li a::before {
  display: none;
}
.header_menu .parent_menu ul li a:hover {
  background: rgb(0, 31, 53);
}
.header_menu .parent_menu ul li:nth-child(1) a {
  border-radius: 10px 10px 0 0;
}
.header_menu .parent_menu ul li:last-child {
  border-bottom: 0;
}
.header_menu .parent_menu ul li:last-child a {
  border-radius: 0 0 10px 10px;
}
@media screen and (max-width: 1023px) {
  .header_menu .parent_menu ul {
    pointer-events: none;
    opacity: 1;
    position: relative;
    transition: 0;
    top: 0;
    left: 0;
    transform: translateX(0);
    margin-bottom: 15px;
  }
  .header_menu .parent_menu ul li a {
    background: rgba(0, 20, 50, 0.5);
  }
}
.header_menu .parent_menu:hover ul {
  opacity: 1;
  pointer-events: all;
}

/** header / 言語切り替えメニュー **/
@media screen and (max-width: 1023px) {
  .lang_menu_wrap {
    margin-top: 30px;
    background: rgb(15, 76, 150);
  }
}
.lang_menu_wrap span {
  display: none;
}
@media screen and (max-width: 1023px) {
  .lang_menu_wrap span {
    display: inline-block;
    color: #97c6e7;
    padding: 0 0 13px 5px;
    letter-spacing: 0.1em;
    font-size: 13px;
  }
}

.lang_menu {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1023px) {
  .lang_menu {
    position: static;
    transform: none;
  }
}
.lang_menu a {
  display: block;
  padding: 5px 8px 7px;
  font-size: 12px;
  background: #c2d1db;
  color: #3c5a6e;
  line-height: 1em;
  transition: 0.3s;
}
.lang_menu a:hover {
  background: #fff;
}
@media screen and (max-width: 1023px) {
  .lang_menu a {
    padding: 5px 9px 7px;
    font-size: 13px;
  }
}
.lang_menu a.active {
  background: #589ccb;
  color: #fff;
}
@media screen and (max-width: 1023px) {
  .lang_menu a.active {
    background: #03385d;
  }
}
.lang_menu li:nth-child(1) a {
  border-radius: 7px 0 0 7px;
}
.lang_menu li:last-child a {
  border-radius: 0 7px 7px 0;
}

/*
.footer_slide{
    position: relative;
    bottom: 0;
    margin: auto;
    left: 0;
    right: 0;
    z-index: 2000;
    height: 90px;
}
.footer_slide_list {

}
.footer_slide_list img{
   width: 100%;
}*/
/* sc line */
.sc_line {
  content: "";
  position: absolute;
  width: 1px;
  left: 50%;
  top: 0;
  height: 100%;
  background: #0f4c96;
  overflow: hidden;
}
.sc_line::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 80%, rgba(255, 255, 255, 0) 100%);
  animation: scrolldown 1.5s ease-in-out infinite;
}
@keyframes scrolldown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}

.sidebar {
  background: #fff;
  width: 100%;
  height: 80px;
  padding: 0;
  position: fixed;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  z-index: 200;
  box-shadow: 0 0 5px rgba(15, 76, 150, 0.3);
}
.sidebar .group-logo {
  position: initial;
  width: 100%;
}
.sidebar .group-logo .logo {
  padding-bottom: 20px;
}
.sidebar .group-logo .logo a {
  display: block;
}
.sidebar .sub-logo-box {
  height: 80px;
  margin-inline: auto;
  position: initial;
  height: 100%;
  width: 100%;
}
.sidebar .sub-logo-box li {
  text-align: center;
}
.sidebar .sub-logo-box * {
  height: 100%;
}
.sidebar .sub-logo-box li {
  max-width: 100px;
  height: 80px;
  background: #fff;
  padding: 1em 0.25em;
}
.sidebar .sub-logo-box li a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  text-align: center;
  justify-content: center;
  height: 100%;
  background: #fff;
  padding: 0.5em;
}
.sidebar .sub-logo-box li a img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}

/* home / FV */
.home_fv {
  height: 100vh;
  overflow: hidden;
}
@media screen and (max-width: 820px) {
  .home_fv {
    min-height: 80vh;
  }
}
@media screen and (max-width: 767px) {
  .home_fv {
    margin-top: 15vh;
  }
}
.home_fv .wrap {
  position: relative;
  height: 100%;
}
.home_fv .inner {
  position: absolute;
  display: flex;
  align-items: center;
  top: 50%;
  transform: translateY(-55%);
  left: 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .home_fv .inner {
    flex-direction: column;
    gap: 2rem;
  }
}
.home_fv .inner .text_wrap {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 820px) {
  .home_fv .inner .text_wrap {
    width: 66%;
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .home_fv .inner .text_wrap {
    width: 100%;
    padding-right: 0;
    order: 2;
  }
}
.home_fv .inner .text_wrap strong.fv_catch {
  display: block;
  font-weight: 900;
  font-size: 2vw;
  line-height: 1.45em;
  letter-spacing: 0.1em;
  color: #0f4c96;
}
@media screen and (min-width: 1920px) {
  .home_fv .inner .text_wrap strong.fv_catch {
    font-size: 67.2px;
  }
}
@media screen and (max-width: 1600px) {
  .home_fv .inner .text_wrap strong.fv_catch {
    font-size: 2.5vw;
  }
}
@media screen and (max-width: 1400px) {
  .home_fv .inner .text_wrap strong.fv_catch {
    font-size: 2.5vw;
  }
}
@media screen and (max-width: 1180px) {
  .home_fv .inner .text_wrap strong.fv_catch {
    font-size: 2.5vw;
  }
}
@media screen and (max-width: 820px) {
  .home_fv .inner .text_wrap strong.fv_catch {
    font-size: 50px;
  }
}
@media screen and (max-width: 767px) {
  .home_fv .inner .text_wrap strong.fv_catch {
    font-size: 5.75vw;
  }
}
.home_fv .inner .text_wrap p {
  padding-top: 22px;
  font-size: 20px;
  line-height: 2.3em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 820px) {
  .home_fv .inner .text_wrap p {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .home_fv .inner .text_wrap p {
    font-size: 17px;
    line-height: 2.1em;
  }
}
.home_fv .inner .text_wrap .sc_line {
  left: 60px;
  top: 107%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .home_fv .inner .text_wrap .sc_line {
    top: 182%;
  }
}
.home_fv .inner .image_wrap {
  flex-grow: 1;
  text-align: center;
  padding-right: 5%;
  position: relative;
}
@media screen and (max-width: 1180px) {
  .home_fv .inner .image_wrap {
    padding-right: 0;
  }
}
@media screen and (max-width: 820px) {
  .home_fv .inner .image_wrap {
    width: 30%;
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .home_fv .inner .image_wrap {
    width: 100%;
    order: 2;
    text-align: left;
    margin-bottom: 30px;
  }
}

/* About */
.about_wrap {
  margin-bottom: 140px;
}
@media screen and (max-width: 820px) {
  .about_wrap {
    margin-bottom: 80px;
  }
}
.about_wrap .title_wrap {
  padding: 25px 0 0 0;
}
.about_wrap .title_wrap h3 {
  font-size: 3.9vw;
  color: #0f4c96;
  line-height: 1.3em;
}
@media screen and (max-width: 820px) {
  .about_wrap .title_wrap h3 {
    font-size: 40px;
  }
}
@media screen and (max-width: 767px) {
  .about_wrap .title_wrap h3 {
    font-size: 8vw;
  }
}
.about_wrap > .flex {
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .about_wrap > .flex {
    flex-direction: column;
    margin-bottom: 50px;
  }
}
.about_wrap > .flex .title {
  white-space: nowrap;
  width: 25%;
  font-size: 20px;
  padding: 5px 0;
}
@media screen and (max-width: 820px) {
  .about_wrap > .flex .title {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .about_wrap > .flex .title {
    width: 100%;
    font-size: 20px;
    padding: 5px 0 18px;
  }
}
.about_wrap > .flex > p {
  width: 70%;
  max-width: 55vw;
  margin-left: auto;
  font-size: 18px;
  line-height: 2.5em;
}
@media screen and (max-width: 820px) {
  .about_wrap > .flex > p {
    width: 65%;
  }
}
@media screen and (max-width: 767px) {
  .about_wrap > .flex > p {
    width: 100%;
    max-width: unset;
    font-size: 15px;
    line-height: 2.2em;
  }
}
.about_wrap > .flex > p .btn_wrap {
  display: block;
  max-width: 400px;
  margin-top: 25px;
}
.about_wrap .about_image {
  position: relative;
}
.about_wrap .about_image figure {
  position: relative;
}
.about_wrap .about_image figure img {
  opacity: 0.8;
}
.about_wrap .about_image .list_wrap {
  position: absolute;
  top: 50%;
  transform: translateY(-80%);
  left: 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .about_wrap .about_image .list_wrap {
    top: 0;
    transform: none;
    margin-top: 0;
  }
}
.about_wrap .about_image .list_wrap ul {
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .about_wrap .about_image .list_wrap ul {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.about_wrap .about_image .list_wrap ul li {
  width: 20%;
  margin: 0 1.8%;
}
@media screen and (max-width: 820px) {
  .about_wrap .about_image .list_wrap ul li {
    width: 20%;
    margin: 1.5%;
  }
}
@media screen and (max-width: 767px) {
  .about_wrap .about_image .list_wrap ul li {
    width: 46%;
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .about_wrap .about_image .list_wrap ul li:nth-child(1) {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .about_wrap .about_image .list_wrap ul li:nth-child(1), .about_wrap .about_image .list_wrap ul li:nth-child(2) {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .about_wrap .about_image .list_wrap ul li:nth-of-type(1) em {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 767px) {
  .about_wrap .about_image .list_wrap ul li:nth-of-type(even) em {
    margin-left: auto;
  }
}
.about_wrap .about_image .list_wrap ul li em {
  display: flex;
  border-radius: 50%;
  position: relative;
  font-size: 20px;
  background: rgba(2, 63, 137, 0.88);
  text-align: center;
  color: #fff;
  justify-content: center;
  align-items: center;
  line-height: 1.6em;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1180px) {
  .about_wrap .about_image .list_wrap ul li em {
    font-size: 16px;
  }
}
@media screen and (max-width: 820px) {
  .about_wrap .about_image .list_wrap ul li em {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .about_wrap .about_image .list_wrap ul li em {
    max-width: 140px;
    font-size: 14px;
    line-height: 1.4em;
    letter-spacing: 0.15em;
  }
}
.about_wrap .about_image .list_wrap ul li em::before {
  content: "";
  display: block;
  padding-top: 100%;
}

/* ラウンド背景 */
.round_container {
  padding-top: 60px;
  overflow-x: hidden;
}

.round_wrap {
  background-color: #fff;
  border-radius: 1200px 1200px 0 0/300px 300px 0 0;
  margin: 16px -180px 0;
  padding: 0 0 65px;
  box-shadow: 0 0 80px rgba(182, 115, 255, 0.231372549);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .round_wrap {
    border-radius: 400px 400px 0 0/200px 200px 0 0;
  }
}

.round_inner {
  margin: 0 180px;
}

.round_wrap_end {
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  padding: 150px 0 280px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1023px) {
  .round_wrap_end {
    padding: 100px 0 180px;
  }
}
@media screen and (max-width: 820px) {
  .round_wrap_end {
    padding: 100px 0 150px;
  }
}
@media screen and (max-width: 767px) {
  .round_wrap_end {
    padding: 10px 0 40px;
  }
}
.round_wrap_end.round_wrap_end2 {
  padding-bottom: 0;
}
@media screen and (max-width: 1023px) {
  .round_wrap_end.round_wrap_end2 {
    padding: 80px 0 0 0;
  }
}
@media screen and (max-width: 767px) {
  .round_wrap_end.round_wrap_end2 {
    padding: 50px 0 0 0;
  }
}

/* ピースウィンズの活動 */
.activ_title_wrap {
  padding-bottom: 100px;
  text-align: center;
}
@media screen and (max-width: 820px) {
  .activ_title_wrap {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .activ_title_wrap {
    padding-bottom: 60px;
  }
}
.activ_title_wrap .title_wrap strong.eng {
  font-size: 8.5vw;
  line-height: 0.6em;
  font-weight: 500;
  color: rgba(1, 43, 136, 0.1);
}
@media screen and (max-width: 820px) {
  .activ_title_wrap .title_wrap strong.eng {
    font-size: 60px;
  }
}
@media screen and (max-width: 767px) {
  .activ_title_wrap .title_wrap strong.eng {
    font-size: 14vw;
  }
}
.activ_title_wrap .title_wrap h3.title {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 30px 0 45px;
}
@media screen and (max-width: 767px) {
  .activ_title_wrap .title_wrap h3.title {
    font-size: 24px;
    margin: 10px 0 30px;
  }
}
.activ_title_wrap .text_wrap {
  padding-top: 215px;
  position: relative;
}
@media screen and (max-width: 820px) {
  .activ_title_wrap .text_wrap {
    padding-top: 120px;
  }
}
@media screen and (max-width: 767px) {
  .activ_title_wrap .text_wrap {
    padding-top: 50px;
  }
}
.activ_title_wrap .text_wrap .sc_line {
  height: 185px;
}
@media screen and (max-width: 820px) {
  .activ_title_wrap .text_wrap .sc_line {
    height: 100px;
  }
}
@media screen and (max-width: 767px) {
  .activ_title_wrap .text_wrap .sc_line {
    height: 50px;
    top: -10px;
  }
}
.activ_title_wrap .text_wrap p {
  font-size: 18px;
  line-height: 2.2em;
}
@media screen and (max-width: 767px) {
  .activ_title_wrap .text_wrap p {
    font-size: 15px;
    line-height: 2em;
    text-align: left;
  }
}

/* ピースウィンズの活動 / 内容 */
.activ_list_wrap {
  position: relative;
}
@media screen and (max-width: 767px) {
  .activ_list_wrap {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .activ_list_wrap > div {
    order: 2;
  }
}
.activ_list_wrap .text_wrap {
  padding: 70px 54% 70px 0;
  text-align: left;
}
@media screen and (max-width: 820px) {
  .activ_list_wrap .text_wrap {
    padding: 50px 48% 50px 3%;
  }
}
@media screen and (max-width: 767px) {
  .activ_list_wrap .text_wrap {
    padding: 22px 3% 0;
    text-align: center;
  }
}
.activ_list_wrap .text_wrap > span.logo {
  display: block;
  padding-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .activ_list_wrap .text_wrap > span.logo {
    padding-bottom: 13px;
  }
}
@media screen and (max-width: 767px) {
  .activ_list_wrap .text_wrap > span.logo img {
    max-width: 50%;
  }
}
.activ_list_wrap .text_wrap > h3 {
  position: relative;
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .activ_list_wrap .text_wrap > h3 {
    font-size: 20px;
  }
}
.activ_list_wrap .text_wrap > h3 span {
  display: inline-block;
  padding-right: 15px;
  background: #fff;
  color: #0f4c96;
  font-weight: 900;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .activ_list_wrap .text_wrap > h3 span {
    padding-right: 0;
  }
}
.activ_list_wrap .text_wrap > h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 200%;
  height: 1px;
  background: #91a8c5;
}
@media screen and (max-width: 767px) {
  .activ_list_wrap .text_wrap > h3::before {
    content: none;
  }
}
.activ_list_wrap .text_wrap p {
  padding-top: 25px;
  padding-bottom: 15px;
  line-height: 2.2em;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .activ_list_wrap .text_wrap p {
    line-height: 1.8em;
    font-size: 15px;
    padding-top: 20px;
    padding-bottom: 5px;
    text-align: left;
    letter-spacing: 0;
  }
}
.activ_list_wrap .image_wrap {
  position: absolute;
  width: 46%;
  top: 0;
  right: 0;
  height: 100%;
  overflow: hidden;
  padding: 25px;
  padding-right: 0;
  animation-iteration-count: infinite;
  background: linear-gradient(135deg, #79dbee, #4f95eb, #b4e3ff);
  background-size: 150% 150%;
  border-radius: 160px 0 0 160px;
  animation-name: gradation;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}
@media screen and (max-width: 820px) {
  .activ_list_wrap .image_wrap {
    width: 43%;
  }
}
@media screen and (max-width: 767px) {
  .activ_list_wrap .image_wrap {
    width: 88%;
    border-radius: 20px;
    padding: 12px;
    position: static;
    order: 1;
    text-align: center;
    margin: auto;
  }
}
.activ_list_wrap .image_wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 140px 0 0 140px;
}
@media screen and (max-width: 767px) {
  .activ_list_wrap .image_wrap img {
    border-radius: 13px;
    width: 100%;
  }
}
.activ_list_wrap + .activ_list_wrap {
  margin-top: 120px;
}
@media screen and (max-width: 820px) {
  .activ_list_wrap + .activ_list_wrap {
    margin-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  .activ_list_wrap + .activ_list_wrap {
    margin-top: 75px;
  }
}
.activ_list_wrap.reverse .text_wrap {
  padding-right: 0;
  padding-left: 54%;
}
@media screen and (max-width: 820px) {
  .activ_list_wrap.reverse .text_wrap {
    padding-right: 3%;
    padding-left: 48%;
  }
}
@media screen and (max-width: 767px) {
  .activ_list_wrap.reverse .text_wrap {
    padding-right: 3%;
    padding-left: 3%;
  }
}
.activ_list_wrap.reverse .text_wrap > h3::before {
  width: 100%;
}
.activ_list_wrap.reverse .image_wrap {
  right: auto;
  left: 0;
  border-radius: 0 160px 160px 0;
  padding: 25px;
  padding-left: 0;
}
@media screen and (max-width: 767px) {
  .activ_list_wrap.reverse .image_wrap {
    border-radius: 20px;
    padding: 12px;
  }
}
@media screen and (max-width: 820px) {
  .activ_list_wrap.reverse .image_wrap.image_wrap2 img {
    -o-object-position: 68%;
       object-position: 68%;
  }
}
.activ_list_wrap.reverse .image_wrap img {
  border-radius: 0 140px 140px 0;
}
@media screen and (max-width: 767px) {
  .activ_list_wrap.reverse .image_wrap img {
    border-radius: 13px;
  }
}

@keyframes gradation {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}
/* link btn */
.btn_wrap {
  padding-top: 15px;
}
.btn_wrap.news_shosai a {
  padding-left: 47.5%;
}
@media screen and (max-width: 767px) {
  .btn_wrap.news_shosai a {
    padding: 13px 0;
    padding-left: 10%;
    text-align: left;
  }
}
.btn_wrap a {
  display: block;
  border: 1px solid #4774a9;
  position: relative;
  padding: 20px 50px 20px 30px;
  border-radius: 100px;
  color: #0f4c96;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .btn_wrap a {
    padding: 13px 40px 13px 40px;
    text-align: center;
    letter-spacing: 0;
  }
}
.btn_wrap a::after {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  right: 18px;
  transition: 0.3s;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/index/btn_arr.svg) no-repeat center rgba(0, 75, 125, 0.1);
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .btn_wrap a::after {
    width: 25px;
    height: 25px;
    right: 13px;
  }
}
.btn_wrap a:hover {
  border: 1px solid #0f4c96;
  box-shadow: 0 0 5px rgba(0, 75, 125, 0.1);
  background: rgba(0, 75, 125, 0.05);
}
.btn_wrap a:hover::after {
  transform: translateY(-50%) rotate(45deg);
  background: url(../images/index/btn_arr.svg) no-repeat center rgb(255, 255, 255);
}
.btn_wrap .flex {
  flex-wrap: wrap;
}
.btn_wrap .flex a {
  padding: 15px 50px 15px 25px;
}
@media screen and (max-width: 767px) {
  .btn_wrap .flex a {
    padding: 13px 50px 13px 30px;
  }
}
.btn_wrap .flex a::after {
  right: 12px;
}
.btn_wrap .flex .half {
  width: 47%;
  margin: 0 3% 15px 0;
}
@media screen and (max-width: 1024px) {
  .btn_wrap .flex .half {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.btn_wrap .flex .full {
  width: 97%;
  margin-bottom: 15px;
}
@media screen and (max-width: 1024px) {
  .btn_wrap .flex .full {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
}

/* ピースウィンズの活動 / 小リスト */
.activ_list-s {
  margin: 0 -3%;
}
@media screen and (max-width: 820px) {
  .activ_list-s {
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .activ_list-s {
    flex-direction: column;
  }
}
.activ_list-s .list-box {
  width: 27.33%;
  margin: 0 3%;
}
@media screen and (max-width: 820px) {
  .activ_list-s .list-box {
    width: 31.3333%;
  }
  .activ_list-s .list-box:first-child {
    margin-left: 0;
  }
  .activ_list-s .list-box:last-child {
    margin-right: 0;
  }
}
@media screen and (max-width: 820px) and (max-width: 767px) {
  .activ_list-s .list-box:last-child {
    margin-right: auto;
  }
}
@media screen and (max-width: 820px) and (max-width: 767px) {
  .activ_list-s .list-box + .list-box {
    margin-top: 75px;
  }
}
@media screen and (max-width: 767px) {
  .activ_list-s .list-box {
    width: 96%;
    margin: 0 auto;
  }
}
.activ_list-s .list-box a:hover figure img {
  opacity: 0.8;
}
.activ_list-s .list-box figure {
  background: #fff;
  border-radius: 30px;
  min-height: 240px;
  margin-bottom: 10px;
  border: 10px solid #81bcf5;
  position: relative;
}
@media screen and (max-width: 820px) {
  .activ_list-s .list-box figure {
    min-height: 200px;
  }
}
@media screen and (max-width: 767px) {
  .activ_list-s .list-box figure {
    min-height: 170px;
    max-width: 80%;
    margin: 0 auto 7px;
    max-width: 100%;
    width: 100%;
  }
}
.activ_list-s .list-box figure img {
  position: absolute;
  max-width: 70%;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .activ_list-s .list-box figure img {
    max-height: 50%;
  }
}
.activ_list-s .list-box h3 {
  position: relative;
  font-size: 22px;
  color: #0f4c96;
  font-weight: bold;
  padding: 20px 0;
}
@media screen and (max-width: 820px) {
  .activ_list-s .list-box h3 {
    font-size: 21px;
  }
}
@media screen and (max-width: 767px) {
  .activ_list-s .list-box h3 {
    text-align: center;
    padding: 15px 0;
  }
}
.activ_list-s .list-box p {
  line-height: 2em;
  margin-bottom: 10px;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  .activ_list-s .list-box p {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .activ_list-s .list-box p {
    display: block;
    overflow: auto;
    margin-bottom: 5px;
  }
}
.activ_list-s .list-box .btn_wrap a:hover {
  background: rgba(255, 255, 255, 0.7);
}

/* NEWS */
.news_categoly_links {
  position: relative;
  padding-top: 35px;
}
.news_categoly_links::before {
  content: "";
  width: 220px;
  height: 1px;
  background-color: #5d8fb1;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
}
.news_categoly_links li {
  display: inline-block;
}
.news_categoly_links li a {
  font-size: 18px;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .news_categoly_links li a {
    line-height: 1.7;
    font-size: 14px;
  }
}
.news_categoly_links li a.active {
  color: #015188;
  text-decoration: underline;
}
.news_categoly_links li a:hover {
  color: #015188;
  opacity: 0.9;
}
.news_categoly_links li + li {
  margin-left: 25px;
}
@media screen and (max-width: 767px) {
  .news_categoly_links li + li {
    margin-left: 11px;
  }
}
.news_categoly_links.news_ichiran {
  text-align: center;
  padding-top: 55px;
  padding-bottom: 40px;
}
.news_categoly_links.news_ichiran::before {
  content: none;
}

.blog_list {
  width: 100%;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.blog_list > ul > li {
  padding: 30px 0;
  border-top: 1px solid #eee;
}
.blog_list > ul > li a {
  text-decoration: none;
  color: #222;
  align-items: center;
  align-content: center;
}
@media screen and (max-width: 767px) {
  .blog_list > ul > li a {
    flex-direction: column;
  }
}
.blog_list > ul > li a:hover .blog_list_image img {
  opacity: 0.8;
}
.blog_list > ul > li .blog_list_image {
  width: 30%;
  height: 180px;
  overflow: hidden;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .blog_list > ul > li .blog_list_image {
    width: 100%;
  }
}
.blog_list > ul > li .blog_list_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.blog_list > ul > li .blog_list_text {
  width: 70%;
  padding-left: 40px;
}
@media screen and (max-width: 767px) {
  .blog_list > ul > li .blog_list_text {
    width: 100%;
    padding-left: 0;
  }
}
.blog_list > ul > li + li {
  padding-top: 30px;
}
.blog_list .blog_list_image img {
  border-radius: 20px;
}
.blog_list .blog_list_text time {
  color: #0f4c96;
  font-size: 16px;
  white-space: nowrap;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .blog_list .blog_list_text time {
    font-size: 15px;
  }
}
.blog_list .blog_list_text .title_wrap {
  font-size: 22px;
  line-height: 1.5em;
  padding: 10px 0;
  display: block;
}
@media screen and (max-width: 767px) {
  .blog_list .blog_list_text .title_wrap {
    font-size: 18px;
    padding: 0 0 10px;
  }
}
.blog_list .blog_list_text p {
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog_list.news_ichiran {
  margin-bottom: 60px;
  max-width: 100%;
}
.blog_list.news_ichiran > ul > li {
  border-top: none;
  padding: 50px 30px;
}
@media screen and (max-width: 767px) {
  .blog_list.news_ichiran > ul > li {
    padding: 50px 0;
  }
}
.blog_list_wrap {
  width: 100%;
  max-width: 1100px;
}
.blog_list_wrap .btn_wrap {
  padding-top: 35px;
}
@media screen and (max-width: 767px) {
  .blog_list_wrap .btn_wrap {
    padding-top: 20px;
  }
}
.blog_list_wrap .btn_wrap a {
  max-width: 310px;
  margin: 0 auto;
}

/* foot_contact */
.foot_contact {
  position: relative;
  background: linear-gradient(180deg, rgba(245, 245, 245, 0) 0%, rgb(245, 245, 245) 100%);
  min-height: 500px;
}
.foot_contact .bg_wrap {
  background: linear-gradient(209deg, rgb(9, 94, 198) 0%, rgb(15, 76, 150) 60%);
  border-radius: 0 100px 100px 0;
  width: 60%;
  height: 100%;
  position: absolute;
  z-index: 10;
}
@media screen and (max-width: 1023px) {
  .foot_contact .bg_wrap {
    display: none;
  }
}
.foot_contact .foot_image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 42%;
  padding-right: 4%;
}
@media screen and (max-width: 1023px) {
  .foot_contact .foot_image {
    position: static;
    transform: none;
    width: 60%;
    padding-right: 0;
    margin: auto;
  }
}
@media screen and (max-width: 767px) {
  .foot_contact .foot_image {
    width: 80%;
  }
}
@media screen and (max-width: 1023px) {
  .foot_contact .wrap {
    background: linear-gradient(209deg, rgb(9, 94, 198) 0%, rgb(15, 76, 150) 60%);
    padding: 50px 4%;
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .foot_contact .wrap {
    padding: 50px 4% 70px;
  }
}
.foot_contact .wrap .inner {
  padding: 80px 43% 80px 0;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 1023px) {
  .foot_contact .wrap .inner {
    padding: 0;
  }
}
.foot_contact .wrap .inner .foot_title {
  font-size: 42px;
  color: #fff;
  line-height: 1.47em;
  font-weight: 700;
  padding: 0 0 0 115px;
  margin-bottom: 43px;
  letter-spacing: 0.1em;
  position: relative;
}
@media screen and (max-width: 1180px) {
  .foot_contact .wrap .inner .foot_title {
    font-size: 40px;
    padding: 0 0 0 88px;
  }
}
@media screen and (max-width: 1023px) {
  .foot_contact .wrap .inner .foot_title {
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .foot_contact .wrap .inner .foot_title {
    font-size: 7vw;
    padding: 0 0 0 60px;
    margin-bottom: 20px;
  }
}
.foot_contact .wrap .inner .foot_title .sp_only {
  display: none;
}
@media screen and (max-width: 767px) {
  .foot_contact .wrap .inner .foot_title .sp_only {
    display: block;
  }
}
@media screen and (max-width: 1023px) {
  .foot_contact .wrap .inner .foot_title .foot_title_inner {
    position: relative;
    display: flex;
    justify-content: center;
  }
}
.foot_contact .wrap .inner .foot_title .pulse-btn {
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 20px #fff;
}
@media screen and (max-width: 1180px) {
  .foot_contact .wrap .inner .foot_title .pulse-btn {
    width: 15px;
    height: 15px;
    left: 38px;
  }
}
@media screen and (max-width: 1023px) {
  .foot_contact .wrap .inner .foot_title .pulse-btn {
    left: -50px;
  }
}
@media screen and (max-width: 767px) {
  .foot_contact .wrap .inner .foot_title .pulse-btn {
    width: 13px;
    height: 13px;
    left: -40px;
  }
}
.foot_contact .wrap .inner .foot_title .pulse-btn::after, .foot_contact .wrap .inner .foot_title .pulse-btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  border: 1px solid #1da1f2;
  border-radius: 50%;
  box-sizing: border-box;
  pointer-events: none;
  animation: pulsate 2s linear infinite;
}
.foot_contact .wrap .inner .foot_title .pulse-btn::after {
  animation-delay: 1s;
}
@keyframes pulsate {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}
.foot_contact .wrap .inner .link_wrap {
  margin: 0 -5%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2.5%;
}
@media screen and (max-width: 1180px) {
  .foot_contact .wrap .inner .link_wrap {
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .foot_contact .wrap .inner .link_wrap {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
  }
}
.foot_contact .wrap .inner .link_wrap .link_box {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .foot_contact .wrap .inner .link_wrap .link_box {
    margin: 0 auto;
  }
}
.foot_contact .wrap .inner .link_wrap .link_box a {
  display: block;
  height: 100%;
  background: #fff;
  padding: 35px;
  padding-top: 45px;
  border-radius: 30px;
  border: 7px solid #ffe7e0;
  text-align: center;
  overflow: hidden;
  transition: 0.5s;
  box-shadow: 0 0 10px rgba(0, 31, 53, 0.5);
}
@media screen and (max-width: 767px) {
  .foot_contact .wrap .inner .link_wrap .link_box a {
    padding: 15px;
  }
}
.foot_contact .wrap .inner .link_wrap .link_box a:hover {
  border: 7px solid rgb(255, 250, 245);
}
.foot_contact .wrap .inner .link_wrap .link_box a:hover figure img {
  opacity: 1;
  filter: saturate(0%) brightness(5);
}
.foot_contact .wrap .inner .link_wrap .link_box a:hover strong {
  color: #fff;
  letter-spacing: 0.075em;
}
.foot_contact .wrap .inner .link_wrap .link_box a:hover span::before {
  content: "";
  animation: contact 0.5s forwards;
  position: absolute;
  background: #f18406;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  left: 0;
  top: 0;
  z-index: 1;
}
.foot_contact .wrap .inner .link_wrap .link_box a:hover span img {
  left: 20%;
  background: #bd6500;
}
@keyframes contact {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  100% {
    transform: scale(18);
    opacity: 1;
  }
}
.foot_contact .wrap .inner .link_wrap .link_box a figure {
  padding-bottom: 5px;
  position: relative;
  z-index: 10;
  transition: 0.5s;
}
.foot_contact .wrap .inner .link_wrap .link_box a figure img {
  max-width: 80%;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .foot_contact .wrap .inner .link_wrap .link_box a figure img {
    max-width: 60%;
  }
}
.foot_contact .wrap .inner .link_wrap .link_box a strong {
  display: block;
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  color: #0f4c96;
  line-height: 1.4em;
  padding-bottom: 20px;
  position: relative;
  z-index: 10;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .foot_contact .wrap .inner .link_wrap .link_box a strong {
    font-size: 22px;
    padding-bottom: 15px;
  }
}
.foot_contact .wrap .inner .link_wrap .link_box a span {
  display: inline-block;
  width: 45px;
  height: 45px;
  background: #0f4c96;
  border-radius: 50%;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .foot_contact .wrap .inner .link_wrap .link_box a span {
    width: 30px;
    height: 30px;
  }
}
.foot_contact .wrap .inner .link_wrap .link_box a span img {
  position: relative;
  z-index: 10;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.5s;
  border-radius: 50%;
}

/** footer **/
footer {
  background: rgba(75, 95, 151, 0.13);
}
footer .flex {
  padding: 100px 5%;
}
footer .copy {
  padding: 15px 5%;
  border-top: 1px solid #fff;
  font-size: 13px;
  color: #001d3d;
}
@media screen and (max-width: 767px) {
  footer .copy {
    text-align: center;
    font-size: 12px;
  }
}

footer.home {
  background: rgb(245, 245, 245);
}

.footer_wrap {
  padding: 100px 5% 150px;
  display: flex;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .footer_wrap {
    flex-direction: column;
    padding: 60px 5%;
  }
}
@media screen and (max-width: 767px) {
  .footer_wrap {
    padding: 40px 5% 120px;
  }
}

.footer_menu {
  display: flex;
}
@media screen and (max-width: 767px) {
  .footer_menu {
    flex-direction: column;
  }
}
.footer_menu .footer_menu_item {
  margin-right: 40px;
}
@media screen and (max-width: 1024px) {
  .footer_menu .footer_menu_item {
    margin-right: 28px;
  }
}
@media screen and (max-width: 1023px) {
  .footer_menu .footer_menu_item {
    margin-right: 40px;
  }
}
@media screen and (max-width: 767px) {
  .footer_menu .footer_menu_item {
    margin-right: 0;
    margin-bottom: 1em;
    border-bottom: 1px solid #0f4c96;
    padding: 0 3% 15px;
  }
}
.footer_menu .footer_menu_item em {
  font-size: 16px;
  font-weight: 500;
  color: #0f4c96;
  margin-bottom: 15px;
  display: block;
  line-height: 1.4em;
}
@media screen and (max-width: 767px) {
  .footer_menu .footer_menu_item em {
    margin-bottom: 5px;
    font-size: 15px;
  }
}
.footer_menu .footer_menu_item ul li a {
  position: relative;
  padding: 5px 10px 5px 30px;
  transition: 0.3s;
  display: block;
}
@media screen and (max-width: 767px) {
  .footer_menu .footer_menu_item ul li a {
    padding: 2px 10px 2px 30px;
    font-size: 14px;
  }
}
.footer_menu .footer_menu_item ul li a:hover {
  color: #0f4c96;
}
.footer_menu .footer_menu_item ul li a::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 1px;
  background: #888;
  left: 7px;
  top: 16px;
}
@media screen and (max-width: 767px) {
  .footer_menu .footer_menu_item ul li a::before {
    top: 13px;
  }
}
.footer_menu .footer_menu_item ul.menu_single {
  margin-top: 37px;
}
@media screen and (max-width: 767px) {
  .footer_menu .footer_menu_item ul.menu_single {
    margin-top: 0;
  }
}

.footer_right {
  max-width: 220px;
  margin-left: auto;
}
@media screen and (max-width: 1023px) {
  .footer_right {
    margin-left: auto;
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .footer_right {
    margin: 20px auto 0;
    max-width: 90%;
  }
}
.footer_right figure {
  width: 90%;
  margin-bottom: 35px;
  margin: 0 auto 35px;
}
@media screen and (max-width: 767px) {
  .footer_right figure {
    margin: 0 auto 25px;
    max-width: 40%;
  }
}
.footer_right .footer_right_list li {
  min-width: 230px;
}
.footer_right .footer_right_list li + li {
  margin-top: 10px;
}
.footer_right .footer_right_list li a {
  background: #fff;
  transition: 0.3s;
  border-radius: var(--border-radius);
  padding: 11px 10px 11px 25px;
  font-size: 14px;
  display: block;
  position: relative;
}
.footer_right .footer_right_list li a::after {
  content: "";
  width: 9px;
  height: 9px;
  background: url(../images/index/arrow_mini.svg) no-repeat center;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
.footer_right .footer_right_list li a:hover {
  opacity: 0.7;
}
.footer_right .footer_right_list li a:hover::after {
  right: 7px;
}
.footer_right .footer_right_list .btn-donate a {
  background: #0f4c96;
  color: white;
  transition: 0.3s;
  border-radius: var(--border-radius);
  padding: 11px 10px 11px 25px;
  font-size: 14px;
  display: block;
  position: relative;
}
.footer_right .footer_right_list .btn-donate a:after {
  content: "";
  width: 9px;
  height: 9px;
  background: url(../images/index/arrow_mini_white.svg) no-repeat center;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
.footer_right .footer_right_list .btn-donate a:hover, .footer_right .footer_right_list .btn-donate a:focus {
  opacity: 0.7;
}
.footer_right .footer_right_list .btn-donate a:hover:after, .footer_right .footer_right_list .btn-donate a:focus:after {
  right: 7px;
}

/* fixed list */
.fixed_wrap {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 200;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: flex-end;
}
@media screen and (max-width: 1023px) {
  .fixed_wrap {
    position: static;
  }
}
.fixed_wrap .activ_list_fixed {
  background: #fff;
  padding: 15px 25px;
  border-radius: 15px 15px 0 0;
  box-shadow: 0 0 7px rgba(15, 76, 150, 0.3);
}
.fixed_wrap .activ_list_fixed ul {
  align-items: center;
}
.fixed_wrap .activ_list_fixed ul li img {
  max-width: 125px;
  max-height: 35px;
}
@media screen and (max-width: 1370px) {
  .fixed_wrap .activ_list_fixed ul li img {
    max-width: 100%;
    max-height: 100%;
  }
}
.fixed_wrap .activ_list_fixed ul li + li {
  padding-left: 15px;
  margin-left: 15px;
  position: relative;
}
.fixed_wrap .activ_list_fixed ul li + li::before {
  content: "";
  width: 1px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #ccc;
}
.fixed_wrap .contact_fixed {
  margin-left: 20px;
  min-width: 88px;
}
@media screen and (max-width: 1370px) {
  .fixed_wrap .contact_fixed {
    margin-left: 13px;
  }
}
@media screen and (max-width: 1023px) {
  .fixed_wrap .contact_fixed {
    min-width: auto;
    z-index: 300;
    position: fixed;
    top: 90px;
    right: 15px;
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .fixed_wrap .contact_fixed {
    top: 80px;
    right: 10px;
  }
}
.fixed_wrap .contact_fixed a {
  display: block;
  background: #0f4c96;
  text-align: center;
  padding: 15px 15px 10px 15px;
  border-radius: 80px 80px 0 0;
  box-shadow: 0 0 7px rgba(15, 76, 150, 0.3);
  transition: 0.3s;
}
@media screen and (max-width: 1023px) {
  .fixed_wrap .contact_fixed a {
    border-radius: 145px;
    right: 10px;
    width: 70px;
    height: 70px;
    padding: 12px 8px 10px;
  }
}
@media screen and (max-width: 767px) {
  .fixed_wrap .contact_fixed a {
    width: 60px;
    height: 60px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.fixed_wrap .contact_fixed a:hover {
  background: #0758b9;
}
.fixed_wrap .contact_fixed a:hover img {
  opacity: 1;
}
.fixed_wrap .contact_fixed a .image_wrap {
  display: block;
  padding-bottom: 5px;
}
@media screen and (max-width: 1023px) {
  .fixed_wrap .contact_fixed a .image_wrap {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .fixed_wrap .contact_fixed a .image_wrap {
    line-height: 1;
  }
}
.fixed_wrap .contact_fixed a .image_wrap img {
  max-width: 56px;
}
@media screen and (max-width: 1370px) {
  .fixed_wrap .contact_fixed a .image_wrap img {
    max-width: 50px;
  }
}
@media screen and (max-width: 1023px) {
  .fixed_wrap .contact_fixed a .image_wrap img {
    max-width: 45px;
    padding-bottom: 2px;
  }
}
@media screen and (max-width: 767px) {
  .fixed_wrap .contact_fixed a .image_wrap img {
    max-width: 36px;
    padding-bottom: 1px;
  }
}
.fixed_wrap .contact_fixed a .text_wrap {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .fixed_wrap .contact_fixed a .text_wrap {
    font-size: 12px;
    letter-spacing: 0;
    padding-bottom: 1px;
  }
}
@media screen and (max-width: 1023px) {
  .fixed_wrap .contact_fixed a .text_wrap .text_none {
    display: none;
  }
}
.fixed_wrap .contact_fixed a .text_wrap br {
  display: none;
}
@media screen and (max-width: 1370px) {
  .fixed_wrap .contact_fixed a .text_wrap br {
    display: block;
  }
}

/* contents / 共通 */
.page_image {
  position: absolute;
  right: 0;
  width: 100%;
  top: 60px;
  text-align: right;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 1440px) {
  .page_image {
    top: 0;
  }
}
.page_image img {
  position: relative;
  right: -5%;
  max-width: 55%;
  opacity: 0.75;
}
@media screen and (max-width: 1440px) {
  .page_image img {
    right: -15%;
    max-width: 75%;
  }
}
@media screen and (max-width: 1023px) {
  .page_image img {
    right: -25%;
  }
}
@media screen and (max-width: 767px) {
  .page_image img {
    right: -28%;
    max-width: unset;
    width: 150%;
  }
}

.contents_wrap {
  padding-bottom: 200px;
  position: relative;
  z-index: 10;
}
.contents_wrap.no_padbot {
  padding-bottom: 0;
}
.contents_wrap.no_padbot .page_info_wrap {
  margin-bottom: 0;
}
@media screen and (max-width: 1280px) {
  .contents_wrap .about_lead br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .contents_wrap .about_lead {
    line-height: 2.33;
  }
}
.contents_wrap .page_title_wrap {
  padding: 235px 0 35px 0;
  position: relative;
  margin-bottom: 40px;
}
.contents_wrap .page_title_wrap.line_none::before {
  display: none;
}
.contents_wrap .page_title_wrap::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #0f4c96;
}
.contents_wrap .page_title_wrap .sub_title {
  color: #b0c7f4;
  line-height: 1.6em;
  font-size: 25px;
}
@media screen and (max-width: 767px) {
  .contents_wrap .page_title_wrap .sub_title {
    font-size: 16px;
  }
}
.contents_wrap .page_title_wrap .page_title {
  font-size: 43px;
  font-weight: 800;
  color: #0f4c96;
  line-height: 1.6em;
}
@media screen and (max-width: 767px) {
  .contents_wrap .page_title_wrap .page_title {
    font-size: 34px;
  }
}
.contents_wrap .page_title_wrap .page_title span {
  display: inline-block;
}
.contents_wrap .page_info_wrap {
  margin-bottom: 130px;
}
.contents_wrap .page_info_wrap p {
  line-height: 2.1em;
  font-size: 17px;
}
@media screen and (max-width: 1280px) {
  .contents_wrap .page_info_wrap p {
    font-size: 115%;
  }
}
.contents_wrap .page_info_wrap p.about_lead_big {
  font-weight: 900;
  font-size: 4.25vw;
  line-height: 1.4;
  margin-top: 8rem;
  margin-bottom: 4rem;
}
.contents_wrap .page_info_wrap p.about_lead_big span {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .contents_wrap .page_info_wrap p.about_lead_big span:nth-child(2) {
    margin-left: -5%;
  }
}
@media screen and (max-width: 820px) {
  .contents_wrap .page_info_wrap p.about_lead_big {
    font-size: 50px;
  }
}
@media screen and (max-width: 768px) {
  .contents_wrap .page_info_wrap p.about_lead_big {
    font-size: 7.75vw;
    text-align: left;
    margin-top: 4rem;
    margin-bottom: 2rem;
    letter-spacing: -0.05em;
    line-height: 1.7;
  }
}
@media screen and (max-width: 768px) {
  .contents_wrap .page_info_wrap p.about_lead {
    text-align: left;
  }
}
.contents_wrap .page_info_wrap p.sub_text {
  font-size: 15px;
  padding-top: 15px;
}
.contents_wrap .page_info_wrap p.sub_text.cropped {
  font-size: 14px;
  max-width: 600px;
  padding-top: 20px;
}

.vertical {
  writing-mode: vertical-rl;
}

/* LINE */
.line_v {
  width: 1px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .line_v {
    display: none;
  }
}
.line_v::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 1px;
  left: 0;
  top: 0;
  background: rgba(15, 76, 150, 0.4);
  transition: 0.7s ease-out;
}

.line_w {
  width: 100%;
  height: 1px;
  position: relative;
  margin: 52px 0;
}
@media screen and (max-width: 767px) {
  .line_w {
    display: none;
  }
}
.line_w::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 1px;
  left: 0;
  top: 50%;
  background: rgba(15, 76, 150, 0.4);
  transition: 0.7s ease-out;
}

.line_pop.line_v.active::before {
  height: 100%;
}
.line_pop.line_w.active::before {
  width: 100%;
}

/* ご支援・参加のお願い */
.support_wrap {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .support_wrap {
    gap: 16px;
  }
}

.support_box {
  width: 43%;
  border-radius: 28px;
  margin: 0 auto;
  position: relative;
  transition: 0.5s;
}
.support_box .eng {
  display: none;
}
@media screen and (max-width: 1024px) {
  .support_box {
    min-height: 380px;
  }
}
@media screen and (max-width: 767px) {
  .support_box {
    width: 100%;
    border-radius: 28px;
  }
}
.support_box:hover {
  box-shadow: 0 0 10px rgba(0, 31, 53, 0.15);
}
.support_box:hover .inner > figure img {
  transform: scale(1.1);
  filter: grayscale(0);
}
.support_box.open .inner > h3 {
  color: #fff;
}
.support_box.open .inner > span {
  color: rgba(255, 255, 255, 0.2);
}
.support_box .inner {
  position: static;
  left: 30px;
  top: 30px;
  right: 30px;
  bottom: 30px;
}
@media screen and (max-width: 767px) {
  .support_box .inner {
    left: 20px;
    top: 20px;
    right: 20px;
    bottom: 20px;
  }
}
.support_box .inner > h3 {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 28px;
  line-height: 1.5em;
  color: #0f4c96;
  z-index: 10;
  transition: 0.3s;
}
@media screen and (max-width: 1280px) {
  .support_box .inner > h3 {
    font-size: 21px;
  }
}
@media screen and (max-width: 767px) {
  .support_box .inner > h3 {
    font-size: 18px;
  }
}
.support_box .inner > figure {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 60%;
  overflow: hidden;
  border-radius: 15px;
  z-index: 5;
}
@media screen and (max-width: 1024px) {
  .support_box .inner > figure {
    width: 82.5%;
    height: 80%;
  }
}
.support_box .inner > figure img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
  opacity: 0.9;
  transition: 0.5s;
}
.support_box .inner > span {
  position: absolute;
  right: 0;
  bottom: 10px;
  font-size: 65px;
  color: rgba(15, 76, 150, 0.15);
  letter-spacing: 0.08em;
  z-index: 8;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .support_box .inner > span {
    right: unset;
    left: 0;
    bottom: -4px;
    font-size: 23px;
  }
}
.support_box .link_wrap {
  position: relative;
  background: #001d3d;
  background: linear-gradient(60deg, rgba(15, 76, 150, 0.97) 40%, rgb(9, 94, 198) 100%);
  z-index: 6;
  opacity: 0;
  transition: 0.7s ease-out;
  pointer-events: none;
  border-radius: 25px;
  padding: 7.5%;
  padding-bottom: 5%;
}
.support_box .link_wrap .vertical {
  color: white;
  position: absolute;
  top: 7.5%;
  right: 5%;
  font-size: 2rem;
  line-height: 1.2;
}
.support_box .link_wrap .link_inner {
  width: 65%;
  z-index: 15;
}
.support_box .link_wrap .link_inner p {
  line-height: 1.8em;
  color: #fff;
  padding-top: 2rem;
  padding-bottom: 1.5rem;
}
.support_box .link_wrap .box_link_img {
  position: absolute;
  z-index: 11;
  bottom: 7.5%;
  right: 5%;
  margin: 0;
  height: 100px;
  max-height: 7.5vw;
  width: 90px;
  overflow: hidden;
  border-radius: 1rem;
}
@media screen and (max-width: 1024px) {
  .support_box .link_wrap .box_link_img {
    max-height: unset;
  }
}
@media screen and (max-width: 767px) {
  .support_box .link_wrap .box_link_img {
    bottom: 16px;
    right: 16px;
    height: 90px;
    width: 80px;
  }
}
.support_box .link_wrap .box_link_img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.support_box .link_wrap .box_link {
  pointer-events: none;
}
.support_box .link_wrap .box_link a {
  display: block;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 20px 10px 13px;
  border-radius: var(--border-radius);
  font-size: 16px;
  color: #001d3d;
  pointer-events: none;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .support_box .link_wrap .box_link a {
    font-size: 14px;
  }
}
.support_box .link_wrap .box_link a::before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/index/arrow_mini.svg) no-repeat;
}
.support_box .link_wrap .box_link a:hover {
  background: rgb(255, 255, 255);
}
.support_box .link_wrap .box_link a + a {
  margin-top: 7px;
}
.support_box.open .link_wrap {
  opacity: 1;
  pointer-events: all;
  transform: scale(1);
}
.support_box.open .link_wrap .box_link a {
  pointer-events: all;
}

.support_sub .sub_wrap {
  display: flex;
}
.support_sub .sub_wrap.mijikana {
  position: relative;
}
.support_sub .sub_wrap.mijikana .title_wrap {
  width: 100%;
  padding-right: 0;
  margin: 0;
}
.support_sub .sub_wrap.mijikana .title_wrap p {
  font-size: 17px;
}
.support_sub .sub_wrap.mijikana .button_wrapper {
  background: linear-gradient(60deg, rgba(15, 76, 150, 0.97) 40%, rgb(9, 94, 198) 100%);
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 900;
  color: white;
  font-size: 17px;
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 0.5rem;
}
@media screen and (max-width: 1024px) {
  .support_sub .sub_wrap.mijikana .button_wrapper {
    position: static;
    margin-top: 2rem;
  }
}
.support_sub .sub_wrap.mijikana .button_wrapper a {
  padding: 11px 50px 11px 25px;
  font-size: 14px;
  display: block;
  position: relative;
  color: white;
  position: relative;
  display: block;
}
.support_sub .sub_wrap.mijikana .button_wrapper a:after {
  content: "";
  width: 9px;
  height: 9px;
  background: url(../images/index/arrow_mini_white.svg) no-repeat center;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
.support_sub .sub_wrap.sonota {
  display: block;
  padding-bottom: 35px;
}
.support_sub .sub_wrap.sonota .title_wrap {
  padding: 0;
  margin: 0 auto 20px;
}
.support_sub .sub_wrap.sonota .title_wrap h4 {
  text-align: center;
}
.support_sub .sub_wrap.sonota .congtent_wrap {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-evenly;
  align-items: baseline;
  gap: 0.5%;
}
@media screen and (max-width: 767px) {
  .support_sub .sub_wrap.sonota .congtent_wrap {
    display: block;
  }
}
.support_sub .sub_wrap.sonota .congtent_wrap .sub_contents img {
  width: 100%;
  margin-bottom: 1rem;
}
.support_sub .sub_wrap.sonota .congtent_wrap a {
  color: #0f4c96;
}
@media screen and (max-width: 767px) {
  .support_sub .sub_wrap {
    flex-wrap: wrap;
  }
}
.support_sub .sub_wrap > .title_wrap {
  width: 26.5%;
  margin-left: 3.5%;
  padding-right: 30px;
}
@media screen and (max-width: 1024px) {
  .support_sub .sub_wrap > .title_wrap {
    width: 35%;
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .support_sub .sub_wrap > .title_wrap {
    width: 100%;
  }
}
.support_sub .sub_wrap > .title_wrap h4 {
  color: #0f4c96;
  font-size: 24px;
  padding: 13px 0;
  line-height: 1.4;
}
.support_sub .sub_wrap > .congtent_wrap {
  width: 66.5%;
  margin-right: 3.5%;
}
@media screen and (max-width: 767px) {
  .support_sub .sub_wrap > .congtent_wrap {
    width: 100%;
  }
}
.support_sub .sub_wrap > .congtent_wrap .sub_box + .sub_box {
  margin-top: 13px;
}
.support_sub .sub_wrap > .congtent_wrap .sub_box .title_wrap {
  padding: 13px 17px 14px 45px;
  font-size: 100%;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  position: relative;
  cursor: pointer;
  transition: 0.2s;
}
.support_sub .sub_wrap > .congtent_wrap .sub_box .title_wrap .icon {
  width: 18px;
  height: 18px;
  position: absolute;
  left: 17px;
  top: 17px;
}
.support_sub .sub_wrap > .congtent_wrap .sub_box .title_wrap .icon::before, .support_sub .sub_wrap > .congtent_wrap .sub_box .title_wrap .icon::after {
  content: "";
  width: 2px;
  height: 100%;
  background: #0f4c96;
  left: 50%;
  top: 50%;
  position: absolute;
  transition: 0.3s;
}
.support_sub .sub_wrap > .congtent_wrap .sub_box .title_wrap .icon::before {
  transform: translate(-50%, -50%);
}
.support_sub .sub_wrap > .congtent_wrap .sub_box .title_wrap .icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.support_sub .sub_wrap > .congtent_wrap .sub_box .title_wrap:hover {
  background: #fff;
}
.support_sub .sub_wrap > .congtent_wrap .sub_box .title_wrap.open .icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.support_sub .sub_wrap > .congtent_wrap .sub_box .title_wrap.open .icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.support_sub .sub_wrap > .congtent_wrap .sub_box .sub_contents {
  display: none;
  padding: 13px 17px 30px;
  line-height: 2em;
}
.support_sub .sub_wrap > .congtent_wrap .sub_box .sub_contents * {
  line-height: 2em;
}
.support_sub .sub_wrap > .congtent_wrap .sub_box .sub_contents .info_box {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(15, 76, 150, 0.15);
}
.support_sub .sub_wrap > .congtent_wrap .sub_box .title_wrap.open + .sub_contents {
  opacity: 1;
}

/* ページ内リンク */
.page_links_wrap ul {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .page_links_wrap ul {
    flex-wrap: wrap;
    justify-content: left;
  }
}
@media screen and (max-width: 767px) {
  .page_links_wrap ul {
    row-gap: 12px;
  }
}
.page_links_wrap ul li {
  padding: 0 10px;
}
.page_links_wrap ul li.news_currentpage a {
  background: linear-gradient(90deg, rgba(15, 76, 150, 0.95) 0%, rgb(15, 76, 150) 80%, rgba(15, 76, 150, 0.7) 160%);
  color: rgb(255, 255, 255);
  padding: 0 12px 2px 30px;
  border-radius: var(--border-radius);
  transition: 500ms color ease;
}
.page_links_wrap ul li.news_currentpage a::before {
  background: url(../images/index/arrow_mini_white.svg) no-repeat;
}
.page_links_wrap ul li.news_currentpage a:hover {
  color: rgba(255, 255, 255, 0.7);
}
.page_links_wrap ul li.news_currentpage a:hover::before {
  opacity: 0.7;
}
.page_links_wrap ul li.pagination_indent {
  position: relative;
}
.page_links_wrap ul li.pagination_indent:first-child:after {
  content: "…";
}
.page_links_wrap ul li.pagination_indent:last-child:before {
  content: "…";
}
.page_links_wrap ul li a {
  position: relative;
  padding: 0 0 0 30px;
  font-size: 15.5px;
}
@media screen and (max-width: 767px) {
  .page_links_wrap ul li a {
    font-size: 14px;
  }
}
.page_links_wrap ul li a::before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  left: 10px;
  top: 8px;
  background: url(../images/index/arrow_mini.svg) no-repeat;
}
.page_links_wrap ul li a:hover {
  color: #0f4c96;
}

/* 公式SNSアカウント一覧 */
.sns_wrap {
  margin: 45px auto 0;
  padding: 40px 55px 70px;
}
.sns_wrap .sns_list_wrap {
  flex-wrap: wrap;
}
.sns_wrap .sns_list_wrap .sns_box {
  width: 46%;
  margin: 0 2%;
  position: relative;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .sns_wrap .sns_list_wrap .sns_box {
    width: 100%;
    margin: 0;
  }
}
.sns_wrap .sns_list_wrap .sns_box > .flex {
  align-items: center;
  padding: 35px 0 30px 0;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .sns_wrap .sns_list_wrap .sns_box > .flex {
    flex-wrap: wrap;
  }
}
.sns_wrap .sns_list_wrap .sns_box .image_wrap {
  width: 40%;
  padding-right: 25px;
}
@media screen and (max-width: 1280px) {
  .sns_wrap .sns_list_wrap .sns_box .image_wrap {
    width: 50%;
  }
}
@media screen and (max-width: 1024px) {
  .sns_wrap .sns_list_wrap .sns_box .image_wrap {
    width: 100%;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
    padding-right: 0;
  }
}
.sns_wrap .sns_list_wrap .sns_box .image_wrap figure {
  text-align: center;
}
.sns_wrap .sns_list_wrap .sns_box .image_wrap figure img {
  max-width: 78%;
  max-height: 75px;
}
.sns_wrap .sns_list_wrap .sns_box .image_wrap strong {
  display: block;
  text-align: center;
  padding-top: 10px;
  font-size: 14px;
  line-height: 1.6em;
  font-weight: 500;
}
.sns_wrap .sns_list_wrap .sns_box .image_wrap strong span {
  font-size: 1.1em;
  font-weight: 600;
}
.sns_wrap .sns_list_wrap .sns_box .image_wrap.no_image strong {
  padding-top: 0;
}
.sns_wrap .sns_list_wrap .sns_box .image_wrap .site_link {
  display: block;
  padding: 3px 5px 3px 20px;
  margin-top: 15px;
  border-radius: 5px;
  font-size: 13px;
  letter-spacing: 0;
  background: #eef4f9;
  position: relative;
}
.sns_wrap .sns_list_wrap .sns_box .image_wrap .site_link::before {
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  left: 8px;
  top: 11px;
  background: url(../images/index/arrow_mini.svg) no-repeat;
}
.sns_wrap .sns_list_wrap .sns_box .image_wrap .site_link:hover {
  opacity: 0.9;
}
.sns_wrap .sns_list_wrap .sns_box .image_wrap .site_link + .site_link {
  margin-top: 6px;
}
.sns_wrap .sns_list_wrap .sns_box .contents_wrap {
  width: 60%;
  padding-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .sns_wrap .sns_list_wrap .sns_box .contents_wrap {
    width: 100%;
  }
}
.sns_wrap .sns_list_wrap .sns_box .contents_wrap .sns_list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1280px) {
  .sns_wrap .sns_list_wrap .sns_box .contents_wrap .sns_list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 1024px) {
  .sns_wrap .sns_list_wrap .sns_box .contents_wrap .sns_list {
    grid-template-columns: 1fr;
    grid-auto-flow: column;
    margin-left: auto;
    margin-right: auto;
    margin-top: 16px;
  }
}
@media screen and (max-width: 767px) {
  .sns_wrap .sns_list_wrap .sns_box .contents_wrap .sns_list {
    display: flex;
    flex-wrap: wrap;
  }
}
.sns_wrap .sns_list_wrap .sns_box .contents_wrap .sns_list li {
  margin-left: auto;
  margin-right: auto;
}
.sns_wrap .sns_list_wrap .sns_box .contents_wrap .sns_list li a {
  display: block;
  box-shadow: 0 0 0 1px #ddd;
  border-radius: 5px;
  max-height: 56px;
  max-width: 56px;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .sns_wrap .sns_list_wrap .sns_box .contents_wrap .sns_list li a {
    width: 36px;
    height: 36px;
  }
}
.sns_wrap .sns_list_wrap .sns_box .contents_wrap .sns_list li a img {
  padding: 14px;
  padding: 25%;
}
.sns_wrap .sns_list_wrap .sns_box .line_w {
  margin: 0;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .sns_wrap .sns_list_wrap .sns_box .line_w {
    display: block;
  }
}

.midashi_m {
  margin-bottom: 15px;
}
.midashi_m span {
  font-size: 22px;
  padding: 5px 25px 8px 28px;
  color: #fff;
  line-height: 1.55em;
  font-weight: 600;
  background: #3a6dab;
  border-radius: 100px;
  display: inline-block;
  letter-spacing: 0.1em;
  min-width: 8em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .midashi_m span {
    font-size: 16px;
  }
}

.midashi_s {
  font-size: 22px;
  padding: 8px 0 10px 0;
  border-bottom: 3px double #9fb7d5;
  margin-bottom: 20px;
  position: relative;
  line-height: 1.55em;
}

.list_dot li {
  padding-left: 15px;
  position: relative;
  display: flex;
  padding-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .list_dot li {
    display: block;
  }
}
.list_dot li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 5px;
  height: 5px;
  background: #406ea1;
  border-radius: 50%;
}

/* 団体概要・歴史 */
.table_outline {
  margin-bottom: 100px;
}
.table_outline span {
  display: inline-block;
}
.table_outline tbody tr th,
.table_outline tbody tr td {
  text-align: left;
  padding: 20px 25px;
  border-bottom: 1px solid #b1cbe2;
  font-size: 16px;
  line-height: 1.8em;
}
@media screen and (max-width: 767px) {
  .table_outline tbody tr th,
  .table_outline tbody tr td {
    font-size: 14px;
    display: block;
    width: 100% !important;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.table_outline tbody tr th a,
.table_outline tbody tr td a {
  color: #0f4c96;
  text-decoration: underline;
}
.table_outline tbody tr th a:hover,
.table_outline tbody tr td a:hover {
  opacity: 0.9;
}
.table_outline tbody tr th {
  width: 25%;
}
@media screen and (max-width: 767px) {
  .table_outline tbody tr th {
    border-bottom: none;
    padding-bottom: 5px;
    font-weight: 600;
  }
}
@media screen and (max-width: 767px) {
  .table_outline tbody tr td {
    padding-top: 0;
    padding-bottom: 25px;
  }
}

@media screen and (max-width: 767px) {
  .list_dot {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

.country_list * {
  letter-spacing: 0;
}
.country_list strong {
  display: inline-block;
  min-width: 8.5em;
}
@media screen and (max-width: 767px) {
  .country_list strong {
    width: 100%;
  }
}
.country_list span {
  display: inline-block;
  font-size: 0.95em;
}
@media screen and (max-width: 767px) {
  .country_list span {
    width: 100%;
  }
}
.country_list span::after {
  content: "、";
}
.country_list span:last-child::after {
  display: none;
}
.country_list.fix_kenya {
  flex-wrap: wrap;
}
.organization-chart {
  margin-bottom: 80px;
}

.teikan_wrap {
  background: rgba(16, 38, 67, 0.1);
  padding: 50px;
  border-radius: 20px;
  margin-bottom: 100px;
}
@media screen and (max-width: 1023px) {
  .teikan_wrap {
    padding: 25px;
  }
}
@media screen and (max-width: 767px) {
  .teikan_wrap {
    padding: 33px;
    font-size: 135%;
  }
}
.teikan_wrap .flex {
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .teikan_wrap .flex {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.teikan_wrap .flex h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0f4c96;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .teikan_wrap .flex h3 {
    white-space: wrap;
  }
}
.teikan_wrap .flex .btn_wrap {
  padding-top: 0;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .teikan_wrap .flex .btn_wrap {
    padding: 0;
  }
}
.teikan_wrap .flex .btn_wrap a {
  font-size: 17px;
  background: #fff;
}
@media screen and (max-width: 1023px) {
  .teikan_wrap .flex .btn_wrap a {
    font-size: 15.5px;
    padding: 15px 52px 15px 52px;
  }
}

.history_wrap {
  padding: 70px 0;
}
.history_wrap .title_wrap p {
  font-size: 16px;
  padding: 15px 0 0 0;
  line-height: 2em;
}
.history_wrap .flow_wrap {
  width: 1000px;
  max-width: 100%;
  margin: 50px auto;
}
.history_wrap .flow_box {
  position: relative;
  padding: 60px 0 30px 85px;
  min-height: 110px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .history_wrap .flow_box {
    padding-left: 80px;
  }
}
.history_wrap .flow_box.active::before {
  transform: translateY(0);
}
.history_wrap .flow_box.active .inner:after {
  transform: translateX(0);
}
.history_wrap .flow_box::before {
  content: "";
  width: 1px;
  left: 40px;
  top: 5px;
  bottom: 0;
  position: absolute;
  background: #2b6187;
  z-index: 1;
  transition: 0.8s;
  transform: translateY(-101%);
}
.history_wrap .flow_box:last-child::before {
  display: none;
}
.history_wrap .flow_box:last-child .inner:after {
  display: none;
}
.history_wrap .flow_box .inner {
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .history_wrap .flow_box .inner {
    padding-top: 10px;
  }
}
.history_wrap .flow_box .inner:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background-color: #b1cbe2;
  left: 0;
  bottom: 0;
  transition: 1.5s;
  transform: translateX(-101%);
}
.history_wrap .flow_box .num {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  height: 42px;
  padding: 0 25px;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  line-height: 1;
  display: flex;
  background: #526275;
  color: #fff;
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .history_wrap .flow_box .num {
    font-size: 14px;
    max-width: 11ch;
    line-height: 1.2;
    padding: 13px;
    height: 40px;
  }
}
.history_wrap .flow_box ul li {
  margin-bottom: 10px;
  align-items: baseline;
}
@media screen and (max-width: 767px) {
  .history_wrap .flow_box ul li {
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .history_wrap .flow_box ul li p {
    padding-left: 6px;
  }
}
.history_wrap .flow_box ul li * {
  line-height: 1.7em;
}
.history_wrap .flow_box ul .month {
  font-size: 16px;
  font-weight: 600;
  min-width: 3.6em;
  text-align: right;
  white-space: nowrap;
  padding: 4px 0.8em 4px 0;
}
.history_wrap .flow_box ul .country {
  display: inline-block;
  padding: 3px 5px;
  background: #fff;
  white-space: nowrap;
  border-radius: 8px;
  min-width: 10em;
  text-align: center;
}
.history_wrap .flow_box ul p {
  line-height: 1.8em;
  padding: 5px 5px 5px 1em;
  font-size: 16px;
}

.donation_wrap {
  max-width: 100%;
  margin: 0 auto 80px;
  width: 1280px;
}
.donation_wrap .title_wrap {
  color: #0f4c96;
  font-size: 30px;
  padding: 13px 0;
}
.donation_wrap a {
  color: blue;
}
.donation_wrap .donation_grid {
  display: grid;
  gap: 15px;
}
.donation_wrap .donation_item {
  width: 100%;
  padding: 4% 7.5%;
  display: flex;
  align-items: center;
  gap: 8%;
}
@media screen and (max-width: 767px) {
  .donation_wrap .donation_item {
    flex-wrap: wrap;
  }
}
.donation_wrap .donation_item .imgwrapper {
  width: 300px;
  max-width: 300px;
  min-width: 300px;
  border-radius: var(--border-radius);
  overflow: hidden;
}
@media screen and (max-width: 1280px) {
  .donation_wrap .donation_item .imgwrapper {
    width: 250px;
    max-width: 250px;
    min-width: 250px;
  }
}
@media screen and (max-width: 767px) {
  .donation_wrap .donation_item .imgwrapper {
    width: 100%;
    max-width: unset;
    min-width: unset;
    margin-bottom: 20px;
  }
}
.donation_wrap .donation_item .imgwrapper img {
  -o-object-fit: cover;
     object-fit: cover;
}
.donation_wrap .donation_item .donation_description {
  margin-bottom: 1rem;
}
.donation_wrap .donation_item .donation_description p {
  font-size: 120%;
}
.donation_wrap .donation_item .donation_process h5,
.donation_wrap .donation_item .donation_process p {
  font-size: 100%;
}
.donation_wrap .donation_item h4 {
  color: #0f4c96;
  font-size: 26px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .donation_wrap .donation_item h4 {
    margin-bottom: 10px;
    gap: 6px;
    justify-content: space-between;
  }
  .donation_wrap .donation_item h4 .numeral {
    order: 1;
  }
}
.donation_wrap .donation_item h5 {
  color: #0f4c96;
  margin-bottom: -2px;
}
.donation_wrap .donation_item .numeral {
  opacity: 0.4;
  font-size: 13px;
  margin-bottom: 0;
}

.deduction_support_sub.support_sub {
  margin: 0 auto;
  max-width: 1280px;
  width: 100%;
  justify-content: space-between;
}

.deduction_support_sub.support_sub .sub_wrap {
  display: grid;
  grid-template-areas: "a b" "a c" ". d" ". e";
  gap: 14px;
  margin-bottom: 45px;
  margin-left: 0;
  justify-content: space-between;
}
@media screen and (max-width: 1280px) {
  .deduction_support_sub.support_sub .sub_wrap {
    grid-template-areas: "a a" "b b" "c c" "d d" "e e";
    gap: 20px;
  }
}
.deduction_support_sub.support_sub .sub_wrap a {
  color: blue;
}
.deduction_support_sub.support_sub .sub_wrap .deduction_support_title {
  width: 100%;
  max-width: 350px;
  grid-area: a;
}
@media screen and (max-width: 1280px) {
  .deduction_support_sub.support_sub .sub_wrap .deduction_support_title {
    grid-area: a;
    max-width: 100%;
  }
}
.deduction_support_sub.support_sub .sub_wrap .box1 {
  margin-top: 12px;
  grid-area: b;
}
.deduction_support_sub.support_sub .sub_wrap .box2 {
  grid-area: c;
}
.deduction_support_sub.support_sub .sub_wrap .box3 {
  grid-area: d;
  background-color: rgba(15, 76, 150, 0.1);
  border-radius: var(--border-radius);
  padding: 32px;
  text-indent: -7px;
  margin-top: 50px;
}
.deduction_support_sub.support_sub .sub_wrap .box4 {
  grid-area: e;
}
.deduction_support_sub.support_sub .sub_wrap .box1,
.deduction_support_sub.support_sub .sub_wrap .box2,
.deduction_support_sub.support_sub .sub_wrap .box3,
.deduction_support_sub.support_sub .sub_wrap .box4 {
  min-width: 900px;
  max-width: 900px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .deduction_support_sub.support_sub .sub_wrap .box1,
  .deduction_support_sub.support_sub .sub_wrap .box2,
  .deduction_support_sub.support_sub .sub_wrap .box3,
  .deduction_support_sub.support_sub .sub_wrap .box4 {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
  }
}

.deduction_support_sub.support_sub.certification_sub .sub_wrap {
  grid-template-areas: "a b";
  gap: 68px;
  margin-bottom: 0;
}
@media screen and (max-width: 1280px) {
  .deduction_support_sub.support_sub.certification_sub .sub_wrap {
    grid-template-areas: "a" "b";
    gap: 20px;
    margin-top: 60px;
  }
}
.deduction_support_sub.support_sub.certification_sub .type1 {
  font-size: 20px;
}
.deduction_support_sub.support_sub.certification_sub .box1 li {
  margin-bottom: 16px;
}

.news_links_wrap {
  margin-bottom: 32px;
}

.news_ichiran_wrap {
  background: transparent;
}

.item_news {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.item_news:before {
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  z-index: -1;
  background-color: #ffffff;
  left: 0;
  top: 0;
  transform: translateX(-125%);
  transition: 250ms transform ease-out;
}
.item_news:after {
  width: 100%;
  height: 1px;
  position: absolute;
  content: "";
  bottom: 0;
  background-color: rgba(15, 76, 150, 0.5);
  opacity: 0.7;
  left: 0;
  transform: translateX(-125%);
  z-index: -1;
  transition: 1000ms transform ease-in-out;
  transition-delay: 200ms;
}
.item_news:hover:before, .item_news:focus:before {
  transform: translateX(0);
}
.item_news.active:after {
  transform: translateX(0);
}
@media screen and (max-width: 767px) {
  .item_news a {
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  .page_links_wrap.news_pagination_wrap {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .page_links_wrap.news_pagination_wrap ul li {
    padding: 0 7px;
  }
}
.page_links_wrap.news_pagination_wrap ul li a {
  padding: 0 12px 2px 12px;
}
.page_links_wrap.news_pagination_wrap ul li a::before {
  display: none;
}

.page_links_wrap.news_pagination_wrap.return_btn {
  margin-bottom: 0;
  position: absolute;
  top: -5px;
  right: 0;
}

.news_page_wrap {
  border-radius: var(--border-radius-big);
  width: 95%;
  max-width: 1450px;
  padding: 6rem 0 4rem;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .news_page_wrap {
    width: 100%;
  }
}
.news_page_wrap .contents_wrap {
  max-width: 1160px;
  width: 100%;
  padding: 0 5%;
}
.news_page_wrap .editor_list_item {
  font-size: 25px;
  margin-top: 50px;
  color: #0f4c96;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .news_page_wrap .editor_list_item {
    font-size: 23px;
  }
}
.news_page_wrap .editor_text {
  font-size: 15px;
  margin-bottom: 2rem;
}
.news_page_wrap .editor_caption,
.news_page_wrap .wp-caption-text {
  margin-top: 8px;
  opacity: 0.75;
  font-size: 14px;
}
.news_page_wrap .editor_caption:before,
.news_page_wrap .wp-caption-text:before {
  content: "■";
  float: left;
}
.news_page_wrap .headline_content {
  position: relative;
  margin-bottom: 25px;
}
.news_page_wrap .headline_content .editor_title {
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .news_page_wrap .headline_content .editor_title {
    margin-bottom: 1rem;
  }
}
.news_page_wrap .headline_content .editor_title .title_date {
  font-size: 16px;
  font-weight: 600;
  color: #0f4c96;
  margin-bottom: 0.25rem;
}
@media screen and (max-width: 767px) {
  .news_page_wrap .headline_content .editor_title .title_date {
    font-size: 13px;
  }
}
.news_page_wrap .headline_content .editor_title .title_cat {
  font-size: 14px;
  color: white;
  background-color: #0f4c96;
  padding: 3px 10px;
  display: inline-block;
  border-radius: 5rem;
}
@media screen and (max-width: 767px) {
  .news_page_wrap .headline_content .editor_title .title_cat {
    font-size: 11px;
  }
}
.news_page_wrap .headline_content .editor_title .title_jp {
  font-size: 200%;
  font-weight: 600;
  line-height: 1.5;
  margin: 3rem 0 1rem;
}
@media screen and (max-width: 767px) {
  .news_page_wrap .headline_content .editor_title .title_jp {
    font-size: 145%;
    margin-top: 2rem;
  }
}
.news_page_wrap .headline_top_wrap {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 32px;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}
.news_page_wrap .headline_photo {
  width: 100%;
}
.news_page_wrap .headline_photo img {
  width: 100%;
  border-radius: var(--border-radius-big);
  max-height: 775px;
  -o-object-fit: cover;
     object-fit: cover;
}
.news_page_wrap .editor_photo {
  width: 100%;
  border-radius: var(--border-radius-big);
}
.news_page_wrap .editor_button {
  padding-left: 35px;
  color: #ffffff;
  background-color: #0758b9;
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
  position: relative;
  max-width: 300px;
  width: 100%;
  border-radius: var(--border-radius);
}
.news_page_wrap .editor_button:hover, .news_page_wrap .editor_button:focus {
  background-color: #0f4c96;
}
.news_page_wrap .editor_button:after {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  right: 18px;
  transition: 0.3s;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/index/btn_arr_w2.svg) no-repeat center rgba(0, 75, 125, 0.1);
  border-radius: 50%;
}

.news_return {
  background-color: transparent;
  color: #0f4c96;
  position: relative;
  border-radius: 100px;
  width: 200px;
  font-size: 14px;
  border: 1px solid #0f4c96;
  padding: 7px 20px;
}
@media screen and (max-width: 767px) {
  .news_return {
    width: 150px;
    padding: 7px 10px;
  }
}
.news_return:hover, .news_return:focus {
  background-color: #e5f6ff;
}
.news_return:hover::before, .news_return:focus::before {
  background-color: #ffffff;
}
.news_return:hover::after, .news_return:focus::after {
  transform: translateY(-50%) rotate(-180deg) translateX(2px);
}
.news_return::after {
  box-sizing: border-box;
  content: "";
  width: 9px;
  height: 9px;
  background: url(../images/index/arrow_mini.svg) no-repeat center;
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%) rotate(-180deg);
  transition: all 200ms ease;
}
.news_return::before {
  position: absolute;
  content: "";
  background-color: transparent;
  transition: all 200ms ease;
  width: 33px;
  height: 33px;
  position: absolute;
  left: 37px;
  top: 50%;
  background: transparent;
  border-radius: 100%;
  transform: translateY(-50%);
}
.news_return span {
  margin-right: -7px;
}
@media screen and (max-width: 767px) {
  .news_return span {
    margin-right: -15px;
  }
}

.news_page_wrap.donation_wrap {
  background: linear-gradient(209deg, rgb(9, 94, 198) 0%, rgb(15, 76, 150) 60%);
  border-radius: var(--border-radius-big);
}
.news_page_wrap.donation_wrap h2 {
  font-size: 42px;
  color: #fff;
  line-height: 1.47em;
  font-weight: 700;
  margin-bottom: 43px;
  letter-spacing: 0.1em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .news_page_wrap.donation_wrap h2 br {
    display: none;
  }
}
.news_page_wrap.donation_wrap .about-donation {
  color: #fff;
  margin-bottom: 40px;
  font-size: 17px;
  font-weight: 600;
}
.news_page_wrap.donation_wrap .donation_info_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
  margin-top: 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .news_page_wrap.donation_wrap .donation_info_wrap {
    grid-template-columns: 1fr;
  }
}
.news_page_wrap.donation_wrap .donation_option {
  background-color: #ffffff;
  border-radius: var(--border-radius-big);
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 31, 53, 0.5);
  border: 7px solid #ffe7e0;
  height: 100%;
}
.news_page_wrap.donation_wrap .donation_option dt {
  width: auto;
  display: inline-block;
  color: #0f4c96;
  padding: 0px 9px;
  margin-bottom: 6px;
  border-radius: 6px;
  font-size: 14px;
  box-shadow: 0 0 0 1px #0f4c96;
}
.news_page_wrap.donation_wrap .donation_option dd {
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 16px;
}
.news_page_wrap.donation_wrap .donation_option dd:last-child {
  margin-bottom: 5px;
}
.news_page_wrap.donation_wrap a:hover span:before {
  content: "";
  animation: contact 0.5s forwards;
  position: absolute;
  background: #f18406;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  left: 150px;
  top: 0;
  z-index: 1;
}
.news_page_wrap.donation_wrap a:hover * {
  color: #ffffff !important;
}
.news_page_wrap.donation_wrap a:hover .editor_button::after {
  background: url(../images/index/btn_arr.svg) no-repeat center #fff;
}
.news_page_wrap.donation_wrap a span {
  display: inline-block;
  border-radius: 50%;
  position: relative;
  z-index: 0;
}
.news_page_wrap.donation_wrap a .eng,
.news_page_wrap.donation_wrap a .option_name,
.news_page_wrap.donation_wrap a .editor_button {
  position: relative;
  z-index: 1;
}
.news_page_wrap.donation_wrap a .donation_option {
  overflow: hidden;
}
.news_page_wrap.donation_wrap a .editor_button {
  background-color: transparent;
  margin-top: 140px;
  padding: 0;
  font-size: 18px;
  min-width: 100%;
}
.news_page_wrap.donation_wrap .eng {
  color: #0f4c96;
}
.news_page_wrap.donation_wrap .option_name {
  font-size: 28px;
  font-weight: 600;
  color: #0f4c96;
  margin-top: 0;
  margin-bottom: 20px;
}
.news_page_wrap.donation_wrap .editor_button {
  background-color: #ffffff;
  padding-left: 0;
  margin-top: 0;
  color: #0f4c96;
}
.news_page_wrap.donation_wrap .editor_button:after {
  background: url(../images/index/btn_arr_w2.svg) no-repeat center #0f4c96;
}
.news_page_wrap.donation_wrap .note {
  color: #fff;
}
.news_page_wrap.donation_wrap .noteblock {
  margin-top: 40px;
  background-color: #fff;
  border-radius: var(--border-radius-big);
  padding: 30px 40px;
  font-size: 16px;
  box-shadow: 0 0 10px rgba(0, 31, 53, 0.5);
}
.news_page_wrap.donation_wrap .noteblock a {
  color: #0f4c96;
}

.reports_current_wrapper {
  margin-left: auto;
  margin-right: auto;
  margin-top: 24px;
  margin-bottom: 75px;
  max-width: 1000px;
  width: 100%;
}
.reports_current_wrapper .reports_current_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 5%;
  justify-content: center;
}
@media screen and (max-width: 1023px) {
  .reports_current_wrapper .reports_current_list {
    gap: 2.5%;
  }
}
@media screen and (max-width: 767px) {
  .reports_current_wrapper .reports_current_list {
    -moz-column-gap: 5%;
         column-gap: 5%;
    row-gap: 24px;
    grid-template-columns: 1fr;
  }
}
.reports_current_wrapper a {
  opacity: 1;
}
.reports_current_wrapper a:hover, .reports_current_wrapper a:focus {
  opacity: 1;
}
.reports_current_wrapper a:hover .reports_current_item .cover, .reports_current_wrapper a:focus .reports_current_item .cover {
  box-shadow: 0 0 6px 1px #ffffff;
  opacity: 1;
}
.reports_current_wrapper .reports_current_item .cover {
  transition: all 250ms ease;
  border-radius: var(--border-radius);
  box-shadow: 0 0 8px rgba(0, 26, 82, 0.1);
  margin-bottom: 5px;
}
.reports_current_wrapper .reports_current_item dl {
  display: flex;
  gap: 11px;
  margin-top: 10px;
  font-size: 14px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .reports_current_wrapper .reports_current_item dl {
    gap: 5px;
    flex-wrap: wrap;
  }
}
.reports_current_wrapper .reports_current_item dt {
  flex-basis: 55px;
  box-shadow: 0 0 0 1px #1a203d;
  text-align: center;
  padding: 0px 3px;
}
@media screen and (max-width: 767px) {
  .reports_current_wrapper .reports_current_item dt {
    text-align: left;
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
  }
}

.reports_past_wrapper {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 75px;
  max-width: 1000px;
  width: 100%;
}
.reports_past_wrapper .reports_past_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media screen and (max-width: 1024px) {
  .reports_past_wrapper .reports_past_list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  .reports_past_wrapper .reports_past_list {
    grid-template-columns: 1fr;
  }
}
.reports_past_wrapper .reports_past_item {
  padding: 20px;
  border-radius: var(--border-radius);
}
@media screen and (max-width: 1280px) {
  .reports_past_wrapper .reports_past_item {
    padding: 20px 12.5px;
  }
}
@media screen and (max-width: 767px) {
  .reports_past_wrapper .reports_past_item {
    padding: 20px;
    position: relative;
  }
  .reports_past_wrapper .reports_past_item:before {
    height: 4px;
    width: 4px;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    content: "";
    background-color: #0f4c96;
  }
}
.reports_past_wrapper .reports_past_item:hover, .reports_past_wrapper .reports_past_item:focus {
  background-color: white;
  color: #0f4c96;
}

.onishik_wrapper {
  margin-bottom: 65px;
}

.onishik_slider {
  width: 60%;
  min-width: 800px;
  margin-left: auto;
  margin-right: auto;
  border-radius: var(--border-radius);
  box-shadow: 0 0 8px rgba(0, 26, 82, 0.1);
}
@media screen and (max-width: 1024px) {
  .onishik_slider {
    min-width: unset;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .onishik_slider li img {
    height: 485px;
    width: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.onishik_slider .swiper-wrapper {
  filter: brightness(0.5);
}
.onishik_slider:hover .swiper-wrapper, .onishik_slider:focus .swiper-wrapper {
  filter: brightness(1);
}
.onishik_slider .swiper-wrapper {
  transition: 200ms all ease-in-out;
}
.onishik_slider .onishik_slider_text {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .onishik_slider .onishik_slider_text {
    width: 85%;
    -o-object-fit: contain;
       object-fit: contain;
    top: unset;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
  }
}
.onishik_slider .onishi-swiper-pagination .swiper-pagination-bullet {
  background-color: #fff;
}
.onishik_slider .onishi-swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
}
.onishik_slider .swiper-button-prev {
  width: unset;
}
.onishik_slider .swiper-button-prev:after {
  content: url(../images/index/btn_arr_slider_back_w.svg) !important;
  width: 40px;
}
.onishik_slider .swiper-button-next {
  width: unset;
}
.onishik_slider .swiper-button-next:after {
  content: url(../images/index/btn_arr_slider_next_w.svg) !important;
  width: 40px;
}

.greetings_wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 1100px;
  display: grid;
  gap: 0;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .greetings_wrapper {
    grid-template-columns: 1fr;
  }
}
.greetings_wrapper .midashi {
  font-size: 250px;
  font-size: 17.34375vw;
  opacity: 0.25;
  position: absolute;
  left: 50%;
  top: 33%;
  z-index: -1;
  transform: translate(-50%, -50%);
  color: #ffffff;
}
.greetings_wrapper .logo_wrapper {
  margin: 0px 75px;
  margin-left: 0;
  padding: 40px 120px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: 0 0 8px rgba(0, 26, 82, 0.1);
}
@media screen and (max-width: 1440px) {
  .greetings_wrapper .logo_wrapper {
    padding: 40px 60px;
  }
}
@media screen and (max-width: 767px) {
  .greetings_wrapper .logo_wrapper {
    max-width: 60vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    padding: 20px 40px;
  }
}
.greetings_wrapper .logo_wrapper img {
  min-width: 150px;
}
@media screen and (max-width: 767px) {
  .greetings_wrapper .logo_wrapper img {
    min-width: 125px;
  }
}
.greetings_wrapper .greetings_body {
  font-size: 17px;
  margin-bottom: 28px;
}
@media screen and (max-width: 767px) {
  .greetings_wrapper .greetings_body {
    font-size: 15px;
  }
}
.greetings_wrapper .greetings_signature {
  margin-bottom: 32px;
}
.greetings_wrapper .greetings_signature .katagaki {
  font-size: 15px;
  color: #0f4c96;
  margin-bottom: -4px;
}
.greetings_wrapper .greetings_signature .name {
  font-size: 30px;
  color: #0f4c96;
}
.greetings_wrapper .greetings_links a {
  transition: 200ms opacity ease;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .greetings_wrapper .greetings_links a {
    font-size: 18px;
  }
}
.greetings_wrapper .greetings_links a:hover {
  opacity: 0.7;
}
.greetings_wrapper .greetings_links .list_wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}
.greetings_wrapper .greetings_links .title_links {
  color: #ffffff;
  background-color: #0f4c96;
  border-radius: 4px;
  padding: 7px 10px;
  margin-bottom: 8px;
  line-height: 1;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .greetings_wrapper .greetings_links .title_links {
    margin-left: 0;
    margin-right: auto;
    margin-bottom: 16px;
  }
}
.greetings_wrapper .greetings_links .site_list {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  gap: 20px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .greetings_wrapper .greetings_links .site_list {
    margin-left: auto;
    margin-right: auto;
  }
}
.greetings_wrapper .greetings_links .site_item:before {
  content: "> ";
}
.greetings_wrapper .greetings_links .sns_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 13px;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .greetings_wrapper .greetings_links .sns_list {
    margin-left: auto;
    margin-right: auto;
  }
}
.greetings_wrapper .greetings_links .sns_item {
  width: 32px;
}

.onishik_history_midashi {
  margin-top: 90px;
}

.onishik_history_wrapper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 0;
  padding-top: 0;
}
.onishik_history_wrapper.history_wrap .flow_box {
  padding: 0px 0 0px 220px;
}
@media screen and (max-width: 767px) {
  .onishik_history_wrapper.history_wrap .flow_box {
    padding-left: 15%;
    padding-top: 35px;
    padding-bottom: 35px;
  }
}
.onishik_history_wrapper .flow_wrap {
  width: 100%;
  max-width: unset;
}

.onishi_staff_wrapper {
  position: relative;
  margin-top: -20px;
}
@media screen and (max-width: 767px) {
  .onishi_staff_wrapper {
    margin-top: 10px;
  }
}

.onishi_staff_list .swiper-slide {
  padding: 7px;
  padding-top: 25px;
  padding-bottom: 25px;
  overflow: hidden;
}
.onishi_staff_list.swiper-horizontal {
  padding: 15px 0;
}
@media screen and (max-width: 1560px) {
  .onishi_staff_list.swiper-horizontal {
    margin-top: 30px;
  }
}
.onishi_staff_list.swiper-horizontal .staff-swiper-button-prev {
  left: unset;
  right: 75px;
  top: 10px;
  font-size: 25px;
  color: #0f4c96;
  width: unset;
}
@media screen and (max-width: 767px) {
  .onishi_staff_list.swiper-horizontal .staff-swiper-button-prev {
    right: 45px;
    top: 20px;
  }
}
.onishi_staff_list.swiper-horizontal .staff-swiper-button-prev:after {
  content: url("../images/index/btn_arr_slider_back.svg");
  width: 40px;
}
.onishi_staff_list.swiper-horizontal .staff-swiper-button-next {
  left: unset;
  right: 0px;
  top: 10px;
  font-size: 25px;
  color: #0f4c96;
  width: unset;
}
@media screen and (max-width: 767px) {
  .onishi_staff_list.swiper-horizontal .staff-swiper-button-next {
    top: 20px;
  }
}
.onishi_staff_list.swiper-horizontal .staff-swiper-button-next:after {
  content: url("../images/index/btn_arr_slider.svg");
  width: 40px;
}
.onishi_staff_list.swiper-horizontal .staff-swiper-pagination {
  text-align: right;
  bottom: 15px;
}
.onishi_staff_list.swiper-horizontal .staff-swiper-pagination .swiper-pagination-bullet {
  background: #333;
}
.onishi_staff_list.swiper-horizontal .staff-swiper-pagination .swiper-pagination-bullet-active {
  background: white;
}

.onishi_staff_item {
  background: rgb(255, 255, 255);
  padding: 20px;
  border-radius: var(--border-radius-big);
  position: relative;
  transition-property: box-shadow, scale;
  transition-duration: 250ms;
  transition-timing-function: ease;
  box-shadow: 0 0 8px 1px rgba(80, 200, 255, 0);
  z-index: 1;
}
.onishi_staff_item:hover, .onishi_staff_item:focus {
  box-shadow: 0 0 10px rgba(0, 31, 53, 0.15);
}
.onishi_staff_item:hover .imgwrapper, .onishi_staff_item:focus .imgwrapper {
  filter: grayscale(0%);
}
.onishi_staff_item:hover .imgwrapper img, .onishi_staff_item:focus .imgwrapper img {
  scale: 1.1;
}
.onishi_staff_item.open:hover, .onishi_staff_item.open:focus {
  box-shadow: 0 0 8px 1px rgba(80, 200, 255, 0);
}
.onishi_staff_item .logo_wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: var(--border-radius-big);
  overflow: hidden;
  z-index: -1;
}
.onishi_staff_item .logo_wrapper:before {
  content: url("../images/index/pw-wave-c.svg");
  position: absolute;
  top: 80px;
  left: -360px;
  width: 1900px;
  opacity: 0.05;
  -index: 0;
}
.onishi_staff_item .content-wrapper {
  position: relative;
  z-index: 1;
}
.onishi_staff_item .imgwrapper {
  margin-bottom: 12px;
  border-radius: var(--border-radius-big);
  overflow: hidden;
  filter: grayscale(100%);
  transition: 250ms filter ease-in-out;
}
.onishi_staff_item .imgwrapper img {
  transition: 250ms scale ease-in-out;
}
.onishi_staff_item .name.jp {
  font-size: 25px;
  letter-spacing: 0.1em;
  margin-bottom: 3px;
}
.onishi_staff_item .name.eng {
  color: #0f4c96;
  font-weight: 800;
  margin-bottom: 8px;
  font-size: 14px;
}
.onishi_staff_item .name.eng,
.onishi_staff_item .katagaki {
  letter-spacing: 0.1em;
  line-height: 1.3;
}
.onishi_staff_item .katagaki {
  font-size: 13px;
  white-space: nowrap;
}
@media screen and (max-width: 1280px) {
  .onishi_staff_item .katagaki {
    font-size: 10px;
  }
}
@media screen and (max-width: 767px) {
  .onishi_staff_item .katagaki {
    font-size: 12px;
  }
}
.onishi_staff_item .open {
  width: 30px;
  height: 30px;
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #0f4c96;
  border-radius: 100%;
  display: none;
}
.onishi_staff_item .open:before, .onishi_staff_item .open:after {
  content: "";
  background: #ffffff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.onishi_staff_item .open:before {
  height: 50%;
  width: 1px;
}
.onishi_staff_item .open:after {
  height: 1px;
  width: 50%;
}
.onishi_staff_item .profile {
  text-align: justify;
  position: absolute;
  top: 0;
  left: 0;
  color: white;
  height: 100%;
  width: 100%;
  z-index: 1;
  display: flex;
  align-content: space-between;
  flex-wrap: wrap;
  transform: translateY(-125%);
  opacity: 0;
  transition: 150ms opacity ease-in-out;
  overflow: hidden;
  border-radius: var(--border-radius-big);
}
.onishi_staff_item .profile.profileOpen {
  transform: translateY(0);
  opacity: 1;
}
.onishi_staff_item .profile.profileOpen:after {
  opacity: 0.1;
  filter: blur(6px);
  animation: animStaffPWLogo 4000ms ease-out 1 forwards;
}
.onishi_staff_item .profile.profileOpen .name.eng,
.onishi_staff_item .profile.profileOpen .batu,
.onishi_staff_item .profile.profileOpen p {
  opacity: 1;
  filter: blur(0);
}
.onishi_staff_item .profile:before {
  background: #0f4c96;
  background: rgb(0, 134, 196);
  background: linear-gradient(rgb(0, 134, 196) -50%, rgb(11, 72, 140) 100%);
  position: absolute;
  height: 100%;
  width: 100%;
  content: "";
  z-index: -1;
  top: 0;
}
.onishi_staff_item .profile:after {
  content: url("../images/SVG/pw-wave-w.svg");
  width: 300%;
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: -1;
  opacity: 0.2;
  filter: blur(0px);
  transition: 750ms all ease;
}
.onishi_staff_item .profile .name.eng {
  color: #ffffff;
  padding-top: 10px;
  padding-bottom: 20px;
  margin: 20px;
  margin-bottom: 38.5%;
  transition: 1000ms all linear;
  filter: blur(4px);
  opacity: 0.2;
}
@media screen and (max-width: 767px) {
  .onishi_staff_item .profile .name.eng {
    margin-bottom: 25%;
  }
}
.onishi_staff_item .profile p {
  color: #ffffff;
  padding: 20px;
  margin-bottom: 15px;
  min-height: 235px;
  transition: 1000ms all linear;
  filter: blur(4px);
  opacity: 0.2;
  letter-spacing: 0em;
}
.onishi_staff_item .profile .batu {
  position: absolute;
  right: 14px;
  top: 24px;
  transition: 1000ms filter ease;
  filter: blur(4px);
  opacity: 0.2;
  cursor: pointer;
  line-height: 1;
  padding: 10px;
  z-index: 1;
}
.onishi_staff_item .profile .batu:before {
  z-index: -1;
  content: "";
  height: 100%;
  width: 100%;
  border-radius: 100%;
  background: #0f4c96;
  position: absolute;
  top: 0;
  left: 0;
  transition: 200ms background ease;
}
.onishi_staff_item .profile .batu:hover, .onishi_staff_item .profile .batu:focus {
  color: #015188;
}
.onishi_staff_item .profile .batu:hover:before, .onishi_staff_item .profile .batu:focus:before {
  background: white;
}

.wrap_m_pa {
  width: 1111px;
}

.privpol_wrap {
  counter-reset: section-header;
}

.privpol_item {
  counter-reset: subitem-header;
  margin: 90px 0;
}
.privpol_item .privpol_item_header {
  color: #0f4c96;
  font-size: 18px;
  padding: 13px 0;
}
.privpol_item .privpol_item_header span {
  letter-spacing: 0.025em;
}
.privpol_item h3.privpol_item_header span {
  font-size: 20px;
}
.privpol_item h3.privpol_item_header span:before {
  counter-increment: section-header;
  content: counter(section-header) ". ";
}
.privpol_item h3.privpol_item_header.no_numeral {
  counter-increment: none;
  content: none;
}
.privpol_item h4.privpol_item_header {
  font-size: 15px;
  font-weight: 900;
  padding: 0;
  margin-top: 20px;
}
.privpol_item h5.privpol_item_header {
  font-size: 15px;
  font-weight: 300;
  padding: 0;
  margin-top: 10px;
}
.privpol_item p,
.privpol_item li,
.privpol_item div {
  font-size: 15px;
  padding-top: 10px;
}
.privpol_item h4,
.privpol_item h5,
.privpol_item p,
.privpol_item li,
.privpol_item div {
  padding-left: 30px;
}
.privpol_item .privpol_bullet_item {
  position: relative;
  margin-left: 15px;
}
.privpol_item .privpol_bullet_item:before {
  content: "-";
  position: absolute;
  left: 10px;
}
.privpol_item .privpol_madoguchi_wrap {
  margin-top: 40px;
  padding: 40px 60px;
  background: rgba(75, 95, 151, 0.13);
}
.privpol_item .privpol_madoguchi_wrap h3 {
  padding: 0;
  margin: 0;
}
.privpol_item .privpol_madoguchi_wrap p {
  padding-left: 0;
}
.privpol_item .privpol_madoguchi_wrap dl div {
  display: flex;
  gap: 15px;
}
.privpol_item .privpol_madoguchi_wrap dl div dt {
  position: relative;
  flex-basis: 65px;
}
.privpol_item .privpol_madoguchi_wrap dl div dt:after {
  position: absolute;
  content: "：";
  right: 0;
}
.privpol_item .comguide_number_list {
  counter-reset: comguide_number_list;
}
.privpol_item .comguide_number_list li {
  position: relative;
  margin-left: 30px;
}
.privpol_item .comguide_number_list li:before {
  position: absolute;
  left: -15px;
  counter-increment: comguide_number_list;
  content: "（" counter(comguide_number_list) "）";
}

.privpol_sub_item .privpol_item_header {
  position: relative;
  margin-left: 30px;
}
.privpol_sub_item .privpol_item_header:before {
  position: absolute;
  left: -40px;
  counter-increment: subitem-header;
  content: "（" counter(subitem-header) "）";
}
.privpol_sub_item .privpol_sub_item_section .privpol_item_header:before {
  left: -30px;
  counter-increment: none;
  content: "■";
  opacity: 0.3;
}
.privpol_sub_item .privpol_number_list {
  counter-reset: subsubitem-header;
  position: relative;
  margin-left: 30px;
}
.privpol_sub_item .privpol_number_list li:before {
  position: absolute;
  left: -10px;
  counter-increment: subsubitem-header;
  content: "（" counter(subsubitem-header) "）";
}

.contents_wrap .page_info_wrap p.comguide-size {
  font-size: 16.75px;
}

.contact_method_wrap,
.contact_support_method_wrap {
  display: flex;
  position: relative;
  width: 100%;
  gap: 10%;
}
@media screen and (max-width: 1440px) {
  .contact_method_wrap,
  .contact_support_method_wrap {
    gap: 4%;
  }
}

.contact_method_wrap {
  padding-bottom: 100px;
  justify-content: space-between;
  border-bottom: 1px solid rgba(15, 76, 150, 0.25);
  margin-bottom: 100px;
}
@media screen and (max-width: 1440px) {
  .contact_method_wrap {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.contact_method_wrap .contact_method_bg {
  position: absolute;
  opacity: 0.3;
  display: none;
}

.contact_method_header,
.support_method_header {
  font-size: 20px;
  min-width: 290px;
}

.contact_method_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 35px;
  -moz-column-gap: 10%;
       column-gap: 10%;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .contact_method_list {
    grid-template-columns: 1fr 1fr 1fr;
    -moz-column-gap: 1.5%;
         column-gap: 1.5%;
    row-gap: 15px;
  }
}
@media screen and (max-width: 1280px) {
  .contact_method_list {
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 5%;
         column-gap: 5%;
  }
}
@media screen and (max-width: 767px) {
  .contact_method_list {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}
.contact_method_list a:hover li {
  color: #0f4c96;
  letter-spacing: 0.075em;
}
.contact_method_list a:hover li:before {
  transform: translateX(0);
}
.contact_method_list a:hover li:after {
  transform: translateX(0);
}
.contact_method_list a:hover li .circle {
  background-color: #ffffff;
  opacity: 1;
  transform: translateY(-50%) translateX(10px) rotate(45deg);
}
@media screen and (max-width: 767px) {
  .contact_method_list a:hover li .circle {
    transform: translateY(-50%) rotate(45deg);
  }
}
.contact_method_list a:hover li .circle:after {
  background: url(../images/index/btn_arr.svg) no-repeat center;
}
.contact_method_list li {
  position: relative;
  font-size: 16px;
  color: #1a203d;
  transition: 0.3s;
  overflow: hidden;
  padding: 15px 0px;
  z-index: 1;
}
.contact_method_list li:before {
  height: 1px;
  width: 99%;
  transition: 0.3s;
  background-color: #0f4c96;
  opacity: 0.3;
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  transform: translateX(-101%);
}
.contact_method_list li .circle {
  background-color: #ffffff;
  padding-left: 0;
  margin-top: 0;
  color: #0f4c96;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  height: 20px;
  width: 20px;
  border-radius: 100%;
  background-color: #0f4c96;
  z-index: 1;
  transition: 0.3s;
}
@media screen and (max-width: 1180px) {
  .contact_method_list li .circle {
    right: 0;
  }
}
.contact_method_list li .circle:after {
  display: block;
  position: absolute;
  content: "";
  background: url(../images/index/btn_arr_w2.svg) no-repeat center;
  z-index: 1;
  height: 16px;
  width: 16px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}

@media screen and (max-width: 1180px) {
  .contact_support_method_wrap {
    flex-wrap: wrap;
  }
}
.contact_support_method_wrap .btn_supportreq_wrapper {
  margin-top: 11px;
  pointer-events: initial;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .contact_support_method_wrap .btn_supportreq_wrapper {
    margin-top: 20px;
  }
}
.contact_support_method_wrap .btn_supportreq_wrapper:hover .hoverelem:before, .contact_support_method_wrap .btn_supportreq_wrapper:focus .hoverelem:before {
  content: "";
  animation: contactSupport 0.5s forwards;
  position: absolute;
  background: #f18406;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  left: 50%;
  top: 0;
  z-index: 1;
}
.contact_support_method_wrap .btn_supportreq_wrapper:hover .text_blue, .contact_support_method_wrap .btn_supportreq_wrapper:focus .text_blue {
  color: #f18406;
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.05);
}
.contact_support_method_wrap .btn_supportreq_wrapper:hover .eng, .contact_support_method_wrap .btn_supportreq_wrapper:focus .eng {
  letter-spacing: 0.15em;
}
.contact_support_method_wrap .btn_supportreq_wrapper:hover .openhours_wrapper dd,
.contact_support_method_wrap .btn_supportreq_wrapper:hover .openhours_wrapper dt, .contact_support_method_wrap .btn_supportreq_wrapper:focus .openhours_wrapper dd,
.contact_support_method_wrap .btn_supportreq_wrapper:focus .openhours_wrapper dt {
  letter-spacing: 0.15em;
}
.contact_support_method_wrap .openhours_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.contact_support_method_wrap .openhours_wrapper dt,
.contact_support_method_wrap .openhours_wrapper dd {
  transition: 0.3s;
  letter-spacing: 0.1em;
}
.contact_support_method_wrap .openhours_wrapper .bg_white {
  padding: 2px 10px;
  border-radius: 7.5px;
}
.contact_support_method_wrap .openhours_wrapper .text_blue {
  font-size: 14px;
}
.contact_support_method_wrap .openhours_wrapper .text_white {
  font-size: 17px;
}
.contact_support_method_wrap .btn_supportreq {
  border-radius: var(--border-radius-big);
  background: linear-gradient(209deg, rgb(9, 94, 198) 0%, rgb(15, 76, 150) 60%);
  box-shadow: 0 0 0 5px #ffffff;
  border: 7px solid #ffffff;
  box-shadow: 0 0 5px rgba(0, 31, 53, 0.1);
  padding: 40px 0;
  text-align: center;
  overflow: hidden;
  width: 800px;
}
@media screen and (max-width: 1440px) {
  .contact_support_method_wrap .btn_supportreq {
    width: auto;
    max-width: 800px;
    padding: 5% 10%;
    box-sizing: content-box;
  }
}
@media screen and (max-width: 767px) {
  .contact_support_method_wrap .btn_supportreq {
    padding: 5%;
  }
}
.contact_support_method_wrap .btn_supportreq .btn_contents {
  position: relative;
  z-index: 1;
}
.contact_support_method_wrap .btn_supportreq .text_white {
  color: #ffffff;
}
.contact_support_method_wrap .btn_supportreq .text_blue {
  color: #0f4c96;
  transition: 0.1s;
  transition-timing-function: ease-in;
}
.contact_support_method_wrap .btn_supportreq .bg_white {
  background: #ffffff;
}
.contact_support_method_wrap .btn_supportreq .eng {
  letter-spacing: 0.125em;
  transition: 0.33s;
}
.contact_support_method_wrap .btn_supportreq .eng.small {
  font-size: 19px;
  margin-bottom: 7px;
}
.contact_support_method_wrap .btn_supportreq .eng.big {
  font-size: 68px;
  margin-bottom: 20px;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}
@media screen and (max-width: 1440px) {
  .contact_support_method_wrap .btn_supportreq .eng.big {
    font-size: 58px;
  }
}
@media screen and (max-width: 1024px) {
  .contact_support_method_wrap .btn_supportreq .eng.big {
    font-size: 5.2083333333vw;
  }
}
@media screen and (max-width: 767px) {
  .contact_support_method_wrap .btn_supportreq .eng.big {
    font-size: 30px;
  }
}
.contact_support_method_wrap .btn_supportreq .phoneno:before {
  content: url("../images/SVG/icon_support_phone.svg");
  height: 57.5px;
  width: 57.5px;
  margin-right: 25px;
  float: left;
}
@media screen and (max-width: 1440px) {
  .contact_support_method_wrap .btn_supportreq .phoneno:before {
    height: 47px;
    width: 47px;
    margin-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .contact_support_method_wrap .btn_supportreq .phoneno:before {
    height: 20px;
    width: 20px;
    margin-right: 10px;
    line-height: 0;
  }
}
@keyframes contactSupport {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  100% {
    transform: scale(20);
    opacity: 1;
  }
}
.contact_support_method_wrap .btn_supportreq .hoverelem {
  display: block;
  border-radius: 50%;
  position: relative;
  z-index: 0;
}

.full_wrap .title_wrap {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.activities_wrap {
  margin-top: 8rem;
}
.activities_wrap .activities-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
  gap: 3%;
}
@media screen and (max-width: 767px) {
  .activities_wrap .activities-showcase {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
}
.activities_wrap .activities-showcase .imgwrapper {
  width: 100%;
  height: 425px;
  overflow: hidden;
  border-radius: 20rem;
  max-width: unset;
}
@media screen and (max-width: 1280px) {
  .activities_wrap .activities-showcase .imgwrapper {
    height: 250px;
  }
}
@media screen and (max-width: 767px) {
  .activities_wrap .activities-showcase .imgwrapper {
    height: 190px;
  }
}
.activities_wrap .activities-showcase .imgwrapper img {
  max-width: unset;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.activities_wrap .title_wrap {
  position: relative;
  z-index: 2;
  max-width: 86%;
  width: 1440px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5rem;
  padding-bottom: 2rem;
}
.activities_wrap .title_wrap h3 {
  margin: 0 0;
}
.activities_wrap .title_wrap .big {
  font-size: 115px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  position: absolute;
  z-index: -1;
  opacity: 0.4;
  bottom: 30rem;
}
.activities_wrap .title_wrap .small {
  font-size: 16px;
  letter-spacing: 0.05em;
  margin-bottom: 0;
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}
.activities_wrap .title_wrap .blue {
  position: relative;
  z-index: 1;
  color: #0f4c96;
  color: #fff;
}
.activities_wrap .title_wrap .blue:before {
  content: "";
  position: absolute;
  z-index: -1;
  background: #0f4c96;
  border-radius: 10rem;
  width: 115%;
  height: 115%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.activities_wrap .title_wrap .ltblue {
  color: #fff;
}
.activities_wrap .title_wrap p {
  font-size: 34px;
  font-size: clamp(1.5625rem, 0.8079rem + 1.0976vw, 2.125rem);
  font-weight: 700;
  opacity: 1;
  color: #0f4c96;
  max-width: 1400px;
  width: 100%;
  letter-spacing: 0.05em;
  line-height: 1.9;
  padding: 0;
  margin: 0;
  margin-bottom: 3rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .activities_wrap .title_wrap p {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 21px;
  }
  .activities_wrap .title_wrap p span {
    display: block;
  }
}
.activities_wrap .title_wrap .logowrapper {
  max-width: 320px;
  width: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -24rem;
}
@media screen and (max-width: 1024px) {
  .activities_wrap .title_wrap .logowrapper {
    bottom: -22rem;
    max-width: 220px;
  }
}
@media screen and (max-width: 767px) {
  .activities_wrap .title_wrap .logowrapper {
    bottom: -19rem;
  }
}
.activities_wrap .sc_line {
  height: 185px;
  bottom: 225px;
  top: unset;
  bottom: -10rem;
}
@media screen and (max-width: 820px) {
  .activities_wrap .sc_line {
    height: 120px;
  }
}
@media screen and (max-width: 767px) {
  .activities_wrap .sc_line {
    height: 110px;
  }
}
.activities_wrap .decotext-wrapper {
  height: 40rem;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  padding: 10rem 0;
}
@media screen and (max-width: 767px) {
  .activities_wrap .decotext-wrapper {
    height: 24rem;
    padding: 5rem 0;
  }
}
@keyframes animDecotext {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.activities_wrap .decotext {
  color: #b0c7f4;
  letter-spacing: 0.05em;
  line-height: 1;
  font-size: 850%;
  position: absolute;
  animation-name: animDecotext;
  animation-duration: 100000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 23.5rem;
  will-change: transform;
}
@media screen and (max-width: 767px) {
  .activities_wrap .decotext {
    gap: 13rem;
    padding-left: 6rem;
    animation-duration: 40000ms;
  }
}
.activities_wrap .decotext span {
  display: flex;
  align-items: center;
  gap: 3.5rem;
}
@media screen and (max-width: 767px) {
  .activities_wrap .decotext span {
    gap: 2.5rem;
  }
}
.activities_wrap .decotext img {
  height: 20rem;
  width: 20rem;
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .activities_wrap .decotext img {
    height: 12rem;
    width: 12rem;
  }
}
.about_wrap_p .midashi_m span {
  background-color: #0f4c96;
}
@media screen and (max-width: 767px) {
  .about_wrap_p .midashi_m span {
    font-size: 120%;
  }
}
.about_wrap_p .mission_wrap {
  position: relative;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  z-index: 2;
  text-align: center;
  background: #fff;
  padding: 5.5rem 5% 1rem;
  border-radius: 2rem;
  box-shadow: 0 0 10px 1px #0f4c9650;
  margin-bottom: 5rem;
}
@media screen and (max-width: 1280px) {
  .about_wrap_p .mission_wrap {
    width: 100%;
    padding-left: 7%;
    padding-right: 7%;
  }
}
@media screen and (max-width: 767px) {
  .about_wrap_p .mission_wrap {
    padding: 3rem 5%;
  }
}
.about_wrap_p .mission_wrap .about_foreign_entry {
  max-width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .about_wrap_p .mission_wrap .about_foreign_entry {
    max-width: 100%;
  }
}
.about_wrap_p .mission_wrap .teikan_wrap {
  background: rgba(26, 32, 61, 0.02);
  box-shadow: 0 0 5px 1px #eee;
}
@media screen and (max-width: 767px) {
  .about_wrap_p .mission_wrap .teikan_wrap {
    margin-bottom: 0;
    padding: 5%;
  }
}
.about_wrap_p .mission_wrap .teikan_wrap .flex {
  display: block;
}
.about_wrap_p .mission_wrap .teikan_wrap .flex .btn_wrap {
  padding: 0;
  max-width: 660px;
  margin: 1rem auto 0;
}
@media screen and (max-width: 767px) {
  .about_wrap_p .mission_wrap .teikan_wrap .flex .btn_wrap a {
    font-size: 14px;
    text-align: left;
    padding-left: 30px;
    padding-right: 50px;
  }
}
@media screen and (max-width: 767px) {
  .about_wrap_p .mission_wrap .teikan_wrap .flex h3 {
    font-size: 115%;
  }
}
.about_wrap_p .about_vision_wrap .title_wrap div.big {
  margin-bottom: 2rem;
  padding-bottom: 0;
  border: none;
}
.about_wrap_p .title_wrap .big {
  font-size: 52px;
  font-weight: 800;
  padding-bottom: 2rem;
  border-bottom: 2px solid #0f4c9615;
  width: 90%;
  margin: -0.25rem auto 6rem;
  font-size: clamp(2.25rem, 2rem + 1.0417vw, 2.5rem);
}
@media screen and (max-width: 767px) {
  .about_wrap_p .title_wrap .big {
    font-size: 135%;
    line-height: 1.4;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
  }
}
.about_wrap_p .title_wrap .big span {
  display: inline-block;
}
.about_wrap_p .title_wrap .small {
  font-size: 19px;
  letter-spacing: 0;
  margin-bottom: 0;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(1.0625rem, 0.9792rem + 0.1736vw, 1.0875rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 80%;
}
.about_wrap_p .title_wrap .small span {
  display: block;
}
.about_wrap_p .title_wrap .blue {
  position: relative;
  z-index: 1;
  color: #0f4c96;
}
.about_wrap_p .title_wrap .blue:before {
  content: "";
  position: absolute;
  z-index: -1;
  background: #0f4c96;
  border-radius: 10rem;
  width: calc(100% + 4rem);
  height: calc(100% + 1.75rem);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #b0c7f4;
  background: transparent;
  border: 1px solid #0f4c96;
}
@media screen and (max-width: 767px) {
  .about_wrap_p .title_wrap .blue:before {
    width: calc(100% + 2.5rem);
    height: calc(100% + 1.5rem);
    font-size: 17px;
  }
}
.about_wrap_p .title_wrap .ltblue {
  color: #0f4c96;
}
.about_wrap_p .title_wrap .skyblue {
  color: #b0c7f4;
  line-height: 1.6em;
  font-size: 25px;
  font-size: clamp(1.25rem, 1.0417rem + 0.434vw, 1.5625rem);
}
@media screen and (max-width: 767px) {
  .about_wrap_p .title_wrap .skyblue {
    font-size: 18px;
  }
}
.about_wrap_p .title_wrap .mission_text {
  width: 90%;
  padding: 7.5%;
  margin: 3rem auto 7.5rem;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  background: rgba(26, 32, 61, 0.02);
  border-radius: 20px;
  box-shadow: 0 0 5px 1px #eee;
}
@media screen and (max-width: 1280px) {
  .about_wrap_p .title_wrap .mission_text {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    grid-template-columns: 1fr;
    padding: 5%;
    gap: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .about_wrap_p .title_wrap .mission_text {
    padding: 2rem 1rem;
    gap: 1.5rem;
  }
}
.about_wrap_p .title_wrap .mission_text span {
  display: inline-block;
}
.about_wrap_p .title_wrap .mission_text p {
  font-size: 26px;
  font-size: clamp(1.025rem, 0.7917rem + 0.6944vw, 1.4rem);
  letter-spacing: 0.1em;
  line-height: 1.7;
  color: #0f4c96;
  margin: 0 auto;
  color: #1a203d;
}
@media screen and (max-width: 767px) {
  .about_wrap_p .title_wrap .mission_text p {
    font-size: 16px;
  }
}
.about_wrap_p .title_wrap .imgwrapper {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  max-width: 280px;
}
@media screen and (max-width: 767px) {
  .about_wrap_p .title_wrap .imgwrapper {
    width: 50%;
  }
}
.about_wrap_p .sc_line {
  height: 185px;
  bottom: 225px;
  top: unset;
}
@media screen and (max-width: 820px) {
  .about_wrap_p .sc_line {
    height: 100px;
  }
}
@media screen and (max-width: 767px) {
  .about_wrap_p .sc_line {
    height: 50px;
    top: -10px;
  }
}
.about_wrap_p .about_vision_wrap .title_wrap .big,
.about_wrap_p .about_value_wrap .title_wrap .big {
  margin-bottom: 3rem;
}
.about_wrap_p .about_vision_wrap .title_wrap .midashi_m,
.about_wrap_p .about_value_wrap .title_wrap .midashi_m {
  margin-bottom: 3rem;
}

.about_vision_wrap .visionarea {
  position: relative;
  height: 665px;
  width: 100%;
  border-radius: 5rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 5%;
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.5);
  margin-bottom: 7rem;
}
@media screen and (max-width: 1280px) {
  .about_vision_wrap .visionarea {
    border-radius: var(--border-radius-big);
  }
}
@media screen and (max-width: 820px) {
  .about_vision_wrap .visionarea {
    height: auto;
    padding-top: 14rem;
    padding-bottom: 3rem;
  }
}
.about_vision_wrap .visionarea:after {
  width: 100%;
  height: 100%;
  background-color: #000;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: multiply;
  opacity: 50%;
  border-radius: 5rem;
}
@media screen and (max-width: 1280px) {
  .about_vision_wrap .visionarea:after {
    border-radius: var(--border-radius-big);
  }
}
.about_vision_wrap .bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
@media screen and (max-width: 820px) {
  .about_vision_wrap .bg {
    height: 100%;
    width: 100%;
  }
  .about_vision_wrap .bg img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.about_vision_wrap .visiontext {
  width: 100%;
}
.about_vision_wrap .textwrapper {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: left;
  width: 66%;
  max-width: 615px;
  margin-left: auto;
  margin-right: 12%;
}
@media screen and (max-width: 820px) {
  .about_vision_wrap .textwrapper {
    width: 82.5%;
    margin-right: auto;
    margin-left: auto;
  }
}
.about_vision_wrap .textwrapper .big.thin {
  color: #fff;
  font-family: "Noto Sans Jp";
  font-weight: 100 !important;
  font-size: 16px;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}
.about_vision_wrap .textwrapper .small {
  text-align: left;
  color: #fff;
  font-size: 225%;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 820px) {
  .about_vision_wrap .textwrapper .small {
    font-size: 3.5vw;
  }
}
.about_vision_wrap .pulse-btn {
  position: absolute;
  left: 24%;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 20px #fff;
  z-index: 1;
}
@media screen and (max-width: 1280px) {
  .about_vision_wrap .pulse-btn {
    left: 15%;
    width: 1rem;
    height: 1rem;
  }
}
@media screen and (max-width: 820px) {
  .about_vision_wrap .pulse-btn {
    width: 13px;
    height: 13px;
    transform: none;
    top: 3rem;
    left: 60px;
  }
}
.about_vision_wrap .pulse-btn::after, .about_vision_wrap .pulse-btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  border-radius: 50%;
  box-sizing: border-box;
  pointer-events: none;
  animation: pulsate 2s linear infinite;
}
.about_vision_wrap .pulse-btn::after {
  animation-delay: 1s;
}
@keyframes pulsate {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

.list_activities {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  padding: 18rem 5% 10rem;
  counter-reset: activity;
}
@media screen and (max-width: 767px) {
  .list_activities {
    display: grid;
    gap: 6rem;
    padding: 8rem 5% 6rem;
  }
}
.list_activities:before {
  content: "";
  width: 400%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .list_activities:before {
    width: 100%;
    border-radius: 2.5rem;
  }
}

@keyframes animActivitiesBorder {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.item_activities {
  position: relative;
  counter-increment: activity;
  margin-bottom: 15%;
}
@media screen and (max-width: 1180px) {
  .item_activities {
    margin-bottom: 25%;
  }
}
@media screen and (max-width: 820px) {
  .item_activities {
    margin-bottom: 40%;
  }
}
@media screen and (max-width: 767px) {
  .item_activities {
    display: grid;
    gap: 6rem;
    margin: 0;
  }
}
.item_activities .textwrapper {
  width: 50%;
  max-width: 650px;
  position: absolute;
  top: 25%;
  right: 6.5%;
}
@media screen and (max-width: 1180px) {
  .item_activities .textwrapper {
    right: 3%;
    margin-top: -200px;
  }
}
@media screen and (max-width: 767px) {
  .item_activities .textwrapper {
    width: 100%;
    position: static;
    margin: 0;
    transform: none;
  }
}
.item_activities .textwrapper h3 {
  color: #0f4c96;
  font-size: 200%;
  font-weight: 800;
  padding-top: 2rem;
  margin-bottom: 0.66rem;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
@media screen and (max-width: 1180px) {
  .item_activities .textwrapper h3 {
    font-size: 180%;
    white-space: normal;
    white-space: initial;
  }
}
@media screen and (max-width: 1024px) {
  .item_activities .textwrapper h3 {
    padding-top: 0.55rem;
  }
}
@media screen and (max-width: 767px) {
  .item_activities .textwrapper h3 {
    white-space: wrap;
    line-height: 1.4;
    padding-top: 0.7rem;
    margin-bottom: 0.25rem;
  }
}
.item_activities .textwrapper .text-ltblue {
  color: #b0c7f4;
  padding-bottom: 2rem;
  position: relative;
}
.item_activities .textwrapper .text-ltblue:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 1rem;
  background: #1a203d;
  width: 125%;
  height: 1px;
}
@media screen and (max-width: 1180px) {
  .item_activities .textwrapper .text-ltblue:after {
    width: 100%;
  }
}
.item_activities .textwrapper p {
  line-height: 2.2em;
  font-size: 16px;
}
@media screen and (max-width: 1180px) {
  .item_activities .textwrapper p {
    font-size: 14px;
    line-height: 1.9;
    width: 100%;
  }
}
.item_activities .border_wrapper {
  border-radius: 100%;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 0;
  left: -14%;
  z-index: 1;
}
@media screen and (max-width: 1180px) {
  .item_activities .border_wrapper {
    left: -10%;
  }
}
@media screen and (max-width: 767px) {
  .item_activities .border_wrapper {
    left: unset;
    right: unset;
    margin-left: auto;
    margin-right: auto;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.item_activities .border_wrapper:before {
  width: 107.5%;
  height: 107.5%;
  position: absolute;
  z-index: -1;
  background: linear-gradient(85deg, #79dbee, #4f95eb, #b4e3ff);
  content: "";
  border-radius: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  animation-name: animActivitiesBorder;
  animation-duration: 10s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
}
@media screen and (max-width: 767px) {
  .item_activities .border_wrapper:before {
    width: 110%;
    height: 110%;
  }
}
.item_activities .imgwrapper {
  overflow: hidden;
  border-radius: 100%;
  --diameter: 45vw;
  width: var(--diameter);
  height: var(--diameter);
  min-width: var(--diameter);
  min-height: var(--diameter);
  max-width: var(--diameter);
  max-height: var(--diameter);
}
@media screen and (max-width: 1180px) {
  .item_activities .imgwrapper {
    --diameter: 42.5vw ;
  }
}
@media screen and (max-width: 767px) {
  .item_activities .imgwrapper {
    --diameter: 82.5vw;
  }
}
.item_activities .imgwrapper img {
  max-width: unset;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.item_activities:nth-child(even) .border_wrapper {
  left: unset;
  right: -14%;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 1180px) {
  .item_activities:nth-child(even) .border_wrapper {
    right: -10%;
  }
}
@media screen and (max-width: 767px) {
  .item_activities:nth-child(even) .border_wrapper {
    right: unset;
    margin-left: auto;
    margin-right: auto;
  }
}
.item_activities:nth-child(even) .textwrapper {
  right: unset;
  left: 6.5%;
}
@media screen and (max-width: 1180px) {
  .item_activities:nth-child(even) .textwrapper {
    left: 3%;
  }
}
.item_activities:nth-child(even) .textwrapper:before {
  margin-left: auto;
  position: relative;
  right: -62.5%;
}
@media screen and (max-width: 1180px) {
  .item_activities:nth-child(even) .textwrapper:before {
    right: -75%;
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .item_activities:nth-child(even) .textwrapper:before {
    right: unset;
    left: 0;
  }
}
.item_activities:nth-child(even) .textwrapper .text-ltblue:after {
  right: unset;
  left: 0;
}
.item_activities .btn_wrap {
  padding-top: 30px;
}
@media screen and (max-width: 767px) {
  .item_activities .logo {
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 50vw;
    margin-bottom: 2rem;
  }
}

.ul-ltblue {
  position: relative;
  z-index: 1;
}
.ul-ltblue:before {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  width: 80%;
  height: 0.5rem;
  background: #b0c7f4;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
}

.mission_list_wrap .mission_list {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  gap: 0;
  margin-top: 0;
  padding: 0 0 5rem;
}
@media screen and (max-width: 1280px) {
  .mission_list_wrap .mission_list {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .mission_list_wrap .mission_list {
    gap: 3.5rem;
    padding: 3rem 1rem;
  }
}
.mission_list_wrap .mission_item {
  display: flex;
  align-items: center;
  gap: 5rem;
  width: 100%;
  margin: 7rem auto;
}
@media screen and (max-width: 767px) {
  .mission_list_wrap .mission_item {
    width: 80%;
    gap: 2rem;
  }
}
.mission_list_wrap .mission_item:nth-child(even) .textwrapper {
  order: 1;
}
@media screen and (max-width: 767px) {
  .mission_list_wrap .mission_item:nth-child(even) .textwrapper {
    order: 2;
  }
}
.mission_list_wrap .mission_item:nth-child(even) .imgwrapper {
  order: 2;
}
@media screen and (max-width: 767px) {
  .mission_list_wrap .mission_item:nth-child(even) .imgwrapper {
    order: 1;
  }
}
@media screen and (max-width: 767px) {
  .mission_list_wrap .mission_item {
    flex-wrap: wrap;
  }
}
.mission_list_wrap .mission_item h3 {
  color: #0f4c96;
  font-weight: 800;
  font-size: 24px;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .mission_list_wrap .mission_item h3 {
    font-size: 18px;
    margin-bottom: 0.5rem;
  }
}
.mission_list_wrap .mission_item p {
  font-size: 17px;
}
.mission_list_wrap .mission_item .textwrapper {
  width: 40%;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .mission_list_wrap .mission_item .textwrapper {
    width: 100%;
  }
}
.mission_list_wrap .mission_item .imgwrapper {
  width: 58%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 0 16px #81bcf5;
}
@media screen and (max-width: 767px) {
  .mission_list_wrap .mission_item .imgwrapper {
    width: 100%;
  }
}
.mission_list_wrap .mission_item .imgwrapper img {
  height: 100%;
  width: 100%;
  max-width: unset;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.wrap90 {
  max-width: 90%;
}

.activ_list_wrap-s.about_p {
  max-width: 100%;
}
.activ_list_wrap-s.about_p .list-box figure {
  overflow: hidden;
}
.activ_list_wrap-s.about_p .list-box figure img {
  max-width: unset;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.activ_list_wrap-s.about_p .list-box figure.svglogo img {
  width: 67%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.about_p_links_wrap {
  margin-bottom: 5rem;
}
.about_p_links_wrap .activ_list_wrap-s.about_p .list-box.list-box-report figure img {
  -o-object-position: left;
     object-position: left;
}
@media screen and (max-width: 767px) {
  .about_p_links_wrap .activ_list_wrap-s.about_p .list-box figure {
    min-height: 250px;
  }
}
.about_p_links_wrap .activ_list_wrap-s.about_p .list-box figure img {
  height: 100%;
}
@media screen and (max-width: 767px) {
  .about_p_links_wrap .activ_list_wrap-s.about_p .list-box figure img {
    height: 250px;
    max-height: unset;
  }
}
@media screen and (max-width: 767px) {
  .about_p_links_wrap .activ_list_wrap-s.about_p .list-box figure.svglogo img {
    height: auto;
  }
}

.foot_contact.lower_page_foot_contact {
  margin-bottom: 200px;
  background: transparent;
}
@media screen and (max-width: 767px) {
  .foot_contact.lower_page_foot_contact {
    margin-bottom: 0;
  }
}

.contents_wrap_about {
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .contents_wrap_about {
    padding-bottom: 0;
  }
}

.contents_wrap.no_padbot2 {
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .contents_wrap.no_padbot2 {
    padding-bottom: 0;
  }
}

.a- {
  position: absolute;
  top: -5rem;
}

html.is-changing .transition-fade {
  transition: opacity 0.25s;
  opacity: 1;
}

html.is-animating .transition-fade {
  opacity: 0;
}

.fude {
  font-family: "vdl-pengentle", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.contents_wrap .page_info_wrap.text-center {
  text-align: center;
  margin-bottom: 80px;
}

.contents_wrap .page_info_wrap .fude {
  font-size: 430%;
  line-height: 1.7;
  margin: 7rem auto 2rem;
}
@media screen and (max-width: 1280px) {
  .contents_wrap .page_info_wrap .fude {
    font-size: 360%;
    line-height: 1.4;
  }
}
@media screen and (max-width: 767px) {
  .contents_wrap .page_info_wrap .fude {
    font-size: 210%;
    line-height: 1.8;
    margin: 6rem auto 4rem;
  }
}
.contents_wrap .page_info_wrap .fude span {
  display: inline-block;
}

.fude.text-blue {
  color: #0f4c96;
}

.wrapper_staffichiran {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 5%;
  border-radius: 3rem;
}
.wrapper_staffichiran .midashi_wrapper {
  border-bottom: none;
  padding-bottom: 0;
}

.list_staffichiran {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  row-gap: 3rem;
  -moz-column-gap: 1%;
       column-gap: 1%;
}
.list_staffichiran > a {
  width: 100%;
  display: grid;
  justify-content: center;
}

.item_staffichiran {
  width: 100%;
}
.item_staffichiran .imgwrapper {
  position: relative;
  border-radius: 1rem;
  margin: 0 0 0.75rem;
  width: 100%;
  transition: transform 0.55s ease;
  transform: rotateY(0);
  transform-style: preserve-3d;
}
.item_staffichiran .imgwrapper img {
  height: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.item_staffichiran .imgwrapper .hoverimg {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.item_staffichiran .imgwrapper .itemfront {
  backface-visibility: hidden;
  border-radius: var(--border-radius-big);
}
.item_staffichiran .imgwrapper .itemback {
  position: absolute;
  border-radius: var(--border-radius-big);
  backface-visibility: hidden;
  top: 0;
  left: 0;
  transform: rotateY(-180deg);
  overflow: hidden;
  height: 100%;
  width: 100%;
}
.item_staffichiran .imgwrapper .itemback img {
  height: 250%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 2.5rem;
  padding: 0;
}
.item_staffichiran .imgwrapper.animate {
  transform: rotateY(-180deg);
}
.item_staffichiran .imgwrapper.animate .defaultimg {
  opacity: 0;
}
.item_staffichiran .imgwrapper.animate .hoverimg {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.05);
}
.item_staffichiran .textwrapper .name.jp {
  font-size: 175%;
  letter-spacing: 0.1em;
  margin-bottom: 0px;
  line-height: 1.4;
  margin-top: 0.25rem;
}
@media screen and (max-width: 767px) {
  .item_staffichiran .textwrapper .name.jp {
    font-size: 125%;
  }
}
.item_staffichiran .textwrapper .name.eng {
  font-weight: 500;
  font-size: 100%;
  color: #0f4c96;
}
@media screen and (max-width: 767px) {
  .item_staffichiran .textwrapper .name.eng {
    font-size: 90%;
  }
}
.item_staffichiran .textwrapper .katagaki {
  font-size: 90%;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .item_staffichiran .textwrapper .katagaki {
    font-size: 80%;
  }
}

.interview_page_contents_wrapper {
  margin-top: -5rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .interview_page_contents_wrapper {
    margin-top: -2rem;
  }
}
.interview_page_contents_wrapper .btn_wrap .btn_back_to_recruit {
  background: rgb(15, 76, 150);
  background: linear-gradient(90deg, rgb(15, 76, 150) 0%, rgb(0, 80, 177) 35%, rgb(5, 85, 187) 100%);
  color: white;
  font-size: 140%;
  padding: 2rem;
}
@media screen and (max-width: 767px) {
  .interview_page_contents_wrapper .btn_wrap .btn_back_to_recruit {
    padding: 1rem;
    margin-top: -3rem;
    font-size: 120%;
  }
}
.interview_page_contents_wrapper .btn_wrap .btn_back_to_recruit::after {
  background: url(../images/index/btn_arr.svg) no-repeat center rgb(255, 255, 255);
}

.staff_header_img {
  overflow: hidden;
  max-height: 530px;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .staff_header_img {
    max-height: unset;
  }
}

.staff_intro_flex_wrapper {
  align-items: center;
  justify-content: center;
  gap: 5%;
}
@media screen and (max-width: 767px) {
  .staff_intro_flex_wrapper {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 767px) {
  .staff_intro_flex_wrapper .staff_info_wrapper, .staff_intro_flex_wrapper .staff_header_img {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}
.staff_intro_flex_wrapper .staff_info_wrapper {
  max-width: 425px;
}
@media screen and (max-width: 767px) {
  .staff_intro_flex_wrapper .staff_info_wrapper {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}
.staff_intro_flex_wrapper .staff_header_img {
  max-width: 325px;
}
@media screen and (max-width: 1280px) {
  .staff_intro_flex_wrapper {
    gap: 2.5%;
  }
}
@media screen and (max-width: 767px) {
  .staff_intro_flex_wrapper {
    margin-bottom: 3rem;
  }
}

.staff_interview_contents_wrap {
  padding-bottom: 0;
}

.staff_info_wrapper {
  min-width: 300px;
  row-gap: 0.5rem;
  align-items: baseline;
  display: grid;
  grid-template-areas: "c" "a" "b" "d";
}
@media screen and (max-width: 1280px) {
  .staff_info_wrapper {
    -moz-column-gap: 5%;
         column-gap: 5%;
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .staff_info_wrapper {
    display: block;
  }
}
.staff_info_wrapper .name.jp {
  font-size: 200%;
  letter-spacing: 0.1em;
  margin-bottom: 0px;
  grid-area: a;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .staff_info_wrapper .name.jp {
    font-size: 200%;
  }
}
.staff_info_wrapper .name.eng {
  font-weight: 800;
  margin-bottom: 4px;
  font-size: 100%;
  color: #0f4c96;
  grid-area: b;
}
@media screen and (max-width: 767px) {
  .staff_info_wrapper .name.eng {
    font-size: 130%;
  }
}
.staff_info_wrapper .katagaki {
  font-size: 100%;
  line-height: 1.4;
  grid-area: c;
}

.interview_wrapper {
  margin-top: -10rem;
  background-color: #fff;
  padding: 3rem 6% 8rem;
  border-radius: var(--border-radius-big);
  position: relative;
}
@media screen and (max-width: 767px) {
  .interview_wrapper {
    padding-bottom: 0;
  }
}
.interview_wrapper .grid {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 6%;
  position: relative;
}
.interview_wrapper .left {
  position: sticky;
  top: 15%;
  width: 100%;
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: white;
  width: 100%;
  max-width: 100%;
  border-radius: 2rem;
  gap: 5%;
  align-self: flex-start;
  text-align: left;
  box-shadow: 0 0 10px rgba(0, 31, 53, 0.4);
}
.interview_wrapper .left .textwrapper {
  width: 100%;
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  gap: 0;
  justify-content: space-between;
}
.interview_wrapper .left .textwrapper .wrapper {
  width: 68%;
}
.interview_wrapper .textwrapper {
  padding: 0.25rem 0;
}
.interview_wrapper .textwrapper .staffprofile {
  padding-bottom: 1rem;
}
.interview_wrapper .textwrapper .name.jp {
  font-size: 24px;
  letter-spacing: 0.1em;
  margin-bottom: 0px;
  margin-top: 0;
}
.interview_wrapper .textwrapper .name.eng {
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 15px;
  letter-spacing: 0.075em;
  color: #0f4c96;
  margin-top: -0.25rem;
  margin-bottom: 0.25rem;
}
.interview_wrapper .textwrapper .katagaki {
  font-size: 100%;
}
.interview_wrapper .textwrapper .zenshoku {
  font-size: 100%;
}
.interview_wrapper .imgwrapper {
  background: white;
  background-image: url(/wp-content/themes/pwj2023/assets/css/assets/images/contents/staff_bg.png);
  background-image: url(../images/contents/staff_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  text-align: center;
  border-radius: 2rem;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
  height: 325px;
  width: 100%;
}
.interview_wrapper .imgwrapper img {
  width: 80%;
}
.interview_wrapper .right {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: 0;
}
.interview_wrapper .list_interview {
  max-width: 800px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  gap: 6rem;
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .interview_wrapper .list_interview {
    width: 100%;
    gap: 4rem;
    margin-top: 4rem;
  }
}
.interview_wrapper .item_interview {
  position: relative;
  border-bottom: 1px solid #0f4c9610;
  padding-bottom: 6rem;
}
.interview_wrapper .item_interview:last-child {
  border-bottom: none;
}
.interview_wrapper .interview_q {
  font-size: 217.5%;
  line-height: 1.4;
  color: #0f4c96;
  font-weight: 600;
  position: relative;
  text-align: center;
  margin-bottom: 1.5rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1280px) {
  .interview_wrapper .interview_q {
    font-size: 234%;
    line-height: 1.7;
  }
}
@media screen and (max-width: 767px) {
  .interview_wrapper .interview_q {
    font-size: 180%;
  }
}
.interview_wrapper .interview_q span {
  display: inline-block;
}
.interview_wrapper .interview_a {
  font-size: 120%;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .interview_wrapper .interview_a {
    font-size: 100%;
  }
}
.interview_wrapper .decotext {
  text-align: center;
  color: #b0c7f4;
  opacity: 0.3;
  text-transform: uppercase;
  font-size: 500%;
  margin-bottom: 1rem;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .interview_wrapper .decotext {
    font-size: 300%;
  }
}
.interview_wrapper .btn_wrapper {
  display: flex;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  gap: 1.5rem;
  margin-top: 1rem;
  justify-content: center;
  text-align: center;
}
.interview_wrapper .btn_wrapper li {
  border-radius: 5rem;
  width: 47.5%;
  box-shadow: 0 0 0 1px black;
  transition: all 0.2s ease;
  background: white;
}
.interview_wrapper .btn_wrapper li:hover {
  background: rgba(0, 75, 125, 0.05);
}
.interview_wrapper .btn_wrapper a {
  width: 100%;
  display: block;
  padding: 0.2rem 0;
}

.midashi_wrapper {
  width: 100%;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #0f4c9630;
}
.midashi_wrapper .midashi_m {
  text-align: center;
}
.midashi_wrapper .button_wrapper {
  margin-top: 2rem;
  display: flex;
  gap: 2rem;
  justify-content: center;
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .midashi_wrapper .button_wrapper {
    gap: 1rem;
    font-size: 11px;
  }
}
.midashi_wrapper .button_wrapper a {
  color: #0f4c96;
  transition: all 0.2s ease;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .midashi_wrapper .button_wrapper a {
    letter-spacing: 0.05em;
  }
}
.midashi_wrapper .button_wrapper a:hover {
  color: #03385d;
}

.centerer {
  margin: 6rem auto;
  width: 100%;
  max-width: 600px;
}
@media screen and (max-width: 767px) {
  .centerer {
    width: 95%;
  }
}

.editor_content {
  font-size: 18px;
  margin: 0 auto;
  padding: 4rem 0;
  white-space: pre-wrap;
}
@media screen and (max-width: 767px) {
  .editor_content {
    padding: 2rem 0;
  }
}
.editor_content p {
  font-size: 100%;
}
.editor_content div {
  width: 100% !important;
  margin: 4rem auto;
}
.editor_content div img {
  width: 100%;
  border-radius: var(--border-radius-big);
}
.editor_content img {
  display: block;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.editor_content img.aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.editor_content img.alignleft {
  margin-left: 0;
  margin-right: auto;
}
.editor_content img.alignright {
  margin-left: auto;
  margin-right: 0;
}
.editor_content h1,
.editor_content h2,
.editor_content h3 {
  margin-bottom: 2rem;
}
.editor_content table {
  border-color: #0f4c9630;
}
.editor_content table tr td:first-child {
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .editor_content table tr td:first-child {
    white-space: normal;
    width: 27.5%;
  }
}
.editor_content table td {
  padding: 25px;
  font-size: 90%;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .editor_content table td {
    font-size: 80%;
    padding: 15px;
  }
}
.editor_content a {
  color: blue;
}

.about_value_wrap {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5rem;
}
@media screen and (max-width: 1280px) {
  .about_value_wrap {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .about_value_wrap {
    width: 100%;
  }
}

.value_list {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  row-gap: 4rem;
  text-align: left;
  counter-reset: value;
}
@media screen and (max-width: 1280px) {
  .value_list {
    gap: 5%;
    row-gap: 2rem;
    grid-template-rows: auto;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .value_list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.value_list .value_item {
  display: grid;
  gap: 1rem;
  padding: 2.5rem 2rem 2.25rem;
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.1);
  counter-increment: value;
  position: relative;
  justify-items: center;
  align-content: flex-start;
  border-radius: 1rem;
  background-color: #fff;
  color: #fff;
}
@media screen and (max-width: 1280px) {
  .value_list .value_item {
    padding: 1.5rem 1.5rem 2rem;
    gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .value_list .value_item {
    padding: 7.5% 10% 10%;
  }
}
.value_list .value_item:after {
  content: counter(value);
  position: static;
  opacity: 1;
  color: #b0c7f4;
  font-family: "Century Gothic", "Roboto", "Outfit", sans-serif, "Noto Sans JP";
  line-height: 1;
  font-size: 1500%;
  font-weight: 900;
  letter-spacing: -0.05em;
  order: -1;
  text-indent: -5%;
}
@media screen and (max-width: 1280px) {
  .value_list .value_item:after {
    font-size: 1000%;
  }
}
@media screen and (max-width: 767px) {
  .value_list .value_item:after {
    font-size: 750%;
  }
}
.value_list .value_item .textwrapper {
  position: relative;
  z-index: 1;
}
.value_list .value_item .textwrapper .en_title {
  color: #0758b9;
  padding-top: 1.5rem;
  padding-bottom: 2rem;
  font-size: 165%;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 0;
}
@media screen and (max-width: 1280px) {
  .value_list .value_item .textwrapper .en_title {
    font-size: 145%;
    padding-top: 1rem;
    padding-bottom: 1.5rem;
    line-height: 1;
  }
}
@media screen and (max-width: 767px) {
  .value_list .value_item .textwrapper .en_title {
    font-size: 130%;
    letter-spacing: 0;
    padding-bottom: 0.75rem;
    padding-top: 1.5rem;
  }
}
.value_list .value_item .textwrapper p {
  font-size: 110%;
}
.value_list .value_item .imgwrapper {
  min-width: 100%;
  width: 100%;
  height: 150px;
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.value_list .value_item .imgwrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.heading_recruit {
  text-align: center;
  margin-top: 5rem;
  position: relative;
  z-index: 12;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}
@media screen and (max-width: 767px) {
  .heading_recruit {
    margin-top: 0;
  }
}
.heading_recruit .big {
  color: white;
  text-shadow: 0 0 35px #0f4c9635;
  font-size: 1250%;
  letter-spacing: 0.075em;
  line-height: 1.1;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1600px) {
  .heading_recruit .big {
    font-size: 11.25vw;
  }
}
@media screen and (max-width: 767px) {
  .heading_recruit .big {
    font-weight: 700;
    font-size: 18vw;
    letter-spacing: 0.05em;
    text-shadow: 0 0 15px #0f4c9645;
  }
}
.heading_recruit .small {
  color: white;
  display: flex;
  align-content: center;
  justify-content: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .heading_recruit .small {
    gap: 0.5rem;
  }
}
.heading_recruit .small span {
  text-shadow: 0 0 15px #0f4c9635;
  font-size: 225%;
  font-weight: 300;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 1600px) {
  .heading_recruit .small span {
    font-size: 1.875vw;
  }
}
@media screen and (max-width: 767px) {
  .heading_recruit .small span {
    font-size: 3.6458333333vw;
    text-shadow: 0 0 5px #0f4c9645;
  }
}
.heading_recruit img {
  width: 1rem;
}
@media screen and (max-width: 767px) {
  .heading_recruit img {
    width: 0.5rem;
  }
}
.heading_recruit .jp {
  margin-top: 4rem;
  line-height: 2.4;
  color: #0f4c96;
  font-weight: 600;
  font-size: 133%;
}
@media screen and (max-width: 1280px) {
  .heading_recruit .jp {
    margin-top: 3rem;
    font-size: 115%;
  }
}
@media screen and (max-width: 767px) {
  .heading_recruit .jp {
    font-size: 105%;
  }
}
@media screen and (max-width: 380px) {
  .heading_recruit .jp {
    font-size: 95%;
  }
}
.heading_recruit .jp img {
  line-height: 1;
  margin: 0 0.15rem 0.75rem;
}
.heading_recruit .jp .bg {
  color: #fff;
  padding: 0.33rem 1.25rem;
  border-radius: 2rem;
}
.heading_recruit .jp .bg:nth-of-type(1) {
  background-color: #6fcaee;
}
.heading_recruit .jp .bg:nth-of-type(2) {
  background-color: #67bded;
}
.heading_recruit .jp .bg:nth-of-type(3) {
  background-color: #60b1ed;
}

.wrapper_recruit_p_content {
  width: 100%;
  margin-top: -5rem;
  position: relative;
  z-index: 12;
  transition: transform 0.15s ease-out;
}
@media screen and (max-width: 767px) {
  .wrapper_recruit_p_content {
    margin-top: -2rem;
  }
}

.page_recruit_img {
  z-index: -1;
  opacity: 1;
}

.nav_p_recruit {
  width: 100%;
  height: 1px;
  position: relative;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .nav_p_recruit {
    margin-bottom: 4rem;
  }
}
.nav_p_recruit ul {
  width: 800px;
  max-width: 95%;
  display: flex;
  justify-content: space-around;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 1.5rem 1rem;
  border-radius: var(--border-radius-big);
}
@media screen and (max-width: 767px) {
  .nav_p_recruit ul {
    max-width: 100%;
    width: 100%;
    flex-wrap: wrap;
    justify-content: left;
    gap: 5%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
.nav_p_recruit ul li a {
  color: #0f4c96;
  padding: 0.75rem 1.25rem;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .nav_p_recruit ul li a {
    font-size: 100%;
    padding: 0.7rem 0.1rem;
    letter-spacing: 0;
    display: flex;
    align-items: center;
  }
}
.nav_p_recruit ul li a:before {
  content: "➤";
  margin-right: 0.5rem;
}
@media screen and (max-width: 767px) {
  .nav_p_recruit ul li a:before {
    margin-right: 0.25rem;
    font-size: 50%;
  }
}
.nav_p_recruit ul li a:hover {
  opacity: 0.7;
}

.wrapper_r_content {
  width: 100%;
  position: relative;
  z-index: 1;
  padding-top: var(--recruit-content-pt);
  margin-top: calc(var(--recruit-content-pt) * -1);
}
@media screen and (max-width: 767px) {
  .wrapper_r_content {
    margin-top: 3rem;
  }
}
.wrapper_r_content .btn_wrap {
  padding-top: 2rem;
}
@media screen and (max-width: 767px) {
  .wrapper_r_content .btn_wrap {
    padding-top: 0;
    margin-top: 2.5rem;
  }
}
.wrapper_r_content:before {
  position: absolute;
  height: 90%;
  width: 100%;
  content: "";
  left: 0;
  top: var(--recruit-content-pt);
  background: #fff;
  z-index: 0;
}
.wrapper_r_content h2 {
  font-size: 217.5%;
  text-wrap: pretty;
  line-height: 2;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #0f4c96;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 1180px) {
  .wrapper_r_content h2 {
    font-size: 180%;
  }
}
@media screen and (max-width: 767px) {
  .wrapper_r_content h2 {
    font-size: 200%;
    border-bottom: none;
    margin-bottom: 0;
    line-height: 1.75;
    padding-bottom: 1rem;
  }
}
.wrapper_r_content h2 span {
  font-weight: 700;
  display: block;
}
@media screen and (max-width: 1180px) {
  .wrapper_r_content h2 span {
    display: inline;
  }
}
.wrapper_r_content p {
  text-wrap: pretty;
  padding-bottom: 0;
  line-height: 1.9;
  font-size: 120%;
}
@media screen and (max-width: 767px) {
  .wrapper_r_content p {
    margin-bottom: 2.5rem;
  }
}
.wrapper_r_content .recruit_pip {
  background-color: #0f4c96;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.33rem 1.25rem;
  border-radius: var(--border-radius-big);
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .wrapper_r_content .recruit_pip {
    margin-bottom: 1rem;
  }
}
.wrapper_r_content .text_lblue {
  color: #b4d9fe;
}
.wrapper_r_content .text_lblue.text_center {
  text-align: center;
  font-size: 200%;
  font-size: 2.4vw;
  margin-top: 10rem;
  margin-bottom: 10rem;
  letter-spacing: 0.2em;
  position: relative;
  z-index: 1;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1921px) {
  .wrapper_r_content .text_lblue.text_center {
    font-size: 400%;
  }
}
@media screen and (max-width: 1280px) {
  .wrapper_r_content .text_lblue.text_center {
    font-size: 250%;
  }
}
@media screen and (max-width: 767px) {
  .wrapper_r_content .text_lblue.text_center {
    font-size: 160%;
    margin-top: 7rem;
    margin-bottom: 11rem;
    line-height: 1.9;
  }
}
.wrapper_r_content .line_down {
  width: 1px;
  height: 12rem;
  background-color: #0f4c96;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 10rem;
  content: "";
  display: block;
}
.wrapper_r_content .wrapper_item {
  margin-left: auto;
  margin-right: auto;
  width: 1200px;
  max-width: 90%;
  margin-bottom: 12rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .wrapper_r_content .wrapper_item {
    margin-bottom: 4rem;
  }
}
.wrapper_r_content .wrapper_item.flex {
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .wrapper_r_content .wrapper_item.flex {
    flex-wrap: wrap;
  }
}
.wrapper_r_content .wrapper_item.recruit_candidate {
  z-index: 2;
  gap: 5%;
}
.wrapper_r_content .wrapper_item.recruit_candidate .wrapper_text {
  width: 50%;
  max-width: 520px;
}
@media screen and (max-width: 767px) {
  .wrapper_r_content .wrapper_item.recruit_candidate .wrapper_text {
    width: 100%;
    max-width: unset;
  }
}
.wrapper_r_content .wrapper_item.recruit_candidate .wrapper_text .btn_wrap {
  width: 75%;
}
.wrapper_r_content .wrapper_item.recruit_candidate .wrapper_img {
  width: 50%;
}
@media screen and (max-width: 1180px) {
  .wrapper_r_content .wrapper_item.recruit_candidate .wrapper_img {
    width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .wrapper_r_content .wrapper_item.recruit_candidate .wrapper_img {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
    order: -1;
  }
  .wrapper_r_content .wrapper_item.recruit_candidate .wrapper_img img {
    max-width: 100%;
  }
}
.wrapper_r_content .wrapper_item.recruit_candidate .wrapper_img img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .wrapper_r_content .wrapper_item.recruit_candidate .recruit_pip {
    position: absolute;
    top: -4.5rem;
  }
}
.wrapper_r_content .wrapper_item.recruit_principles {
  padding: 8rem 0 0;
  background-color: white;
  gap: 5rem;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .wrapper_r_content .wrapper_item.recruit_principles {
    gap: 5%;
    max-width: 100%;
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
    overflow: hidden;
  }
}
.wrapper_r_content .wrapper_item.recruit_principles:before {
  content: "5";
  font-family: "Outfit", "Noto Sans Jp", sans-serif;
  color: #b4d9fe40;
  opacity: 1;
  position: absolute;
  font-size: 7000%;
  z-index: 0;
  top: 45%;
  left: 5%;
  transform: translateY(-50%);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .wrapper_r_content .wrapper_item.recruit_principles:before {
    font-size: 4750%;
    top: -5.5rem;
    left: unset;
    right: -11.25%;
    transform: none;
  }
}
.wrapper_r_content .wrapper_item.recruit_principles > .wrapper_text {
  position: relative;
  z-index: 1;
  max-width: 27.5%;
  min-width: 27.5%;
}
@media screen and (max-width: 767px) {
  .wrapper_r_content .wrapper_item.recruit_principles > .wrapper_text {
    max-width: unset;
    min-width: unset;
    width: 100%;
  }
}
.wrapper_r_content .wrapper_item.recruit_principles > .wrapper_img {
  position: relative;
  z-index: 1;
}
.wrapper_r_content .wrapper_item .text_blue {
  color: #0f4c96;
}
.wrapper_r_content .blog_list > ul > li {
  border-top: none;
}
.wrapper_r_content .activ_title_wrap {
  position: relative;
  padding-bottom: 2rem;
}
.wrapper_r_content .blog_list {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .wrapper_r_content .blog_list {
    max-width: 80%;
  }
}

.wrapper_list_staffichiran {
  width: 1200px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin-bottom: 15rem;
}
.wrapper_list_staffichiran .list_staffichiran {
  grid-template-columns: repeat(4, 1fr);
  row-gap: 2rem;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
@media screen and (max-width: 767px) {
  .wrapper_list_staffichiran .list_staffichiran {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }
}
.wrapper_list_staffichiran .item_staffichiran .imgwrapper {
  --cardheight: 350px;
  height: var(--cardheight);
}
@media screen and (max-width: 767px) {
  .wrapper_list_staffichiran .item_staffichiran .imgwrapper {
    --cardheight: 250px;
  }
}
.wrapper_list_staffichiran .item_staffichiran .imgwrapper .itemfront {
  height: var(--cardheight);
  box-sizing: border-box;
  padding: 0;
}
.wrapper_list_staffichiran .item_staffichiran .imgwrapper .itemfront img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-fit: cover;
     object-fit: cover;
}
.wrapper_list_staffichiran .item_staffichiran .imgwrapper .itemback {
  height: var(--cardheight);
}
.wrapper_list_staffichiran .item_staffichiran .imgwrapper .itemback img {
  top: 0rem;
}
.list_principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-between;
  gap: 1rem;
  counter-reset: principles;
}
@media screen and (max-width: 767px) {
  .list_principles {
    gap: 0.5rem;
    grid-template-columns: 1fr;
  }
}
.list_principles .item_principles {
  position: relative;
  counter-increment: principles;
  padding: 1rem;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  border-radius: var(--border-radius-big);
  box-shadow: 0 0 5px 1px #0f4c9620;
  overflow: hidden;
}
.list_principles .item_principles:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 50px 50px 0 0;
  border-color: #0f4c96 transparent transparent transparent;
  content: "";
}
.list_principles .item_principles:after {
  content: counter(principles);
  color: #fff;
  position: absolute;
  top: 0.33rem;
  left: 1rem;
  font-size: 80%;
  font-family: "Outfit", "Noto Sans Jp", sans-serif;
}
.list_principles .item_principles .wrapper_img {
  width: 35%;
}
@media screen and (max-width: 767px) {
  .list_principles .item_principles .wrapper_img {
    margin-left: auto;
    margin-right: auto;
  }
  .list_principles .item_principles .wrapper_img img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
.list_principles .item_principles .wrapper_text {
  width: 65%;
}
@media screen and (max-width: 767px) {
  .list_principles .item_principles .wrapper_text {
    line-height: 1.7;
  }
}
.list_principles .item_principles .wrapper_text span {
  color: #0f4c96;
  font-weight: 700;
  font-size: 120%;
  line-height: 1.9;
  text-shadow: none;
}
@media screen and (max-width: 767px) {
  .list_principles .item_principles .wrapper_text span {
    font-size: 110%;
  }
}

.r_message {
  background: #0f4c96;
  background: rgb(15, 76, 150);
  background: linear-gradient(90deg, rgb(15, 76, 150) 0%, rgb(0, 80, 177) 35%, rgb(5, 85, 187) 100%);
  width: 100%;
  position: relative;
  z-index: 10;
  margin-top: calc(var(--shift-up) / 5);
  transition: all 1.5s ease-out;
  opacity: 1 !important;
  top: 0;
  box-shadow: 0 0 10px 1px #0f4c9666;
  transform: translate3d(0, calc(var(--shift-up) / 4), 0);
}
.r_message.active {
  transform: translate3d(0, 0, 0);
}
@media screen and (max-width: 767px) {
  .r_message.active {
    margin-bottom: calc(var(--shift-up) / 4 * -1);
    margin-bottom: 0;
  }
}
.r_message:before {
  position: absolute;
  content: "";
  top: 0;
  width: 100%;
  height: calc(var(--shift-up) / 5);
  background: linear-gradient(0deg, rgba(15, 76, 150, 0) 0%, rgb(15, 76, 150) 100%);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 11;
}
.r_message:after {
  position: absolute;
  content: "";
  bottom: 0;
  width: 100%;
  height: calc(var(--shift-up) / 5);
  background: linear-gradient(180deg, rgba(15, 76, 150, 0) 0%, rgb(15, 76, 150) 100%);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 11;
}
.r_message .inner {
  margin: 0 auto;
  padding: 0;
  position: relative;
  height: var(--shift-up);
  padding-top: 10rem;
  overflow-y: auto;
  overflow-x: hidden;
  perspective: 111px;
  -ms-overflow-style: none;
  /* Internet Explorer 10+ */
  scrollbar-width: none;
  /* Firefox */
  scroll-behavior: smooth;
}
.r_message .inner::-webkit-scrollbar {
  display: none;
  /* Safari and Chrome */
}
@media screen and (max-width: 767px) {
  .r_message .inner {
    height: auto;
    perspective: none;
    display: grid;
  }
}
.r_message .recruit_pip {
  background-color: rgba(255, 255, 255, 0.15);
  margin-bottom: 4rem;
  position: relative;
  z-index: 12;
  margin-left: 17.5%;
  margin-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .r_message .recruit_pip {
    margin-left: 5%;
    margin-bottom: 2rem;
    margin-top: 10rem;
  }
}
.r_message h2 {
  line-height: 1.3;
  margin: 0;
  padding: 0;
  border-bottom: none;
  will-change: opacity;
  transition: opacity 0.4s ease-in-out;
  transform-style: preserve-3d;
  transform: translateZ(-2500px) translateY(-6000px) scale(2750%);
  font-smooth: none;
  margin-left: -220%;
  box-sizing: border-box;
  position: relative;
  perspective: 1px;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1600px) {
  .r_message h2 {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .r_message h2 {
    transform: translateZ(-2500px) translateY(-6000px) scale(2050%);
    transform: translateZ(0) translateY(0) scale(1);
    order: -1;
    margin-left: 5%;
    width: 90%;
    margin-top: 6rem;
  }
}
.r_message h2 .fude {
  font-size: 215%;
  text-indent: -10px;
  font-family: "Noto Sans Jp", noto-sans, sans-serif;
}
@media screen and (max-width: 925px) {
  .r_message h2 .fude {
    font-size: 175%;
  }
}
@media screen and (max-width: 767px) {
  .r_message h2 .fude {
    font-size: 100%;
    text-indent: 0;
  }
}
.r_message h2 span {
  display: inline;
}
.r_message h2 span.big {
  font-size: 200%;
}
.r_message h2 div {
  color: #fff;
}
.r_message .eng {
  letter-spacing: 0.4em;
  font-size: 33%;
}
.r_message .recruitmsg_eng {
  margin-bottom: 2.5rem;
}
.r_message .scroll-btn {
  position: absolute;
  transform-style: preserve-3d;
  left: 50%;
  top: 66%;
  transform: translateZ(0px) translateX(-50%);
  font-size: 90%;
  display: block;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem;
  box-sizing: border-box;
  z-index: 12;
}
@media screen and (max-width: 925px) {
  .r_message .scroll-btn {
    font-size: 80%;
  }
}
@media screen and (max-width: 767px) {
  .r_message .scroll-btn {
    display: none;
  }
}
.r_message .scroll-btn:hover {
  opacity: 0.3;
}
.r_message .scroll-btn .pulse-btn {
  left: -22.5%;
  width: 12.5px;
  height: 12.5px;
  top: 50%;
  transform: translateY(-50%);
}
.r_message .line_down {
  background-color: #fff;
  margin-top: 10rem;
  margin-bottom: 10rem;
  height: 10rem;
  opacity: 0.5;
}
.r_message .p_wrapper {
  width: 100%;
  margin-top: calc(var(--shift-up) * 1.33);
  transform-style: preserve-3d;
  transform: translateZ(0px);
  transition: all 0.2s ease;
  scroll-behavior: smooth;
  position: relative;
  z-index: 11;
}
@media screen and (max-width: 767px) {
  .r_message .p_wrapper {
    margin-top: 2rem;
  }
}
.r_message p {
  color: #fff;
  line-height: 3;
  font-size: 110%;
  letter-spacing: 0.33em;
  max-width: 1200px;
  margin-left: 17.5%;
  scroll-behavior: smooth;
  padding-bottom: calc(var(--shift-up) / 2.5);
}
@media screen and (max-width: 925px) {
  .r_message p {
    margin-left: 5%;
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .r_message p {
    padding-bottom: 4rem;
  }
}
.r_message .break {
  margin-right: 0;
  margin-left: 22.5%;
  margin-top: 0;
  font-size: 160%;
  color: #fff;
  line-height: 2.2;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .r_message .break {
    margin-left: auto;
    margin-right: auto;
    font-size: 120%;
  }
}
.r_message .r_message_p.active + .r_message_title {
  opacity: 0.1;
  filter: blur(3px);
}
@media screen and (max-width: 767px) {
  .r_message .r_message_p.active + .r_message_title {
    opacity: 1;
    filter: none;
  }
}
.r_message .r_message_endcap {
  display: block;
  height: 1px;
  width: 100%;
  content: "";
}
.r_message .btn_wrap {
  max-width: 350px;
  margin-left: 22.5%;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .r_message .btn_wrap {
    margin-left: 5%;
    width: 100%;
  }
}
.r_message .btn_wrap a {
  background: white;
  color: #0f4c96;
}
@media screen and (max-width: 767px) {
  .r_message .btn_wrap a {
    font-size: 120%;
  }
}
.r_message .pwj_message_link {
  display: block;
  padding-top: calc(var(--shift-up) / 3);
}
.r_message .rel {
  position: relative;
  padding-bottom: 5rem;
  margin-bottom: calc(var(--shift-up) / 3);
}
.r_message .pulse-btn {
  position: absolute;
  left: 15%;
  top: 30%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 20px #fff;
  z-index: 1;
}
@media screen and (max-width: 1180px) {
  .r_message .pulse-btn {
    width: 15px;
    height: 15px;
    left: 38px;
  }
}
@media screen and (max-width: 1023px) {
  .r_message .pulse-btn {
    left: -50px;
  }
}
@media screen and (max-width: 767px) {
  .r_message .pulse-btn {
    width: 13px;
    height: 13px;
    left: 50%;
    transform: translateX(-50%);
    top: -3rem;
  }
}
.r_message .pulse-btn::after, .r_message .pulse-btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  border: 1px solid #1da1f2;
  border: 1px solid #fff;
  border-radius: 50%;
  box-sizing: border-box;
  pointer-events: none;
  animation: pulsate 2s linear infinite;
}
.r_message .pulse-btn::after {
  animation-delay: 1s;
}
@keyframes pulsate {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

.recruit_img_slide_wrap {
  overflow: hidden;
  position: relative;
  z-index: 11;
}

.recruit_img_slide {
  display: grid;
  gap: var(--recruit-slide-gap);
}
.recruit_img_slide .flex {
  align-items: flex-start;
  gap: var(--recruit-slide-gap);
}
.recruit_img_slide .flex:nth-child(2) {
  scale: 1, -1;
}
@media screen and (max-width: 1280px) {
  .recruit_img_slide .flex {
    height: 300px;
  }
  .recruit_img_slide .flex img {
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .recruit_img_slide .flex {
    height: 240px;
  }
}
.recruit_img_slide img {
  border-radius: var(--border-radius-big);
}

.hamburger-sub-menu {
  display: none;
}

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

.thankyou_wrap {
  background: white;
  padding: 6rem 5%;
  border-radius: var(--border-radius-big);
}
@media screen and (max-width: 767px) {
  .thankyou_wrap {
    padding: 15% 10%;
  }
}
.thankyou_wrap p {
  font-size: 125%;
  text-align: center;
}
.thankyou_wrap .maintext {
  text-align: center;
  line-height: 2.75;
  padding-bottom: 5rem;
  border-bottom: 1px solid rgba(15, 76, 150, 0.3);
  margin-bottom: 5rem;
}
@media screen and (max-width: 1200px) {
  .thankyou_wrap .maintext {
    line-height: 1.4;
  }
}
.thankyou_wrap .maintext h3 {
  color: #0f4c96;
  font-weight: 700;
  font-size: 225%;
}
@media screen and (max-width: 1200px) {
  .thankyou_wrap .maintext h3 {
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .thankyou_wrap .maintext h3 {
    font-size: 145%;
  }
}
.thankyou_wrap .logo_wrap {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .thankyou_wrap .logo_wrap {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 2rem;
  }
}
.thankyou_wrap .logo_wrap .item {
  text-align: center;
  border-radius: var(--border-radius-big);
  background: white;
  padding: 10% 5%;
  box-shadow: 0 0 5px 1px rgba(15, 76, 150, 0.1);
}
.thankyou_wrap .logo_wrap .logo {
  display: block;
  width: 100%;
}
.thankyou_wrap .logo_wrap .logo img {
  height: 70px;
  width: 100%;
  max-width: 66%;
  -o-object-fit: contain;
     object-fit: contain;
}
.thankyou_wrap .logo_wrap strong {
  font-size: 125%;
  display: block;
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.4;
  font-weight: 700;
}
.thankyou_wrap .logo_wrap .contact_wrap {
  width: 75%;
  margin-left: auto;
  margin-right: auto;
  gap: 5%;
}

@keyframes fixedVanish {
  0% {
    display: block;
    opacity: 1;
  }
  99% {
    opacity: 0;
    display: block;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
@keyframes fixedAppear {
  0% {
    opacity: 0;
    display: none;
  }
  1% {
    opacity: 0;
    display: block;
  }
  100% {
    opacity: 1;
    display: block;
  }
}
.activ_list_fixed.off, .contact_fixed.off, .sidebar.off {
  animation: fixedVanish 0.5s ease 0s 1 forwards;
}
.activ_list_fixed.active, .contact_fixed.active, .sidebar.active {
  animation: fixedAppear 0.25s ease 0s 1 forwards;
}

.modaal-container {
  background: none;
}

.modaal-content-container {
  padding: 0;
}

.modaal-content-container iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

/* .to_modal_btn {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  scale: 1;
  opacity: 1;
  transition: scale 250ms ease;
} */
/* @media screen and (max-width: 1180px) {
  .to_modal_btn {
    top: -4rem;
  }
} */
@media screen and (max-width: 767px)  {
  .to_modal_btn {
    position: relative;
    transform: none;
    top: unset;
    right: unset;
  }
}
@media screen and (max-width: 820px) {
  .to_modal_btn {
    position: relative;
    transform: none;
    top: unset;
    right: unset;
  }
}

.to_modal_btn:hover, .to_modal_btn:focus {
  scale: 1.05;
}
.to_modal_btn:hover img, .to_modal_btn:focus img {
  opacity: 0.7 !important;
}
.to_modal_btn:hover svg rect, .to_modal_btn:focus svg rect {
  fill: white !important;
}
.to_modal_btn img {
  border-radius: 2rem;
  width: 600px;
  width: 31.25vw;
  max-width: unset;
  box-shadow: 0 0 3px 1px black;
  box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.33);
  animation-name: transformPerspective;
  animation-delay: 150ms;
  animation-timing-function: ease;
  animation-duration: 1000ms;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  transition: opacity 250ms ease;
  will-change: opacity;
}
@media screen and (max-width: 767px) {
  .to_modal_btn img {
    width: 100%;
    animation-name: none;
  }
}
.to_modal_btn svg {
  position: absolute;
  bottom: -30px;
  right: 0;
  width: 200px;
  animation-name: playButtonGrow;
  animation-timing-function: ease;
  animation-duration: 2250ms;
  animation-iteration-count: infinite;
}
@media screen and (max-width: 1180px) {
  .to_modal_btn svg {
    width: 150px;
  }
}
.to_modal_btn svg rect {
  transition: fill 250ms ease;
}

.contents_wrap .notfound_title_wrap {
  margin-bottom: 5rem;
}
@media screen and (max-width: 1180px) {
  .contents_wrap .notfound_title_wrap {
    margin-bottom: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .contents_wrap .notfound_title_wrap {
    margin-bottom: 50px;
  }
}
.contents_wrap .notfound_title_wrap .to_modal_btn {
  bottom: -5rem;
  top: unset;
  transform: none;
}
@media screen and (max-width: 1180px) {
  .contents_wrap .notfound_title_wrap .to_modal_btn {
    bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .contents_wrap .notfound_title_wrap .to_modal_btn {
    height: 100%;
    display: block;
    margin-top: 20px;
  }
}

@keyframes transformPerspective {
  0% {
    transform: perspective(55em) rotate3d(0, 1, 0, 0);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: perspective(55em) rotate3d(0, 1, 0, -25deg);
  }
}
@keyframes playButtonGrow {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.025);
  }
  55% {
    transform: scale(1.025);
  }
  100% {
    transform: scale(1);
  }
}
.recruit_iframe_yt {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  max-width: 800px;
  height: auto;
  aspect-ratio: 16/9;
  display: block;
  margin-bottom: 1rem;
}
.btn_wrap {
  margin-bottom: 2rem;
}
.btn_wrap .link_to_mirai {
  width: 90%;
  max-width: 500px;
  background-color: #fff;
  color: #0758b9;
  margin-left: auto;
  margin-right: auto;
  font-size: 120%;
}
.btn_wrap .link_to_mirai:after {
  background-color: #0758b9;
  background-image: url(../images/index/btn_arr_w2.svg);
}
.btn_wrap .link_to_mirai:hover {
  color: #fff;
  background-color: #0758b9;
}
.btn_wrap .link_to_mirai:hover:after {
  background-image: url(../images/index/btn_arr.svg);
}
@media screen and (max-width: 767px) {
  .btn_wrap .link_to_mirai {
    font-size: 110%;
    padding: 13px 45px 13px 16px;
  }
}

.notfound-lead .to_modal_btn {
  position: relative;
  transform: none;
  top: unset;
  bottom: unset;
  left: unset;
  right: unset;
  display: block;
  margin-top: 2rem;
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
  width: -moz-fit-content;
  width: fit-content;
}
.notfound-lead .to_modal_btn img {
  min-width: 450px;
  max-width: 900px;
  animation: none;
}
@media screen and (max-width: 767px) {
  .notfound-lead .to_modal_btn img {
    min-width: unset;
  }
}

.notfound_contents_wrap .centerer {
  margin-top: 0rem;
}
.notfound_contents_wrap .page_info_wrap.text-center {
  margin-bottom: 1rem;
}

.btn_wrap.mw-400 {
  max-width: 400px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

/*
 * WordPressのキャプション付き画像が巨大化する問題の修正
*/

/* キャプション付きの画像ブロック(<figure>)の基本設定 */
.wp-block-image figure {
  max-width: 100%;    /* まずは親要素をはみ出さないようにする */
  width: auto;        /* 親要素いっぱいに広がる指定を打ち消す */
  display: table;     /* 中の画像の幅にコンテナをフィットさせるための指定 */
}

/* 中央寄せの画像ブロックの場合、左右マージンを自動にして中央に配置 */
.wp-block-image.aligncenter figure,
figure.aligncenter {
    margin-left: auto;
    margin-right: auto;
}

/* 左寄せ */
.wp-block-image.alignleft figure,
figure.alignleft {
    float: left;
    margin-right: 1.5em;
}

/* 右寄せ */
.wp-block-image.alignright figure,
figure.alignright {
    float: right;
    margin-left: 1.5em;
}/*# sourceMappingURL=style.css.map */

.wrapper_bannershowcase .title_wrapper div {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}
.wrapper_list_banner {
  width: 1100px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .wrapper_list_banner {
    max-width: 100%;
  }
}
.appear {
  animation-name: appear;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-fill-mode: both;
  animation-delay: 200ms;
}
@media screen and (max-width: 768px) {
  .wrapper_list_banner {
    max-width: 100%;
  }
}
.list_banner {
  border-radius: var(--rounded-xl);
  background: #fff;
  width: 100%;
  padding:0 4rem;
  display: grid;
  -moz-column-gap: 1.4rem;
  column-gap: 1.4rem;
  row-gap: 0.4rem;
  grid-template-columns: repeat(8, 1fr);
}
@media screen and (max-width: 768px) {
  .list_banner {
    padding: 12.5%;
    grid-template-columns: repeat(3, 1fr);
  }
}
.list_banner li {
  transition: all 1s ease;
  will-change: opacity;
  display: flex;
  justify-content: center;
  align-items: center;
}
.list_banner img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}