@charset "UTF-8";



/************************************************************************
* reset
************************************************************************/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  -webkit-print-color-adjust: exact;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-underline-offset: .2em;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  color: #fff;
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
  line-break: strict;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-break: normal;
  overflow-wrap: anywhere;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  vertical-align: baseline;
  margin: 0;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 100%;
}

a {
  display: inline-block;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  color: inherit;
  text-decoration: none;
}

a[href] {
  cursor: pointer;
}

a[href]:not([class]):hover, a[href]:not([class]):focus-visible {
  opacity: .7;
}

img,
svg {
  display: inline-block;
  vertical-align: top;
  border: none;
  width: 100%;
  max-width: 100%;
  height: auto;
}

video {
  width: 100%;
  height: auto;
}

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

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::after,
blockquote::before,
q::after,
q::before {
  content: '';
  content: none;
}

address {
  font-style: italic;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  margin: 0;
  border: none;
  background: transparent;
  padding: 0;
  font: inherit;
}

abbr,
acronym {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

cite {
  font-style: italic;
}

code,
kbd {
  background-color: #F8F8F8;
  padding: .25em .5em;
}

em {
  font-style: italic;
  font-weight: 700;
}

pre {
  display: block;
  background-color: #F8F8F8;
  padding: 1em 2em;
}

sub {
  vertical-align: sub;
  font-size: smaller;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

var {
  background-color: #F8F8F8;
  padding: .25em .5em;
  font-style: italic;
}

/************************************************************************
* end reset
************************************************************************/
[data-target] {
  cursor: pointer;
}

html {
  scrollbar-gutter: stable;
  font-size: 100%;
}

button {
  color: #fff;
}

/************************************************************************
* layout
************************************************************************/
body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

body.fadeIn {
  opacity: 0;
}

main {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

footer {
  margin-top: auto;
}

/************************************************************************
* base
************************************************************************/
a:not([class]) {
  color: #03c;
}

a:not([class]):visited {
  color: #639;
}

a:not([class]):hover {
  text-decoration: underline;
}

table {
  margin-right: auto;
  margin-left: auto;
  border-collapse: collapse;
  border-spacing: 0;
  width: auto;
  min-width: 100%;
  table-layout: fixed;
}

th,
td {
  border: 1px solid;
}

address {
  font-style: normal;
}

details .icon {
  aspect-ratio: 1;
  display: block;
  position: relative;
  width: 24px;
  width: 1.5rem;
}

details .icon::before, details .icon::after {
  inset: 0;
  position: absolute;
  margin: auto;
  background-color: #fff;
  width: 13px;
  width: .8125rem;
  height: 1px;
  content: '';
}

details .icon::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

details[open] > summary .icon::after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

details.is-closing[open] > summary .icon::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

summary {

  /* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
  display: block;
  cursor: pointer;
}

summary::-webkit-details-marker {

  /* Safariで表示されるデフォルトの三角形アイコンを消します */
  display: none;
}

/************************************************************************
* end base
************************************************************************/
:root {

  /* ウィンドウサイズ */
  --vw: 100vw;
  --vh: 100vh;

  /* 三角形 */
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);

  /**
     * svgをbackgroundで使う
     * 色：#ffffff -> %23ffffff
     */
  --icon-btn-arrow: url('data:image/svg+xml;utf8,<svg width="37" height="6" viewBox="0 0 37 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 5H36L26.2703 1" stroke="%230C4A6E"/></svg>');
}

.l-body {
  background: #3a2a16;
}

.l-container {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.l-container.l-container--full {
  margin-left: calc((100% - 100vw) / 2);
  width: 100vw;
  max-width: none;
}

.l-main {
  position: relative;
  z-index: 1;
  margin-top: 0;
  background: url(../img/main_bg.jpg) no-repeat top center/cover;
}

.c-btn {
  aspect-ratio: 530/105;
  display: inline-grid;
  position: relative;
  place-items: center;
  -webkit-animation: btnbounce 2s ease-in-out infinite;
  animation: btnBounce 2s ease-in-out infinite;
  -webkit-transition: -webkit-transform .3s ease, -webkit-box-shadow .3s ease, -webkit-filter .3s ease;
  transition: -webkit-transform .3s ease, -webkit-box-shadow .3s ease, -webkit-filter .3s ease;
  transition: transform .3s ease, box-shadow .3s ease, filter .3s ease;
  transition: transform .3s ease, box-shadow .3s ease, filter .3s ease, -webkit-transform .3s ease, -webkit-box-shadow .3s ease, -webkit-filter .3s ease;
  cursor: pointer;
  -webkit-box-shadow: 0 .25rem .9375rem rgba(0, 0, 0, .2);
  box-shadow: 0 .25rem .9375rem rgba(0, 0, 0, .2);
  border-radius: 50vmax;
  background: url(../img/button_bg.png) no-repeat center/cover;
  padding: 10px 20px;
  padding: .625rem 1.25rem;
  width: 261px;
  width: 16.3125rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-size: 1rem;
}

.c-btn:focus-visible {
  opacity: 1;
  -webkit-filter: brightness(1.1);
  filter: brightness(1.1);
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
  outline: none;
}

@-webkit-keyframes btnBounce {

  0%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}

@keyframes btnBounce {

  0%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}

.c-section-title {
  text-align: center;
}

.c-section-title__en {
  display: inline-block;
  border-bottom: 2px solid currentColor;
  padding-bottom: 3px;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1;
  text-transform: uppercase;
}

.c-section-title__title {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

.c-section-title.c-section-title--large .c-section-title__en {
  font-size: 35px;
  font-size: 2.1875rem;
}

.c-section-title.c-section-title--large .c-section-title__title {
  font-size: 20px;
  font-size: 1.25rem;
}

/************************************************************************
* p-about
************************************************************************/
.p-about__wrap {
  position: relative;
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}

.p-about__wrap::before {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #fff;
  width: 273px;
  width: 17.0625rem;
  height: 1px;
  content: '';
}

.p-about__list {
  gap: 60px;
  gap: 3.75rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 48px;
  margin-top: 3rem;
}

.p-about__img {
  aspect-ratio: 209/290;
  margin-inline: auto;
  width: 95px;
  width: 5.9375rem;
}

.p-about__img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-about__text {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.625;
  text-align: center;
}

.p-about__text span {
  display: inline-block;
}

.p-footer {
  background-color: #161007;
  padding: 8px 0;
  padding: .5rem 0;
  text-align: center;
}

.p-footer__list {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-footer__link {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: max(10px, 12px);
  font-size: max(10px, .75rem);
}

.p-footer__link:focus-visible {
  opacity: .7;
}

.p-footer__copyright {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: max(10px, 12px);
  font-size: max(10px, .75rem);
}

.p-form {
  padding: 60px 0;
  padding: 3.75rem 0;
}

.p-form__title {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}

.p-form__text {
  margin-inline: -5px;
  margin-top: 40px;
  margin-top: 2.5rem;
  font-size: max(10px, 12px);
  font-size: max(10px, .75rem);
  line-height: 1.8;
  text-align: center;
}

.p-form__btn {
  margin-top: 18px;
  margin-top: 1.125rem;
  text-align: center;
}

/************************************************************************
* p-info
************************************************************************/
.p-info {
  padding-bottom: 58px;
  padding-bottom: 3.625rem;
}

.p-info__inner {
  margin-inline: auto;
  max-width: 400px;
  max-width: 25rem;
}

.p-info__box {
  aspect-ratio: 118/33;
  margin-inline: -10px;
  margin-inline: -.625rem;
  display: grid;
  place-items: center;
  background: url(../img/info_box_bg_sp.png) no-repeat center/contain;
}

.p-info__box-wrap {
  color: #cbaa0e;
  text-align: center;
}

.p-info__box-title {
  font-size: max(10px, 13px);
  font-size: max(10px, .8125rem);
  text-shadow: 0 0 7px rgba(255, 255, 255, .6);
  text-shadow: 0 0 .4375rem rgba(255, 255, 255, .6);
}

.p-info__box-text {
  font-size: 28px;
  font-size: 1.75rem;
  text-shadow: 0 0 7px rgba(255, 255, 255, .6);
  text-shadow: 0 0 .4375rem rgba(255, 255, 255, .6);
}

.p-info__box-text span {
  font-size: 20px;
  font-size: 1.25rem;
}

.p-info__company {
  margin-top: 7px;
  margin-top: .4375rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  text-align: center;
}

.p-info__text {
  margin-inline: -10px;
  margin-inline: -.625rem;
  margin-top: 26px;
  margin-top: 1.625rem;
  font-size: max(10px, 13px);
  font-size: max(10px, .8125rem);
  text-align: center;
}

.p-info__btn {
  margin-top: 15px;
  margin-top: .9375rem;
  text-align: center;
}

/************************************************************************
* p-mv
************************************************************************/
.p-mv {
  position: relative;
  display: grid;
  z-index: 2;
  background: url(../img/mv_bg_sp.png) no-repeat center/cover;
  aspect-ratio: 2880 / 1938;
  padding-top: 45px;
  padding-top: 2.8125rem;
  padding-bottom: 0;
  width: 100%;
}

.p-mv__top {
  margin-inline: auto;
  max-width: 500px;
}

.p-mv__en {
  aspect-ratio: 1085/249;
  padding-inline: 10px;
  width: 100%;
}

.p-mv__en img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-mv__title {
  aspect-ratio: 2744/821;
  margin-inline: auto;
  margin-top: 30px;
  margin-top: 1.875rem;
  width: 95.2777777778%;
  max-width: 1372px;
  max-width: 85.75rem;
}

.p-mv__title img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-mv__text {
  padding-inline: 10px;
  padding-inline: .625rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  font-size: max(10px, 13px);
  font-size: max(10px, .8125rem);
  letter-spacing: -.04em;
  line-height: 1.8;
  text-align: center;
}

.p-mv__text span {
  display: inline-block;
}

/************************************************************************
* p-requirements
************************************************************************/
.p-requirements {
  position: relative;
  padding-top: 60px;
  padding-top: 3.75rem;
}

.p-requirements::before {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #fff;
  width: 273px;
  width: 17.0625rem;
  height: 1px;
  content: '';
}

.p-requirements__list {
  gap: 65px;
  gap: 4.0625rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 60px;
  margin-top: 3.75rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-requirements__info {
  gap: 20px;
  gap: 1.25rem;
  margin-inline: -6px;
  display: grid;
  position: relative;
  grid-template-columns: 3.8fr 6.2fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-requirements__info dd {
  position: relative;
}

.p-requirements__info dd::before {
  position: absolute;
  top: 50%;
  left: -20px;
  left: -1.25rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #fff;
  width: 2px;
  height: 50%;
  content: '';
}

.p-requirements__info-title {
  position: relative;
  padding-right: .4em;
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
}

.p-requirements__info-title span {
  display: inline-block;
}

.p-requirements__info-text {
  font-size: max(10px, 12px);
  font-size: max(10px, .75rem);
  line-height: 1.2;
}

.p-requirements__info-text span {
  display: block;
  color: #cbaa0e;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.5;
}

.p-requirements__info-text span small {
  font-size: max(10px, 14px);
  font-size: max(10px, .875rem);
}

.p-requirements__info-text small {
  display: inline-block;
}

.p-requirements__note {
  font-size: max(10px, 12px);
  font-size: max(10px, .75rem);
}

.p-requirements__schedule-item {
  font-size: 12px;
  line-height: 1.2;
}

.p-requirements__schedule-item span {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.2;
}

.p-requirements__schedule-item span small {
  font-size: max(10px, 12px);
  font-size: max(10px, .75rem);
}

.p-requirements__schedule-item + .p-requirements__schedule-item {
  margin-top: 15px;
  margin-top: .9375rem;
}

.p-requirements__schedule-note {
  font-size: 10px;
}

.clearfix::after {
  display: block;
  clear: both;
  content: '';
}

/************************************************************************
* visible device
************************************************************************/
.u-onlyPc {
  display: none;
}

.u-onlyTab {
  display: none;
}

.u-onlySp {
  display: none;
}

.u-inlineBlock {
  display: inline-block !important;
}

.u-block {
  display: block !important;
}

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

.u-hidden {
  display: none !important;
}

.u-overflowHidden {
  overflow: hidden !important;
}

@media screen and (min-width: 768px) {

  html {
    font-size: 1.4545454545vw;
    font-size: calc(var(--vw-unitless) / 1100 * 100%);
  }

  .l-container {
    padding-right: 20px;
    padding-left: 20px;
    max-width: 1140px;
  }

  .l-container.l-container--narrow {
    max-width: 920px;
  }

  .l-container.l-container--wide {
    max-width: 1360px;
  }

  .l-main {
    margin-top: 0;
  }

  .c-btn {
    width: 530px;
    width: 33.125rem;
    font-size: 32px;
    font-size: 2rem;
  }

  .c-section-title__en {
    border-bottom: 3px solid currentColor;
    font-size: 74px;
    font-size: 4.625rem;
  }

  .c-section-title__title {
    font-size: 40px;
    font-size: 2.5rem;
  }

  .c-section-title.c-section-title--large .c-section-title__en {
    font-size: 74px;
    font-size: 4.625rem;
  }

  .c-section-title.c-section-title--large .c-section-title__title {
    font-size: 40px;
    font-size: 2.5rem;
  }

  .p-about__wrap {
    border-top: 1px solid #fff;
    padding-top: 75px;
    padding-top: 4.6875rem;
    padding-bottom: 75px;
    padding-bottom: 4.6875rem;
  }

  .p-about__wrap::before {
    display: none;
  }

  .p-about__list {
    gap: 19.2px;
    gap: 1.2rem;
    margin-inline: -10px;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 27px;
    margin-top: 1.6875rem;
  }

  .p-about__img {
    width: 103px;
    width: 6.4375rem;
  }

  .p-about__text {
    margin-top: 32px;
    margin-top: 2rem;
    font-size: 14.4px;
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .p-footer {
    padding: 18px 0;
    padding: 1.125rem 0;
  }

  .p-footer__link {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-footer__copyright {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1.8181818182;
  }

  .p-form {
    padding-top: 0;
  }

  .p-form__wrap {
    border-top: 1px solid #fff;
    padding-top: 75px;
    padding-top: 4.6875rem;
  }

  .p-form__text {
    margin-inline: 0;
    font-size: 32px;
    font-size: 2rem;
  }

  .p-form__btn {
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-info {
    padding-bottom: 75px;
    padding-bottom: 4.6875rem;
  }

  .p-info__inner {
    margin-inline: 0;
    max-width: none;
  }

  .p-info__box {
    aspect-ratio: 716/197;
    margin-inline: auto;
    background: url(../img/info_box_bg.png) no-repeat center/contain;
    width: 716px;
    width: 44.75rem;
  }

  .p-info__box-title {
    font-size: 27px;
    font-size: 1.6875rem;
  }

  .p-info__box-text {
    font-size: 56px;
    font-size: 3.5rem;
  }

  .p-info__box-text span {
    font-size: 44px;
    font-size: 2.75rem;
  }

  .p-info__company {
    margin-top: 32px;
    margin-top: 2rem;
    font-size: 22px;
    font-size: 1.375rem;
  }

  .p-info__text {
    display: none;
  }

  .p-info__btn {
    margin-top: 55px;
    margin-top: 3.4375rem;
  }

  .p-mv {
    aspect-ratio: 2880/1938;
    display: grid;
    z-index: 2;
    background: url(../img/mv_bg.png) no-repeat center/cover;
    padding-top: 6.5972222222vw;
    padding-bottom: 0;
    max-height: none;
  }

  .p-mv__top {
    margin-inline: 0;
    width: 100%;
    max-width: none;
  }

  .p-mv__en {
    margin-inline: auto;
    padding-inline: 0;
    width: 75.3472222222%;
    max-width: 1085px;
    max-width: 67.8125rem;
  }

  .p-mv__title {
    aspect-ratio: 1154/361;
    margin-top: 13.8888888889vw;
    width: 80.1388888889%;
    max-width: 1154px;
    max-width: 72.125rem;
  }

  .p-mv__text {
    padding-bottom: 60px;
    padding-bottom: 3.75rem;
    font-size: 30px;
    font-size: 1.875rem;
    letter-spacing: 0;
    line-height: 1.8666666667;
  }

  .p-mv__text span {
    display: inline;
  }

  .p-requirements {
    padding: 0 0 75px;
    padding: 0 0 4.6875rem;
  }

  .p-requirements::before {
    display: none;
  }

  .p-requirements__list {
    margin-inline: 0;
    gap: 30px;
    gap: 1.875rem;
    margin-top: 40px;
    margin-top: 2.5rem;
    width: auto;
  }

  .p-requirements__info {
    gap: 190px;
    gap: 11.875rem;
    margin-inline: 0;
    grid-template-columns: 1fr 1fr;
  }

  .p-requirements__info::before {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #fff;
    width: 4px;
    height: 58%;
    content: '';
  }

  .p-requirements__info dd::before {
    display: none;
  }

  .p-requirements__info-title {
    padding-right: 0;
    font-size: 42px;
    font-size: 2.625rem;
    text-align: right;
  }

  .p-requirements__info-text {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-requirements__info-text span {
    font-size: 32px;
    font-size: 2rem;
  }

  .p-requirements__info-text span small {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-requirements__note {
    font-size: max(10px, 16px);
    font-size: max(10px, 1rem);
  }

  .p-requirements__schedule-item {
    font-size: max(12px, 16px);
    font-size: max(12px, 1rem);
  }

  .p-requirements__schedule-item span {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.5;
  }

  .p-requirements__schedule-note {
    font-size: 12px;
  }

  .p-requirements__schedule-item span small {
    font-size: max(12px, 18px);
    font-size: max(12px, 1.125rem);
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {

  .u-onlyTab {
    display: block;
  }
}

@media screen and (min-width: 768px) and (min-width: 2000px) {

  .p-mv {
    place-items: center;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {

  .u-hidden--tab {
    display: none !important;
  }
}

@media screen and (min-width: 1024px) {

  .u-onlyPc {
    display: block;
  }

  .u-hidden--pc {
    display: none !important;
  }
}

@media (min-width: 1100px) {

  html {
    font-size: 100%;
  }
}

@media screen and (max-width: 767px) {

  .u-onlySp {
    display: block;
  }

  .u-hidden--sp {
    display: none !important;
  }
}

@media (max-width: 375px) {

  html {
    font-size: 4.2666666667vw;
    font-size: calc(var(--vw-unitless) / 375 * 100%);
  }
}

@media (any-hover: hover) {

  .c-btn:hover {
    opacity: 1;
    -webkit-filter: brightness(1.1);
    filter: brightness(1.1);
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
  }

  .p-footer__link:hover {
    opacity: .7;
  }
}
/*# sourceMappingURL=map/style.css.map */