@charset "UTF-8";
/*===========================================================================*/
/*  function  */
/*===========================================================================*/
/*===========================================================================*/
/*  mixin  */
/*===========================================================================*/
/*
  基本的なclamp()算出mixin
  y = mx+b
  `y` = プロパティの値（font-size、margin など）
  `x` = ビューポート幅
  `m` = 傾き（`$slope`）ビューポート幅の変化に対するプロパティ値の変化率
  `b` = y切片（`$intercept`）ビューポートが0pxの場合の値
*/
/*===========================================================================*/
/*  common  */
/*===========================================================================*/
html {
  font-family: "Noto Sans JP", sans-serif;
  color: #272727;
  font-size: 62.5%;
}
html.modal-open {
  overflow: hidden;
}

body {
  color: #464343;
  min-width: 360px;
  font-feature-settings: "palt" on, "calt" off;
  line-height: 1 !important;
}
body.modal-open {
  overflow: hidden;
}

main {
  overflow: hidden;
}

span {
  display: inline-block;
}

picture {
  display: block;
}

img {
  height: auto;
  object-fit: contain;
}

p {
  line-height: 1.5;
}

a {
  display: inline-block;
}
a:hover {
  color: inherit;
  text-decoration: none;
}

.pc-only {
  display: block;
}

.br-pc-only {
  display: inline-block;
}

.sp-only {
  display: none;
}

.br-sp-only {
  display: none;
}

@media screen and (max-width: 900px) {
  .pc-only {
    display: none;
  }
  .br-pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  .br-sp-only {
    display: inline-block;
  }
}
/*===========================================================================*/
/*  utility  */
/*===========================================================================*/
.font-en {
  font-family: "Inter", sans-serif;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-wrap-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-wrap {
  flex-wrap: wrap !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-flex-end {
  align-items: flex-end !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-center {
  justify-content: center !important;
}

.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100% !important;
}

.font-weight-medium {
  font-weight: 500 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.text-center {
  text-align: center !important;
}

.text-white {
  color: #fff !important;
}

.text-blue {
  color: #2864f0 !important;
}

.text-dark-blue {
  color: #143278 !important;
}

.text-gray {
  color: #aaa7a7 !important;
}

.text-red {
  color: #dc1e32 !important;
}

.text-link {
  color: #2864f0 !important;
  border-bottom: 1px solid #2864f0 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-primary {
  background-color: #fa6414 !important;
}

.bg-blue {
  background-color: #2864f0 !important;
}

.bg-dark-blue {
  background-color: #143278 !important;
}

.bg-light-blue {
  background-color: #dce8ff !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.mt-auto {
  margin-top: auto !important;
}

.ml-auto {
  margin-left: auto !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.pc-text-max-12 {
  font-size: clamp(10px, 6.9916527546px + 0.0033388982 * 100vw, 12px);
}

.pc-text-max-14 {
  font-size: clamp(12px, 8.9916527546px + 0.0033388982 * 100vw, 14px);
}
@media (max-width: 900px) {
  .pc-text-max-14 {
    font-size: 12px !important;
  }
}

.pc-text-max-15 {
  font-size: clamp(12px, 7.4874791319px + 0.0050083472 * 100vw, 15px);
}

.pc-text-max-16 {
  font-size: clamp(13px, 8.4874791319px + 0.0050083472 * 100vw, 16px);
}

.pc-text-max-18 {
  font-size: clamp(16px, 12.9916527546px + 0.0033388982 * 100vw, 18px);
}

.pc-text-max-22 {
  font-size: clamp(19px, 14.4874791319px + 0.0050083472 * 100vw, 22px);
}

.pc-text-max-23 {
  font-size: clamp(21px, 17.9916527546px + 0.0033388982 * 100vw, 23px);
}
@media (max-width: 900px) {
  .pc-text-max-23 {
    font-size: 21px !important;
  }
}

.pc-text-max-24 {
  font-size: clamp(20px, 13.9833055092px + 0.0066777963 * 100vw, 24px);
}

/*===========================================================================*/
/*  component, color  */
/*===========================================================================*/
.color-gray {
  color: #aaa7a7;
  transition: all 0.5s 0s cubic-bezier(0.44, 0.14, 0.09, 1.02);
}

/* layout */
.l-inner {
  margin: 0 auto;
  max-width: 1060px;
}

@media screen and (max-width: 900px) {
  .l-inner {
    max-width: 500px;
  }
}
/* wrapper */
.l-wrapper {
  padding-left: clamp(31.5px, 11.1936560935px + 0.0225375626 * 100vw, 45px);
  padding-right: clamp(31.5px, 11.1936560935px + 0.0225375626 * 100vw, 45px);
}
@media (max-width: 900px) {
  .l-wrapper {
    padding: 0 20px;
  }
}

/*===========================================================================*/
/*  hover */
/*===========================================================================*/
@media screen and (min-width: 900px) {
  .hover-normal {
    transition: opacity 0.5s 0s cubic-bezier(0.44, 0.14, 0.09, 1.02);
  }
  .hover-normal:hover {
    opacity: 0.7;
  }
}
.hover-border {
  position: relative;
}

.hover-border::before {
  background-color: #121212;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  bottom: 0;
  width: 0;
  transition: width 0.9s 0s cubic-bezier(0.44, 0.14, 0.09, 1.02);
}

.hover-border-white {
  position: relative;
}

.hover-border-white::before {
  background-color: #fff;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  bottom: 0;
  width: 0;
  transition: width 0.9s 0s cubic-bezier(0.44, 0.14, 0.09, 1.02);
}

a:hover .hover-border::before,
a:hover .hover-border-white::before,
.hover-parent:hover .hover-border::before {
  width: 100%;
}

.hover-spin {
  transition: transform 1s 0s cubic-bezier(0.44, 0.14, 0.09, 1.02);
  transform: rotate(0);
}

a:hover .hover-spin {
  transform: rotate(405deg);
}

.hover-spin-reverse {
  transition: transform 1s 0s cubic-bezier(0.44, 0.14, 0.09, 1.02);
  transform: rotate(0);
}

a:hover .hover-spin-reverse {
  transform: rotate(315deg);
}

.hover-text {
  position: relative;
  color: #121212;
  line-height: 1.6;
}

.hover-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #70c3eb 0%, #6c77c9 47%, #f69b9d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1s 0s cubic-bezier(0.44, 0.14, 0.09, 1.02);
}

.hover-text:hover::after {
  clip-path: inset(0);
}

.hover-text-parent:hover .hover-text::after {
  clip-path: inset(0);
}

/*! destyle.css v3.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.min.css */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

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

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

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
  background-color: #fff0d2;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

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

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

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

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

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
}

caption {
  text-align: left;
}

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

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

/*===========================================================================*/
/*  header  */
/*===========================================================================*/
/*===========================================================================*/
/*  footer  */
/*===========================================================================*/