@charset "utf-8";
/* ==========================================================================
   Foundation
   ========================================================================== */
:root {
	--color-text: #303030;
	--color-link: #0D4BD0;
	--color-link-hover: #236AE8;
	--color-primary: #0D4BD0;
	--font: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
	--font-en: "Barlow Condensed", sans-serif;
}
/*!
 * Sanitize 12.0.1 (https://github.com/csstools/sanitize.css)
 * Licensed under the CC0 1.0 Universal.
 */
*,:after,:before{box-sizing:border-box;background-repeat:no-repeat}
:after,:before{text-decoration:inherit;vertical-align:inherit}
html{cursor:default;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-tap-highlight-color:rgba(0,0,0,0);-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;word-break:break-word}
body{margin:0}
h1{font-size:2em;margin:.67em 0}
dl dl,dl ol,dl ul,ol dl,ol ol,ol ul,ul dl,ul ol,ul ul{margin:0}
hr{color:inherit;height:0;overflow:visible}
main{display:block}
nav ol,nav ul{list-style:none;padding:0}
/*nav li:before{content:"\200B"}*/
pre{font-family:monospace;font-size:1em;overflow:auto;-ms-overflow-style:scrollbar}
a{background-color:transparent}
abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}
b,strong{font-weight:bolder}
code,kbd,samp{font-family:monospace;font-size:1em}
small{font-size:80%}
audio,canvas,iframe,img,svg,video{vertical-align:middle}
audio,video{display:inline-block}
audio:not([controls]){display:none;height:0}
iframe,img{border-style:none}
svg:not([fill]){fill:currentColor}
svg:not(:root){overflow:hidden}
table{border-collapse:collapse;border-color:inherit;text-indent:0}
button,input,select{margin:0}
button{overflow:visible;text-transform:none}
[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}
fieldset{border:1px solid #a0a0a0;padding:.35em .75em .625em}
input{overflow:visible}
legend{color:inherit;display:table;max-width:100%;white-space:normal}
progress{display:inline-block;vertical-align:baseline}
select{text-transform:none}
textarea{margin:0;overflow:auto;resize:vertical}
[type=checkbox],[type=radio]{padding:0}
[type=search]{-webkit-appearance:textfield;outline-offset:-2px}
::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}
::-webkit-input-placeholder{color:inherit;opacity:.54}
::-webkit-search-decoration{-webkit-appearance:none}
::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}
::-moz-focus-inner{border-style:none;padding:0}
:-moz-focusring{outline:1px dotted ButtonText}
:-moz-ui-invalid{box-shadow:none}
details,dialog{display:block}
dialog{background-color:#fff;border:solid;color:#000;height:-moz-fit-content;height:fit-content;left:0;margin:auto;padding:1em;position:absolute;right:0;width:-moz-fit-content;width:fit-content}
dialog:not([open]){display:none}
summary{display:list-item}
canvas{display:inline-block}
template{display:none}
[tabindex],a,area,button,input,label,select,summary,textarea{-ms-touch-action:manipulation}
[hidden]{display:none}
[aria-busy=true]{cursor:progress}
[aria-controls]{cursor:pointer}
[aria-disabled=true],[disabled]{cursor:not-allowed}
[aria-hidden="false"][hidden]{display:inline}
[aria-hidden="false"][hidden]:not(:focus){clip:rect(0,0,0,0);position:absolute}
html {
	font-size: 62.5%;
}
body {
	overflow-x: hidden;
	background: #fff;
	color: #333;
	font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
	font-size: 1.6em;
	line-height: 2;
}
a {
	color: #0D4BD0;
}
a:hover,
a:active {
	color: #236AE8;
}
/* Typography Base Setting */
h1, h2, h3, h4, h5, h6 {
	margin: 0;
}
p, ul, ol {
	margin-top: 0;
	margin-bottom: 1em;
}
ol, ul {
	padding-left: 2em;
}
ol {
	list-style: decimal outside none;
}
ul {
	list-style: square outside none;
}
li ol, li ul {
	margin-bottom: 0;
}
nav ol, nav ul {
	list-style: none;
	padding-left: 0;
}
em {
	font-style: normal;
}
rp, rt {
	line-height: 1;
	font-size: .688em;
}
table {
	empty-cells: show;
	font-size: 1em;
}
iframe {
	display: block;
	width: 100%;
}
img {
	height: auto;
}
img, iframe, button, input, select, textarea {
	max-width: 100%;
}
figure {
	margin: 0;
}
textarea {
	height: auto;
	resize: vertical;
}
/* ==========================================================================
   Layout
   ========================================================================== */
body {
  opacity: 0;
  animation: fadeIn 0.5s ease 0.3s both;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.wrap {
  overflow: hidden;
  position: relative;
}
.container {
  display: block;
  position: relative;
  width: 90%;
  max-width: 1130px;
  margin: 0 auto;
}
.container--wide {
  max-width: 1280px;
}
/*------------------------------------*\
    ヘッダー
\*------------------------------------*/
.header {
  display: flex;
  align-items: center;
}
.header-logo {
  display: block;
}
.header-logo img {
    display: block;
    width: 100%;
  }
.header-navi-list {
  margin: 0;
  padding: 0;
}
/*------------------------------------*\
    フッター
\*------------------------------------*/
.footer {
  padding-top: 10vw;
  padding-bottom: 30px;
  background: url("../images/footer_bg.jpg") no-repeat center center / cover;
  color: #fff;
}
.footer__main .btn-corporate {
  width: 23.3rem;
}
.footer__logo {
  max-width: 366px;
  margin-bottom: 20px;
}
.footer__address {
  margin-bottom: 20px;
  line-height: 1.88;
}
.footer__sub {
  margin-top: 60px;
  margin-bottom: 60px;
}
.footer__sub ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
.footer__sub li {
    margin-bottom: 1em;
  }
.footer__sub a {
    display: flex;
    gap: 1em;
    color: inherit;
    line-height: 1;
    -webkit-text-decoration: none;
    text-decoration: none;
  }
.footer__sub a b {
      flex: 0 0 6.5em;
      font-family: "Barlow Condensed", sans-serif;
      font-weight: 500;
      font-size: 2.4rem;
      letter-spacing: 0.025em;
      text-decoration: underline;
      -webkit-text-decoration: underline solid transparent;
      text-decoration: underline solid transparent;
      text-decoration-thickness: 1px;
      text-underline-offset: 0px;
      transition: all 0.3s;
    }
.footer__sub a span {
      display: inline-block;
      position: relative;
      padding-left: 2em;
      font-size: 1.5rem;
    }
.footer__sub a span::before {
        position: absolute;
        top: 50%;
        left: 0;
        width: 1em;
        height: 0;
        border-top: 1px solid;
        content: "";
      }
.footer__sub a:hover b {
      text-decoration-color: #fff;;
      text-underline-offset: 5px;
    }
.footer__subtitle {
  margin-bottom: 0.5em;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3em;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.025em;
}
.footer__pagetop {
  position: relative;
}
.pagetop {
  display: inline-block;
  position: absolute;
  bottom: -1em;
  right: 0;
  border-radius: 8px;
  background: #0D4BD0;
}
.footer__copyright {
  font-family: "Barlow Condensed", sans-serif;
  font-size: calc(1em - 0.2rem);
}
.banner-slider {
  margin-top: 40px;
}
.banner-slider img {
    width: 25vw;
  }
/* ==========================================================================
   Object
   ========================================================================== */
/* Component
   ----------------------------------------------------------------- */
/*------------------------------------*\
    Solved by Flexbox
    CC BY 4.0 license
    https://github.com/philipwalton/solved-by-flexbox.git
\*------------------------------------*/
.grid {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.grid-cell {
  flex: 1;
}
.grid--flexcells > .grid-cell {
  display: flex;
}
.grid--top {
  align-items: flex-start;
}
.grid--bottom {
  align-items: flex-end;
}
.grid--center {
  align-items: center;
}
.grid--justifyCenter {
  justify-content: center;
}
.grid-cell--top {
  align-self: flex-start;
}
.grid-cell--bottom {
  align-self: flex-end;
}
.grid-cell--center {
  align-self: center;
}
.grid-cell--autoSize {
  flex: none;
}
.grid--fit > .grid-cell {
  flex: 1;
}
.grid--full > .grid-cell {
  flex: 0 0 100%;
}
.grid--1of2 > .grid-cell {
  flex: 0 0 50%;
}
.grid--1of3 > .grid-cell {
  flex: 0 0 33.3333%;
}
.grid--1of4 > .grid-cell {
  flex: 0 0 25%;
}
.grid--gutters {
  margin: -25px 0 25px -25px;
}
.grid--gutters > .grid-cell {
  padding: 25px 0 0 25px;
}
.grid--gutters-wide {
  margin: -40px 0 40px -40px;
}
.grid--gutters-wide > .grid-cell {
  padding: 40px 0 0 40px;
}
/* 見出し */
.heading {
  margin-bottom: 2em;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.025em;
}
.heading[data-en-before]::before,.heading[data-en-after]::after {
    display: block;
    color: #0D4BD0;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 4em;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
  }
.heading[data-en-before]::before {
    content: attr(data-en-before);
  }
.heading[data-en-after]::after {
    content: attr(data-en-after);
  }
.h3 {
  margin-bottom: 15px;
  color: #0D4BD0;
  font-size: 2rem;
  font-weight: 600;
}
.lead {
  margin-bottom: 15px;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.76;
}
/* リスト */
.list-none {
  list-style: none;
  padding: 0;
}
/* リンク */
.link {
  display: inline-flex;
  align-items: center;
  color: #000;
  font-weight: bold;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: all 0.3s ease-out;
}
.link__text {
  color: inherit;
}
.link__icon {
  position: relative;
  top: -2px;
  margin-left: 13px;
  font-size: 36px;
  font-weight: normal;
  color: inherit;
  vertical-align: middle;
  transition: all 0.3s ease-out;
}
.link__icon.icon-arrow-left {
    margin-right: 13px;
    margin-left: 0;
  }
.link:hover {
  color: #000;
}
.link:hover .link__icon.icon-arrow-up {
  transform: translateY(-5px);
}
.link:hover .link__icon.icon-arrow-right {
  transform: translateX(5px);
}
.link:hover .link__icon.icon-arrow-left {
  transform: translateX(-5px);
}
/* HR */
hr {
  margin: 4rem 0;
  border-top: 1px solid #999;
}
/*------------------------------------*\
    Buttons
\*------------------------------------*/
.btn1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-width: 290px;
  height: 60px;
  border-radius: 30px;
  border: none;
  padding: 10px 15px;
  background: #0D4BD0;
  color: #fff;
  font-size: 1.6rem;
  font-weight: normal;
  text-align: center;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: all 0.3s ease-out;
}
.btn1.is-imcomplete {
    background: #a3d0e2;
  }
.btn1 .arrow-left::before,.btn1 .arrow-right::after {
    content: "\e900";
    display: inline-block;
    font-size: 0.8em;
    font-family: "icomoon";
  }
.btn1 .external::after {
    content: "\e904";
    display: inline-block;
    font-family: "icomoon";
    font-size: 1.2em;
    vertical-align: -0.15em;
  }
.btn1 .arrow-left::before {
    margin-right: 0.5em;
  }
.btn1 .external::after,.btn1 .arrow-right::after {
    margin-left: 0.5em;
  }
.btn1:hover {
    color: #fff;
  }
.btn-corporate {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: 6px;
  background: #303030;
  color: #fff !important;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-corporate:hover {
    background: #0D4BD0;
  }
/* @import "object/component/_table.css"; */
/* Project
   ----------------------------------------------------------------- */
/*------------------------------------*\
    共通
\*------------------------------------*/
/* リンク */
.link-block {
  color: #303030 !important;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.hover-scale {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.hover-scale img {
  transition: all 0.5s ease-out;
}
.hover-scale:hover img,
a:hover .hover-scale img {
  transform: scale(1.1);
}
.hover-fade {
  transition: all 0.5s ease-out;
}
.hover-fade:hover {
  opacity: 0.7;
}
/* 画像 */
.img-round {
  overflow: hidden;
  border-radius: 10px;
}
/* Splide */
.splide__arrow {
  opacity: 1;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #303030;
}
.splide__arrow--prev::before,
.splide__arrow--next::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/icon_arrow.svg");
  background-size: contain;
}
.splide__arrow--prev::before {
  transform: rotate(180deg);
}
/* modaal */
.modaal-wrapper {
  overflow: hidden;
}
/*------------------------------------*\
    メイン
\*------------------------------------*/
/* Utility
   ----------------------------------------------------------------- */
/* Responsive */
.video {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}
.video iframe {
  position: absolute;
  outline: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* Display */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(0px 0px 99.9% 99.9%);
  border: 0;
}
.u-none {
  display: none;
}
.u-block {
  display: block;
}
.u-inline {
  display: inline;
}
.u-inline-block {
  display: inline-block;
}
/* Text Align & Font style */
.u-text-left {
  text-align: left;
}
.u-text-center {
  text-align: center;
}
.u-text-right {
  text-align: right;
}
.u-vertical-top {
  vertical-align: top;
}
.u-vertical-middle {
  vertical-align: middle;
}
.u-vertical-bottom {
  vertical-align: bottom;
}
.u-text-muted {
  color: #b2b5b5;
}
/* widths */
.u-w100 {
  width: 100%;
}
.u-w90 {
  width: 90%;
}
.u-w80 {
  width: 80%;
}
.u-w75 {
  width: 75%;
}
.u-w70 {
  width: 70%;
}
.u-w66 {
  width: 66%;
}
.u-w60 {
  width: 60%;
}
.u-w50 {
  width: 50%;
}
.u-w40 {
  width: 40%;
}
.u-w33 {
  width: 33%;
}
.u-w30 {
  width: 30%;
}
.u-w25 {
  width: 25%;
}
.u-w20 {
  width: 20%;
}
.u-w10 {
  width: 10%;
}
.u-w-auto {
  width: auto;
}
/* Margins */
.u-mt-0 {
  margin-top: 0 !important;
}
.u-mb-0 {
  margin-bottom: 0 !important;
}
.u-mr-0 {
  margin-right: 0 !important;
}
.u-ml-0 {
  margin-left: 0 !important;
}
.u-mt-1 {
  margin-top: 10px !important;
}
.u-mr-1 {
  margin-right: 10px !important;
}
.u-mb-1 {
  margin-bottom: 10px !important;
}
.u-ml-1 {
  margin-left: 10px !important;
}
.u-mt-2 {
  margin-top: 20px !important;
}
.u-mr-2 {
  margin-right: 20px !important;
}
.u-mb-2 {
  margin-bottom: 20px !important;
}
.u-ml-2 {
  margin-left: 20px !important;
}
.u-mt-3 {
  margin-top: 40px !important;
}
.u-mr-3 {
  margin-right: 40px !important;
}
.u-mb-3 {
  margin-bottom: 40px !important;
}
.u-ml-3 {
  margin-left: 40px !important;
}
.u-mt-4 {
  margin-top: 60px !important;
}
.u-mr-4 {
  margin-right: 60px !important;
}
.u-mb-4 {
  margin-bottom: 60px !important;
}
.u-ml-4 {
  margin-left: 60px !important;
}
.u-mt-5 {
  margin-top: 100px !important;
}
.u-mr-5 {
  margin-right: 100px !important;
}
.u-mb-5 {
  margin-bottom: 100px !important;
}
.u-ml-5 {
  margin-left: 100px !important;
}
.u-mr-auto,
.u-mx-auto {
  margin-right: auto !important;
}
.u-ml-auto,
.u-mx-auto {
  margin-left: auto !important;
}
/* Paddings */
.u-p-0 {
  padding-top: 0 !important;
}
.u-pt-0 {
  padding-top: 0 !important;
}
.u-pb-0 {
  padding-bottom: 0 !important;
}
/* Text Styles */
.u-bold {
  font-weight: bold;
}
.u-normal {
  font-weight: 400;
}
.u-font-l {
  font-size: 2.4rem;
}
.u-font-m {
  font-size: 1.8rem;
}
.u-font-s {
  font-size: 1.2rem;
}
/* Colors */
.bg-gray {
  background: #f6f6f6;
}
.bg-white {
  background: #fff;
}
@media (min-width: 30.001em) {
  .sm-grid--fit > .grid-cell {
    flex: 1;
  }
  .sm-grid--full > .grid-cell {
    flex: 0 0 100%;
  }
  .sm-grid--1of2 > .grid-cell {
    flex: 0 0 50%;
  }
  .sm-grid--1of3 > .grid-cell {
    flex: 0 0 33.3333%;
  }
  .sm-grid--1of4 > .grid-cell {
    flex: 0 0 25%;
  }
  .sm-grid--gutters {
    margin: -25px 0 25px -25px;
  }
  .sm-grid--gutters > .grid-cell {
    padding: 25px 0 0 25px;
  }
  .sm-grid--gutters-wide {
    margin: -40px 0 40px -40px;
  }
  .sm-grid--gutters-wide > .grid-cell {
    padding: 40px 0 0 40px;
  }
  .u-sm-none {
    display: none !important;
  }
  .u-sm-block {
    display: block !important;
  }
  .u-sm-inline {
    display: inline !important;
  }
  .u-sm-inline-block {
    display: inline-block !important;
  }}
@media (max-width: 40em) {}
@media (min-width: 40.001em) {
  .md-grid--fit > .grid-cell {
    flex: 1;
  }
  .md-grid--full > .grid-cell {
    flex: 0 0 100%;
  }
  .md-grid--1of2 > .grid-cell {
    flex: 0 0 50%;
  }
  .md-grid--1of3 > .grid-cell {
    flex: 0 0 33.3333%;
  }
  .md-grid--1of4 > .grid-cell {
    flex: 0 0 25%;
  }
  .md-grid--gutters {
    margin: -25px 0 25px -25px;
  }
  .md-grid--gutters > .grid-cell {
    padding: 25px 0 0 25px;
  }
  .md-grid--gutters-wide {
    margin: -40px 0 40px -40px;
  }
  .md-grid--gutters-wide > .grid-cell {
    padding: 40px 0 0 40px;
  }
  .u-md-none {
    display: none !important;
  }
  .u-md-block {
    display: block !important;
  }
  .u-md-inline {
    display: inline !important;
  }
  .u-md-inline-block {
    display: inline-block !important;
  }}
@media (max-width: 45em) {}
@media (min-width: 45.001em) {
    .banner-slider img {
      width: 15vw;
      max-width: 240px;
    }}
@media (max-width: 60em) {}
@media (min-width: 60.001em) {
  .container {
    width: calc(100% - 40px);
  }
  .footer {
    padding-top: 120px;
  }
  .footer__inner {
    display: flex;
    justify-content: space-between;
  }
  .footer__sub {
    margin-top: 0;
    margin-bottom: 90px;
  }
    .footer__sub ul {
      width: -moz-fit-content;
      width: fit-content;
      margin-left: auto;
    }
  .lg-grid--fit > .grid-cell {
    flex: 1;
  }
  .lg-grid--full > .grid-cell {
    flex: 0 0 100%;
  }
  .lg-grid--1of2 > .grid-cell {
    flex: 0 0 50%;
  }
  .lg-grid--1of3 > .grid-cell {
    flex: 0 0 33.3333%;
  }
  .lg-grid--1of4 > .grid-cell {
    flex: 0 0 25%;
  }
  .lg-grid--gutters {
    margin: -25px 0 25px -25px;
  }
  .lg-grid--gutters > .grid-cell {
    padding: 25px 0 0 25px;
  }
  .lg-grid--gutters-wide {
    margin: -4rem 0 4rem -4rem;
  }
  .lg-grid--gutters-wide > .grid-cell {
    padding: 4rem 0 0 4rem;
  }
    .heading[data-en-before]::before,.heading[data-en-after]::after {
      font-size: 6em;
    }
  .h2 {
    font-size: 3rem;
  }
  .h3,
  .lead {
    font-size: 2.8rem;
  }
  hr {
    margin: 9rem 0;
  }
  .btn1 {
    height: 70px;
    padding: 10px 30px;
    border-radius: 35px;
    transition: all 0.3s ease-out;
  }
  .btn1:hover {
    background: var(--link-hover);
    color: #fff;
  }
  .u-lg-none {
    display: none !important;
  }
  .u-lg-block {
    display: block !important;
  }
  .u-lg-inline {
    display: inline !important;
  }
  .u-lg-inline-block {
    display: inline-block !important;
  }
  .u-mt-1 {
    margin-top: 15px !important;
  }
  .u-mr-1 {
    margin-right: 15px !important;
  }
  .u-mb-1 {
    margin-bottom: 15px !important;
  }
  .u-ml-1 {
    margin-left: 15px !important;
  }
  .u-mt-2 {
    margin-top: 40px !important;
  }
  .u-mr-2 {
    margin-right: 40px !important;
  }
  .u-mb-2 {
    margin-bottom: 40px !important;
  }
  .u-ml-2 {
    margin-left: 40px !important;
  }
  .u-mt-3 {
    margin-top: 60px !important;
  }
  .u-mr-3 {
    margin-right: 60px !important;
  }
  .u-mb-3 {
    margin-bottom: 60px !important;
  }
  .u-ml-3 {
    margin-left: 60px !important;
  }
  .u-mt-4 {
    margin-top: 80px !important;
  }
  .u-mr-4 {
    margin-right: 80px !important;
  }
  .u-mb-4 {
    margin-bottom: 80px !important;
  }
  .u-ml-4 {
    margin-left: 80px !important;
  }
  .u-mt-5 {
    margin-top: 200px !important;
  }
  .u-mr-5 {
    margin-right: 200px !important;
  }
  .u-mb-5 {
    margin-bottom: 200px !important;
  }
  .u-ml-5 {
    margin-left: 200px !important;
  }}
@media (min-width: 75.001em) {
  body {
    font-size: 1.8rem;
  }
  .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 50%;
    z-index: 100;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1236px;
    height: 82px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 0 0 10px 10px;
  }
  .header-logo {
    width: 274px;
  }
  .navi-btn {
    display: none;
  }
  .header-navi-list {
    display: flex;
    gap: 30px;
  }
    .header-navi-list a {
      display: flex;
      flex-direction: column;
      justify-content: center;
      color: inherit;
      text-align: center;
      -webkit-text-decoration: none;
      text-decoration: none;
      line-height: 1.7;
    }
      .header-navi-list a b {
        font-size: 1.8rem;
        letter-spacing: 0.1em;
        transition: color 0.2s;
      }
      .header-navi-list a span {
        color: #B0B0B0;
        font-size: 1rem;
        letter-spacing: 0;
      }
        .header-navi-list a:hover b {
          color: #0D4BD0;
        }
    .header-navi-list .btn-corporate {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 170px;
      height: 40px;
      font-size: 1.5rem;
    }
  .footer__subtitle {
    font-size: 4em;
  }
  .heading {
    font-size: 2rem;
  }
  .h2 {
    font-size: 4rem;
  }
  .h3,
  .lead {
    font-size: 3.4rem;
  }}
@media (max-width: 75em) {
  .header {
    height: 60px;
    padding: 0 20px;
  }
  .header-logo {
    width: 250px;
  }
  .navi-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    width: 60px;
    height: 60px;
    padding: 0;
    border: 0;
    background: #0D4BD0;
    cursor: pointer;
    transition: all 0.3s ease-out;
  }
    .navi-btn > .icon {
      display: block;
      position: absolute;
      top: 50%;
      left: 50%;
      width: 30px;
      height: 2px;
      background: #fff;
      margin-left: -15px;
      transition: all 0.3s ease-out;
    }
      .navi-btn > .icon::before {
        display: block;
        position: absolute;
        left: 0;
        width: 30px;
        height: 2px;
        background: #fff;
        transition: all 0.2s ease-out;
        content: "";
      }
      .navi-btn > .icon::after {
        display: block;
        position: absolute;
        left: 0;
        width: 30px;
        height: 2px;
        background: #fff;
        transition: all 0.2s ease-out;
        content: "";
      }
      .navi-btn > .icon::before {
        top: -8px;
      }
      .navi-btn > .icon::after {
        bottom: -8px;
      }
  .header-navi {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99;
    transform: translateX(100%);
    width: 240px;
    padding: 60px 20px 20px;
    border-radius: 0 0 0 10px;
    box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.3);
    background: #0D4BD0;
    color: #fff;
    visibility: hidden;
  }
    .header-navi-list li:nth-of-type(n + 2) {
      margin-top: 15px;
    }
    .header-navi-list a {
      display: block;
      color: inherit;
      -webkit-text-decoration: none;
      text-decoration: none;
      line-height: 1.4;
    }
      .header-navi-list a b {
        display: block;
        font-size: 2.2rem;
        letter-spacing: 0.05em;
      }
      .header-navi-list a span {
        font-size: 1.2rem;
        letter-spacing: 0;
      }
    .header-navi-list .btn-corporate {
      width: 100%;
      text-align: center;
    }
      .navi-open .navi-btn > .icon {
        background: transparent;
      }
        .navi-open .navi-btn > .icon::before {
          top: 0;
          transform: rotate(-45deg);
        }
        .navi-open .navi-btn > .icon::after {
          bottom: 0;
          transform: rotate(45deg);
        }
    .navi-open .header-navi {
      transform: translateX(0);
      visibility: visible;
      transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0s;
    }
}
/*# sourceMappingURL=maps/main.css.map */
