@charset "UTF-8";
/* fade
------------------------------------------------------ */
@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    display: none;
  }
}
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    display: none;
  }
}
.key-fadein {
  -webkit-animation: fade-in 1s;
          animation: fade-in 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.key-fadeout {
  -webkit-animation: fade-out 1s;
          animation: fade-out 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

/* 縦スクロールのアニメーション
------------------------------------------------------ */
@-webkit-keyframes pathmove {
  0% {
    height: 0;
    top: 20px;
    opacity: 0;
  }
  30% {
    height: 45px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 90px;
    opacity: 0;
  }
}
@keyframes pathmove {
  0% {
    height: 0;
    top: 20px;
    opacity: 0;
  }
  30% {
    height: 45px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 90px;
    opacity: 0;
  }
}
/* ヘッダーのスライドアニメーション
------------------------------------------------------ */
@-webkit-keyframes headerSlide {
  0% {
    top: -100%;
  }
  100% {
    top: 0;
  }
}
@keyframes headerSlide {
  0% {
    top: -100%;
  }
  100% {
    top: 0;
  }
}
/*
 * html, body
---------------------------------------*/
body {
  opacity: 0;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #000064;
  line-height: 1.5;
  letter-spacing: 0;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overflow-wrap: break-word;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

header, footer {
  width: 100%;
}

a, .hover {
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: inherit;
}
a:after, .hover:after {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
a:hover, .hover:hover {
  text-decoration: none;
  outline: 0;
  opacity: 0.8;
}
a.block, .hover.block {
  display: block;
}
a.line, .hover.line {
  display: inline;
}
a.underline, .hover.underline {
  text-decoration: underline;
}
a.link-arrow, .hover.link-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
a.link-arrow:after, .hover.link-arrow:after {
  content: "";
  display: block;
  line-height: 1;
  width: 0.5em;
  height: 1em;
  background-repeat: no-repeat;
  background-position: center center;
  margin-left: 0.6666666667em;
}
a.link-arrow.center, .hover.link-arrow.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
a img, a svg, .hover img, .hover svg {
  border: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
a img:hover, a svg:hover, .hover img:hover, .hover svg:hover {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

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

ul.disc {
  margin-left: 1em;
}
ul.disc li {
  list-style: disc;
}

img, video {
  border: 0;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

video {
  width: 100%;
}

iframe {
  max-width: 100%;
}

picture {
  display: block;
}
picture img {
  width: inherit;
}

button {
  outline: none;
}

em {
  font-style: normal;
}

/*
 * SP-PC切り替え
---------------------------------------*/
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

@media print, screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}

/*
 * SPのときだけTELリンクをつける
---------------------------------------*/
@media print, screen and (min-width: 769px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: text;
    text-decoration: none;
  }
}

/*! destyle.css v3.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          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 {
  -webkit-box-sizing: content-box;
          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;
}

.footer {
  color: #fff;
  background-color: #fff;
}
.footer .footer__copy--wrapper {
  text-align: center;
  line-height: 1;
  background-color: #003784;
}
@media screen and (max-width: 768px) {
  .footer .footer__copy--wrapper {
    text-align: center;
    padding: 5.7142857143% 0;
  }
}
@media print, screen and (min-width: 769px) {
  .footer .footer__copy--wrapper {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
.footer .footer__copy {
  line-height: 1;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer .footer__copy {
    font-size: min(2.8571428571vw, 1.25rem);
  }
}
@media print, screen and (min-width: 769px) {
  .footer .footer__copy {
    font-size: 0.75rem;
  }
}

.header {
  position: fixed;
  left: 0;
  z-index: 999;
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}
.header.bg {
  background-color: #fff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
  .header .header__inner {
    padding: 5.7142857143vw 5.7142857143vw;
  }
}
@media print, screen and (min-width: 769px) {
  .header .header__inner {
    padding: 19px 0;
  }
}
@media screen and (max-width: 768px) {
  .header .header__logo {
    width: 63.9316239316%;
  }
}
@media print, screen and (min-width: 769px) {
  .header .header__logo {
    width: 300px;
    margin-left: 1rem;
  }
}
.header .header__logo img {
  width: 100%;
}
.header .header__logo svg {
  width: 100%;
  fill: #fff;
}
.header .header__logo.page svg {
  fill: #30D9C2;
}
@media screen and (max-width: 768px) {
  .header .header__search {
    display: none;
  }
}
@media print, screen and (min-width: 769px) {
  .header .header__search {
    margin-right: 20px;
    margin-left: auto;
  }
}
@media print, screen and (min-width: 769px) {
  .header .header__search .btn {
    text-indent: -1.5em;
    width: 180px;
    height: 50px;
  }
}

/* メニューアイコン */
.header__menubutton {
  display: block;
  border-radius: 50vw;
  background-color: #003784;
  position: relative;
  z-index: 30;
  margin: 0 10px 0 0;
}
@media screen and (max-width: 768px) {
  .header__menubutton {
    position: absolute;
    top: 4.2857142857vw;
    right: 2.8571428571vw;
    width: 14.2857142857vw;
    height: 0;
    padding-top: 14.2857142857vw;
  }
}
@media print, screen and (min-width: 769px) {
  .header__menubutton {
    width: 3.125rem;
    height: 3.125rem;
    margin-left: 0;
    margin-right: 25px;
  }
}
.header__menubutton.checked .memu__border {
  height: 1px;
}
.header__menubutton.checked .memu__border:nth-child(1) {
  top: 48%;
  left: 30%;
  width: 38%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header__menubutton.checked .memu__border:nth-child(2) {
  top: 48%;
  left: 30%;
  width: 38%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.header__menubutton.checked .memu__border:nth-child(3) {
  width: 0;
}
.header__menubutton.checked .hamburger__text {
  opacity: 0;
}
.header__menubutton .memu__border {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 1px;
  background-color: #fff;
  will-change: transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.3s 0s ease-out;
  transition: -webkit-transform 0.3s 0s ease-out;
  transition: transform 0.3s 0s ease-out;
  transition: transform 0.3s 0s ease-out, -webkit-transform 0.3s 0s ease-out;
  backface-visibility: hidden;
}
@media screen and (max-width: 768px) {
  .header__menubutton .memu__border {
    width: 34%;
  }
}
@media print, screen and (min-width: 769px) {
  .header__menubutton .memu__border {
    width: 1.0625rem;
  }
}
.header__menubutton .memu__border:nth-child(1) {
  top: 35%;
}
@media print, screen and (min-width: 769px) {
  .header__menubutton .memu__border:nth-child(1) {
    top: 18px;
  }
}
.header__menubutton .memu__border:nth-child(2) {
  top: 50%;
}
@media print, screen and (min-width: 769px) {
  .header__menubutton .memu__border:nth-child(2) {
    top: 25px;
  }
}
.header__menubutton .memu__border:nth-child(3) {
  top: 64%;
}
@media print, screen and (min-width: 769px) {
  .header__menubutton .memu__border:nth-child(3) {
    top: 32px;
  }
}
.header__menubutton .hamburger__text {
  font-family: "genkakugo", sans-serif;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  position: absolute;
  left: 50%;
  bottom: 12px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media print, screen and (min-width: 769px) {
  .header__menubutton .hamburger__text {
    font-size: 14px;
    font-size: 0.875rem;
    bottom: 17px;
  }
}

/* ヘッダーメニュー */
.header__menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  background-color: #fff;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
  transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
  transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1), -webkit-transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 20;
}
@media screen and (max-width: 768px) {
  .header__menu {
    width: 86%;
  }
}
@media print, screen and (min-width: 769px) {
  .header__menu {
    width: 350px;
    max-width: 95%;
  }
}
.header__menu.active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
.header__menu .header__menu__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding-bottom: 0;
  overflow: auto;
}
@media screen and (max-width: 768px) {
  .header__menu .header__menu__inner {
    padding-top: 7.3313782991%;
  }
}
@media print, screen and (min-width: 769px) {
  .header__menu .header__menu__inner {
    padding-top: 23px;
    padding-left: 0.6875rem;
    padding-right: 0.625rem;
  }
}
.header__menu .header__menu__inner .header__menu__body {
  padding-left: 9.9667774086%;
  padding-right: 9.9667774086%;
}
.header__menu .header__nav__list {
  margin-top: 3.5rem;
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 769px) {
  .header__menu .header__nav__list {
    max-width: 313px;
  }
}
.header__menu .header__nav__item a {
  display: block;
  font-weight: bold;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #E4E4E4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18'%3E%3Cg fill='%23000064' transform='translate(-513 -889)'%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(513 889)'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(513 901)'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(525 889)'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(525 901)'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .header__menu .header__nav__item a {
    font-size: min(4.2666666667vw, 2rem);
    background-size: 1.25em, auto;
    background-position: top 1.125em left;
    padding-top: 1.09375em;
    padding-bottom: 0.8125em;
    padding-left: 2.1875em;
  }
}
@media print, screen and (min-width: 769px) {
  .header__menu .header__nav__item a {
    font-size: 16px;
    font-size: 1rem;
    background-position: top 19px left;
    padding-top: 0.9375em;
    padding-bottom: 0.5625em;
    padding-left: 2.0625rem;
  }
}
.header__menu .header__nav__item a .en {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 2.6;
}
@media screen and (max-width: 768px) {
  .header__menu .header__nav__item a .en {
    font-size: 0.625em;
  }
}
@media print, screen and (min-width: 769px) {
  .header__menu .header__nav__item a .en {
    font-size: 10px;
    font-size: 0.625rem;
  }
}
.header__menu .header__nav__item:last-child a {
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  .header__menu .menu__banner {
    background-color: #FD277A;
  }
  .header__menu .menu__banner .menu__banner__inner {
    padding: 0.8305647841% 8.3056478405% 8.9700996678% 8.3056478405%;
  }
  .header__menu .menu__banner a {
    display: block;
  }
}

.wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
}
@media all and (-ms-high-contrast: none) {
  .wrapper {
    -webkit-box-orient: inherit;
    -webkit-box-direction: inherit;
        -ms-flex-direction: inherit;
            flex-direction: inherit;
  }
}
.wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  background-repeat: repeat;
  background-position: top left;
  background-size: auto;
}
@media screen and (max-width: 768px) {
  .wrapper:before {
    left: 24px;
    width: calc(100% + 24px);
    background-image: repeating-linear-gradient(to right, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1) 1px, transparent 0, transparent 18.8571428571%);
  }
}
@media print, screen and (min-width: 769px) {
  .wrapper:before {
    left: 87px;
    width: calc(100% + 87px);
    background-image: repeating-linear-gradient(to right, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1) 1px, transparent 0, transparent 218px);
  }
}

.l-main {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .l-main {
    overflow: hidden;
  }
}

.layout-width {
  width: 100%;
  max-width: 81.875rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 0.9375rem;
}
@media print, screen and (min-width: 769px) {
  .layout-width .layout-width__inner {
    padding-left: 85px;
    padding-right: 85px;
  }
}

.content-width {
  width: 100%;
  max-width: 69.375rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 0.9375rem;
}
@media screen and (max-width: 768px) {
  .content-width {
    padding-left: min(7.1428571429vw, 50px);
    padding-right: min(7.1428571429vw, 50px);
  }
}

/* フェード
------------------------------------------------------ */
.js-fade-in {
  opacity: 0;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transition-duration: 2.5s;
          transition-duration: 2.5s;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
          transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}
.js-fade-in.fade-outQuit {
  -webkit-transition-timing-function: cubic-bezier(0.83, 0, 0.17, 1);
          transition-timing-function: cubic-bezier(0.83, 0, 0.17, 1);
}
.js-fade-in.fade-in-up {
  -webkit-transform: translate3d(0, 50px, 0) !important;
          transform: translate3d(0, 50px, 0) !important;
}
.js-fade-in.fade-in-down {
  -webkit-transform: translate3d(0, -100px, 0) !important;
          transform: translate3d(0, -100px, 0) !important;
}
.js-fade-in.fade-in-left {
  -webkit-transform: translate3d(-500px, 0, 0) !important;
          transform: translate3d(-500px, 0, 0) !important;
}
.js-fade-in.fade-in-right {
  -webkit-transform: translate3d(500px, 0, 0) !important;
          transform: translate3d(500px, 0, 0) !important;
}
.js-fade-in.js-scroll-in {
  opacity: 1 !important;
  -webkit-transform: translate3d(0, 0, 0) !important;
          transform: translate3d(0, 0, 0) !important;
}

/* アコーディオン
------------------------------------------------------ */
.js-accordion-btn {
  cursor: pointer;
}

.js-accordion {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 0.2s ease max-height;
  transition: 0.2s ease max-height;
  padding-top: 0;
}

.mark {
  margin-top: 0.8333333333em;
  background: transparent;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, transparent), color-stop(70%, #FFE100), to(#FFE100));
  background: linear-gradient(to bottom, transparent 70%, transparent 70%, #FFE100 70%, #FFE100 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="transparent", endColorstr="#FFE100",GradientType=0 );
}

.text--center {
  text-align: center;
}
@media print, screen and (min-width: 769px) {
  .text--center--pc {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .text--center--sp {
    text-align: center;
  }
}

.text--normal {
  font-size: 14px;
  font-size: min(3.7333333333vw, 14px);
}

.search-btn {
  max-width: 600px;
  margin-top: 3.125rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .search-btn {
    font-size: min(4vw, 1.75rem);
    height: 4.2857142857em;
  }
}
@media print, screen and (min-width: 769px) {
  .search-btn {
    height: 80px;
  }
}
.search-btn a {
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .search-btn a {
    font-size: min(4vw, 1.75rem);
  }
}
@media print, screen and (min-width: 769px) {
  .search-btn a {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.search-btn a:after {
  right: 25px;
}

.btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  border-radius: 50vw;
  color: #000064;
  background-color: #FFE100;
}
.btn:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64.001'%3E%3Cpath fill='%23000064' d='M32 0a32 32 0 1 0 32 32A32 32 0 0 0 32 0Zm-3.114 47.622a2.1 2.1 0 0 1-2.971-2.97l11.2-11.2-11.2-11.2a2.1 2.1 0 1 1 2.971-2.971l14.171 14.17Z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  margin-left: 0.5rem;
}
@media screen and (max-width: 768px) {
  .btn:after {
    width: 2.2857142857em;
    height: 2.2857142857em;
  }
}
@media print, screen and (min-width: 769px) {
  .btn:after {
    width: 30px;
    height: 30px;
  }
}
.btn.dark {
  color: #FFE100;
  background-color: #000064;
}
.btn.dark:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64.001'%3E%3Cpath fill='%23FFE100' d='M32 0a32 32 0 1 0 32 32A32 32 0 0 0 32 0Zm-3.114 47.622a2.1 2.1 0 0 1-2.971-2.97l11.2-11.2-11.2-11.2a2.1 2.1 0 1 1 2.971-2.971l14.171 14.17Z'/%3E%3C/svg%3E");
}

/*
 * flex-boxのitem幅
---------------------------------------*/
/*
 * flex-box
---------------------------------------*/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flex .flex_item-col1 {
  width: 6.3333333333%;
}
.flex .flex_item-col2 {
  width: 14.6666666667%;
}
.flex .flex_item-col3 {
  width: 23%;
}
.flex .flex_item-col4 {
  width: 31.3333333333%;
}
.flex .flex_item-col5 {
  width: 39.6666666667%;
}
.flex .flex_item-col6 {
  width: 48%;
}
.flex .flex_item-col7 {
  width: 56.3333333333%;
}
.flex .flex_item-col8 {
  width: 64.6666666667%;
}
.flex .flex_item-col9 {
  width: 73%;
}
.flex .flex_item-col10 {
  width: 81.3333333333%;
}
.flex .flex_item-col11 {
  width: 89.6666666667%;
}
.flex .flex_item-col12 {
  width: 98%;
}
@media screen and (max-width: 768px) {
  .flex .flex_item-sp-col1 {
    width: 6.3333333333%;
  }
  .flex .flex_item-sp-col2 {
    width: 14.6666666667%;
  }
  .flex .flex_item-sp-col3 {
    width: 23%;
  }
  .flex .flex_item-sp-col4 {
    width: 31.3333333333%;
  }
  .flex .flex_item-sp-col5 {
    width: 39.6666666667%;
  }
  .flex .flex_item-sp-col6 {
    width: 48%;
  }
  .flex .flex_item-sp-col7 {
    width: 56.3333333333%;
  }
  .flex .flex_item-sp-col8 {
    width: 64.6666666667%;
  }
  .flex .flex_item-sp-col9 {
    width: 73%;
  }
  .flex .flex_item-sp-col10 {
    width: 81.3333333333%;
  }
  .flex .flex_item-sp-col11 {
    width: 89.6666666667%;
  }
  .flex .flex_item-sp-col12 {
    width: 98%;
  }
}
@media print, screen and (min-width: 769px) {
  .flex .flex_item-pc-col1 {
    width: 6.3333333333%;
  }
  .flex .flex_item-pc-col2 {
    width: 14.6666666667%;
  }
  .flex .flex_item-pc-col3 {
    width: 23%;
  }
  .flex .flex_item-pc-col4 {
    width: 31.3333333333%;
  }
  .flex .flex_item-pc-col5 {
    width: 39.6666666667%;
  }
  .flex .flex_item-pc-col6 {
    width: 48%;
  }
  .flex .flex_item-pc-col7 {
    width: 56.3333333333%;
  }
  .flex .flex_item-pc-col8 {
    width: 64.6666666667%;
  }
  .flex .flex_item-pc-col9 {
    width: 73%;
  }
  .flex .flex_item-pc-col10 {
    width: 81.3333333333%;
  }
  .flex .flex_item-pc-col11 {
    width: 89.6666666667%;
  }
  .flex .flex_item-pc-col12 {
    width: 98%;
  }
}
@media print, screen and (min-width: 769px) {
  .flex--pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .flex--pc .flex_item-pc-col1 {
    width: 6.3333333333%;
  }
  .flex--pc .flex_item-pc-col2 {
    width: 14.6666666667%;
  }
  .flex--pc .flex_item-pc-col3 {
    width: 23%;
  }
  .flex--pc .flex_item-pc-col4 {
    width: 31.3333333333%;
  }
  .flex--pc .flex_item-pc-col5 {
    width: 39.6666666667%;
  }
  .flex--pc .flex_item-pc-col6 {
    width: 48%;
  }
  .flex--pc .flex_item-pc-col7 {
    width: 56.3333333333%;
  }
  .flex--pc .flex_item-pc-col8 {
    width: 64.6666666667%;
  }
  .flex--pc .flex_item-pc-col9 {
    width: 73%;
  }
  .flex--pc .flex_item-pc-col10 {
    width: 81.3333333333%;
  }
  .flex--pc .flex_item-pc-col11 {
    width: 89.6666666667%;
  }
  .flex--pc .flex_item-pc-col12 {
    width: 98%;
  }
}
@media screen and (max-width: 768px) {
  .flex--sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .flex--sp .flex_item-sp-col1 {
    width: 6.3333333333%;
  }
  .flex--sp .flex_item-sp-col2 {
    width: 14.6666666667%;
  }
  .flex--sp .flex_item-sp-col3 {
    width: 23%;
  }
  .flex--sp .flex_item-sp-col4 {
    width: 31.3333333333%;
  }
  .flex--sp .flex_item-sp-col5 {
    width: 39.6666666667%;
  }
  .flex--sp .flex_item-sp-col6 {
    width: 48%;
  }
  .flex--sp .flex_item-sp-col7 {
    width: 56.3333333333%;
  }
  .flex--sp .flex_item-sp-col8 {
    width: 64.6666666667%;
  }
  .flex--sp .flex_item-sp-col9 {
    width: 73%;
  }
  .flex--sp .flex_item-sp-col10 {
    width: 81.3333333333%;
  }
  .flex--sp .flex_item-sp-col11 {
    width: 89.6666666667%;
  }
  .flex--sp .flex_item-sp-col12 {
    width: 98%;
  }
}
.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media print, screen and (min-width: 769px) {
  .flex-wrap--pc {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .flex-wrap--sp {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.flex-justify-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media print, screen and (min-width: 769px) {
  .flex-justify-start--pc {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .flex-justify-start--sp {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.flex-justify-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media print, screen and (min-width: 769px) {
  .flex-justify-end--pc {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media screen and (max-width: 768px) {
  .flex-justify-end--sp {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.flex-justify-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media print, screen and (min-width: 769px) {
  .flex-justify-between--pc {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  .flex-justify-between--sp {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.flex-justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media print, screen and (min-width: 769px) {
  .flex-justify-center--pc {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .flex-justify-center--sp {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.flex-align-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media print, screen and (min-width: 769px) {
  .flex-align-start--pc {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .flex-align-start--sp {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.flex-align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media print, screen and (min-width: 769px) {
  .flex-align-center--pc {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .flex-align-center--sp {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.flex-align-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media print, screen and (min-width: 769px) {
  .flex-align-end--pc {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media screen and (max-width: 768px) {
  .flex-align-end--sp {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.flex-align-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media print, screen and (min-width: 769px) {
  .flex-align-stretch--pc {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
@media screen and (max-width: 768px) {
  .flex-align-stretch--sp {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
.flex-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media print, screen and (min-width: 769px) {
  .flex-row-reverse--pc {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (max-width: 768px) {
  .flex-row-reverse--sp {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.flex-order1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.flex-order2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.flex-order3 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.flex-order4 {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}
.flex-order5 {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}
.flex-order6 {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}
.flex-order7 {
  -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
          order: 7;
}
.flex-order8 {
  -webkit-box-ordinal-group: 9;
      -ms-flex-order: 8;
          order: 8;
}
.flex-order9 {
  -webkit-box-ordinal-group: 10;
      -ms-flex-order: 9;
          order: 9;
}
.flex-order10 {
  -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
          order: 10;
}

.modalContent {
  position: fixed;
  top: 120px;
  left: 0;
  opacity: 0;
  width: 100%;
  height: calc(100vh - 160px);
  pointer-events: none;
  -webkit-transition: opacity 0.5s cubic-bezier(0.5, 1, 0.75, 1);
  transition: opacity 0.5s cubic-bezier(0.5, 1, 0.75, 1);
  border-radius: 20px;
  z-index: 999;
}
@media screen and (max-width: 768px) {
  .modalContent {
    top: 50px;
    height: calc(100vh - 200px);
  }
}
.modalContent.active {
  opacity: 1;
  pointer-events: auto;
}
.modalContent .pageTitle {
  margin-bottom: 2.9375rem;
}
.modalContent .modalContent__inner {
  position: relative;
  background-color: #fff;
  z-index: 100;
  width: 95%;
  max-width: 67.5rem;
  max-height: calc(100% - 30px);
  overflow-y: auto;
  border-radius: 20px;
  padding-top: 3.75rem;
  padding-bottom: 4.0625rem;
  padding-left: 5.3333333333%;
  padding-right: 5.3333333333%;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 769px) {
  .modalContent .modalContent__inner {
    padding-top: 3.6875rem;
    padding-bottom: 4rem;
    padding-left: 2.0833333333%;
    padding-right: 2.0833333333%;
  }
}
.modalContent .modalContent__close {
  font-family: "Material Icons";
  font-size: 40px;
  font-size: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  cursor: pointer;
  position: absolute;
  z-index: 101;
}
@media screen and (max-width: 768px) {
  .modalContent .modalContent__close {
    top: 8px;
    right: 8px;
  }
}
@media print, screen and (min-width: 769px) {
  .modalContent .modalContent__close {
    top: 24px;
    right: 24px;
  }
}
.modalContent .modalContent__close span {
  margin-top: -0.15em;
}
@media screen and (max-width: 768px) {
  .modalContent .modalContent__close span {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    margin-top: -0.1em;
  }
}
.modalContent .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 99;
}

.lum-lightbox {
  z-index: 1000;
}

.lum-lightbox-inner img {
  max-width: 100%;
}

.p-top {
  /* よくあるご質問 */
}
.p-top .sec {
  padding-top: 10vw;
  padding-bottom: 10vw;
}
@media print, screen and (min-width: 769px) {
  .p-top .sec {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.p-top .sec .sec__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-top .sec .sec__title {
    font-size: min(6.8571428571vw, 3rem);
    line-height: 1.4583333333;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .sec .sec__title {
    font-size: 42px;
    font-size: 2.625rem;
  }
}
.p-top .sec .sec__title.white {
  color: #fff;
}
.p-top .sec .sec__title.white:before, .p-top .sec .sec__title.white:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18'%3E%3Cg fill='%23fff' transform='translate(-513 -889)'%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(513 889)'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(513 901)'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(525 889)'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(525 901)'/%3E%3C/g%3E%3C/svg%3E");
}
.p-top .sec .sec__title:before, .p-top .sec .sec__title:after {
  content: "";
  display: block;
  width: 0.4285714286em;
  height: 0.4285714286em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18'%3E%3Cg fill='%23000064' transform='translate(-513 -889)'%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(513 889)'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(513 901)'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(525 889)'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(525 901)'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 0.5952380952em;
}
.p-top .sec .sec__title:before {
  margin-right: 0.6666666667em;
}
.p-top .sec .sec__title:after {
  margin-left: 0.6666666667em;
}
.p-top .sec .sec__title .en {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  display: block;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-top .sec .sec__title .en {
    font-size: 0.5em;
    line-height: 1.4583333333em;
    margin-top: 0.4166666667em;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .sec .sec__title .en {
    font-size: 0.3095238095em;
    line-height: 2.8461538462em;
  }
}
.p-top .sec .sec__subtitle {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  background: transparent;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, transparent), color-stop(50%, #FDD23E), to(#FDD23E));
  background: linear-gradient(to bottom, transparent 50%, transparent 50%, #FDD23E 50%, #FDD23E 100%);
}
@media screen and (max-width: 768px) {
  .p-top .sec .sec__subtitle {
    line-height: 1.7777777778;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .sec .sec__subtitle {
    font-size: 24px;
    font-size: 1.5rem;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(70%, transparent), color-stop(70%, #FDD23E), to(#FDD23E));
    background: linear-gradient(to bottom, transparent 50%, transparent 70%, #FDD23E 70%, #FDD23E 100%);
  }
}
.p-top .mv {
  position: relative;
  width: 100%;
}
.p-top .mv .mv-slider {
  position: relative;
}
.p-top .mv .mv-slider img {
  width: 100%;
}
.p-top .mv .mv-slider .content-width {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-top .mv .mv__badge {
  position: fixed;
  z-index: 999;
}
@media screen and (max-width: 768px) {
  .p-top .mv .mv__badge {
    bottom: 0;
    right: 1.8571428571vw;
    width: 35.7142857143%;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .mv .mv__badge {
    bottom: 9px;
    right: 7px;
    width: 15.7407407407%;
  }
}
@media print, screen and (min-width: 1080px) {
  .p-top .mv .mv__badge {
    width: 170px;
  }
}
@media screen and (max-width: 768px) {
  .p-top .mv .mv__badge.sp-fade {
    display: none;
  }
}
.p-top .mv .mv__badge img {
  width: 100%;
}
.p-top .mv .swiper-pagination {
  bottom: 18px;
}
@media print, screen and (min-width: 769px) {
  .p-top .price {
    padding-top: 5.625rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top .price .price__list {
    margin-top: 6.3333333333%;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .price .price__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 10px;
  }
}
.p-top .price .price__body {
  text-align: center;
}
.p-top .price .price__item {
  position: relative;
  text-align: center;
  position: relative;
  background-color: #FFE100;
  -webkit-box-shadow: 5px 5px 0 #000064;
          box-shadow: 5px 5px 0 #000064;
}
@media screen and (max-width: 768px) {
  .p-top .price .price__item {
    font-size: min(4.2666666667vw, 2rem);
    border-radius: 2.6666666667vw;
    padding: 3.6666666667% 0 1.5%;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .price .price__item {
    font-size: min(1.40625vw, 1.125rem);
    border-radius: 10px;
  }
}
.p-top .price .price__item:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 54%;
  border-radius: 0 0 10px 10px;
  background-color: #FFE100;
  mix-blend-mode: multiply;
  opacity: 0.3;
}
@media print, screen and (min-width: 769px) {
  .p-top .price .price__item {
    width: 32%;
  }
}
@media screen and (max-width: 768px) {
  .p-top .price .price__item + .price__item {
    margin-top: 5%;
  }
}
.p-top .price .price__item .price__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
}
@media print, screen and (min-width: 769px) {
  .p-top .price .price__item .price__name {
    margin-top: 0.5555555556em;
  }
}
.p-top .price .price__item .price__name .text1 {
  font-size: 1em;
}
@media screen and (max-width: 768px) {
  .p-top .price .price__item .price__name .text1 {
    margin-right: 0.46875em;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .price .price__item .price__name .text1 {
    margin-right: 0.5555555556em;
  }
}
@media screen and (max-width: 768px) {
  .p-top .price .price__item .price__name .text2 {
    font-size: 1.3125em;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .price .price__item .price__name .text2 {
    font-size: 1.4444444444em;
  }
}
.p-top .price .price__item .price__value {
  padding-bottom: 0.7222222222em;
  margin-top: 0.8333333333em;
  margin-left: auto;
  margin-right: auto;
}
.p-top .price .price__item .price__value.value1 {
  width: 84%;
}
.p-top .price .price__item .price__value.value2 {
  width: 84%;
}
.p-top .price .price__item .price__value.value3 {
  width: 41%;
}
.p-top .price .price__item .price__value img {
  width: 100%;
}
.p-top .price .price__caution {
  font-weight: 700;
  letter-spacing: 0.025em;
  color: #000;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .p-top .price .price__caution {
    font-size: min(3.2vw, 1.5rem);
    margin-top: 0.8333333333em;
    margin-right: 1.6666666667em;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .price .price__caution {
    font-size: 14px;
    font-size: 0.875rem;
    /*margin-right: 0.7142857143em;*/
    width: fit-content;
    margin: 1.4285714286em auto 0;
  }
}
@media screen and (max-width: 768px) {
  .p-top .price .price__caution img {
    width: 1.9166666667em;
    height: 1.75em;
  }
}
/*@media print, screen and (min-width: 769px) {
  .p-top .price .price__caution img {
    margin-top: 1.4285714286em;
  }
}*/
.p-top .price .price__text {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 768px) {
  .p-top .price .price__text {
    font-size: min(5.1428571429vw, 2.25rem);
    margin-top: 12.1666666667%;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .price .price__text {
    font-size: 24px;
    font-size: 1.5rem;
    margin-top: 1.25rem;
  }
}
.p-top .price .price__text .em {
  font-size: 1.3333333333em;
  color: #FF277A;
}
.p-top .choose {
  padding-bottom: 2.375rem;
}
@media screen and (max-width: 768px) {
  .p-top .choose {
    padding-top: 7.1428571429%;
  }
}
.p-top .choose .choose__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-top .choose .choose__list {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    row-gap: 14.2857142857vw;
    margin-top: 6.3333333333%;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .choose .choose__list {
    margin-top: 1.875rem;
  }
}
.p-top .choose .choose__list .choose__item {
  position: relative;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-top .choose .choose__list .choose__item {
    width: 43%;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .choose .choose__list .choose__item {
    width: 25%;
    padding: 0 1%;
  }
}
@media screen and (max-width: 768px) {
  .p-top .choose .choose__list .choose__item:nth-child(odd):before {
    content: "";
    position: absolute;
    top: 0;
    right: -16.5384615385%;
    width: 1px;
    height: 93%;
    background-color: #000064;
  }
}
@media screen and (max-width: 768px) {
  .p-top .choose .choose__list .choose__item:nth-child(-n+2):after {
    content: "";
    position: absolute;
    bottom: -7.1666666667%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #000064;
  }
}
@media screen and (max-width: 768px) {
  .p-top .choose .choose__list .choose__image {
    width: 93%;
    margin: auto;
  }
}
@media screen and (max-width: 768px) {
  .p-top .choose .choose__list .choose__image img {
    width: 100%;
  }
}
.p-top .choose .choose__list .choose__title {
  font-size: min(4.5714285714vw, 2rem);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.025em;
  margin-top: 0.95em;
}
@media screen and (max-width: 768px) {
  .p-top .choose .choose__list .choose__title {
    white-space: nowrap;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .choose .choose__list .choose__title {
    font-size: min(1.5625vw, 1.25rem);
  }
}
.p-top .choose .choose__list .choose__text {
  position: relative;
  font-weight: 500;
  line-height: 1.75;
  margin-top: 2em;
}
@media screen and (max-width: 768px) {
  .p-top .choose .choose__list .choose__text {
    font-size: min(3.4285714286vw, 1.5rem);
    white-space: nowrap;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .choose .choose__list .choose__text {
    font-size: min(1.25vw, 1rem);
    line-height: 1.75;
  }
}
.p-top .choose .choose__list .choose__text:before {
  content: "";
  position: absolute;
  top: -0.875em;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #000064;
  width: 1.875em;
  height: 1px;
}
.p-top .strength {
  position: relative;
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .p-top .strength {
    margin-top: 4vw;
  }
}
.p-top .strength .strength__title {
  position: relative;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 0;
}
@media screen and (max-width: 768px) {
  .p-top .strength .strength__title {
    background-image: url(../images/strength_title_bg_sp.svg);
    padding-top: 61.7142857143%;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .strength .strength__title {
    background-image: url(../images/strength_title_bg.svg);
    padding-top: 27.34375%;
  }
}
.p-top .strength .strength__title .sec__title {
  color: #fff;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-top .strength .strength__title .sec__title {
    top: 45.5%;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .strength .strength__title .sec__title {
    top: 54%;
  }
}
.p-top .strength .strength__title .sec__title:before, .p-top .strength .strength__title .sec__title:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18'%3E%3Cg fill='%23fff' transform='translate(-513 -889)'%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(513 889)'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(513 901)'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(525 889)'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(525 901)'/%3E%3C/g%3E%3C/svg%3E");
}
.p-top .strength .strength__list {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top .strength .strength__list {
    margin-top: -8.5714285714%;
  }
}
@media print, screen and (min-width: 1281px) {
  .p-top .strength .strength__list {
    margin-top: -40px;
  }
}
.p-top .strength .strength__item {
  position: relative;
}
@media print, screen and (min-width: 769px) {
  .p-top .strength .strength__item .strength__item__inner {
    display: grid;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    width: 100%;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-top .strength .strength__item.item1 .strength__item__inner, .p-top .strength .strength__item.item3 .strength__item__inner {
  grid-template-columns: 50% 51%;
}
.p-top .strength .strength__item.item1 .strength__item__header, .p-top .strength .strength__item.item3 .strength__item__header {
  grid-area: 1/1/2/2;
}
.p-top .strength .strength__item.item1 .strength__item__image, .p-top .strength .strength__item.item3 .strength__item__image {
  grid-area: 1/2/3/3;
}
.p-top .strength .strength__item.item1 .strength__item__body, .p-top .strength .strength__item.item3 .strength__item__body {
  grid-area: 2/1/3/2;
}
.p-top .strength .strength__item.item2 .strength__item__header, .p-top .strength .strength__item.item4 .strength__item__header {
  grid-area: 1/2/2/3;
}
.p-top .strength .strength__item.item2 .strength__item__image, .p-top .strength .strength__item.item4 .strength__item__image {
  grid-area: 1/1/3/2;
}
.p-top .strength .strength__item.item2 .strength__item__body, .p-top .strength .strength__item.item4 .strength__item__body {
  grid-area: 2/2/3/3;
}
.p-top .strength .strength__item.item2 .strength__item__image .caption, .p-top .strength .strength__item.item4 .strength__item__image .caption {
  top: 368px;
  right: -58px;
}
@media screen and (max-width: 768px) {
  .p-top .strength .strength__item.item1 .strength__item__image .caption {
    top: 78.5123966942%;
    right: 4.4285714286%;
    width: 57.7142857143%;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .strength .strength__item.item1 .strength__item__image .caption {
    top: 89%;
    left: -5%;
    width: 48%;
  }
}
@media screen and (max-width: 768px) {
  .p-top .strength .strength__item.item1 .strength__item__text {
    line-height: 1.8461538462;
  }
}
.p-top .strength .strength__item.item2 .strength__item__inner {
  grid-template-columns: 52% 48%;
}
.p-top .strength .strength__item.item2:before {
  content: "";
  position: absolute;
  top: 30vw;
  left: 0;
  width: 100%;
  background-color: #000564;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-top .strength .strength__item.item2:before {
    height: 100%;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .strength .strength__item.item2:before {
    top: min(15.078125vw, 12.0625rem);
    height: 93.5%;
  }
}
@media screen and (max-width: 768px) {
  .p-top .strength .strength__item.item2 .strength__item__image .caption {
    top: 78.5123966942%;
    right: 4.4285714286%;
    width: 57.7142857143%;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .strength .strength__item.item2 .strength__item__image .caption {
    top: 81%;
    right: -5%;
    width: 46%;
  }
}
@media screen and (max-width: 768px) {
  .p-top .strength .strength__item.item3 {
    padding-top: min(22.8571428571vw, 10rem);
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .strength .strength__item.item3 {
    padding-top: min(8.203125vw, 6.5625rem) !important;
  }
}
@media screen and (max-width: 768px) {
  .p-top .strength .strength__item.item3 .strength__item__image {
    padding-top: 69.2857142857%;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .strength .strength__item.item3 .strength__item__image {
    padding-top: 74.1085271318%;
  }
}
@media screen and (max-width: 768px) {
  .p-top .strength .strength__item.item3 .strength__item__image .caption {
    top: 78.3505154639%;
    right: 4.2857142857%;
    width: 48.5714285714%;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .strength .strength__item.item3 .strength__item__image .caption {
    top: 86%;
    left: -7%;
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  .p-top .strength .strength__item.item4 {
    padding-top: 21.4285714286%;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .strength .strength__item.item4 {
    padding-top: min(7.578125vw, 6.0625rem) !important;
  }
}
.p-top .strength .strength__item.item4 .strength__item__inner {
  grid-template-columns: 51% 49%;
}
.p-top .strength .strength__item.item4:before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  z-index: -1;
  background-image: url(../images/strength_footer_bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
}
@media screen and (max-width: 768px) {
  .p-top .strength .strength__item.item4:before {
    height: 101%;
    top: 29.2857142857vw;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .strength .strength__item.item4:before {
    height: 103.5%;
    top: min(10.9375vw, 8.75rem);
  }
}
@media screen and (max-width: 768px) {
  .p-top .strength .strength__item.item4 .strength__item__image .caption {
    top: 76.0824742268%;
    right: 5.1428571429%;
    width: 62.1428571429%;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .strength .strength__item.item4 .strength__item__image .caption {
    top: 88%;
    right: -11%;
    width: 52%;
  }
}
@media screen and (max-width: 768px) {
  .p-top .strength .strength__item + .strength__item {
    padding-top: 22.8571428571%;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .strength .strength__item + .strength__item {
    padding-top: min(11.5625vw, 9.25rem);
  }
}
.p-top .strength .strength__item__num {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 50vw;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .p-top .strength .strength__item__num {
    font-size: min(8vw, 3rem);
    width: min(20vw, 120px);
    height: min(20vw, 120px);
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .strength .strength__item__num {
    font-size: 32px;
    font-size: 2rem;
    width: 85px;
    height: 85px;
  }
}
.p-top .strength .strength__item__num.color-white:before {
  color: #fff;
}
.p-top .strength .strength__item__num.color-white:after {
  background-color: #000064;
}
.p-top .strength .strength__item__num:before {
  content: "POINT";
  color: #000064;
  position: absolute;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .p-top .strength .strength__item__num:before {
    font-size: min(3.3333333333vw, 1.25rem);
    top: -2em;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .strength .strength__item__num:before {
    font-size: 12px;
    font-size: 0.75rem;
    top: -20px;
  }
}
.p-top .strength .strength__item__num:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1px;
  height: 30px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .p-top .strength .strength__item__num:after {
    height: 0.8333333333em;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .strength .strength__item__num:after {
    height: 30px;
  }
}
.p-top .strength .strength__item__image {
  position: relative;
  height: 0;
  padding-top: 69.2307692308%;
}
@media screen and (max-width: 768px) {
  .p-top .strength .strength__item__image {
    margin-top: 8.2857142857%;
  }
}
.p-top .strength .strength__item__image > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-top .strength .strength__item__image .caption {
  position: absolute;
}
.p-top .strength .strength__item__image .caption img {
  width: 100%;
}
.p-top .strength .strength__item__title {
  font-weight: 900;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-top .strength .strength__item__title {
    font-size: min(6vw, 2.625rem);
    letter-spacing: 0.05em;
    margin-top: 1.7142857143em;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .strength .strength__item__title {
    font-size: min(2.1875vw, 1.75rem);
    margin-top: 3.75rem;
  }
}
.p-top .strength .strength__item__title.color-white {
  color: #fff;
}
.p-top .strength .strength__item__body {
  margin-top: 2.8125rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .p-top .strength .strength__item__body {
    width: 86%;
    margin-top: 10.5714285714%;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .strength .strength__item__body {
    width: 67%;
    margin-top: 2.8125rem;
  }
}
.p-top .strength .strength__item__text {
  font-weight: 500;
  color: #000;
}
@media screen and (max-width: 768px) {
  .p-top .strength .strength__item__text {
    font-size: min(3.7142857143vw, 1.625rem);
    line-height: 1.6538461538;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .strength .strength__item__text {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.75;
  }
}
.p-top .strength .strength__item__text.color-white {
  color: #fff;
}
.p-top .strength .strength__item__text em {
  color: #FF277A;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-top .strength .strength__item__text .indent {
    display: inline-block;
    text-indent: -1em;
    margin-left: 1em;
  }
}
.p-top .strength .strength__item__note {
  margin-top: 7px;
}
@media screen and (max-width: 768px) {
  .p-top .strength .strength__item__note {
    font-size: min(3.4285714286vw, 1.5rem);
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .strength .strength__item__note {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.p-top .campaign {
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  .p-top .campaign {
    margin-top: 44.4285714286vw;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .campaign {
    margin-top: 18.875rem;
  }
}
.p-top .campaign .campaign--bg {
  position: relative;
}
.p-top .campaign .campaign--bg:before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #EDF1F5;
  border-radius: 15px;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: left 10px top 10px, right 10px top 10px;
}
@media screen and (max-width: 768px) {
  .p-top .campaign .campaign--bg:before {
    top: calc( 40px + ((1vw - 3.2px) * 15.7894736842 ) );
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18'%3E%3Cg fill='%23000064' transform='translate(-513 -889)'%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(513 889)'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(513 901)'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(525 889)'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(525 901)'/%3E%3C/g%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18'%3E%3Cg fill='%23000064' transform='translate(-513 -889)'%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(513 889)'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(513 901)'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(525 889)'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(525 901)'/%3E%3C/g%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18'%3E%3Cg fill='%23000064' transform='translate(-513 -889)'%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(513 889)'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(513 901)'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(525 889)'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(525 901)'/%3E%3C/g%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18'%3E%3Cg fill='%23000064' transform='translate(-513 -889)'%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(513 889)'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(513 901)'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(525 889)'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(525 901)'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 3% auto;
    background-position: left 1.6667% top 1.6667%, right 1.6667% top 1.6667%, left 1.6667% bottom 1.6667%, right 1.6667% bottom 1.6667%;
    width: 90%;
    height: 94.6666666667%;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .campaign .campaign--bg:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18'%3E%3Cg fill='%23000064' transform='translate(-513 -889)'%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(513 889)'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(513 901)'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(525 889)'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(525 901)'/%3E%3C/g%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18'%3E%3Cg fill='%23000064' transform='translate(-513 -889)'%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(513 889)'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(513 901)'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(525 889)'/%3E%3Ccircle cx='3' cy='3' r='3' transform='translate(525 901)'/%3E%3C/g%3E%3C/svg%3E");
    background-position: left 10px top 10px, right 10px top 10px;
    width: 76.6666666667%;
    height: calc(100% - 15px);
    top: 30px;
    left: 50.6481481481%;
  }
}
.p-top .campaign .campaign__title {
  position: relative;
  font-weight: 700;
  display: inline-block;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-top .campaign .campaign__title {
    font-size: min(6vw, 2.625rem);
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .campaign .campaign__title {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.p-top .campaign .campaign__title .fukidashi {
  position: absolute;
}
@media screen and (max-width: 768px) {
  .p-top .campaign .campaign__title .fukidashi {
    top: -10.7142857143vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .campaign .campaign__title .fukidashi {
    top: -0.7222222222em;
    left: -3.2222222222em;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .campaign .campaign__title .ja {
    padding-left: 1.5277777778em;
  }
}
.p-top .campaign .campaign__title .en {
  display: block;
}
@media screen and (max-width: 768px) {
  .p-top .campaign .campaign__title .en {
    font-size: min(8.5714285714vw, 3.75rem);
    width: 8em;
    margin-top: -0.25em;
    margin-left: auto;
    margin-right: auto;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .campaign .campaign__title .en {
    padding-left: 0.3888888889em;
    margin-top: 0.3611111111em;
  }
}
.p-top .campaign .campaign__banner {
  position: relative;
  margin-top: -5px;
}
@media screen and (max-width: 768px) {
  .p-top .campaign .campaign__banner {
    width: 100vw;
    margin-top: -0.7142857143%;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .campaign .campaign__banner {
    margin-top: -5px;
  }
}
.p-top .campaign .campaign__banner .campaign-button-prev, .p-top .campaign .campaign__banner .campaign-button-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .p-top .campaign .campaign__banner .campaign-button-prev, .p-top .campaign .campaign__banner .campaign-button-next {
    width: 8.5714285714vw;
    height: 8.5714285714vw;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .campaign .campaign__banner .campaign-button-prev, .p-top .campaign .campaign__banner .campaign-button-next {
    width: 40px;
    height: 40px;
  }
}
.p-top .campaign .campaign__banner .campaign-button-prev {
  background-image: url(../images/gallery_arrow-l.svg);
  /*left: -4.2857142857vw;*/
	left: 0;
}
@media print, screen and (min-width: 769px) {
  .p-top .campaign .campaign__banner .campaign-button-prev {
    left: -9.6774193548%;
  }
}
.p-top .campaign .campaign__banner .campaign-button-next {
  background-image: url(../images/gallery_arrow-r.svg);
  /*right: -4.2857142857vw;*/
	right: 0;
}
@media print, screen and (min-width: 769px) {
  .p-top .campaign .campaign__banner .campaign-button-next {
    right: -9.6774193548%;
  }
}
.p-top .campaign .campaign__banner .campaign-pagination {
  text-align: center;
}
.p-top .campaign .campaign__banner .campaign-pagination .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: 8px;
}
@media screen and (max-width: 768px) {
  .p-top .campaign .search-btn {
    margin-top: 15.8333333333%;
  }
}
.p-top .gallery {
  position: relative;
  padding-bottom: 4.5625rem;
}
@media screen and (max-width: 768px) {
  .p-top .gallery {
    padding-top: 8.2857142857%;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .gallery {
    padding-top: 5.4375rem;
  }
}
.p-top .gallery:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 63.6%;
  background-color: #000064;
  -webkit-clip-path: polygon(0 46%, 100% 30%, 100% 100%, 0% 100%);
          clip-path: polygon(0 46%, 100% 30%, 100% 100%, 0% 100%);
  z-index: 0;
}
.p-top .gallery .gallery__slider {
  position: relative;
  margin-top: -2px;
}
@media print, screen and (min-width: 769px) {
  .p-top .gallery .gallery__slider {
    width: 83.3333333333%;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-top .gallery .gallery__slider .swiper-slide {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 55.5%;
  background-color: #000;
}
.p-top .gallery .gallery__slider .swiper-slide img {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-top .gallery .swiper-button-prev, .p-top .gallery .swiper-button-next {
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .p-top .gallery .swiper-button-prev, .p-top .gallery .swiper-button-next {
    width: 8.5714285714vw;
    height: 8.5714285714vw;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .gallery .swiper-button-prev, .p-top .gallery .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}
.p-top .gallery .swiper-button-prev {
  background-image: url(../images/gallery_arrow-l.svg);
  /*left: -4.2857142857vw;*/
	left: 0;
}
@media print, screen and (min-width: 769px) {
  .p-top .gallery .swiper-button-prev {
    left: -9.6774193548%;
  }
}
.p-top .gallery .swiper-button-next {
  background-image: url(../images/gallery_arrow-r.svg);
  /*right: -4.2857142857vw;*/
	right: 0;
}
@media print, screen and (min-width: 769px) {
  .p-top .gallery .swiper-button-next {
    right: -9.6774193548%;
  }
}
.p-top .gallery .swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-top .gallery .swiper-pagination {
    bottom: -7.1428571429%;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .gallery .swiper-pagination {
    bottom: -20px;
  }
}
.p-top .gallery .swiper-pagination .swiper-pagination-bullet {
  width: 75px;
  height: 5px;
  background-color: #fff;
  border-radius: 50vw;
  opacity: 1;
}
.p-top .gallery .swiper-pagination .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: 8px;
}
.p-top .gallery .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 0.2;
}
.p-top .voice {
  font-size: 16px;
  font-size: 1rem;
  color: #fff;
  background-color: #000064;
  padding-bottom: 5.625rem;
}
@media screen and (max-width: 768px) {
  .p-top .voice {
    padding-top: 15.7142857143vw;
    padding-bottom: 11.4285714286vw;
  }
}
.p-top .voice .voice__list {
  margin-top: 2.5rem;
}
@media print, screen and (min-width: 769px) {
  .p-top .voice .voice__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 3.125em;
  }
}
.p-top .voice .voice__list .voice__item {
  position: relative;
}
@media print, screen and (min-width: 769px) {
  .p-top .voice .voice__list .voice__item {
    width: 41.6666666667%;
    max-width: 28.125rem;
    padding-bottom: 4.3518518519%;
  }
}
@media screen and (max-width: 768px) {
  .p-top .voice .voice__list .voice__item + .voice__item {
    margin-top: 15.8333333333%;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .voice .voice__list .voice__item:nth-child(-n+2):before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    background-color: #fff;
  }
  .p-top .voice .voice__list .voice__item:nth-child(odd):after {
    content: "";
    position: absolute;
    top: 0;
    left: 120%;
    width: 1px;
    height: 87%;
    background-color: #fff;
  }
}
@media screen and (max-width: 768px) {
  .p-top .voice .voice__list .voice__item__image {
    width: 30.1666666667%;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .voice .voice__list .voice__item__image {
    width: 30.2222222222%;
  }
}
.p-top .voice .voice__list .voice__item__image img {
  width: 100%;
}
.p-top .voice .voice__list .voice__item__header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-size: 1rem;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .p-top .voice .voice__list .voice__item__header {
    -webkit-column-gap: 6.6666666667%;
       -moz-column-gap: 6.6666666667%;
            column-gap: 6.6666666667%;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .voice .voice__list .voice__item__header {
    -webkit-column-gap: 6.2222222222%;
       -moz-column-gap: 6.2222222222%;
            column-gap: 6.2222222222%;
  }
}
.p-top .voice .voice__list .voice__item__header:before {
  content: "";
  position: absolute;
  right: 0.5em;
  display: block;
  height: 1px;
  background-color: #FFE100;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-top .voice .voice__list .voice__item__header:before {
    font-size: min(2.2857142857vw, 1rem);
    width: 100%;
    bottom: -1.875em;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .voice .voice__list .voice__item__header:before {
    width: 90%;
    bottom: 0.625em;
  }
}
@media screen and (max-width: 768px) {
  .p-top .voice .voice__list .voice__item__header .header__content {
    width: 62%;
  }
}
.p-top .voice .voice__list .voice__item__title {
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-top .voice .voice__list .voice__item__title {
    font-size: min(4vw, 1.75rem);
    white-space: nowrap;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .voice .voice__list .voice__item__title {
    font-size: min(1.8518518519vw, 1.25rem);
    white-space: nowrap;
  }
}
.p-top .voice .voice__list .voice__item__status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0.625em;
}
@media screen and (max-width: 768px) {
  .p-top .voice .voice__list .voice__item__status {
    font-size: min(4vw, 1.75rem);
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .voice .voice__list .voice__item__status {
    font-size: min(1.4814814815vw, 1rem);
  }
}
.p-top .voice .voice__list .voice__item__status .age {
  font-size: 1em;
}
@media print, screen and (min-width: 769px) {
  .p-top .voice .voice__list .voice__item__status .age span {
    font-size: 0.8em;
  }
}
.p-top .voice .voice__list .voice__item__status .gender {
  border-left: 1px solid #fff;
  padding-left: 0.5em;
  margin-left: 0.625em;
}
@media screen and (max-width: 768px) {
  .p-top .voice .voice__list .voice__item__status .gender {
    font-size: 0.8571428571em;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .voice .voice__list .voice__item__status .gender {
    font-size: 1em;
  }
}
@media screen and (max-width: 768px) {
  .p-top .voice .voice__list .voice__item__text {
    font-size: min(3.7142857143vw, 1.625rem);
    line-height: 1.8461538462;
    margin-top: 11%;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .voice .voice__list .voice__item__text {
    font-size: calc( 14px + ((1vw - 7.69px) * 0.3913894325 ) );
    line-height: 1.75;
    margin-top: 2.5em;
  }
}
@media print, screen and (min-width: 1280px) {
  .p-top .voice .voice__list .voice__item__text {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top .voice .search-btn {
    margin-top: 9.1666666667%;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .voice .search-btn {
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .p-top .admission {
    padding-top: 11.4285714286%;
    padding-bottom: 0;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .admission {
    padding-top: 5.625rem;
  }
}
.p-top .admission .admission__content {
  border: 1px solid #000064;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .p-top .admission .admission__content {
    margin-top: 13%;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .admission .admission__content {
    margin-top: 3.4375rem;
  }
}
.p-top .admission .admission__title {
  font-weight: bold;
  text-align: center;
  background-color: #fff;

  margin-top: -0.7916666667em;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .p-top .admission .admission__title {
    font-size: min(4.5714285714vw, 2rem);
    width: 10em;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .admission .admission__title {
    font-size: 24px;
    font-size: 1.5rem;
    width: 10.4166666667em;
  }
}
@media screen and (max-width: 768px) {
  .p-top .admission .admission__list {
    padding: 5.016722408% 0 7.3578595318%;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .admission .admission__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    padding: 3.9888682746% 0 5.5658627087%;
  }
}
.p-top .admission .admission__item {
  position: relative;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-top .admission .admission__item {
    margin-left: 6.6889632107%;
    margin-right: 6.6889632107%;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .admission .admission__item:nth-child(1):after, .p-top .admission .admission__item:nth-child(3):after {
    content: "";
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #000064;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .admission .admission__item:nth-child(1) {
    width: 30.7050092764%;
  }
}
.p-top .admission .admission__item:nth-child(1):after {
  right: 0;
}
@media screen and (max-width: 768px) {
  .p-top .admission .admission__item:nth-child(1) .admission__image {
    width: 41%;
    padding: 6% 0%;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .admission .admission__item:nth-child(1) .admission__image {
    width: 47%;
    padding: 15.5% 0%;
  }
}
@media screen and (max-width: 768px) {
  .p-top .admission .admission__item:nth-child(1) .admission__text {
    margin-top: 0.5em;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .admission .admission__item:nth-child(1) .admission__text {
    margin-top: 6px;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .admission .admission__item:nth-child(2) {
    width: 37.9406307978%;
  }
}
@media screen and (max-width: 768px) {
  .p-top .admission .admission__item:nth-child(2) .admission__image {
    width: 80.5%;
    padding: 6.5% 0 6.7%;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .admission .admission__item:nth-child(2) .admission__image {
    width: 62%;
    padding: 7.5% 0 9%;
  }
}
@media screen and (max-width: 768px) {
  .p-top .admission .admission__item:nth-child(2) .admission__text {
    white-space: nowrap;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .admission .admission__item:nth-child(3) {
    width: 31.3543599258%;
  }
}
.p-top .admission .admission__item:nth-child(3):after {
  left: 0;
}
@media screen and (max-width: 768px) {
  .p-top .admission .admission__item:nth-child(3) .admission__image {
    width: 73%;
    padding: 7% 0 2%;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .admission .admission__item:nth-child(3) .admission__image {
    width: 65%;
    padding: 9% 0;
  }
}
@media screen and (max-width: 768px) {
  .p-top .admission .admission__item + .admission__item {
    border-top: 1px solid #000064;
    padding-top: 6.6889632107%;
    margin-top: 7.525083612%;
  }
}
.p-top .admission .admission__item .admission__item__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-top .admission .admission__item .admission__item__title {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    font-size: min(4vw, 1.75rem);
    padding-left: 0.3571428571em;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .admission .admission__item .admission__item__title {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.p-top .admission .admission__item .admission__item__title .num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #fff;
  background-color: #000064;
  border-radius: 50vw;
  margin-right: 0.625em;
}
@media screen and (max-width: 768px) {
  .p-top .admission .admission__item .admission__item__title .num {
    font-size: 1.5em;
    width: 2.380952381em;
    height: 2.380952381em;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .admission .admission__item .admission__item__title .num {
    font-size: 1.3333333333em;
    width: 2.25em;
    height: 2.25em;
  }
}
.p-top .admission .admission__item .admission__text {
  color: #000;
}
@media screen and (max-width: 768px) {
  .p-top .admission .admission__item .admission__text {
    font-size: min(3.7142857143vw, 1.625rem);
    line-height: 1.8461538462;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .admission .admission__item .admission__text {
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-top .admission .admission__item .admission__text .admission__text--caution {
  font-size: 0.75em;
  margin-top: 6px;
}
@media screen and (max-width: 768px) {
  .p-top .admission .admission__item .admission__text .admission__text--caution {
    font-size: 0.9230769231em;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .admission .admission__item .admission__text .admission__text--caution {
    font-size: 0.75em;
  }
}
.p-top .admission .admission__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .p-top .admission .admission__image img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-top .admission .admission__flow {
    margin-top: 11.4285714286vw;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .admission .admission__flow {
    margin-top: min(5.078125vw, 80rem);
  }
}
.p-top .admission .admission__flow .icon-shop, .p-top .admission .admission__flow .icon-web {
  position: relative;
}
.p-top .admission .admission__flow .icon-shop:before, .p-top .admission .admission__flow .icon-web:before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-repeat: no-repeat;
  display: block;
}
.p-top .admission .admission__flow .icon-shop:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='69.696' height='51'%3E%3Cpath fill='%23cc0a55' d='M0 0v20.309h3V51h63.7V20.309h3V0Zm39.392 47.893V29.918h7.459v17.974Zm10.516 0V29.918h7.459v17.974Zm13.736.051h-3.22V26.862H36.335v21.082H6.053V20.309h57.591Zm3-42.1H27.145v8.618h39.494v2.787H3.057V14.46h9.171V5.849H3.057V3.06h63.582Z'/%3E%3C/svg%3E");
}
.p-top .admission .admission__flow .icon-shop .white:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='69.696' height='51'%3E%3Cpath fill='%23fff' d='M0 0v20.309h3V51h63.7V20.309h3V0Zm39.392 47.893V29.918h7.459v17.974Zm10.516 0V29.918h7.459v17.974Zm13.736.051h-3.22V26.862H36.335v21.082H6.053V20.309h57.591Zm3-42.1H27.145v8.618h39.494v2.787H3.057V14.46h9.171V5.849H3.057V3.06h63.582Z'/%3E%3C/svg%3E");
}
.p-top .admission .admission__flow .icon-web:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='47.715' height='72.09'%3E%3Cpath fill='%23000064' d='M13.735 5.812a7.932 7.932 0 0 0-7.923 7.924h2.693a5.236 5.236 0 0 1 5.23-5.23Z' data-name='パス 103'/%3E%3Cpath fill='%23000064' d='M13.735 2.693V0A13.751 13.751 0 0 0 0 13.735h2.693A11.054 11.054 0 0 1 13.735 2.693Z' data-name='パス 104'/%3E%3Cpath fill='%23000064' d='M42.069 11.669H17.347a5.652 5.652 0 0 0-5.646 5.646v49.129a5.652 5.652 0 0 0 5.646 5.646h24.722a5.652 5.652 0 0 0 5.646-5.646V17.319a5.652 5.652 0 0 0-5.646-5.65Zm2.306 54.775a2.308 2.308 0 0 1-2.306 2.306H17.347a2.308 2.308 0 0 1-2.306-2.306V17.319a2.308 2.308 0 0 1 2.306-2.306h4.87v.491a2.093 2.093 0 0 0 2.093 2.093h10.8a2.093 2.093 0 0 0 2.093-2.093v-.491h4.87a2.308 2.308 0 0 1 2.306 2.306Z' data-name='パス 105'/%3E%3C/svg%3E");
}
.p-top .admission .admission__flow .icon-web .white:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='47.715' height='72.09'%3E%3Cpath fill='%23fff' d='M13.735 5.812a7.932 7.932 0 0 0-7.923 7.924h2.693a5.236 5.236 0 0 1 5.23-5.23Z' data-name='パス 103'/%3E%3Cpath fill='%23fff' d='M13.735 2.693V0A13.751 13.751 0 0 0 0 13.735h2.693A11.054 11.054 0 0 1 13.735 2.693Z' data-name='パス 104'/%3E%3Cpath fill='%23fff' d='M42.069 11.669H17.347a5.652 5.652 0 0 0-5.646 5.646v49.129a5.652 5.652 0 0 0 5.646 5.646h24.722a5.652 5.652 0 0 0 5.646-5.646V17.319a5.652 5.652 0 0 0-5.646-5.65Zm2.306 54.775a2.308 2.308 0 0 1-2.306 2.306H17.347a2.308 2.308 0 0 1-2.306-2.306V17.319a2.308 2.308 0 0 1 2.306-2.306h4.87v.491a2.093 2.093 0 0 0 2.093 2.093h10.8a2.093 2.093 0 0 0 2.093-2.093v-.491h4.87a2.308 2.308 0 0 1 2.306 2.306Z' data-name='パス 105'/%3E%3C/svg%3E");
}
@media screen and (max-width: 768px) {
  .p-top .admission .admission__flow .flow__tab {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .p-top .admission .admission__flow .flow__tab.pattern--shop .item--shop .tab--item__inner, .p-top .admission .admission__flow .flow__tab.pattern--web .item--web .tab--item__inner {
    color: #fff !important;
  }
  .p-top .admission .admission__flow .flow__tab.pattern--shop .item--shop:after, .p-top .admission .admission__flow .flow__tab.pattern--web .item--web:after {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22.828' height='12.828'%3E%3Cg fill='none' stroke='%23fff' stroke-linecap='round' stroke-width='2'%3E%3Cpath d='m1.414 11.414 10-10M21.414 11.414l-10-10'/%3E%3C/g%3E%3C/svg%3E") !important;
  }
  .p-top .admission .admission__flow .flow__tab.pattern--shop .item--shop {
    background-color: #CC0A55;
  }
  .p-top .admission .admission__flow .flow__tab.pattern--web .item--web {
    background-color: #000064;
  }
}
.p-top .admission .admission__flow .flow__tab .tab--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-weight: bold;
  letter-spacing: 0.025em;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .p-top .admission .admission__flow .flow__tab .tab--item {
    font-size: min(4.5714285714vw, 2rem);
    text-align: center;
    background-color: #EAEAEA;
  }
  .p-top .admission .admission__flow .flow__tab .tab--item:after {
    content: "";
    position: absolute;
    bottom: 0.625em;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(180deg);
            transform: translateX(-50%) rotate(180deg);
    display: block;
    width: 100%;
    height: 0;
    padding: 1.4285714286%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22.828' height='12.828'%3E%3Cg fill='none' stroke='%23fff' stroke-linecap='round' stroke-width='2'%3E%3Cpath d='m1.414 11.414 10-10M21.414 11.414l-10-10'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
  }
  .p-top .admission .admission__flow .flow__tab .tab--item.item--shop:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22.828' height='12.828'%3E%3Cg fill='none' stroke='%23CC0A55' stroke-linecap='round' stroke-width='2'%3E%3Cpath d='m1.414 11.414 10-10M21.414 11.414l-10-10'/%3E%3C/g%3E%3C/svg%3E");
  }
  .p-top .admission .admission__flow .flow__tab .tab--item.item--web:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22.828' height='12.828'%3E%3Cg fill='none' stroke='%23000564' stroke-linecap='round' stroke-width='2'%3E%3Cpath d='m1.414 11.414 10-10M21.414 11.414l-10-10'/%3E%3C/g%3E%3C/svg%3E");
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .admission .admission__flow .flow__tab .tab--item {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.p-top .admission .admission__flow .flow__tab .tab--item .tab--item__inner {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top .admission .admission__flow .flow__tab .tab--item .tab--item__inner {
    padding: 4.5714285714vw 0 7.8571428571vw;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .admission .admission__flow .flow__tab .tab--item .tab--item__inner {
    padding: 1.0833333333em 0 0.8333333333em;
    margin-left: 3.75em;
  }
}
.p-top .admission .admission__flow .flow__tab .tab--item .tab--item__inner:before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  display: block;
  width: 80px;
  height: 100%;
}
.p-top .admission .admission__flow .flow__tab .tab--item .tab--item__inner.item--shop {
  color: #CC0A55;
}
@media print, screen and (min-width: 769px) {
  .p-top .admission .admission__flow .flow__tab .tab--item .tab--item__inner.item--shop:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='69.696' height='51'%3E%3Cpath fill='%23cc0a55' d='M0 0v20.309h3V51h63.7V20.309h3V0Zm39.392 47.893V29.918h7.459v17.974Zm10.516 0V29.918h7.459v17.974Zm13.736.051h-3.22V26.862H36.335v21.082H6.053V20.309h57.591Zm3-42.1H27.145v8.618h39.494v2.787H3.057V14.46h9.171V5.849H3.057V3.06h63.582Z'/%3E%3C/svg%3E");
    left: -4.4583333333em;
  }
}
.p-top .admission .admission__flow .flow__tab .tab--item .tab--item__inner.item--web:before {
  background-size: auto;
}
@media print, screen and (min-width: 769px) {
  .p-top .admission .admission__flow .flow__tab .tab--item .tab--item__inner.item--web:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='47.715' height='72.09'%3E%3Cpath fill='%23000064' d='M13.735 5.812a7.932 7.932 0 0 0-7.923 7.924h2.693a5.236 5.236 0 0 1 5.23-5.23Z' data-name='パス 103'/%3E%3Cpath fill='%23000064' d='M13.735 2.693V0A13.751 13.751 0 0 0 0 13.735h2.693A11.054 11.054 0 0 1 13.735 2.693Z' data-name='パス 104'/%3E%3Cpath fill='%23000064' d='M42.069 11.669H17.347a5.652 5.652 0 0 0-5.646 5.646v49.129a5.652 5.652 0 0 0 5.646 5.646h24.722a5.652 5.652 0 0 0 5.646-5.646V17.319a5.652 5.652 0 0 0-5.646-5.65Zm2.306 54.775a2.308 2.308 0 0 1-2.306 2.306H17.347a2.308 2.308 0 0 1-2.306-2.306V17.319a2.308 2.308 0 0 1 2.306-2.306h4.87v.491a2.093 2.093 0 0 0 2.093 2.093h10.8a2.093 2.093 0 0 0 2.093-2.093v-.491h4.87a2.308 2.308 0 0 1 2.306 2.306Z' data-name='パス 105'/%3E%3C/svg%3E");
    left: -3.75em;
  }
}
.p-top .admission .admission__flow .flow__tab .tab--item .sub {
  font-family: "Poppins", sans-serif;
  font-size: 0.5416666667em;
}
@media print, screen and (min-width: 769px) {
  .p-top .admission .admission__flow .flow__tab .tab--item + .tab--item:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background-color: #000064;
  }
}
.p-top .admission .admission__flow .flow__pattern {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 2.1;
  letter-spacing: 0.025em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-top .admission .admission__flow .flow__pattern {
    font-size: min(4vw, 1.75rem);
    line-height: 1.5;
    border-top: 10px solid #000;
    border-bottom: 10px solid #000;
    padding-top: 1.7857142857em;
    padding-bottom: 2.0714285714em;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .p-top .admission .admission__flow .flow__pattern.pattern--shop {
    border-color: #CC0A55;
  }
  .p-top .admission .admission__flow .flow__pattern.pattern--web {
    border-color: #000064;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .admission .admission__flow .flow__pattern .content-width {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 20px;
    font-size: 1.25rem;
    margin-top: 1.5em;
  }
}
.p-top .admission .admission__flow .flow__pattern .pattern--both {
  text-align: center;
  width: 100%;
  border-radius: 10px;
}
@media print, screen and (min-width: 769px) {
  .p-top .admission .admission__flow .flow__pattern .pattern--single {
    width: 46.2%;
  }
}
@media screen and (max-width: 768px) {
  .p-top .admission .admission__flow .flow__pattern .pt1 {
    position: relative;
  }
  .p-top .admission .admission__flow .flow__pattern .pt1:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -1.7857142857em;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background-repeat: no-repeat;
    background-size: contain;
    width: 1.4285714286em;
    height: 0.8214285714em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='27' height='15'%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23000064' transform='translate(12)'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23000064' transform='translate(6)'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23000064' opacity='.7' transform='translate(6 6)'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23000064'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23000064' transform='translate(12 6)'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23000064' transform='translate(12 12)'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23000064' transform='translate(18)'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23000064' transform='translate(18 6)'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23000064' transform='translate(24)'/%3E%3C/svg%3E");
  }
}
.p-top .admission .admission__flow .flow__pattern .tag {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
  padding: 0.7em 0;
}
@media screen and (max-width: 768px) {
  .p-top .admission .admission__flow .flow__pattern .tag {
    margin-top: 2.8928571429em;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .admission .admission__flow .flow__pattern .tag {
    margin-top: 2em;
  }
}
.p-top .admission .admission__flow .flow__pattern .tag:before, .p-top .admission .admission__flow .flow__pattern .tag:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .p-top .admission .admission__flow .flow__pattern .tag:before, .p-top .admission .admission__flow .flow__pattern .tag:after {
    width: 1.4285714286em;
    height: 0.8214285714em;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .admission .admission__flow .flow__pattern .tag:before, .p-top .admission .admission__flow .flow__pattern .tag:after {
    width: 1.35em;
    height: 0.75em;
  }
}
.p-top .admission .admission__flow .flow__pattern .tag.arrow-t:before {
  top: -1.35em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='27' height='15'%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23000064' transform='translate(12)'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23000064' transform='translate(6)'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23000064' opacity='.7' transform='translate(6 6)'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23000064'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23000064' transform='translate(12 6)'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23000064' transform='translate(12 12)'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23000064' transform='translate(18)'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23000064' transform='translate(18 6)'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23000064' transform='translate(24)'/%3E%3C/svg%3E");
}
.p-top .admission .admission__flow .flow__pattern .tag.arrow-t.top-pink:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='27' height='15'%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23CC0A55' transform='translate(12)'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23CC0A55' transform='translate(6)'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23CC0A55' opacity='.7' transform='translate(6 6)'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23CC0A55'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23CC0A55' transform='translate(12 6)'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23CC0A55' transform='translate(12 12)'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23CC0A55' transform='translate(18)'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23CC0A55' transform='translate(18 6)'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23CC0A55' transform='translate(24)'/%3E%3C/svg%3E");
}
.p-top .admission .admission__flow .flow__pattern .tag.arrow-b:after {
  bottom: -1.35em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='27' height='15'%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23000064' transform='translate(12)'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23000064' transform='translate(6)'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23000064' opacity='.7' transform='translate(6 6)'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23000064'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23000064' transform='translate(12 6)'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23000064' transform='translate(12 12)'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23000064' transform='translate(18)'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23000064' transform='translate(18 6)'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23000064' transform='translate(24)'/%3E%3C/svg%3E");
}
.p-top .admission .admission__flow .flow__pattern .tag.arrow-b.bottom-pink:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='27' height='15'%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23CC0A55' transform='translate(12)'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23CC0A55' transform='translate(6)'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23CC0A55' opacity='.7' transform='translate(6 6)'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23CC0A55'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23CC0A55' transform='translate(12 6)'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23CC0A55' transform='translate(12 12)'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23CC0A55' transform='translate(18)'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23CC0A55' transform='translate(18 6)'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23CC0A55' transform='translate(24)'/%3E%3C/svg%3E");
}
@media print, screen and (min-width: 769px) {
  .p-top .admission .admission__flow .flow__pattern .tag.arrow-b--pc:after {
    bottom: -1.35em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='27' height='15'%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23000064' transform='translate(12)'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23000064' transform='translate(6)'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23000064' opacity='.7' transform='translate(6 6)'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23000064'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23000064' transform='translate(12 6)'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23000064' transform='translate(12 12)'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23000064' transform='translate(18)'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23000064' transform='translate(18 6)'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23000064' transform='translate(24)'/%3E%3C/svg%3E");
  }
  .p-top .admission .admission__flow .flow__pattern .tag.arrow-b--pc.bottom-pink:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='27' height='15'%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23CC0A55' transform='translate(12)'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23CC0A55' transform='translate(6)'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23CC0A55' opacity='.7' transform='translate(6 6)'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23CC0A55'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23CC0A55' transform='translate(12 6)'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23CC0A55' transform='translate(12 12)'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23CC0A55' transform='translate(18)'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23CC0A55' transform='translate(18 6)'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23CC0A55' transform='translate(24)'/%3E%3C/svg%3E");
  }
}
.p-top .admission .admission__flow .flow__pattern .tag.tag--start {
  background-color: #EAEAEA;
  margin-top: 0;
}
.p-top .admission .admission__flow .flow__pattern .tag.tag--end {
  color: #000064;
  background-color: #FFE100;
}
.p-top .admission .admission__flow .flow__pattern .tag.tag--end img:first-child {
  margin-right: 1.5357142857em;
}
@media print, screen and (min-width: 769px) {
  .p-top .admission .admission__flow .flow__pattern .tag.tag--end img:first-child {
    margin-right: 3em;
  }
}
.p-top .admission .admission__flow .flow__pattern .tag.tag--end img:last-child {
  margin-left: 1.5357142857em;
  margin-right: 0;
}
@media print, screen and (min-width: 769px) {
  .p-top .admission .admission__flow .flow__pattern .tag.tag--end img:last-child {
    margin-left: 3em;
  }
}
.p-top .admission .admission__flow .flow__pattern .tag.tag--web {
  color: #fff;
  background-color: #000064;
}
.p-top .admission .admission__flow .flow__pattern .tag.tag--shop {
  color: #fff;
  background-color: #CC0A55;
}
.p-top .admission .admission__flow .flow__pattern .tag.tag--herf {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .p-top .admission .admission__flow .flow__pattern .tag.tag--herf {
    margin-top: 2.1785714286em;
  }
}
.p-top .admission .admission__flow .flow__pattern .tag img {
  margin-right: 1em;
}
@media screen and (max-width: 768px) {
  .p-top .admission .admission__flow .flow__pattern.pattern--shop .pattern--web {
    display: none;
  }
  .p-top .admission .admission__flow .flow__pattern.pattern--web .pattern--shop {
    display: none;
  }
}
.p-top .shop {
  background-repeat: repeat;
}
@media screen and (max-width: 768px) {
  .p-top .shop {
    padding-top: 11.4285714286%;
    padding-bottom: 17%;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .shop {
    padding-top: 4.375rem;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .shop .content-width {
    max-width: 58.125rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top .shop .shop__lead {
    font-size: min(3.7142857143vw, 1.625rem);
    line-height: 1.8461538462;
    text-align: left;
    margin-top: 1.2692307692em;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .shop .shop__lead {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.75;
    margin-top: 1.8125em;
  }
}
.p-top .shop .shop__map {
  position: relative;
  width: 100%;
  height: 0;
}
@media screen and (max-width: 768px) {
  .p-top .shop .shop__map {
    width: 100vw;
    /*padding-top: 75%;*/
    padding-top: 85%;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 7.8571428571vw;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .shop .shop__map {
    padding-top: 50%;
    margin-top: 4.0860215054%;
  }
}
.p-top .shop .shop__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-top .shop .shop__area-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  margin-top: 2.0833333333em;
}
@media screen and (max-width: 768px) {
  .p-top .shop .shop__area-title {
    font-size: min(4.2666666667vw, 2rem);
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .shop .shop__area-title {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.p-top .shop .shop__area-title img {
  margin-right: 0.625em;
}
@media screen and (max-width: 768px) {
  .p-top .shop .shop__content {
    width: 100vw;
    margin-top: 5.7142857143%;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .shop .shop__content {
    margin-top: 4.4444444444%;
  }
}
.p-top .shop .shop__tab__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .p-top .shop .shop__tab__menu {
    gap: 0.5em 2%;
    width: 86%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .shop .shop__tab__menu {
    gap: 0.5em 1%;
    max-width: 49.0625rem;
  }
}
.p-top .shop .shop__tab__menu .menu__item {
  cursor: pointer;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  color: #000064;
  background-color: #fff;
  border: 1px solid #000064;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .p-top .shop .shop__tab__menu .menu__item {
    font-size: min(4vw, 1.75rem);
    width: 32%;
    padding-top: 0.8928571429em;
    padding-bottom: 0.8928571429em;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .shop .shop__tab__menu .menu__item {
    font-size: 18px;
    font-size: 1.125rem;
    width: 19%;
    padding-top: 1em;
    padding-bottom: 1em;
  }
}
.p-top .shop .shop__tab__menu .menu__item.active {
  background-color: #FFE100;
  border-color: #FFE100;
}
.p-top .shop .shop__tab {
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .p-top .shop .shop__tab {
    width: 88%;
    margin-top: 11.4285714286%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .shop .shop__tab {
    margin-top: 5.5555555556%;
  }
}
.p-top .shop .shop__tab .shop__tab__inner {
  display: none;
}
.p-top .shop .shop__tab .shop__tab__inner.active {
  display: block;
}
@media screen and (max-width: 768px) {
  .p-top .shop .shop__tab .shop__list + .shop__list {
    margin-top: 17.3701298701%;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .shop .shop__tab .shop__list + .shop__list {
    margin-top: 8.8888888889%;
  }
}
.p-top .shop .shop__tab .shop__list .shop__title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.025em;
  font-weight: bold;
  margin-left: 0.2857142857em;
}
@media screen and (max-width: 768px) {
  .p-top .shop .shop__tab .shop__list .shop__title {
    font-size: min(5.1428571429vw, 2.25rem);
    line-height: 1.1666666667;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .shop .shop__tab .shop__list .shop__title {
    cursor: auto;
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 1.5;
  }
}
.p-top .shop .shop__tab .shop__list .shop__title:before, .p-top .shop .shop__tab .shop__list .shop__title:after {
  content: "";
}
.p-top .shop .shop__tab .shop__list .shop__title:before {
  width: 1.0714285714em;
  height: 1.0714285714em;
  background-image: url(../images/shop_icon_point.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 1.0625rem;
}
.p-top .shop .shop__tab .shop__list .shop__title:after {
  height: 1px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background-color: #000064;
}
@media print, screen and (min-width: 769px) {
  .p-top .shop .shop__tab .shop__list .shop__title:after {
    margin-left: 1em;
  }
}
@media screen and (max-width: 768px) {
  .p-top .shop .shop__tab .shop__list .shop__title span {
    max-width: calc(100% - 3em);
  }
}
@media screen and (max-width: 768px) {
  .p-top .shop .shop__tab .shop__list .shop__title span:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%) rotate(180deg);
            transform: translateY(-50%) rotate(180deg);
    display: block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22.828' height='12.828'%3E%3Cg fill='none' stroke='%23000064' stroke-linecap='round' stroke-width='2'%3E%3Cpath d='m1.414 11.414 10-10M21.414 11.414l-10-10'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    display: block;
    width: 1.25em;
    height: 0.625em;
    background-color: #fff;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
}
.p-top .shop .shop__tab .shop__list .shop__title.is-on span:after {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .p-top .shop .shop__tab .shop__list .shop__description {
    font-size: min(3.7142857143vw, 1.625rem);
    line-height: 1.6153846154;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .shop .shop__tab .shop__list .shop__description {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.75;
    max-height: -webkit-fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content;
    margin-left: 6.1111111111%;
  }
}
.p-top .shop .shop__tab .shop__list .shop__description .shop__description__inner {
  margin-top: 4%;
}
@media print, screen and (min-width: 769px) {
  .p-top .shop .shop__tab .shop__list .shop__description .shop__description__inner {
    margin-top: 2.2222222222%;
  }
}
@media screen and (max-width: 768px) {
  .p-top .shop .shop__tab .shop__list .shop__description .shop__description__box {
    padding-left: 0.3846153846em;
    margin-top: 1.6923076923em;
  }
}
@media print, screen and (min-width: 769px) {

  .p-top .shop .shop__tab .shop__list .shop__description .shop__description__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .p-top .shop .shop__tab .shop__list .shop__description .shop__description__box .shop__description--r {
    margin-top: 0.8846153846em;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .shop .shop__tab .shop__list .shop__description .shop__description__box .shop__description--r {
    width: 62.1301775148%;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .shop .shop__tab .shop__list .shop__description .shop__description__box .shop__description--r .shop__description__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.p-top .shop .shop__tab .shop__list .shop__description .shop__description__title {
  font-weight: 700;
  color: #000064;
}
.p-top .shop .shop__tab .shop__list .shop__description .shop__description__text {
  color: #000;
}
@media screen and (max-width: 768px) {
  .p-top .shop .shop__tab .shop__list .shop__description .shop__description__text .open + .open {
    margin-top: 0.6153846154em;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .shop .shop__tab .shop__list .shop__description .shop__description__text .open + .open {
    margin-left: 1.25em;
  }
}
.p-top .shop .shop__tab .shop__list .shop__description .shop__description__caution {
  color: #000;
}
@media screen and (max-width: 768px) {
  .p-top .shop .shop__tab .shop__list .shop__description .shop__description__caution {
    font-size: min(2.8571428571vw, 1.25rem);
    margin-top: 0.8em;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .shop .shop__tab .shop__list .shop__description .shop__description__caution {
    font-size: 0.75em;
    margin-top: 0.5em;
    text-align: right;
  }
}
.p-top .shop .shop__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .p-top .shop .shop__tags {
    -webkit-column-gap: 1.3%;
       -moz-column-gap: 1.3%;
            column-gap: 1.3%;
    width: 99%;
    margin-top: 9.8360655738%;
    margin-left: auto;
    margin-right: 0;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .shop .shop__tags {
    -webkit-column-gap: 0.3685503686%;
       -moz-column-gap: 0.3685503686%;
            column-gap: 0.3685503686%;
    margin-top: 4.2222222222%;
  }
}
.p-top .shop .shop__tags .tag {
  height: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .p-top .shop .shop__tags .tag {
    width: 18.7192118227%;
    padding-top: 27.4914089347%;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .shop .shop__tags .tag {
    width: 7.0780570781%;
    padding-top: 9.2838196286%;
  }
}
.p-top .shop .shop__tags .tag.tag1 {
  background-image: url(../images/shop_tag1.png);
}/*相互利用*/
.p-top .shop .shop__tags .tag.tag2 {
  background-image: url(../images/shop_tag2.png);
}/*防犯カメラ*/
.p-top .shop .shop__tags .tag.tag3 {
  background-image: url(../images/shop_tag3.png);
}/*AED*/
.p-top .shop .shop__tags .tag.tag4 {
  background-image: url(../images/shop_tag4.png);
}/*非常ボタン*/
.p-top .shop .shop__tags .tag.tag5 {
  background-image: url(../images/shop_tag5.png);
}/*駐車場*/
.p-top .shop .shop__tags .tag.tag6 {
  background-image: url(../images/shop_tag6.png);
}/*WiFi*/
.p-top .shop .shop__tags .tag.tag7 {
  background-image: url(../images/shop_tag7.png);
}/*自販機*/
.p-top .shop .shop__tags .tag.tag8 {
  background-image: url(../images/shop_tag8.png);
}/*体組成計*/
.p-top .shop .shop__tags .tag.tag9 {
  background-image: url(../images/shop_tag9.png);
}/*更衣室*/
.p-top .shop .shop__tags .tag.tag10 {
  background-image: url(../images/shop_tag10.png);
}/*シャワー*/
.p-top .shop .shop__tags .tag.tag11 {
  background-image: url(../images/shop_tag11.png);
}/*共用ロッカー*/
.p-top .shop .shop__tags .tag.tag12 {
  background-image: url(../images/shop_tag12.png);
}/*契約ロッカー*/
.p-top .shop .shop__tags .tag.tag13 {
  background-image: url(../images/shop_tag13.png);
}/*水素水*/
.p-top .shop .shop__tags .tag.tag14 {
  background-image: url(../images/shop_tag14.png);
}/*低酸素*/
.p-top .shop .shop__tags .tag.tag15 {
  background-image: url(../images/shop_tag15.png);
}/*個室*/
.p-top .shop .shop__tags .tag.tag16 {
  background-image: url(../images/shop_tag16.png);
}/*バーチャル*/
.p-top .shop .shop__tags .tag.tag17 {
  background-image: url(../images/shop_tag17.png);
}/*高圧酸素*/
.p-top .shop .shop__tags .tag.tag18 {
  background-image: url(../images/shop_tag18.png);
}/*コラーゲン*/
.p-top .shop .shop__tags .tag.tag19 {
  background-image: url(../images/shop_tag19.png);
}/*タンニング*/
.p-top .shop .shop__tags .tag.tag20 {
  background-image: url(../images/shop_tag20.png);
}/*女性専用*/
.p-top .shop .shop__tags .tag.tag21 {
  background-image: url(../images/shop_tag21.png);
}/*有料駐車場*/
.p-top .shop .shop__tags .tag.tag22 {
  background-image: url(../images/shop_tag22.png);
}/*外靴OK*/
.p-top .shop .shop__tags .tag.tag23 {
  background-image: url(../images/shop_tag23.png);
}/*ゴルフ*/
.p-top .shop .shop__tags .tag.tag24 {
  background-image: url(../images/shop_tag24.png);
}/*振動マシン*/
.p-top .shop .shop__tags .tag.tag25 {
  background-image: url(../images/shop_tag25.png);
}/*マッサージチェア*/
.p-top .shop .shop__tags .tag.tag26 {
  background-image: url(../images/shop_tag26.png);
}/*オープンロッカー*/
.p-top .shop .shop__tags .tag.tag27 {
  background-image: url(../images/shop_tag27.png);
}/*コワーキング*/
.p-top .shop .shop__tags .tag.tag28 {
  background-image: url(../images/shop_tag28.png);
}
.p-top .shop .shop__tags .tag.tag30 {
  background-image: url(../images/shop_tag30.png);
}
.p-top .shop .shop__tags .tag.tag31 {
  background-image: url(../images/shop_tag31.png);
}
.p-top .shop .shop__tags .tag.tag32 {
  background-image: url(../images/shop_tag32.png);
}
@media screen and (max-width: 768px) {
  .p-top .shop .shop__tags .tag.tag-br {
    display: none;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .shop .shop__tags .tag.tag-br {
    width: 100%;
    padding-top: 0;
  }
}
.p-top .shop .shop__btns,
.kame .shop__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 4%;
     -moz-column-gap: 4%;
          column-gap: 4%;
  margin-top: 3.7869822485%;
}
.p-top .shop .shop__btns .btn,
.kame .shop__btns .btn {
  width: 48%;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-top .shop .shop__btns .btn,
    .kame .shop__btns .btn {
    font-size: min(4vw, 1.75rem);
    line-height: 4.3928571429;
    text-indent: -2.4285714286em;
  }
  .p-top .shop .shop__btns .btn:after,
    .kame .shop__btns .btn::after {
    right: 0.8214285714em;
  }
}
@media print, screen and (min-width: 769px) {
  .p-top .shop .shop__btns .btn,
    .kame .shop__btns .btn {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 3.1111111111;
  }
}
/*# sourceMappingURL=style.css.map */


/*** 202502～Nex料金追加 ***/

.price__wrap.nex__price {
    background: rgba(0,0,66,0.05);
    margin-bottom: 1em;
}

@media print, screen and (min-width: 769px) {
    .price__wrap {
        padding: 2em 0;
    }
}
.price__wrap h3 {
  font-weight: 900;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .price__wrap h3 {
    font-size: min(6vw, 2.625rem);
    letter-spacing: 0.05em;
    margin-top: 1.7142857143em;
  }
}
@media print, screen and (min-width: 769px) {
  .price__wrap h3 {
    font-size: min(2.1875vw, 1.75rem);
  }
}
.price__wrap h3 span {
    font-size: .8em;
}
.price__plan {
    padding: 1em 0 2em;
}
.p-top .price .nex__price .price__list {
    justify-content: space-around;
}
.p-top .price .nex__price .price__item {
    background: #FFAD38;
}
.p-top .price .nex__price .price__item:after {
    background-color: #FFAD38;
}


/*** WEB入会は事務手数料無料　2025年10月追加 ****/

.megaphone::before {
	content: "WEB入会なら今だけ事務手数料0円!";
	color: #FF2670;
	text-align: center;
	display: block;
	width: 100%;	
	position: absolute;
	top: -2em;
	left: 50%;
	transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
	.megaphone::before {
		content: "WEB入会なら\A今だけ事務手数料0円!";
		font-size: .8em;
		white-space: pre;
		line-height: 1.2;
	}
}

/***店舗情報にキャンペーン告知追加 ***/

.ani {
	margin-top: 1em!important;
	padding-top: 2em;
	position: relative;
}
.ani .ani-txt {
	color: #DC000A;
	font-weight: bold;
	font-size: 1.2em;
	text-align: center;
	display: flex;
	justify-content: center;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.ani .ani-txt::before,
.ani .ani-txt::after {
	content: "";
	background: #DC000A;
	width: 2px;
	height: 30px;
}
.ani .ani-txt::before {
	margin-right: 1em;
	transform: rotate(-15deg);
}
.ani .ani-txt::after {
	margin-left: 1em;
	transform: rotate(15deg);
}

/*** 店舗へのリンク ***/
.gym-link {
	display: inline-block;
	margin-top: .5em;
	font-size: .9rem;
	text-decoration: underline;
}
.gym-link::after {
	content: url("../images/open_in_new.png");
	vertical-align: middle;
	vertical-align: -moz-middle-with-baseline;
	
}