/* 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: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  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: #1C232D;
  line-break: strict;
  min-width: 126rem;
}
@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: 767.1px) {
  .over:hover {
    opacity: 0.6;
    transition: opacity 0.3s;
  }
}
label {
  cursor: pointer;
}

/* main
--------------------------------------------------*/
@media screen and (max-width: 767px) {
  .f-main {
    margin-top: 0;
    padding-top: 5rem;
  }
}

.f-wrap {
  max-width: 120rem;
  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: #1C232D;
  transition: 0.3s;
  will-change: transform, opacity;
}
a:link, a:active, a:visited {
  text-decoration: none;
}
a:focus {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    text-decoration: none;
    opacity: 0.8;
  }
}

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

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

.l-header {
  position: relative;
  height: 8rem;
  background: #fff;
  min-width: 126rem;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .l-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    min-width: auto;
  }
}
.l-header-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9;
}
.is-open + .l-header-overlay {
  opacity: 1;
  pointer-events: auto;
}
.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;
  max-width: 136rem;
  padding: 0 3rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-header__wrap {
    padding: 0 0 0 2rem;
  }
}
.l-header-head {
  width: 58rem;
  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 2.4rem;
  padding: 1.7rem 0 0;
}
@media screen and (max-width: 767px) {
  .l-header-head {
    width: auto;
    gap: 0;
    padding: 0;
  }
}
.l-header-head__logo {
  width: 23.1rem;
}
@media screen and (max-width: 767px) {
  .l-header-head__logo {
    width: 10.5rem;
  }
  .l-header-head__logo img {
    vertical-align: top;
  }
}
.l-header-head__ttl {
  width: 33rem;
}
@media screen and (max-width: 767px) {
  .l-header-head__ttl {
    display: none;
  }
}
.l-header-head__txt {
  font-size: 1.4rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .l-header-head__txt {
    font-size: 1rem;
  }
}
.l-header-menu {
  position: absolute;
  top: 0;
  right: 3rem;
  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: 58.7rem;
}
@media screen and (max-width: 767px) {
  .l-header-menu {
    position: relative;
    top: auto;
    right: auto;
    width: 20rem;
  }
}
.l-header-menu__tel {
  width: 29.4rem;
}
@media screen and (max-width: 767px) {
  .l-header-menu__tel {
    width: 4rem;
    margin-right: 1rem;
  }
}
.l-header-menu__btn {
  width: 18.5rem;
  height: 8rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .l-header-menu__btn {
    width: 10rem;
    height: 5rem;
    font-size: 1.2rem;
  }
}
.l-header-menu__btn 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%;
  background: #ff4e00;
  color: #fff;
}
.l-header-toggle {
  cursor: pointer;
}
@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;
    width: 5rem;
    height: 5rem;
  }
}
.l-header-toggle__inner {
  position: relative;
  width: 5rem;
  height: 3rem;
}
@media screen and (max-width: 767px) {
  .l-header-toggle__inner {
    width: 3rem;
    height: 1.8rem;
  }
}
.l-header-toggle__inner span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.3rem;
  background: #000;
  transition: 0.3s;
}
.l-header-toggle__inner span:first-child {
  top: 0;
}
.is-open .l-header-toggle__inner span:first-child {
  transform: rotate(45deg);
  top: 1.3rem;
}
@media screen and (max-width: 767px) {
  .is-open .l-header-toggle__inner span:first-child {
    top: 0.8rem;
  }
}
.l-header-toggle__inner span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.is-open .l-header-toggle__inner span:nth-child(2) {
  opacity: 0;
}
.l-header-toggle__inner span:last-child {
  bottom: 0;
}
.is-open .l-header-toggle__inner span:last-child {
  transform: rotate(-45deg);
  bottom: 1.3rem;
}
@media screen and (max-width: 767px) {
  .is-open .l-header-toggle__inner span:last-child {
    bottom: 0.8rem;
  }
}
.l-header-nav {
  position: fixed;
  top: 8rem;
  right: 0;
  pointer-events: none;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .l-header-nav {
    top: 5rem;
    width: 100%;
  }
}
.is-open .l-header-nav {
  pointer-events: all;
  opacity: 1;
}
.l-header-nav-list {
  width: 75rem;
  background: linear-gradient(90deg, rgb(0, 55, 146) 1%, rgb(94, 196, 241) 100%);
}
@media screen and (max-width: 767px) {
  .l-header-nav-list {
    width: 100%;
  }
}
.l-header-nav-list__item {
  font-size: 2rem;
  font-weight: 700;
  border-top: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .l-header-nav-list__item {
    font-size: 1.4rem;
  }
}
.l-header-nav-list__item:first-child {
  border-top: 0;
}
.l-header-nav-list__item a {
  position: relative;
  display: block;
  color: #fff;
  padding: 2.2rem 0 2.2rem 8.4rem;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .l-header-nav-list__item a {
    padding: 1rem 0 1rem 5rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-header-nav-list__item a:hover {
    opacity: 0.7;
  }
}
.l-header-nav-list__item a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 4.1rem;
  width: 2.1rem;
  height: 2.1rem;
  background: url(../img/common/icn_nav.svg) 0 0/100% auto no-repeat;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .l-header-nav-list__item a::before {
    width: 1.8rem;
    height: 1.8rem;
    left: 2rem;
  }
}

.l-footer {
  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;
  flex-flow: row-reverse;
  background: #242a33;
  margin: 10.8rem 0 0;
  padding: 4.8rem 5rem;
}
@media screen and (max-width: 767px) {
  .l-footer {
    flex-flow: column;
    gap: 1rem 0;
    margin: 0;
    padding: 1.6rem 2rem;
  }
}
.l-footer-list {
  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;
}
.l-footer-list__item {
  position: relative;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  padding-left: 2em;
}
@media screen and (max-width: 767px) {
  .l-footer-list__item {
    font-size: 1.4rem;
  }
}
.l-footer-list__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1em;
  width: 1px;
  height: 100%;
  background: #fff;
}
.l-footer-list__item:first-child {
  padding-left: 0;
}
.l-footer-list__item:first-child::before {
  content: none;
}
.l-footer-list__item a {
  color: #fff;
}
.l-footer__copy {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-footer__copy {
    font-size: 1rem;
    text-align: center;
  }
}

.c-bg {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  flex-flow: column;
  gap: 1rem 0;
  width: 100%;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
  margin: 0 0 8rem;
}
@media screen and (max-width: 767px) {
  .c-bg {
    width: calc(100% + 1.6rem);
    font-size: 2.4rem;
    gap: 0.6rem 0;
    margin: 0 0 6rem -1.6rem;
  }
}
.c-bg span {
  display: inline-block;
  background: #023894;
  color: #fff;
  padding: 1.5rem 2rem;
}
@media screen and (max-width: 767px) {
  .c-bg span {
    padding: 1.3rem 1.5rem;
  }
}
.c-bg--right {
  align-items: flex-end;
}

.c-heading {
  position: relative;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  padding: 0 0 0 2.2rem;
  margin: 0 0 8rem;
}
@media screen and (max-width: 767px) {
  .c-heading {
    font-size: 2.4rem;
    padding: 0 0 0 1.6rem;
    margin: 0 0 3rem;
  }
}
.c-heading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 100%;
  background: #ff0000;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-heading::before {
    width: 0.8rem;
    height: 0.8rem;
  }
}

/* --------------------------------------------------
  display
-------------------------------------------------- */
.u-sp {
  display: none;
}

@media screen and (min-width: 767.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;*/ }