@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
button,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 1em;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
  word-wrap: break-word;
}

ol,
ul {
  list-style: none;
  padding: 0px;
  margin: 0;
}

blockquote,
q {
  quotes: none;
}

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

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

a {
  text-decoration: none;
  color: inherit;
}

img {
  height: auto;
  display: block;
  max-width: 100%;
  image-rendering: -webkit-optimize-contrast;
}

video {
  outline: none;
  filter: drop-shadow(0px 0px rgba(0, 0, 0, 0));
}

svg {
  height: auto;
}

:root {
  --headerHeight: 90px;
  --paddingSection: 150px;
  --paddingLR: 24px;
}
@media screen and (max-width: 959px) {
  :root {
    --headerHeight: 75px;
    --paddingSection: 80px;
  }
}

:root {
  --color_main: #151E3F;
}

/*==========　基本設定　==========*/
* {
  box-sizing: border-box;
}

html {
  font-size: clamp(14px, 1.25vw, 16px);
}

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

body {
  overflow-wrap: anywhere;
  -webkit-text-size-adjust: 100%;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  color: #151E3F;
  line-height: 1.5;
  width: 100%;
}

.body_wrap {
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: calc(1360px + var(--paddingLR) * 2);
  padding-left: var(--paddingLR);
  padding-right: var(--paddingLR);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.inner {
  width: 100%;
  max-width: calc(1200px + var(--paddingLR) * 2);
  padding-left: var(--paddingLR);
  padding-right: var(--paddingLR);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.inner_contents {
  width: 100%;
  max-width: calc(1040px + var(--paddingLR) * 2);
  padding-left: var(--paddingLR);
  padding-right: var(--paddingLR);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.post_contents {
  width: 100%;
  max-width: calc(1000px + var(--paddingLR) * 2);
  padding-left: var(--paddingLR);
  padding-right: var(--paddingLR);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media screen and (max-width: 959px) {
  .container .inner,
.container .inner_contents,
.container .post_contents,
.inner .inner_contents,
.inner .post_contents,
.inner_contents .post_contents {
    padding-left: 0;
    padding-right: 0;
  }
}
.anchor {
  padding-top: var(--headerHeight);
  margin-top: calc(var(--headerHeight) * -1);
}

a:not([class]) {
  color: var(--color_main);
  text-decoration: underline;
}

@media screen and (min-width: 960px) {
  a:not([class^=btn_]) {
    transition: opacity 0.5s;
  }
  a:not([class^=btn_]):hover {
    opacity: 0.5;
  }
}

/*========== レイアウト用 ==========*/
.padding_section {
  padding-top: var(--paddingSection);
  padding-bottom: var(--paddingSection);
}

.margin_section {
  margin-top: var(--paddingSection);
  margin-bottom: var(--paddingSection);
}

.relative_box {
  position: relative;
}

.absolute_box {
  position: absolute;
}

.position_left {
  top: 0;
  left: 0;
}

.position_right {
  top: 0;
  right: 0;
}

/*==========
フォント
==========*/
.fw_mid {
  font-weight: 500;
}

.fw_bold {
  font-weight: 700;
}

.fw_black {
  font-weight: 900;
}

.fs_12 {
  font-size: 0.75rem;
}
@media screen and (max-width: 959px) {
  .fs_12 {
    font-size: 1rem;
  }
}

.fs_13 {
  font-size: 0.8125rem;
}
@media screen and (max-width: 959px) {
  .fs_13 {
    font-size: 1rem;
  }
}

.fs_14 {
  font-size: 0.875rem;
}
@media screen and (max-width: 959px) {
  .fs_14 {
    font-size: 1rem;
  }
}

.fs_15 {
  font-size: 0.9375rem;
}
@media screen and (max-width: 959px) {
  .fs_15 {
    font-size: 1rem;
  }
}

.fs_16 {
  font-size: 1rem;
}

.fs_17 {
  font-size: 1.0625rem;
}
@media screen and (max-width: 959px) {
  .fs_17 {
    font-size: 1rem;
  }
}

.fs_18 {
  font-size: 1.125rem;
}
@media screen and (max-width: 959px) {
  .fs_18 {
    font-size: 1rem;
  }
}

.fs_19 {
  font-size: 1.1875rem;
}
@media screen and (max-width: 959px) {
  .fs_19 {
    font-size: 1.125rem;
  }
}

.fs_20 {
  font-size: 1.25rem;
}
@media screen and (max-width: 959px) {
  .fs_20 {
    font-size: 1.125rem;
  }
}

.fs_21 {
  font-size: 1.3125rem;
}
@media screen and (max-width: 959px) {
  .fs_21 {
    font-size: 1.125rem;
  }
}

.fs_22 {
  font-size: 1.375rem;
}
@media screen and (max-width: 959px) {
  .fs_22 {
    font-size: 1.125rem;
  }
}

.fs_24 {
  font-size: 1.5rem;
}
@media screen and (max-width: 959px) {
  .fs_24 {
    font-size: 1.25rem;
  }
}

.fs_26 {
  font-size: 1.625rem;
}
@media screen and (max-width: 959px) {
  .fs_26 {
    font-size: 1.25rem;
  }
}

.fs_28 {
  font-size: 1.75rem;
}
@media screen and (max-width: 959px) {
  .fs_28 {
    font-size: 1.25rem;
  }
}

.fs_30 {
  font-size: 1.875rem;
}
@media screen and (max-width: 959px) {
  .fs_30 {
    font-size: 1.25rem;
  }
}

.fs_32 {
  font-size: 2rem;
}
@media screen and (max-width: 959px) {
  .fs_32 {
    font-size: 1.5rem;
  }
}

.fs_34 {
  font-size: 2.125rem;
}
@media screen and (max-width: 959px) {
  .fs_34 {
    font-size: 1.5rem;
  }
}

.fs_36 {
  font-size: 2.25rem;
}
@media screen and (max-width: 959px) {
  .fs_36 {
    font-size: 1.5rem;
  }
}

.fs_40 {
  font-size: 2.5rem;
}
@media screen and (max-width: 959px) {
  .fs_40 {
    font-size: 1.5rem;
  }
}

/*==========
汎用クラス
==========*/
.ib {
  display: inline-block;
}

.text_justify {
  text-align: justify;
  text-justify: inter-ideograph;
  -moz-text-align-last: left;
       text-align-last: left;
}

.text_left {
  text-align: left;
}

.text_right {
  text-align: right;
}

.text_center {
  text-align: center;
}

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

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

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

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/*==========
余白指定
==========*/
.mt_1em {
  margin-top: 1em;
}

.mt_2em {
  margin-top: 2em;
}

.mt_08 {
  margin-top: 8px;
}

.mt_16 {
  margin-top: 16px;
}

.mt_24 {
  margin-top: 24px;
}

.mt_32 {
  margin-top: 32px;
}

.mt_40 {
  margin-top: 40px;
}

.mt_56 {
  margin-top: 56px;
}
@media screen and (max-width: 959px) {
  .mt_56 {
    margin-top: 40px;
  }
}

.mt_64 {
  margin-top: 64px;
}
@media screen and (max-width: 959px) {
  .mt_64 {
    margin-top: 40px;
  }
}

.mt_80 {
  margin-top: 80px;
}
@media screen and (max-width: 959px) {
  .mt_80 {
    margin-top: 40px;
  }
}

.mt_120 {
  margin-top: 120px;
}
@media screen and (max-width: 959px) {
  .mt_120 {
    margin-top: 80px;
  }
}

.mt_160 {
  margin-top: 160px;
}
@media screen and (max-width: 959px) {
  .mt_160 {
    margin-top: 80px;
  }
}

.mb_1em {
  margin-bottom: 1em;
}

.mb_2em {
  margin-bottom: 2em;
}

.mb_08 {
  margin-bottom: 8px;
}

.mb_16 {
  margin-bottom: 16px;
}

.mb_24 {
  margin-bottom: 24px;
}

.mb_32 {
  margin-bottom: 32px;
}

.mb_40 {
  margin-bottom: 40px;
}

.mb_56 {
  margin-bottom: 56px;
}
@media screen and (max-width: 959px) {
  .mb_56 {
    margin-bottom: 40px;
  }
}

.mb_64 {
  margin-bottom: 64px;
}
@media screen and (max-width: 959px) {
  .mb_64 {
    margin-bottom: 40px;
  }
}

.mb_80 {
  margin-bottom: 80px;
}
@media screen and (max-width: 959px) {
  .mb_80 {
    margin-bottom: 40px;
  }
}

.mb_120 {
  margin-bottom: 120px;
}
@media screen and (max-width: 959px) {
  .mb_120 {
    margin-bottom: 80px;
  }
}

.mb_160 {
  margin-bottom: 160px;
}
@media screen and (max-width: 959px) {
  .mb_160 {
    margin-bottom: 80px;
  }
}

.pt_1em {
  padding-top: 1em;
}

.pt_2em {
  padding-top: 2em;
}

.pt_08 {
  padding-top: 8px;
}

.pt_16 {
  padding-top: 16px;
}

.pt_24 {
  padding-top: 24px;
}

.pt_32 {
  padding-top: 32px;
}

.pt_40 {
  padding-top: 40px;
}

.pt_56 {
  padding-top: 56px;
}
@media screen and (max-width: 959px) {
  .pt_56 {
    padding-top: 40px;
  }
}

.pt_64 {
  padding-top: 64px;
}
@media screen and (max-width: 959px) {
  .pt_64 {
    padding-top: 40px;
  }
}

.pt_80 {
  padding-top: 80px;
}
@media screen and (max-width: 959px) {
  .pt_80 {
    padding-top: 40px;
  }
}

.pt_120 {
  padding-top: 120px;
}
@media screen and (max-width: 959px) {
  .pt_120 {
    padding-top: 80px;
  }
}

.pt_160 {
  padding-top: 160px;
}
@media screen and (max-width: 959px) {
  .pt_160 {
    padding-top: 80px;
  }
}

.pb_1em {
  padding-bottom: 1em;
}

.pb_2em {
  padding-bottom: 2em;
}

.pb_08 {
  padding-bottom: 8px;
}

.pb_16 {
  padding-bottom: 16px;
}

.pb_24 {
  padding-bottom: 24px;
}

.pb_32 {
  padding-bottom: 32px;
}

.pb_40 {
  padding-bottom: 40px;
}

.pb_56 {
  padding-bottom: 56px;
}
@media screen and (max-width: 959px) {
  .pb_56 {
    padding-bottom: 40px;
  }
}

.pb_64 {
  padding-bottom: 64px;
}
@media screen and (max-width: 959px) {
  .pb_64 {
    padding-bottom: 40px;
  }
}

.pb_80 {
  padding-bottom: 80px;
}
@media screen and (max-width: 959px) {
  .pb_80 {
    padding-bottom: 40px;
  }
}

.pb_120 {
  padding-bottom: 120px;
}
@media screen and (max-width: 959px) {
  .pb_120 {
    padding-bottom: 80px;
  }
}

.pb_160 {
  padding-bottom: 160px;
}
@media screen and (max-width: 959px) {
  .pb_160 {
    padding-bottom: 80px;
  }
}

/*========== 汎用オブジェクト ==========*/
.bg_blue {
  background-color: #23233F;
  color: #fff;
}
.bg_blue .title_01 {
  color: #fff;
}
.bg_blue .title_01::before {
  color: #fff;
}
.bg_blue .btn_01 {
  color: #fff;
}
.bg_blue .btn_01::after {
  background-image: url("../img/common/icon_btn_01-white.svg");
}
.bg_blue .btn_01::before {
  background-color: #fff;
}
@media screen and (min-width: 960px) {
  .bg_blue .btn_01:hover {
    color: #B2B2B2;
  }
}

.js_bg {
  transition: background-color 0.8s, color 0.8s;
}
.js_bg:has(.fx_bg.trigger_bg) {
  background-color: #23233F;
  color: #fff;
}

.fx_bg {
  color: #fff;
}
.fx_bg .title_01 {
  color: #fff;
}
.fx_bg .title_01::before {
  color: #fff;
}
.fx_bg .btn_01 {
  color: #fff;
}
.fx_bg .btn_01::after {
  background-image: url("../img/common/icon_btn_01-white.svg");
}
@media screen and (min-width: 960px) {
  .fx_bg .btn_01:hover {
    color: #B2B2B2;
  }
}

.indent_icon {
  display: flex;
}
.indent_icon > *:not(:first-child) {
  flex: 1;
}

/*==========
Swiper
==========*/
.slide_linear .swiper-wrapper {
  transition-timing-function: linear;
}

.slider_area .layout_item_01 {
  gap: 0;
}
@media screen and (max-width: 959px) {
  .slider_area.slider_01 {
    width: calc(100% + var(--paddingLR) * 2);
    margin-left: calc(var(--paddingLR) * -1);
    padding-left: var(--paddingLR);
    padding-right: var(--paddingLR);
  }
  .slider_area.slider_01 .navigation_area {
    padding: 0.5rem;
  }
}

.slider_01 {
  position: relative;
}
.slider_01 .item {
  max-width: 22.5rem;
  margin-right: 5rem;
}
.slider_01 .item:last-child {
  margin-right: 0;
}
.slider_01 .navigation_area {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  justify-content: space-between;
  width: calc(100% + 4.375rem);
  pointer-events: none;
}
.slider_01 .navigation_area .slider_01_prev,
.slider_01 .navigation_area .slider_01_next {
  width: 4.375rem;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_slider_01.svg") no-repeat;
  display: block;
  cursor: pointer;
  pointer-events: auto;
  opacity: 0.9;
  transition: opacity 0.25s;
}
.slider_01 .navigation_area .slider_01_prev.swiper-button-disabled,
.slider_01 .navigation_area .slider_01_next.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}
.slider_01 .navigation_area .slider_01_prev {
  transform: rotate(180deg);
}
@media screen and (max-width: 959px) {
  .slider_01 .navigation_area {
    padding: 0;
    width: 100%;
  }
  .slider_01 .navigation_area .slider_01_prev,
.slider_01 .navigation_area .slider_01_next {
    width: 3rem;
  }
  .slider_01 .item {
    max-width: 24rem;
    margin-right: var(--paddingLR);
  }
  .slider_01 .item:last-child {
    margin-right: 0;
  }
}

/*==========
modaal
==========*/
#modaalcontent_ready {
  display: none;
}
#modaalcontent_ready > * {
  display: none;
}

/*==========
汎用デザイン
==========*/
.layout_item_01 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(22.5rem, 1fr));
  gap: 3.75rem;
}
.layout_item_01 a {
  color: inherit;
  text-decoration: none;
}
.layout_item_01 .row_img {
  margin-bottom: 0.625rem;
  aspect-ratio: 360/215;
}
.layout_item_01 .row_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.layout_item_01 .row_company {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}
.layout_item_01 .row_title {
  margin-bottom: 1rem;
}
.layout_item_01 .row_time {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(112, 112, 112, 0.13);
  padding-top: 0.625rem;
  margin-top: 1.25rem;
}
.layout_item_01 .row_category {
  margin-top: 1.5rem;
  font-size: 0.8125rem;
}
.layout_item_01 .row_category .list_category > * {
  background-color: #EBEBEB;
}
.layout_item_01 .title {
  font-size: 1.125rem;
  line-height: 1.25;
}
.layout_item_01 .text {
  font-size: 0.875rem;
}
.layout_item_01 .time {
  font-size: 0.75rem;
  font-weight: 300;
}
.layout_item_01 .logo_area {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 0.5rem;
}
.layout_item_01 .logo img {
  width: 100%;
  height: 100%;
  max-width: 7.5rem;
  max-height: 2.125rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.layout_column {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(35rem, 1fr));
  gap: 4rem 5rem;
}
.layout_column a {
  color: inherit;
  text-decoration: none;
}
.layout_column .row_thumb {
  display: flex;
  align-items: flex-start;
  gap: 0 1.25rem;
  margin-bottom: 1.5rem;
}
.layout_column .row_thumb .thumb {
  width: 35.714%;
  aspect-ratio: 200/138;
}
.layout_column .row_thumb .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.layout_column .row_thumb .title {
  flex: 1;
  font-size: 1.125rem;
  font-weight: 500;
}
.layout_column .row_text .text {
  font-size: 0.875rem;
}
.layout_column .row_time {
  border-top: 1px solid rgba(112, 112, 112, 0.12);
  padding-top: 10px;
  margin-top: 10px;
  display: flex;
  gap: 1rem;
}
.layout_column .list_category > * {
  background-color: #EBEBEB;
}
.layout_column .list_category + .list_tags {
  margin-top: 0.5rem;
}
.layout_column .category_area {
  font-size: 0.8125rem;
  flex: 1;
}
.layout_column .time {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  font-weight: 300;
  flex-shrink: 0;
}
@media screen and (max-width: 959px) {
  .layout_column {
    grid-template-columns: repeat(auto-fill, minmax(22.5rem, 1fr));
    gap: 2.5rem;
  }
  .layout_column .row_thumb {
    flex-direction: column;
    margin-bottom: 0.5rem;
  }
  .layout_column .row_thumb .thumb {
    margin-bottom: 0.5rem;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    max-width: 320px;
  }
}

.list_category {
  line-height: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em 0.75em;
}
.list_category > * {
  background-color: #F9F9F9;
  padding: 0.5em 0.75em;
  border-radius: 100px;
}
.list_category a {
  color: inherit;
  text-decoration: none;
}
@media screen and (max-width: 959px) {
  .list_category {
    font-size: 0.875rem;
  }
}

.list_tags {
  line-height: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em 0.75em;
}
@media screen and (max-width: 959px) {
  .list_tags {
    font-size: 0.875rem;
  }
}

.layout_pagination {
  margin-top: var(--paddingSection);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
}
.layout_pagination .prev,
.layout_pagination .next {
  width: 3.125rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  flex-shrink: 0;
}
.layout_pagination .prev {
  background: center/contain url("../img/common/icon_pagination-prev.svg") no-repeat;
}
.layout_pagination .next {
  background: center/contain url("../img/common/icon_pagination-next.svg") no-repeat;
}
.layout_pagination .current {
  background-color: #E0E1E5;
}
.layout_pagination .page-numbers {
  width: 3.125rem;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(21, 30, 63, 0.2);
  border-radius: 50%;
}
.layout_pagination .page-numbers.dots {
  border: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.layout_pagination .pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1em;
}
@media screen and (max-width: 959px) {
  .layout_pagination {
    flex-wrap: wrap;
  }
  .layout_pagination .pagination {
    width: 100%;
  }
  .layout_pagination .prev,
.layout_pagination .next {
    order: 1;
    margin: 0 1.5rem;
  }
}

/*==========
リスト
==========*/
.layout_news > *:not(:has(a)),
.layout_news a {
  display: flex;
  margin-bottom: -1px;
}
.layout_news > *:not(:has(a)):last-child .row_time,
.layout_news a:last-child .row_time {
  border-bottom: 1px solid var(--color_main);
}
.layout_news > *:not(:has(a)):last-child .row_text,
.layout_news a:last-child .row_text {
  border-bottom: 1px solid #DDDBDB;
}
.layout_news a {
  color: inherit;
  text-decoration: none;
}
.layout_news .row_time {
  min-width: 7.5rem;
  padding: 1.75rem 0.5em;
  border-top: 1px solid var(--color_main);
  display: flex;
  align-items: center;
}
.layout_news .row_text {
  display: flex;
  align-items: center;
  gap: 0.5rem 1rem;
  padding: 1.5rem 1.25rem;
  border-top: 1px solid #DDDBDB;
  flex: 1;
}
.layout_news time {
  display: block;
  width: 100%;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
}
.layout_news .category_area {
  display: grid;
  grid-template-columns: repeat(2, -webkit-max-content);
  grid-template-columns: repeat(2, max-content);
  gap: 0.5rem;
}
.layout_news .title_area {
  flex: 1;
}
.layout_news .category {
  background-color: var(--color_main);
  color: #fff;
  border-radius: 5px;
  font-size: 0.8125rem;
  line-height: 1;
  font-weight: 500;
  padding: 0.75em 1em;
}
.layout_news .title {
  font-size: 0.9375rem;
}
@media screen and (max-width: 959px) {
  .layout_news .row_time {
    padding: 1rem 0.5rem;
    min-width: auto;
  }
  .layout_news .row_text {
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .layout_news time {
    margin-bottom: auto;
    font-size: 1rem;
  }
  .layout_news .category {
    padding: 0.5em 1em;
  }
}

.dl_01 {
  font-size: 0.9375rem;
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
}
.dl_01 dt,
.dl_01 dd {
  padding: 1.25em 2em;
}
.dl_01 dt {
  font-weight: 500;
  border-bottom: 2px solid rgba(56, 82, 174, 0.5);
}
.dl_01 dt:first-of-type {
  border-top: 2px solid rgba(56, 82, 174, 0.5);
}
.dl_01 dd {
  border-bottom: 1px solid rgba(56, 82, 174, 0.5);
}
.dl_01 dd:first-of-type {
  border-top: 1px solid rgba(56, 82, 174, 0.5);
}
@media screen and (max-width: 959px) {
  .dl_01 {
    grid-template-columns: 1fr;
  }
  .dl_01 dt,
.dl_01 dd {
    padding: 1em 0;
  }
  .dl_01 dt {
    padding-bottom: 0;
    border-bottom: none;
    position: relative;
  }
  .dl_01 dt::before {
    content: "";
    width: 33.3334%;
    height: 2px;
    position: absolute;
    top: -1px;
    left: 0;
    background-color: rgba(56, 82, 174, 0.5);
  }
  .dl_01 dt:first-of-type {
    border-top: 1px solid rgba(56, 82, 174, 0.5);
  }
  .dl_01 dd {
    padding-top: 0.5em;
    padding-left: 0.5em;
    position: relative;
  }
  .dl_01 dd:last-of-type::after {
    content: "";
    width: 33.3334%;
    height: 2px;
    position: absolute;
    bottom: -1px;
    left: 0;
    background-color: rgba(56, 82, 174, 0.5);
  }
  .dl_01 dd:first-of-type {
    border-top: none;
  }
}

.list_dots {
  line-height: 1.25;
}
.list_dots > * {
  position: relative;
  padding-left: 1em;
}
.list_dots > *:not(:last-child) {
  margin-bottom: 0.5em;
}
.list_dots > *::before {
  content: "・";
  position: absolute;
  left: 0;
}

/*==========
ボタン
==========*/
.btn_01 {
  --circle_size: 3.66667em;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #B2B2B2;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 1em;
}
.btn_01::after {
  content: "";
  width: var(--circle_size);
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_btn_01-blue.svg") no-repeat;
  display: block;
}
.btn_01:not(:first-child) {
  margin-top: 2.5rem;
}
.btn_01 [data-color=white] {
  color: #fff;
}
.btn_01 [data-color=white]::after {
  background-image: url("../img/common/icon_btn_01-white.svg");
}
@media screen and (min-width: 960px) {
  .btn_01 [data-color=white]:hover {
    color: #B2B2B2;
  }
}
@media screen and (min-width: 960px) {
  .btn_01 {
    position: relative;
    transition: opacity 0.5s, color 0.5s;
  }
  .btn_01::before {
    content: "";
    width: 0;
    height: 1px;
    background-color: var(--color_main);
    position: absolute;
    bottom: calc(var(--circle_size) * 0.125);
    left: 50%;
    transform: translateX(calc(-50% - (var(--circle_size) + 1em) * 0.5));
    transition: width 0.25s;
  }
  .btn_01:hover {
    opacity: 0.5;
  }
  .btn_01:hover::before {
    width: calc(100% - var(--circle_size) - 1em);
  }
}
@media screen and (max-width: 959px) {
  .btn_01 {
    font-size: 0.857142rem;
    margin-left: auto;
    margin-right: auto;
    gap: 1em;
  }
  .btn_01::after {
    width: 3em;
  }
}

.btn_back {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 211px;
  height: 44px;
  background-color: #EFEFEF;
  border-radius: 100px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.875rem;
}
@media screen and (min-width: 960px) {
  .btn_back {
    position: relative;
    transition: opacity 0.5s;
  }
  .btn_back:hover {
    opacity: 0.5;
  }
}

.btn_submit {
  font-size: 1.125rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 2px solid var(--color_main);
  background-color: #fff;
  width: 100%;
  max-width: 320px;
  height: 64px;
  margin-top: 3.5rem;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
}
@media screen and (min-width: 960px) {
  .btn_submit {
    transition: background-color 0.5s, color 0.5s;
  }
  .btn_submit:hover {
    background-color: var(--color_main);
    color: #fff;
  }
}

/*==========
タイトル
==========*/
.title_01 {
  font-size: 1.875rem;
  line-height: 1.25;
  font-weight: 500;
}
.title_01:not(:last-child) {
  margin-bottom: 1em;
}
.title_01::before {
  content: attr(data-en);
  font-size: 0.5em;
  font-family: "Montserrat";
  color: #B2B2B2;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: block;
  text-decoration: underline;
  text-underline-offset: 2px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 0.25em;
}
.title_01.text_center {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.title_01.text_center::before {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 959px) {
  .title_01 {
    font-size: 1.57142rem;
  }
}

.title_sub_01 {
  font-size: 1.4375rem;
}
.title_sub_01:not(:last-child) {
  margin-bottom: 1.5em;
}
@media screen and (max-width: 959px) {
  .title_sub_01 {
    font-size: 1.285714rem;
  }
}

/*========== 汎用レイアウト ==========*/
/*==========
ヘッダー
==========*/
#header {
  color: var(--color_main);
  background-color: rgba(255, 255, 255, 0.8);
  width: 100vw;
  height: var(--headerHeight);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}
#header .flex {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header .menu_area {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem 3.5rem;
}
#header .logo_area {
  padding-left: 1.875rem;
}
#header .btn_area {
  height: 100%;
}
#header .btn_area .btn {
  font-size: 1rem;
  width: 15rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color_main);
  background-color: var(--color_main);
  color: #fff;
  z-index: 1;
}
#header .btn_area .btn::after {
  color: #fff;
  font-size: 0.75rem;
}
@media screen and (min-width: 960px) {
  #header .btn_area .btn {
    position: relative;
  }
  #header .btn_area .btn::before {
    content: "";
    width: 0;
    height: 1px;
    background-color: #fff;
    position: absolute;
    bottom: 1em;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.25s, opacity 0.5s;
    z-index: 10;
  }
  #header .btn_area .btn:hover::before {
    width: 2em;
    opacity: 0.5;
  }
}
#header .list_header {
  font-size: 0.9375rem;
  line-height: 1.25;
  text-align: center;
  font-weight: 500;
  display: flex;
  gap: 1em 3em;
}
#header .list_header a {
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 960px) {
  #header .list_header a {
    position: relative;
  }
  #header .list_header a::after {
    content: "";
    width: 0;
    height: 1px;
    background-color: var(--color_main);
    position: absolute;
    bottom: -0.5em;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.25s;
  }
  #header .list_header a:hover::after {
    width: 2em;
  }
}
#header [data-en]::after {
  content: attr(data-en);
  font-size: 0.625rem;
  font-weight: 200;
  font-family: "Montserrat";
  color: #7F8083;
  display: block;
}
#header #hamburger_btn,
#header #hamburger_bg {
  display: none;
}

/*==========
ハンバーガーメニュー
==========*/
@media screen and (max-width: 959px) {
  #header {
    background-color: #fff;
    /*==========
    ハンバーガーメニュー
    ==========*/
    /*== ボタン ==*/
    /*== エリア外 ==*/
    /*== オープン ==*/
  }
  #header .flex {
    align-items: center;
  }
  #header .logo_area {
    max-width: 160px;
    padding-left: var(--paddingLR);
  }
  #header .menu_area {
    padding: var(--paddingSection) var(--paddingLR);
    position: fixed;
    top: var(--headerHeight);
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: auto;
    background-color: #fff;
    flex-direction: column;
    justify-content: flex-start;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: -webkit-clip-path 0.5s;
    transition: clip-path 0.5s;
    transition: clip-path 0.5s, -webkit-clip-path 0.5s;
    will-change: clip-path;
  }
  #header .list_header {
    flex-direction: column;
    font-size: 1rem;
  }
  #header [data-en]::after {
    font-size: 0.75rem;
  }
  #header .btn_area {
    height: auto;
  }
  #header .btn_area .btn {
    font-size: 1rem;
    margin-top: 1.5rem;
    height: 56px;
  }
  #header #hamburger_btn {
    display: block;
    background-color: var(--color_main);
    height: 100%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  #header #hamburger_btn .btn_wrap {
    width: 24px;
    height: 20px;
    display: flex;
    gap: 5px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    z-index: 30;
  }
  #header #hamburger_btn span {
    transform-origin: center;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.5s;
    will-change: transform, margin;
  }
  #header #hamburger_btn span:nth-child(1), #header #hamburger_btn span:nth-child(3) {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  #header #hamburger_bg {
    display: block;
    width: 0;
    height: 0;
    background-color: rgb(204, 204, 204);
    opacity: 0;
    position: fixed;
    top: var(--headerHeight);
    left: 0;
    z-index: -1;
    transition: opacity 0.5s;
    will-change: opacity;
  }
  #header.open .menu_area {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  #header.open #hamburger_btn .btn_wrap {
    gap: 0;
  }
  #header.open #hamburger_btn span {
    margin-bottom: 0;
  }
  #header.open #hamburger_btn span:nth-of-type(1) {
    transform: rotate(45deg);
    margin-bottom: -2px;
  }
  #header.open #hamburger_btn span:nth-of-type(2) {
    height: 0;
  }
  #header.open #hamburger_btn span:nth-of-type(3) {
    transform: rotate(-45deg);
  }
  #header.open #hamburger_bg {
    width: 100vw;
    height: calc(100vh - var(--headerHeight));
    height: calc(100dvh - var(--headerHeight));
    opacity: 0.5;
  }
}
/*==========
フッター
==========*/
#footer {
  color: var(--color_main);
  background-color: #E0E1E5;
  padding-top: 5rem;
  padding-bottom: 1rem;
}
#footer .flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
#footer .address {
  margin-top: 1em;
  line-height: 1.25;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #000;
}
#footer .post {
  font-size: 0.75rem;
}
#footer .list_footer {
  font-size: 0.9375rem;
  line-height: 1.25;
  text-align: center;
  font-weight: 500;
  display: flex;
  gap: 0 3em;
}
#footer .list_footer a {
  color: inherit;
  text-decoration: none;
}
#footer [data-en]::after {
  content: attr(data-en);
  font-size: 0.625rem;
  font-weight: 500;
  font-family: "Montserrat";
  color: #7F8083;
  display: block;
}
#footer .btn_area {
  margin-top: 2rem;
}
#footer .btn_area .btn {
  margin-left: auto;
  font-size: 1.125rem;
  max-width: 18rem;
  height: 4.375rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(35, 35, 65, 0.33);
  border-radius: 10px;
  color: #000;
  padding: 0.5em 3em;
  position: relative;
}
#footer .btn_area .btn::before {
  content: "";
  width: 1.75em;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_contact.svg") no-repeat;
  position: absolute;
  top: 50%;
  left: 1em;
  transform: translateY(-50%);
}
#footer .btn_area .btn[data-en]::after {
  color: var(--color_main);
}
#footer .flex_icon {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem 1.5rem;
  margin-top: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
}
#footer .flex_icon .icon {
  height: 2.5rem;
}
#footer .flex_icon .icon img {
  height: 100%;
  width: auto;
}
#footer .flex_icon a {
  color: inherit;
  text-decoration: none;
}
@media screen and (max-width: 959px) {
  #footer .flex {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #footer .logo {
    max-width: 105px;
    margin-left: auto;
    margin-right: auto;
  }
  #footer .address {
    text-align: center;
  }
  #footer .menu_area {
    margin-top: 2rem;
    width: 100%;
    max-width: 400px;
  }
  #footer .list_footer {
    flex-direction: column;
  }
  #footer .list_footer > * {
    border-bottom: 1px solid rgba(112, 112, 112, 0.13);
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  #footer .btn_area .btn {
    margin-right: auto;
    font-size: 1rem;
  }
  #footer .btn_area .btn::before {
    width: 2em;
    margin-top: -0.125em;
  }
  #footer .flex_icon {
    justify-content: center;
    gap: 1rem;
  }
}

/*==========
コピーライト
==========*/
.copyright {
  margin-top: 3.5rem;
  font-size: 0.625rem;
  text-align: center;
}

/*==========
PageToTop
==========*/
/*==========
Effect
==========*/
:root {
  --headerHeight: 90px;
  --paddingSection: 150px;
  --paddingLR: 24px;
}
@media screen and (max-width: 959px) {
  :root {
    --headerHeight: 75px;
    --paddingSection: 80px;
  }
}

:root {
  --color_main: #151E3F;
}

@media screen and (min-width: 960px) {
  .hover_rotate {
    display: block;
    overflow: hidden;
  }
  .hover_rotate .rotate_item,
.hover_rotate a {
    display: block;
    will-change: transform visibility;
    -webkit-animation-duration: 0.4s;
            animation-duration: 0.4s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  .hover_rotate:hover .rotate_item,
.hover_rotate:hover a {
    opacity: 1;
    -webkit-animation-name: hover_rotate;
            animation-name: hover_rotate;
  }
}
.trigger .fx_fadeIn, .trigger.fx_fadeIn {
  -webkit-animation-name: fx_fadeIn;
          animation-name: fx_fadeIn;
}
.trigger .fx_fadeUp, .trigger.fx_fadeUp {
  -webkit-animation-name: fx_fadeUp;
          animation-name: fx_fadeUp;
}
.trigger .fx_slideLeft, .trigger.fx_slideLeft {
  -webkit-animation-name: fx_slideLeft;
          animation-name: fx_slideLeft;
}
.trigger .fx_slideRight, .trigger.fx_slideRight {
  -webkit-animation-name: fx_slideRight;
          animation-name: fx_slideRight;
}
.trigger .fx_clipLeft, .trigger.fx_clipLeft {
  -webkit-animation-name: fx_clipLeft;
          animation-name: fx_clipLeft;
}

@-webkit-keyframes fx_rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes fx_rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes hover_rotate {
  0% {
    visibility: visible;
    transform: translateY(0%);
  }
  49% {
    visibility: visible;
    transform: translateY(100%);
  }
  50% {
    visibility: hidden;
    transform: translateY(100%);
  }
  51% {
    visibility: hidden;
    transform: translateY(-100%);
  }
  52% {
    visibility: visible;
    transform: translateY(-100%);
  }
  100% {
    visibility: visible;
    transform: translateY(0%);
  }
}
@keyframes hover_rotate {
  0% {
    visibility: visible;
    transform: translateY(0%);
  }
  49% {
    visibility: visible;
    transform: translateY(100%);
  }
  50% {
    visibility: hidden;
    transform: translateY(100%);
  }
  51% {
    visibility: hidden;
    transform: translateY(-100%);
  }
  52% {
    visibility: visible;
    transform: translateY(-100%);
  }
  100% {
    visibility: visible;
    transform: translateY(0%);
  }
}
.fx_clipLeft {
  -webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  will-change: clip-path;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-webkit-keyframes fx_clipLeft {
  0% {
    -webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  }
  100% {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}

@keyframes fx_clipLeft {
  0% {
    -webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  }
  100% {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}
.fx_clipCenter {
  -webkit-clip-path: polygon(50% 0%, 50% 0%, 50% 100%, 50% 100%);
          clip-path: polygon(50% 0%, 50% 0%, 50% 100%, 50% 100%);
  will-change: clip-path;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-webkit-keyframes fx_clipCenter {
  0% {
    -webkit-clip-path: polygon(50% 0%, 50% 0%, 50% 100%, 50% 100%);
            clip-path: polygon(50% 0%, 50% 0%, 50% 100%, 50% 100%);
  }
  100% {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}

@keyframes fx_clipCenter {
  0% {
    -webkit-clip-path: polygon(50% 0%, 50% 0%, 50% 100%, 50% 100%);
            clip-path: polygon(50% 0%, 50% 0%, 50% 100%, 50% 100%);
  }
  100% {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}
.fx_fadeIn {
  opacity: 0;
  will-change: opacity;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-webkit-keyframes fx_fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fx_fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fx_fadeUp {
  opacity: 0;
  transform: translateY(24px);
  will-change: transform, opacity;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-webkit-keyframes fx_fadeUp {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes fx_fadeUp {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.fx_slideLeft {
  will-change: transform, opacity;
  transform: translateX(-24px);
  opacity: 0;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-webkit-keyframes fx_slideLeft {
  0% {
    opacity: 0;
    transform: translateX(-24px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fx_slideLeft {
  0% {
    opacity: 0;
    transform: translateX(-24px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fx_slideRight {
  will-change: transform, opacity;
  transform: translateX(40px);
  opacity: 0;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-webkit-keyframes fx_slideRight {
  0% {
    opacity: 0;
    transform: translateX(24px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fx_slideRight {
  0% {
    opacity: 0;
    transform: translateX(24px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}