@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;
}

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%;
}

:root {
  --headerHeight: 120px;
  --flexMargin: 40px;
  --paddingSection: 64px;
}
@media screen and (max-width: 961px) {
  :root {
    --headerHeight: 80px;
    --flexMargin: 16px;
    --paddingSection: 40px;
  }
}

/*==========　基本設定　==========*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #222222;
  font-size: 16px;
  line-height: 1.5;
  width: 100%;
}
@media screen and (max-width: 961px) {
  body {
    font-size: 14px;
  }
}

.body_wrap {
  overflow: hidden;
  margin-top: var(--headerHeight);
}

.container {
  width: 100%;
  max-width: calc(1328px + 24px * 2);
  padding-left: 24px;
  padding-right: 24px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.inner {
  width: 100%;
  max-width: calc(1000px + 24px * 2);
  padding-left: 24px;
  padding-right: 24px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.inner_contents {
  width: 100%;
  max-width: calc(800px + 24px * 2);
  padding-left: 24px;
  padding-right: 24px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media screen and (max-width: 961px) {
  .container .inner,
.container .inner_contents,
.inner .inner_contents {
    padding-left: 0;
    padding-right: 0;
  }
}
.anchor {
  padding-top: var(--headerHeight);
  margin-top: calc(var(--headerHeight) * -1);
}

/*========== レイアウト用 ==========*/
.padding_section {
  padding-top: var(--paddingSection);
  padding-bottom: var(--paddingSection);
}

.relative_box {
  position: relative;
}

.absolute_box {
  position: absolute;
}

.position_left {
  top: 0;
  left: 0;
}

.position_right {
  top: 0;
  right: 0;
}

.flex_center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.layout_box {
  width: calc(100% + var(--flexMargin) * 2);
  margin: calc(var(--flexMargin) * -1);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.layout_box[data-property=justify_sb] {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.layout_box[data-property=justify_sa] {
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}
.layout_box[data-property=justify_center] {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.layout_box[data-property=align_fs] {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.layout_box[data-property=align_fe] {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.layout_box[data-property=align_center] {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.layout_box > * {
  margin: var(--flexMargin);
}
.layout_box[data-col="2"] > * {
  width: calc(50% - var(--flexMargin) * 2);
}
.layout_box[data-col="3"] > * {
  width: calc(33.3333333333% - var(--flexMargin) * 2);
}
.layout_box[data-col="4"] > * {
  width: calc(25% - var(--flexMargin) * 2);
}
.layout_box[data-col="5"] > * {
  width: calc(20% - var(--flexMargin) * 2);
}
.layout_box[data-col="6"] > * {
  width: calc(16.6666666667% - var(--flexMargin) * 2);
}
@media screen and (max-width: 961px) {
  .layout_box {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .layout_box:not(.sp_same)[data-col="2"] > *, .layout_box:not(.sp_same)[data-col="3"] > *, .layout_box:not(.sp_same)[data-col="4"] > *, .layout_box:not(.sp_same)[data-col="5"] > *, .layout_box:not(.sp_same)[data-col="6"] > * {
    width: calc(100% - var(--flexMargin) * 2);
  }
}

/*==========
フォント
==========*/
.fw_mid {
  font-weight: 500;
}

.fw_bold {
  font-weight: 700;
}

.fw_black {
  font-weight: 900;
}

.fs_12 {
  font-size: 0.75em;
}
@media screen and (max-width: 961px) {
  .fs_12 {
    font-size: 1em;
  }
}

.fs_13 {
  font-size: 0.8125em;
}
@media screen and (max-width: 961px) {
  .fs_13 {
    font-size: 1em;
  }
}

.fs_14 {
  font-size: 0.875em;
}
@media screen and (max-width: 961px) {
  .fs_14 {
    font-size: 0.9375em;
  }
}

.fs_15 {
  font-size: 0.9375em;
}
@media screen and (max-width: 961px) {
  .fs_15 {
    font-size: 1em;
  }
}

.fs_16 {
  font-size: 1em;
}

.fs_17 {
  font-size: 1.0625em;
}
@media screen and (max-width: 961px) {
  .fs_17 {
    font-size: 1em;
  }
}

.fs_18 {
  font-size: 1.125em;
}
@media screen and (max-width: 961px) {
  .fs_18 {
    font-size: 1em;
  }
}

.fs_19 {
  font-size: 1.1875em;
}
@media screen and (max-width: 961px) {
  .fs_19 {
    font-size: 1.125em;
  }
}

.fs_20 {
  font-size: 1.25em;
}
@media screen and (max-width: 961px) {
  .fs_20 {
    font-size: 1.125em;
  }
}

.fs_21 {
  font-size: 1.3125em;
}
@media screen and (max-width: 961px) {
  .fs_21 {
    font-size: 1.125em;
  }
}

.fs_22 {
  font-size: 1.375em;
}
@media screen and (max-width: 961px) {
  .fs_22 {
    font-size: 1.125em;
  }
}

.fs_24 {
  font-size: 1.5em;
}
@media screen and (max-width: 961px) {
  .fs_24 {
    font-size: 1.25em;
  }
}

.fs_26 {
  font-size: 1.625em;
}
@media screen and (max-width: 961px) {
  .fs_26 {
    font-size: 1.25em;
  }
}

.fs_28 {
  font-size: 1.75em;
}
@media screen and (max-width: 961px) {
  .fs_28 {
    font-size: 1.25em;
  }
}

.fs_30 {
  font-size: 1.875em;
}
@media screen and (max-width: 961px) {
  .fs_30 {
    font-size: 1.25em;
  }
}

.fs_32 {
  font-size: 2em;
}
@media screen and (max-width: 961px) {
  .fs_32 {
    font-size: 1.5em;
  }
}

.fs_34 {
  font-size: 2.125em;
}
@media screen and (max-width: 961px) {
  .fs_34 {
    font-size: 1.5em;
  }
}

.fs_36 {
  font-size: 2.25em;
}
@media screen and (max-width: 961px) {
  .fs_36 {
    font-size: 1.5em;
  }
}

.fs_40 {
  font-size: 2.5em;
}
@media screen and (max-width: 961px) {
  .fs_40 {
    font-size: 1.5em;
  }
}

/*==========
汎用クラス
==========*/
sup {
  vertical-align: super;
  font-size: 0.525em;
}

.text_blue {
  color: #005cb9;
}

.text_blue_dark {
  color: #00557f;
}

.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: 961px) {
  .sp_only {
    display: block;
  }
}

.pc_only {
  display: block;
}
@media screen and (max-width: 961px) {
  .pc_only {
    display: none;
  }
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

@media screen and (min-width: 961px){
    .br-sp {
        display: none; 
    }
}

/*==========
余白指定
==========*/
.ml_auto {
  margin-left: auto;
}

.mr_auto {
  margin-right: auto;
}

.mt_auto {
  margin-top: auto;
}

.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: 961px) {
  .mt_56 {
    margin-top: 40px;
  }
}

.mt_64 {
  margin-top: 64px;
}
@media screen and (max-width: 961px) {
  .mt_64 {
    margin-top: 40px;
  }
}

.mt_80 {
  margin-top: 80px;
}
@media screen and (max-width: 961px) {
  .mt_80 {
    margin-top: 40px;
  }
}

.mt_120 {
  margin-top: 120px;
}
@media screen and (max-width: 961px) {
  .mt_120 {
    margin-top: 80px;
  }
}

.mt_160 {
  margin-top: 160px;
}
@media screen and (max-width: 961px) {
  .mt_160 {
    margin-top: 80px;
  }
}

.mb_auto {
  margin-bottom: auto;
}

.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: 961px) {
  .mb_56 {
    margin-bottom: 40px;
  }
}

.mb_64 {
  margin-bottom: 64px;
}
@media screen and (max-width: 961px) {
  .mb_64 {
    margin-bottom: 40px;
  }
}

.mb_80 {
  margin-bottom: 80px;
}
@media screen and (max-width: 961px) {
  .mb_80 {
    margin-bottom: 40px;
  }
}

.mb_120 {
  margin-bottom: 120px;
}
@media screen and (max-width: 961px) {
  .mb_120 {
    margin-bottom: 80px;
  }
}

.mb_160 {
  margin-bottom: 160px;
}
@media screen and (max-width: 961px) {
  .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: 961px) {
  .pt_56 {
    padding-top: 40px;
  }
}

.pt_64 {
  padding-top: 64px;
}
@media screen and (max-width: 961px) {
  .pt_64 {
    padding-top: 40px;
  }
}

.pt_80 {
  padding-top: 80px;
}
@media screen and (max-width: 961px) {
  .pt_80 {
    padding-top: 40px;
  }
}

.pt_120 {
  padding-top: 120px;
}
@media screen and (max-width: 961px) {
  .pt_120 {
    padding-top: 80px;
  }
}

.pt_160 {
  padding-top: 160px;
}
@media screen and (max-width: 961px) {
  .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: 961px) {
  .pb_56 {
    padding-bottom: 40px;
  }
}

.pb_64 {
  padding-bottom: 64px;
}
@media screen and (max-width: 961px) {
  .pb_64 {
    padding-bottom: 40px;
  }
}

.pb_80 {
  padding-bottom: 80px;
}
@media screen and (max-width: 961px) {
  .pb_80 {
    padding-bottom: 40px;
  }
}

.pb_120 {
  padding-bottom: 120px;
}
@media screen and (max-width: 961px) {
  .pb_120 {
    padding-bottom: 80px;
  }
}

.pb_160 {
  padding-bottom: 160px;
}
@media screen and (max-width: 961px) {
  .pb_160 {
    padding-bottom: 80px;
  }
}

/*========== 汎用オブジェクト ==========*/
/*==========
汎用デザイン
==========*/
.link_pdf::after {
  content: "";
  width: 1.5em;
  height: 1.5em;
  display: inline-block;
  background: center/contain url("../img/common/icon_pdf.svg") no-repeat;
  margin-left: 0.25em;
  vertical-align: -0.25em;
}
.link_text {
	text-decoration: underline;
	color: #00557f;
}

.annotation_area {
  background-color: #fff;
  border: 2px solid #005cb9;
  border-radius: 20px;
  padding: 40px 24px;
}

.text_indent {
  position: relative;
}
.text_indent.letters_3 {
  padding-left: 3em;
}
.text_indent.letters_2half {
  padding-left: 2.5em;
}
.text_indent.letters_2 {
  padding-left: 2em;
}
.text_indent.letters_1half {
  padding-left: 1.5em;
}
.text_indent.letters_1 {
  padding-left: 1em;
}
.text_indent .number {
  position: absolute;
  left: 0;
}

.text_indent + .text_indent {
  margin-top: 0.5em;
}
.movie_area {
	position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 85%;
    height: 0;
	margin-top: 30px;
    padding-top: 47.8%;
}
.movie_area iframe {
    border: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
}
/*==========
リスト
==========*/
.dl_01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  border-bottom: 1px solid #e2e2e2;
}
.dl_01 dt,
.dl_01 dd {
  border-top: 1px solid #e2e2e2;
  padding: 18px 20px;
}
.dl_01 dt {
  width: 200px;
  background-color: #f5faff;
  color: #005cb9;
  font-weight: 700;
}
.dl_01 dd {
  width: calc(100% - 200px);
}
.dl_01 a {
  text-decoration: underline;
  color: #00557f;
  -webkit-transform: color 0.5s;
          transform: color 0.5s;
}
.dl_01 a:hover {
  color: #005cb9;
}
@media screen and (max-width: 961px) {
  .dl_01 dt,
.dl_01 dd {
    width: 100%;
  }
}

.list_dots {
  line-height: 1.5;
}
.list_dots > * {
  position: relative;
  padding-left: 1em;
}
.list_dots > *::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #005cb9;
  border-radius: 50%;
  display: block;
  position: absolute;
  left: 0em;
  top: 0.5em;
}
@media screen and (max-width: 961px) {
  .list_dots > *::before {
    width: 6px;
    height: 6px;
    top: 0.55em;
  }
}
.list_dots > *:not(:last-of-type) {
  margin-bottom: 0.625em;
}

/*==========
ボタン
==========*/
.btn_01 {
  width: 100%;
  max-width: 400px;
  height: 80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #00557f;
  border: 2px solid #00557f;
  border-radius: 72px;
  color: #fff;
  font-size: 1.25em;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: background-color 0.5s, color 0.5s;
  transition: background-color 0.5s, color 0.5s;
  position: relative;
}
.btn_01 .ja {
  font-size: 0.9em;
}
.btn_01 .en {
  font-size: 0.6em;
  margin-top: 2px;
  font-family: "Montserrat", sans-serif;
}
.btn_01::after {
  content: "";
  width: 6px;
  height: 10px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%226%22%20height%3D%2210%22%20viewBox%3D%220%200%206%2010%22%3E%3Cpath%20d%3D%22M5%2C6%2C0%2C1.377%2C1.489%2C0%2C5%2C3.246%2C8.511%2C0%2C10%2C1.377Z%22%20transform%3D%22translate(0%2010)%20rotate(-90)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
  position: absolute;
  right: 2em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: background-image 0.5s;
  transition: background-image 0.5s;
}
.btn_01:hover {
  background-color: #fff;
  color: #00557f;
}
.btn_01:hover::after {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%226%22%20height%3D%2210%22%20viewBox%3D%220%200%206%2010%22%3E%3Cpath%20d%3D%22M5%2C6%2C0%2C1.377%2C1.489%2C0%2C5%2C3.246%2C8.511%2C0%2C10%2C1.377Z%22%20transform%3D%22translate(0%2010)%20rotate(-90)%22%20fill%3D%22%2300557F%22%2F%3E%3C%2Fsvg%3E");
  -webkit-transition: background-image 0.5s;
  transition: background-image 0.5s;
}
.btn_01.btn_gray {
  background-color: #939598;
  border-color: #939598;
}
.btn_01.btn_gray:hover {
  background-color: #fff;
  color: #939598;
}
.btn_01.btn_gray:hover::after {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%226%22%20height%3D%2210%22%20viewBox%3D%220%200%206%2010%22%3E%3Cpath%20d%3D%22M5%2C6%2C0%2C1.377%2C1.489%2C0%2C5%2C3.246%2C8.511%2C0%2C10%2C1.377Z%22%20transform%3D%22translate(0%2010)%20rotate(-90)%22%20fill%3D%22%23939598%22%2F%3E%3C%2Fsvg%3E");
}
@media screen and (max-width: 961px) {
  .btn_01 {
    height: 64px;
  }
  .btn_01::after {
    right: 1em;
  }
}

.btn_02 {
  width: 100%;
  max-width: 380px;
  height: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #005cb9;
  border: 2px solid #005cb9;
  border-radius: 30px;
  color: #fff;
  font-size: 1.25em;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: background-color 0.5s, color 0.5s;
  transition: background-color 0.5s, color 0.5s;
  position: relative;
}
.btn_02 .ja {
  font-size: 0.9em;
}
.btn_02 .en {
  font-size: 0.6em;
  margin-top: 2px;
  font-family: "Montserrat", sans-serif;
}
.btn_02::after {
  content: "";
  width: 6px;
  height: 10px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%226%22%20height%3D%2210%22%20viewBox%3D%220%200%206%2010%22%3E%3Cpath%20d%3D%22M5%2C6%2C0%2C1.377%2C1.489%2C0%2C5%2C3.246%2C8.511%2C0%2C10%2C1.377Z%22%20transform%3D%22translate(0%2010)%20rotate(-90)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
  position: absolute;
  right: 2em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: background-image 0.5s;
  transition: background-image 0.5s;
}
.btn_02:hover {
  background-color: #fff;
  color: #005cb9;
}
.btn_02:hover::after {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%226%22%20height%3D%2210%22%20viewBox%3D%220%200%206%2010%22%3E%3Cpath%20d%3D%22M5%2C6%2C0%2C1.377%2C1.489%2C0%2C5%2C3.246%2C8.511%2C0%2C10%2C1.377Z%22%20transform%3D%22translate(0%2010)%20rotate(-90)%22%20fill%3D%22%23005cb9%22%2F%3E%3C%2Fsvg%3E");
  -webkit-transition: background-image 0.5s;
  transition: background-image 0.5s;
}
.btn_02.btn_gray {
  background-color: #939598;
  border-color: #939598;
}
.btn_02.btn_gray:hover {
  background-color: #fff;
  color: #939598;
}
.btn_02.btn_gray:hover::after {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%226%22%20height%3D%2210%22%20viewBox%3D%220%200%206%2010%22%3E%3Cpath%20d%3D%22M5%2C6%2C0%2C1.377%2C1.489%2C0%2C5%2C3.246%2C8.511%2C0%2C10%2C1.377Z%22%20transform%3D%22translate(0%2010)%20rotate(-90)%22%20fill%3D%22%23939598%22%2F%3E%3C%2Fsvg%3E");
}
@media screen and (max-width: 961px) {
  .btn_02 {
    font-size: 1.125em;
    min-height: 56px;
  }
  .btn_02::after {
    right: 1em;
  }
}

.btn_03 {
  width: 100%;
  max-width: 220px;
  height: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #005cb9;
  border: 2px solid #005cb9;
  border-radius: 30px;
  color: #fff;
  font-size: 1.25em;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: background-color 0.5s, color 0.5s;
  transition: background-color 0.5s, color 0.5s;
}
.btn_03:hover {
  background-color: #fff;
  color: #005cb9;
}
.btn_03.btn_gray {
  background-color: #939598;
  border-color: #939598;
}
.btn_03.btn_gray:hover {
  background-color: #fff;
  color: #939598;
}
@media screen and (max-width: 961px) {
  .btn_03 {
    min-height: 56px;
  }
}
/*==========
ニュース
==========*/
#index_news {
  padding: 40px 24px 80px 40px;
  position: relative;
  z-index: 1;
}
#index_news .title_02 .ja {
  color: #005cb9;
}
#index_news::after {
  content: "";
  width: 100vw;
  height: 100%;
  border-radius: 0 0 0 40px;
  background-color: #fff;
  position: absolute;
  left: -350px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}
@media screen and (max-width: 1440px) {
  #index_news {
    padding-top: 64px;
    padding-bottom: 40px;
  }
  #index_news::after {
    left: -240px;
  }
}
@media screen and (max-width: 961px) {
  #index_news {
    padding: 40px 0 40px 24px;
  }
  #index_news::after {
    left: 0;
    border-radius: 0 0 0 20px;
  }
}

.list_index_news {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.list_index_news > * {
  width: 100%;
  margin-right: 40px;
  margin-bottom: 1em;
}
.list_index_news .time {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #00557f;
}
.list_index_news .news {
  margin-top: 2px;
  font-size: 0.875em;
  font-weight: 500;
}
.list_index_news a {
  text-decoration: underline;
  color: #00557f;
  -webkit-transform: color 0.5s;
          transform: color 0.5s;
}
.list_index_news a:hover {
  color: #005cb9;
}
#index_news .index_news_link {
	text-align: right;
}
#index_news .index_news_link a{
  text-decoration: underline;
  color: #00557f;
  -webkit-transform: color 0.5s;
          transform: color 0.5s;
}
#index_news .index_news_link a:hover {
  color: #005cb9;
}
@media screen and (max-width: 961px) {
  .list_index_news > * {
    width: 100%;
    margin-right: 0;
    margin-bottom: 1em;
  }
  .list_index_news .news {
    font-size: 1em;
  }
}

/*==========
タイトル
==========*/
.title_01 {
  text-align: center;
}
.title_01 .ja {
  margin-top: 0.5em;
  font-size: 2em;
  color: #005cb9;
  font-weight: 700;
}
.title_01 .en {
  font-size: 0.8125em;
  font-weight: 700;
  color: #939598;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 961px) {
  .title_01 .ja {
    font-size: 1.5em;
  }
}

.title_02 .ja {
  font-size: 1.75em;
  color: #00557f;
  font-weight: 700;
}
.title_02 .en {
  margin-top: 4px;
  font-size: 0.8125em;
  font-weight: 700;
  color: #939598;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 961px) {
  .title_02 .ja {
    font-size: 1.25em;
  }
}

.title_03 .ja {
  margin-top: 20px;
  font-size: 1.2em;
  color: #00557f;
  font-weight: 700;
}
@media screen and (max-width: 961px) {
  .title_03 .ja {
    font-size: 1.1em;
  }
}

/*========== 汎用レイアウト ==========*/
/*==========
ヘッダー
==========*/
#header {
  width: 100%;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}
#header .flex_box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: var(--headerHeight);
}

.list_header {
  margin-top: 1em;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.list_header > * {
  font-weight: 500;
  text-align: center;
}
.list_header > *:not(:first-of-type) {
  margin-left: 60px;
}
.list_header .ja {
  color: #00557f;
}
.list_header .en {
  color: #939598;
  font-size: 0.75em;
  font-family: "Montserrat", sans-serif;
}
.list_header a {
  display: block;
  position: relative;
}
.list_header a::after {
  content: "";
  width: 0em;
  height: 2px;
  background-color: #939598;
  position: absolute;
  left: 50%;
  bottom: -0.25em;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: width 0.5s;
  transition: width 0.5s;
}
.list_header a:hover::after {
  width: 2em;
}

.list_header .menu_item{
	position: relative;
}
.list_header .menu_sub_container {
    display: none;
    padding: 12px 0;
	width: 12em;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
	background-color: #005cb9;
	color: #FFFFFF;
}

.list_header .menu_item:hover .menu_sub_container {
    display: block;
}
.list_header .menu_sub_container .menu_sub_list {
	line-height: 2em;
}
.list_header .menu_sub_container a::after {
  background-color: #FFFFFF;
}

/*==========
ハンバーガーメニュー
==========*/
@media screen and (max-width: 961px) {
  #header .logo_area {
    max-width: 100px;
  }
  #header .menu_area {
    position: fixed;
    width: 100vw;
    height: 0;
    background-color: #005cb9;
    left: 0;
    top: var(--headerHeight);
    z-index: 99;
    will-change: height;
    -webkit-transition: height 0.5s;
    transition: height 0.5s;
    overflow: hidden;
  }
  .list_header {
    width: 100%;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .list_header > *:not(:first-of-type) {
    margin-left: 0px;
    margin-top: 2em;
  }
  .list_header .ja {
    color: #fff;
  }
  .list_header .en {
    color: #fff;
  }
  .list_header a::after {
    display: none;
  }
	.list_header .menu_item .menu_sub_container {
		display: block;
		position: static;
    padding: 0;
	width:auto;
    left:auto;
    transform:none;
	background-color: #0076ee;
	color: #FFFFFF;
	}
}
.humberger_btn {
  display: none;
  position: relative;
  width: calc(var(--headerHeight) / 1.75);
  height: calc(var(--headerHeight) / 1.75);
  border-radius: 50%;
  background-color: #005cb9;
  cursor: pointer;
}
.humberger_btn span {
  display: block;
  width: 40%;
  height: 2px;
  background-color: #fff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}
.humberger_btn span:nth-child(1) {
  top: calc(var(--headerHeight) / 5);
}
.humberger_btn span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.humberger_btn span:nth-child(3) {
  bottom: calc(var(--headerHeight) / 5);
}
@media screen and (max-width: 961px) {
  .humberger_btn {
    display: block;
  }
}

#header.open .menu_area {
  height: calc(100vh - var(--headerHeight));
}
#header.open .humberger_btn span:nth-child(1) {
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  top: 50%;
}
#header.open .humberger_btn span:nth-child(2) {
  height: 0;
  opacity: 0;
}
#header.open .humberger_btn span:nth-child(3) {
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(-45deg);
          transform: translateY(50%) rotate(-45deg);
}

/*==========
フッター
==========*/
#footer .row_company {
  background-color: #f5f5f5;
  padding-top: 20px;
  padding-bottom: 20px;
}
#footer .row_menu {
  color: #fff;
  background-color: #00557f;
  border-bottom: 1px solid #3a98c7;
  padding-top: 20px;
  padding-bottom: 40px;
}
#footer .row_copyright {
  line-height: 1.75;
  text-align: right;
  color: #fff;
  background-color: #00557f;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 0.8125em;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 961px) {
  #footer .row_company .img_area {
    width: 80px;
  }
  #footer .row_menu {
    padding-top: 1em;
    padding-bottom: 2em;
  }
  #footer .row_copyright {
    padding-top: 1em;
    padding-bottom: 1em;
  }
}

.list_footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.list_footer > * {
  margin: 0 20px;
}
.list_footer .ja::before {
  content: "-";
  margin-right: 0.25em;
}
.list_footer .en {
  font-size: 0.75em;
  font-family: "Montserrat", sans-serif;
  margin-left: 0.85em;
  margin-top: 2px;
}
.list_footer a {
  display: block;
  position: relative;
}
.list_footer a::after {
  content: "";
  width: 0px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 0.65em;
  bottom: -0.25em;
  -webkit-transition: width 0.5s;
  transition: width 0.5s;
}
.list_footer a:hover::after {
  width: calc(100% - 0.5em);
}
@media screen and (max-width: 961px) {
  .list_footer {
    display: block;
  }
  .list_footer > * {
    margin: 1em 0;
  }
  .list_footer a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .list_footer a::after {
    display: none;
  }
}

/*==========
PageToTop
==========*/
/*==========
ディスクレーマー
==========*/
#disclaimer {
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 9999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#disclaimer .bg_white {
  background-color: #fff;
  width: 90vw;
  height: 80vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 20px;
}
#disclaimer .inner_contents {
  padding-top: 40px;
  padding-bottom: 40px;
  overflow: auto;
}
#disclaimer .bg_light_blue {
  background-color: #edf6fa;
  padding: 40px;
  text-align: center;
}
#disclaimer .title {
  font-size: 2em;
  font-weight: 700;
}
@media screen and (max-width: 961px) {
  #disclaimer .bg_light_blue {
    padding: 24px 24px;
  }
  #disclaimer .title {
    font-size: 1.25em;
  }
  #disclaimer .btn_02.mt_40 {
    margin-top: 24px;
  }
}

/*==========
Effect
==========*/
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
@-webkit-keyframes slideLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-80px);
            transform: translateX(-80px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slideLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-80px);
            transform: translateX(-80px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes slideRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(80px);
            transform: translateX(80px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slideRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(80px);
            transform: translateX(80px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.js_trigger#disclaimer {
  opacity: 0;
  will-change: opacity;
  -webkit-transition: opacity 0.25s ease-in;
  transition: opacity 0.25s ease-in;
}
.js_trigger#mv .img_area {
  will-change: transform, opacity;
  -webkit-transform: translateX(-80px);
          transform: translateX(-80px);
  opacity: 0;
}
.js_trigger#mv .mv_text {
  opacity: 0;
  will-change: opacity;
}
.js_trigger#mv #index_news {
  will-change: transform, opacity;
  -webkit-transform: translateX(80px);
          transform: translateX(80px);
  opacity: 0;
}
.js_trigger.company_block:nth-of-type(odd) .img_area {
  will-change: transform, opacity;
  -webkit-transform: translateX(-80px);
          transform: translateX(-80px);
  opacity: 0;
}
.js_trigger.company_block:nth-of-type(odd) .text_area {
  will-change: transform, opacity;
  -webkit-transform: translateX(80px);
          transform: translateX(80px);
  opacity: 0;
}
.js_trigger.company_block:nth-of-type(even) .img_area {
  will-change: transform, opacity;
  -webkit-transform: translateX(80px);
          transform: translateX(80px);
  opacity: 0;
}
.js_trigger.company_block:nth-of-type(even) .text_area {
  will-change: transform, opacity;
  -webkit-transform: translateX(-80px);
          transform: translateX(-80px);
  opacity: 0;
}

.trigger#disclaimer {
  opacity: 1;
}
.trigger#mv .img_area {
  -webkit-animation-name: slideLeft;
          animation-name: slideLeft;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.trigger#mv .mv_text {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
}
.trigger#mv #index_news {
  -webkit-animation-name: slideRight;
          animation-name: slideRight;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.trigger.company_block:nth-of-type(odd) .img_area {
  -webkit-animation-name: slideLeft;
          animation-name: slideLeft;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.trigger.company_block:nth-of-type(odd) .text_area {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-name: slideRight;
          animation-name: slideRight;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.trigger.company_block:nth-of-type(even) .img_area {
  -webkit-animation-name: slideRight;
          animation-name: slideRight;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.trigger.company_block:nth-of-type(even) .text_area {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-name: slideLeft;
          animation-name: slideLeft;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

.fadeIn {
  opacity: 0;
  will-change: opacity;
}
.fadeIn.trigger {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
}

.fadeUp {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  will-change: transform, opacity;
}
.fadeUp.trigger {
  -webkit-animation-name: fadeUp;
          animation-name: fadeUp;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

.fadeUpList > * {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  will-change: transform, opacity;
}
.fadeUpList.trigger > * {
  -webkit-animation-name: fadeUp;
          animation-name: fadeUp;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

.slideLeft {
  will-change: transform, opacity;
  -webkit-transform: translateX(-80px);
          transform: translateX(-80px);
  opacity: 0;
}
.slideLeft.trigger {
  -webkit-animation-name: slideLeft;
          animation-name: slideLeft;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

.slideRight {
  will-change: transform, opacity;
  -webkit-transform: translateX(80px);
          transform: translateX(80px);
  opacity: 0;
}
.slideRight.trigger {
  -webkit-animation-name: slideRight;
          animation-name: slideRight;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

.control-number{
	font-size: 0.5em;
	width: 100%;
	max-width: calc(1328px + 24px * 2);
	padding-left: 24px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	bottom: 30px;
	height: 0;
}

/*==========
event calender
==========*/
#event .month_item_aline{
        padding-bottom: auto;
        padding-top: auto;
    }
#event .month_text{
    width: 100%;
    display: flex;
    align-items: center;
}
@media(max-width:961px){
    #event .month_text{
        display: block;
    }
}
#event .month_text_right{
    margin-left: auto;
    display: block;
    text-align: right;
    font-size: 0.6em;
}
@media(max-width:961px){
    #event .month_text_right{
        padding: 10px 0 10px 0; 
    }
}