/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

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

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 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: inherit; /* 2 */
}

address {
  font-style: inherit;
}

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

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted; /* 2 */
}

/**
 * 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: inherit; /* 2 */
}

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

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

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

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

:root {
  --vw: 1vw;
}

html {
  font-size: 62.5%;
}
@media screen and (max-width: 1340px) {
  html {
    font-size: 0.7462686567vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.5vw;
  }
}

body {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0;
  color: #000;
  line-break: strict;
  isolation: isolate;
  background: #fff;
}
@media screen and (max-width: 767px) {
  body {
    min-width: inherit;
    font-size: 1.4rem;
  }
}

.js-preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

img {
  image-rendering: -webkit-optimize-contrast;
  image-orientation: none;
  width: 100%;
  height: auto;
}
.safari img {
  image-rendering: inherit;
}

/* mouseover
--------------------------------------------------*/
@media screen and (min-width: 1340.1px) {
  .over:hover {
    opacity: 0.6;
    transition: opacity 0.3s;
  }
}
label {
  cursor: pointer;
}

/* main
--------------------------------------------------*/
.f-wrap {
  max-width: 95.4rem;
  margin: 0 auto;
  /*
  @include deviceTABmin{
  	padding: 0 2rem;
  }
  */
}
@media screen and (max-width: 767px) {
  .f-wrap {
    width: auto;
    padding: 0 2rem;
  }
}

.simplebar-content-wrapper::-webkit-scrollbar {
  display: none;
}

/* link
--------------------------------------------------*/
a {
  color: #000;
  transition: 0.5s;
  will-change: transform, opacity;
}
a:link, a:active, a:visited {
  text-decoration: none;
}
a:focus {
  text-decoration: none;
}
@media (any-hover: hover) {
  a:hover {
    text-decoration: none;
    opacity: 0.5;
  }
}

a[href*="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href*="tel:"] {
    pointer-events: all;
  }
}

/* input
--------------------------------------------------*/
button {
  color: #000;
  transition: 0.5s;
  will-change: transform;
}
button:focus {
  text-decoration: none;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.l-header__wrap {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1.6rem 2rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-header__wrap {
    max-width: inherit;
    padding: 1rem 2rem 0;
  }
}
.l-header__logo {
  pointer-events: none;
  opacity: 0;
  width: 15.4rem;
  transition: 0.5s;
}
.is-active .l-header__logo, .is-fixed .l-header__logo {
  pointer-events: all;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 10.5rem;
    z-index: 11;
  }
  .l-header__logo img {
    vertical-align: top;
  }
}
.l-header-nav {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0;
  gap: 0 2rem;
  animation: fadeIn 0.3s 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .l-header-nav {
    gap: 0 1rem;
  }
}
.l-header-nav-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0 3rem;
  width: 37rem;
  background: #fff;
  padding: 1.5rem 0;
  border-radius: 3rem;
}
@media screen and (max-width: 767px) {
  .l-header-nav-list {
    pointer-events: none;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    flex-flow: column;
    align-items: center;
    justify-content: flex-start;
    gap: 3.5rem 0;
    background: #b8dee6;
    width: 100%;
    height: 100%;
    border-radius: 0;
    padding: 12rem 0 0;
    transition: 0.5s;
    z-index: 10;
  }
  .is-open .l-header-nav-list {
    pointer-events: all;
    opacity: 1;
  }
}
.l-header-nav-list__item {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .l-header-nav-list__item {
    font-size: 3rem;
    letter-spacing: 0.05em;
  }
}
.l-header-nav-list__item.is-company {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header-nav-list__item.is-company {
    position: relative;
    display: block;
    font-weight: 400;
    padding: 0 1.2em 0 0;
  }
  .l-header-nav-list__item.is-company::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1em;
    height: 1em;
    background: url(../img/icn_blank_bl.svg) 0 0/100% auto no-repeat;
    transform: translateY(-50%);
  }
}
.l-header-nav-list a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 0.3rem;
  color: #003287;
}
@media screen and (max-width: 767px) {
  .l-header-nav-list a img {
    display: none;
  }
}
.l-header-nav-switch {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 8rem;
  padding: 0.3rem;
  border-radius: 5rem;
  background: #003287;
  overflow: hidden;
  z-index: 11;
}
.l-header-nav-switch__item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 3.4rem;
  height: 3.4rem;
  font-size: 1.4rem;
  font-weight: 600;
  border-radius: 100%;
  color: #fff;
  background: #003287;
}
.l-header-nav-switch__item a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
  background: #003287;
}
.l-header-nav-switch__item.is-current {
  background: #fff;
  color: #003287;
}
.l-header__toggle {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header__toggle {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    flex-flow: column;
    gap: 0.5rem;
    width: 4rem;
    height: 4rem;
    background: #fff;
    cursor: pointer;
    z-index: 100;
    border-radius: 100%;
  }
}
.l-header__toggle span {
  width: 1.8rem;
  height: 0.2rem;
  background: #003287;
  border-radius: 0.5rem;
  transition: 0.5s;
}
.is-fixed .l-header__toggle span:first-child {
  transform: translateY(0.3rem) rotate(-45deg);
}
.is-fixed .l-header__toggle span:last-child {
  transform: translateY(-0.4rem) rotate(45deg);
}

.is-fixed {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.l-footer {
  background: #003287;
}
.l-footer__wrap {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 134rem;
  margin: 0 auto;
  padding: 3.2rem 2rem;
}
@media screen and (max-width: 767px) {
  .l-footer__wrap {
    flex-flow: column;
    padding: 3rem;
  }
}
.l-footer-address {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 4rem;
}
.l-footer-address__logo {
  width: 9.8rem;
}
.l-footer-address__company {
  width: 21.6rem;
}
.l-footer-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 4rem;
}
@media screen and (max-width: 767px) {
  .l-footer-list {
    justify-content: space-between;
    flex-flow: wrap;
    gap: 0;
    padding: 0 2.5rem;
    margin: 2rem 0 0;
  }
}
.l-footer-list__item {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .l-footer-list__item {
    width: 50%;
    text-align: left;
    font-size: 2rem;
  }
}
.l-footer-list__item a {
  color: #fff;
  font-weight: 600;
}
.l-footer-list__item a[target=_blank] {
  position: relative;
  font-weight: 400;
  padding: 0 1.4em 0 0;
}
.l-footer-list__item a[target=_blank]::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1em;
  height: 1em;
  background: url(../img/icn_blank.svg) 0 0/100% auto no-repeat;
  transform: translateY(-50%);
}
.l-footer__copy {
  background: #fff;
  font-size: 1rem;
  text-align: center;
  padding: 0.8rem 0;
}
.l-footer__copy a {
  text-decoration: underline;
}
@media (any-hover: hover) {
  .l-footer__copy a:hover {
    text-decoration: none;
  }
}

.c-heading {
  text-align: center;
  font-weight: 600;
  font-size: 3.6rem;
  color: #003287;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-heading {
    font-size: 2.4rem;
    line-height: 1.375;
  }
}

.js-fadeup {
  transform: translateY(2rem);
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js-fadeup.is-hidden {
  opacity: 0;
  transform: translateY(2rem);
}
.js-fadeup.is-show {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in.active {
  opacity: 1;
}

/*
.slide-up {
	opacity: 0;
	transform: translateY(6rem);
	transition: opacity 0.7s cubic-bezier(.22, 1, .36, 1), transform 0.7s cubic-bezier(.22, 1, .36, 1);
}
.slide-up.active {
	opacity: 1;
	transform: translateY(0);
}
*/
/* --------------------------------------------------
  display
-------------------------------------------------- */
.u-sp {
  display: none;
}

@media screen and (min-width: 1340.1px) {
  .u-sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .u-sp {
    display: block;
  }
  .u-pc {
    display: none;
  }
}
/* --------------------------------------------------
  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;
}

/* --------------------------------------------------
  margin
-------------------------------------------------- */
.u-mt10 {
  margin-top: 1rem;
}
.u-mt15 {
  margin-top: 1.5rem;
}
.u-mt20 {
  margin-top: 2rem;
}
.u-mt30 {
  margin-top: 3rem;
}
.u-mt40 {
  margin-top: 4rem;
}
.u-mt50 {
  margin-top: 5rem;
}

/* --------------------------------------------------
  padding
-------------------------------------------------- */
.-ratio16-9 {
  padding-top: 56.25%;
}

.-ratio4-3 {
  padding-top: 75%;
}

/* --------------------------------------------------
other
-------------------------------------------------- */
.u-bold { /*font-weight: 700;*/ }