@charset "UTF-8";
/*//////////////////////////////////////////////////////////

Copyright (C) apricot-design All Rights Reserved.
------------------------------------------------------------
CSS information
 file name  :  reset.css
 style info :  リセットファイル
 admin info :  apricot-design

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

audio[controls], canvas, video {
  display: inline-block;
  *display: inline;
  zoom: 1;
}

html {
  overflow-y: scroll;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body, div, dl, dt, dd, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, ul {
  margin: 0;
  padding: 0;
}

body, button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

blockquote {
  margin: 1em 40px;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

pre, code, kbd, samp {
  font-family: monospace, monospace;
  _font-family: "courier new", monospace;
  font-size: 1em;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: none;
}
q:before, q:after {
  content: "";
  content: none;
}

small {
  font-size: inherit;
}

sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

ul, ol {
  margin: 0;
  padding: 0;
}

dd {
  margin: 0px;
}

nav ul, nav ol {
  list-style: none;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

svg:not(:root) {
  overflow: hidden;
}

figure, form {
  margin: 0;
}

fieldset {
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  *margin-left: -7px;
}

button, input, select, textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}

button, input {
  line-height: normal;
  *overflow: visible;
}

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

input[type=button], input[type=reset], input[type=submit] {
  cursor: pointer;
  -webkit-appearance: button;
}
input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
}
input[type=search] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

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

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-size: 100%;
}

img, abbr, acronym, fieldset {
  border: 0;
}

li {
  list-style: none;
}

/*画像を縦に並べた時に余白が出ないように*/
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

/*box-sizingを全ブラウザに対応*/
* {
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
*:before, *:after {
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

.ie6_error, .no_script {
  background: #F66;
  padding: 100px;
  text-align: center;
  font-size: 150%;
  color: #333;
}

.mincho {
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

.gothic {
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

.en {
  font-family: "Open Sans", sans-serif;
}

:root {
  --extend: min(calc(( 50vw - 50% ) * -1), 0px);
  --sideW: min(4.66vw, 70px);
  --headerHeight: 120px;
  --contentsWideXS: 1000px;
  --contentsWideS: 1080px;
  --contentsWideM: 1220px;
  --contentsWideL: 1360px;
}

@media screen and (max-width: 1180px) {
  :root {
    --headerHeight: 65px;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --sideW: 6.66vw;
    --sectionWrap: 3.75em;
  }
}
html {
  width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--headerHeight);
}

body {
  font: 400 16px/1.8 "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0.03em;
  color: #1D2129;
  text-align: left;
  counter-reset: number 0;
}

.l_container_wrap {
  position: relative;
}

.l_container {
  position: relative;
}

.section_wrap {
  padding: 5em 0 7.5em;
}
@media screen and (max-width: 767px) {
  .section_wrap {
    padding: 3.75em 0 5em;
  }
}

.inner, .inner_l, .inner_m, .inner_s, .inner_xs {
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--sideW);
}

.inner_xs {
  max-width: calc(var(--contentsWideXS) + var(--sideW) * 2);
}

.inner_s {
  max-width: calc(var(--contentsWideS) + var(--sideW) * 2);
}

.inner_m {
  max-width: calc(var(--contentsWideM) + var(--sideW) * 2);
}

.inner_l {
  max-width: calc(var(--contentsWideL) + var(--sideW) * 2);
}

.add_ttl {
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  border-bottom: 2px solid #E5E5E5;
  padding-bottom: 14px;
  position: relative;
  margin: 2em 0 1.25em !important;
}
@media screen and (max-width: 767px) {
  .add_ttl {
    font-size: 1.25rem;
  }
}
.add_ttl:after {
  content: "";
  display: block;
  width: 40%;
  height: 2px;
  background-color: #4169E1;
  position: absolute;
  bottom: -2px;
  left: 0;
}

.add_ttl_02 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin: 2em 0 1em !important;
}
@media screen and (max-width: 767px) {
  .add_ttl_02 {
    font-size: 1.125rem;
  }
}

a.add_link {
  text-decoration: underline;
}
a.add_link:hover {
  opacity: 0.7;
}

.login h1 a {
  width: 100px !important;
  height: 100px !important;
  background: url(../images/login_logo.png) no-repeat center/contain !important;
}

@media screen and (max-width: 767px) {
  .post__content {
    font-size: 0.9375rem;
  }
}
.post__content * {
  margin: 0 0 1.8em;
}
.post__content *:last-child {
  margin-bottom: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
a:link, a:active, a:visited {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  color: inherit;
  font-weight: inherit;
  line-height: 1.5;
}

label {
  cursor: pointer;
}

button {
  padding: 0;
  border: none;
  color: inherit;
}

picture {
  display: contents;
}
picture img {
  display: block;
}

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

.opacity, .policy_nav ul li a, .btn_financial, .card_group__text p a, .card_top_news, .single_pagination li.next a, .single_pagination li.archive a, .single_pagination li.prev a, .btn_cmn_02 {
  transition: 0.5s;
}
@media (hover: hover) {
  .opacity:hover, .policy_nav ul li a:hover, .btn_financial:hover, .card_group__text p a:hover, .card_top_news:hover, .single_pagination li.next a:hover, .single_pagination li.archive a:hover, .single_pagination li.prev a:hover, .btn_cmn_02:hover {
    opacity: 0.5;
  }
}

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

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

.img_only {
  display: block;
}
.img_only img {
  display: block;
  width: 100%;
}

.text_link {
  text-decoration: underline !important;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  width: 100%;
  padding: 0.5em;
  border-radius: 0;
  border: 1px solid rgba(29, 33, 41, 0.5);
  background: #fff;
  color: inherit;
  font-family: inherit;
  line-height: inherit;
  font-size: 16px !important;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  padding: 0.5em 28px 0.5em 0.5em;
  border-radius: 0;
  border: 1px solid rgba(29, 33, 41, 0.5);
  background: url(../images/icon_tri_select.svg) no-repeat center right 10px/10px 8px #fff;
  color: inherit;
  font-family: inherit;
  line-height: inherit;
  font-size: 16px !important;
}

textarea {
  height: 15em;
}

input[type=checkbox] {
  accent-color: #4169E1;
  inline-size: 1.2em;
  block-size: 1.2em;
}

input[type=radio] {
  accent-color: #4169E1;
  inline-size: 1.2em;
  block-size: 1.2em;
}

.dlist_form {
  padding-bottom: 3.75em;
  margin-bottom: 3.75em;
  border-bottom: 1px dashed #1D2129;
}
.dlist_form .group {
  display: flex;
  align-items: baseline;
  gap: 1em;
}
@media screen and (max-width: 767px) {
  .dlist_form .group {
    flex-direction: column;
  }
}
.dlist_form .group:not(:last-of-type) {
  margin-bottom: 2.5em;
}
.dlist_form .group dt {
  width: 244px;
  flex-shrink: 0;
  font-weight: 700;
}
.dlist_form .group dt.require:after {
  content: "必須";
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8375em;
  font-weight: 700;
  color: #fff;
  background-color: #4169E1;
  width: 4.7em;
  height: 2.2em;
  margin-left: 1em;
}
.dlist_form .group dd {
  flex-grow: 1;
}
.dlist_form .group dd .list_kome {
  font-size: 0.875em;
  padding-top: 1em;
}

.container_checkbox {
  background-color: #F8F8F8;
  height: 100px;
  display: grid;
  place-content: center;
  font-size: 1rem;
  font-weight: 700;
}
.container_checkbox input[type=checkbox] {
  width: 30px;
  background-image: url(../images/icon_checkbox_02.svg);
}
.container_checkbox input[type=checkbox]:checked {
  background-image: url(../images/icon_checkbox_checked_02.svg);
}

.wpcf7-response-output,
.wpcf7-spinner {
  display: none !important;
}

.grecaptcha-badge {
  visibility: hidden;
}

@keyframes fade_in {
  80% {
    opacity: 1;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
[class^=fade_anim] {
  opacity: 0;
}
[class^=fade_anim].js-active {
  animation: fade_in 1s ease-out forwards;
}

.fade_anim.js-active {
  animation: fade_in 1s ease-in forwards;
}

.fade_anim_bottom {
  transform: translate(0, 60px);
}

.fade_anim_left {
  transform: translate(-40px, 0);
}

.fade_anim_right {
  transform: translate(60px, 0);
}

.ttl_cmn_01 {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .ttl_cmn_01 {
    font-size: 2.25rem;
  }
}
.ttl_cmn_01:before {
  content: attr(data-en);
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

.ttl_cmn_02 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  border-left: 8px solid #4169E1;
  padding-left: 24px;
}
@media screen and (max-width: 767px) {
  .ttl_cmn_02 {
    font-size: 1.4rem;
    border-width: 6px;
    padding-left: 18px;
  }
}

.ttl_cmn_03, .cmn_grid_01__ttl {
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  border-bottom: 2px solid #E5E5E5;
  padding-bottom: 14px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .ttl_cmn_03, .cmn_grid_01__ttl {
    font-size: 1.2rem;
  }
}
.ttl_cmn_03:after, .cmn_grid_01__ttl:after {
  content: "";
  display: block;
  width: 40%;
  height: 2px;
  background-color: #4169E1;
  position: absolute;
  bottom: -2px;
  left: 0;
}

.btn_cmn_01 {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #fff;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  gap: 23px;
  font-weight: 600;
  padding-bottom: 4px;
}
.btn_cmn_01:after {
  flex-shrink: 0;
  content: "";
  display: block;
  width: 12px;
  aspect-ratio: 1/1;
  background: url(../images/ico_arrow_right_01.svg) no-repeat center/contain;
  transition: 0.3s;
}
.btn_cmn_01:hover:after {
  transform: translateX(50%);
}

.btn_cmn_02 {
  display: block;
  padding: 1em;
  background-color: #4169E1;
  color: #fff;
  max-width: 400px;
  margin: 2.5rem auto 0;
  text-align: center;
  border-radius: 5px;
}

.list_kome > li {
  padding-left: 1em;
  text-indent: -1em;
}
.list_kome > li:before {
  content: "※";
}

.list_dot > li {
  padding-left: 1em;
  text-indent: -1em;
}
.list_dot > li:before {
  content: "・";
}

.list_ast > li {
  padding-left: 1em;
  text-indent: -1em;
}
.list_ast > li:before {
  content: "＊";
}

.list_maru > li {
  padding-left: 1em;
  text-indent: -1em;
}
.list_maru > li:before {
  content: "●";
}

.list_number {
  counter-reset: number 0;
}
.list_number > li {
  counter-increment: number 1;
}
.list_number > li:before {
  content: counter(number);
}

.navigation.pagination {
  margin-top: 72px;
}
@media screen and (max-width: 767px) {
  .navigation.pagination {
    margin-top: 58px;
  }
}
.navigation.pagination .nav-links {
  text-align: center;
}
.navigation.pagination .nav-links .page-numbers {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  aspect-ratio: 1/1;
  border-radius: 2px;
  color: #BCBCBC;
  border: 1px solid #BCBCBC;
  margin-left: 12px;
  font-family: "Open Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
}
.navigation.pagination .nav-links .page-numbers:nth-child(1) {
  margin-left: 0;
}
.navigation.pagination .nav-links .page-numbers:hover, .navigation.pagination .nav-links .page-numbers.current {
  border-color: #1D2129;
  background-color: #1D2129;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .navigation.pagination .nav-links .page-numbers {
    width: 32px;
    font-size: 0.9375rem;
    margin-left: 8px;
  }
}

.single_pagination {
  display: flex;
  gap: 5%;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .single_pagination {
    flex-direction: column;
    font-size: 0.9375rem;
    gap: 14px;
  }
}
.single_pagination li.prev {
  width: 100%;
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .single_pagination li.prev {
    order: 1;
    width: 80%;
  }
}
.single_pagination li.prev a {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-self: center;
  gap: 1em;
}
@media screen and (max-width: 767px) {
  .single_pagination li.prev a {
    gap: 0.5em;
  }
}
.single_pagination li.prev a span {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.single_pagination li.prev a:before {
  transform: rotate(180deg);
  flex-shrink: 0;
  content: "";
  display: block;
  width: 48px;
  aspect-ratio: 48/32;
  border-radius: 50%;
  background: #1D2129 url(../images/ico_arrow_right_01.svg) no-repeat center/12px;
}
@media screen and (max-width: 767px) {
  .single_pagination li.prev a:before {
    width: 32px;
    background-size: 8px;
  }
}
.single_pagination li.archive {
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .single_pagination li.archive {
    order: 3;
    margin: 14px auto 0;
  }
}
.single_pagination li.archive a:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #1D2129;
}
.single_pagination li.next {
  width: 100%;
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .single_pagination li.next {
    order: 2;
    width: 80%;
    margin-left: auto;
  }
}
.single_pagination li.next a {
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-self: center;
  gap: 1em;
}
@media screen and (max-width: 767px) {
  .single_pagination li.next a {
    gap: 0.5em;
  }
}
.single_pagination li.next a span {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.single_pagination li.next a:after {
  flex-shrink: 0;
  content: "";
  display: block;
  width: 48px;
  aspect-ratio: 48/32;
  border-radius: 50%;
  background: #1D2129 url(../images/ico_arrow_right_01.svg) no-repeat center/12px;
}
@media screen and (max-width: 767px) {
  .single_pagination li.next a:after {
    width: 32px;
    background-size: 8px;
  }
}

.loading {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 1;
  visibility: visible;
  transition: 0.5s;
}
.loading.end {
  opacity: 0;
  visibility: hidden;
}

.hbm_btn {
  padding: 0;
  border: none;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: var(--headerHeight);
  aspect-ratio: 1/1;
  position: relative;
  -webkit-backdrop-filter: blur(20px) brightness(0.8);
          backdrop-filter: blur(20px) brightness(0.8);
}
@media screen and (max-width: 1180px) {
  .hbm_btn {
    background-color: rgba(29, 33, 41, 0.9);
  }
}
@media screen and (min-width: 1181px) {
  .hbm_btn {
    display: none !important;
  }
}
.hbm_btn.js-active {
  background-color: #1D2129;
}
.hbm_btn .box {
  display: block;
  width: 37%;
  position: relative;
}
.hbm_btn .box .bar {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 0;
  transition: 0.5s;
}

[data-hbm-bar="3"] .box {
  aspect-ratio: 3/2;
  margin: 15% 0;
}
[data-hbm-bar="3"] .bar:nth-child(1) {
  top: 0;
}
[data-hbm-bar="3"] .bar:nth-child(2) {
  top: 50%;
}
[data-hbm-bar="3"] .bar:nth-child(3) {
  top: 100%;
}
[data-hbm-bar="3"].js-active .bar:nth-child(1) {
  top: 50%;
  transform: rotate(135deg);
}
[data-hbm-bar="3"].js-active .bar:nth-child(2) {
  top: 50%;
  transform: rotateY(90deg);
}
[data-hbm-bar="3"].js-active .bar:nth-child(3) {
  top: 50%;
  transform: rotate(-135deg);
}

[data-hbm-bar="2"] .box {
  aspect-ratio: 3/1;
  margin: 15% 0;
}
[data-hbm-bar="2"] .bar:nth-child(1) {
  top: 0;
}
[data-hbm-bar="2"] .bar:nth-child(2) {
  top: 100%;
}
[data-hbm-bar="2"].js-active .bar:nth-child(1) {
  top: 50%;
  transform: rotate(160deg);
}
[data-hbm-bar="2"].js-active .bar:nth-child(2) {
  top: 50%;
  transform: rotate(-160deg);
}

.cmn_page_nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.cmn_page_nav li {
  width: calc((100% - 8px) / 3);
  overflow: hidden;
}
@media screen and (max-width: 1180px) {
  .cmn_page_nav li {
    width: calc((100% - 4px) / 2);
  }
}
@media screen and (max-width: 767px) {
  .cmn_page_nav li {
    width: 100%;
  }
}
.cmn_page_nav li a {
  display: block;
  position: relative;
  background: no-repeat center/cover;
}
.cmn_page_nav li a .text {
  height: 300px;
  padding-bottom: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 1180px) {
  .cmn_page_nav li a .text {
    height: 184px;
  }
}
.cmn_page_nav li a .text:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(3px) brightness(1.15);
          backdrop-filter: blur(3px) brightness(1.15);
}
.cmn_page_nav li a .text:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #93A8BE;
  mix-blend-mode: multiply;
}
.cmn_page_nav li a .text span {
  position: relative;
  z-index: 1;
  color: #fff;
}
.cmn_page_nav li a .text span:nth-child(1) {
  display: block;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.42;
  width: 50%;
  text-align: center;
  padding-bottom: 6px;
}
@media screen and (max-width: 1180px) {
  .cmn_page_nav li a .text span:nth-child(1) {
    font-size: 1.5rem;
  }
}
.cmn_page_nav li a .text span:nth-child(1):after {
  content: "";
  display: block;
  width: 200%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.6);
  position: absolute;
  bottom: 0;
  right: 0;
}
.cmn_page_nav li a .text span:nth-child(2) {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .cmn_page_nav li a .text span:nth-child(2) {
    font-size: 0.875rem;
  }
}
.cmn_page_nav li a .text span:nth-child(2):after {
  flex-shrink: 0;
  content: "";
  display: block;
  width: 48px;
  aspect-ratio: 48/32;
  border-radius: 50%;
  background: url(../images/ico_arrow_right_01.svg) no-repeat center/12px;
  border: 1px solid #fff;
}
.cmn_page_nav li a:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  opacity: 0;
}
.cmn_page_nav li a:hover:after {
  opacity: 0.31;
  z-index: 2;
}

.cmn_table_01 {
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .cmn_table_01 {
    font-size: 0.9375rem;
  }
}
.cmn_table_01 .group {
  display: flex;
  border-bottom: 1px solid #F5F5F5;
}
.cmn_table_01 .group:first-child {
  border-top: 1px solid #F5F5F5;
}
@media screen and (max-width: 767px) {
  .cmn_table_01 .group {
    flex-direction: column;
  }
}
.cmn_table_01 dt {
  flex-shrink: 0;
  width: 140px;
  background-color: #F5F5F5;
  font-weight: 700;
  padding: 20px 24px;
}
@media screen and (max-width: 767px) {
  .cmn_table_01 dt {
    width: 100%;
    padding: 1em;
  }
}
.cmn_table_01 dd {
  padding: 20px 48px;
}
@media screen and (max-width: 767px) {
  .cmn_table_01 dd {
    width: 100%;
    padding: 1em 1em 1.5em;
  }
}

.header {
  position: absolute;
  z-index: 3;
  width: 100%;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1180px) {
  .header {
    position: fixed;
    background-color: #fff;
  }
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1180px) {
  .header__inner {
    padding-left: var(--sideW);
  }
}
.header__logo a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #fff;
  padding: 24px 32px;
  border-radius: 0 0 40px 0;
}
@media screen and (max-width: 1180px) {
  .header__logo a {
    padding: 0;
    border-radius: none;
  }
}
.header__logo a img {
  display: block;
  width: 15vw;
  max-width: 240px;
}
@media screen and (max-width: 1180px) {
  .header__logo a img {
    width: 100%;
    max-width: 164px;
  }
}

.gnavi {
  position: fixed;
  top: 24px;
  right: var(--sideW);
}
@media screen and (max-width: 1180px) {
  .gnavi {
    top: var(--headerHeight);
    right: 0;
    width: 100%;
    height: calc(100vh - var(--headerHeight));
    background-color: rgba(29, 33, 41, 0.7);
    padding: 0 var(--sideW);
    overflow: scroll;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
  }
  .gnavi.js-active {
    opacity: 1;
    visibility: visible;
  }
}
.gnavi ul.main {
  position: relative;
  display: flex;
  gap: 2.5rem;
  padding: 1.5em 3em;
  color: #fff;
}
@media screen and (max-width: 1180px) {
  .gnavi ul.main {
    flex-direction: column;
    gap: 0;
    font-size: 1.125rem;
    padding: 0;
  }
}
.gnavi ul.main li {
  position: relative;
}
@media screen and (max-width: 1180px) {
  .gnavi ul.main li {
    border-bottom: 1px solid #fff;
  }
  .gnavi ul.main li a {
    display: block;
    padding: 20px;
  }
}
.gnavi ul.main::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  -webkit-backdrop-filter: blur(10px) brightness(0.8);
          backdrop-filter: blur(10px) brightness(0.8);
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1180px) {
  .gnavi ul.main::before {
    content: none;
  }
}
.gnavi ul.sub {
  padding: 28px 0 28px 40px;
  font-size: 0.875rem;
  color: #fff;
}
@media screen and (min-width: 1181px) {
  .gnavi ul.sub {
    display: none;
  }
}
.gnavi ul.sub > li {
  margin-bottom: 0.25em;
}

.footer {
  padding: 60px 0;
  background-color: #fff;
}
.footer .inner_m {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
}
.footer .footer_logo {
  width: 100%;
  max-width: 320px;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .footer .footer_logo {
    max-width: 240px;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 767px) {
  .footer address {
    font-size: 0.9375rem;
  }
}
.footer .copyright {
  text-align: right;
  color: #BCBCBC;
  font-family: "Open Sans", sans-serif;
  font-size: 0.8125rem;
  letter-spacing: 0.03em;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .footer .copyright {
    margin-top: 24px;
  }
}
.footer .grecaptcha_text {
  width: 100%;
  text-align: center;
  font-size: 0.875rem;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .footer .grecaptcha_text {
    margin-top: 24px;
    text-align: left;
    font-size: 0.8125rem;
  }
}

.footer_nav {
  display: flex;
  font-size: 0.875rem;
  margin-bottom: 32px;
}
@media screen and (max-width: 1180px) {
  .footer_nav {
    display: none;
  }
}
.footer_nav > li {
  padding: 0 4em;
  border-left: 1px solid #BCBCBC;
}

.footer_page_nav {
  padding: 120px 0 160px;
  background-color: #F0F8FF;
}
@media screen and (max-width: 767px) {
  .footer_page_nav {
    padding: 5rem 0;
  }
}

.bg_video {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
.bg_video video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bg_video:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(147, 168, 190, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
}

.top_hero {
  position: relative;
}
.top_hero .inner {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .top_hero .inner {
    justify-content: flex-start;
    padding-top: calc(var(--headerHeight) + 80px);
  }
}
.top_hero p {
  color: #fff;
  font-size: min(10.44vw, 80px);
  font-weight: 200;
  line-height: 1;
  border-bottom: 1px solid #fff;
  overflow: hidden;
  letter-spacing: 15px;
}
@media screen and (max-width: 767px) {
  .top_hero p {
    font-size: 43px;
    letter-spacing: 8px;
  }
}
.top_hero p:nth-child(1) {
  max-width: 660px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .top_hero p:nth-child(1) {
    margin-bottom: 26px;
    margin-right: calc(var(--sideW) * -1);
  }
}
.top_hero p:nth-child(2) {
  margin-right: calc(var(--sideW) * -1);
}
.top_hero p span {
  display: inline-block;
  transform: translateY(100%);
  transition: 0.8s;
  filter: blur(10px);
}
.top_hero.js-active span {
  transform: translateY(0) !important;
  filter: blur(0) !important;
}
.top_hero .scroll {
  font-family: "Open Sans", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
  color: #fff;
  position: absolute;
  bottom: 70px;
  right: var(--sideW);
}
@media screen and (max-width: 767px) {
  .top_hero .scroll {
    bottom: 25px;
  }
}
.top_hero .scroll span {
  display: block;
  width: 48px;
  aspect-ratio: 48/72;
  border-radius: 50%;
  border: 2px solid #fff;
  margin: 0 auto 8px;
}
.top_hero .scroll span:before, .top_hero .scroll span:after {
  content: "";
  display: block;
  width: 13px;
  height: 46px;
  background: no-repeat center top/cover;
  position: absolute;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
}
.top_hero .scroll span:before {
  background-image: url(../images/ico_arrow_bottom_01_opacity.svg);
}
.top_hero .scroll span:after {
  background-image: url(../images/ico_arrow_bottom_01_white.svg);
  animation: height 1.5s ease-out Infinite;
}

@keyframes height {
  0% {
    height: 0;
  }
  100% {
    height: 46px;
  }
}
.top_news {
  margin-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .top_news {
    margin-bottom: 5rem;
  }
}
.top_news__none {
  color: #fff;
}
.top_news .inner_m {
  display: grid;
  gap: 0 5.6%;
  grid-template-columns: max-content 1fr;
  grid-template-rows: repeat(3, max-content);
}
@media screen and (max-width: 1180px) {
  .top_news .inner_m {
    display: block;
  }
}
.top_news .ttl_cmn_01 {
  grid-column: 1/2;
  grid-row: 1/2;
}
@media screen and (max-width: 1180px) {
  .top_news .ttl_cmn_01 {
    margin-bottom: 24px;
  }
}
.top_news .btn_cmn_01 {
  grid-column: 1/2;
  grid-row: 2/3;
  margin-top: 5rem;
}
@media screen and (max-width: 1180px) {
  .top_news .btn_cmn_01 {
    margin: 1.5rem 0 0 auto;
  }
}
.top_news .list_top_news {
  grid-column: 2/3;
  grid-row: 1/4;
}

.top_nav {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .top_nav {
    margin-bottom: 0;
  }
}
.top_nav .ttl_cmn_01 {
  text-align: center;
  margin-bottom: 2rem;
}

.list_top_news > li {
  margin-bottom: 8px;
  -webkit-backdrop-filter: blur(3px) brightness(0.7);
          backdrop-filter: blur(3px) brightness(0.7);
  color: #fff;
}
.list_top_news > li:last-child {
  margin-bottom: 0;
}

.card_top_news {
  display: flex;
  align-items: center;
  padding: 28px 4%;
}
.card_top_news:after {
  margin-left: 24px;
  flex-shrink: 0;
  content: "";
  display: block;
  width: 48px;
  aspect-ratio: 48/32;
  border-radius: 50%;
  background: url(../images/ico_arrow_right_01.svg) no-repeat center/12px;
  border: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .card_top_news {
    flex-wrap: wrap;
    padding: 24px 7.3%;
  }
  .card_top_news:after {
    display: none;
  }
  .card_top_news .cmn_news_ttl {
    margin-top: 8px;
  }
}

.cmn_news_date {
  flex-shrink: 0;
  width: 88px;
  font-family: "Open Sans", sans-serif;
  font-size: 0.9375rem;
  margin-right: 16px;
}

.cmn_news_category {
  flex-shrink: 0;
  margin-right: 24px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  min-width: 120px;
  padding: 5px 1em;
  border-radius: 50px;
  background-color: #4169E1;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.25;
}

.cmn_news_ttl {
  flex-grow: 1;
  font-size: 0.9375rem;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
@media screen and (max-width: 767px) {
  .cmn_news_ttl {
    -webkit-line-clamp: 2;
  }
}

.page_hero {
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: no-repeat center/cover;
  background-image: url(../images/page_hero_default.jpg);
  position: relative;
}
@media screen and (max-width: 767px) {
  .page_hero {
    height: 240px;
    padding-top: var(--headerHeight);
  }
}
.page_hero:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(3px) brightness(1.15);
          backdrop-filter: blur(3px) brightness(1.15);
  position: absolute;
  top: 0;
  left: 0;
}
.page_hero:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #93A8BE;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
}
.page_hero .ttl {
  position: relative;
  z-index: 1;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 3.5rem;
  font-weight: 200;
  letter-spacing: 0.05em;
  line-height: 1.2;
  padding: 14px 17px;
}
@media screen and (max-width: 767px) {
  .page_hero .ttl {
    font-size: 1.6rem;
  }
}
.page_hero .ttl:after {
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  right: 0;
}

.breadcrumb {
  padding-top: 16px;
  font-size: 13px;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.cmn_grid_01 {
  padding: 40px 4%;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .cmn_grid_01 {
    padding: 32px var(--sideW);
  }
}
.cmn_grid_01__ttl {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .cmn_grid_01__ttl {
    margin-bottom: 18px;
  }
}
.cmn_grid_01__text {
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .cmn_grid_01__text {
    font-size: 0.9375rem;
    line-height: 1.8;
  }
}

.page-message .section_wrap {
  position: relative;
}
.page-message .section_wrap:before {
  content: "";
  display: block;
  width: 360px;
  aspect-ratio: 360/295;
  position: absolute;
  z-index: 1;
  top: -39px;
  left: 50%;
  transform: translateX(-70%);
  background: url(../images/message_02.svg) no-repeat bottom center/cover;
  opacity: 0.9;
}

.content_message {
  display: flex;
  align-items: flex-start;
  gap: 6%;
  position: relative;
}
.content_message:before {
  content: "";
  display: block;
  width: 248px;
  aspect-ratio: 248/176;
  background: url(../images/message_03.png) no-repeat top center/cover;
  position: absolute;
  right: 0;
  bottom: -7.5rem;
  z-index: -1;
}
@media screen and (max-width: 1180px) {
  .content_message {
    flex-direction: column-reverse;
  }
}
.content_message .image {
  flex-grow: 1;
  margin: 0 0 0 var(--extend);
}
@media screen and (max-width: 1180px) {
  .content_message .image {
    margin: 30px 0 0;
  }
}
.content_message .text {
  flex-shrink: 0;
  width: 52.46%;
  padding-top: 7.6%;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1180px) {
  .content_message .text {
    width: 100%;
    padding-top: 0;
    font-size: 0.9375rem;
  }
}
.content_message .para p {
  margin-bottom: 1.6em;
}
.content_message .para p:last-child {
  margin-bottom: 0;
}
.content_message .name {
  margin-top: 40px;
  text-align: right;
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .content_message .name {
    margin-top: 30px;
    font-size: 1.125rem;
  }
}
.content_message .name span {
  font-size: 1rem;
  font-weight: 400;
  margin-right: 1em;
}
@media screen and (max-width: 767px) {
  .content_message .name span {
    font-size: 0.875rem;
  }
}

.list_philosophy > li {
  margin-bottom: 48px;
  position: relative;
  display: flex;
}
@media screen and (max-width: 1180px) {
  .list_philosophy > li {
    margin-bottom: 32px;
  }
}
.list_philosophy > li:before {
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  min-height: 180px;
  clip-path: polygon(0 0, calc(100% - 88px) 0%, 100% 100%, 0% 100%);
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(65, 105, 225) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 1180px) {
  .list_philosophy > li:before {
    content: none;
  }
}
.list_philosophy > li:last-child {
  margin-bottom: 0;
}
.list_philosophy > li .wrap {
  flex-grow: 1;
}
.list_philosophy > li .text {
  width: 47.21%;
  min-width: 540px;
  margin: 0 0 0 auto;
  padding-bottom: 24px;
  border-right: 2px solid #1D2129;
  position: relative;
}
@media screen and (max-width: 1180px) {
  .list_philosophy > li .text {
    width: 100%;
    min-width: unset;
    border-right: none;
    padding-bottom: 32px;
  }
}
.list_philosophy > li .text:after {
  content: "";
  display: block;
  width: 143%;
  height: 2px;
  background-color: #4169E1;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 1180px) {
  .list_philosophy > li .text:after {
    width: 100%;
  }
}
.list_philosophy > li .text h2 {
  font-family: "Open Sans", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .list_philosophy > li .text h2 {
    font-size: 2rem;
  }
}
.list_philosophy > li .text p, .list_philosophy > li .text ul {
  font-size: 1.125rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .list_philosophy > li .text p, .list_philosophy > li .text ul {
    font-size: 0.9375rem;
  }
}
.list_philosophy > li:nth-child(1):before {
  width: 36%;
}
@media screen and (max-width: 1180px) {
  .list_philosophy > li:nth-child(1):before {
    width: 25%;
  }
}
.list_philosophy > li:nth-child(1) .text {
  border-color: #4169E1;
}
.list_philosophy > li:nth-child(1) .text h2 {
  color: #4169E1;
}
.list_philosophy > li:nth-child(1) .text:after {
  background-color: #4169E1;
}
.list_philosophy > li:nth-child(2):before {
  width: calc(36% + 88px);
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, #6A8BEA 100%);
  transform: translateY(20px);
}
@media screen and (max-width: 1180px) {
  .list_philosophy > li:nth-child(2):before {
    width: calc(25% + 88px);
  }
}
.list_philosophy > li:nth-child(2) .text {
  border-color: #6A8BEA;
}
.list_philosophy > li:nth-child(2) .text h2 {
  color: #6A8BEA;
}
.list_philosophy > li:nth-child(2) .text:after {
  background-color: #6A8BEA;
}
.list_philosophy > li:nth-child(3):before {
  width: calc(36% + 88px + 88px);
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, #B7C6F4 100%);
  transform: translateY(40px);
}
@media screen and (max-width: 1180px) {
  .list_philosophy > li:nth-child(3):before {
    width: calc(25% + 88px + 88px);
  }
}
.list_philosophy > li:nth-child(3) .text {
  border-color: #B7C6F4;
}
.list_philosophy > li:nth-child(3) .text h2 {
  color: #B7C6F4;
}
.list_philosophy > li:nth-child(3) .text:after {
  background-color: #B7C6F4;
}

.company_sec_01 {
  margin-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .company_sec_01 {
    margin-bottom: 100px;
  }
}
.company_sec_01 h2 {
  margin-bottom: 40px;
}

.company_sec_02 {
  margin-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .company_sec_02 {
    margin-bottom: 100px;
  }
}
.company_sec_02 h2 {
  margin-bottom: 40px;
}
.company_sec_02 .map {
  display: block;
  overflow: hidden;
  height: 360px;
}
@media screen and (max-width: 767px) {
  .company_sec_02 .map {
    height: 260px;
  }
}
.company_sec_02 .map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.company_sec_03 h2 {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .company_sec_03 figure {
    display: block;
    width: 700px;
  }
}

.list_group {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
}
.list_group > li {
  width: calc((100% - 36px) / 2);
}
@media screen and (max-width: 767px) {
  .list_group > li {
    width: 100%;
  }
}

.card_group {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  background-color: #fff;
  padding: 48px 2.45% 64px;
}
@media screen and (max-width: 767px) {
  .card_group {
    padding: 40px var(--sideW);
  }
}
.card_group__logo {
  width: 100%;
  max-width: 360px;
  margin: 0 auto 16px;
}
@media screen and (max-width: 767px) {
  .card_group__logo {
    margin-bottom: 24px;
  }
}
.card_group__text {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .card_group__text {
    width: 100%;
  }
}
.card_group__text h2 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .card_group__text h2 {
    font-size: 1rem;
    margin-bottom: 12px;
  }
}
.card_group__text p {
  color: #717784;
}
@media screen and (max-width: 767px) {
  .card_group__text p {
    font-size: 0.875rem;
  }
}
.card_group__text p a {
  text-decoration: underline;
}

.history_parent > .group {
  display: flex;
  align-items: baseline;
  border-bottom: 2px solid #E5E5E5;
  padding: 40px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .history_parent > .group {
    flex-direction: column;
    padding: 30px 0;
    gap: 1em;
  }
}
.history_parent > .group:after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  background-color: #4169E1;
  position: absolute;
  bottom: -2px;
  left: 0;
}
.history_parent > .group:first-child {
  border-top: 2px solid #E5E5E5;
}
.history_parent > .group:first-child:before {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  background-color: #4169E1;
  position: absolute;
  top: -2px;
  left: 0;
}
.history_parent > .group > dt {
  flex-shrink: 0;
  width: 120px;
  color: #4169E1;
  font-family: "Open Sans", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .history_parent > .group > dt {
    width: 100%;
    font-size: 1.6rem;
  }
}
.history_parent > .group > dd {
  padding: 0 1em;
}
@media screen and (max-width: 767px) {
  .history_parent > .group > dd {
    padding: 0;
  }
}

.history_child {
  font-size: 1.125rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .history_child {
    font-size: 0.9375rem;
    line-height: 1.6;
  }
}
.history_child > .group {
  display: flex;
  align-items: baseline;
  gap: 32px;
  margin-bottom: 6px;
}
@media screen and (max-width: 767px) {
  .history_child > .group {
    gap: 24px;
    margin-bottom: 12px;
  }
}
.history_child > .group > dt {
  text-align: right;
  width: 43px;
  flex-shrink: 0;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .history_child > .group > dt {
    width: 38px;
  }
}
.btn_financial {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  border-radius: 5px;
  background-color: #4169E1;
  color: #fff;
  padding: 1.38em 2em;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .btn_financial {
    font-size: 1rem;
    padding: 1.25em 1em;
  }
}
.btn_financial:after {
  flex-shrink: 0;
  content: "";
  display: block;
  width: 28px;
  aspect-ratio: 28/40;
  background: url(../images/ico_pdf_01.svg) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .btn_financial:after {
    width: 20px;
  }
}

.page-policy .section_wrap {
  padding-bottom: 0;
}
.page-policy .bg_gray {
  padding: 5rem 0 7.5rem;
  background-color: #F5F5F5;
}
.page-policy .list_policy > li {
  margin-bottom: 24px;
}
.page-policy .list_policy > li:last-child {
  margin-bottom: 0;
}
.page-policy .list_policy + .ttl_cmn_02 {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .page-policy .list_policy + .ttl_cmn_02 {
    margin-top: 80px;
  }
}
.page-policy .ttl_cmn_02 {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .page-policy .ttl_cmn_02 {
    margin-right: -1em;
  }
}
.page-policy .ttl_cmn_02 + p {
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .page-policy .ttl_cmn_02 + p {
    font-size: 0.9375rem;
    margin-bottom: 36px;
  }
}

.policy_nav {
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .policy_nav {
    margin-bottom: 3.75rem;
  }
}
.policy_nav ul {
  display: flex;
  justify-content: center;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .policy_nav ul {
    flex-direction: column;
    gap: 16px;
  }
}
.policy_nav ul li {
  width: 100%;
  max-width: 400px;
}
.policy_nav ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5%;
  width: 100%;
  border-radius: 5px;
  background-color: #4169E1;
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
  padding: 1.75rem 5% 1.75rem 8%;
}
@media screen and (max-width: 767px) {
  .policy_nav ul li a {
    font-size: 0.875rem;
    padding: 1rem 5% 1rem 8%;
  }
}
.policy_nav ul li a:after {
  flex-shrink: 0;
  content: "";
  display: block;
  width: 48px;
  aspect-ratio: 48/32;
  border-radius: 50%;
  background: url(../images/ico_arrow_bottom_01.svg) no-repeat center/12px;
  border: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .policy_nav ul li a:after {
    width: 40px;
    background-size: 10px;
  }
}

.page-site-policy .breadcrumb,
.page-site-policy .section_wrap {
  background-color: #F5F5F5;
}
.page-site-policy .ttl_cmn_02 {
  margin-bottom: 24px;
}
.page-site-policy .ttl_cmn_02 + p {
  line-height: 2;
  margin-bottom: 3rem;
}
.page-site-policy .list_site_policy > li {
  margin-bottom: 24px;
}
.page-site-policy .list_site_policy > li:last-child {
  margin-bottom: 0;
}

.signature {
  margin-top: 40px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .signature {
    font-size: 0.9375rem;
  }
}

.post-type-archive-post .section_wrap,
.category .section_wrap,
.single-post .section_wrap {
  border-bottom: 1px solid #BCBCBC;
}

.category_nav {
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .category_nav {
    margin-bottom: 3.75rem;
  }
}
.category_nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .category_nav ul {
    gap: 12px;
  }
}
.category_nav ul li {
  min-width: 168px;
}
@media screen and (max-width: 767px) {
  .category_nav ul li {
    min-width: 148px;
  }
}
.category_nav ul li a {
  display: block;
  padding: 0.65em;
  border: 1px solid #BCBCBC;
  color: #BCBCBC;
  background-color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .category_nav ul li a {
    font-size: 0.875rem;
  }
}
.category_nav ul li a:hover, .category_nav ul li a.is-current {
  border-color: #4169E1;
  background-color: #4169E1;
  color: #fff;
}

.list_archive_news > li {
  border-bottom: 1px solid #E5E5E5;
}
.list_archive_news > li:first-child {
  border-top: 1px solid #E5E5E5;
}
.list_archive_news .card_top_news {
  padding: 32px 0;
}
@media screen and (max-width: 767px) {
  .list_archive_news .card_top_news {
    padding: 24px 0;
  }
}
.list_archive_news .card_top_news:after {
  border-color: #717784;
  background-image: url(../images/ico_arrow_right_01_gray.svg);
}
.list_archive_news .card_top_news:hover {
  background-color: #E5E5E5;
}

.post__attr {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px 0;
}
.post__attr ul {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
}
.post__attr ul .cmn_news_category {
  margin-right: 0;
}
.post__title {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .post__title {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
.post__content {
  margin-top: 32px;
  padding: 72px 0 120px;
  border-top: 1px solid #E5E5E5;
}
@media screen and (max-width: 767px) {
  .post__content {
    padding: 32px 0 80px;
  }
}