@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap");
/* fonts */
/*
min-font-size ($font_size, $min_font_size)

$font_size (vw):     可変フォントサイズ
$min_font_size (px): 最小フォントサイズ
*/
/*
max-font-size ($font_size, $max_font_size)

$font_size (vw):     可変フォントサイズ
$max_font_size (px): 最大フォントサイズ
*/
/*
@mixin clamp-font-size ($min_font_size, $font_size, $max_font_size)

$min_font_size (px): 最小フォントサイズ
$font_size (vw):     可変フォントサイズ
$max_font_size (px): 最大フォントサイズ
*/
/*! destyle.css v3.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* 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] {
  -webkit-text-decoration: underline dotted;
          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 */
  -moz-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; /* 2 */
}

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

[type=radio] {
  -webkit-appearance: radio;
  -moz-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;
}

/* #Typography
----------------------------------------------------------------- */
body,
html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.6613756614vw;
}
@media screen and (min-width: 1512px) {
  body,
  html {
    font-size: 10px;
  }
}
@media screen and (max-width: 900px ) {
  body,
  html {
    font-size: 2.5641025641vw;
  }
}

b,
strong,
.bold {
  font-weight: 700;
}

/* #base
----------------------------------------------------------------- */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body * {
  box-sizing: border-box;
}

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

img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

a {
  display: block;
}

ul li {
  list-style: none;
}

/* #wrapper
----------------------------------------------------------------- */
.l-wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  backface-visibility: hidden;
}
/* #Container
----------------------------------------------------------------- */
.container {
  max-width: 1050px;
  width: 100rem;
  margin-left: auto;
  margin-right: auto;
}

.mv-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

/* #header
----------------------------------------------------------------- */
.l-header {
  width: 100%;
  height: 10rem;
  background: #ffffff;
  position: fixed;
  top: 0;
  z-index: 110;
  transition: background 0.3s, transform 0.3s;
  transform: translateY(0);
}
@media screen and (max-width: 900px ) {
  .l-header {
    height: 6.5rem;
  }
}
.l-header.is-hide {
  transform: translateY(-100%) !important;
}
.l-header__inner {
  width: 100%;
  height: 100%;
  padding-inline: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 900px ) {
  .l-header__inner {
    width: 37rem;
    padding-inline: 1.5rem;
    margin-inline: auto;
  }
}
.l-header__logo {
  display: block;
  width: 15.3rem;
  height: auto;
  flex-shrink: 0;
}
@media screen and (max-width: 900px ) {
  .l-header__logo {
    width: 7.7rem;
  }
}
@media screen and (max-width: 900px ) {
  .l-header__nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 100dvw;
    min-height: 100dvh;
    overflow-y: scroll;
    background: #ffffff;
    padding: 1.5rem;
    transition: all 0.6s;
    opacity: 0;
    pointer-events: none;
  }
  .l-header__nav.is-open {
    opacity: 1;
    pointer-events: all;
  }
}
.l-header__navInner {
  display: flex;
  align-items: center;
  -moz-column-gap: 2.8rem;
       column-gap: 2.8rem;
}
@media screen and (max-width: 900px ) {
  .l-header__navInner {
    flex-direction: column;
    justify-content: center;
    row-gap: 3.8rem;
    border-radius: 1rem;
    border: max(1px, 0.1rem) solid #2864f0;
    position: relative;
    width: 100%;
    min-height: calc(100dvh - 3rem);
  }
}
.l-header__list {
  display: flex;
  align-items: center;
  -moz-column-gap: 3.2rem;
       column-gap: 3.2rem;
}
@media screen and (max-width: 900px ) {
  .l-header__list {
    flex-direction: column;
    row-gap: 1.5rem;
  }
}
.l-header__list a {
  color: #2864f0;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5625;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media screen and (max-width: 900px ) {
  .l-header__list a {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.45;
    letter-spacing: 0.1em;
    font-weight: 500;
  }
}
.l-header__buttons {
  display: flex;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
@media screen and (max-width: 900px ) {
  .l-header__buttons {
    flex-direction: column;
    justify-content: center;
    row-gap: 1rem;
  }
}
.l-header__buttons li a {
  width: 13.2rem;
  height: 3rem;
  border-radius: 100vmax;
  display: grid;
  place-content: center;
  color: #ffffff;
  background: #f07882;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 700;
}
@media screen and (max-width: 900px ) {
  .l-header__buttons li a {
    width: 21.4rem;
    height: 4.3rem;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1;
    letter-spacing: 0em;
    font-weight: 700;
  }
}
.l-header__buttons li:last-child a {
  background: #464343;
  font-size: 10px;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 700;
}
@media screen and (max-width: 900px ) {
  .l-header__buttons li:last-child a {
    font-size: 11px;
    font-size: 1.1rem;
    line-height: 1;
    letter-spacing: 0em;
    font-weight: 700;
  }
}
.l-header__switch {
  display: block;
  width: 3rem;
  height: 2.2rem;
  position: relative;
}
.l-header__switch span {
  width: 100%;
  height: max(2px, 0.2rem);
  border-radius: 100vmax;
  background: #2864f0;
  transition: transform 0.4s cubic-bezier(0.08, 0.82, 0.17, 1), opacity 0.4s cubic-bezier(0.08, 0.82, 0.17, 1);
  position: absolute;
  transform-origin: center;
  inset: 0;
  margin: auto;
}
.l-header__switch span:first-child {
  transform: translateY(-0.8rem) rotate(0deg);
}
@media screen and (max-width: 900px ) {
  .l-header__switch span:first-child {
    transform: translateY(-0.9rem) rotate(0deg);
  }
}
.l-header__switch span:nth-of-type(2) {
  opacity: 1;
}
.l-header__switch span:last-child {
  transform: translateY(0.8rem) rotate(0deg);
}
@media screen and (max-width: 900px ) {
  .l-header__switch span:last-child {
    transform: translateY(0.9rem) rotate(0deg);
  }
}
.l-header__close {
  display: block;
  width: 3rem;
  height: 2.2rem;
  position: relative;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}
.l-header__close span {
  width: 100%;
  height: max(1px, 0.1rem);
  border-radius: 100vmax;
  background: #2864f0;
  position: absolute;
  inset: 0;
  margin: auto;
}
.l-header__close span:first-child {
  transform: rotate(45deg);
}
.l-header__close span:last-child {
  transform: rotate(-45deg);
}

body.is-drawerOpen {
  width: 100vw;
  height: 100dvh;
  position: fixed;
}
/* #footer
----------------------------------------------------------------- */
.l-footer {
  width: 100%;
  height: auto;
  background: #2864f0;
  padding-top: 3.3rem;
}
@media screen and (max-width: 900px ) {
  .l-footer {
    padding-top: 2.6rem;
  }
}
.l-footer__top {
  width: 100rem;
  margin-inline: auto;
  border-bottom: max(2px, 0.2rem) solid #ffffff;
  padding-bottom: 5rem;
}
@media screen and (max-width: 900px ) {
  .l-footer__top {
    width: 35rem;
    padding-bottom: 3rem;
  }
}
.l-footer__title {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 900px ) {
  .l-footer__title {
    font-size: 2.2rem;
  }
}
.l-footer__topList {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 900px ) {
  .l-footer__topList {
    margin-top: 2rem;
  }
}
.l-footer__topList a {
  color: #ffffff;
  font-size: 36px;
  font-size: 3.6rem;
  line-height: 1.2777777778;
  letter-spacing: 0em;
  font-weight: 700;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: max(2px, 0.2rem) solid #ffffff;
  transition: all 0.3s;
}
@media screen and (max-width: 900px ) {
  .l-footer__topList a {
    font-size: 2.8rem;
  }
}
.l-footer__topList a:hover {
  border-bottom: max(2px, 0.2rem) solid transparent;
}
.l-footer__logo {
  display: block;
  width: 15.6rem;
  height: auto;
  margin-inline: auto;
  margin-top: 5rem;
  opacity: 1;
  transition: opacity 0.3s;
}
@media screen and (max-width: 900px ) {
  .l-footer__logo {
    width: 10.6rem;
    margin-top: 3rem;
  }
}
.l-footer__logo:hover {
  opacity: 0.8;
}
.l-footer__list {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 900px ) {
  .l-footer__list {
    margin-top: 2.5rem;
    flex-wrap: wrap;
    row-gap: 1rem;
    width: 23rem;
    margin-inline: auto;
  }
}
.l-footer__item {
  border-right: 1px solid #ffffff;
}
@media screen and (min-width: 901px ) {
  .l-footer__item:last-child {
    border-right: 0px solid #ffffff;
  }
}
@media screen and (max-width: 900px ) {
  .l-footer__item:nth-child(1) {
    border-left: 1px solid #ffffff;
  }
  .l-footer__item:nth-child(3) {
    border-left: 1px solid #ffffff;
  }
}
.l-footer__item a {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 400;
  color: #ffffff;
  display: block;
  padding-inline: 1rem;
  opacity: 1;
  transition: opacity 0.3s;
}
.l-footer__item a:hover {
  opacity: 0.8;
}
.l-footer__copy {
  width: 100%;
  margin-top: 3rem;
  text-align: center;
  padding-block: 2rem;
  color: #ffffff;
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 400;
}
@media screen and (max-width: 900px ) {
  .l-footer__copy {
    margin-top: 2.6rem;
    padding-block: 1.7rem;
  }
}

/* #c-gotop
----------------------------------------------------------------- */
.c-gotop {
  display: none;
  width: 5rem;
  height: 5rem;
  position: fixed;
  right: 4rem;
  bottom: 17.6rem;
  transition: transform 0.3s;
  transform: translateY(0);
  box-shadow: 0 0.35rem 1rem 0 rgba(20, 50, 120, 0.3);
  border-radius: 100%;
  z-index: 200;
}
@media screen and (max-width: 900px ) {
  .c-gotop {
    right: 2rem;
    bottom: 10rem;
  }
}
.c-gotop:hover {
  transform: translateY(-1rem);
}

/* #c-soon
----------------------------------------------------------------- */
.c-soon {
  margin-inline: auto;
  margin-top: 6rem;
  width: 23.8rem;
}
@media screen and (max-width: 900px ) {
  .c-soon {
    margin-top: 4rem;
    width: 18.5rem;
  }
}

/* #c-hover
----------------------------------------------------------------- */
.c-hoverZoom {
  transform-origin: center;
  transform: scale(1);
  transition: transform 0.9s cubic-bezier(0.08, 0.82, 0.17, 1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.c-hoverZoom:hover {
  transform: scale(1.05);
}

/* #c-buttons
----------------------------------------------------------------- */
.c-buttons p {
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.6428571429;
  letter-spacing: 0em;
  font-weight: 400;
}
.c-buttons__button {
  width: 26.4rem;
  height: 5.7rem;
  border-radius: 100vmax;
  margin-top: 0.8rem;
  margin-inline: auto;
  display: grid;
  place-content: center;
  color: #ffffff;
  background: #f07882;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.3636363636;
  letter-spacing: 0em;
  font-weight: 700;
}
@media screen and (max-width: 900px ) {
  .c-buttons__button {
    width: 25rem;
    height: 4.7rem;
    font-size: 19px;
    font-size: 1.9rem;
    line-height: 1.4210526316;
    letter-spacing: 0em;
    font-weight: 700;
  }
}
.c-buttons__button:last-child {
  background: #464343;
  margin-top: 1.2rem;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.1428571429;
  letter-spacing: 0em;
  font-weight: 700;
}
@media screen and (max-width: 900px ) {
  .c-buttons__button:last-child {
    margin-top: 1rem;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 2.25;
    letter-spacing: 0em;
    font-weight: 700;
  }
}

/* #js-scrollEffect
----------------------------------------------------------------- */
.js-scrollEffect--fadeInUp,
.js-loadEffect--fadeInUp {
  will-change: opacity, transform;
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 0.1s;
}
.js-scrollEffect--fadeInUp.action,
.js-loadEffect--fadeInUp.action {
  opacity: 1 !important;
  transform: translateY(0);
}
.js-scrollEffect--fadeInSlide,
.js-loadEffect--fadeInSlide {
  will-change: opacity, transform;
  opacity: 0;
  transform: translate(-1rem, -1rem);
  transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.js-scrollEffect--fadeInSlide.action,
.js-loadEffect--fadeInSlide.action {
  opacity: 1 !important;
  transform: translate(0, 0);
}
.js-scrollEffect--fadeIn,
.js-loadEffect--fadeIn {
  will-change: opacity;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.76, 0.05, 0.86, 0.06);
  transition-delay: 0.1s;
}
.js-scrollEffect--fadeIn.action,
.js-loadEffect--fadeIn.action {
  opacity: 1 !important;
}
.js-scrollEffect--slideIn,
.js-loadEffect--slideIn {
  clip-path: inset(0 100% 0 0);
  will-change: clip-path;
  transition: clip-path 0.8s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.js-scrollEffect--slideIn.action,
.js-loadEffect--slideIn.action {
  clip-path: inset(0 0 0 0);
}
.js-scrollEffect--slideIn2,
.js-loadEffect--slideIn2 {
  clip-path: polygon(0 0, 0 0%, 0% 0);
  will-change: clip-path;
  transition: clip-path 1.1s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.js-scrollEffect--slideIn2.action,
.js-loadEffect--slideIn2.action {
  clip-path: polygon(0 0, 0 200%, 200% 0);
}
.js-scrollEffect--bounceInDown,
.js-loadEffect--bounceInDown {
  opacity: 0;
  transform: translate3d(0, -6rem, 0) scaleY(1.2);
}
.js-scrollEffect--bounceInDown.action,
.js-loadEffect--bounceInDown.action {
  animation: bounceInDown 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -6rem, 0) scaleY(1.2);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 1rem, 0) scaleY(0.9);
  }
  75% {
    opacity: 1;
    transform: translate3d(0, -1rem, 0) scaleY(0.95);
  }
  90% {
    opacity: 1;
    transform: translate3d(0, 0.5rem, 0) scaleY(0.985);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scaleY(1);
  }
}
/* #p-
----------------------------------------------------------------- */
/* #p-mv
----------------------------------------------------------------- */
.p-mv {
  padding-block: 14rem;
  position: relative;
  margin-top: 10rem;
  background: url(../images/mv_bg.jpg) no-repeat top center/100% auto;
}
@media screen and (max-width: 900px ) {
  .p-mv {
    padding-block: 4.5rem;
    margin-top: 6.5rem;
    background: url(../images/mv_bg_sp.jpg) no-repeat top center/100% auto;
  }
}
.p-mv__inner {
  width: 108rem;
  margin-inline: auto;
}
@media screen and (max-width: 900px ) {
  .p-mv__inner {
    width: 35rem;
  }
}
.p-mv__title p {
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1.40625;
  letter-spacing: 0em;
  font-weight: 700;
  color: #464343;
}
@media screen and (max-width: 900px ) {
  .p-mv__title p {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0em;
    font-weight: 700;
    background: #2864f0;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0.5rem 0.5em;
    border-radius: 1rem;
    color: #ffffff;
  }
}
.p-mv__title h1 {
  margin-top: 3rem;
  width: 48.2rem;
  height: auto;
}
@media screen and (max-width: 900px ) {
  .p-mv__title h1 {
    width: 24.3rem;
    margin-top: 1.6rem;
  }
}
.p-mv__subtitle {
  width: 40.5rem;
  height: auto;
  margin-top: 1rem;
}
@media screen and (max-width: 900px ) {
  .p-mv__subtitle {
    width: 30rem;
  }
}
.p-mv__buttons {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 0;
  margin-top: 3.8rem;
}

/* #p-gallery
----------------------------------------------------------------- */
.p-gallery {
  width: 100dvw;
  background: #2864f0;
  padding-block: 1rem;
}
@media screen and (max-width: 900px ) {
  .p-gallery {
    padding-block: 0.6rem;
  }
}
.p-gallery__slider {
  width: 100%;
}
.p-gallery__slide {
  width: 32.9rem;
  height: auto;
  aspect-ratio: 658/438;
}
@media screen and (max-width: 900px ) {
  .p-gallery__slide {
    width: 17.4rem;
  }
}
.p-gallery__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* #p-voice
----------------------------------------------------------------- */
.p-voice {
  padding-block: 15rem 10rem;
}
@media screen and (max-width: 900px ) {
  .p-voice {
    padding-block: 9rem 9rem;
  }
}
.p-voice__title {
  text-align: center;
  font-size: 36px;
  font-size: 3.6rem;
  line-height: 1.3333333333;
  letter-spacing: 0em;
  font-weight: 700;
  color: #2864f0;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  border-bottom: max(7px, 0.7rem) solid #2864f0;
}
@media screen and (max-width: 900px ) {
  .p-voice__title {
    font-size: 28px;
    font-size: 2.8rem;
    line-height: 1.3571428571;
    letter-spacing: 0em;
    font-weight: 700;
  }
}
.p-voice__list {
  width: 118.4rem;
  margin-inline: auto;
  background: #ffffff;
  display: grid;
  grid-template-columns: repeat(3, 32.7rem);
  justify-content: center;
  -moz-column-gap: 5rem;
       column-gap: 5rem;
  margin-top: 4rem;
  padding-block: 8rem 4rem;
}
@media screen and (max-width: 900px ) {
  .p-voice__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 35rem;
    row-gap: 8rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2rem;
  }
}
.p-voice__item {
  width: 100%;
  height: 100%;
  position: relative;
}
.p-voice__item::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff7e6;
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  border-radius: 1rem;
  z-index: 0;
}
@media screen and (max-width: 900px ) {
  .p-voice__item {
    width: 32.5rem;
  }
}
.p-voice__itemInner {
  width: 100%;
  height: 100%;
  border: 2px solid #aac8ff;
  border-radius: 1rem;
  padding: 6rem 3rem 3rem 3rem;
  background: transparent;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
.p-voice__itemImage {
  width: 9rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: 0;
  right: 0;
  margin-inline: auto;
  top: 0;
  transform: translateY(-60%);
}
.p-voice__itemText {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 400;
  text-align: justify;
}
@media screen and (max-width: 900px ) {
  .p-voice__itemText {
    font-size: 1.4rem;
  }
}
.p-voice__button {
  display: grid;
  place-content: center;
  width: -moz-fit-content;
  width: fit-content;
  height: 5.4rem;
  margin-inline: auto;
  margin-top: 4rem;
  background: #2864f0;
  color: #ffffff;
  border-radius: 100vmax;
  font-size: 23px;
  font-size: 2.3rem;
  line-height: 1.3043478261;
  letter-spacing: 0em;
  font-weight: 700;
  padding-inline: 1.5em;
}
.p-appeal {
  padding-block: 7rem;
  background: #2864f0;
}
@media screen and (max-width: 900px ) {
  .p-appeal {
    padding-block: 10.5rem 7.5rem;
  }
}
.p-appeal__inner {
  display: flex;
  flex-direction: column;
  row-gap: 9rem;
}
@media screen and (max-width: 900px ) {
  .p-appeal__inner {
    row-gap: 6rem;
  }
}
.p-appeal__text {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.9545454545;
  letter-spacing: 0em;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
}
@media screen and (max-width: 900px ) {
  .p-appeal__text {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 2;
    letter-spacing: 0em;
    font-weight: 700;
    padding-top: 4rem;
  }
}
.p-appeal__text + .p-appeal__title {
  margin-top: 0.5rem;
}
.p-appeal__title {
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1.5625;
  letter-spacing: 0em;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
@media screen and (max-width: 900px ) {
  .p-appeal__title {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.625;
    letter-spacing: 0em;
    font-weight: 700;
    display: block;
    position: relative;
    text-align: center;
  }
}
.p-appeal__title:before, .p-appeal__title:after {
  content: "";
  display: block;
  width: 5.7rem;
  height: 5.7rem;
  background: url(../images/appeal_title_deco01.png) no-repeat center/contain;
  margin-inline: 1.4rem;
}
@media screen and (max-width: 900px ) {
  .p-appeal__title:before, .p-appeal__title:after {
    width: 5.4rem;
    height: 5.4rem;
  }
}
@media screen and (max-width: 900px ) {
  .p-appeal__title:after {
    display: none;
  }
  .p-appeal__title:before {
    position: absolute;
    left: 0;
    right: 0;
    margin-inline: auto;
    top: -6rem;
  }
}
.p-appeal__title--02:before, .p-appeal__title--02:after {
  background: url(../images/appeal_title_deco02.png) no-repeat center/contain;
}
@media screen and (max-width: 900px ) {
  .p-appeal__title--02:before {
    top: -9rem;
  }
}
.p-appeal__title--03:before, .p-appeal__title--03:after {
  background: url(../images/appeal_title_deco03.png) no-repeat center/contain;
}
@media screen and (max-width: 900px ) {
  .p-appeal__title--03:before {
    top: -9rem;
  }
}
.p-appeal__title em {
  font-style: normal;
  background: #f07882;
  padding-inline: 0.2em;
}
.p-appeal__list {
  display: flex;
  justify-content: center;
  -moz-column-gap: 4.6rem;
       column-gap: 4.6rem;
  align-items: center;
  margin-top: 2.3rem;
}
@media screen and (max-width: 900px ) {
  .p-appeal__list {
    flex-direction: column;
    row-gap: 3rem;
  }
}
.p-appeal__list--small {
  display: grid;
  grid-template-columns: repeat(4, 30rem);
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}
@media screen and (max-width: 900px ) {
  .p-appeal__list--small {
    display: flex;
    flex-direction: column;
    row-gap: 3rem;
  }
}
.p-appeal__listItem {
  width: 30rem;
  height: 30rem;
  background: #ffffff;
  padding-top: 2rem;
  border-radius: 2rem;
}
@media screen and (max-width: 900px ) {
  .p-appeal__listItem {
    height: auto;
    padding: 3rem 0;
  }
}
.p-appeal__listItem div {
  width: 26.5rem;
  height: auto;
  margin-inline: auto;
}
@media screen and (max-width: 900px ) {
  .p-appeal__listItem div {
    width: 100%;
  }
}
.p-appeal__listItem p {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
  text-align: center;
  margin-top: 0.5rem;
  color: #2864f0;
}
.p-appeal__smallItem {
  width: 30rem;
  height: auto;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  padding-block: 2rem;
  background: #ffffff;
  border-radius: 2rem;
}
.p-appeal__smallItem span {
  display: block;
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.9285714286;
  letter-spacing: 0em;
  font-weight: 700;
  color: #2864f0;
}
.p-appeal__smallItem h3 {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.125;
  letter-spacing: 0em;
  font-weight: 700;
  text-align: center;
  color: #2864f0;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.p-appeal__smallItem h3.con {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: -0.025em;
  font-weight: 700;
}
.p-appeal__smallItem p {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5714285714;
  letter-spacing: 0em;
  font-weight: 400;
  text-align: center;
  margin-top: 1.5rem;
}
.p-appeal__buttons p {
  color: #ffffff;
}

.p-about {
  padding-block: 14rem 8rem;
}
@media screen and (max-width: 900px ) {
  .p-about {
    padding-block: 6rem 6rem;
  }
}
@media screen and (max-width: 900px ) {
  .p-about__inner {
    width: 35rem;
    margin-inline: auto;
    background: rgba(255, 255, 255, 0.8);
    padding: 4rem 2rem;
    border-radius: 2rem;
  }
}
.p-about__title {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: 36px;
  font-size: 3.6rem;
  line-height: 1.3333333333;
  letter-spacing: 0.1em;
  font-weight: 700;
  border-bottom: max(3px, 0.3rem) solid #f07882;
  font-feature-settings: "palt";
}
@media screen and (max-width: 900px ) {
  .p-about__title {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.6;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-align: center;
  }
}
.p-about__text {
  text-align: center;
  margin-top: 6rem;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 2.2777777778;
  letter-spacing: 0em;
  font-weight: 500;
}
@media screen and (max-width: 900px ) {
  .p-about__text {
    margin-top: 4rem;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 2.1875;
    letter-spacing: 0em;
    font-weight: 500;
    width: 100%;
    margin-inline: auto;
    text-align: justify;
  }
  .p-about__text br {
    display: none;
  }
}
.p-about__text h3 {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.8636363636;
  letter-spacing: 0em;
  font-weight: 700;
  color: #2864f0;
  margin-top: 4rem;
}
@media screen and (max-width: 900px ) {
  .p-about__text h3 {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.6;
    letter-spacing: 0em;
    font-weight: 700;
    margin-top: 3rem;
    text-align: center;
    font-feature-settings: "palt";
  }
}
.p-about__buttons {
  margin-top: 7.5rem;
}
@media screen and (max-width: 900px ) {
  .p-about__buttons {
    margin-top: 4.2rem;
  }
}
.p-access {
  padding-block: 10rem 8rem;
}
.p-access__title {
  text-align: center;
  font-size: 36px;
  font-size: 3.6rem;
  line-height: 1.3333333333;
  letter-spacing: 0em;
  font-weight: 700;
  color: #2864f0;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  border-bottom: max(7px, 0.7rem) solid #2864f0;
}
@media screen and (max-width: 900px ) {
  .p-access__title {
    font-size: 28px;
    font-size: 2.8rem;
    line-height: 1.3571428571;
    letter-spacing: 0em;
    font-weight: 700;
  }
}
.p-access__block {
  width: 100rem;
  margin-inline: auto;
  margin-top: 5rem;
  background: #2864f0;
  padding: 4rem 2rem;
  border-radius: 2rem;
}
@media screen and (max-width: 900px ) {
  .p-access__block {
    width: 35rem;
    padding: 1.5rem;
    border-radius: 1rem;
  }
}
.p-access__blockInner {
  background: #ffffff;
  padding: 4rem 0;
}
@media screen and (max-width: 900px ) {
  .p-access__blockInner {
    padding: 1.5rem 0;
  }
}
.p-access__list {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 900px ) {
  .p-access__list {
    width: 100%;
    padding-inline: 2rem;
  }
}
.p-access__item {
  display: flex;
  align-items: flex-start;
  margin-top: 4rem;
}
@media screen and (max-width: 900px ) {
  .p-access__item {
    margin-top: 2.3rem;
    flex-direction: column;
    row-gap: 1rem;
  }
}
.p-access__itemTitle {
  width: 11rem;
  flex-shrink: 0;
  border-right: 1px solid #ebf3ff;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media screen and (max-width: 900px ) {
  .p-access__itemTitle {
    font-size: 1.3rem;
    width: auto;
    border-right: 0 solid #ebf3ff;
  }
}
.p-access__itemText {
  width: 100%;
  padding-left: 4rem;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 400;
  white-space: nowrap;
}
@media screen and (max-width: 900px ) {
  .p-access__itemText {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.6;
    letter-spacing: 0.1em;
    font-weight: 400;
    padding-left: 0;
    white-space: wrap;
  }
}
.p-access__map {
  margin-top: 6rem;
  width: 70rem;
  margin-inline: auto;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 900px ) {
  .p-access__map {
    margin-top: 2.3rem;
    width: 100%;
    aspect-ratio: 1/1;
  }
}
.p-access__map iframe {
  width: 100%;
  height: 100%;
}
.p-access__info {
  width: 70rem;
  margin-top: 4rem;
  margin-inline: auto;
  display: flex;
  -moz-column-gap: 10rem;
       column-gap: 10rem;
}
@media screen and (max-width: 900px ) {
  .p-access__info {
    width: 100%;
    flex-direction: column;
    row-gap: 2rem;
    padding-inline: 2rem;
  }
}
.p-access__infoTitle {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #2864f0;
}
@media screen and (max-width: 900px ) {
  .p-access__infoTitle {
    font-size: 1.4rem;
  }
}
.p-access__infoAddress {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5714285714;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-top: 0.5rem;
}
@media screen and (max-width: 900px ) {
  .p-access__infoAddress {
    font-size: 1.4rem;
  }
}
.p-access__infoLink {
  display: flex;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  align-items: center;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5714285714;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-top: 1rem;
}
@media screen and (max-width: 900px ) {
  .p-access__infoLink {
    flex-direction: column;
    align-items: flex-start;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.8333333333;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
}
.p-access__infoLink a {
  text-decoration: underline;
  color: #2864f0;
}
.p-access__infoLink a:hover {
  text-decoration: none;
}
.p-access__infoText {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 400;
}
@media screen and (max-width: 900px ) {
  .p-access__infoText {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.6666666667;
    letter-spacing: 0.1em;
    font-weight: 400;
  }
}

/* #p-bg
----------------------------------------------------------------- */
.p-bg {
  width: 100dvw;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  background: url(../images/bg.jpg) repeat-y top center/100% auto;
}
@media screen and (max-width: 900px ) {
  .p-bg {
    background: url(../images/bg_sp.jpg) repeat-y top center/100% auto;
  }
}

.p-navi {
  width: 100%;
  background: #ffffff;
  position: fixed;
  bottom: 0;
  z-index: 100;
  transition: background 0.3s, transform 0.3s;
  transform: translateY(105%);
  height: 6.5rem;
}
.p-navi.is-active {
  transform: translateY(0%) !important;
}
.p-navi__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.p-navi__buttons li a {
  border-radius: 100vmax;
  margin-top: 0.8rem;
  margin-inline: auto;
  display: grid;
  place-content: center;
  color: #ffffff;
  background: #f07882;
  width: -moz-fit-content;
  width: fit-content;
  height: 4.7rem;
  padding-inline: 1.5em;
  font-size: 19px;
  font-size: 1.9rem;
  line-height: 1.4210526316;
  letter-spacing: 0em;
  font-weight: 700;
}
.p-navi__buttons li:last-child a {
  background: #464343;
  margin-top: 1rem;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 2.25;
  letter-spacing: 0em;
  font-weight: 700;
}

/* #pcsp
----------------------------------------------------------------- */
@media screen and (min-width: 901px) {
  .u-pcNone {
    display: none !important;
  }
}
@media screen and (max-width: 900px) {
  .u-spNone {
    display: none !important;
  }
}
/* ==========================================================================
 #Foundation
========================================================================== */
/* ==========================================================================
 #Layout
========================================================================== */
/* ==========================================================================
 #Component
========================================================================== */
/* ==========================================================================
 #Project
========================================================================== */
/* ==========================================================================
 #Utility
========================================================================== */