@charset "UTF-8";
/**
 * Mixins
 */
/**
 * SuperGradient
 * SASS MULTI-COLOR GRADIENT MIXIN (LINEAR & RADIAL)
 * Options
 * $type: linear*, radial
 * $from: top*, left, top left, top right, bottom right, bottom left, center (radial)
 * $colors: hex, rgba
 * *default
 *
 * Include: bower install super-gradient
 *
 * Demo: http://super-gradient.ib.gs/
 */
/**
 * Modules
 */
/**
 * Editor
 */
/**
* Components
*/
/**
 * CSS Reset
 * Default StyleSheet Normalize
 *
 * @since 0.1
 * @author MIRAI Inc.
 */
html {
  font-size: var(--font-root-size, 62.5%);
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  touch-action: manipulation;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
html, body {
  width: 100%;
}

body {
  min-width: 300px;
  margin: 0;
  padding: 0;
  font-family: var(--font-sans-serif);
  font-size: var(--font-base-size, 1.6rem);
  color: var(--color-text);
  letter-spacing: -0.015em;
  text-align: left;
  background-color: white;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
  -webkit-font-smoothing: antialiased;
  word-break: break-word;
  word-wrap: break-word;
}

header,
footer,
nav,
figure,
figcaption,
main,
article,
section,
aside {
  display: block;
}

main {
  width: 100%;
}

a,
area,
button,
[role=button],
input:not([type=range]),
label,
select,
summary,
textarea {
  touch-action: manipulation;
}

button {
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  padding: 0.5em 1em;
  border: 1px solid #ccc;
}

input[type=text],
input[type=search],
input[type=tel],
input[type=url],
input[type=email],
input[type=password],
input[type=datetime],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime-local],
input[type=number],
input[type=color],
textarea {
  -moz-appearance: none;
  appearance: none;
  font-size: 1.6rem;
}

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

a {
  color: currentColor;
}

a,
path {
  transition: all 0.15s linear;
}

ul, ol {
  padding-left: 40px;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

h1 {
  font-weight: 800;
  font-size: 3.6rem;
  line-height: 1.138888889;
}

h2 {
  font-size: 3.2rem;
}

h3 {
  font-size: 2.8rem;
}

h4 {
  font-size: 2.4rem;
}

h5 {
  font-size: 2.1rem;
}

h6 {
  font-size: 1.6rem;
  letter-spacing: 0.03125em;
}

p {
  margin: 0 0 1em 0;
}

em em,
em i,
i em,
i i,
cite em,
cite i {
  font-weight: bolder;
}

big {
  font-size: 1.2em;
}

small {
  font-size: 0.75em;
}

b,
strong {
  font-weight: 700;
}

ins {
  text-decoration: underline;
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

abbr,
acronym {
  cursor: help;
}

address {
  margin: 0 0 2rem 0;
  line-height: 1.5;
}

hr {
  margin: 4rem 0;
  border-style: solid;
  border-width: 0.1rem 0 0 0;
}

@media (min-width: 0) and (max-width: 575px) {
  [xs] {
    display: none;
  }
}

@media (min-width: 0) {
  [xs-min] {
    display: none;
  }
}

@media (max-width: 575px) {
  [xs-max] {
    display: none;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  [sm] {
    display: none;
  }
}

@media (min-width: 576px) {
  [sm-min] {
    display: none;
  }
}

@media (max-width: 767px) {
  [sm-max] {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  [md] {
    display: none;
  }
}

@media (min-width: 768px) {
  [md-min] {
    display: none;
  }
}

@media (max-width: 991px) {
  [md-max] {
    display: none;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  [lg] {
    display: none;
  }
}

@media (min-width: 992px) {
  [lg-min] {
    display: none;
  }
}

@media (max-width: 1199px) {
  [lg-max] {
    display: none;
  }
}

@media (min-width: 1200px) and (max-width: 1390px) {
  [xl] {
    display: none;
  }
}

@media (min-width: 1200px) {
  [xl-min] {
    display: none;
  }
}

@media (max-width: 575px) {
  [xl-max] {
    display: none;
  }
}

.montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  word-wrap: normal !important;
  word-break: normal;
  border: 0;
}
.screen-reader-text:focus {
  clip: auto !important;
  clip-path: none;
  top: 5px;
  right: 5px;
  z-index: 100000;
  display: block;
  width: auto;
  height: auto;
  padding: 15px 23px 14px;
  font-weight: 700;
  font-size: 0.875rem;
  color: #21759b;
  line-height: normal;
  text-decoration: none;
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
}

.iframe {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
}
.iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 -5px;
  padding: 0;
  list-style: none;
}
.share-buttons li {
  height: 100%;
  padding: 5px;
}
.share-buttons .fb-like {
  display: block !important;
}
.share-buttons .fb-like > span {
  display: block;
  vertical-align: top !important;
}
.share-buttons iframe {
  display: block;
}

.btn {
  position: relative;
  display: inline-block;
  width: 280px;
  padding: 16px 16px;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}
.btn:hover {
  opacity: 0.8;
}
.btn .txt {
  padding-right: 44px;
}
.btn .icon {
  position: absolute;
  top: 50%;
  right: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transform: translateY(-50%);
}
.btn .icon svg {
  width: 16px;
  height: 11px;
  color: currentColor;
}

.btn-white {
  color: #0080CC;
  background-color: #fff;
}
.btn-white .icon {
  background: linear-gradient(90deg, #f7f8fc 0%, rgba(247, 248, 252, 0) 100%);
}

.btn-blue {
  color: #fff;
  background-color: #142870;
}
.btn-blue .icon {
  opacity: 0.5;
  background: linear-gradient(90deg, #0080cc 0%, rgba(0, 128, 204, 0) 100%);
}

.icon {
  width: 1em;
  height: 1em;
  vertical-align: middle;
}

/**
 * Form
 * フォームの各Input要素など
 *
 * @prefix form-
 */
input,
select,
textarea {
  -moz-appearance: none;
  appearance: none;
  max-width: 100%;
  font-size: 16px;
  outline: 0;
  border-radius: 0;
  box-shadow: none;
}

input:not([type=radio]):not([type=checkbox]):not([type=range]):not([type=color]):not([type=file])::placeholder,
textarea::placeholder {
  font-size: 14px;
  color: #999;
  transition: 235ms ease;
}
input:not([type=radio]):not([type=checkbox]):not([type=range]):not([type=color]):not([type=file]):not(:placeholder-shown) + .form-error,
textarea:not(:placeholder-shown) + .form-error {
  height: 0;
  opacity: 0;
  visibility: hidden;
}
input:not([type=radio]):not([type=checkbox]):not([type=range]):not([type=color]):not([type=file]):focus::placeholder,
textarea:focus::placeholder {
  color: #ccc;
}

input:not([type=radio]):not([type=checkbox]):not([type=range]):not([type=color]):not([type=file]):not([type=button]):not([type=submit]) {
  display: block;
  height: 40px;
  padding: 0 8px;
  border: 1px solid #F5F5F5;
}

input:not([type=radio]):not([type=checkbox]):not([type=range]):not([type=color]):not([type=file]):not([type=button]):not([type=submit]),
textarea,
select {
  background-color: #F5F5F5;
  border: 1px solid #F5F5F5;
}
input:not([type=radio]):not([type=checkbox]):not([type=range]):not([type=color]):not([type=file]):not([type=button]):not([type=submit]):focus,
textarea:focus,
select:focus {
  border-color: #0080CC;
  box-shadow: 0 0 0 1px #0080CC;
  transition: 300ms ease;
}

input[type=button] {
  color: #1c1c1c;
  background-color: transparent !important;
}

textarea {
  display: block;
  min-height: calc(7em + 8px);
  padding: 8px;
  line-height: 1.4;
  background-color: #F5F5F5;
  border-color: #F5F5F5;
}

select {
  position: relative;
  display: inline-block;
  width: auto;
  height: 40px;
  padding: 0 32px 0 8px;
  color: currentColor;
  background-color: #F5F5F5;
  background-repeat: no-repeat;
  background-position: right 0.7em top 50%;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2210%22%20height%3D%226%22%20viewBox%3D%220%200%2010%206%22%3E%3Cpath%20d%3D%22M5%2C0l5%2C6H0Z%22%20transform%3D%22translate(10%206)%20rotate(180)%22%20fill%3D%22%23ccc%22%2F%3E%3C%2Fsvg%3E");
  border-color: #F5F5F5;
}
select::-ms-expand {
  display: none;
}

input[type=range] {
  display: block;
  height: 1.4em;
  margin: 0;
  padding: 0 4px;
  background-color: #F5F5F5;
  border-radius: 15px;
  border: 1px solid #F5F5F5;
  box-shadow: inset 0 0 0 6px #fff;
}
input[type=range]:focus {
  box-shadow: 0 0 0 1px #0080CC, inset 0 0 0 6px #fff;
  transition: 300ms ease;
}

input[type=color] {
  height: 32px;
  padding: 0 3px;
  line-height: 1;
  border-color: #F5F5F5;
}
input[type=color]:focus {
  box-shadow: 0 0 0 1px #0080CC;
  transition: 300ms ease;
}

input[type=radio],
input[type=checkbox] {
  cursor: pointer;
  width: 1em;
  height: 1em;
  margin: 0;
  font-size: 20px;
  color: #0080CC;
  line-height: 1;
  background-color: #fff;
  border: 1px solid #AFAFAF;
}
input[type=radio]:focus,
input[type=checkbox]:focus {
  border-color: #0080CC;
  box-shadow: 0 0 0 1px #0080CC;
  transition: 300ms ease;
}
input[type=radio]:checked,
input[type=checkbox]:checked {
  background-color: #0080CC;
  background-image: linear-gradient(top right, #C5CE00 0%, #008F84 100%);
  box-shadow: inset 0 0 0 0.17em #fff;
  transition: 300ms ease;
}

input[type=radio] {
  border-radius: 1em;
}

.form-file label {
  display: inline-block;
  padding: 8px 18px;
  line-height: 1.2;
  font-size: 16px;
  color: #fff;
  text-align: center;
  background-color: #0080CC;
  border: 1px solid #0070b3;
  border-radius: 30px;
}
.form-file label:focus {
  box-shadow: 0 0 0 1px #0080CC, inset 0 0 0 1px #0080CC;
  transition: 300ms ease;
}
.form-file label:before {
  content: "ファイルを選択";
  font-size: 14px;
}
.form-file label input[type=file] {
  display: none;
}

.form-radio,
.form-checkbox {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form-radio .horizontal-item,
.form-checkbox .horizontal-item {
  margin-right: 1em;
  margin-bottom: 8px;
}
.form-radio label,
.form-checkbox label {
  cursor: pointer;
}
.form-radio label input,
.form-radio label span,
.form-checkbox label input,
.form-checkbox label span {
  -webkit-user-select: none;
  user-select: none;
  vertical-align: middle;
}
.form-radio label input,
.form-checkbox label input {
  margin-right: 4px;
}

.form-submit {
  display: flex;
  flex-direction: column-reverse;
  margin-top: 2em;
  text-align: center;
}
@media (min-width: 768px) {
  .form-submit {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}
.form-submit button,
.form-submit input[type=submit] {
  min-width: 240px;
  padding: 18px 16px;
  font-size: 16px;
  color: #fff;
  background-color: #0080CC;
  border: 0;
}
.form-submit button[value=back] {
  max-width: 60px;
  min-width: 30px;
  margin-top: 16px;
  padding: 8px 14px;
  line-height: 1;
  font-size: 14px;
  color: #999;
  background-color: #e2e2e2;
  border: 1px solid lightgray;
}
@media (min-width: 768px) {
  .form-submit button[value=back] {
    margin-top: 0;
    margin-right: 32px;
  }
}

.form-group-column .form-group {
  flex-direction: column;
}
.form-group-column .form-label {
  width: auto;
}
.form-group-column .form-field {
  width: auto;
  padding-left: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 2.4em;
}
.form-label {
  -webkit-user-select: none;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0.7em;
  font-weight: bold;
  font-size: 16px;
}
.form-field {
  position: relative;
}
.form-error {
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  transition: 235ms ease;
}
.form-error .error {
  display: inline-block;
  font-weight: bold;
  font-size: 14px;
  color: #E34C63;
}

.any-text,
.require-text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 16px;
  line-height: 1;
  font-size: 10px;
  color: #fff;
  text-align: center;
}

.require-text {
  background-color: #E34C63;
}

.any-text {
  background-color: #808080;
}

.breadcrumbs {
  width: 100%;
  padding-bottom: 16px;
  overflow-x: auto;
}
@media screen {
  .breadcrumbs .breadcrumbs {
    scroll-behavior: auto;
  }
}
.breadcrumbs__list {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumbs__item {
  position: relative;
}
.breadcrumbs__item a {
  font-size: 12px;
  color: #BCBCBC;
  white-space: nowrap;
  text-decoration: none;
  text-underline-offset: 3px;
}
.breadcrumbs__item a:hover {
  color: #1c1c1c;
  text-decoration: underline;
}
.breadcrumbs__item:last-child a {
  color: #1C1C1C;
}
.breadcrumbs__item + li::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -11px;
  transform: translateY(-50%);
  width: 6px;
  height: 9px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1LjA2MSIgaGVpZ2h0PSI4LjcwNyIgdmlld0JveD0iMCAwIDUuMDYxIDguNzA3Ij48cGF0aCBkPSJNODQuMzU0LDE3My43NTNsLS43MDctLjcwNywzLjY0Ni0zLjY0Ni0zLjY0Ni0zLjY0Ni43MDctLjcwNyw0LjM1NCw0LjM1NFoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC04My42NDYgLTE2NS4wNDYpIiBmaWxsPSIjODE4MTgxIi8+PC9zdmc+");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 6px 9px;
}

.social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -5px;
  padding: 0;
  font-size: 2rem;
  list-style: none;
}
.social-list .icon {
  display: block;
}
.social-list li {
  padding: 5px;
}
/**
 * Layout
 */
.footer-contact {
  padding: 96px 0 56px;
  background-color: #fff;
  background-image: url("../img/common/footer_bg-sp.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 992px) {
  .footer-contact {
    padding: 250px 0 246px;
    background-image: url("../img/common/footer_bg.jpg");
  }
}
.footer-contact__inner {
  padding: 0 24px;
}
@media (min-width: 992px) {
  .footer-contact__inner {
    padding: 0 40px;
  }
}
.footer-contact__heading {
  margin: 0 0 24px;
  font-weight: 400;
  font-size: 100%;
  color: #fff;
  text-align: center;
}
.footer-contact__heading .en {
  display: block;
  font-family: var(--font-en);
  font-size: 42px;
}
.footer-contact__heading .ja {
  font-size: 15px;
}
.footer-contact__lede {
  margin: 0 0 24px;
  font-size: 14px;
  color: #fff;
  text-align: center;
}
.footer-contact__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 46px;
}
@media (min-width: 992px) {
  .footer-contact__content {
    flex-direction: row;
    gap: 160px;
    margin-top: 40px;
  }
}
.footer-contact__content .footer-tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footer-contact__content .footer-tel__text {
  margin: 0 0 22px;
  font-size: 12px;
  color: #fff;
  text-align: center;
}
.footer-contact__content .footer-tel__phonenumber {
  margin: 0 0 12px;
  line-height: 1;
  font-size: 24px;
  color: #fff;
}
.footer-contact__content .footer-tel__phonenumber .icon {
  width: 20px;
  height: 20px;
  color: #fff;
}
.footer-contact__content .footer-tel__phonenumber .icon svg {
  width: 100%;
  height: 100%;
}
.footer-contact__content .footer-tel__phonenumber .txt {
  font-size: 24px;
  color: #fff;
}
.footer-contact__content .footer-tel__phonenumber a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1;
  font-family: var(--font-en);
  font-size: 22px;
  letter-spacing: 0.1em;
  color: #fff;
  text-decoration: none;
}
.footer-contact__content .footer-tel__open {
  margin: 0;
  font-size: 12px;
  color: #fff;
}
.footer-contact__content .footer-mail {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .footer-contact__content .footer-mail {
    padding-top: 24px;
    border-top: 1px solid #818181;
  }
}
.footer-contact__content .footer-mail__text {
  margin: 0 0 17px;
  font-size: 12px;
  color: #fff;
}
.footer-contact__content .footer-mail__link {
  margin: 0;
  font-size: 14px;
  color: #fff;
  text-align: center;
}
.footer-contact__content .footer-mail__link a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 220px;
  padding: 19px 20px;
  line-height: 1;
  font-family: var(--font-en);
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: 1px solid #fff;
}
.footer-contact__content .footer-mail__link a:hover {
  opacity: 1;
  color: #142870;
  background-color: #fff;
}
.footer-contact__content .footer-mail__link a .icon {
  width: 18px;
  height: 14px;
}
.footer-contact__content .footer-mail__link a .icon svg {
  width: 100%;
  height: 100%;
}
.footer-contact__content .footer-mail__link a .txt {
  font-size: 14px;
}

.footer {
  padding: 40px 0 24px;
  background-color: #fff;
}
@media (min-width: 992px) {
  .footer {
    padding: 48px 0 24px;
  }
}

.footer-container {
  padding: 0 24px;
}
@media (min-width: 992px) {
  .footer-container {
    padding: 0 40px;
  }
}

.footer-columns {
  display: flex;
  flex-direction: column;
  gap: 46px;
}
@media (min-width: 992px) {
  .footer-columns {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-main {
  display: flex;
  flex-direction: column;
}
.footer-main .footer-logo {
  margin: 0 0 24px;
}
.footer-main .footer-logo img {
  display: block;
  width: 292px;
}
.footer-main .footer-company-name {
  margin: 0 0 18px;
  font-weight: bold;
  font-size: 14px;
}
.footer-main .footer-company-address {
  margin: 0;
  line-height: 1.8;
  font-size: 10px;
}
.footer-main .footer-company-address a {
  color: currentColor;
  text-decoration: none;
}
.footer-main .footer-company-address a:hover {
  text-decoration: underline;
}

.footer-navi {
  display: none;
}
@media (min-width: 992px) {
  .footer-navi {
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
  }
}
.footer-navi__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 400;
  font-size: 14px;
}
.footer-navi__list a {
  color: #333;
  text-decoration: none;
  text-underline-offset: 4px;
}
.footer-navi__list a:hover {
  text-decoration: underline;
}
.footer-navi__list .icon-target {
  display: inline-block;
  width: 14px;
  height: 12px;
  margin-left: 3px;
  color: #555;
}
.footer-navi__list .icon-target svg {
  display: block;
  width: 100%;
  height: 100%;
}

.footer-sub {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}
@media (min-width: 992px) {
  .footer-sub {
    align-items: flex-end;
    justify-content: flex-end;
  }
}
.footer-sub .footer-social {
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}
.footer-sub .footer-social a {
  color: #333;
  text-decoration: none;
}
.footer-sub .footer-social a .icon {
  display: block;
  width: 24px;
  height: 22px;
}
.footer-sub .footer-social a .icon svg {
  width: 100%;
  height: 100%;
}
.footer-sub .footer-copyright {
  margin: 0;
  font-size: 10px;
  color: #333;
  letter-spacing: 0.05em;
}
/*# sourceMappingURL=maps/app.css.map */