@charset "UTF-8";
/* Sanitize
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *		IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */
html {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  -webkit-tap-highlight-color: transparent; /* 4 */
  -ms-text-size-adjust: 100%; /* 5 */
  -webkit-text-size-adjust: 100%; /* 5 */
  word-break: break-word; /* 6 */
}

/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: normal;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
 * 1. Add the correct sizing in Firefox.
 * 2. Show the overflow in Edge 18- and IE.
 */
hr {
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * Add the correct display in IE.
 */
main {
  display: block;
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
img {
  max-width: 100%;
  height: auto;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: top;
}

/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
iframe {
  border-style: none;
}

/**
 * Remove the border on images within links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg:not([fill]) {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
 * ========================================================================== */
/**
 * Collapse border spacing in all browsers (opinionated).
 */
table {
  border-collapse: collapse;
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
button,
input,
select {
  margin: 0;
}

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */
button {
  overflow: visible; /* 1 */
  text-transform: none; /* 2 */
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */
fieldset {
  border: 1px solid #a0a0a0; /* 1 */
  padding: 0.35em 0.75em 0.625em; /* 2 */
}

/**
 * Show the overflow in Edge 18- and IE.
 */
input {
  overflow: visible;
}

/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */
legend {
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  white-space: normal; /* 1 */
  color: inherit; /* 2 */
}

/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the inheritance of text transform in Firefox.
 */
select {
  text-transform: none;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */
textarea {
  margin: 0; /* 1 */
  overflow: auto; /* 2 */
  resize: vertical; /* 3 */
}

/**
 * Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  padding: 0;
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.5;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove the additional :invalid styles in Firefox.
 */
:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct display in Edge 18- and IE.
 */
details {
  display: block;
}

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
 * ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* User interaction
 * ========================================================================== */
/*
 * 1. Remove the tapping delay in IE 10.
 * 2. Remove the tapping delay on clickable elements
			in all browsers (opinionated).
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation; /* 1 */
  touch-action: manipulation; /* 2 */
}

/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
[aria-busy=true] {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
[aria-controls] {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
[aria-hidden=false][hidden] {
  display: initial;
}

[aria-hidden=false][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

/**
 * Add
 */
dl dd {
  margin-left: 0;
}

figure {
  margin: 0;
}

menu {
  padding: 0;
}

picture {
  display: block;
}

p {
  margin: 0;
  padding: 0;
}

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

img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  img {
    width: 100%;
  }
}

/*--------------- form reset ------------*/
button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  font-family: inherit;
  font-size: 100%;
  display: block;
  background-color: transparent;
  padding: 0;
  margin: 0;
  border: none;
}
@media screen and (any-hover: hover) {
  button:hover {
    opacity: 0.7;
  }
}

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

input[type=checkbox], input[type=radio] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

label {
  position: relative;
  display: block;
  word-break: break-all;
}
label input[type=checkbox] + span {
  position: relative;
  padding-left: 15px;
}
label input[type=radio] + span {
  position: relative;
  padding-left: 25px;
}
label input[type=checkbox] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 1px;
}
label input[type=checkbox] + span::before {
  border-color: #1E2777;
}
label input[type=checkbox]:checked + span::before {
  background-color: #1E2777;
}
label input[type=checkbox]:checked + span::before {
  background-color: #fff;
}
label input[type=checkbox]:checked + span::after {
  border: 2px solid #313131;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
label input[type=checkbox] + span::before, label input[type=checkbox] + span::after {
  position: absolute;
  top: 7px;
  left: 0;
  display: inline-block;
  content: "";
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
label input[type=checkbox] + span::before {
  z-index: 0;
  background-color: transparent;
  width: 12px;
  height: 12px;
  border: 1px #313131 solid;
}
label input[type=checkbox] + span::after {
  z-index: 1;
  margin: 2px 4px;
  width: 6px;
  height: 9px;
}
label input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 1px;
}
label input[type=radio] + span::before {
  position: absolute;
  display: inline-block;
  content: "";
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #686868;
  border-radius: 50%;
  z-index: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background-color: transparent;
  width: 14px;
  height: 14px;
}
label input[type=radio]:checked + span::before {
  border-color: #007acc;
}
label input[type=radio]:checked + span::after {
  position: absolute;
  display: inline-block;
  content: "";
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #007acc;
  border-radius: 50%;
  z-index: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 3px;
  width: 8px;
  height: 8px;
}

/*-------- text email tel ---------*/
input[type=text], input[type=email], input[type=tel] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
}

textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
}

input[type=button], input[type=submit] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
}

button[type=submit], input[type=reset], button[type=button] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
}

/*-------- select ------------*/
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select::-ms-expand {
  display: none;
}

input[type=text], input[type=email], input[type=tel] {
  width: 100%;
  max-width: 100%;
}

textarea {
  width: 100%;
  max-width: 100%;
  resize: vertical;
  overflow: auto;
}

input[type=button] {
  color: #fff;
  border-style: none;
}
input[type=submit] {
  color: #fff;
  border-style: none;
}
input[type=submit]:hover {
  opacity: 0.5;
}

@media screen and (max-width: 767px) {
  input[type=text], input[type=email], input[type=tel] {
    width: 100%;
    font-size: calcvw(28) !important;
  }
  textarea {
    width: 100%;
    font-size: calcvw(28) !important;
  }
}
@media screen and (max-width: 640px) {
  input[type=text], input[type=email], input[type=tel] {
    width: 100%;
    font-size: 16px !important;
  }
  textarea {
    width: 100%;
    font-size: 16px !important;
  }
}
::-webkit-input-placeholder {
  color: #B7B7B7;
}
::-webkit-input-placeholder, ::-moz-placeholder, :-ms-input-placeholder, ::-ms-input-placeholder, ::placeholder {
  color: #B7B7B7;
}

/*$base-width: 1400px;*/
/*weight*/
/*
* "Noto Sans JP" licensed under the SIL Open Font License 1.1
* by https://fonts.google.com/specimen/Noto+Sans+JP
*/
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/NS-400.woff2") format("woff2"), url("fonts/NS-400.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/NS-700.woff2") format("woff2"), url("fonts/NS-700.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP tategaki";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/NS-700-vertical.woff2") format("woff2"), url("fonts/NS-700-vertical.woff") format("woff");
  font-display: swap;
}
/*--------------------------------------------------------------------------
   reset
---------------------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
small,
dl,
dt,
dd,
ol,
ul,
li {
  margin: 0;
  font-size: 100%;
}

ul {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

img {
  vertical-align: top;
}

li {
  list-style-type: none;
  vertical-align: baseline;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/*--------------------------------------
　Base
---------------------------------------*/
img {
  max-width: 100%;
  height: auto;
}

a {
  color: #666666;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.ct {
  text-align: center;
}

.strong {
  font-weight: bold;
}

.f110 {
  font-size: 110%;
}

.f120 {
  font-size: 120%;
}

.f130 {
  font-size: 130%;
}

.f150 {
  font-size: 150%;
}

.f200 {
  font-size: 200%;
}

.f300 {
  font-size: 300%;
}

span.txt_bold {
  color: #F95D00;
  font-weight: 700;
}

span.marker {
  border-bottom: 2px solid #ECBF3F;
  font-weight: 700;
}

/*--------------------------------------------------------------------------
   Original Start
---------------------------------------------------------------------------*/
html {
  font-size: 62.5%;
}
@media screen and (max-width: 1530px) {
  html {
    font-size: 0.6535947712vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  color: #0D1319;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
}
body.is-fixed {
  pointer-events: none;
  overflow: hidden;
}

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

img {
  image-rendering: -webkit-optimize-contrast;
  vertical-align: middle;
}

.safari img {
  image-rendering: auto;
}

label {
  cursor: pointer;
}

.sitemap .pc_br{
    display:none;
}

/* link
--------------------------------------------------*/
a {
  color: inherit;
  /*&:hover,
  &:focus {
  	text-decoration: underline;
  }*/
}
a:link, a:active, a:visited {
  text-decoration: none;
}
.sitemap .pc_br{
    display:none;
}

@media print, screen and (min-width: 768px) {
  a[href^="tel:"] {
    display: inline-block;
    pointer-events: none;
  }
  a {
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  a:hover {
    opacity: 0.7;
  }
  .js-imgHover a:hover,
  .js-imgHover a:hover img {
    opacity: 1;
  }
  a,
  a * {
    outline: 1px solid transparent;
    outline: none;
  }
}
i {
  font-style: normal;
}

/*$base-width: 1400px;*/
/*weight*/
/* --------------------------------------------------
  cleafix
-------------------------------------------------- */
.u-clearfix:after {
  display: block;
  clear: both;
  content: "";
}

/* --------------------------------------------------
  align
-------------------------------------------------- */
.u-alignL {
  text-align: left;
}

.u-alignC {
  text-align: center;
}

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

/* --------------------------------------------------
  preload
-------------------------------------------------- */
.u-preload * {
  -webkit-transition: none !important;
  transition: none !important;
}

/* --------------------------------------------------
  font,text
-------------------------------------------------- */
.u-underline {
  text-decoration: underline !important;
}

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

/* --------------------------------------------------
  decoration
-------------------------------------------------- */
/* --------------------------------------------------
  inview
-------------------------------------------------- */
.js-fadeUp {
  opacity: 0;
  -webkit-transform: translateY(10rem);
          transform: translateY(10rem);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.8s;
  transition: opacity 0.5s, -webkit-transform 0.8s;
  transition: opacity 0.5s, transform 0.8s;
  transition: opacity 0.5s, transform 0.8s, -webkit-transform 0.8s;
}

.js-fadeUp.is-inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.js-fadeUp.m-delay.is-inview {
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
}

.is-fixed .l-header {
  pointer-events: auto;
}
@media screen and (min-width: 767px) {
  .is-fixed .l-header-toggle {
    right: calc(2.5rem + var(--scrollbar-width));
  }
  .is-fixed .l-header-btns {
    right: calc(17rem + var(--scrollbar-width));
  }
}

.l-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  gap: 2.5rem;
  height: 8rem;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 4.5rem;
    gap: 0;
  }
}
.l-header.is-active {
  opacity: 1;
  pointer-events: auto;
}
.l-header-btns {
  position: fixed;
  right: 17rem;
  top: 3rem;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: end;
  -webkit-box-pack: end;
          justify-content: flex-end;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  z-index: 103;
  background: #003E75;
  -webkit-transition: opacity 0.4s !important;
  transition: opacity 0.4s !important;
}
@media screen and (max-width: 767px) {
  .l-header-btns {
    right: 0;
    position: relative;
    top: 0;
    height: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
            justify-content: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
  }
}
.l-header-btns.is-hide {
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .l-header-btns .-btn {
    height: 100%;
  }
}
.l-header-btns .-btn a {
  padding: 0 3.2rem;
  height: 4.5rem;
  cursor: pointer;
  color: #fff;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  line-height: 1;
}
@media screen and (any-hover: hover) and (min-width: 768px) {
  .l-header-btns .-btn a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .l-header-btns .-btn a {
    font-size: 1.1rem;
    padding: 0;
    height: 100%;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
            justify-content: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
    text-align: center;
  }
}
.l-header-btns .-btn + .-btn {
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-header-btns .-btn + .-btn {
    padding: 0 1rem;
  }
}
.l-header-btns .-btn + .-btn:before {
  content: "";
  width: 1px;
  height: 1.4rem;
  background: #2D8BDE;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .l-header-btns .-btn + .-btn:before {
    height: 1rem;
  }
}
.l-header-toggle {
  background: #003E75;
  position: fixed;
  right: 2.5rem;
  top: 3rem;
  z-index: 103;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  gap: 1.6rem;
  padding: 0 1.3rem 0 1rem;
  height: 4.5rem;
  -webkit-transition: opacity 0.4s !important;
  transition: opacity 0.4s !important;
}
@media screen and (any-hover: hover) and (min-width: 768px) {
  .l-header-toggle {
    cursor: pointer;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .l-header-toggle:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .l-header-toggle {
    position: relative;
    top: 0;
    right: 0;
    padding: 0;
    height: 100%;
    width: 4.5rem;
  }
}
.l-header-toggle .-menu {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  display: block;
}
@media screen and (max-width: 767px) {
  .l-header-toggle .-menu {
    display: none;
  }
}
.l-header-toggle .-lines {
  display: block;
  position: relative;
  width: 4.2rem;
  height: 1.7rem;
}
@media screen and (max-width: 767px) {
  .l-header-toggle .-lines {
    width: 2.6rem;
    height: 1.7rem;
  }
}
.l-header-toggle .-lines span {
  display: inline-block;
  width: 100%;
  height: 0.1rem;
  background: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.l-header-toggle .-lines span:nth-child(1) {
  top: 0;
}
.l-header-toggle .-lines span:nth-child(2) {
  top: 50%;
}
.l-header-toggle .-lines span:nth-child(3) {
  top: 100%;
}
.l-header-toggle.is-active .-lines span:nth-child(1) {
  -webkit-transform: translateY(0.8rem) rotate(25deg);
          transform: translateY(0.8rem) rotate(25deg);
}
@media screen and (max-width: 767px) {
  .l-header-toggle.is-active .-lines span:nth-child(1) {
    -webkit-transform: translateY(0.8rem) rotate(35deg);
            transform: translateY(0.8rem) rotate(35deg);
  }
}
.l-header-toggle.is-active .-lines span:nth-child(2) {
  display: none;
}
.l-header-toggle.is-active .-lines span:nth-child(3) {
  -webkit-transform: translateY(-0.9rem) rotate(-25deg);
          transform: translateY(-0.9rem) rotate(-25deg);
}
@media screen and (max-width: 767px) {
  .l-header-toggle.is-active .-lines span:nth-child(3) {
    -webkit-transform: translateY(-0.9rem) rotate(-35deg);
            transform: translateY(-0.9rem) rotate(-35deg);
  }
}
.l-header-menu {
  position: fixed;
  right: -57.7rem;
  top: 0;
  width: 57.7rem;
  height: 100vh;
  overflow-y: auto;
  scrollbar-width: none; /* Firefox */
  padding: 10rem 0 7rem;
  background-color: #005BAC;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 102;
  border-left: 1px solid #0D1319;
}
.l-header-menu::-webkit-scrollbar {
  display: none; /* Webkit系ブラウザ */
}
@media screen and (max-width: 767px) {
  .l-header-menu {
    right: -100%;
    width: 100%;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    padding: 7.5rem 0 9rem 0;
  }
}
.l-header-menu.is-active {
  right: 0;
}
.l-header-menu .-logo {
  width: 27.2rem;
  position: absolute;
  left: 3rem;
  top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .l-header-menu .-logo {
    width: 22.2rem;
    height: 5.1rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 2rem;
  }
}
.l-header-menu .-bnr {
  width: 49.4rem;
  height: 15.5rem;
  position: relative;
  background: url(img/common_menu_bnr.png) no-repeat center center/cover;
  margin: 2rem auto;
}
@media screen and (any-hover: hover) and (min-width: 768px) {
  .l-header-menu .-bnr {
    cursor: pointer;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .l-header-menu .-bnr:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .l-header-menu .-bnr {
    width: 34.5rem;
    height: 10.8rem;
    margin: 2rem auto 0;
  }
}
.l-header-menu .-bnr a {
  padding: 0 2rem;
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .l-header-menu .-bnr a {
    padding: 0 2rem;
  }
}
@media screen and (any-hover: hover) and (min-width: 768px) {
  .l-header-menu .-bnr a:hover {
    opacity: 1;
  }
}
.l-header-menu .-bnr .txt {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  padding-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .l-header-menu .-bnr .txt {
    font-size: 1.3rem;
    line-height: 1.5;
  }
}
.l-header-menu .-bnr .txt .small {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .l-header-menu .-bnr .txt .small {
    font-size: 1rem;
    margin-bottom: 0;
  }
}
.l-header-nav {
  margin: 5rem 3rem;
}
@media screen and (max-width: 767px) {
  .l-header-nav {
    margin-top: 1rem;
  }
}
.l-header-nav li {
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .l-header-nav li {
    font-size: 1.4rem;
  }
}
.l-header-nav li .categoryttl br, .l-header-nav li .categorylink br, .l-header-nav li .undernav li br {
  display: none;
}
.l-header-nav li .categoryttl {
  font-size: 1.6rem;
  cursor: pointer;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 0.5rem 4rem 0.6rem 0;
  color: #fff;
  border-bottom: 1px solid #fff;
  position: relative;
}
@media screen and (any-hover: hover) and (min-width: 768px) {
  .l-header-nav li .categoryttl:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 767px) {
  .l-header-nav li .categoryttl {
    padding: 1.5rem 4rem 1.5rem 0rem;
    border-bottom: 1px solid #2D8BDE;
  }
}
.l-header-nav li .categoryttl:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1.3rem;
  height: 0.4rem;
  background: url(img/common_icn_arw_wh.svg) no-repeat center center/contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .l-header-nav li .categoryttl:after {
    width: 1.9rem;
    height: 2rem;
    background: url(img/common_icn_plus.svg) no-repeat center center/contain;
  }
}
.l-header-nav li .categoryttl.is-active:after {
  background: url(img/common_icn_minus.svg) no-repeat center center/contain;
}
.l-header-nav li .undernav {
  margin-top: 2rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .l-header-nav li .undernav {
    padding-bottom: 0.5rem;
    display: none;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
  }
}
.l-header-nav li .undernav li + li {
  margin-top: 1rem;
}
.l-header-nav li .undernav li a {
  color: #fff;
  font-size: 1.2rem;
  display: block;
  padding: 0.2rem 4rem 0.2rem 0;
  position: relative;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .l-header-nav li .undernav li a {
    font-size: 1.4rem;
    padding: 0.5rem 4rem 0.5rem 0;
  }
}
.l-header-nav li .undernav li a:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.3rem;
  height: 0.4rem;
  background: url(img/common_icn_arw_wh.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .l-header-nav li .undernav li a:after {
    width: 1.5rem;
    height: 2rem;
    right: 0;
  }
}
.l-header-nav li .categorylink {
  font-size: 1.6rem;
  cursor: pointer;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 0.5rem 4rem 0.6rem 0;
  color: #fff;
  border-bottom: 1px solid #fff;
  position: relative;
}
@media screen and (any-hover: hover) and (min-width: 768px) {
  .l-header-nav li .categorylink:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 767px) {
  .l-header-nav li .categorylink {
    padding: 1.5rem 4rem 1.5rem 0;
    border-bottom: 1px solid #2D8BDE;
  }
}
.l-header-nav li .categorylink:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.3rem;
  height: 0.4rem;
  background: url(img/common_icn_arw_wh.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .l-header-nav li .categorylink:after {
    width: 1.5rem;
    height: 2rem;
    right: 0;
  }
}
.l-header-indexnav {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 2rem;
}
.l-header-indexnav ul {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: end;
  -webkit-box-pack: end;
          justify-content: flex-end;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  gap: 5.5rem;
}
.l-header-indexnav ul li a {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0D1319;
}
@media screen and (any-hover: hover) and (min-width: 768px) {
  .l-header-indexnav ul li a {
    cursor: pointer;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .l-header-indexnav ul li a:hover {
    opacity: 0.7;
  }
}

.ipad .l-header-btns .btn {
  -webkit-transition: none;
  transition: none;
}

.l-bg {
  width: 100vw;
  height: 100vh;
  background: #002E57;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.l-bg.is-show {
  cursor: pointer;
  pointer-events: auto;
  opacity: 0.4;
}

/* --------------------------------------------------
    footerabout
-------------------------------------------------- */
.l-footerabout {
  position: relative;
  margin-top: -15rem;
  padding: 10rem 0 8rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .l-footerabout {
    padding: 4.5rem 0 3rem;
    margin-top: 7rem;
  }
}
.l-footerabout:before {
  content: "";
  position: absolute;
  left: 0;
  top: -4rem;
  width: 100%;
  height: calc(100% + 4rem);
  clip-path: polygon(0% 0%, 100% 22.5rem, 100% 100%, 0% 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgb(0, 91, 172)), to(rgb(45, 139, 222)));
  background: linear-gradient(to right, rgb(0, 91, 172), rgb(45, 139, 222));
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .l-footerabout:before {
    clip-path: polygon(0% 0%, 100% 5rem, 100% 100%, 0% 100%);
    top: 0;
  }
}
.l-footerabout .c-inner {
  padding-right: 45rem;
}
@media screen and (max-width: 767px) {
  .l-footerabout .c-inner {
    padding-right: 4%;
  }
}
.l-footerabout .-photo {
  position: absolute;
  right: calc(50% - 69rem);
  top: -11rem;
  width: 55rem;
  height: 56rem;
}
@media screen and (max-width: 767px) {
  .l-footerabout .-photo {
    width: 34.5rem;
    height: auto;
    position: relative;
    left: 0;
    top: 0;
    margin: -7.5rem auto 1rem;
  }
}
.l-footerabout .-ttl {
  padding-top: 6rem;
  position: relative;
  width: 27.6rem;
}
@media screen and (max-width: 767px) {
  .l-footerabout .-ttl {
    width: 21.9rem;
    margin: 0 auto;
  }
}
.l-footerabout .-ttl:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 29.7rem;
  height: 2.7rem;
  background: url(img/common_footerabout_en.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .l-footerabout .-ttl:before {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 30rem;
    height: 2.8rem;
  }
}
.l-footerabout .-detail {
  margin-top: 3rem;
  color: #fff;
  line-height: 1.9;
}
.l-footerabout .-btn {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .l-footerabout .-btn {
    margin-top: 2rem;
    text-align: right;
  }
}
.l-footerabout .-btn a {
  display: inline-block;
  padding: 0 3.5rem 0.6rem 0;
  border-bottom: 1px solid #fff;
  color: #fff;
  position: relative;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .l-footerabout .-btn a {
    padding: 0 3rem 0.5rem 0;
  }
}
.l-footerabout .-btn a:after {
  content: "";
  position: absolute;
  right: 0;
  top: calc(50% - 0.2rem);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.5rem;
  height: 0.75rem;
  background: url(img/common_icn_arw_wh.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .l-footerabout .-btn a:after {
    width: 1.3rem;
    height: 0.5rem;
  }
}

/* --------------------------------------------------
    footer
-------------------------------------------------- */
.l-footer {
  background: #003E75;
  position: relative;
  z-index: 3;
  color: #fff;
}
.l-footer.m-noabout {
  margin-top: -20rem;
}
@media screen and (max-width: 767px) {
  .l-footer.m-noabout {
    margin-top: 3rem;
  }
}
.l-footer-main {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
  gap: 3rem;
  width: 110rem;
  margin: 0 auto;
  padding: 14.5rem 0 10.5rem;
}
@media screen and (max-width: 767px) {
  .l-footer-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    padding: 4.5rem 1.5rem 7rem;
    width: 100%;
    position: relative;
  }
}
.l-footer-disclaimer {
  font-size: 1.3rem;
  letter-spacing: -0.01rem;
  line-height: 1.6;
  padding: 2rem;
  width: 27.5rem;
  background: #005BAC;
}
@media screen and (max-width: 767px) {
  .l-footer-disclaimer {
    margin-top: 5rem;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.l-footer-disclaimer a {
  text-decoration: underline;
}
.l-footer-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .l-footer-body {
    padding: 0;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
}
.l-footer-body .-box a, .l-footer-body .-box span {
  display: inline-block;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-footer-body .-box a, .l-footer-body .-box span {
    width: 100%;
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-body .-box a {
    padding: 1.5rem 4rem 1.5rem 0;
    width: 100%;
    display: block;
  }
  .l-footer-body .-box a:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background: url(img/common_icn_arw_wh.svg) no-repeat center center/contain;
    width: 1.5rem;
    height: 0.5rem;
  }
}
.l-footer-body .-box .ttl br, .l-footer-body .-box .list li a br {
  display: none;
}
.l-footer-body .-box .ttl {
  font-size: 1.6rem;
  font-weight: 700;
  border-bottom: 1px solid #848484;
  padding-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .l-footer-body .-box .ttl {
    padding-bottom: 0;
    line-height: 1.5;
  }
}
.l-footer-body .-box .ttl span {
  position: relative;
  padding-right: 4rem;
}
.l-footer-body .-box .ttl span:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.5rem;
  height: 2.6rem;
  background: url(img/common_icn_circlearw_wh.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .l-footer-body .-box .ttl span:after {
    width: 1.9rem;
    height: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-body .-box .ttl a {
    padding-right: 0;
  }
  .l-footer-body .-box .ttl a:after {
    content: none;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-body .-box .ttl.js-spAccordion a, .l-footer-body .-box .ttl.js-spAccordion span {
    padding: 1.5rem 4rem 1.5rem 0;
  }
  .l-footer-body .-box .ttl.js-spAccordion a:after, .l-footer-body .-box .ttl.js-spAccordion span:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background: url(img/common_icn_plus.svg) no-repeat center center/contain;
    width: 1.9rem;
    height: 2rem;
  }
}
.l-footer-body .-box .ttl.js-spAccordion.is-active a:after, .l-footer-body .-box .ttl.js-spAccordion.is-active span:after {
  background-image: url(img/common_icn_minus.svg);
}
.l-footer-body .-box .list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem 4rem;
  margin-top: 1.9rem;
}
@media screen and (max-width: 767px) {
  .l-footer-body .-box .list {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.2rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
}
.l-footer-body .-box .list li a {
  font-size: 1.5rem;
  line-height: 1.5;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
@media screen and (max-width: 767px) {
  .l-footer-body .-box .list li a {
    display: block;
    padding: 0.7rem 4rem 0.7rem 0;
    border-bottom: none;
    font-weight: 400;
    position: relative;
  }
  .l-footer-body .-box .list li a:after {
    content: "";
    position: absolute;
    right: 4%;
    top: 50%;
    background: url(img/common_icn_arw_wh.svg) no-repeat center center/contain;
    width: 1.5rem;
    height: 0.5rem;
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-body .-box .list.js-spAccordion-body {
    display: none;
  }
}
.l-footer-body .-box + .-box {
  margin-top: 5.5rem;
}
@media screen and (max-width: 767px) {
  .l-footer-body .-box + .-box {
    margin-top: 0;
  }
}
.l-footer-note {
  font-size: 1.2rem;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .l-footer-note {
    font-size: 1.2rem;
    padding: 0 5%;
    margin-bottom: 3rem;
    position: absolute;
    bottom: 2rem;
  }
}
.l-footer-copyright {
  background: #2D8BDE;
  color: #fff;
  padding: 0.5rem 0;
  text-align: center;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .l-footer-copyright {
    margin-top: 0;
    padding: 0.8rem 0;
  }
}
.l-footer-copyright .c-inner {
  position: relative;
}
.l-footer-copyright .c-inner .-sitemap {
  position: absolute;
  right: 0;
  bottom: 0.3rem;
}
.l-footer-copyright .c-inner .-sitemap a {
  text-decoration: underline;
}

.l-fixedbtn {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 101;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.l-fixedbtn.is-hide {
  opacity: 0;
  pointer-events: none;
}
.l-fixedbtn.is-active {
  opacity: 1;
  pointer-events: auto;
}
.l-fixedbtn.is-active.is-foot {
  position: absolute;
  top: 0rem;
}
@media screen and (max-width: 767px) {
  .l-fixedbtn.is-active.is-foot {
    opacity: 0;
    pointer-events: none;
    bottom: 0;
    top: auto;
  }
}
.l-fixedbtn.is-active.is-hide {
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .l-fixedbtn {
    right: auto;
    left: 0;
  }
}
.l-fixedbtn .-btn a {
  position: relative;
  color: #fff;
  width: 30.6rem;
  height: 9.7rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: url(img/common_fixedbtn_pc.jpg) no-repeat center center/cover;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  padding-left: 1.2rem;
  font-size: 1.3rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .l-fixedbtn .-btn a {
    width: 27.7rem;
    height: 7.6rem;
    background-image: url(img/common_fixedbtn_sp.png);
    padding-left: 1.5rem;
    padding-bottom: 0.8rem;
  }
}
@media screen and (any-hover: hover) {
  .l-fixedbtn .-btn a:hover {
    opacity: 0.7;
  }
}

.l-pagetop {
  position: fixed;
  bottom: 11.5rem;
  right: 1.8rem;
  z-index: 90;
  width: 4.1rem;
  height: 4.1rem;
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media screen and (max-width: 767px) {
  .l-pagetop {
    width: 4.1rem;
    height: 4.1rem;
    bottom: 1.5rem;
    right: 1.5rem;
  }
}
.l-pagetop.is-hide {
  opacity: 0;
  pointer-events: none;
}
.l-pagetop.is-active {
  opacity: 0.7;
  pointer-events: auto;
}
.l-pagetop.is-active.is-hide {
  opacity: 0;
  pointer-events: none;
}

/* --------------------------------------------------
	section size
-------------------------------------------------- */
html::-webkit-scrollbar {
  display: block;
  width: 10px;
}
html::-webkit-scrollbar-thumb {
  background-color: #919191;
  border-radius: 4px;
}
html::-webkit-scrollbar-track {
  background-color: #CECECE;
}

/*==============================================
レイアウト
===============================================*/
.c-inner {
  width: 110rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c-inner {
    width: 100%;
    padding: 0 4%;
  }
}

/*==============================================
ボタン
===============================================*/
.btn-internal,
.btn-web,
.btn-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 35rem;
  min-height: 8rem;
  margin: 3rem auto 5rem;
  position: relative;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .btn-internal,
  .btn-web,
  .btn-tel {
    width: 95%;
    min-height: 8rem;
    margin: 2rem auto;
  }
}
.btn-internal:before,
.btn-web:before,
.btn-tel:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: -1rem;
  right: -1rem;
  background: #002E57;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.btn-internal a,
.btn-web a,
.btn-tel a {
  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;
  padding: 1rem 6rem 1rem 6rem;
  width: 100%;
  height: 100%;
  min-height: 8rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  z-index: 2;
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media screen and (max-width: 767px) {
  .btn-internal a,
  .btn-web a,
  .btn-tel a {
    font-size: 1.5rem;
    padding: 1rem 5rem 1rem 2rem;
    line-height: 1.7;
    min-height: 8rem;
  }
}
.btn-internal a:after,
.btn-web a:after,
.btn-tel a:after {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 3.8rem;
  height: 3.8rem;
}
@media screen and (any-hover: hover) {
  .btn-internal:hover:before,
  .btn-web:hover:before,
  .btn-tel:hover:before {
    right: 0;
  }
  .btn-internal:hover a,
  .btn-web:hover a,
  .btn-tel:hover a {
    -webkit-transform: translateY(1rem);
            transform: translateY(1rem);
    opacity: 1;
  }
}

.btn-web {
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn-web a {
  background: url(img/common_btn_bg_web.png) no-repeat center center/100% 100%;
  color: #fff;
}
.btn-web a:after {
  background: url(img/common_btn_icn_web.svg) no-repeat center center/100% 100%;
}

.btn-internal {
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn-internal a {
  background: url(img/common_btn_bg_internal.png) no-repeat center center/cover;
  color: #fff;
}
.btn-internal a:after {
  background: url(img/common_icn_circlearw_wh.svg) no-repeat center center/100% 100%;
}

.btn-tel {
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media print, screen and (min-width: 768px) {
  .btn-tel {
    display: none;
  }
}
.btn-tel a {
  background: url(img/common_btn_bg_tel.png) no-repeat center center/cover;
  color: #fff;
}
.btn-tel a:after {
  background: url(img/common_icn_circlearw_wh.svg) no-repeat center center/100% 100%;
}
.btn-tel a:before {
  content: "";
  width: 2.1rem;
  height: 3.9rem;
  position: absolute;
  left: 2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(img/common_icn_phone.svg) no-repeat center center/100% 100%;
}

.btn-link {
  display: block;
  text-align: right;
}
.btn-link a {
  font-size: 1.6rem;
  font-weight: 700;
  color: #003E75;
  display: inline-block;
  padding-right: 3.5rem;
  padding-bottom: 0.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .btn-link a {
    font-size: 1.5rem;
    margin: 1rem 0;
  }
}
.btn-link a:before {
  content: "";
  width: 2.5rem;
  height: 2.6rem;
  background: url(img/common_icn_circlearw_bl.svg) no-repeat left top/contain;
  position: absolute;
  right: 0;
  top: calc(50% - 0.2rem);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .btn-link a:before {
    top: 50%;
  }
}
.btn-link a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #2D8BDE;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 1;
  left: 0;
  bottom: 0;
}

.btn-double {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4rem;
  margin: 2rem 0;
}
.btn-double .btn-internal,
.btn-double .btn-web {
  margin: 0;
  width: 36rem;
}
@media screen and (max-width: 767px) {
  .btn-double .btn-internal,
  .btn-double .btn-web {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .btn-double {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
  .btn-double .btn-internal,
  .btn-double .btn-web,
  .btn-double .btn-tel {
    margin: 0 auto;
  }
}

/*==============================================
下層ページ
===============================================*/
.l-page {
  position: relative;
  background: url(img/common_bg.png) repeat left top;
  z-index: 1;
  /*==============================================
  simplebar
  ===============================================*/
  /*----------   toc   ---------*/
  /* 関連記事 */
}
@media screen and (max-width: 767px) {
  .l-page {
    background: none;
    overflow: hidden;
  }
}
.l-page-head {
  position: relative;
  padding-top: 7rem;
  padding-bottom: 36rem;
  z-index: 2;
  min-height: 48.2352941176vw;
}

@media screen and (max-width: 767px) {
  .l-page-head {
    padding-bottom: 8rem;
    min-height: 30rem;
  }
}
.l-page-head:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(img/page_pagehead_bg_pc.png) no-repeat left bottom/100% auto;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .l-page-head:before {
    height: 100%;
    background: url(img/page_pagehead_bg_sp.png) no-repeat left bottom/100% auto;
    bottom: 0;
  }
}
.l-page-head:after {
  content: "";
  width: 100%;
  height: calc(100% - 40rem);
  background: #002E57;
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  .l-page-head:after {
    height: calc(100% - 20rem);
  }
}
.l-page-head .-logo {
  position: absolute;
  left: 2.7rem;
  top: 2.7rem;
  display: block;
  width: 27.6rem;
}
.l-page-head .-pre {
  font-size: 1rem;
  color: #B7B7B7;
  font-weight: 700;
  position: absolute;
  right: 3rem;
  top: 1rem;
  text-align: right;
  display: block;
}
@media screen and (max-width: 767px) {
  .l-page-head .-pre {
    padding: 0.5rem 1.5rem;
    text-align: left;
    font-weight: normal;
    right: 0;
    left: 0;
    top: 0.5rem;
    line-height: 1.7;
  }
}
.l-page-head .-wrap {
  width: 100rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-page-head .-wrap {
    width: 100%;
    padding: 0 4%;
  }
}
.l-page-head .-breadcrumbs {
  width: 100%;
  margin: 5.5rem auto 0;
  z-index: 101;
}
@media screen and (max-width: 767px) {
  .l-page-head .-breadcrumbs {
    width: 100%;
    padding: 0;
    margin: 0 0 2rem;
    z-index: 10;
  }
}
.l-page-head .-breadcrumbs #pankuzu {
  margin: 0;
  padding-bottom: 1.3rem;
  color: #B7B7B7;
  font-size: 1rem;
  white-space: nowrap;
  scrollbar-width: none;
}
@media screen and (max-width: 767px) {
  .l-page-head .-breadcrumbs #pankuzu {
    padding-bottom: 1.8rem;
    font-size: 1rem;
  }
}
.l-page-head .-breadcrumbs #pankuzu *[itemprop=itemListElement] {
  padding-right: 0.2rem;
  margin-left: 1.5rem;
  font-size: 1.1rem;
}
.l-page-head .-breadcrumbs #pankuzu *[itemprop=itemListElement]:first-child {
  margin-left: 0;
}
.l-page-head .-breadcrumbs #pankuzu::-webkit-scrollbar {
  display: none;
}
.l-page-head .-pagettl {
  font-size: 4.5rem;
  font-weight: 700;
  color: #fff;
  position: relative;
  padding-bottom: 22.5rem;
}
@media screen and (max-width: 767px) {
  .l-page-head .-pagettl {
    font-size: 2.4rem;
    padding-bottom: 4.6rem;
  }
}
.l-page-head .-pagettl:after {
  content: "当メディアは、株式会社早稲田アカデミーをスポンサーとして、\aZenken株式会社が運営しています。";
  position: absolute;
  left: 0;
  bottom: 15rem;
  font-size: 1.1rem;
  color: #B7B7B7;
  line-height: 1.5;
  white-space: pre;
}
@media screen and (max-width: 767px) {
  .l-page-head .-pagettl:after {
    font-size: 1rem;
    bottom: 0;
  }
}
.l-page-content {
  width: 100rem;
  padding: 0 0 17.5rem;
  margin: -45rem auto 0;
  border: 1px solid #E1E1E1;
  background: #fff;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .l-page-content {
    width: 92%;
    padding: 0 4%;
    margin-top: 1rem;
    padding: 0;
    border: none;
  }
}
.l-page .simplebar-track {
  background: #3f7289;
  border-radius: 10px;
}
.l-page .simplebar-track.simplebar-horizontal {
  height: 5px !important;
}
.l-page .simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  height: 7px !important;
  top: auto !important;
  bottom: 0;
}
.l-page .simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
  background: #0156a0;
  opacity: 1;
}
.l-page .toc__wrap {
  background: #fff;
  border: 1px solid #E1E1E1;
  width: 76rem;
  padding: 0 5.5rem;
  margin: 6rem auto 3rem;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .l-page .toc__wrap {
    margin: 2rem 0 5rem;
    width: 100%;
    padding: 1.5rem 0 0;
  }
}
.l-page .toc__wrap .ttl {
  color: #003E75;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  padding-top: 2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-page .toc__wrap .ttl {
    font-size: 1.6rem;
    padding-top: 0;
  }
}
.l-page .toc__wrap .ttl:before {
  content: "";
  width: 14.6rem;
  height: 4.2rem;
  background: url(img/page_toc_ttl.svg) no-repeat center center/contain;
  display: inline-block;
  margin-right: 1rem;
  position: absolute;
  left: 0;
  right: 0;
  top: -0.2rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-page .toc__wrap .ttl:before {
    width: 10.1rem;
    height: 3rem;
    top: -1.8rem;
  }
}
.l-page .toc__wrap .more {
  text-align: center;
  position: relative;
  padding: 0;
  margin: 0 auto -2rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .l-page .toc__wrap .more {
    margin-right: 0;
  }
}
.l-page .toc__wrap .more:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3rem;
  width: 100%;
  height: 7rem;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(70%, rgb(255, 255, 255)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 70%);
  z-index: 2;
}
.l-page .toc__wrap .more .toc_morebtn {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  width: 10.9rem;
  height: 3.4rem;
  font-size: 1.4rem;
  margin: 0 auto;
  font-weight: 700;
  position: relative;
  top: -0.6rem;
  z-index: 2;
  background: url(img/page_toc_btn_more.png) no-repeat center right/contain;
}
@media screen and (any-hover: hover) and (min-width: 768px) {
  .l-page .toc__wrap .more .toc_morebtn {
    cursor: pointer;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .l-page .toc__wrap .more .toc_morebtn:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 767px) {
  .l-page .toc__wrap .more .toc_morebtn {
    top: 0;
  }
}
.l-page .toc__wrap .more.is-active {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .l-page .toc__wrap .more.is-active {
    margin-top: 2rem;
  }
}
.l-page .toc__wrap .more.is-active:before {
  display: none;
}
.l-page .toc__wrap .more.is-active .toc_morebtn {
  background: url(img/page_toc_btn_close.png) no-repeat center right/contain;
}
@media screen and (max-width: 767px) {
  .l-page .toc__wrap + .l-page-body {
    margin-top: 7rem;
  }
}
.l-page #toc {
  padding: 2rem 0 0;
  display: -ms-grid;
  display: grid;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  counter-reset: mycounter;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .l-page #toc {
    padding: 0;
  }
}
.l-page #toc.is-open .chapter {
  height: auto;
  -webkit-transition: height 0.3s ease-out;
  transition: height 0.3s ease-out;
}
.l-page #toc .chapter {
  padding: 0;
  overflow: hidden;
  height: 9rem;
  -webkit-transition: height 0.3s ease-out;
  transition: height 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .l-page #toc .chapter {
    padding: 2rem 1rem 1rem 1rem;
  }
}
.l-page #toc .chapter + .chapter {
  display: none;
}
.l-page #toc .chapter .chapter-h {
  padding: 0 0 0.5rem 2rem;
  background: none;
  position: relative;
}
.l-page #toc .chapter .chapter-h:last-child {
  margin-bottom: 0;
}
.l-page #toc .chapter .chapter-h.chapter-h-two {
  color: #003E75;
  font-weight: 700;
  counter-increment: mycounter;
  position: relative;
  list-style: none;
  padding-left: 4.2rem;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .l-page #toc .chapter .chapter-h.chapter-h-two {
    padding-left: 3rem;
  }
}
.l-page #toc .chapter .chapter-h.chapter-h-two::before {
  content: counter(mycounter, decimal-leading-zero) ".";
  color: #ECBF3F;
  position: absolute;
  top: 0.4rem;
  left: 0;
  border: none;
  line-height: 1;
  font-size: inherit;
  height: auto;
  margin: 0;
  font-weight: bold;
}
.l-page #toc .chapter .chapter-h.chapter-h-three {
  font-size: 1.4rem;
  color: #003E75;
  margin: 0.4rem 0 0.4rem 5.8rem;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .l-page #toc .chapter .chapter-h.chapter-h-three {
    margin: 0 0 0 1rem;
    font-size: 1.5rem;
  }
}
.l-page #toc .chapter .chapter-h.chapter-h-three::before {
  content: "";
  display: block;
  position: absolute;
  top: -0.4rem;
  left: 0;
  margin: 0;
  line-height: 1;
  width: 1.7rem;
  height: 1.7rem;
  background: url(img/page_toc_icn.svg) no-repeat center center/contain;
}
.l-page-body {
  max-width: 106rem;
  margin: 0 auto;
  padding: 0 5rem 6rem;
  /* サマリー */
  /* インタビュー */
  /* sponsored */
  /* FAQ */
  /* Movie */
  /* Schedule */
  /* Daily */
  /* other */
}
@media screen and (max-width: 767px) {
  .l-page-body {
    padding: 0;
  }
}
.l-page-body h2:not([class]):first-child {
  margin-top: 0;
}
.l-page-body h2:not([class]) a,
.l-page-body h3:not([class]) a,
.l-page-body h4:not([class]) a,
.l-page-body h5:not([class]) a,
.l-page-body h6:not([class]) a {
  display: inline-block;
  height: 100%;
  padding-right: 4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-page-body h2:not([class]) a,
  .l-page-body h3:not([class]) a,
  .l-page-body h4:not([class]) a,
  .l-page-body h5:not([class]) a,
  .l-page-body h6:not([class]) a {
    padding-right: 3.5rem;
  }
}
.l-page-body h2:not([class]) a:before,
.l-page-body h3:not([class]) a:before,
.l-page-body h4:not([class]) a:before,
.l-page-body h5:not([class]) a:before,
.l-page-body h6:not([class]) a:before {
  content: "";
  display: block;
  width: 3.8rem;
  height: 3.9rem;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-top: 0.2rem;
}
@media screen and (max-width: 767px) {
  .l-page-body h2:not([class]) a:before,
  .l-page-body h3:not([class]) a:before,
  .l-page-body h4:not([class]) a:before,
  .l-page-body h5:not([class]) a:before,
  .l-page-body h6:not([class]) a:before {
    width: 2.6rem;
    height: 2.2rem;
    right: 0;
  }
}
.l-page-body h2:not([class]) a {
  display: block;
  width: 100%;
  padding-right: 5rem;
}
@media screen and (max-width: 767px) {
  .l-page-body h2:not([class]) a {
    padding-right: 3rem;
  }
}
.l-page-body h2:not([class]) a:before {
  background: url(img/common_icn_circlearw_wh.svg) no-repeat center center/contain;
}
.l-page-body h3:not([class]) a {
  display: block;
  width: 100%;
  padding-right: 5rem;
}
@media screen and (max-width: 767px) {
  .l-page-body h3:not([class]) a {
    padding-right: 3rem;
  }
}
.l-page-body h3:not([class]) a:before {
  background: url(img/common_icn_circlearw_bl.svg) no-repeat center center/contain;
}
.l-page-body h4:not([class]) a,
.l-page-body h5:not([class]) a,
.l-page-body h6:not([class]) a {
  display: inline-block;
}
.l-page-body h4:not([class]) a:before,
.l-page-body h5:not([class]) a:before,
.l-page-body h6:not([class]) a:before {
  width: 2.7rem;
  height: 2.8rem;
  background: url(img/common_icn_circlearw_bl.svg) no-repeat center center/contain;
}
.l-page-body h2:not([class]) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  background: #005BAC;
  border-bottom: 0.6rem solid #003E75;
  font-size: 3.5rem;
  font-weight: 700;
  padding: 3rem 3rem 2.8rem 5rem;
  min-height: 5.9rem;
  margin: 5rem -5rem;
  line-height: 1.4;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-page-body h2:not([class]) {
    font-size: 2.4rem;
    margin: 5rem 0 2rem;
    padding: 2rem 1rem 2rem 2rem;
  }
}
.l-page-body h2:not([class]):before {
  content: "";
  position: absolute;
  width: 30.4rem;
  height: 11.1rem;
  background: url(img/common_deco.svg) no-repeat center center/cover;
  right: -25.5rem;
  top: -6.5rem;
}
@media screen and (max-width: 767px) {
  .l-page-body h2:not([class]):before {
    width: 10rem;
    height: 3.6rem;
  }
}
@media screen and (max-width: 767px) {
  .l-page-body h2:not([class]):before {
    right: -1.5rem;
    top: -2.5rem;
  }
}
.l-page-body h3:not([class]) {
  color: #005BAC;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  min-height: 3.4rem;
  position: relative;
  padding: 0.1rem 1.8rem 2.5rem 4.5rem;
  margin: 5.4rem 0 2.4rem;
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.3;
  border-bottom: 0.2rem solid #E2E2E2;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-page-body h3:not([class]) {
    font-size: 2.2rem;
    padding: 0 0 1.5rem 4.5rem;
    margin: 4.5rem 0 2.5rem;
  }
}
.l-page-body h3:not([class]):before {
  content: "";
  width: 3.2rem;
  height: 3rem;
  background: url(img/page_icn_h3.svg) no-repeat center center/contain;
  position: absolute;
  left: 0;
  top: calc(50% - 0.8rem);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .l-page-body h3:not([class]):before {
    left: 0;
    top: 43%;
  }
}
.l-page-body h4:not([class]) {
  color: #003E75;
  padding: 0 0 0 2.5rem;
  margin: 4rem 0 3rem;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
  position: relative;
  border-left: 0.3rem solid #ECBF3F;
}
@media screen and (max-width: 767px) {
  .l-page-body h4:not([class]) {
    font-size: 2rem;
    padding: 0.2rem 0 0.2rem 1.5rem;
    border-left: 0.3rem solid #ECBF3F;
  }
}
@media screen and (max-width: 767px) {
  .l-page-body h4:not([class]) a {
    padding-right: 3rem;
  }
}
.l-page-body h5:not([class]) {
  color: #2D8BDE;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 4rem 0 2rem;
}
@media screen and (max-width: 767px) {
  .l-page-body h5:not([class]) a {
    padding-right: 4rem;
  }
}
.l-page-body h6:not([class]) {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.4;
  margin: 2rem 0;
}
.l-page-body h2.checkttl,
.l-page-body h3.checkttl,
.l-page-body h4.checkttl,
.l-page-body h5.checkttl,
.l-page-body h6.checkttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #AAE7FF;
  border: 2px solid #32A2D3;
  font-size: 2.8rem;
  padding: 1rem 2rem 1rem 2rem;
  position: relative;
  margin: 6.5rem 0 6.5rem;
  line-height: 1.4;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-page-body h2.checkttl,
  .l-page-body h3.checkttl,
  .l-page-body h4.checkttl,
  .l-page-body h5.checkttl,
  .l-page-body h6.checkttl {
    margin: 8rem 0;
    padding: 0.5rem 2rem;
    font-size: 2rem;
    line-height: 1.6;
  }
}
.l-page-body h2.checkttl .icn,
.l-page-body h3.checkttl .icn,
.l-page-body h4.checkttl .icn,
.l-page-body h5.checkttl .icn,
.l-page-body h6.checkttl .icn {
  position: absolute;
  left: 0;
  top: -2.4rem;
  height: 100%;
  font-size: 1.8rem;
  text-align: center;
  padding: 0 2rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .l-page-body h2.checkttl .icn,
  .l-page-body h3.checkttl .icn,
  .l-page-body h4.checkttl .icn,
  .l-page-body h5.checkttl .icn,
  .l-page-body h6.checkttl .icn {
    line-height: 1.4;
  }
}
.l-page-body h2.checkttl .icn:before, .l-page-body h2.checkttl .icn:after,
.l-page-body h3.checkttl .icn:before,
.l-page-body h3.checkttl .icn:after,
.l-page-body h4.checkttl .icn:before,
.l-page-body h4.checkttl .icn:after,
.l-page-body h5.checkttl .icn:before,
.l-page-body h5.checkttl .icn:after,
.l-page-body h6.checkttl .icn:before,
.l-page-body h6.checkttl .icn:after {
  content: "";
  position: absolute;
  top: 0.2rem;
  width: 0.75rem;
  height: 2.2rem;
  background: url(img/common_icn_point.svg) no-repeat center center/contain;
}
.l-page-body h2.checkttl .icn:before,
.l-page-body h3.checkttl .icn:before,
.l-page-body h4.checkttl .icn:before,
.l-page-body h5.checkttl .icn:before,
.l-page-body h6.checkttl .icn:before {
  left: 0;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.l-page-body h2.checkttl .icn:after,
.l-page-body h3.checkttl .icn:after,
.l-page-body h4.checkttl .icn:after,
.l-page-body h5.checkttl .icn:after,
.l-page-body h6.checkttl .icn:after {
  right: 0;
}
.l-page-body h2.checkttl a,
.l-page-body h3.checkttl a,
.l-page-body h4.checkttl a,
.l-page-body h5.checkttl a,
.l-page-body h6.checkttl a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: calc(100% + 6rem);
  height: 100%;
  min-height: 7.9rem;
  margin: -1.5rem -4rem -1.5rem;
  padding: 0.5rem 6rem 0.5rem 4rem;
}
@media screen and (max-width: 767px) {
  .l-page-body h2.checkttl a,
  .l-page-body h3.checkttl a,
  .l-page-body h4.checkttl a,
  .l-page-body h5.checkttl a,
  .l-page-body h6.checkttl a {
    padding-right: 5rem;
    margin: -1.5rem -2rem -1.3rem -4rem;
    width: 100%;
  }
}
.l-page-body ul:not([class]) {
  margin: 3rem 0 3rem 0.8rem;
}
@media screen and (max-width: 767px) {
  .l-page-body ul:not([class]) {
    padding: 0;
    margin: 4rem 0;
  }
}
.l-page-body ul:not([class]) li {
  position: relative;
  padding-left: 2.2rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .l-page-body ul:not([class]) li {
    font-size: 1.5rem;
    padding-left: 2rem;
  }
}
.l-page-body ul:not([class]) li:before {
  content: "";
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  background: #2D8BDE;
  position: absolute;
  left: 0;
  top: 0.9rem;
}
.l-page-body ul:not([class]) li + li {
  margin-top: 1.1rem;
}
.l-page-body ol:not([class]) {
  margin: 3rem 0;
  counter-reset: my-counter;
}
@media screen and (max-width: 767px) {
  .l-page-body ol:not([class]) {
    margin: 4rem 0;
  }
}
.l-page-body ol:not([class]) li {
  position: relative;
  padding-left: 3rem;
  line-height: 1.5;
}
.l-page-body ol:not([class]) li:before {
  content: counter(my-counter, decimal);
  counter-increment: my-counter;
  color: #fff;
  position: absolute;
  left: -0.1rem;
  top: 0.1rem;
  width: 1.7rem;
  white-space: nowrap;
  font-size: 1.3rem;
  font-weight: 400;
  text-align: center;
  z-index: 2;
}
.l-page-body ol:not([class]) li:after {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  background: #2D8BDE;
  position: absolute;
  left: 0;
  top: 0.4rem;
}
.l-page-body ol:not([class]) li + li {
  margin-top: 1.2rem;
}
.l-page-body p {
  margin: 0rem 0 2rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .l-page-body p {
    line-height: 1.8;
  }
}
.l-page-body p a {
  text-decoration: underline;
}
.l-page-body table {
  margin: 4rem auto;
  width: 100%;
  border-collapse: collapse;
  border-left: 1px solid #B7B7B7;
  border-bottom: 1px solid #B7B7B7;
}
@media screen and (max-width: 767px) {
  .l-page-body table {
    width: 100%;
  }
}
.l-page-body table th,
.l-page-body table td {
  color: #003E75;
  font-weight: normal;
  border-right: 1px solid #B7B7B7;
  border-top: 1px solid #B7B7B7;
  padding: 1.2rem 2rem 1.2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-page-body table th,
  .l-page-body table td {
    padding: 1.2rem 1rem;
    text-align: center;
  }
}
.l-page-body table th {
  background: #E2E2E2;
  font-size: 1.5rem;
  font-weight: 700;
}
.l-page-body table td {
  background: #fff;
  font-size: 1.5rem;
}
.l-page-body table a {
  text-decoration: underline;
  word-break: break-word;
}
@media screen and (max-width: 767px) {
  .l-page-body table.blocktable th,
  .l-page-body table.blocktable td {
    display: block;
    width: 100%;
  }
}
.l-page-body .scroll-table-wrap {
  scrollbar-width: none;
}
@media screen and (max-width: 767px) {
  .l-page-body .scroll-table-wrap {
    padding-bottom: 1rem;
    margin: 4rem 0;
    overflow: auto;
    width: 100%;
  }
  .l-page-body .scroll-table-wrap p.sp-only {
    text-align: center;
    margin: 0;
  }
  .l-page-body .scroll-table-wrap table.scroll-table {
    margin: 0 4% 0 0;
    width: auto;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .l-page-body .scroll-table-wrap table.scroll-table {
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .l-page-body .scroll-table-wrap table.scroll-table th,
  .l-page-body .scroll-table-wrap table.scroll-table td {
    white-space: nowrap;
    width: auto;
  }
}
.l-page-body .scroll-table-wrap::-webkit-scrollbar {
  display: none;
}
.l-page-body .float-wrap {
  margin: 4rem 0;
}
.l-page-body .float-wrap p {
  padding: 0;
}
@media screen and (max-width: 767px) {
  .l-page-body .float-wrap p {
    margin: 1.5rem 0;
  }
}
.l-page-body .float-wrap table {
  width: auto;
  margin: 0;
}
.l-page-body .float-wrap .catch {
  color: #2D8BDE;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .l-page-body .float-wrap .catch {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
}
.l-page-body .float-wrap.ct {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-page-body .float-wrap.ct {
    width: 100%;
  }
}
.l-page-body .float-wrap.ct p {
  text-align: left;
}
.l-page-body .float-img img {
  width: 100%;
}
.l-page-body .float-img.ct {
  margin: 0 auto 2rem;
  width: 50rem;
}
@media screen and (max-width: 767px) {
  .l-page-body .float-img.ct {
    width: 100%;
  }
}
.l-page-body .float-img.ct .flame {
  width: 100%;
  aspect-ratio: 500/330;
}
.l-page-body .float-img.ct .flame img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-page-body .float-img.ct .caption {
  margin-top: 1rem;
  line-height: 1.3;
  text-align: center;
  font-size: 1rem;
  color: #707070;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .l-page-body .float-img.ct .caption {
    margin: 0.5rem 0 1.5rem;
  }
}
.l-page-body .float-img.fl, .l-page-body .float-img.fr {
  width: 35rem;
}
@media screen and (max-width: 767px) {
  .l-page-body .float-img.fl, .l-page-body .float-img.fr {
    width: 100%;
  }
}
.l-page-body .float-img.fl .flame, .l-page-body .float-img.fr .flame {
  width: 100%;
  aspect-ratio: 350/216;
}
.l-page-body .float-img.fl .flame img, .l-page-body .float-img.fr .flame img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-page-body .float-img.fl .caption, .l-page-body .float-img.fr .caption,.caption {
  margin-top: 1rem;
  line-height: 1.3;
  text-align: center;
  font-size: 1rem;
  color: #707070;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .l-page-body .float-img.fl .caption, .l-page-body .float-img.fr .caption {
    margin: 0.5rem 0 1.5rem;
    font-size: 1rem;
  }
}
.l-page-body .float-img.fl {
  margin-right: 2.5rem;
}
.l-page-body .float-img.fr {
  margin-left: 2.5rem;
}
.l-page-body .summary {
  position: relative;
  padding: 5.5rem 0 3rem;
  margin: 8rem 0 6.5rem;
  background: #FFF7DF;
}
@media screen and (max-width: 767px) {
  .l-page-body .summary {
    padding: 6rem 0 4rem;
    margin: 4rem 0 5rem;
  }
}
.l-page-body .summary:before {
  content: "";
  position: absolute;
  width: 29.2rem;
  height: 4.8rem;
  right: 0;
  background: url(img/page_summary_en.svg) no-repeat center center/contain;
  margin: 0 auto;
  top: 0;
}
@media screen and (max-width: 767px) {
  .l-page-body .summary:before {
    width: 22.8rem;
    height: 3.7rem;
    left: 0;
    margin: 0 auto;
  }
}
.l-page-body .summary-ttl {
  color: #002E57;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 0 3.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-page-body .summary-ttl {
    font-size: 1.8rem;
    padding: 0 2.5rem;
  }
}
.l-page-body .summary-ttl:before {
  content: "";
  width: 0.2rem;
  height: 100%;
  background: #ECBF3F;
  position: absolute;
  left: 0;
  top: 0;
}
.l-page-body .summary-detail {
  font-size: 1.5rem;
  color: #002E57;
  margin: 3rem 0 0 0;
  padding: 0 3.5rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .l-page-body .summary-detail {
    padding: 0 2rem;
    margin-top: 2rem;
    line-height: 1.7;
  }
}
.l-page-body .summary-btns {
  margin-top: 4.2rem;
}
@media screen and (max-width: 767px) {
  .l-page-body .summary-btns {
    margin: 3rem 6% 0 4%;
  }
}
.l-page-body .summary-btns a {
  padding: 1rem 6rem 1rem 2rem;
}
.l-page-body .interview {
  border-color: #2D8BDE;
  border-width: 1.4rem 0.1rem 0.1rem 0.1rem;
  border-style: solid;
  margin: 6.5rem 0;
  position: relative;
  padding-bottom: 2rem;
  display: grid;
  grid-template-columns: 31.5rem calc(100% - 31.5rem - 4.5rem);
  column-gap: 4.5rem;
  grid-template-rows: 18rem auto;
  grid-template-areas:
    "b a"
    "b c";
}
@media screen and (max-width: 767px) {
  .l-page-body .interview {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    margin: 3rem 0;
    border-width: 2.3rem 0.1rem 0.1rem 0.1rem;
    padding: 0 2rem 2rem;
    display: block;
  }
}
.l-page-body .interview:before {
  content: "";
  width: 39.9rem;
  height: 7.8rem;
  background: url(img/page_interview_en.svg) no-repeat center center/contain;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  opacity: 0.2;
}
@media screen and (max-width: 767px) {
  .l-page-body .interview:before {
    width: 25.3rem;
    height: 5rem;
  }
}
.l-page-body .interview-head {
  width: 31.5rem;
  grid-area: b;
}
@media screen and (max-width: 767px) {
  .l-page-body .interview-head {
    width: 100%;
    position: relative;
    margin-top: 1rem;
  }
}
.l-page-body .interview-head .-img {
  width: 100%;
  aspect-ratio: 315/192;
  overflow: hidden;
}
.l-page-body .interview-head .-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-page-body .interview-head .-info {
  margin-top: 3rem;
  padding-left: 3.2rem;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .l-page-body .interview-head .-info {
    padding-left: 0;
  }
}
.l-page-body .interview-head .-info .name {
  display: inline-block;
  color: #004384;
  font-size: 1.7rem;
  font-weight: 700;
}
.l-page-body .interview-head .-info .name span {
  font-size: 2.2rem;
}
.l-page-body .interview-head .-info .year {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #B7B7B7;
  border: 1px solid #B7B7B7;
  padding: 0.2rem 1rem;
}
.l-page-body .interview-head .-position {
  margin-top: 1rem;
  padding-left: 3.2rem;
}
@media screen and (max-width: 767px) {
  .l-page-body .interview-head .-position {
    padding-left: 0;
  }
}
.l-page-body .interview-head .-position ul {
  margin: 0;
}
.l-page-body .interview-head .-position ul li {
  font-size: 1.5rem;
  font-weight: 700;
  color: #004384;
  padding-left: 1.5rem;
  position: relative;
}
.l-page-body .interview-head .-position ul li:before {
  content: "";
  width: 1.1rem;
  height: 0.2rem;
  background: #ECBF3F;
  position: absolute;
  left: 0;
  top: 1rem;
}
.l-page-body .interview-head .-position ul li + li {
  margin-top: 0.8rem;
}
.l-page-body .interview-ttl {
  font-size: 2.6rem;
  font-weight: 700;
  color: #2D8BDE;
  line-height: 1.6;
  padding-right: 2rem;
  margin-top: 9.3rem;
  grid-area: a;
}
@media screen and (max-width: 767px) {
  .l-page-body .interview-ttl {
    font-size: 2rem;
    margin-top: 6rem;
  }
}
.l-page-body .interview-detail {
  color: #002E57;
  margin-top: 1.5rem;
  padding-right: 2rem;
  line-height: 1.6;
  grid-area: c;
}
@media screen and (max-width: 767px) {
  .l-page-body .interview-detail {
    margin-top: 2rem;
    padding-right: 0;
  }
}
.l-page-body .sponsored {
  background: #E4F3FF;
  position: relative;
  padding: 29.8rem 0 4rem;
  margin: 11.5rem -5rem;
}
@media screen and (max-width: 767px) {
  .l-page-body .sponsored {
    padding: 11.2rem 0 6rem;
    margin: 7.5rem -4.3% 3rem;
  }
}
.l-page-body .sponsored:before {
  content: "";
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 29.8rem;
  background: url(img/page_sponsored_pc.png) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .l-page-body .sponsored:before {
    height: 11.2rem;
    background: url(img/page_sponsored_sp.png) no-repeat center center/cover;
  }
}
.l-page-body .sponsored-head {
  margin-top: -3.5rem;
}
@media screen and (max-width: 767px) {
  .l-page-body .sponsored-head {
    margin-top: 2rem;
  }
}
.l-page-body .sponsored-head .-ttl {
  margin-left: -2.3rem;
  padding-left: 1.5rem;
  position: relative;
  text-align: center;
}
.l-page-body .sponsored-body .-detail .catch {
 font-size:3rem;
 font-weight: 700;
 text-align: center;
 color:#F95D00;
 background: #ffffff;
 margin: 0rem auto 2rem;
 padding: 1rem 1rem;
}
.l-page-body .sponsored-head .-ttl span {
  color: #004384;
  font-size: 1.3rem;
  font-weight: 700;
  position: relative;
  padding-left: 3.5rem;
}
@media screen and (max-width: 767px) {
  .l-page-body .sponsored-head .-ttl span {
    font-size: 1.1rem;
    padding-left: 2.7rem;
  }
  .l-page-body .sponsored-head .catch {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #F95D00;
    background: #ffffff;
    margin: -1rem auto 2rem;
    padding: 1rem 1rem;
}
}
.l-page-body .sponsored-head .-ttl span:before {
  content: "";
  width: 3rem;
  height: 1.8rem;
  background: url(img/common_sponsored_icn.svg) no-repeat center center/contain;
  position: absolute;
  left: 0;
  top: 0.3rem;
}
@media screen and (max-width: 767px) {
  .l-page-body .sponsored-head .-ttl span:before {
    width: 2.6rem;
    height: 1.5rem;
    top: 0.3rem;
  }
}
.l-page-body .sponsored-head .-logo {
  width: 44.6rem;
  margin: -1.2rem auto 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-page-body .sponsored-head .-logo {
    width: 34.9rem;
  }
}
.l-page-body .sponsored-body {
  margin-top: 1.5rem;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 2rem;
  padding: 0 5rem;
}
@media screen and (max-width: 767px) {
  .l-page-body .sponsored-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 4%;
    margin-top: 0;
  }
  .l-page-body .sponsored-body .-detail .catch {
 font-size:2.5rem;
}
}
.l-page-body .sponsored-body .-img {
  width: 45.4rem;
}
@media screen and (max-width: 767px) {
  .l-page-body .sponsored-body .-img {
    width: 100%;
  }
}
.l-page-body .sponsored-body .-img .video {
  width: 100%;
  aspect-ratio: 454/255;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .l-page-body .sponsored-body .-img .video {
    width: 100%;
  }
}
.l-page-body .sponsored-body .-img .video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-page-body .sponsored-body .-img .caption {
  margin-top: 1rem;
  line-height: 1.3;
  text-align: center;
  font-size: 1rem;
  color: #707070;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .l-page-body .sponsored-body .-img .caption {
    margin: 1rem 0 1.5rem;
  }
}
.l-page-body .sponsored-body .-detail {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.l-page-body .sponsored-body .-detail p {
  font-size: 1.4rem;
  line-height: 1.75;
  color: #002E57;
  margin: 0;
}
.l-page-body .sponsored-body .-detail p + p {
  margin-top: 1.5rem;
}
.l-page-body .sponsored-btns {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .l-page-body .sponsored-btns {
    margin: 3rem 6% 0 4%;
  }
  .l-page-body .sponsored-btns a {
    padding: 1rem 6rem 1rem 2rem;
  }
}
.l-page-body .faq {
  margin: 5rem 0;
}
@media screen and (max-width: 767px) {
  .l-page-body .faq {
    padding: 2rem 0;
    margin: 3rem 0 1rem;
  }
}
.l-page-body .faq-unit .-q {
  color: #005BAC;
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .l-page-body .faq-unit .-q {
    font-size: 1.8rem;
  }
}
.l-page-body .faq-unit .-q:before {
  content: "";
  width: 3.4rem;
  height: 0.2rem;
  background: #2D8BDE;
  position: absolute;
  left: -5rem;
  top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .l-page-body .faq-unit .-q:before {
    top: 1.2rem;
    left: -4%;
    width: 1.2rem;
  }
}
.l-page-body .faq-unit .-a {
  color: #2D8BDE;
  font-size: 2rem;
  line-height: 1.8;
  font-weight: 700;
  margin-top: 2.4rem;
  padding: 0.5rem 2.2rem;
  border: 0.2rem solid #C9E6FF;
}
@media screen and (max-width: 767px) {
  .l-page-body .faq-unit .-a {
    border: none;
    font-size: 1.8rem;
    padding: 0;
    margin-top: 1.8rem;
  }
}
.l-page-body .faq-unit .-txt {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
  margin-top: 1.8rem;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .l-page-body .faq-unit .-txt {
    display: block;
  }
}
.l-page-body .faq-unit .-txt .img {
  width: 35rem;
  aspect-ratio: 350/210;
}
.l-page-body .faq-unit .-txt .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-page-body .faq-unit .-txt .img .caption {
  margin-top: 1rem;
  line-height: 1.3;
  text-align: center;
  font-size: 1rem;
  color: #707070;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .l-page-body .faq-unit .-txt .img .caption {
    margin: 0.5rem 0 1.5rem;
  }
}
.l-page-body .faq-unit .-txt .detail {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  line-height: 2;
  color: #002E57;
  margin: 0 0 1rem;
}
@media screen and (max-width: 767px) {
  .l-page-body .faq-unit .-txt .detail {
    margin-top: 2rem;
  }
}
.l-page-body .faq-unit .-txt.m-fdr {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.l-page-body .faq-unit + .faq-unit {
  margin-top: 3.2rem;
}
.l-page-body .movie {
  margin: 5.5rem 0;
  position: relative;
  z-index: 2;
}
.l-page-body .movie:before {
  content: "";
  width: calc(100% + 10rem);
  height: 25rem;
  background: -webkit-gradient(linear, right top, left top, from(rgba(0, 91, 172, 0.8)), to(rgba(0, 46, 86, 0.8)));
  background: linear-gradient(to left, rgba(0, 91, 172, 0.8), rgba(0, 46, 86, 0.8));
  position: absolute;
  left: -5rem;
  top: 10rem;
  -webkit-transform: skewY(8.4deg);
          transform: skewY(8.4deg);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .l-page-body .movie:before {
    height: 12.5rem;
    top: 4.5rem;
    left: -4.4%;
    width: 109%;
  }
}
@media screen and (max-width: 767px) {
  .l-page-body .movie {
    margin: 3rem 0;
  }
}
.l-page-body .movie-wrap {
  width: 68.2rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-page-body .movie-wrap {
    width: 100%;
  }
}
.l-page-body .movie-wrap .ttl {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #002E57;
  padding: 0;
  margin-bottom: 1.8rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-page-body .movie-wrap .ttl {
    font-size: 1.5rem;
  }
}
.l-page-body .movie-wrap .video {
  width: 100%;
  aspect-ratio: 682/386;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .l-page-body .movie-wrap .video {
    aspect-ratio: 345/219;
  }
}
.l-page-body .movie-wrap .video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-page-body .movie-wrap .caption {
  margin-top: 1rem;
  line-height: 1.3;
  text-align: center;
  font-size: 1rem;
  color: #707070;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .l-page-body .movie-wrap .caption {
    margin: 1rem 0 1.5rem;
  }
}
.l-page-body .schedule {
  margin: 8rem 0 3rem;
  padding: 6rem 0 0;
  border-top: 1px solid #B7B7B7;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-page-body .schedule {
    margin: 6rem 0 0;
    padding: 3rem 0 0;
  }
}
.l-page-body .schedule:before {
  content: "";
  width: 37.9rem;
  height: 5.5rem;
  background: url(img/page_schedule_en.svg) no-repeat center center/contain;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-page-body .schedule:before {
    width: 18.8rem;
    height: 3.5rem;
  }
}
.l-page-body .schedule-ttl {
  font-size: 2rem;
  font-weight: 700;
  color: #005BAC;
  text-align: center;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 767px) {
  .l-page-body .schedule-ttl {
    font-size: 1.7rem;
  }
}
.l-page-body .schedule-fig {
  width: 77.3rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-page-body .schedule-fig {
    width: 100%;
  }
}
.l-page-body .schedule-fig .-img {
  width: 100%;
}
.l-page-body .schedule-fig .caption {
  margin-top: 1rem;
  line-height: 1.3;
  text-align: center;
  font-size: 1rem;
  color: #707070;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .l-page-body .schedule-fig .caption {
    margin: 1rem 0 1.5rem;
  }
}
.l-page-body .daily {
  margin: 3rem 0;
  padding: 7.5rem 0 0;
  position: relative;
  border-top: 1px solid #B7B7B7;
}
@media screen and (max-width: 767px) {
  .l-page-body .daily {
    margin-top: 3rem;
    padding: 3.2rem 0 0;
  }
}
.l-page-body .daily:before {
  content: "";
  width: 37.9rem;
  height: 5.5rem;
  background: url(img/page_daily_en.svg) no-repeat center center/contain;
  position: absolute;
  left: 0;
  right: 0;
  top: 1.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-page-body .daily:before {
    width: 16.8rem;
    height: 3rem;
    top: 0.5rem;
  }
}
.l-page-body .daily-ttl {
  font-size: 2rem;
  font-weight: 700;
  color: #005BAC;
  text-align: center;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 767px) {
  .l-page-body .daily-ttl {
    font-size: 1.7rem;
  }
}
.l-page-body .daily-wrap {
  width: 84.5rem;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
  gap: 5.3rem;
  margin: 4rem auto 0;
}
@media screen and (max-width: 767px) {
  .l-page-body .daily-wrap {
    display: block;
    width: 100%;
    margin: 2rem auto 0;
  }
}
.l-page-body .daily-head {
  width: 31.5rem;
  position: sticky;
  top: 10rem;
}
@media screen and (max-width: 767px) {
  .l-page-body .daily-head {
    width: 92%;
    margin: 0 auto;
    margin-top: 1rem;
    position: static;
  }
}
.l-page-body .daily-head .-img {
  width: 100%;
  aspect-ratio: 315/192;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .l-page-body .daily-head .-img {
    width: 100%;
  }
}
.l-page-body .daily-head .-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-page-body .daily-head .-caption {
  margin-top: 1rem;
  font-size: 1rem;
  color: #707070;
  word-break: break-all;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-page-body .daily-head .-caption {
    margin: 1.5rem 0 1.5rem;
  }
}
.l-page-body .daily-head .-info {
  margin-top: 1rem;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .l-page-body .daily-head .-info {
    padding-left: 0;
  }
}
.l-page-body .daily-head .-info .name {
  display: inline-block;
  color: #004384;
  font-size: 1.7rem;
  font-weight: 700;
}
.l-page-body .daily-head .-info .name span {
  font-size: 2.8rem;
}
.l-page-body .daily-head .-info .year {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #B7B7B7;
  border: 1px solid #B7B7B7;
  padding: 0.2rem 1rem;
}
.l-page-body .daily-head .-position {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .l-page-body .daily-head .-position {
    padding-left: 0;
  }
}
.l-page-body .daily-head .-position ul {
  margin: 0;
}
.l-page-body .daily-head .-position ul li {
  font-size: 1.5rem;
  font-weight: 700;
  color: #004384;
  padding-left: 1.5rem;
  position: relative;
}
.l-page-body .daily-head .-position ul li:before {
  content: "";
  width: 1.1rem;
  height: 0.2rem;
  background: #ECBF3F;
  position: absolute;
  left: 0;
  top: 1rem;
}
.l-page-body .daily-head .-position ul li + li {
  margin-top: 0.8rem;
}
.l-page-body .daily-head .-detail {
  color: #002E57;
  line-height: 1.6;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .l-page-body .daily-head .-detail {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
.l-page-body .daily-head .-btn {
  margin-top: 2rem;
}
.l-page-body .daily-head .-btn .btn-internal {
  margin: 0;
  width: 30.4rem;
}
@media screen and (max-width: 767px) {
  .l-page-body .daily-head .-btn .btn-internal {
    width: 100%;
  }
}
.l-page-body .daily-head .-btn .btn-internal a {
  padding: 1rem 6rem 1rem 2rem;
}
@media screen and (max-width: 767px) {
  .l-page-body .daily-head .-btn .btn-internal a {
    padding: 1rem 6rem 1rem 2rem;
  }
}
.l-page-body .daily-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .l-page-body .daily-body {
    margin-top: 5rem;
  }
}
.l-page-body .daily-body .-wrap {
  position: relative;
  padding-left: 2rem;
}
.l-page-body .daily-body .-wrap:before {
  content: "";
  width: 0.2rem;
  height: 100%;
  background: #FFEDB8;
  position: absolute;
  left: 0;
  top: 0;
}
.l-page-body .daily-body .-wrap .unit-ttl {
  background: #FFF4D5;
  font-size: 1.5rem;
  font-weight: 700;
  color: #002E57;
  padding: 1rem 2rem 0.8rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-page-body .daily-body .-wrap .unit-ttl {
    padding: 1.3rem 2rem 1.2rem;
  }
}
.l-page-body .daily-body .-wrap .unit-ttl:before {
  content: "";
  width: 1.3rem;
  height: 1.3rem;
  background: #003E75;
  position: absolute;
  left: -2.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-page-body .daily-body .-wrap .unit-ttl .-time {
  position: relative;
  padding-right: 2rem;
  margin-right: 2rem;
}
.l-page-body .daily-body .-wrap .unit-ttl .-time:after {
  content: "";
  width: 0.1rem;
  height: 3rem;
  background: #B7B7B7;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(40deg);
          transform: translateY(-50%) rotate(40deg);
}
.l-page-body .daily-body .-wrap .unit-detail {
  margin-top: 2rem;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .l-page-body .daily-body .-wrap .unit-detail {
    display: block;
    margin-top: 1.3rem;
  }
}
.l-page-body .daily-body .-wrap .unit-detail .-img {
  width: 17.2rem;
  aspect-ratio: 172/121;
  overflow: hidden;
  margin-right: 1rem;
}
@media screen and (max-width: 767px) {
  .l-page-body .daily-body .-wrap .unit-detail .-img {
    margin-right: 0;
    margin-bottom: 1.5rem;
    width: 100%;
  }
}
.l-page-body .daily-body .-wrap .unit-detail .-img img, .l-page-body .daily-body .-wrap .unit-detail .-img video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-page-body .daily-body .-wrap .unit-detail .-txt {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #002E57;
  margin-bottom: 0.8rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.l-page-body .daily-body .-wrap .unit + .unit {
  margin-top: 1.5rem;
}
.l-page-body .other {
  border-top: 1px solid #B7B7B7;
  margin: 7rem 0 0;
  padding-top: 8.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-page-body .other {
    padding-top: 3.5rem;
  }
}
.l-page-body .other:before {
  content: "";
  width: 36.9rem;
  height: 4.5rem;
  background: url(img/page_other_en.svg) no-repeat center center/contain;
  position: absolute;
  left: 0;
  top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .l-page-body .other:before {
    width: 16.8rem;
    height: 3rem;
    top: 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .l-page-body .other {
    margin: 4rem 0;
  }
}
.l-page-body .other-ttl {
  font-size: 2rem;
  font-weight: 700;
  color: #005BAC;
}
@media screen and (max-width: 767px) {
  .l-page-body .other-ttl {
    font-size: 1.7rem;
  }
}
.l-page-body .other-grid {
  margin-top: 2.8rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.5rem 1fr 1.5rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .l-page-body .other-grid {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.l-page-body .other-grid .-unit a {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .l-page-body .other-grid .-unit a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    background: #E1E1E1;
  }
}
.l-page-body .other-grid .-unit .img {
  width: 100%;
  aspect-ratio: 290/152;
  overflow: hidden;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (max-width: 767px) {
  .l-page-body .other-grid .-unit .img {
    width: 14.1rem;
    aspect-ratio: 141/74;
  }
}
.l-page-body .other-grid .-unit .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-page-body .other-grid .-unit .tags {
  margin-top: 0.5rem;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  gap: 0.6rem;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media screen and (max-width: 767px) {
  .l-page-body .other-grid .-unit .tags {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
            justify-content: flex-start;
    -ms-flex-align: start;
    -webkit-box-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: 1rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.l-page-body .other-grid .-unit .tags .tag {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 700;
  color: #B7B7B7;
  border: 1px solid #B7B7B7;
  padding: 0.2rem 0.7rem;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .l-page-body .other-grid .-unit .tags .tag {
    padding: 0.1rem 0.5rem;
  }
}
.l-page-body .other-grid .-unit .txt {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  background: #2D8BDE;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: 700;
  padding: 1.3rem 3rem 1.1rem 1.3rem;
  position: relative;
  width: 100%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (max-width: 767px) {
  .l-page-body .other-grid .-unit .txt {
    font-size: 1.5rem;
    padding: 1rem 3rem 1.1rem 1.6rem;
    width: 100%;
    margin-top: 1rem;
    oder: 3;
  }
}
.l-page-body .other-grid .-unit .txt:after {
  content: "";
  width: 2rem;
  height: 2rem;
  background: url(img/common_icn_circlearw_wh.svg) no-repeat center center/contain;
  position: absolute;
  right: 1.3rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .l-page-body .other-grid .-unit .txt:after {
    right: 0.8rem;
  }
}
.l-page .links {
  border-top: 1px solid #B7B7B7;
  border-bottom: 1px solid #B7B7B7;
  margin: 6.5rem auto 0;
  padding: 2.7rem 2.7rem 5.5rem;
  max-width: 80rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-page .links {
    margin-top: 5rem;
    padding: 2.8rem 0 5rem;
  }
}
.l-page .links:before {
  content: "";
  width: 9.7rem;
  height: 3.1rem;
  background: url(img/page_links_en.svg) no-repeat center center/contain;
  position: absolute;
  left: 0.8rem;
  top: 1rem;
}
@media screen and (max-width: 767px) {
  .l-page .links:before {
    width: 9.7rem;
    height: 3.1rem;
  }
}
.l-page .links-ttl {
  font-size: 1.8rem;
  font-weight: 700;
  color: #002E57;
}
@media screen and (max-width: 767px) {
  .l-page .links-ttl {
    font-size: 1.7rem;
    padding-left: 2.7rem;
  }
}
.l-page .links-list {
  margin: 2rem 0 0 1.5rem;
}
.l-page .links-list li {
  position: relative;
  padding-left: 2.9rem;
  color: #002E57;
  font-size: 1.58rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .l-page .links-list li {
    font-size: 1.4rem;
    padding-left: 1.6rem;
  }
}
.l-page .links-list li:before {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  background: #2D8BDE;
  position: absolute;
  left: 0;
  top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .l-page .links-list li:before {
    top: 0.5rem;
    left: -1.4rem;
  }
}
.l-page .links-list li a {
  display: inline-block;
  padding-right: 4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-page .links-list li a {
    padding-right: 2rem;
  }
}
.l-page .links-list li a:after {
  content: "";
  width: 1.6rem;
  height: 5rem;
  background: url(img/common_icn_arw_bl.svg) no-repeat center center/contain;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-page .links-list li + li {
  margin-top: 1.8rem;
}
body.sitemap br { display: none; }