:root {
  --font-root: 'Noto Sans JP', sans-serif;
  --font-helvetica: Helvetica, Arial, sans-serif;
  --font-bebas-neue: 'Bebas Neue', cursive;
  --font-serif-hk: "Noto Serif HK", serif;
  --font-serif-jp: "Noto Serif JP", serif;
  --line-height: 1.5625;
  --font-weight-root: 400;
  --font-size-root: 10px;
  --font-size: 1.6rem;
  --font-size-h1: 2.4rem;
  --font-size-h2: 2.2rem;
  --font-size-h3: 2rem;
  --font-size-h4: 1.8rem;
  --font-size-h5: 1.6rem;
  --font-size-h6: 1.4rem;
  --color-primary: #2567AB;
  --color-link: #222;
  --color-link-hover: #2567AB;
  --color-highlight: #C00;
  --color-grey: #ccc;
  --color-white: #fff;
  --color-black: #000;
  --bg-footer: #f8f8f8;
  --bg-root: #fff;
  --bg-hover: #2567AB;
  --color-root: #222;
  --color-hover: #2567AB;
}

/* stylelint-disable */
/* ******************************************************************

    --common.css--

    0. BoxModel change

    1. Common setting
        1-1. Reset styles
        1-2. Font styles
        1-3. General styles
        1-4. Text styles
        1-5. List styles
        1-6. CSS3 common styles

****************************************************************** */
/*==================================================================
    0. BoxModel change
===================================================================*/
/*==================================================================
    1. Common setting
===================================================================*/
/* ------------------------------------------------------------------
    1-1. Reset styles
-------------------------------------------------------------------*/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
object,
iframe,
pre,
code,
p,
blockquote,
form,
fieldset,
legend,
table,
th,
td,
caption,
tbody,
tfoot,
thead,
article,
aside,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
audio,
video,
canvas {
  margin: 0;
  padding: 0;
}

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

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden] {
  display: none;
}

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

fieldset,
img {
  border: none;
}

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

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

caption,
th {
  text-align: left;
}

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

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

abbr,
acronym {
  border: none;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

legend {
  color: #000;
}

a img,
map a {
  border: none;
}

a:hover,
a:active,
a:focus {
  outline: 0;
}

embed {
  width: 100%;
}

audio,
canvas,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

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

object,
embed {
  height: 100%;
}

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

/* Font styles
-------------------------------------------------------------------*/
select,
input,
button,
textarea,
button {
  font-size: inherit;
}

table {
  font-size: inherit;
  font: 100%;
}

pre,
code,
kbd,
samp,
tt {
  font-family: monospace;
  line-height: 1;
}

/* General styles
-------------------------------------------------------------------*/
table {
  empty-cells: show;
}

input {
  line-height: 1;
}

form img,
input,
select {
  vertical-align: middle;
}

textarea {
  resize: none;
}

select {
  padding: 1px;
}

label {
  margin-right: 5px;
}

legend {
  display: none;
}

input[type=text],
input[type=password],
textarea {
  padding: 3px 4px 0 3px;
  border: 1px solid #999;
  border-right: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  font-size: 1.3rem;
}

/* ------------------------------------------------------------------
    1-2. VisualFormattingModel styles
-------------------------------------------------------------------*/
.noDisplay {
  display: none;
}

.block {
  display: block !important;
}

.inline {
  display: inline !important;
}

.inlineBlock {
  display: inline-block !important;
}

.static {
  position: static !important;
}

.relative {
  position: relative !important;
}

.absolute {
  position: absolute !important;
}

.fixed {
  position: fixed !important;
}

.leftBox {
  float: left;
}

.rightBox {
  float: right;
}

.nofloat {
  float: none !important;
}

.clearfix {
  zoom: 1;
}

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

.clear {
  clear: both !important;
}

a.hover:hover,
input.hover:hover {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
}

/* ------------------------------------------------------------------
    1-3. BoxModel styles
-------------------------------------------------------------------*/
.auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.mt0,
.mv0,
.ma0 {
  margin-top: 0 !important;
}

.mr0,
.mh0,
.ma0 {
  margin-right: 0 !important;
}

.mb0,
.mv0,
.ma0 {
  margin-bottom: 0 !important;
}

.ml0,
.mh0,
.ma0 {
  margin-left: 0 !important;
}

.pt0,
.pv0,
.pa0 {
  padding-top: 0 !important;
}

.pr0,
.ph0,
.pa0 {
  padding-right: 0 !important;
}

.pb0,
.pv0,
.pa0 {
  padding-bottom: 0 !important;
}

.pl0,
.ph0,
.pa0 {
  padding-left: 0 !important;
}

.mt5,
.mv5,
.ma5 {
  margin-top: 5px !important;
}

.mr5,
.mh5,
.ma5 {
  margin-right: 5px !important;
}

.mb5,
.mv5,
.ma5 {
  margin-bottom: 5px !important;
}

.ml5,
.mh5,
.ma5 {
  margin-left: 5px !important;
}

.pt5,
.pv5,
.pa5 {
  padding-top: 5px !important;
}

.pr5,
.ph5,
.pa5 {
  padding-right: 5px !important;
}

.pb5,
.pv5,
.pa5 {
  padding-bottom: 5px !important;
}

.pl5,
.ph5,
.pa5 {
  padding-left: 5px !important;
}

.mt10,
.mv10,
.ma10 {
  margin-top: 10px !important;
}

.mr10,
.mh10,
.ma10 {
  margin-right: 10px !important;
}

.mb10,
.mv10,
.ma10 {
  margin-bottom: 10px !important;
}

.ml10,
.mh10,
.ma10 {
  margin-left: 10px !important;
}

.pt10,
.pv10,
.pa10 {
  padding-top: 10px !important;
}

.pr10,
.ph10,
.pa10 {
  padding-right: 10px !important;
}

.pb10,
.pv10,
.pa10 {
  padding-bottom: 10px !important;
}

.pl10,
.ph10,
.pa10 {
  padding-left: 10px !important;
}

.mt20,
.mv20,
.ma20 {
  margin-top: 20px !important;
}

.mr20,
.mh20,
.ma20 {
  margin-right: 20px !important;
}

.mb20,
.mv20,
.ma20 {
  margin-bottom: 20px !important;
}

.ml20,
.mh20,
.ma20 {
  margin-left: 20px !important;
}

.pt20,
.pv20,
.pa20 {
  padding-top: 20px !important;
}

.pr20,
.ph20,
.pa20 {
  padding-right: 20px !important;
}

.pb20,
.pv20,
.pa20 {
  padding-bottom: 20px !important;
}

.pl20,
.ph20,
.pa20 {
  padding-left: 20px !important;
}

.mt30,
.mv30,
.ma30 {
  margin-top: 30px !important;
}

.mr30,
.mh30,
.ma30 {
  margin-right: 30px !important;
}

.mb30,
.mv30,
.ma30 {
  margin-bottom: 30px !important;
}

.ml30,
.mh30,
.ma30 {
  margin-left: 30px !important;
}

.pt30,
.pv30,
.pa30 {
  padding-top: 30px !important;
}

.pr30,
.ph30,
.pa30 {
  padding-right: 30px !important;
}

.pb30,
.pv30,
.pa30 {
  padding-bottom: 30px !important;
}

.pl30,
.ph30,
.pa30 {
  padding-left: 30px !important;
}

.mt40,
.mv40,
.ma40 {
  margin-top: 40px !important;
}

.mr40,
.mh40,
.ma40 {
  margin-right: 40px !important;
}

.mb40,
.mv40,
.ma40 {
  margin-bottom: 40px !important;
}

.ml40,
.mh40,
.ma40 {
  margin-left: 40px !important;
}

.pt40,
.pv40,
.pa40 {
  padding-top: 40px !important;
}

.pr40,
.ph40,
.pa40 {
  padding-right: 40px !important;
}

.pb40,
.pv40,
.pa40 {
  padding-bottom: 40px !important;
}

.pl40,
.ph40,
.pa40 {
  padding-left: 40px !important;
}

.bt0,
.ba0 {
  border-top: none !important;
}

.br0,
.ba0 {
  border-right: none !important;
}

.bb0,
.ba0 {
  border-bottom: none !important;
}

.bl0,
.ba0 {
  border-left: none !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

/* ------------------------------------------------------------------
    1-4. Text styles
-------------------------------------------------------------------*/
strong,
.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

.note {
  margin-left: 1em;
  text-indent: -1em;
}

.f10 {
  font-size: 77%;
}

.f11 {
  font-size: 85%;
}

.f12 {
  font-size: 93%;
}

.f14 {
  font-size: 108%;
}

.f15 {
  font-size: 116%;
}

.f16 {
  font-size: 123.1%;
}

.f17 {
  font-size: 131%;
}

.f18 {
  font-size: 138.5%;
}

.f19 {
  font-size: 146.5%;
}

.f20 {
  font-size: 153.9%;
}

.f21 {
  font-size: 161.6%;
}

.f22 {
  font-size: 167%;
}

.f23 {
  font-size: 174%;
}

.f24 {
  font-size: 182%;
}

.f25 {
  font-size: 189%;
}

.f26 {
  font-size: 197%;
}

.red {
  color: #C00;
}

.white {
  color: #FFF;
}

.grayC {
  color: #CCC;
}

.gray9 {
  color: #999;
}

.gray6 {
  color: #666;
}

.gray3 {
  color: #333;
}

.black {
  color: #000;
}

.middle {
  vertical-align: middle !important;
}

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

.left {
  text-align: left !important;
}

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

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

/* ------------------------------------------------------------------
    1-5. List styles
-------------------------------------------------------------------*/
.disc {
  padding-left: 2em;
  list-style: disc;
}

.circle {
  padding-left: 2em;
  list-style: circle;
}

.decimal {
  padding-left: 2.4em;
  list-style: decimal;
}

/* ------------------------------------------------------------------
    1-6. CSS3 common styles
-------------------------------------------------------------------*/
.boxShadow {
  -webkit-box-shadow: 0 0 5px #DDD;
  box-shadow: 0 0 5px #DDD;
}

.textShadowW {
  text-shadow: 0 1px 0 #E7E7E7;
}

.textShadowB {
  text-shadow: 0 1px 0 #111;
}

.radius5 {
  border-radius: 5px;
}

.radius10 {
  border-radius: 10px;
}

/**
 * Lenis smooth scroll
 */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

/**
 * Set up a decent box model on the root element
 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-x: hidden;
  background-color: var(--bg-root);
  font-size: var(--font-size-root);
}

/**
 * Make all elements from the DOM inherit from the parent box-sizing
 * Since `*` has a specificity of 0, it does not override the `html` value
 * making all elements inheriting from the root box-sizing value
 * See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  color: var(--color-root);
  font-weight: normal;
  font-size: 1.3rem;
  font-family: var(--font-root);
  line-height: 1.4;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  word-wrap: break-word;
}

/**
 * Basic styles for links
 */
/**
 * Clear inner floats
 */
.clearfix::after {
  clear: both;
  content: "";
  display: table;
}

/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *    See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
.hide-text {
  overflow: hidden;
  padding: 0;
  /* 1 */
  text-indent: 101%;
  white-space: nowrap;
}

/**
 * Hide element while making it readable for screen readers
 * Shamelessly borrowed from HTML5Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L119-L133
 */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.inner {
  width: 100%;
  max-width: 1070px;
  margin: 0 auto;
  padding: 0 20px;
}

#contents {
  width: 100%;
  min-height: calc(100vh - 260px);
}

@media only screen and (max-width: 992px) {
  #contents {
    min-height: calc(100vh - 120px);
  }
}
@media only screen and (max-width: 768px) {
  #contents {
    min-height: calc(100vh - 55px);
  }
}
.d-block {
  display: block !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

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

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

.fw-bold {
  font-weight: bold;
}

.align-items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mt-0 {
  margin-top: 0px !important;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.mr-0 {
  margin-right: 0px !important;
}

.ml-0 {
  margin-left: 0px !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.mr-5 {
  margin-right: 5px !important;
}

.ml-5 {
  margin-left: 5px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.ml-15 {
  margin-left: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.mr-25 {
  margin-right: 25px !important;
}

.ml-25 {
  margin-left: 25px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.w-100 {
  width: 100px !important;
}

.w-150 {
  width: 150px !important;
}

.w-170 {
  width: 170px !important;
}

.w-200 {
  width: 200px !important;
}

.w-300 {
  width: 300px !important;
}

.h-150 {
  height: 150px !important;
}

.h-300 {
  height: 300px !important;
}

.h-500 {
  height: 500px !important;
}

.e-icon {
  height: 1em;
  -webkit-transition: fill 0.3s, stroke 0.3s, -webkit-transform 0.3s;
  transition: fill 0.3s, stroke 0.3s, -webkit-transform 0.3s;
  transition: fill 0.3s, stroke 0.3s, transform 0.3s;
  transition: fill 0.3s, stroke 0.3s, transform 0.3s, -webkit-transform 0.3s;
  width: 1em;
}

.e-btn, .e-btn--primary {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--color-primary);
  border-width: 0;
  border-radius: 3px;
  color: var(--color-white) !important;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  outline: none;
  height: 40px;
  line-height: 1.2;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 150px;
  text-decoration: none !important;
}
.e-btn:hover, .e-btn--primary:hover {
  color: var(--color-white) !important;
  cursor: pointer;
}
@media only screen and (min-width: 1025px) {
  .e-btn, .e-btn--primary {
    -webkit-transition: background-color 0.3s, color 0.3s;
    transition: background-color 0.3s, color 0.3s;
  }
}

.e-link--icon {
  color: #111;
  display: inline-block;
  text-decoration: none;
}
.e-link--icon svg {
  font-size: 1.8rem;
  fill: currentColor;
  margin-bottom: -4px;
  margin-right: 5px;
}
@media only screen and (min-width: 1025px) {
  .e-link--icon {
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .e-link--icon:hover {
    color: var(--color-primary);
    text-decoration: none;
  }
}

.e-headline--primary {
  color: var(--color-black);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.2;
  padding-left: 8px;
  padding-top: 2px;
  border-left: 4px solid var(--color-black);
}
.e-headline--fill {
  margin-bottom: 10px;
}
.e-headline--fill span {
  display: inline;
  color: #fff;
  font-size: 3rem;
  font-weight: 500;
  line-height: 2.3;
  background: #002876;
  padding: 8px 11px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.e-headline__line {
  position: relative;
  margin-bottom: 60px;
  padding-top: 20px;
  font-size: 2.4rem;
  font-weight: 700;
}
.e-headline__line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #0051A4 0, #0051A4 114px, #DDD 114px, #DDD 100%);
}
.e-headline__line span {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  padding-top: 7px;
}
.e-headline__line--sm {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  padding-top: 5px;
}
.e-headline01 {
  margin-bottom: 25px;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.666;
}
.e-headline02 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 80px;
}
.e-headline02__sm {
  display: block;
  font-size: 2.4rem;
  padding-top: 7px;
}
@media only screen and (max-width: 768px) {
  .e-headline01 {
    margin-bottom: 20px;
    font-size: 2.3rem;
    line-height: 1.5;
  }
  .e-headline02 {
    font-size: 2.1rem;
    margin-bottom: 30px;
  }
  .e-headline02__sm {
    font-size: 1.3rem;
  }
  .e-headline--fill {
    margin-top: -4px;
    margin-bottom: 7px;
  }
  .e-headline--fill span {
    font-size: 2rem;
    line-height: 2;
    padding: 3px 6px;
  }
  .e-headline__line {
    margin-bottom: 30px;
    padding-top: 15px;
    font-size: 1.6rem;
  }
  .e-headline__line::before {
    height: 2px;
    background: linear-gradient(to right, #0051A4 0, #0051A4 80px, #DDD 80px, #DDD 100%);
  }
  .e-headline__line span {
    font-size: 1.1rem;
  }
  .e-headline__line--sm {
    font-size: 1.4rem;
  }
}

.e-txt, .e-txt--suggest, .e-txt--error {
  font-size: 1.3rem;
  line-height: 1.4;
}
.e-txt mark, .e-txt--suggest mark, .e-txt--error mark {
  background-color: transparent;
  color: #C00;
  font-weight: 700;
}
.e-txt a, .e-txt--suggest a, .e-txt--error a {
  color: var(--color-primary);
  text-decoration: none;
}
.e-txt a:hover, .e-txt--suggest a:hover, .e-txt--error a:hover {
  text-decoration: underline;
}
.e-txt--error {
  color: red;
}
.e-txt--suggest {
  color: green;
}
.e-txt01 {
  font-size: 1.6rem;
  line-height: 2.5;
  font-weight: 400;
}
.e-txt02 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.75;
}
.e-txt03 {
  font-size: 1.6rem;
  line-height: 2.2;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .e-txt01 {
    font-size: 1.3rem;
    line-height: 1.9;
  }
  .e-txt02 {
    font-size: 1.5rem;
    line-height: 1.7;
  }
}

.e-msg, .e-msg--icon {
  background-color: #FFE0E6;
  border: 1px solid #FF8282;
  border-radius: 4px;
  padding: 15px;
}
.e-msg svg, .e-msg--icon svg {
  fill: #f00;
  font-size: 1.8rem;
  margin-bottom: -4px;
  margin-right: 5px;
}
.e-msg--icon {
  color: #f00;
}
.e-msg--icon li:not(:last-child) {
  margin-bottom: 10px;
}

.e-textbox {
  font-size: 0;
}
.e-textbox textarea,
.e-textbox input {
  background-color: var(--color-white);
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1.3rem;
  height: 40px;
  padding: 10px;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  width: 100%;
}
.e-textbox textarea:focus,
.e-textbox input:focus {
  border-color: var(--color-primary);
  outline: none;
}

.e-select {
  font-size: 0;
  max-width: 92%;
}
.e-select select {
  background-color: var(--color-white);
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1.3rem;
  height: 40px;
  padding: 10px;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  width: 100%;
}
.e-select select:focus {
  border-color: var(--color-primary);
  outline: none;
}

.e-checkbox input {
  border-width: 0;
  font-size: 1.3rem;
  height: 0;
  left: 0;
  line-height: 0;
  position: absolute;
  top: 0;
  width: 0;
}
.e-checkbox input:checked + label::after {
  opacity: 1;
}
.e-checkbox label {
  color: #606060;
  padding-left: 25px;
  padding-top: 1px;
  position: relative;
}
.e-checkbox label::after {
  background: #fff url("../img/admin/icon/icon_checked.png") no-repeat center center/100%;
  border: 1px solid #ddd;
  border-radius: 3px;
  content: "";
  display: inline-block;
  height: 18px;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  width: 18px;
  z-index: 2;
}
.e-checkbox label::before {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 3px;
  content: "";
  display: inline-block;
  height: 18px;
  left: 0;
  position: absolute;
  top: 0;
  width: 18px;
  z-index: 1;
}
.e-checkbox label:hover {
  cursor: pointer;
}

.e-radio input {
  border-width: 0;
  font-size: 1.3rem;
  height: 0;
  left: 0;
  line-height: 0;
  position: absolute;
  top: 0;
  width: 0;
}
.e-radio input:checked + label::before {
  border-color: var(--color-primary);
}
.e-radio input:checked + label::after {
  opacity: 1;
}
.e-radio label {
  color: #606060;
  padding-left: 25px;
  padding-top: 1px;
  position: relative;
}
.e-radio label::after {
  background-color: var(--color-primary);
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 10px;
  left: 4px;
  opacity: 0;
  position: absolute;
  top: 4px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  width: 10px;
  z-index: 2;
}
.e-radio label::before {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 18px;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  width: 18px;
  z-index: 1;
}
.e-radio label:hover {
  cursor: pointer;
}

.e-status, .e-status--rough, .e-status--check, .e-status--unsupported, .e-status--public {
  border-radius: 15px;
  color: #fff;
  display: inline-block;
  font-weight: 700;
  padding: 5px;
  text-align: center;
  width: 70px;
}
.e-status--public {
  background-color: #447ECC;
}
.e-status--unsupported {
  background-color: #c00;
}
.e-status--check {
  background-color: #f90;
}
.e-status--rough {
  background-color: #aaa;
}

.c-top__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding: 25px 20px;
  position: relative;
}
.c-top__section--bgBlue {
  background: rgba(0, 40, 118, 0.16);
  padding-top: 95px;
  padding-bottom: 110px;
}
.c-top__section--message {
  background: url("../img/home/img_bnr_message.webp") no-repeat right center;
  background-size: cover;
  min-height: 500px;
}
.c-top__section--message::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#002876), to(rgba(0, 20, 59, 0)));
  background: linear-gradient(to right, #002876, rgba(0, 20, 59, 0));
  opacity: 0.15;
  z-index: -1;
}
.c-top__section--history {
  background: url("../img/home/img_bnr_history.jpg") no-repeat center center;
  background-size: cover;
  min-height: 500px;
}
.c-top__section--overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#002876), to(rgba(0, 20, 59, 0)));
  background: linear-gradient(to right, #002876, rgba(0, 20, 59, 0));
  opacity: 0.15;
}
.c-top__section--roundtable {
  padding-top: 80px;
  padding-bottom: 120px;
}
.c-top__section--roundtable-gap {
  gap: 35px;
}
.c-top__section--other {
  padding-top: 90px;
  padding-bottom: 136px;
}
.c-top__section--other-gap {
  gap: 40px;
}
.c-top__section--image {
  margin-top: 10px;
  margin-bottom: 10px;
}
.c-top__section--image img {
  border-radius: 10px;
}
.c-top__headline {
  color: #fff;
  font-family: var(--font-bebas-neue);
  font-size: 10rem;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.4px;
}
.c-top__headline--blue {
  color: #002876;
}
.c-top__headline--blue > span::before, .c-top__headline--blue > span::after {
  background-color: #002876 !important;
}
.c-top__headline--md {
  font-size: 9rem;
}
.c-top__headline > span {
  font-family: var(--font-root);
  display: block;
  font-size: 2rem;
  line-height: 1.5;
  text-align: center;
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 3px auto 0;
  letter-spacing: 1.5px;
  font-weight: 500;
}
.c-top__headline > span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -90px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 70px;
  height: 2px;
  background-color: #FFF;
}
.c-top__headline > span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -90px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 70px;
  height: 2px;
  background-color: #FFF;
}
.c-top__btn {
  background-color: #009DE8;
  width: 100%;
  max-width: 340px;
  color: #fff;
  text-decoration: none;
  font-size: 1.8rem;
  line-height: 1.4;
  padding: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  border-radius: 4px;
  position: relative;
  text-indent: -1em;
}
.c-top__btn::before {
  content: "";
  position: absolute;
  background: url("../img/common/icon_arrow_right.svg") no-repeat center;
  background-size: cover;
  width: 12px;
  aspect-ratio: 12/10;
  right: 110px;
  top: 52%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: right 0.3s ease-in-out;
  transition: right 0.3s ease-in-out;
}
.c-top__btn--left {
  text-indent: 30px;
}
.c-top__btn--left::before {
  background-image: url("../img/common/icon_arrow_left.svg");
  left: 110px;
  right: auto;
  -webkit-transition: left 0.3s ease-in-out;
  transition: left 0.3s ease-in-out;
}
@media only screen and (min-width: 1025px) {
  .c-top__btn:hover {
    opacity: 0.9;
  }
  .c-top__btn:hover::before {
    right: 100px;
  }
  .c-top__btn--left:hover::before {
    left: 100px;
  }
}
.c-top__info {
  position: absolute;
  bottom: 25px;
  z-index: 9;
  color: #fff;
  text-align: right;
}
.c-top__info-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 14px;
  margin-top: 78px;
}
.c-top__info-pos {
  font-family: var(--font-serif-jp);
  font-size: 1.4rem;
  display: block;
  padding-top: 2px;
}
.c-top__info-name {
  font-family: var(--font-serif-hk);
  display: block;
  font-size: 2.2rem;
  line-height: 1.4;
}
.c-top__info-name--md {
  font-size: 2.4rem;
}
.c-top__ttl {
  font-size: 1.6rem;
  line-height: 2.2;
}
.c-top__iframe {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  aspect-ratio: 1280/690;
  position: relative;
}
.c-top__iframe img,
.c-top__iframe iframe {
  aspect-ratio: 1280/690;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-top__play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 156px;
  height: 156px;
  background: url("../img/common/icon_play.svg") no-repeat center;
  background-size: cover;
  border: none;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .c-top__section {
    gap: 20px;
    padding: 50px 15px;
  }
  .c-top__section--bgBlue {
    background: rgba(0, 40, 118, 0.16);
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .c-top__section--message {
    min-height: 290px;
    background-image: url("../img/home/img_bnr_message_sp.webp");
  }
  .c-top__section--history {
    min-height: 290px;
    background-image: url("../img/home/img_bnr_history_sp.jpg");
  }
  .c-top__section--image {
    margin-top: 0;
  }
  .c-top__section--image img {
    border-radius: 5px;
  }
  .c-top__section--other {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  .c-top__headline {
    font-size: 5rem;
  }
  .c-top__headline > span {
    font-size: 1.4rem;
  }
  .c-top__headline > span::before {
    width: 35px;
    left: -46px;
  }
  .c-top__headline > span::after {
    width: 35px;
    right: -46px;
  }
  .c-top__btn {
    font-size: 1.3rem;
    gap: 6px;
    max-width: 180px;
    padding: 13px;
    border-radius: 2px;
  }
  .c-top__btn::before {
    width: 12px;
    right: 45px;
  }
  .c-top__btn--left {
    text-indent: 15px;
  }
  .c-top__btn--left::before {
    left: 45px;
    right: auto;
  }
  .c-top__ttl {
    font-size: 1.3rem;
  }
  .c-top__info {
    bottom: 10px;
  }
  .c-top__info-right {
    margin-top: 32px;
    gap: 7px;
  }
  .c-top__info-pos {
    font-size: 1rem;
  }
  .c-top__info-pos--md {
    font-size: 1.2rem;
  }
  .c-top__info-name {
    font-size: 1.5rem;
    line-height: 1.6;
  }
  .c-top__info-name--md {
    font-size: 1.7rem;
  }
  .c-top__iframe {
    border-radius: 5px;
    aspect-ratio: 690/372;
  }
  .c-top__iframe img,
  .c-top__iframe iframe {
    aspect-ratio: 690/372;
    border-radius: 5px;
  }
  .c-top__play-button {
    width: 50px;
    height: 50px;
  }
}

.c-menu {
  position: fixed;
  top: 0;
  width: 100%;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: visibility 0s 0.4s, -webkit-transform 0.4s ease-in-out;
  transition: visibility 0s 0.4s, -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, visibility 0s 0.4s;
  transition: transform 0.4s ease-in-out, visibility 0s 0.4s, -webkit-transform 0.4s ease-in-out;
  visibility: hidden;
  z-index: 11;
}
.c-menu.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  visibility: visible;
  -webkit-transition: visibility 0s 0s, -webkit-transform 0.4s ease-in-out;
  transition: visibility 0s 0s, -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, visibility 0s 0s;
  transition: transform 0.4s ease-in-out, visibility 0s 0s, -webkit-transform 0.4s ease-in-out;
}
.c-menu.hidden {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.c-menu__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  width: 100%;
  overflow-y: auto;
}
.c-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 68%;
  color: #fff;
  padding: 60px min(8vw, 100px);
  -webkit-transition: width 0.2s;
  transition: width 0.2s;
  overflow-y: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
}
.c-menu__list--gradient {
  background: -webkit-gradient(linear, left top, right top, from(#002876), color-stop(50%, #0051A4), to(#009DE8));
  background: linear-gradient(to right, #002876 0%, #0051A4 50%, #009DE8 100%);
}
.c-menu__list-sub {
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px 35px;
  padding-bottom: 22px;
  max-width: 545px;
}
.c-menu__list-sub .list-sub__item a {
  position: relative;
  display: block;
  padding-left: 20px;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #fff;
  text-decoration: none;
}
.c-menu__list-sub .list-sub__item a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
}
.c-menu__list-sub .list-sub__item a span {
  display: inline-block;
  font-size: 1.4rem;
}
.c-menu__list-sub .list-sub__item.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.c-menu__block {
  background-color: #fff;
  width: 32%;
  padding: 60px min(4vw, 60px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.c-menu__block-logo {
  aspect-ratio: 222/239;
}
.c-menu__btn {
  position: absolute;
  bottom: 60px;
  font-weight: bold;
  font-size: 1.6rem;
  gap: 15px;
  border: 1px solid #CCCCCC;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: #222;
  padding: 14px min(2vw, 38px);
  background-color: #E5E5E5;
}
.c-menu__btn > img {
  aspect-ratio: 56/50;
  width: 46px;
}
.c-menu__ttl {
  font-family: var(--font-bebas-neue);
  font-size: 4rem;
  line-height: 1.2;
  color: var(--color-white);
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  text-decoration: none;
  display: block;
  width: 100%;
  letter-spacing: 2px;
  font-weight: 700;
}
.c-menu__ttl-sub {
  font-family: var(--font-root);
  font-size: 1.6rem;
  display: block;
  line-height: 1.5;
  opacity: 0.7;
  font-weight: normal;
  margin-top: -2px;
  letter-spacing: 1px;
}
.c-menu__box {
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}
.c-menu__nav-link {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 1.2rem;
  color: #fff;
  padding: 10px 46px 10px 0;
  text-decoration: none;
  margin-right: 10px;
}
.c-menu__nav-link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: url("../img/common/icon_blank.svg") no-repeat center center;
  background-size: contain;
}
@media only screen and (max-width: 992px) {
  .c-menu__block {
    display: none;
  }
  .c-menu__list {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .c-menu__content {
    min-height: auto;
  }
  .c-menu__list {
    padding: 60px 22px;
  }
  .c-menu__list > li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.4);
  }
  .c-menu__list-sub {
    max-width: none;
    gap: 10px;
    margin-top: 8px;
    padding-bottom: 12;
  }
  .c-menu__list-sub .list-sub__item a {
    padding-left: 11px;
    font-size: 1.4rem;
  }
  .c-menu__list-sub .list-sub__item a::before {
    width: 6px;
    height: 6px;
  }
  .c-menu__list-sub .list-sub__item a span {
    font-size: 1.2rem;
  }
  .c-menu__box {
    padding-top: 20px;
  }
  .c-menu__ttl {
    font-size: 2.9rem;
    padding-top: 12px;
    padding-bottom: 12px;
    line-height: 1.1;
  }
  .c-menu__ttl-sub {
    font-size: 1rem;
    line-height: 1.4;
  }
}
@media only screen and (max-width: 375px) {
  .c-menu__list-sub li:nth-child(n+3) {
    grid-column: span 2;
  }
}

.border-b-none {
  border-bottom: none;
}

.c-header {
  width: 100%;
  padding: 20px 0;
  -webkit-transition: background-color 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  will-change: transform;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.c-header__logo {
  max-width: 313px;
  width: 100%;
}
.c-header__logo img {
  vertical-align: middle;
  width: 100%;
}
.c-header__inner {
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.c-header__hamburger {
  background-color: #009DE8;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  cursor: pointer;
  -webkit-transition: width 0.2s;
  transition: width 0.2s;
  position: relative;
  z-index: 12;
}
.c-header__hamburger > span {
  width: 33px;
  height: 2px;
  background-color: #fff;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.c-header__hamburger.active > span:first-child {
  -webkit-transform: translateY(3.5px) rotate(40deg);
          transform: translateY(3.5px) rotate(40deg);
}
.c-header__hamburger.active > span:last-child {
  -webkit-transform: translateY(-3.5px) rotate(-40deg);
          transform: translateY(-3.5px) rotate(-40deg);
}
.c-header__logo img {
  -webkit-transition: max-width 0.2s;
  transition: max-width 0.2s;
}
@media only screen and (max-width: 1200px) {
  .c-header__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .c-header {
    padding: 15px 0;
  }
  .c-header__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
  .c-header__logo {
    max-width: 202px;
  }
  .c-header__hamburger {
    width: 38px;
    height: 38px;
  }
  .c-header__hamburger > span {
    width: 17px;
    height: 1px;
  }
  .c-header__hamburger.active > span:first-child {
    -webkit-transform: translateY(3px) rotate(40deg);
            transform: translateY(3px) rotate(40deg);
  }
  .c-header__hamburger.active > span:last-child {
    -webkit-transform: translateY(-3px) rotate(-40deg);
            transform: translateY(-3px) rotate(-40deg);
  }
}

.c-navi {
  position: fixed;
  z-index: 12;
  width: 100%;
  top: 20px;
}
.c-navi__btn {
  position: absolute;
  right: 40px;
}
@media only screen and (max-width: 1200px) {
  .c-navi__btn {
    right: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .c-navi {
    top: 15px;
  }
  .c-navi__btn {
    right: 15px;
  }
}

.c-footer__logo {
  margin-bottom: 57px;
}
.c-footer__inner {
  max-width: 1320px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}
.c-footer__other {
  padding: 78px 0;
}
.c-footer__nav {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 44px;
  color: #fff;
}
.c-footer__list {
  width: 50%;
}
.c-footer__list-sub {
  padding-bottom: 0;
}
.c-footer__ttl {
  font-size: 3.8rem;
  padding-top: 12px;
  padding-bottom: 12px;
}
.c-footer__ttl-sub {
  font-size: 1.4rem;
}
.c-footer__feature {
  padding: 100px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#E2E2E2), to(#FFF));
  background: linear-gradient(to bottom, #E2E2E2 0%, #FFF 100%);
}
.c-footer__block {
  padding: 55px 0;
  background-color: #333D51;
}
.c-footer__text {
  font-size: 3.4rem;
  line-height: 1.4;
  font-weight: bold;
}
.c-footer__text--highlight {
  color: #002876;
}
.c-footer__text--md {
  font-size: 2.4rem;
  line-height: 1.5;
}
.c-footer__text--xs {
  font-size: 1.7rem;
  line-height: 1.5;
}
.c-footer__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: #222;
  padding: 15px;
  background-color: #E5E5E5;
  max-width: 360px;
  gap: 15px;
  margin: 56px auto 0;
  border: 1px solid #CCCCCC;
}
.c-footer__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-footer__box-link {
  position: relative;
  font-size: 1.4rem;
  color: #fff;
  padding: 10px 46px 10px 15px;
  text-decoration: none;
  margin-right: 10px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.c-footer__box-link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: url("../img/common/icon_blank.svg") no-repeat center center;
  background-size: contain;
}
.c-footer__box-ttl {
  font-size: 1.4rem;
  color: #fff;
  opacity: 0.5;
}
@media only screen and (min-width: 768.1px) {
  .c-footer .sp-border-none {
    border: none;
  }
}
@media only screen and (max-width: 1024px) {
  .c-footer__list-sub {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 768px) {
  .c-footer__other {
    padding: 40px 0;
  }
  .c-footer__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .c-footer__ttl {
    font-size: 2.9rem;
    padding-top: 8px;
    padding-bottom: 8px;
    line-height: 1.1;
  }
  .c-footer__ttl-sub {
    font-size: 1rem;
    line-height: 1.4;
    margin-top: -2px;
  }
  .c-footer__list {
    width: 100%;
  }
  .c-footer__list-sub {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 10px;
    margin-top: 12px;
  }
  .c-footer__feature {
    padding: 55px 0;
  }
  .c-footer__logo {
    max-width: 105px;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: 35px;
  }
  .c-footer__text {
    font-size: 1.4rem;
  }
  .c-footer__text--md {
    font-size: 1rem;
  }
  .c-footer__text--xs {
    font-size: 1.3rem;
  }
  .c-footer__btn {
    margin-top: 30px;
    max-width: 230px;
    padding: 10px;
    gap: 8px;
  }
  .c-footer__btn > img {
    max-width: 39px;
  }
  .c-footer__img-text {
    max-width: 245px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .c-footer__block {
    padding: 40px 0;
  }
  .c-footer__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
  }
  .c-footer__box-link {
    font-size: 1.1rem;
    padding-right: 39px;
  }
  .c-footer__box-link::before {
    right: 15px;
  }
  .c-footer__box-ttl {
    font-size: 1.1rem;
  }
}

.border-none {
  border: none;
}

.c-keyv__img {
  display: block;
  width: 100%;
  height: 100vh;
  position: relative;
}
.c-keyv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-keyv__img::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(26, 56, 129, 0.8)), to(rgba(26, 56, 129, 0)));
  background: linear-gradient(to top, rgba(26, 56, 129, 0.8), rgba(26, 56, 129, 0));
  z-index: 1;
  opacity: 0.72;
}
.c-keyv__inner {
  max-width: 1320px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
  position: relative;
}
.c-keyv__ttl {
  position: absolute;
  bottom: 44px;
  left: 0;
  z-index: 2;
}
.c-keyv__wrap {
  padding: 40px 0 75px;
}
.c-keyv__text {
  font-size: 4.6rem;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: 0.07em;
}
.c-keyv__text--md {
  font-size: 2.7rem;
  font-weight: 500;
  margin-top: 20px;
  line-height: 2;
}
.c-keyv__sub-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  margin-top: -60px;
}
.c-keyv__sub-logo img:last-child {
  width: 186px;
  aspect-ratio: 211/240;
}
@media only screen and (max-width: 768px) {
  .c-keyv__img {
    height: 60vh;
  }
  .c-keyv__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
  .c-keyv__ttl {
    bottom: 20px;
  }
  .c-keyv__wrap {
    padding-top: 30px;
    padding-bottom: 100px;
  }
  .c-keyv__text {
    font-size: clamp(1rem, 5vw, 2rem);
    letter-spacing: 0.05em;
  }
  .c-keyv__text--md {
    font-size: 1.2rem;
    margin-top: 12px;
  }
  .c-keyv__sub-logo {
    margin-top: 40px;
    gap: 20px;
  }
  .c-keyv__sub-logo img:first-child {
    width: 180px;
    height: auto;
  }
  .c-keyv__sub-logo img:last-child {
    width: 95px;
    height: auto;
  }
}

.c-breadcrumb {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.2rem;
  line-height: 1;
}
.c-breadcrumb > li:not(:last-child) {
  background: url("../img/common/icon_breadcrumbs.svg") no-repeat 100% 50%;
  margin-right: 10px;
  padding-right: 15px;
}
.c-breadcrumb a {
  color: #AAA;
  display: inline-block;
  text-decoration: none;
  font-weight: 400;
}
.c-breadcrumb em {
  display: inline-block;
  font-weight: 400;
  font-style: normal;
  color: #222;
}
@media only screen and (min-width: 1025px) {
  .c-breadcrumb a {
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .c-breadcrumb a:hover {
    color: var(--color-primary);
  }
}
@media only screen and (max-width: 768px) {
  .c-breadcrumb {
    display: none;
  }
}

.c-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}
.c-pagination li {
  display: inline-block;
  margin-left: 3px;
  margin-right: 3px;
}
.c-pagination li:first-child a, .c-pagination li:last-child a {
  border-radius: 100vw;
  padding-left: 9px;
  padding-right: 9px;
  width: auto;
}
.c-pagination strong,
.c-pagination a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  color: #111;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 27px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  -webkit-transition: background-color 0.25s, color 0.25s;
  transition: background-color 0.25s, color 0.25s;
  width: 27px;
}
.c-pagination strong {
  background-color: #777;
  color: var(--color-white);
  font-weight: 700;
  pointer-events: none;
}
@media only screen and (min-width: 1025px) {
  .c-pagination a {
    -webkit-transition: background-color 0.3s, color 0.3s;
    transition: background-color 0.3s, color 0.3s;
  }
  .c-pagination a:hover {
    background-color: #777;
    color: var(--color-white);
    text-decoration: none;
  }
}

.c-table {
  margin-bottom: 20px;
  overflow-x: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}
.c-table::-webkit-scrollbar {
  background-color: #e6e6e6;
  height: 10px;
  overflow: visible;
  width: 10px;
}
.c-table::-webkit-scrollbar-button {
  height: 0;
  width: 0;
}
.c-table::-webkit-scrollbar-track {
  background-clip: padding-box;
  -webkit-box-shadow: inset 1px 0 0 #e6e6e6;
          box-shadow: inset 1px 0 0 #e6e6e6;
}
.c-table::-webkit-scrollbar-track:hover {
  background-color: #f3f3f3;
  -webkit-box-shadow: inset 1px 0 0 #e6e6e6;
          box-shadow: inset 1px 0 0 #e6e6e6;
}
.c-table::-webkit-scrollbar-track:active {
  background-color: #f3f3f3;
  -webkit-box-shadow: inset 1px 0 0 #dcdcdc, inset -1px 0 0 #eeeeee;
          box-shadow: inset 1px 0 0 #dcdcdc, inset -1px 0 0 #eeeeee;
}
.c-table::-webkit-scrollbar-thumb {
  background-color: #a5a5a5;
  background-clip: padding-box;
  border: solid transparent;
  border-width: 1px 1px 1px 0px;
  min-height: 28px;
  padding: 100px 0 0;
  -webkit-box-shadow: inset 1px 1px 0 #e6e6e6, inset 0 -1px 0 #a5a5a5;
          box-shadow: inset 1px 1px 0 #e6e6e6, inset 0 -1px 0 #a5a5a5;
}
.c-table::-webkit-scrollbar-thumb:hover {
  background-color: #a5a5a5;
  -webkit-box-shadow: inset 1px 1px 1px #a5a5a5;
          box-shadow: inset 1px 1px 1px #a5a5a5;
}
.c-table::-webkit-scrollbar-thumb:active {
  background-color: #808080;
  -webkit-box-shadow: inset 1px 1px 3px #a6a6a6;
          box-shadow: inset 1px 1px 3px #a6a6a6;
}
.c-table__sum {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}
.c-table__sum strong {
  color: #f60;
  font-family: var(--font-helvetica);
  font-size: 2rem;
  margin-right: 5px;
}
.c-table__sum dt {
  line-height: 1.1;
  margin-right: 5px;
}
.c-table table {
  border: 1px solid #ccc;
  background-color: var(--color-white);
  width: 100%;
}
.c-table table th,
.c-table table td {
  border: 1px solid #ccc;
  padding: 10px;
}
.c-table table th {
  font-weight: 700;
  text-align: center;
}
.c-table table th[data-required]::after {
  content: attr(data-required);
  color: #c00;
}

.c-pagetop {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.4);
  width: 60px;
  height: 60px;
  right: 40px;
  bottom: 60px;
  border-radius: 10px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: url("../img/common/icon_arrow_up.svg");
  background-size: 25px 20px;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 5;
}
@media only screen and (max-width: 768px) {
  .c-pagetop {
    width: 40px;
    height: 40px;
    right: 10px;
    bottom: 20px;
    background-size: 21px 17px;
    border-radius: 5px;
  }
}

.c-slider {
  padding-bottom: 75px;
  width: 100%;
  overflow: hidden;
}
.c-slider__img {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.c-slider__img img {
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  border-radius: 10px;
  width: 100%;
}
@media only screen and (min-width: 1025px) {
  .c-slider__img:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .c-slider__img:hover .c-slider__btn {
    background: #009de8;
    -webkit-transform: background 0.2s ease;
            transform: background 0.2s ease;
  }
  .c-slider__img:hover .c-slider__btn::before {
    right: 15px;
  }
}
.c-slider__img.disabled {
  pointer-events: none;
}
.c-slider__img.disabled .c-slider__btn {
  background: rgba(39, 39, 39, 0.9);
}
.c-slider__img.disabled .c-slider__btn::before {
  display: none;
}
.c-slider__btn {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 12px;
  background: rgba(0, 157, 232, 0.9);
  font-size: 2.4rem;
  color: #fff;
  text-decoration: none;
  line-height: 1.4;
  text-align: center;
  border-radius: 0 0 10px 10px;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}
.c-slider__btn::before {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  aspect-ratio: 27/23;
  background: url("../img/common/icon_arrow_right.svg") no-repeat center;
  background-size: cover;
  -webkit-transition: right 0.2s ease;
  transition: right 0.2s ease;
}
.c-slider__ttl {
  font-size: 1.6rem;
  line-height: 2.2;
  margin-top: 25px;
}
.c-slider .splide__pagination__page {
  margin: 8px;
  width: 11px;
  height: 11px;
}
.c-slider .splide__pagination__page.is-active {
  background: #009DE8;
  -webkit-transform: scale(1);
          transform: scale(1);
}
@media only screen and (max-width: 768px) {
  .c-slider {
    padding-bottom: 40px;
  }
  .c-slider__img {
    border-radius: 5px;
  }
  .c-slider__img img {
    border-radius: 5px;
  }
  .c-slider__ttl {
    margin-top: 15px;
    font-size: 1.3rem;
  }
  .c-slider__btn {
    font-size: 2rem;
    border-radius: 0 0 5px 5px;
  }
  .c-slider .splide__pagination__page {
    width: 9px;
    height: 9px;
  }
}

.c-page-head {
  max-width: 1550px;
  width: 100%;
  margin: 0 auto;
  padding: 190px 15px 0;
  overflow: hidden;
  position: relative;
}
.c-page-head__inner {
  margin-bottom: 25px;
  padding-left: min(7.4vw, 120px);
}
.c-page-head__detail {
  max-width: 1310px;
  width: 100%;
  padding: 190px 15px 0;
  overflow: visible;
}
.c-page-head__title {
  margin-bottom: 70px;
  color: #222;
}
.c-page-head__title--en {
  font-size: 12.8rem;
  font-weight: 400;
  line-height: 1;
  font-family: "Bebas Neue", sans-serif;
}
.c-page-head__subtitle {
  position: relative;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 2rem;
  line-height: 1.45;
  padding-bottom: 25px;
  margin-top: -7px;
  font-weight: 500;
}
@media only screen and (min-width: 768.1px) {
  .c-page-head__subtitle::before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0;
    width: 50px;
    height: 5px;
    background: #222;
  }
}
.c-page-head__decor {
  position: absolute;
  width: 581px;
  top: 50px;
  right: 33px;
  z-index: -1;
}
.c-page-head__decor img {
  width: 100%;
}
.c-page-head .c-visual-detail {
  display: block;
}
.c-page-head .c-visual-detail img {
  vertical-align: middle;
  width: 100%;
}
@media only screen and (max-width: 1200px) {
  .c-page-head {
    padding-top: 150px;
  }
  .c-page-head__decor {
    width: 400px;
    right: 20px;
  }
  .c-page-head__title {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .c-page-head {
    padding-top: 100px;
  }
  .c-page-head__inner {
    margin-bottom: 40px;
    padding-left: 0;
  }
  .c-page-head__title {
    margin-bottom: 0;
  }
  .c-page-head__title--en {
    font-size: 6.4rem;
  }
  .c-page-head__subtitle {
    font-size: 1.1rem;
    margin-top: -5px;
  }
  .c-page-head__decor {
    max-width: 257px;
    width: 100%;
    right: 25px;
    top: 40px;
  }
}

.c-member-scroll {
  overflow: visible;
  margin-top: 30px;
}
.c-member-scroll__bar {
  height: 3px;
  background: #CCC;
  border-radius: 3px;
  margin-top: 16px;
  position: relative;
  display: none;
}
.c-member-scroll__progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: #009DE8;
  border-radius: 3px;
  -webkit-transition: -webkit-transform 0.1s linear;
  transition: -webkit-transform 0.1s linear;
  transition: transform 0.1s linear;
  transition: transform 0.1s linear, -webkit-transform 0.1s linear;
}
.c-member-scroll__text {
  display: none;
  margin-top: 9px;
  font-size: 1.1rem;
  font-weight: 500;
}
@media only screen and (max-width: 992px) {
  .c-member-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
  .c-member-scroll::-webkit-scrollbar {
    display: none;
  }
  .c-member-scroll__bar {
    display: block;
  }
  .c-member-scroll__text {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  .c-member-content {
    padding: 0 7px;
  }
  .c-member-scroll {
    margin-top: 12px;
  }
}

.c-social {
  margin-bottom: 80px;
}
.c-social-news {
  margin-top: 35px;
  margin-left: 0;
  padding-left: 0;
  list-style: none;
}
.c-social-news__item {
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 25px;
  padding: 15px 10px 15px;
  border-top: 1px solid #DDD;
}
.c-social-news__item:last-child {
  border-bottom: 1px solid #DDD;
}
.c-social-news__item {
  text-decoration: none;
  color: #222;
}
.c-social-news__item:hover:hover {
  color: #009DE8;
}
.c-social-news__date {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}
.c-social-news__text {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}
.c-social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}
.c-social-list__item {
  -ms-flex-item-align: start;
      align-self: flex-start;
  width: calc((100% - 40px) / 2);
}
.c-social-list img {
  width: 100%;
  border-radius: 10px;
  vertical-align: middle;
}
.c-social-list__space {
  margin-top: 60px;
}
.c-social-list__figcaption {
  margin-top: 10px;
  font-size: 1.2rem;
  text-align: center;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .c-social {
    margin-bottom: 40px;
  }
  .c-social-news {
    margin-top: 20px;
  }
  .c-social-news__item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 15px 5px 12px;
  }
  .c-social-news__date {
    font-size: 1.3rem;
  }
  .c-social-news__text {
    font-size: 1.3rem;
  }
  .c-social-list {
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-social-list__space {
    margin-top: 30px;
  }
  .c-social-list__item {
    width: 100%;
  }
  .c-social-list img {
    border-radius: 5px;
  }
  .c-social-list__figcaption {
    margin-top: 5px;
    font-size: 1rem;
  }
}

.c-message {
  margin-bottom: 80px;
}
.c-message__title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.7;
}
.c-message-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px 20px;
  margin-top: 35px;
}
.c-message-list__item {
  min-height: 80px;
  width: calc((100% - 60px) / 4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 7px 35px 8px 15px;
  border: 1px solid #DDDDDD;
  text-decoration: none;
  color: #222;
  position: relative;
}
.c-message-list__icon {
  position: absolute;
  display: block;
  right: 2px;
  top: 2px;
  width: 25px;
  height: calc(100% - 4px);
  background-color: #D6DCE9;
  overflow: hidden;
}
.c-message-list__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 12px;
  background: url("../img/common/icon_arrow_right_blue.svg") no-repeat center center;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-message-list__name {
  font-size: 1.8rem;
  font-weight: 500;
}
.c-message-list__position {
  margin-top: 5px;
  font-size: 1.2rem;
  font-weight: 500;
}
.c-message-list__note {
  margin-top: 10px;
  font-size: 1.2rem;
  color: #777777;
  text-align: right;
  font-weight: 400;
}
@media only screen and (min-width: 1025px) {
  .c-message-list__item:hover .c-message-list__icon::before {
    animation: arrow-move-right 0.6s forwards;
    -webkit-animation: arrow-move-right 0.6s forwards;
  }
}
@media only screen and (max-width: 992px) {
  .c-message-list__item {
    width: calc((100% - 40px) / 3);
  }
}
@media only screen and (max-width: 768px) {
  .c-message {
    margin-bottom: 40px;
  }
  .c-message-list {
    gap: 10px;
  }
  .c-message-list__item {
    min-height: 60px;
    width: calc((100% - 10px) / 2);
    padding-right: 30px;
    padding-left: 10px;
  }
  .c-message-list__icon {
    width: 20px;
  }
  .c-message-list__icon::before {
    background-size: 8px;
  }
  .c-message-list__name {
    font-size: 1.4rem;
  }
  .c-message-list__box {
    padding-left: 10px;
    padding-right: 10px;
  }
  .c-message-list__position {
    margin-top: 2px;
    font-size: 1rem;
  }
  .c-message-list__note {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 576px) {
  .c-message__title {
    font-size: 1.8rem;
  }
}

.c-company {
  border-radius: 6px;
  padding: 30px;
  background-color: rgba(0, 40, 118, 0.16);
}
.c-company__inner {
  -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
  background-color: #FFF;
  border-radius: 6px;
  padding: 40px;
}
.c-company__title {
  display: inline-block;
  margin-bottom: 25px;
  padding-bottom: 15px;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.7;
  position: relative;
}
.c-company__title::before {
  content: "";
  position: absolute;
  left: -40px;
  bottom: 0;
  width: calc(100% + 40px);
  height: 3px;
  background: #0051A4;
}
.c-company__btn {
  margin-top: 60px;
  text-align: center;
}
.c-company__btn .c-top__btn {
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .c-company {
    padding: 15px;
  }
  .c-company__inner {
    padding: 20px;
  }
  .c-company__title {
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: 1.6rem;
    line-height: 1.5;
  }
  .c-company__title::before {
    left: -20px;
    width: calc(100% + 20px);
    height: 2px;
  }
  .c-company__btn {
    margin-top: 30px;
  }
}

.is-fixed {
  position: sticky;
  top: 104px;
  left: 0;
  right: 0;
  z-index: 9;
}

.mb60sp40 {
  margin-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  .mb60sp40 {
    margin-bottom: 40px;
  }
}

.sec-wrapper {
  padding-bottom: 75px;
}
@media only screen and (max-width: 768px) {
  .sec-wrapper {
    padding-bottom: 50px;
  }
}

.b-event {
  margin-top: 55px;
}
.b-event__item {
  border-bottom: 1px solid #ddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  padding-bottom: 50px;
  margin-bottom: 40px;
}
.b-event__item__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 400px;
  width: 100%;
}
.b-event__item__left img {
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.b-event__item__left figcaption {
  font-size: 1.6rem;
  font-weight: 400;
}
.b-event__item__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.b-event__item__ttl {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.b-event__item__txt {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.5;
}
@media only screen and (max-width: 768px) {
  .b-event {
    margin-top: 30px;
  }
  .b-event__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 25px;
    margin-bottom: 20px;
    gap: 20px;
  }
  .b-event__item__left {
    gap: 10px;
    max-width: 100%;
  }
  .b-event__item__left img {
    border-radius: 5px;
  }
  .b-event__item__left figcaption {
    font-size: 1.2rem;
  }
  .b-event__item__ttl {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .b-event__item__txt {
    font-size: 1.3rem;
    line-height: 2;
  }
}

@-webkit-keyframes arrow-move-right {
  0% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 1;
  }
  45% {
    -webkit-transform: translate(30%, -50%);
            transform: translate(30%, -50%);
    opacity: 0;
  }
  55% {
    -webkit-transform: translate(-130%, -50%);
            transform: translate(-130%, -50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 1;
  }
}

@keyframes arrow-move-right {
  0% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 1;
  }
  45% {
    -webkit-transform: translate(30%, -50%);
            transform: translate(30%, -50%);
    opacity: 0;
  }
  55% {
    -webkit-transform: translate(-130%, -50%);
            transform: translate(-130%, -50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 1;
  }
}
@media only screen and (max-width: 768px) {
  .c-accordion {
    position: relative;
    overflow: visible;
    z-index: 15;
    border: 1px solid #CCC;
  }
  .c-accordion__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 8px 6px;
    font-size: 1.5rem;
    cursor: pointer;
    background-color: #fff;
  }
  .c-accordion__icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #009DE8;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    position: relative;
  }
  .c-accordion__icon::before {
    content: "";
    position: absolute;
    top: calc(50% + 1px);
    left: 50%;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid #fff;
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .c-accordion__content {
    position: absolute;
    top: calc(100% + 4px);
    left: -1px;
    right: -1px;
    max-height: 0;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid #CCC;
    border-top: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: max-height 0.3s ease, opacity 0.2s ease;
    transition: max-height 0.3s ease, opacity 0.2s ease;
    z-index: 20;
  }
  .c-accordion__title.is-active + .c-accordion__content {
    max-height: 70vh;
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .c-accordion__title.is-active .c-accordion__icon {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}

.c-list-member {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 25px;
}
.c-list-member__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.c-list-member__avatar {
  display: inline-block;
  min-width: 50px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}
.c-list-member__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-list-member__name {
  font-size: 1.6rem;
  font-weight: 700;
}
.c-list-member__name span {
  display: block;
  padding-top: 2px;
  font-size: 1rem;
  font-weight: 400;
}
@media only screen and (max-width: 992px) {
  .c-list-member {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
@media only screen and (max-width: 768px) {
  .c-list-member {
    width: auto;
    gap: 13px 15px;
  }
  .c-list-member__item {
    gap: 5px;
    min-width: 140px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .c-list-member__avatar {
    min-width: 30px;
    width: 30px;
    height: 30px;
  }
  .c-list-member__name {
    font-size: 1.1rem;
  }
  .c-list-member__name span {
    white-space: nowrap;
  }
}

.l-photo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 40px;
}
.l-photo li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.l-photo li img {
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.l-photo__txt {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.9;
  text-align: center;
}
.l-photo__txt1 {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  text-align: center;
}
.l-photo__txt span {
  display: block;
  font-size: 1.4rem;
}
.l-photo--col2 {
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (max-width: 992px) {
  .l-photo {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .l-photo__txt {
    font-size: 2rem;
    line-height: 1.6;
  }
  .l-photo__txt1 {
    font-size: 1.3rem;
    line-height: 1.6;
  }
  .l-photo__txt span {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 768px) {
  .l-photo {
    gap: 4vw;
  }
  .l-photo li img {
    border-radius: 5px;
  }
  .l-photo__txt {
    font-size: 1.2rem;
  }
  .l-photo__txt1,
  .l-photo__txt span {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 480px) {
  .l-photo {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.c-member-content {
  margin-bottom: 60px;
}
.c-member-nav__item {
  border-top: 1px solid #CCC;
  font-weight: 400;
}
.c-member-nav a {
  display: block;
  padding: 8px 7px;
  text-decoration: none;
  color: #222;
  font-size: 1.2rem;
}
@media only screen and (min-width: 1025px) {
  .c-member-nav a:hover:not(.is-active a) {
    opacity: 0.7;
  }
}
@media only screen and (min-width: 768.1px) {
  .c-member-nav {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    margin-top: 20px;
  }
  .c-member-nav::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 10px;
    bottom: 0;
    width: 1px;
    background: #DDD;
    height: calc(100% - 20px);
  }
  .c-member-nav__item {
    position: relative;
    padding-left: 20px;
    border-top: none;
  }
  .c-member-nav__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #CCC;
  }
  .c-member-nav__item.is-active {
    font-weight: 700;
  }
  .c-member-nav__item.is-active::before {
    background: #002876;
  }
  .c-member-nav a {
    font-size: 1.4rem;
    padding: 0;
  }
}
@media only screen and (max-width: 768px) {
  .c-member-content {
    margin-bottom: 35px;
  }
}

.c-illustrative__figure {
  display: block;
  margin-bottom: 55px;
}
.c-illustrative__figure img {
  width: 100%;
  vertical-align: middle;
}
@media only screen and (max-width: 768px) {
  .c-illustrative__figure {
    margin-bottom: 30px;
  }
}

.c-activities .e-txt02 {
  margin-bottom: 40px;
  padding: 0 10px;
}
.c-activities-list {
  margin-bottom: 80px;
}
.c-activities-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  padding: 23px 0;
  border-bottom: 1px solid #CCC;
}
.c-activities-list__item:first-child {
  padding-top: 0;
}
.c-activities-list__name {
  width: 63px;
  min-width: 63px;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.2;
  -ms-flex-item-align: start;
      align-self: start;
  border-radius: 50px;
  background-color: rgba(0, 81, 164, 0.5);
  margin-top: 5px;
  padding: 5px 10px;
  text-align: center;
}
.c-activities-list__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (max-width: 768px) {
  .c-activities {
    margin-top: 0;
  }
  .c-activities .e-txt02 {
    padding: 0 5px;
    margin-bottom: 26px;
  }
  .c-activities-list {
    margin-bottom: 40px;
  }
  .c-activities-list__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
    padding: 20px 5px;
  }
  .c-activities-list__name {
    width: 47px;
    min-width: 47px;
    font-size: 1.1rem;
    line-height: 1.2;
    border-radius: 25px;
    margin-top: 0;
    padding: 4px 6px;
  }
  .c-activities-list__content {
    width: 100%;
  }
}

.c-contributions__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
.c-contributions__item:not(:first-child) {
  border-top: 1px solid #DDD;
  padding-top: 60px;
  margin-top: 50px;
}
.c-contributions__info {
  min-width: 260px;
  width: 341px;
  -ms-flex-item-align: start;
      align-self: start;
}
.c-contributions__avatar {
  width: 100%;
}
.c-contributions__avatar img {
  border-radius: 10px;
  width: 100%;
  vertical-align: middle;
}
.c-contributions__name {
  margin-top: 30px;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.5;
}
.c-contributions__position {
  margin-top: 13px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
}
.c-contributions__title {
  margin-bottom: 30px;
  font-size: 4rem;
  font-weight: 700;
  color: #002876;
  line-height: 1;
}
.c-contributions__text {
  font-size: 1.6rem;
  line-height: 2.5;
  font-weight: 400;
}
.c-contributions__content {
  max-width: 880px;
  padding-top: 10px;
}
@media only screen and (max-width: 768px) {
  .c-contributions__item {
    display: block;
  }
  .c-contributions__item:not(:first-child) {
    padding-top: 30px;
    margin-top: 25px;
  }
  .c-contributions__info {
    min-width: auto;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
  .c-contributions__info--box {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .c-contributions__avatar {
    min-width: 170px;
    width: 170px;
  }
  .c-contributions__avatar img {
    border-radius: 5px;
  }
  .c-contributions__name {
    margin-top: 0;
    font-size: 1.6rem;
    line-height: 1.25;
  }
  .c-contributions__position {
    margin-top: 10px;
    font-size: 1.3rem;
    line-height: 1.5;
  }
  .c-contributions__title {
    margin-bottom: 20px;
    font-size: 2.3rem;
    line-height: 1;
  }
  .c-contributions__text {
    font-size: 1.3rem;
    line-height: 1.9;
  }
  .c-contributions__content {
    padding-top: 35px;
  }
}

.history-section {
  background-color: #ffffff;
}
.history-section__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 74px;
  padding-bottom: 60px;
  border-bottom: 1px solid #d4d4d4;
  margin-bottom: 45px;
}
.history-section__container:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.history-section__intro {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.history-section__title {
  font-size: 10rem;
  font-weight: 500;
  color: #002876;
  line-height: 1.1;
  font-family: var(--font-bebas-neue);
  padding-top: 10px;
}
.history-section__subtitle {
  font-size: 3.2rem;
  font-weight: bold;
  font-family: var(--font-bebas-neue);
  color: #002876;
  margin: -11px 0 42px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.history-section__heading {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.4;
}
.history-section__desc {
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 500;
}
.history-section__timeline {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (max-width: 768px) {
  .history-section__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    padding-bottom: 30px;
    margin-bottom: 35px;
  }
  .history-section__title {
    font-size: 4.6rem;
    padding-top: 0;
  }
  .history-section__subtitle {
    font-size: 1.6rem;
    margin: 0 0 22px;
  }
  .history-section__heading {
    font-size: 2rem;
    margin-bottom: 14px;
  }
  .history-section__desc {
    font-size: 1.3rem;
  }
}

.timeline {
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 88px;
  width: 1px;
  height: 100%;
  background-color: #d4d4d4;
}
.timeline__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 13px;
  gap: 36px;
}
.timeline__item:last-child {
  margin-bottom: 0;
}
.timeline__date {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.5;
  font-family: var(--font-bebas-neue);
  letter-spacing: 2px;
}
.timeline__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.6rem;
  line-height: 1.875;
  padding-top: 4px;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .timeline::before {
    top: 3px;
    left: 74px;
  }
  .timeline__item {
    margin-bottom: 13px;
    gap: 36px;
  }
  .timeline__date {
    font-size: 1.7rem;
  }
  .timeline__content {
    font-size: 1.3rem;
    padding-top: 0;
    line-height: 1.538;
  }
}

.l-default__container {
  padding-top: 80px;
  padding-bottom: 150px;
}
.l-default__col {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
.l-default__col--left {
  min-width: 280px;
  width: 280px;
}
.l-default__col--right {
  width: 69%;
}
.l-default__inner {
  max-width: 1310px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
@media only screen and (max-width: 992px) {
  .l-default__container {
    padding-top: 30px;
    padding-bottom: 75px;
  }
  .l-default__col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
  }
  .l-default__col--left {
    width: 100%;
  }
  .l-default__col--right {
    width: 100%;
  }
}

.mb50Sp30 {
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .mb50Sp30 {
    margin-bottom: 30px;
  }
}

.mb40Sp20 {
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .mb40Sp20 {
    margin-bottom: 20px;
  }
}

.mb20Sp10 {
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .mb20Sp10 {
    margin-bottom: 10px;
  }
}

.mt25Sp10 {
  margin-top: 25px;
}
@media only screen and (max-width: 768px) {
  .mt25Sp10 {
    margin-top: 10px;
  }
}

.pt20Sp10 {
  padding-top: 20px;
}
@media only screen and (max-width: 768px) {
  .pt20Sp10 {
    padding-top: 10px;
  }
}

.t-default {
  background-color: #fff;
  min-height: 100vh;
}/*# sourceMappingURL=style.min.css.map */