@charset "UTF-8";
/**
 * Foundation
 */
/* stylelint-disable value-keyword-case */ /* stylelint-disable plugin/stylelint-bem-namics */ /* stylelint-disable plugin/stylelint-bem-namics */ /* stylelint-disable plugin/stylelint-bem-namics */ /* stylelint-disable plugin/stylelint-bem-namics */ /* stylelint-disable plugin/stylelint-bem-namics */ /* Document
 * ========================================================================== */
/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Backgrounds do not repeat by default (opinionated).
 */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  background-repeat: no-repeat; /* 2 */
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Breaks words to prevent overflow in all browsers (opinionated).
 * 4. Use a 4-space tab width in all browsers (opinionated).
 * 5. Remove the grey highlight on links in iOS (opinionated).
 * 6. Prevent adjustments of font size after orientation changes in iOS.
 */
:where(:root) {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  overflow-wrap: break-word; /* 3 */
  -moz-tab-size: 4; /* 4 */
  -o-tab-size: 4;
     tab-size: 4; /* 4 */
  -webkit-tap-highlight-color: transparent; /* 5 */
  -webkit-text-size-adjust: 100%; /* 6 */
}

/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
:where(body) {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
:where(h1) {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, and Safari.
 */
:where(dl, ol, ul) :where(dl, ol, ul) {
  margin: 0;
}

/**
 * 1. Correct the inheritance of border color in Firefox.
 * 2. Add the correct box sizing in Firefox.
 */
:where(hr) {
  color: inherit; /* 1 */
  height: 0; /* 2 */
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
:where(nav) :where(ol, ul) {
  list-style-type: none;
  padding: 0;
}

/**
 * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
 */
:where(nav li)::before {
  content: "​";
  float: left;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Prevent overflow of the container in all browsers (opinionated).
 */
:where(pre) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
  overflow: auto; /* 3 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Add the correct text decoration in Safari.
 */
:where(abbr[title]) {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
:where(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.
 */
:where(code, kbd, samp) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
:where(small) {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
:where(audio, canvas, iframe, img, svg, video) {
  vertical-align: middle;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
:where(iframe) {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
:where(svg:not([fill])) {
  fill: currentColor;
}

/* Tabular data
 * ========================================================================== */
/**
 * 1. Collapse border spacing in all browsers (opinionated).
 * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.
 * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */
:where(table) {
  border-collapse: collapse; /* 1 */
  border-color: inherit; /* 2 */
  text-indent: 0; /* 3 */
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
:where(button, input, select) {
  margin: 0;
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
:where(button, [type=button i], [type=reset i], [type=submit i]) {
  -webkit-appearance: button;
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */
:where(fieldset) {
  border: 1px solid #a0a0a0;
}

/**
 * Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
:where(progress) {
  vertical-align: baseline;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 3. Change the resize direction in all browsers (opinionated).
 */
:where(textarea) {
  margin: 0; /* 1 */
  resize: vertical; /* 3 */
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
:where([type=search i]) {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct styles in Safari.
 */
:where(dialog) {
  background-color: white;
  border: solid;
  color: black;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

:where(dialog:not([open])) {
  display: none;
}

/*
 * Add the correct display in Safari.
 */
:where(details > summary:first-of-type) {
  display: list-item;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
:where([aria-busy=true i]) {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
:where([aria-controls]) {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
:where([aria-disabled=true i], [disabled]) {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
:where([aria-hidden=false i][hidden]) {
  display: initial;
}

:where([aria-hidden=false i][hidden]:not(:focus)) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

/**
 * initialize tag styles
 */
html {
  font: 10px/1.7 "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Verdana, sans-serif;
  scroll-behavior: smooth;
}
@media screen and (max-width: 750px) {
  html {
    font-size: 2.6666666667vw;
  }
}
@media screen and (max-width: 750px) {
  html.is-nav-view {
    overflow: hidden;
  }
}

body {
  color: #1d1d1d;
  font-size: 1.8rem;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
      -ms-text-size-adjust: none;
          text-size-adjust: none;
  min-width: calc(1170px + 8rem);
}
@media screen and (max-width: 750px) {
  body {
    min-width: 0;
  }
}

img {
  border: 0;
  vertical-align: top;
}
@media screen and (max-width: 750px) {
  img {
    max-width: 100%;
  }
}

sup {
  font-size: 0.6em;
  vertical-align: super;
}

/**
 * ANCHOR
 */
a {
  color: #1183c0;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

/**
 * Heading
 */
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
}

/**
 * Paragraph
 */
p {
  margin: 0;
}

/**
 * List
 */
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

dl,
dd {
  margin: 0;
}

/**
 * Layout
 */
/**
 * FOOTER
 */
.l-footer {
  position: fixed;
  bottom: 0;
  z-index: -2;
}
.l-footer__content__image {
  width: 100%;
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 750px) {
  .l-footer__content__image {
    margin-bottom: 1.8rem;
  }
}
.l-footer__content__image__src {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-footer__content__top {
  text-align: center;
  position: relative;
  height: 37.611rem;
  overflow: hidden;
  padding-top: 7.3rem;
  pointer-events: none;
  border-bottom: 1px solid #efefef;
}
@media screen and (max-width: 750px) {
  .l-footer__content__top {
    padding-top: 0;
    border-bottom: unset;
  }
}
.l-footer__content__top::after {
  content: "";
  display: block;
  width: 161.8rem;
  height: 111.2rem;
  background: url("../img/common/pc/line-footer-ellipse.svg") no-repeat center center/cover;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 750px) {
  .l-footer__content__top::after {
    width: 98rem;
    height: 67.4rem;
    background: url("../img/common/sp/line-footer-ellipse.svg") no-repeat center center/cover;
  }
}
@media screen and (max-width: 750px) {
  .l-footer__content__top__linkholder {
    height: 13.1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.l-footer__content__top__link {
  position: relative;
  z-index: 1;
  pointer-events: auto;
  top: -2.2rem;
}
@media screen and (max-width: 750px) {
  .l-footer__content__top__link {
    display: block;
    top: 0;
  }
}
.l-footer__content__top__link__img {
  width: 37.666rem;
}
@media screen and (max-width: 750px) {
  .l-footer__content__top__link__img {
    width: 21.1rem;
  }
}
.l-footer__content__links {
  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;
  gap: 1rem;
  margin-top: -8.3rem;
}
@media screen and (max-width: 750px) {
  .l-footer__content__links {
    margin-top: -20.3rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.7rem;
    padding: 0 5.5rem;
  }
}
.l-footer__content__links__list__anchor {
  text-decoration: none;
  font-family: "Gothic A1", sans-serif;
  font-size: 1.5rem;
  font-weight: normal;
  color: #8b8383;
}
.l-footer__content__links__divider {
  display: block;
  background-color: #e0e0e0;
  width: 0.1rem;
  height: 3rem;
}
.l-footer__content__sns {
  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;
  gap: 1.9rem;
  margin-top: 1rem;
}
@media screen and (max-width: 750px) {
  .l-footer__content__sns {
    gap: 2.4rem;
    margin-top: 3.8rem;
    border-bottom: 1px solid #efefef;
    padding-bottom: 2.8rem;
  }
}
.l-footer__content__sns__list__anchor {
  display: block;
}
.l-footer__content__sns__list__anchor__img {
  vertical-align: middle;
}
.l-footer__content__sns__list__anchor__img.is-facebook {
  width: 3.3rem;
}
.l-footer__content__sns__list__anchor__img.is-x {
  width: 2.838rem;
}
.l-footer__content__sns__list__anchor__img.is-linkedin {
  width: 3.499rem;
}
.l-footer__content__sns__list__anchor__img.is-youtube {
  width: 3.753rem;
}
.l-footer__copyright {
  font-family: "Gothic A1", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 2.4rem;
  text-align: center;
  margin-top: 3.5rem;
  letter-spacing: 0.7rem;
}
@media screen and (max-width: 750px) {
  .l-footer__copyright {
    margin-top: 1.4rem;
    letter-spacing: 0.8rem;
    margin-bottom: 0.5rem;
  }
}
@media screen and (max-width: 750px) {
  .is-nav-view .l-footer {
    -webkit-filter: blur(1.5rem);
            filter: blur(1.5rem);
    -webkit-transition: 0.3s -webkit-filter 0.3s;
    transition: 0.3s -webkit-filter 0.3s;
    transition: 0.3s filter 0.3s;
    transition: 0.3s filter 0.3s, 0.3s -webkit-filter 0.3s;
  }
}

/**
 * HEADER
 */
.l-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2.2rem 2.8rem 2.2rem 9.8rem;
  position: fixed;
  z-index: 99;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .l-header {
    background-color: rgba(21, 45, 114, 0.81);
    left: 0;
    margin: 0 auto;
    padding: 2rem 2rem 1.6rem;
    position: fixed;
    right: 0;
    top: 0;
    -webkit-backdrop-filter: blur(2rem);
            backdrop-filter: blur(2rem);
    -webkit-transition: 0.3s -webkit-backdrop-filter 0.3s;
    transition: 0.3s -webkit-backdrop-filter 0.3s;
    transition: 0.3s backdrop-filter 0.3s;
    transition: 0.3s backdrop-filter 0.3s, 0.3s -webkit-backdrop-filter 0.3s;
  }
  .is-nav-view .l-header {
    -webkit-backdrop-filter: blur(0);
            backdrop-filter: blur(0);
  }
}
@media screen and (min-width: 751px) {
  .l-header.is-scrolled {
    background-color: rgba(21, 45, 114, 0.81);
    -webkit-backdrop-filter: blur(2rem);
            backdrop-filter: blur(2rem);
  }
}
.l-header__logo__anchor {
  display: block;
  width: 14.3rem;
  height: 4.112rem;
}
@media screen and (max-width: 750px) {
  .l-header__logo__anchor {
    font-size: 1.4rem;
    width: 9.455rem;
    height: 2.719rem;
  }
}
.l-header__logo__anchor__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.is-scrolled .l-header__logo__anchor__img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
@media screen and (max-width: 750px) {
  .l-header__logo__anchor__img {
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
  }
}

.l-main {
  margin-bottom: 86.7rem;
}
@media screen and (max-width: 750px) {
  .l-main {
    margin-bottom: 56.7rem;
  }
}
@media screen and (max-width: 750px) {
  .is-nav-view .l-main {
    -webkit-filter: blur(1.5rem);
            filter: blur(1.5rem);
    -webkit-transition: 0.3s -webkit-filter 0.3s;
    transition: 0.3s -webkit-filter 0.3s;
    transition: 0.3s filter 0.3s;
    transition: 0.3s filter 0.3s, 0.3s -webkit-filter 0.3s;
  }
}

/**
 * Global Navigation
 */
@media screen and (max-width: 750px) {
  .l-nav {
    left: 0;
    margin: 0 auto;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 11;
  }
}
@media screen and (max-width: 750px) {
  .l-nav__trigger {
    position: absolute;
    right: 2.3rem;
    top: 2rem;
  }
  .l-nav__trigger__button {
    background: none;
    border: none;
    height: 3rem;
    outline: none;
    overflow: hidden;
    padding: 0;
    position: relative;
    vertical-align: top;
    width: 3rem;
  }
  .l-nav__trigger__line {
    background: #fff;
    display: block;
    height: 0.3rem;
    border-radius: 0.2rem;
    left: 0;
    position: absolute;
    right: 0;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    width: 100%;
  }
  .l-nav__trigger__line:nth-child(1) {
    top: 0.5rem;
  }
  .l-nav__trigger__line:nth-child(2) {
    top: 44%;
    width: 2rem;
  }
  .l-nav__trigger__line:nth-child(3) {
    top: 2.1rem;
  }
  .is-nav-view .l-nav__trigger__line:nth-child(1) {
    top: 47%;
    -webkit-transform: rotate(32deg);
            transform: rotate(32deg);
  }
  .is-nav-view .l-nav__trigger__line:nth-child(2) {
    left: 100%;
  }
  .is-nav-view .l-nav__trigger__line:nth-child(3) {
    top: 45%;
    -webkit-transform: rotate(-32deg);
            transform: rotate(-32deg);
  }
}
.l-nav__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.6rem;
}
@media screen and (max-width: 750px) {
  .l-nav__content {
    border: none;
    display: block;
    overflow: auto;
    position: fixed;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background-color: rgba(21, 45, 114, 0.81);
    -webkit-backdrop-filter: blur(2rem);
            backdrop-filter: blur(2rem);
    padding-top: 2.8rem;
    height: 100svh;
    width: 100%;
    top: -10000%;
    margin-top: 6.6rem;
    padding-bottom: 7.5rem;
  }
  .is-nav-view .l-nav__content {
    top: 0;
  }
}
.l-nav__menu {
  list-style: none;
}
@media screen and (max-width: 750px) {
  .l-nav__menu {
    border-bottom: 1px solid #8190be;
    height: auto;
    width: auto;
    padding: 2.5rem 0;
  }
}
.l-nav__menu:nth-child(6), .l-nav__menu:nth-child(7), .l-nav__menu:last-child {
  border-bottom: unset;
}
.l-nav__menu__anchor {
  color: #333;
  display: block;
  font-family: "Reddit Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  height: 4.8rem;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  padding-top: 1.6rem;
}
@media screen and (max-width: 750px) {
  .l-nav__menu__anchor {
    border: none;
    color: #fff;
    font-size: 3.4rem;
    height: auto;
    line-height: 1;
    padding-top: unset;
  }
}
.is-scrolled .l-nav__menu__anchor {
  color: #fff;
}
.l-nav__menu__anchor:hover {
  color: #eb7271;
}
.l-nav__menu__anchor.is-inquiry {
  background-color: #ed302f;
  border-radius: 0.5rem;
  color: #fff;
  width: 18rem;
  line-height: 4.8rem;
  position: relative;
  padding-top: unset;
}
@media screen and (min-width: 751px) {
  .l-nav__menu__anchor.is-inquiry:hover {
    background-color: #06387b;
    color: #06387b;
  }
  .l-nav__menu__anchor.is-inquiry:hover::after {
    content: "";
    display: block;
    width: 3.121rem;
    height: 2.811rem;
    background: url("../img/common/pc/icon-nav-inquiry.svg") no-repeat center center/cover;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 750px) {
  .l-nav__menu__anchor.is-inquiry {
    margin: 2rem auto 0;
    width: 24.8rem;
    font-size: 2rem;
    padding: 0.9rem 0;
  }
}
@media screen and (max-width: 750px) {
  .l-nav__sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2.3rem;
    margin-top: 2.7rem;
    position: relative;
  }
  .l-nav__sns::before {
    content: "";
    display: block;
    width: 100%;
    height: 5.5rem;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
    -webkit-filter: blur(3.1rem);
            filter: blur(3.1rem);
  }
  .l-nav__sns__list {
    position: relative;
  }
}
@media screen and (max-width: 750px) and (max-width: 750px) {
  .l-nav__sns__list__anchor__img.is-youtube {
    position: relative;
    top: 0.2rem;
  }
}

/**
 * Object
 */
/* Component */
@-webkit-keyframes mv-item01 {
  0% {
    -webkit-transform: scale(0.25) rotate(-32deg);
            transform: scale(0.25) rotate(-32deg);
    top: -21.3rem;
    left: -22.1rem;
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
            transform: scale(1) rotate(0);
    top: 4.7rem;
    left: -9.7rem;
  }
}
@keyframes mv-item01 {
  0% {
    -webkit-transform: scale(0.25) rotate(-32deg);
            transform: scale(0.25) rotate(-32deg);
    top: -21.3rem;
    left: -22.1rem;
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
            transform: scale(1) rotate(0);
    top: 4.7rem;
    left: -9.7rem;
  }
}
@-webkit-keyframes mv-item02 {
  0% {
    -webkit-transform: scale(0.25) rotate(86deg);
            transform: scale(0.25) rotate(86deg);
    top: -13.1rem;
    left: 21.9rem;
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
            transform: scale(1) rotate(0);
    top: 11.6rem;
    left: 25.8rem;
  }
}
@keyframes mv-item02 {
  0% {
    -webkit-transform: scale(0.25) rotate(86deg);
            transform: scale(0.25) rotate(86deg);
    top: -13.1rem;
    left: 21.9rem;
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
            transform: scale(1) rotate(0);
    top: 11.6rem;
    left: 25.8rem;
  }
}
@-webkit-keyframes mv-item03 {
  0% {
    -webkit-transform: scale(0.5) rotate(100deg);
            transform: scale(0.5) rotate(100deg);
    top: -7.7rem;
    right: 33.4rem;
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
            transform: scale(1) rotate(0);
    top: 18.4rem;
    right: 41.7rem;
  }
}
@keyframes mv-item03 {
  0% {
    -webkit-transform: scale(0.5) rotate(100deg);
            transform: scale(0.5) rotate(100deg);
    top: -7.7rem;
    right: 33.4rem;
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
            transform: scale(1) rotate(0);
    top: 18.4rem;
    right: 41.7rem;
  }
}
@-webkit-keyframes mv-item04 {
  0% {
    -webkit-transform: scale(0.5) rotate(-85deg);
            transform: scale(0.5) rotate(-85deg);
    top: -9.7rem;
    right: -4.8rem;
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
            transform: scale(1) rotate(0);
    top: 11rem;
    right: 19.2rem;
  }
}
@keyframes mv-item04 {
  0% {
    -webkit-transform: scale(0.5) rotate(-85deg);
            transform: scale(0.5) rotate(-85deg);
    top: -9.7rem;
    right: -4.8rem;
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
            transform: scale(1) rotate(0);
    top: 11rem;
    right: 19.2rem;
  }
}
@-webkit-keyframes mv-item05 {
  0% {
    -webkit-transform: scale(0.6) rotate(35deg);
            transform: scale(0.6) rotate(35deg);
    top: 2.5rem;
    right: -30.2rem;
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
            transform: scale(1) rotate(0);
    top: 8.7rem;
    right: -17.6rem;
  }
}
@keyframes mv-item05 {
  0% {
    -webkit-transform: scale(0.6) rotate(35deg);
            transform: scale(0.6) rotate(35deg);
    top: 2.5rem;
    right: -30.2rem;
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
            transform: scale(1) rotate(0);
    top: 8.7rem;
    right: -17.6rem;
  }
}
@-webkit-keyframes mv-item06 {
  0% {
    -webkit-transform: scale(0.4) rotate(80deg);
            transform: scale(0.4) rotate(80deg);
    top: 27.9rem;
    left: -20.7rem;
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
            transform: scale(1) rotate(0);
    top: 33.3rem;
    left: -11.5rem;
  }
}
@keyframes mv-item06 {
  0% {
    -webkit-transform: scale(0.4) rotate(80deg);
            transform: scale(0.4) rotate(80deg);
    top: 27.9rem;
    left: -20.7rem;
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
            transform: scale(1) rotate(0);
    top: 33.3rem;
    left: -11.5rem;
  }
}
@-webkit-keyframes mv-item07 {
  0% {
    -webkit-transform: scale(0.4) rotate(-78deg);
            transform: scale(0.4) rotate(-78deg);
    top: 57.2rem;
    left: -22.3rem;
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
            transform: scale(1) rotate(0);
    top: 48.9rem;
    left: 5.7rem;
  }
}
@keyframes mv-item07 {
  0% {
    -webkit-transform: scale(0.4) rotate(-78deg);
            transform: scale(0.4) rotate(-78deg);
    top: 57.2rem;
    left: -22.3rem;
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
            transform: scale(1) rotate(0);
    top: 48.9rem;
    left: 5.7rem;
  }
}
@-webkit-keyframes mv-item08 {
  0% {
    -webkit-transform: scale(0.4) rotate(-58deg);
            transform: scale(0.4) rotate(-58deg);
    top: 54.2rem;
    right: -19.8rem;
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
            transform: scale(1) rotate(0);
    top: 45.2rem;
    right: 4rem;
  }
}
@keyframes mv-item08 {
  0% {
    -webkit-transform: scale(0.4) rotate(-58deg);
            transform: scale(0.4) rotate(-58deg);
    top: 54.2rem;
    right: -19.8rem;
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
            transform: scale(1) rotate(0);
    top: 45.2rem;
    right: 4rem;
  }
}
@-webkit-keyframes mv-item09 {
  0% {
    -webkit-transform: scale(0.45) rotate(35deg);
            transform: scale(0.45) rotate(35deg);
    top: 71.5rem;
    left: -17.1rem;
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
            transform: scale(1) rotate(0);
    top: 64.8rem;
    left: 1.4rem;
  }
}
@keyframes mv-item09 {
  0% {
    -webkit-transform: scale(0.45) rotate(35deg);
            transform: scale(0.45) rotate(35deg);
    top: 71.5rem;
    left: -17.1rem;
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
            transform: scale(1) rotate(0);
    top: 64.8rem;
    left: 1.4rem;
  }
}
@-webkit-keyframes mv-item10 {
  0% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    top: 67.7rem;
    left: 29.2rem;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    top: 56.2rem;
    left: 31.7rem;
  }
}
@keyframes mv-item10 {
  0% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    top: 67.7rem;
    left: 29.2rem;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    top: 56.2rem;
    left: 31.7rem;
  }
}
@-webkit-keyframes mv-item11 {
  0% {
    -webkit-transform: scale(0.5) rotate(45deg);
            transform: scale(0.5) rotate(45deg);
    top: 75rem;
    right: -17.2rem;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    top: 63.3rem;
    right: -8.2rem;
  }
}
@keyframes mv-item11 {
  0% {
    -webkit-transform: scale(0.5) rotate(45deg);
            transform: scale(0.5) rotate(45deg);
    top: 75rem;
    right: -17.2rem;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    top: 63.3rem;
    right: -8.2rem;
  }
}
@-webkit-keyframes mv-scroll {
  0% {
    top: 1rem;
  }
  100% {
    top: 0;
  }
}
@keyframes mv-scroll {
  0% {
    top: 1rem;
  }
  100% {
    top: 0;
  }
}
@-webkit-keyframes red-arrow {
  0% {
    opacity: 0;
    top: -12.8rem;
  }
  50% {
    top: -2.6rem;
  }
  100% {
    opacity: 1;
    top: -3.6rem;
  }
}
@keyframes red-arrow {
  0% {
    opacity: 0;
    top: -12.8rem;
  }
  50% {
    top: -2.6rem;
  }
  100% {
    opacity: 1;
    top: -3.6rem;
  }
}
@media screen and (max-width: 750px) {
  @-webkit-keyframes mv-item01 {
    0% {
      -webkit-transform: scale(0.25) rotate(-32deg);
              transform: scale(0.25) rotate(-32deg);
      top: -8.3rem;
      left: -6.1rem;
    }
    100% {
      -webkit-transform: scale(1) rotate(0);
              transform: scale(1) rotate(0);
      top: 5.9rem;
      left: -5.3rem;
    }
  }
  @keyframes mv-item01 {
    0% {
      -webkit-transform: scale(0.25) rotate(-32deg);
              transform: scale(0.25) rotate(-32deg);
      top: -8.3rem;
      left: -6.1rem;
    }
    100% {
      -webkit-transform: scale(1) rotate(0);
              transform: scale(1) rotate(0);
      top: 5.9rem;
      left: -5.3rem;
    }
  }
  @-webkit-keyframes mv-item02 {
    0% {
      -webkit-transform: scale(0.25) rotate(86deg);
              transform: scale(0.25) rotate(86deg);
      top: -5.1rem;
      left: 9.9rem;
    }
    100% {
      -webkit-transform: scale(1) rotate(0);
              transform: scale(1) rotate(0);
      top: 10.6rem;
      left: 8.2rem;
    }
  }
  @keyframes mv-item02 {
    0% {
      -webkit-transform: scale(0.25) rotate(86deg);
              transform: scale(0.25) rotate(86deg);
      top: -5.1rem;
      left: 9.9rem;
    }
    100% {
      -webkit-transform: scale(1) rotate(0);
              transform: scale(1) rotate(0);
      top: 10.6rem;
      left: 8.2rem;
    }
  }
  @-webkit-keyframes mv-item03 {
    0% {
      -webkit-transform: scale(0.5) rotate(100deg);
              transform: scale(0.5) rotate(100deg);
      top: -3.7rem;
      right: 9.4rem;
    }
    100% {
      -webkit-transform: scale(1) rotate(0);
              transform: scale(1) rotate(0);
      top: 13.4rem;
      right: 11.3rem;
    }
  }
  @keyframes mv-item03 {
    0% {
      -webkit-transform: scale(0.5) rotate(100deg);
              transform: scale(0.5) rotate(100deg);
      top: -3.7rem;
      right: 9.4rem;
    }
    100% {
      -webkit-transform: scale(1) rotate(0);
              transform: scale(1) rotate(0);
      top: 13.4rem;
      right: 11.3rem;
    }
  }
  @-webkit-keyframes mv-item04 {
    0% {
      -webkit-transform: scale(0.5) rotate(-85deg);
              transform: scale(0.5) rotate(-85deg);
      top: -5.7rem;
      right: 2.2rem;
    }
    100% {
      -webkit-transform: scale(1) rotate(0);
              transform: scale(1) rotate(0);
      top: 8.6rem;
      right: 3.7rem;
    }
  }
  @keyframes mv-item04 {
    0% {
      -webkit-transform: scale(0.5) rotate(-85deg);
              transform: scale(0.5) rotate(-85deg);
      top: -5.7rem;
      right: 2.2rem;
    }
    100% {
      -webkit-transform: scale(1) rotate(0);
              transform: scale(1) rotate(0);
      top: 8.6rem;
      right: 3.7rem;
    }
  }
  @-webkit-keyframes mv-item05 {
    0% {
      -webkit-transform: scale(0.6) rotate(35deg);
              transform: scale(0.6) rotate(35deg);
      top: 2.5rem;
      right: -12.2rem;
    }
    100% {
      -webkit-transform: scale(1) rotate(0);
              transform: scale(1) rotate(0);
      top: 10rem;
      right: -9.8rem;
    }
  }
  @keyframes mv-item05 {
    0% {
      -webkit-transform: scale(0.6) rotate(35deg);
              transform: scale(0.6) rotate(35deg);
      top: 2.5rem;
      right: -12.2rem;
    }
    100% {
      -webkit-transform: scale(1) rotate(0);
              transform: scale(1) rotate(0);
      top: 10rem;
      right: -9.8rem;
    }
  }
  @-webkit-keyframes mv-item06 {
    0% {
      -webkit-transform: scale(0.4) rotate(80deg);
              transform: scale(0.4) rotate(80deg);
      top: 22.9rem;
      left: -7.7rem;
    }
    100% {
      -webkit-transform: scale(1) rotate(0);
              transform: scale(1) rotate(0);
      top: 22.7rem;
      left: -3.2rem;
    }
  }
  @keyframes mv-item06 {
    0% {
      -webkit-transform: scale(0.4) rotate(80deg);
              transform: scale(0.4) rotate(80deg);
      top: 22.9rem;
      left: -7.7rem;
    }
    100% {
      -webkit-transform: scale(1) rotate(0);
              transform: scale(1) rotate(0);
      top: 22.7rem;
      left: -3.2rem;
    }
  }
  @-webkit-keyframes mv-item07 {
    0% {
      -webkit-transform: scale(0.4) rotate(-78deg);
              transform: scale(0.4) rotate(-78deg);
      top: 31.2rem;
      left: -7.3rem;
    }
    100% {
      -webkit-transform: scale(1) rotate(0);
              transform: scale(1) rotate(0);
      top: 31.8rem;
      left: -1rem;
    }
  }
  @keyframes mv-item07 {
    0% {
      -webkit-transform: scale(0.4) rotate(-78deg);
              transform: scale(0.4) rotate(-78deg);
      top: 31.2rem;
      left: -7.3rem;
    }
    100% {
      -webkit-transform: scale(1) rotate(0);
              transform: scale(1) rotate(0);
      top: 31.8rem;
      left: -1rem;
    }
  }
  @-webkit-keyframes mv-item08 {
    0% {
      -webkit-transform: scale(0.4) rotate(-58deg);
              transform: scale(0.4) rotate(-58deg);
      top: 30.2rem;
      right: -5.8rem;
    }
    100% {
      -webkit-transform: scale(1) rotate(0);
              transform: scale(1) rotate(0);
      top: 31.7rem;
      right: -0.5rem;
    }
  }
  @keyframes mv-item08 {
    0% {
      -webkit-transform: scale(0.4) rotate(-58deg);
              transform: scale(0.4) rotate(-58deg);
      top: 30.2rem;
      right: -5.8rem;
    }
    100% {
      -webkit-transform: scale(1) rotate(0);
              transform: scale(1) rotate(0);
      top: 31.7rem;
      right: -0.5rem;
    }
  }
  @-webkit-keyframes mv-item09 {
    0% {
      -webkit-transform: scale(0.45) rotate(35deg);
              transform: scale(0.45) rotate(35deg);
      top: 51.5rem;
      left: -3.1rem;
    }
    100% {
      -webkit-transform: scale(1) rotate(0);
              transform: scale(1) rotate(0);
      top: 38.9rem;
      left: -2.3rem;
    }
  }
  @keyframes mv-item09 {
    0% {
      -webkit-transform: scale(0.45) rotate(35deg);
              transform: scale(0.45) rotate(35deg);
      top: 51.5rem;
      left: -3.1rem;
    }
    100% {
      -webkit-transform: scale(1) rotate(0);
              transform: scale(1) rotate(0);
      top: 38.9rem;
      left: -2.3rem;
    }
  }
  @-webkit-keyframes mv-item10 {
    0% {
      -webkit-transform: scale(0.9);
              transform: scale(0.9);
      top: 50.5rem;
      left: 3.5rem;
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
      top: 34.5rem;
      left: 4.5rem;
    }
  }
  @keyframes mv-item10 {
    0% {
      -webkit-transform: scale(0.9);
              transform: scale(0.9);
      top: 50.5rem;
      left: 3.5rem;
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
      top: 34.5rem;
      left: 4.5rem;
    }
  }
  @-webkit-keyframes mv-item11 {
    0% {
      -webkit-transform: scale(0.5) rotate(45deg);
              transform: scale(0.5) rotate(45deg);
      top: 53rem;
      right: -3.2rem;
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
      top: 38.8rem;
      right: -3.2rem;
    }
  }
  @keyframes mv-item11 {
    0% {
      -webkit-transform: scale(0.5) rotate(45deg);
              transform: scale(0.5) rotate(45deg);
      top: 53rem;
      right: -3.2rem;
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
      top: 38.8rem;
      right: -3.2rem;
    }
  }
  @-webkit-keyframes mv-scroll {
    0% {
      bottom: 1rem;
    }
    100% {
      bottom: 2rem;
    }
  }
  @keyframes mv-scroll {
    0% {
      bottom: 1rem;
    }
    100% {
      bottom: 2rem;
    }
  }
  @-webkit-keyframes red-arrow {
    0% {
      opacity: 0;
      top: -9rem;
    }
    50% {
      top: -0.5rem;
    }
    100% {
      opacity: 1;
      top: -1.5rem;
    }
  }
  @keyframes red-arrow {
    0% {
      opacity: 0;
      top: -9rem;
    }
    50% {
      top: -0.5rem;
    }
    100% {
      opacity: 1;
      top: -1.5rem;
    }
  }
}
.c-button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  display: block;
  cursor: pointer;
}
.c-button.is-submit {
  width: 100%;
  border-radius: 1rem;
  background-color: #ed302f;
  color: #fff;
  margin: 0 auto;
  font-family: "Gothic A1", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  padding: 3.8rem 0;
  -webkit-transition: width 0.3s ease-in;
  transition: width 0.3s ease-in;
}
@media screen and (min-width: 751px) {
  .c-button.is-submit:hover {
    width: 57rem;
    background-color: #333;
    color: #333;
    position: relative;
  }
  .c-button.is-submit:hover::after {
    content: "";
    display: block;
    width: 3.476rem;
    height: 3.331rem;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background: url("../img/views/index/pc/icon-confirm-button.svg") no-repeat center center/cover;
  }
}
.c-button.is-back {
  text-decoration: none;
  font-family: "Gothic A1", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: #333;
  border: 1px solid #707070;
  padding: 3.9rem 0 3.5rem;
  border-radius: 1rem;
  margin: 0 auto 1.9rem;
  width: 100%;
  -webkit-transition: width ease-in 0.3s;
  transition: width ease-in 0.3s;
}
@media screen and (min-width: 751px) {
  .c-button.is-back:hover {
    width: 57rem;
    background-color: #333;
    border-color: #333;
    position: relative;
  }
  .c-button.is-back:hover::before {
    content: "";
    display: block;
    width: 2.66rem;
    height: 4.667rem;
    background: url("../img/views/index/pc/icon-arrow-back.svg") no-repeat center center/cover;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .c-button.is-back:hover .is-red {
    color: #333;
  }
}
.c-button.is-back.is-result {
  font-size: 2.5rem;
}
@media screen and (min-width: 751px) {
  .c-button.is-back.is-result:hover::before {
    -webkit-transform: translate(-50%, -50%) scale(-1);
            transform: translate(-50%, -50%) scale(-1);
  }
}
.c-button.is-back .is-red {
  color: #ed302f;
}

/**
 * Contact Banner
 */
.c-contact-banner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 50px;
}
@media screen and (max-width: 750px) {
  .c-contact-banner {
    display: block;
    padding: 1rem;
  }
}
.c-contact-banner__tel {
  font-size: 3.2rem;
  font-weight: bold;
  margin-right: 30px;
}
@media screen and (max-width: 750px) {
  .c-contact-banner__tel {
    font-size: 2.4rem;
    margin: 0;
    text-align: center;
  }
}
.c-contact-banner__time {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  line-height: 16px;
}
@media screen and (max-width: 750px) {
  .c-contact-banner__time {
    margin-bottom: 1rem;
    text-align: center;
  }
}

/**
 * Form styling
 */
.c-form {
  background-color: #fff;
  border-radius: 1rem;
  -webkit-box-shadow: 0 0 3.6rem rgba(0, 0, 0, 0.09);
          box-shadow: 0 0 3.6rem rgba(0, 0, 0, 0.09);
  padding: 11.4rem 16rem 10.8rem;
  position: relative;
}
@media screen and (max-width: 750px) {
  .c-form {
    padding: 8.6rem 0.8rem 3.8rem;
  }
}
.is-confirm .c-form {
  padding: 12rem 16rem 10.8rem;
}
@media screen and (max-width: 750px) {
  .is-confirm .c-form {
    padding: 6.9rem 1rem;
  }
}
.c-form__table {
  width: 100%;
}
@media screen and (max-width: 750px) {
  .c-form__table, .c-form__table__thead, .c-form__table__tbody, .c-form__table__row {
    width: auto;
    display: block;
  }
}
.c-form__table__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-form__table__row:not(:last-child) {
  margin-bottom: 3.1rem;
}
@media screen and (max-width: 750px) {
  .c-form__table__row:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.is-confirm .c-form__table__row {
  border-bottom: 1px solid #cdd6dd;
  margin-bottom: 3.4rem;
  padding-bottom: 3rem;
}
.c-form__table__head {
  text-align: left;
  font-family: "Reddit Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1;
  color: #333;
  margin-bottom: 2rem;
}
@media screen and (max-width: 750px) {
  .c-form__table__head {
    width: auto;
    display: block;
    letter-spacing: 0.5px;
  }
}
.is-confirm .c-form__table__head {
  margin-bottom: 1.5rem;
}
.c-form__table__head .is-required {
  display: inline-block;
  font-family: "Reddit Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  color: #dc000c;
  border: 1px solid #dc000c;
  margin-left: 1rem;
  padding: 0.3rem 1rem;
}
@media screen and (max-width: 750px) {
  .c-form__table__head .is-required {
    padding: 0.3rem 0.5rem 0.3rem 1rem;
  }
}
.c-form__table__data {
  vertical-align: middle;
}
@media screen and (max-width: 750px) {
  .c-form__table__data {
    width: auto;
    display: block;
  }
}
.c-form__table__data__input {
  font-family: "Reddit Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 2.8rem;
  color: #333;
}
@media screen and (max-width: 750px) {
  .c-form__table__data__input {
    line-height: 3rem;
  }
}
.c-form__table__row.is-top .c-form__table__head, .c-form__table__row.is-top .c-form__table__data {
  vertical-align: top;
}
.c-form__error {
  color: #a94442;
}
.c-form__error.is-empty {
  display: none;
}

/**
 * Headline
 */
.c-headline {
  background: #ddd;
  margin-bottom: 10px;
  padding: 25px 0;
}
@media screen and (max-width: 750px) {
  .c-headline {
    margin-bottom: 1rem;
    padding: 2rem 0;
  }
}
.c-headline__text {
  font-size: 2.8rem;
  font-weight: normal;
}
@media screen and (max-width: 750px) {
  .c-headline__text {
    font-size: 2.4rem;
    line-height: 1.4;
  }
}
.c-headline__catch {
  font-size: 1.4rem;
}

/**
 * Input label
 */
.c-input-label {
  cursor: pointer;
  display: inline-block;
  font-family: "Reddit Sans", sans-serif;
}
@media screen and (max-width: 750px) {
  .c-input-label {
    font-size: 1.6rem;
    letter-spacing: 0.5px;
  }
}
.c-input-label__checkbox {
  width: 3rem;
  height: 3rem;
  position: relative;
  top: 0.9rem;
  margin-right: 1.5rem;
  visibility: hidden;
}
.c-input-label__checkbox::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  border: 1px solid #cdd6dd;
  border-radius: 0.4rem;
  visibility: visible;
}
.c-input-label__checkbox:checked::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1.6rem;
  height: 1.113rem;
  background: url("../img/views/index/pc/icon-checkbox.svg") no-repeat center center/cover;
  visibility: visible;
}

/**
 * Input select
 */
.c-input-select {
  background: #eee;
  border: 1px solid #aaa;
  font-size: 1.6rem;
  height: 2em;
  padding: 0 1em;
}
@media screen and (max-width: 750px) {
  .c-input-select {
    font-size: initial;
  }
}
.c-input-select.has-error {
  border: 1px solid #a94442;
}
.c-input-select.is-valid {
  border: 1px solid #3c763d;
}

/**
 * Input text
 */
.c-input-text {
  border: 1px solid #cdd6dd;
  border-radius: 0.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Reddit Sans", sans-serif;
  font-size: 1.6rem;
  outline: none;
  padding: 1.9rem;
}
.c-input-text::-webkit-input-placeholder {
  color: #cdd6dd;
}
.c-input-text::-moz-placeholder {
  color: #cdd6dd;
}
.c-input-text:-ms-input-placeholder {
  color: #cdd6dd;
}
.c-input-text::-ms-input-placeholder {
  color: #cdd6dd;
}
.c-input-text::placeholder {
  color: #cdd6dd;
}
.c-input-text.is-short {
  width: 5em;
}
.c-input-text.is-full {
  width: 100%;
}
.c-input-text:focus {
  border: 1px solid #182ece;
}
.c-input-text.has-error {
  border: 1px solid #a94442;
}
.c-input-text.is-valid {
  border: 1px solid #3c763d;
}
.c-input-text.is-content {
  height: 17.4rem;
}

/**
 * Pagination
 * ページネーション
 */
.c-pagination {
  margin: 1.6em 0;
  text-align: center;
}
.c-pagination__list {
  display: inline-block;
  margin: 0 5px;
  vertical-align: top;
}
.c-pagination__list > span, .c-pagination__list > a {
  border: 1px solid #ddd;
  color: #333;
  display: inline-block;
  line-height: 2;
  min-width: 2.2em;
  padding: 0 0.2em;
  text-align: center;
  text-decoration: none;
}
.c-pagination__list > a:hover {
  background: #eee;
  text-decoration: none;
}
.c-pagination__list > span {
  background: #999;
  color: #fff;
}

.c-topic-path {
  margin-bottom: 40px;
}
@media screen and (max-width: 750px) {
  .c-topic-path {
    margin-bottom: 3rem;
  }
}
.c-topic-path__row {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.c-topic-path__col {
  list-style: none;
  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;
}
.c-topic-path__col::after {
  content: ">";
  margin: 0 0.5em;
}
.c-topic-path__col:last-child::after {
  content: none;
}
.c-topic-path__item {
  color: inherit;
}
.c-topic-path__item.is-current {
  font-weight: bold;
}

.c-entry-block {
  /**
   * Heading
   */
  /**
   * Image
   */
  /**
   * Table
   */
  /**
   * Paragraph
   */
  /**
   * List
   */
}
.c-entry-block h2,
.c-entry-block h3,
.c-entry-block h4,
.c-entry-block h5,
.c-entry-block h6 {
  font-weight: bold;
  margin: 1.4em 0 0.5em;
}
.c-entry-block h2 {
  font-size: 1.8em;
}
.c-entry-block h3 {
  font-size: 1.6em;
}
.c-entry-block h4 {
  font-size: 1.4em;
}
.c-entry-block h5 {
  font-size: 1.2em;
}
.c-entry-block img {
  max-width: 100%;
  height: auto !important;
  vertical-align: top;
  /* stylelint-disable-next-line plugin/stylelint-bem-namics */
  /* stylelint-disable-next-line plugin/stylelint-bem-namics */
  /* stylelint-disable-next-line plugin/stylelint-bem-namics */
}
.c-entry-block img[style*="float: left;"] {
  margin: 0 1.5em 1.5em 0;
}
.c-entry-block img[style*="float: right;"] {
  margin: 0 0 1.5em 1.5em;
}
.c-entry-block img.aligncenter {
  display: block;
  margin: 0 auto 1.5em;
}
.c-entry-block img.alignleft {
  float: left;
  margin: 0 1.5em 1.5em 0;
}
.c-entry-block img.alignright {
  float: right;
  margin: 0 0 1.5em 1.5em;
}
@media screen and (max-width: 750px) {
  .c-entry-block img {
    /* stylelint-disable-next-line plugin/stylelint-bem-namics */
  }
  .c-entry-block img[style*="float: left;"], .c-entry-block img[style*="float: right;"] {
    display: block;
    float: none !important;
    margin: 0 auto 1.5em;
  }
  .c-entry-block img.aligncenter, .c-entry-block img.alignleft, .c-entry-block img.alignright {
    display: block;
    float: none;
    margin: 0 auto 1.5em;
  }
}
.c-entry-block table {
  margin: 1.4em 0;
}
.c-entry-block table th {
  background: #eee;
  border: 1px solid #ccc;
  padding: 0.5em;
}
.c-entry-block table td {
  border: 1px solid #ccc;
  padding: 0.5em;
}
.c-entry-block p {
  margin: 1.4em 0;
}
.c-entry-block pre {
  background: #333;
  color: #fff;
  font-family: monospace;
  line-height: 1.2;
  margin: 1.4em 0;
  overflow: auto;
  padding: 5px;
  white-space: pre;
}
.c-entry-block blockquote {
  border-left: 5px solid #eee;
  margin: 1.4em 0;
  padding: 0 0 0 1.4em;
}
.c-entry-block ul,
.c-entry-block ol,
.c-entry-block dl {
  margin: 1.4em 0;
}
.c-entry-block ul li,
.c-entry-block ol li,
.c-entry-block dl li {
  list-style: disc outside;
  margin-left: 1.4em;
}
.c-entry-block ol li {
  list-style: decimal outside;
}
.c-entry-block dl dt {
  font-weight: bold;
}
.c-entry-block dl dd {
  padding-left: 2em;
}

/* Project */
@-webkit-keyframes targetbig {
  0% {
    opacity: 0;
    -webkit-transform: scale(-0.2);
            transform: scale(-0.2);
  }
  40% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes targetbig {
  0% {
    opacity: 0;
    -webkit-transform: scale(-0.2);
            transform: scale(-0.2);
  }
  40% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes targetsmall {
  0% {
    opacity: 0;
    -webkit-transform: scale(-0.6);
            transform: scale(-0.6);
  }
  70% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes targetsmall {
  0% {
    opacity: 0;
    -webkit-transform: scale(-0.6);
            transform: scale(-0.6);
  }
  70% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.p-index__main-visual {
  background: url("../img/views/index/pc/bg-blur.jpg") no-repeat center top/contain;
  overflow: hidden;
  background-color: #fff;
}
@media screen and (max-width: 750px) {
  .p-index__main-visual {
    background: url("../img/views/index/sp/bg-blur.jpg") no-repeat center top/contain;
    background-color: #fff;
  }
}
.p-index__main-visual__part01__inner {
  position: relative;
  text-align: center;
  min-height: 84.6rem;
  height: 100vh;
  padding: 29.4rem 0 0;
}
@media screen and (max-width: 750px) {
  .p-index__main-visual__part01__inner {
    padding: 23.6rem 0 0;
    min-height: 72.1rem;
  }
}
.p-index__main-visual__part01__heading {
  font-family: "Wix Madefor Display", sans-serif;
  font-size: 11rem;
  line-height: 1;
  margin-bottom: 2.1rem;
}
@media screen and (max-width: 750px) {
  .p-index__main-visual__part01__heading {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
}
.p-index__main-visual__part01__catch {
  font-family: "Reddit Sans", sans-serif;
  font-size: 2.5rem;
  color: #333;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 2.8rem;
  margin-bottom: 6.5rem;
}
@media screen and (max-width: 750px) {
  .p-index__main-visual__part01__catch {
    font-size: 1.6rem;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 2;
    margin-top: 1.4rem;
  }
}
.p-index__main-visual__part01__catch__img {
  margin-right: 0.4rem;
}
@media screen and (max-width: 750px) {
  .p-index__main-visual__part01__catch__img {
    width: 6.078rem;
  }
}
.p-index__main-visual__part01__scroll {
  position: relative;
  -webkit-animation: mv-scroll ease-in-out 1s infinite alternate;
          animation: mv-scroll ease-in-out 1s infinite alternate;
  z-index: 2;
}
@media screen and (max-width: 750px) {
  .p-index__main-visual__part01__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.p-index__main-visual__part01__float__img {
  position: absolute;
  -webkit-transform: translate(0);
          transform: translate(0);
}
@media screen and (min-width: 751px) {
  .p-index__main-visual__part01__float__img {
    -webkit-transition: 0s ease-in-out all;
    transition: 0s ease-in-out all;
  }
}
.p-index__main-visual__part01__float__img.is-float01 {
  width: 31.4rem;
  top: 4.7rem;
  left: -9.7rem;
  -webkit-animation: mv-item01 ease-in-out 2s;
          animation: mv-item01 ease-in-out 2s;
}
@media screen and (max-width: 750px) {
  .p-index__main-visual__part01__float__img.is-float01 {
    width: 13.5rem;
    top: 5.9rem;
    left: -5.3rem;
  }
}
.p-index__main-visual__part01__float__img.is-float02 {
  width: 16.9rem;
  top: 11.6rem;
  left: 25.8rem;
  -webkit-animation: mv-item02 ease-in-out 2s;
          animation: mv-item02 ease-in-out 2s;
}
@media screen and (max-width: 750px) {
  .p-index__main-visual__part01__float__img.is-float02 {
    width: 7.3rem;
    top: 10.6rem;
    left: 8.2rem;
  }
}
.p-index__main-visual__part01__float__img.is-float03 {
  width: 11.3rem;
  top: 18.4rem;
  right: 41.7rem;
  -webkit-animation: mv-item03 ease-in-out 2s;
          animation: mv-item03 ease-in-out 2s;
}
@media screen and (max-width: 750px) {
  .p-index__main-visual__part01__float__img.is-float03 {
    width: 5.2rem;
    top: 13.4rem;
    right: 11.3rem;
  }
}
.p-index__main-visual__part01__float__img.is-float04 {
  width: 14rem;
  top: 11rem;
  right: 19.2rem;
  -webkit-animation: mv-item04 ease-in-out 2s;
          animation: mv-item04 ease-in-out 2s;
}
@media screen and (max-width: 750px) {
  .p-index__main-visual__part01__float__img.is-float04 {
    width: 6.5rem;
    top: 8.6rem;
    right: 3.7rem;
  }
}
.p-index__main-visual__part01__float__img.is-float05 {
  width: 35.7rem;
  top: 8.7rem;
  right: -17.6rem;
  -webkit-animation: mv-item05 ease-in-out 2s;
          animation: mv-item05 ease-in-out 2s;
}
@media screen and (max-width: 750px) {
  .p-index__main-visual__part01__float__img.is-float05 {
    width: 16.5rem;
    top: 10rem;
    right: -9.8rem;
  }
}
.p-index__main-visual__part01__float__img.is-float06 {
  width: 16.9rem;
  top: 33.3rem;
  left: -11.5rem;
  -webkit-animation: mv-item06 ease-in-out 2s;
          animation: mv-item06 ease-in-out 2s;
}
@media screen and (max-width: 750px) {
  .p-index__main-visual__part01__float__img.is-float06 {
    width: 7.4rem;
    top: 22.7rem;
    left: -3.2rem;
  }
}
.p-index__main-visual__part01__float__img.is-float07 {
  width: 18.7rem;
  top: 48.9rem;
  left: 5.7rem;
  -webkit-animation: mv-item07 ease-in-out 2s;
          animation: mv-item07 ease-in-out 2s;
}
@media screen and (max-width: 750px) {
  .p-index__main-visual__part01__float__img.is-float07 {
    width: 6.6rem;
    top: 31.8rem;
    left: -1rem;
  }
}
.p-index__main-visual__part01__float__img.is-float08 {
  width: 16.2rem;
  top: 45.2rem;
  right: 4rem;
  -webkit-animation: mv-item08 ease-in-out 2s;
          animation: mv-item08 ease-in-out 2s;
}
@media screen and (max-width: 750px) {
  .p-index__main-visual__part01__float__img.is-float08 {
    width: 5.9rem;
    top: 31.7rem;
    right: -0.5rem;
  }
}
.p-index__main-visual__part01__float__img.is-float09 {
  width: 30rem;
  top: 64.8rem;
  left: 1.4rem;
  -webkit-animation: mv-item09 ease-in-out 2s;
          animation: mv-item09 ease-in-out 2s;
}
@media screen and (max-width: 750px) {
  .p-index__main-visual__part01__float__img.is-float09 {
    width: 10.4rem;
    top: 38.9rem;
    left: -2.3rem;
  }
}
.p-index__main-visual__part01__float__img.is-float10 {
  width: 60.5rem;
  top: 56.2rem;
  left: 31.7rem;
  -webkit-animation: mv-item10 ease-in-out 2s;
          animation: mv-item10 ease-in-out 2s;
}
@media screen and (max-width: 750px) {
  .p-index__main-visual__part01__float__img.is-float10 {
    width: 26.3rem;
    top: 34.5rem;
    left: 4.5rem;
  }
}
.p-index__main-visual__part01__float__img.is-float11 {
  width: 32.7rem;
  top: 63.3rem;
  right: -8.2rem;
  -webkit-animation: mv-item11 ease-in-out 2s;
          animation: mv-item11 ease-in-out 2s;
}
@media screen and (max-width: 750px) {
  .p-index__main-visual__part01__float__img.is-float11 {
    width: 9.2rem;
    top: 38.8rem;
    right: -3.2rem;
  }
}
.p-index__main-visual__part02__inner {
  text-align: center;
  padding: 22.2rem 0 27.3rem;
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-index__main-visual__part02__inner {
    padding: 0.5rem 0 17.2rem;
  }
}
.p-index__main-visual__part02__heading {
  font-family: "Gothic A1", sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 5rem;
  color: #333;
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 750px) {
  .p-index__main-visual__part02__heading {
    font-size: 2.5rem;
    line-height: 3.2rem;
    margin-bottom: 3rem;
  }
}
.p-index__main-visual__part02__heading .is-red {
  color: #ed302f;
}
.p-index__main-visual__part02__catch {
  font-family: "Reddit Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 3rem;
  color: #333;
}
@media screen and (max-width: 750px) {
  .p-index__main-visual__part02__catch {
    line-height: 2.5rem;
    padding: 0 2.3rem;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 2;
  }
}
.p-index__main-visual__part02__float__img {
  position: absolute;
}
.p-index__main-visual__part02__float__img.is-float01 {
  top: 19.4rem;
  left: 23.1rem;
  width: 8.6rem;
}
@media screen and (max-width: 750px) {
  .p-index__main-visual__part02__float__img.is-float01 {
    top: -10.6rem;
    left: 4.7rem;
    width: 4.5rem;
  }
}
.p-index__main-visual__part02__float__img.is-float02 {
  top: 22.2rem;
  left: -4.9rem;
  width: 27.6rem;
}
@media screen and (max-width: 750px) {
  .p-index__main-visual__part02__float__img.is-float02 {
    top: -6.9rem;
    left: -5.3rem;
    width: 11.4rem;
  }
}
.p-index__main-visual__part02__float__img.is-float03 {
  top: 50.3rem;
  left: 17.8rem;
  width: 13.4rem;
}
@media screen and (max-width: 750px) {
  .p-index__main-visual__part02__float__img.is-float03 {
    top: 25.4rem;
    left: -1.1rem;
    width: 7.3rem;
  }
}
.p-index__main-visual__part02__float__img.is-float04 {
  top: 63.9rem;
  left: -18.2rem;
  width: 32.1rem;
}
@media screen and (max-width: 750px) {
  .p-index__main-visual__part02__float__img.is-float04 {
    top: 36.1rem;
    left: -8.9rem;
    width: 19.3rem;
  }
}
.p-index__main-visual__part02__float__img.is-float05 {
  top: 16.2rem;
  right: 2rem;
  width: 21.9rem;
}
@media screen and (max-width: 750px) {
  .p-index__main-visual__part02__float__img.is-float05 {
    top: -15.1rem;
    right: -1.6rem;
    width: 11.9rem;
  }
}
.p-index__main-visual__part02__float__img.is-float06 {
  top: 38.3rem;
  right: -10.1rem;
  width: 24.5rem;
}
@media screen and (max-width: 750px) {
  .p-index__main-visual__part02__float__img.is-float06 {
    top: -3.8rem;
    right: -4.1rem;
    width: 8.5rem;
  }
}
.p-index__main-visual__part02__float__img.is-float07 {
  top: 52.9rem;
  right: 12.8rem;
  width: 14.9rem;
}
@media screen and (max-width: 750px) {
  .p-index__main-visual__part02__float__img.is-float07 {
    top: 25.3rem;
    right: 0.1rem;
    width: 8.3rem;
  }
}
.p-index__main-visual__part02__float__img.is-float08 {
  top: 65.5rem;
  right: -7.3rem;
  width: 15.7rem;
}
@media screen and (max-width: 750px) {
  .p-index__main-visual__part02__float__img.is-float08 {
    top: 38.8rem;
    right: -3.8rem;
    width: 8.7rem;
  }
}
.p-index__main-visual__part02__float__img.is-float09 {
  top: 49.3rem;
  right: 54.5rem;
  width: 7.9rem;
}
@media screen and (max-width: 750px) {
  .p-index__main-visual__part02__float__img.is-float09 {
    top: 27.6rem;
    right: 14.7rem;
    width: 5.2rem;
  }
}
.p-index__main-visual__part03 {
  position: relative;
}
.p-index__main-visual__part03__inner {
  background-color: #f2f2f4;
  border-radius: 1rem;
  position: relative;
  z-index: 1;
  padding: 7.9rem 0 9.1rem;
}
@media screen and (max-width: 750px) {
  .p-index__main-visual__part03__inner {
    padding: 4.7rem 0 6.7rem;
  }
}
.p-index__main-visual__part03__heading {
  font-family: "Gothic A1", sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 5rem;
  color: #333;
  margin-bottom: 5.3rem;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .p-index__main-visual__part03__heading {
    font-size: 2.5rem;
    line-height: 3.2rem;
    margin-bottom: 1.7rem;
  }
}
.p-index__main-visual__part03__heading .is-red {
  color: #ed302f;
}
.p-index__main-visual__part03__checklist {
  padding: 0 6rem 0 10rem;
}
@media screen and (max-width: 750px) {
  .p-index__main-visual__part03__checklist {
    padding: 0 10px 0 4px;
    margin-top: 4.2rem;
  }
}
.p-index__main-visual__part03__checklist__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.1rem;
}
@media screen and (max-width: 750px) {
  .p-index__main-visual__part03__checklist__list {
    gap: 0;
  }
}
@media screen and (min-width: 751px) {
  .p-index__main-visual__part03__checklist__list.is-first {
    margin-bottom: 3.2rem;
  }
}
@media screen and (max-width: 750px) {
  .p-index__main-visual__part03__checklist__list.is-second {
    margin-bottom: -4.2rem;
  }
}
.p-index__main-visual__part03__checklist__list:not(:first-child) {
  margin-top: -4.1rem;
}
@media screen and (max-width: 750px) {
  .p-index__main-visual__part03__checklist__list:not(:first-child) {
    margin-top: 2rem;
  }
}
.p-index__main-visual__part03__checklist__list__img {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (max-width: 750px) {
  .p-index__main-visual__part03__checklist__list__img {
    width: 10.7rem;
    position: relative;
    top: -1.9rem;
  }
}
@media screen and (max-width: 750px) {
  .p-index__main-visual__part03__checklist__list__img.is-first {
    position: relative;
    top: -4.6rem;
  }
}
.p-index__main-visual__part03__checklist__list__txt {
  font-family: "Reddit Sans", sans-serif;
  font-size: 2.5rem;
  line-height: 4.5rem;
  padding-top: 2.8rem;
}
@media screen and (min-width: 751px) {
  .p-index__main-visual__part03__checklist__list__txt.is-second {
    position: relative;
    top: 2.1rem;
  }
}
@media screen and (max-width: 750px) {
  .p-index__main-visual__part03__checklist__list__txt {
    font-size: 1.6rem;
    line-height: 2.5rem;
    margin-left: -0.2rem;
    padding-top: 0;
  }
}
.p-index__main-visual__part04 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 9.2rem 0 21.4rem;
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-index__main-visual__part04 {
    padding: 0.8rem 0 12.9rem;
  }
}
.p-index__main-visual__part04__black-arrow, .p-index__main-visual__part04__red-arrow {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
}
.p-index__main-visual__part04__black-arrow {
  top: -12.5rem;
  z-index: 1;
  opacity: 0;
  -webkit-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
}
@media screen and (max-width: 750px) {
  .p-index__main-visual__part04__black-arrow {
    top: -7.6rem;
  }
}
.is-animated .p-index__main-visual__part04__black-arrow {
  opacity: 1;
  top: -5.3rem;
}
@media screen and (max-width: 750px) {
  .is-animated .p-index__main-visual__part04__black-arrow {
    top: -2.6rem;
  }
}
@media screen and (max-width: 750px) {
  .p-index__main-visual__part04__black-arrow__img {
    width: 15.8rem;
  }
}
.p-index__main-visual__part04__red-arrow {
  z-index: 0;
  top: -12.8rem;
  opacity: 0;
  -webkit-transition: 0.4s ease-in-out 0.1s;
  transition: 0.4s ease-in-out 0.1s;
}
@media screen and (max-width: 750px) {
  .p-index__main-visual__part04__red-arrow {
    top: -9rem;
  }
}
.is-animated .p-index__main-visual__part04__red-arrow {
  -webkit-animation: red-arrow 0.4s ease-in-out 0.1s forwards;
          animation: red-arrow 0.4s ease-in-out 0.1s forwards;
  opacity: 1;
  top: -3.6rem;
}
@media screen and (max-width: 750px) {
  .is-animated .p-index__main-visual__part04__red-arrow {
    top: -1.5rem;
  }
}
.p-index__main-visual__part04__red-arrow__img {
  width: 31.367rem;
}
.p-index__main-visual__part04__bg {
  font-family: "Gothic A1", sans-serif;
  font-size: 15.5rem;
  font-weight: 900;
  line-height: 1;
  color: #f7f7f7;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 750px) {
  .p-index__main-visual__part04__bg {
    font-size: 10.7rem;
    line-height: 10rem;
    text-align: center;
  }
}
.p-index__main-visual__part04__lead {
  font-family: "Gothic A1", sans-serif;
  font-size: 8.9rem;
  font-weight: 800;
  line-height: 1;
  color: #333;
  margin-top: -6.9rem;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-in-out 0.4s;
  transition: opacity 0.4s ease-in-out 0.4s;
}
@media screen and (max-width: 750px) {
  .p-index__main-visual__part04__lead {
    font-size: 6.5rem;
    line-height: 6.5rem;
    text-align: center;
    margin-top: -29.3rem;
  }
}
.p-index__main-visual__part04__lead .is-red {
  color: #ed302f;
}
.is-animated .p-index__main-visual__part04__lead {
  opacity: 1;
}
.p-index__products {
  position: relative;
  background: #fff;
}
@media screen and (max-width: 750px) {
  .p-index__products {
    margin-top: -5rem;
  }
}
.p-index__products::before {
  content: "";
  display: block;
  position: absolute;
  background-color: #333;
  inset: 0 0 20.9rem 0;
}
@media screen and (max-width: 750px) {
  .p-index__products::before {
    inset: 0 0 16rem 0;
  }
}
.p-index__products__layout {
  position: relative;
}
.p-index__products__inner {
  padding: 11rem 0 0;
}
@media screen and (max-width: 750px) {
  .p-index__products__inner {
    padding: 10.5rem 0 0;
  }
}
.p-index__products__heading {
  font-family: "Gothic A1", sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 5rem;
  color: #fff;
  text-align: center;
  margin-bottom: 5.2rem;
}
@media screen and (max-width: 750px) {
  .p-index__products__heading {
    font-size: 2.5rem;
    line-height: 3.2rem;
    margin-bottom: 3.9rem;
  }
}
.p-index__products__list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .p-index__products__list__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}
@media screen and (min-width: 751px) {
  .p-index__products__list__item.is-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (max-width: 750px) {
  .p-index__products__list__item.is-sp-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.p-index__products__list__item:not(:last-child) {
  margin-bottom: 2rem;
}
@media screen and (max-width: 750px) {
  .p-index__products__list__item:not(:last-child) {
    margin-bottom: 1.1rem;
  }
}
.p-index__products__list__item__img01, .p-index__products__list__item__img02, .p-index__products__list__item__img03 {
  width: 57.6rem;
  height: 65.7rem;
}
@media screen and (max-width: 750px) {
  .p-index__products__list__item__img01, .p-index__products__list__item__img02, .p-index__products__list__item__img03 {
    width: auto;
    height: 38.2rem;
  }
}
.p-index__products__list__item__img01__src, .p-index__products__list__item__img02__src, .p-index__products__list__item__img03__src {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-index__products__list__item__texts01, .p-index__products__list__item__texts02 {
  width: 57.6rem;
  border-radius: 1rem;
  padding: 19.7rem 5.4rem 0 5.6rem;
}
@media screen and (max-width: 750px) {
  .p-index__products__list__item__texts01, .p-index__products__list__item__texts02 {
    width: auto;
    padding: 6.2rem 5.4rem 6.4rem 2rem;
  }
}
.p-index__products__list__item__texts01__heading, .p-index__products__list__item__texts02__heading {
  font-family: "Gothic A1", sans-serif;
  font-size: 3.3rem;
  font-weight: 700;
  line-height: 4.7rem;
  color: #333;
  margin-bottom: 4.6rem;
}
@media screen and (max-width: 750px) {
  .p-index__products__list__item__texts01__heading, .p-index__products__list__item__texts02__heading {
    font-size: 2rem;
    line-height: 3rem;
    margin-bottom: 2.3rem;
  }
}
@media screen and (max-width: 750px) {
  .p-index__products__list__item__texts01__heading.is-wide, .p-index__products__list__item__texts02__heading.is-wide {
    position: relative;
    width: 28.5rem;
  }
}
.p-index__products__list__item__texts01__catch, .p-index__products__list__item__texts02__catch {
  font-family: "Reddit Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 3rem;
  color: #333;
  letter-spacing: -0.2px;
}
@media screen and (max-width: 750px) {
  .p-index__products__list__item__texts01__catch, .p-index__products__list__item__texts02__catch {
    line-height: 2.5rem;
  }
}
.p-index__products__list__item__img01 {
  border-radius: 1rem;
  overflow: hidden;
}
.p-index__products__list__item__texts01 {
  background-color: #fff;
  position: relative;
}
@media screen and (min-width: 751px) {
  .p-index__products__list__item__texts01 {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 5.6rem;
  }
}
.p-index__products__list__item__texts01::after {
  content: "";
  display: block;
  width: 9.6rem;
  height: 65.7rem;
  background: url("../img/views/index/pc/bg-pattern.png") no-repeat center center/cover;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 750px) {
  .p-index__products__list__item__texts01::after {
    width: 5.583rem;
    height: 100%;
  }
}
.p-index__products__list__item__img02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 1.7rem;
}
@media screen and (max-width: 750px) {
  .p-index__products__list__item__img02 {
    gap: 0.7rem;
    row-gap: 1.1rem;
    height: auto;
  }
}
.p-index__products__list__item__img02__sublist {
  width: 27.9rem;
}
@media screen and (max-width: 750px) {
  .p-index__products__list__item__img02__sublist {
    width: 100%;
    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;
  }
}
.p-index__products__list__item__img02__sublist__pic {
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .p-index__products__list__item__img02__sublist__pic {
    width: 16.4rem;
    height: 16.5rem;
  }
}
.p-index__products__list__item__img02__sublist__pic__src {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-index__products__list__item__img02__sublist__text {
  font-family: "Reddit Sans", sans-serif;
  font-size: 1.4rem;
  line-height: 1;
  color: #fff;
  margin-top: 1.2rem;
  margin-bottom: 0.5rem;
  white-space: nowrap;
}
@media screen and (max-width: 750px) {
  .p-index__products__list__item__img02__sublist__text {
    font-size: 1.4rem;
    line-height: 2rem;
    position: relative;
    padding-left: 2.1rem;
    margin-left: 1rem;
    margin-top: 0.5rem;
  }
}
.p-index__products__list__item__img02__sublist__text__small {
  font-family: "Reddit Sans", sans-serif;
  font-size: 1.4rem;
  line-height: 1;
  color: #fff;
  margin-top: 0.6rem;
  display: block;
  margin-left: 1.8rem;
}
@media screen and (max-width: 750px) {
  .p-index__products__list__item__img02__sublist__text__small {
    font-size: 1.4rem;
    line-height: 2rem;
    position: relative;
    margin-top: 1rem;
    padding-left: 0;
    margin-left: 0;
  }
}
.p-index__products__list__item__img02__sublist__text::before {
  content: "";
  display: inline-block;
  width: 1.2rem;
  height: 1.3rem;
  background-color: #ed302f;
  border-radius: 0.2rem;
  margin-right: 0.2rem;
  position: relative;
  top: 0.1rem;
}
@media screen and (max-width: 750px) {
  .p-index__products__list__item__img02__sublist__text::before {
    position: absolute;
    left: 0;
  }
}
.p-index__products__list__item__img02__sublist__text.is-black {
  color: #333;
}
.p-index__products__list__item__img03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 1.7rem;
}
@media screen and (max-width: 750px) {
  .p-index__products__list__item__img03 {
    gap: 0.7rem;
    row-gap: 1.1rem;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    margin: auto;
  }
}
.p-index__products__list__item__img03__sublist {
  width: 27.9rem;
}
@media screen and (max-width: 750px) {
  .p-index__products__list__item__img03__sublist {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-index__products__list__item__img03__sublist__pic {
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .p-index__products__list__item__img03__sublist__pic {
    width: 16.4rem;
    height: 16.5rem;
  }
}
.p-index__products__list__item__img03__sublist__pic__src {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-index__products__list__item__img03__sublist__text {
  font-family: "Reddit Sans", sans-serif;
  font-size: 1.4rem;
  line-height: 1;
  color: #fff;
  margin-top: 1.2rem;
  margin-bottom: 0.5rem;
  white-space: nowrap;
}
@media screen and (max-width: 750px) {
  .p-index__products__list__item__img03__sublist__text {
    font-size: 1.4rem;
    line-height: 2rem;
    position: relative;
    padding-left: 2.1rem;
    margin-left: 1rem;
    margin-top: 0.5rem;
  }
}
.p-index__products__list__item__img03__sublist__text__small {
  font-family: "Reddit Sans", sans-serif;
  font-size: 1.4rem;
  line-height: 1;
  color: #fff;
  margin-top: 0.6rem;
  display: block;
  margin-left: 1.8rem;
}
@media screen and (max-width: 750px) {
  .p-index__products__list__item__img03__sublist__text__small {
    font-size: 1.4rem;
    line-height: 2rem;
    position: relative;
    margin-top: 1rem;
    padding-left: 0;
    margin-left: 0;
  }
}
.p-index__products__list__item__img03__sublist__text::before {
  content: "";
  display: inline-block;
  width: 1.2rem;
  height: 1.3rem;
  background-color: #ed302f;
  border-radius: 0.2rem;
  margin-right: 0.2rem;
  position: relative;
  top: 0.1rem;
}
@media screen and (max-width: 750px) {
  .p-index__products__list__item__img03__sublist__text::before {
    position: absolute;
    left: 0;
  }
}
.p-index__products__list__item__img03__sublist__text.is-black {
  color: #333;
}
.p-index__products__list__item__texts02 {
  background-color: #ed302f;
}
@media screen and (min-width: 751px) {
  .p-index__products__list__item__texts02 {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 5.6rem;
  }
}
@media screen and (max-width: 750px) {
  .p-index__products__list__item__texts02 {
    padding: 6.2rem 0 6.4rem;
  }
}
.p-index__products__list__item__texts02__heading, .p-index__products__list__item__texts02__catch {
  color: #fff;
}
@media screen and (min-width: 751px) {
  .p-index__products__list__item__texts02__heading {
    margin-bottom: 3.4rem;
  }
}
@media screen and (max-width: 750px) {
  .p-index__products__list__item__texts02__heading {
    padding: 0 5.4rem 0 2rem;
  }
}
@media screen and (max-width: 750px) {
  .p-index__products__list__item__texts02__heading.is-custom {
    padding-right: 0;
  }
}
@media screen and (max-width: 750px) {
  .p-index__products__list__item__texts02__catch {
    padding: 0 2.4rem 0 2rem;
    letter-spacing: 0.05rem;
  }
}
@media screen and (max-width: 750px) {
  .p-index__products__list__item__texts02__catch.is-custom {
    padding: 0;
    width: 29.5rem;
    margin: auto;
  }
}
.p-index__list {
  color: #333;
  background-color: #fff;
  padding-top: 10rem;
  padding-bottom: 6.8rem;
}
@media screen and (max-width: 750px) {
  .p-index__list {
    padding-top: 5.8rem;
  }
}
@media screen and (max-width: 750px) {
  .p-index__list__layout {
    margin: 0;
    padding: 0;
  }
}
.p-index__list__heading {
  font-family: "Gothic A1", sans-serif;
  font-size: 3.3rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: capitalize;
}
@media screen and (max-width: 750px) {
  .p-index__list__heading {
    font-size: 2rem;
    line-height: 3rem;
  }
}
.p-index__list__type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 6rem;
  -webkit-column-gap: 0.8rem;
     -moz-column-gap: 0.8rem;
          column-gap: 0.8rem;
}
.p-index__list__type__text {
  background-color: #f5f7f8;
  border-radius: 0.5rem;
  text-align: center;
  width: 46.4rem;
  height: 3.8rem;
  font-family: "Gothic A1", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-index__list__cont {
  position: relative;
  padding-left: 6.1rem;
  margin-top: 2rem;
}
@media screen and (max-width: 750px) {
  .p-index__list__cont {
    width: 33.5rem;
    margin: auto;
    margin-top: 3.6rem;
    padding-left: 4.2rem;
  }
}
.p-index__list__arrow {
  position: absolute;
  top: 1.7rem;
  left: 0.4rem;
  width: 3.808rem;
  height: 86rem;
}
@media screen and (max-width: 750px) {
  .p-index__list__arrow {
    width: 3.213rem;
    height: auto;
    top: 0;
  }
}
.p-index__list__pla {
  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;
  margin-bottom: 1rem;
}
@media screen and (max-width: 750px) {
  .p-index__list__pla {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 29.2rem;
    margin: auto;
  }
}
.p-index__list__pla.is-light {
  margin-bottom: 0;
}
.p-index__list__pla__info {
  border-radius: 0.5rem;
  width: 15.1rem;
  position: relative;
  padding-top: 3rem;
  padding-left: 2.1rem;
  padding-right: 2rem;
  height: 100%;
  margin-right: 2.1rem;
}
@media screen and (max-width: 750px) {
  .p-index__list__pla__info {
    width: 100%;
    margin-right: 0;
    padding: 26px 20px 3rem 21px;
  }
}
.is-black .p-index__list__pla__info {
  background-color: #333;
  color: #fff;
}
@media screen and (min-width: 751px) {
  .is-black .p-index__list__pla__info {
    min-height: 27.6rem;
  }
}
.is-gray .p-index__list__pla__info {
  background-color: #908f8f;
  color: #fff;
}
@media screen and (min-width: 751px) {
  .is-gray .p-index__list__pla__info {
    min-height: 32.5rem;
  }
}
@media screen and (max-width: 750px) {
  .is-gray .p-index__list__pla__info {
    margin-top: 2rem;
  }
}
.is-light .p-index__list__pla__info {
  background-color: #e3e3e3;
  color: #333;
}
@media screen and (min-width: 751px) {
  .is-light .p-index__list__pla__info {
    min-height: 25.5rem;
  }
}
@media screen and (max-width: 750px) {
  .is-light .p-index__list__pla__info {
    margin-top: 2rem;
  }
}
.p-index__list__pla__info__heading {
  font-family: "Gothic A1", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 2.1rem;
}
@media screen and (max-width: 750px) {
  .p-index__list__pla__info__heading {
    line-height: 2.5rem;
  }
}
.p-index__list__pla__info__line {
  width: 100%;
  height: 0.1rem;
  background-color: #fff;
  margin-top: 1.2rem;
}
@media screen and (max-width: 750px) {
  .p-index__list__pla__info__line {
    margin-top: 1.7rem;
  }
}
.p-index__list__pla__info__desc {
  font-family: "Reddit Sans", sans-serif;
  font-size: 1.6rem;
  line-height: 2rem;
  font-weight: 400;
  margin-top: 1.5rem;
}
@media screen and (max-width: 750px) {
  .p-index__list__pla__info__desc {
    font-size: 1.4rem;
    line-height: 1.8rem;
    margin-top: 1.9rem;
  }
}
.p-index__list__pla__info__temp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 1.4rem;
}
@media screen and (max-width: 750px) {
  .p-index__list__pla__info__temp {
    position: absolute;
    bottom: 3.4rem;
    right: 2.1rem;
  }
}
.p-index__list__pla__info__temp__text {
  font-family: "Gothic A1", sans-serif;
  font-weight: 700;
  line-height: 1;
  font-size: 3rem;
}
@media screen and (max-width: 750px) {
  .p-index__list__pla__info__temp__text {
    font-size: 2.5rem;
  }
}
.p-index__list__pla__info__temp__text__small {
  font-size: 2rem;
}
@media screen and (max-width: 750px) {
  .p-index__list__pla__info__temp__text__small {
    font-size: 2.5rem;
  }
}
.p-index__list__pla__name {
  width: 46.4rem;
  margin-right: 1.1rem;
}
@media screen and (max-width: 750px) {
  .p-index__list__pla__name {
    width: 100%;
  }
}
.p-index__list__pla__name.is-active {
  height: auto;
}
.p-index__list__pla__name__toggle {
  width: 100%;
  height: 7rem;
  border-radius: 0.5rem;
  background-color: #f5f7f8;
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  margin-top: 1rem;
}
.p-index__list__pla__name__toggle__text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Gothic A1", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
}
.p-index__list__pla__name__toggle__arrow {
  position: absolute;
  right: 1.32rem;
}
.is-active .p-index__list__pla__name__toggle__arrow {
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1);
}
.p-index__list__pla__name__rounded {
  border: 1px solid #cdd6dd;
  border-radius: 0.5rem;
  background-color: #fff;
  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;
  padding-top: 3.4rem;
  padding-left: 4.1rem;
  width: 100%;
  -webkit-column-gap: 6.7rem;
     -moz-column-gap: 6.7rem;
          column-gap: 6.7rem;
}
@media screen and (max-width: 750px) {
  .p-index__list__pla__name__rounded {
    display: none;
    margin-top: 1rem;
    padding-top: 2.3rem;
    padding-left: 2.1rem;
    padding-bottom: 2rem;
    -webkit-column-gap: 1.8rem;
       -moz-column-gap: 1.8rem;
            column-gap: 1.8rem;
  }
}
@media screen and (min-width: 751px) {
  .is-black .p-index__list__pla__name__rounded {
    min-height: 27.6rem;
  }
}
@media screen and (min-width: 751px) {
  .is-gray .p-index__list__pla__name__rounded {
    min-height: 32.5rem;
  }
}
@media screen and (min-width: 751px) {
  .is-light .p-index__list__pla__name__rounded {
    min-height: 25.5rem;
  }
}
.p-index__list__pla__name__rounded__2col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.8rem;
     -moz-column-gap: 1.8rem;
          column-gap: 1.8rem;
}
.p-index__list__pla__name__rounded__kind {
  font-family: "Reddit Sans", sans-serif;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 2.1rem;
}
@media screen and (max-width: 750px) {
  .p-index__list__pla__name__rounded__kind {
    row-gap: 1.7rem;
  }
}
.p-index__list__pla__name__rounded__kind__item__heading {
  font-size: 3rem;
  line-height: 1;
  font-weight: 700;
}
@media screen and (max-width: 750px) {
  .p-index__list__pla__name__rounded__kind__item__heading {
    font-size: 2.6rem;
  }
}
.p-index__list__pla__name__rounded__kind__item__subtext {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  margin-top: 0.7rem;
}
@media screen and (max-width: 750px) {
  .p-index__list__pla__name__rounded__kind__item__subtext {
    font-size: 1rem;
  }
}
.p-index__solutions {
  padding-top: 9.2rem;
  overflow: hidden;
  background: #fff;
}
@media screen and (max-width: 750px) {
  .p-index__solutions {
    padding-top: 6.6rem;
  }
}
.p-index__solutions__inner {
  position: relative;
  z-index: 1;
}
.p-index__solutions__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 2.3rem;
  padding: 0 0 0 3.5rem;
  margin-bottom: 4.7rem;
}
@media screen and (min-width: 751px) {
  .p-index__solutions__top {
    padding-left: 0;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    position: relative;
    left: 0.8rem;
    -webkit-column-gap: 6rem;
       -moz-column-gap: 6rem;
            column-gap: 6rem;
  }
}
@media screen and (max-width: 750px) {
  .p-index__solutions__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
    gap: 4.5rem;
    margin-bottom: -3.4rem;
  }
}
.p-index__solutions__top__heading {
  font-family: "Gothic A1", sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 5rem;
  color: #fff;
  background-color: #ed302f;
  text-align: center;
  min-width: 57.6rem;
  border-radius: 1rem;
  padding: 11.3rem 0 9.9rem;
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-index__solutions__top__heading {
    min-width: unset;
    width: 100%;
    font-size: 2.5rem;
    line-height: 3.2rem;
    padding: 6.4rem 0 5.6rem;
  }
}
.p-index__solutions__top__heading::before {
  content: "";
  display: block;
  width: 9.6rem;
  height: 100%;
  position: absolute;
  background: url("../img/views/index/pc/bg-pattern02.png") no-repeat center center/cover;
  top: 0;
  right: 0;
}
@media screen and (max-width: 750px) {
  .p-index__solutions__top__heading::before {
    width: 5.583rem;
  }
}
.p-index__solutions__top__texts {
  color: #333;
  width: 52.7rem;
  position: relative;
  left: -0.8rem;
}
@media screen and (max-width: 750px) {
  .p-index__solutions__top__texts {
    width: 33.5rem;
    margin: auto;
    left: unset;
  }
}
.p-index__solutions__top__texts__heading {
  font-family: "Gothic A1", sans-serif;
  font-size: 3.3rem;
  font-weight: 700;
  line-height: 4.7rem;
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 750px) {
  .p-index__solutions__top__texts__heading {
    font-size: 2rem;
    line-height: 3rem;
  }
}
.p-index__solutions__top__texts__catch {
  font-family: "Reddit Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 3rem;
  position: relative;
  top: -1.2rem;
}
@media screen and (max-width: 750px) {
  .p-index__solutions__top__texts__catch {
    line-height: 2.5rem;
    padding-right: 1rem;
    letter-spacing: 0.5px;
    top: -2.8rem;
  }
}
.p-index__solutions__flow {
  width: 87rem;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .p-index__solutions__flow {
    width: 44.3rem;
    margin: 0 auto 0 -5.4rem;
    position: relative;
    z-index: 1;
  }
}
.p-index__solutions__flow__src {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-index__solutions__map__inner {
  position: relative;
  padding: 29.2rem 0 8.2rem;
}
@media screen and (max-width: 750px) {
  .p-index__solutions__map__inner {
    padding: 25.2rem 0 2.8rem;
  }
}
.p-index__solutions__map__bg {
  width: 136.6rem;
  position: absolute;
  left: -13.9rem;
  top: -6.4rem;
}
@media screen and (max-width: 750px) {
  .p-index__solutions__map__bg {
    width: 110.2rem;
    left: -21.6rem;
    top: -19.7rem;
  }
}
.p-index__solutions__map__bg__src {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-index__solutions__map__bg__pin {
  position: absolute;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-index__solutions__map__bg__pin.is-pin01 {
  top: 22.3rem;
  left: 56.8rem;
}
@media screen and (max-width: 750px) {
  .p-index__solutions__map__bg__pin.is-pin01 {
    top: 17.3rem;
    left: 44.9rem;
  }
}
.p-index__solutions__map__bg__pin.is-pin02 {
  top: 22rem;
  left: 28.7rem;
}
@media screen and (max-width: 750px) {
  .p-index__solutions__map__bg__pin.is-pin02 {
    top: 17rem;
    left: 21.9rem;
  }
}
.p-index__solutions__map__bg__pin.is-pin03 {
  top: 43.8rem;
  left: 31rem;
}
@media screen and (max-width: 750px) {
  .p-index__solutions__map__bg__pin.is-pin03 {
    top: 34.6rem;
    left: 24rem;
  }
}
.p-index__solutions__map__bg__pin__name {
  font-family: "Reddit Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1;
  color: #ed302f;
  margin-bottom: 1.4rem;
  opacity: 0;
  pointer-events: none;
}
.p-index__solutions__map__bg__pin__name.is-show {
  opacity: 1;
}
.p-index__solutions__map__bg__pin__icon {
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
  -webkit-transition: 0.1s ease-in;
  transition: 0.1s ease-in;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.is-animated .p-index__solutions__map__bg__pin__icon {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.p-index__solutions__map__bg__pin__icon.is-big {
  width: 4.7rem;
  height: 6.6rem;
}
@media screen and (max-width: 750px) {
  .p-index__solutions__map__bg__pin__icon.is-big {
    width: 3.819rem;
    height: 5.178rem;
  }
}
.p-index__solutions__map__bg__pin__icon.is-small {
  width: 3.4rem;
  height: 4.7rem;
}
@media screen and (max-width: 750px) {
  .p-index__solutions__map__bg__pin__icon.is-small {
    width: 2.737rem;
    height: 3.783rem;
  }
}
.p-index__solutions__map__bg__pin__icon__src {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.is-pin02 .p-index__solutions__map__bg__pin__icon {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.is-pin03 .p-index__solutions__map__bg__pin__icon {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.p-index__solutions__map__bg__target {
  position: absolute;
  bottom: 0;
  bottom: -2.5rem;
  opacity: 0;
  -webkit-transition: opacity 0.1s;
  transition: opacity 0.1s;
}
.is-animated .p-index__solutions__map__bg__target {
  opacity: 1;
}
.is-pin02 .p-index__solutions__map__bg__target {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.is-pin03 .p-index__solutions__map__bg__target {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
@media screen and (max-width: 750px) {
  .p-index__solutions__map__bg__target {
    bottom: -2.1rem;
  }
}
.p-index__solutions__map__bg__target.is-small {
  bottom: -2.2rem;
}
@media screen and (max-width: 750px) {
  .p-index__solutions__map__bg__target.is-small {
    bottom: -1.8rem;
  }
}
.p-index__solutions__map__bg__target__pt {
  width: 5.4rem;
  height: 5.4rem;
  -webkit-perspective: 15.8rem;
          perspective: 15.8rem;
}
@media screen and (max-width: 750px) {
  .p-index__solutions__map__bg__target__pt {
    width: 4.5rem;
    height: 4.5rem;
  }
}
.is-small .p-index__solutions__map__bg__target__pt {
  width: 4.5rem;
  height: 4.5rem;
}
@media screen and (max-width: 750px) {
  .is-small .p-index__solutions__map__bg__target__pt {
    width: 4rem;
    height: 4rem;
  }
}
.p-index__solutions__map__bg__target__pt__round {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transform: rotateX(52deg) rotateY(0deg);
          transform: rotateX(52deg) rotateY(0deg);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}
.p-index__solutions__map__bg__target__pt__round__small {
  position: absolute;
  width: calc(100% - 2.5rem);
  height: calc(100% - 2.5rem);
  border-radius: 50%;
  border: 1px solid #e02f2f;
  background-color: #fff;
  z-index: 3;
  -webkit-animation-name: targetsmall;
          animation-name: targetsmall;
  -webkit-animation-duration: 2.1s;
          animation-duration: 2.1s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
@media screen and (max-width: 750px) {
  .p-index__solutions__map__bg__target__pt__round__small {
    width: calc(100% - 2.5rem);
    height: calc(100% - 2.5rem);
  }
}
.p-index__solutions__map__bg__target__pt__round__big {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #e02f2f;
  background-color: #fff;
  -webkit-transform: scale(-0.2);
          transform: scale(-0.2);
  -webkit-animation-name: targetbig;
          animation-name: targetbig;
  -webkit-animation-duration: 2.1s;
          animation-duration: 2.1s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.p-index__solutions__map__info {
  position: relative;
  width: 67.7rem;
  margin: 0 -4.1rem 0 auto;
}
@media screen and (max-width: 750px) {
  .p-index__solutions__map__info {
    width: auto;
    margin: unset;
  }
}
.p-index__solutions__map__info__heading {
  font-family: "Gothic A1", sans-serif;
  font-size: 3.3rem;
  line-height: 4.7rem;
  color: #333;
  margin-bottom: 1.8rem;
}
@media screen and (max-width: 750px) {
  .p-index__solutions__map__info__heading {
    font-size: 2rem;
    line-height: 3rem;
    margin-bottom: 2.2rem;
  }
}
.p-index__solutions__map__info__heading .is-red {
  color: #ed302f;
}
.p-index__solutions__map__info__catch {
  font-family: "Reddit Sans", sans-serif;
  font-size: 1.6rem;
  line-height: 3rem;
  color: #333;
  margin-bottom: 7.6rem;
}
@media screen and (max-width: 750px) {
  .p-index__solutions__map__info__catch {
    line-height: 2.5rem;
    margin-bottom: 3rem;
  }
}
.p-index__solutions__map__info__location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .p-index__solutions__map__info__location {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3.3rem;
  }
}
.p-index__solutions__map__info__location__list__name {
  font-family: "Reddit Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  color: #ed302f;
  margin-bottom: 1.1rem;
}
.p-index__solutions__map__info__location__list__img {
  width: 32.8rem;
  border-radius: 1rem;
  overflow: hidden;
}
.p-index__solutions__map__info__location__list__img__src {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-index__solutions__delivery {
  padding-top: 9.2rem;
}
@media screen and (max-width: 750px) {
  .p-index__solutions__delivery {
    padding-top: 6.6rem;
  }
}
.p-index__solutions__delivery__heading {
  font-family: "Gothic A1", sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 5rem;
  color: #333;
  margin-bottom: 2rem;
}
@media screen and (max-width: 750px) {
  .p-index__solutions__delivery__heading {
    font-size: 2.5rem;
    line-height: 3.2rem;
    margin-bottom: 3.6rem;
  }
}
.p-index__solutions__delivery__heading .is-red {
  color: #ed302f;
}
.p-index__solutions__delivery__catch {
  font-family: "Reddit Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 3rem;
  color: #333;
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 750px) {
  .p-index__solutions__delivery__catch {
    line-height: 2.5rem;
    padding-right: 1rem;
    margin-bottom: 2.6rem;
  }
}
.p-index__solutions__delivery__table {
  width: 100%;
  text-align: left;
  display: block;
}
@media screen and (max-width: 750px) {
  .p-index__solutions__delivery__table {
    overflow: scroll;
  }
}
.p-index__solutions__delivery__table__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 117rem;
}
.p-index__solutions__delivery__table__head, .p-index__solutions__delivery__table__data {
  border: 1px solid #cecece;
  display: block;
}
.p-index__solutions__delivery__table__head {
  background-color: #e8e8e8;
  font-family: "Reddit Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 2.8rem;
  color: #333;
  padding: 1.4rem 1.9rem 1.5rem;
}
.p-index__solutions__delivery__table__head:first-child {
  border-top-left-radius: 1rem;
  border-right: unset;
  width: 46.2rem;
}
.p-index__solutions__delivery__table__head:last-child {
  border-top-right-radius: 1rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.p-index__solutions__delivery__table__data {
  font-family: "Reddit Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 2.8rem;
  color: #333;
  border-top: unset;
  padding: 1.4rem 1.9rem 1.2rem;
  background-color: #fff;
  text-transform: capitalize;
}
.p-index__solutions__delivery__table__data .is-bullet {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background-color: #ffd5d5;
  border-radius: 50%;
  position: relative;
  margin-right: 1rem;
}
.p-index__solutions__delivery__table__data .is-bullet::after {
  content: "";
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  background-color: #ed302f;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-index__solutions__delivery__table__data.is-border-last:first-child {
  border-bottom-left-radius: 1rem;
}
.p-index__solutions__delivery__table__data.is-border-last:last-child {
  border-bottom-right-radius: 1rem;
}
.p-index__solutions__delivery__table__data:first-child {
  width: 46.2rem;
  border-right: unset;
}
.p-index__solutions__delivery__table__data:last-child {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-left: 2.9rem;
}
.p-index__case {
  position: relative;
  margin-top: -16.6rem;
  padding: 37.8rem 0 9rem;
  background: #fff;
}
@media screen and (max-width: 750px) {
  .p-index__case {
    padding: 27.8rem 0 2.8rem;
  }
}
.p-index__case::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0 0 48.6rem 0;
  background-color: #333;
  z-index: 0;
}
.p-index__case__buffer {
  height: 9.2rem;
  margin-top: -9.2rem;
  visibility: hidden;
}
@media screen and (max-width: 750px) {
  .p-index__case__buffer {
    height: 6.6rem;
    margin-top: -6.6rem;
  }
}
.p-index__case__heading {
  font-family: "Gothic A1", sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  margin-bottom: 5.6rem;
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-index__case__heading {
    font-size: 2.5rem;
    margin-bottom: 4.9rem;
  }
}
.p-index__case__studies {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .p-index__case__studies {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (min-width: 751px) {
  .p-index__case__studies__list:nth-child(2) {
    margin-top: 6.4rem;
  }
}
@media screen and (min-width: 751px) {
  .p-index__case__studies__list:nth-child(3) {
    margin-top: 12.8rem;
  }
}
@media screen and (max-width: 750px) {
  .p-index__case__studies__list:not(:last-child) {
    margin-bottom: 4rem;
  }
}
.p-index__case__studies__list__num {
  background-color: #ed302f;
  color: #fff;
  font-family: "Reddit Sans", sans-serif;
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  width: 25.2rem;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  padding: 0.8rem 0 1.6rem 2.4rem;
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-index__case__studies__list__num {
    font-size: 4.5rem;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    padding: 1.2rem 0 1.6rem 2.4rem;
  }
}
.p-index__case__studies__list__num::after {
  content: "";
  display: block;
  width: 9.6rem;
  height: 100%;
  background: url("../img/views/index/pc/bg-pattern02.png") no-repeat center center/cover;
  position: absolute;
  top: 0;
  right: 0;
}
.p-index__case__studies__list__content {
  position: relative;
  margin-top: -0.8rem;
  width: 37.9rem;
  background-color: #fff;
  border-radius: 1rem;
  padding: 2rem 2rem 3rem;
  -webkit-box-shadow: 0 0 3.6rem rgba(0, 0, 0, 0.09);
          box-shadow: 0 0 3.6rem rgba(0, 0, 0, 0.09);
}
@media screen and (max-width: 750px) {
  .p-index__case__studies__list__content {
    width: auto;
    padding: 1.2rem 2rem 3rem;
  }
}
.p-index__case__studies__list__content__prob {
  font-family: "Reddit Sans", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 5rem;
  color: #ed302f;
  margin-bottom: -0.6rem;
}
@media screen and (max-width: 750px) {
  .p-index__case__studies__list__content__prob {
    font-size: 1.8rem;
  }
}
.p-index__case__studies__list__content__prob-text {
  font-family: "Reddit Sans", sans-serif;
  font-size: 2.4rem;
  font-weight: normal;
  line-height: 4.5rem;
  color: #333;
  margin-bottom: 3.1rem;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 750px) {
  .p-index__case__studies__list__content__prob-text {
    font-size: 1.8rem;
    line-height: 3rem;
    letter-spacing: 0.5px;
  }
}
.p-index__case__studies__list__content__sol {
  font-family: "Gothic A1", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 5rem;
  color: #06387b;
  margin-bottom: -0.7rem;
}
@media screen and (max-width: 750px) {
  .p-index__case__studies__list__content__sol {
    font-size: 1.8rem;
  }
}
.p-index__case__studies__list__content__sol-text {
  font-family: "Reddit Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 3rem;
  color: #333;
  margin-bottom: 1.4rem;
  width: 32.5rem;
  letter-spacing: 0.04rem;
}
@media screen and (max-width: 750px) {
  .p-index__case__studies__list__content__sol-text {
    line-height: 2.5rem;
    letter-spacing: 0.05rem;
    width: 100%;
  }
}
.p-index__case__studies__list__content__sol-text__img {
  width: 6.078rem;
  position: relative;
  top: 0.8rem;
}
@media screen and (min-width: 751px) {
  .p-index__case__studies__list__content__sol-text.is-third {
    width: 33.8rem;
  }
}
.p-index__case__studies__list__content__img, .p-index__case__studies__list__content__vid {
  width: 33.8rem;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .p-index__case__studies__list__content__img, .p-index__case__studies__list__content__vid {
    width: 100%;
  }
}
.p-index__case__studies__list__content__img__src, .p-index__case__studies__list__content__vid__src {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-index__case__studies__list__content__vid__button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.p-index__about {
  padding-top: 9.2rem;
  padding-bottom: 11.8rem;
  background: #fff;
}
@media screen and (max-width: 750px) {
  .p-index__about {
    padding-top: 6.6rem;
    padding-bottom: 4.3rem;
  }
}
.p-index__about__heading {
  text-align: center;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 5rem;
  color: #333;
  margin-bottom: 5.3rem;
}
@media screen and (max-width: 750px) {
  .p-index__about__heading {
    font-size: 2.5rem;
    line-height: 3.2rem;
    margin-bottom: 5.1rem;
  }
}
.p-index__about__heading .is-red {
  color: #ed302f;
}
.p-index__about__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .p-index__about__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.9rem;
    width: 33.5rem;
    margin: auto;
  }
}
.p-index__about__content__base {
  width: 57.6rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .p-index__about__content__base {
    width: 100%;
  }
}
.p-index__about__content__base__text {
  color: #fff;
  background: #1d3783 url("../img/views/index/pc/img-about-side.png") no-repeat top left;
  background-size: 9.6rem auto;
  border-radius: 1rem;
  padding-top: 9.6rem;
  padding-left: 4rem;
  padding-right: 2.2rem;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-index__about__content__base__text {
    width: auto;
    padding: 6.1rem 1.2rem 6.6rem 2.1rem;
    height: auto;
  }
}
.p-index__about__content__base__text__heading {
  font-family: "Gothic A1", sans-serif;
  font-size: 3.3rem;
  font-weight: 700;
  line-height: 4.7rem;
  margin-bottom: 2rem;
  text-transform: capitalize;
}
@media screen and (max-width: 750px) {
  .p-index__about__content__base__text__heading {
    font-size: 2rem;
    line-height: 3rem;
    margin-bottom: 3rem;
  }
}
.p-index__about__content__base__text__catch {
  font-family: "Reddit Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 3rem;
  margin-bottom: 1.2rem;
  width: 49.6rem;
}
@media screen and (max-width: 750px) {
  .p-index__about__content__base__text__catch {
    width: 100%;
    line-height: 2.5rem;
    letter-spacing: -0.1px;
    margin-bottom: 2rem;
  }
}
.p-index__about__content__base__text__address {
  font-family: "Reddit Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: normal;
  line-height: 3rem;
}
@media screen and (max-width: 750px) {
  .p-index__about__content__base__text__address {
    margin-bottom: 0.5rem;
  }
}
.p-index__about__content__base__text__address::before {
  content: "";
  display: inline-block;
  width: 1.983rem;
  height: 2.689rem;
  background: url("../img/views/index/pc/icon-pin-white2.png") no-repeat center center/cover;
  margin-right: 0.9rem;
  position: relative;
  top: 0.7rem;
}
.p-index__about__content__base__text__address-loc {
  font-family: "Reddit Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 3rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.06rem;
}
@media screen and (max-width: 750px) {
  .p-index__about__content__base__text__address-loc {
    line-height: 2.5rem;
    margin-bottom: 2.7rem;
    letter-spacing: 0;
  }
}
.p-index__about__content__base__text__link {
  text-decoration: none;
  color: #1d3783;
  width: 29.5rem;
  height: 5.4rem;
  border-radius: 0.5rem;
  background-color: #f2f2f4;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 750px) {
  .p-index__about__content__base__text__link {
    width: 100%;
    font-size: 1.6rem;
  }
}
.p-index__about__content__base__text__link__text {
  font-family: "Gothic A1", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}
@media screen and (max-width: 750px) {
  .p-index__about__content__base__text__link__text {
    font-size: 1.6rem;
  }
}
.p-index__about__content__base__text__link::after {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background: url("../img/views/index/pc/icon-link-out.svg") no-repeat center center/cover;
  margin-left: 0.5rem;
  position: relative;
  top: -0.1rem;
}
@media screen and (max-width: 750px) {
  .p-index__about__content__base__text__link::after {
    margin-left: 1.3rem;
    top: -0.2rem;
  }
}
.p-index__about__content__base__side {
  position: absolute;
  top: 0;
  left: 0;
  width: 9.6rem;
  height: 65.7rem;
  opacity: 0.13;
}
.p-index__about__content__img {
  width: 57.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.9rem;
}
@media screen and (max-width: 750px) {
  .p-index__about__content__img {
    width: 33.5rem;
    margin: auto;
    border-radius: 1rem;
    overflow: hidden;
  }
}
.p-index__about__content__img__box {
  border-radius: 1rem;
  width: 100%;
  height: 32.4rem;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .p-index__about__content__img__box {
    height: 18.8rem;
  }
}
.p-index__about__content__img__box__pic {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-index__faq {
  padding-top: 9.2rem;
  padding-bottom: 2.1rem;
  background-color: #fff;
}
@media screen and (max-width: 750px) {
  .p-index__faq {
    padding-top: 6.6rem;
    padding-bottom: 3.2rem;
  }
}
.p-index__faq__heading {
  text-align: center;
  font-family: "Gothic A1", sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 5rem;
  color: #ed302f;
  margin-bottom: 4.5rem;
}
@media screen and (max-width: 750px) {
  .p-index__faq__heading {
    font-size: 2.5rem;
    line-height: 3.2rem;
    margin-bottom: 5.1rem;
  }
}
.p-index__faq__qna__list {
  padding: 0 0 1.5rem;
  border-radius: 1rem;
  background-color: #f2f2f4;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .p-index__faq__qna__list {
    padding: 0 0 1.3rem;
  }
}
.p-index__faq__qna__list:not(:last-child) {
  margin-bottom: 2.8rem;
}
.p-index__faq__qna__list__question {
  cursor: pointer;
  padding: 1.4rem 5.2rem 0;
}
@media screen and (max-width: 750px) {
  .p-index__faq__qna__list__question {
    padding: 1.3rem 2rem 0;
  }
}
.p-index__faq__qna__list__question__text {
  display: block;
  font-family: "Gothic A1", sans-serif;
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 3.5rem;
  position: relative;
  padding-left: 4.8rem;
  text-transform: capitalize;
}
.p-index__faq__qna__list__question__text::-webkit-details-marker {
  display: none;
}
@media screen and (max-width: 750px) {
  .p-index__faq__qna__list__question__text {
    font-size: 2.1rem;
    padding-left: 3.5rem;
    letter-spacing: 0.3px;
  }
}
.p-index__faq__qna__list__question__text__label {
  font-size: 2.5rem;
  color: #ed302f;
  position: absolute;
  left: 0;
  top: 0.1rem;
}
@media screen and (max-width: 750px) {
  .p-index__faq__qna__list__question__text__label {
    font-size: 2.1rem;
    top: 0;
  }
}
.p-index__faq__qna__list__answer {
  background-color: #f2f2f4;
  position: relative;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  -webkit-transition: margin-top 0.3s ease-in, max-height 0.3s ease-in;
  transition: margin-top 0.3s ease-in, max-height 0.3s ease-in;
  margin-top: 1.2rem;
  padding: 0 5.2rem;
  display: none;
}
@media screen and (max-width: 750px) {
  .p-index__faq__qna__list__answer {
    margin-top: 0;
    padding: 0 2rem;
  }
}
.p-index__faq__qna__list__answer__text {
  display: block;
  font-family: "Reddit Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 3rem;
  position: relative;
  padding-left: 4.8rem;
  letter-spacing: 0.04rem;
}
@media screen and (max-width: 750px) {
  .p-index__faq__qna__list__answer__text {
    line-height: 2.5rem;
    padding-left: 3.4rem;
    letter-spacing: 0.05rem;
  }
}
.p-index__faq__qna__list__answer__text__label {
  font-size: 2.5rem;
  font-weight: 800;
  color: #06387b;
  position: absolute;
  left: 0;
  top: 0.4rem;
}
@media screen and (max-width: 750px) {
  .p-index__faq__qna__list__answer__text__label {
    font-size: 2.1rem;
    top: 0;
  }
}
.p-index__faq__qna__list__answer__text__arrow {
  position: relative;
  display: inline-block;
  margin-right: 2.5rem;
}
.p-index__faq__qna__list__answer__text__arrow::after {
  position: absolute;
  content: "";
  width: 1.164rem;
  height: 1.344rem;
  background: url("../img/views/index/pc/icon-faq-arrow.svg") no-repeat center center/contain;
  top: 0.8rem;
  right: -1.9rem;
}
@media screen and (max-width: 750px) {
  .p-index__faq__qna__list__answer__text__arrow::after {
    top: 0.6rem;
    -webkit-transform: unset;
            transform: unset;
  }
}
@media screen and (max-width: 750px) {
  .p-index__faq__qna__list__answer__text__arrow__quotesp {
    position: relative;
    left: 1.9rem;
  }
}
@media screen and (max-width: 750px) {
  .p-index__faq__qna__list__answer__text__arrow.is-double {
    width: 26rem;
  }
}
@media screen and (max-width: 750px) {
  .p-index__faq__qna__list__answer__text__arrow.is-double::after {
    top: unset;
    right: 11rem;
    bottom: 0.6rem;
  }
}
@media screen and (max-width: 750px) {
  .p-index__faq__qna__list__answer__text__arrow.is-double::before {
    position: absolute;
    content: "";
    width: 1.164rem;
    height: 1.344rem;
    background: url("../img/views/index/pc/icon-faq-arrow.svg") no-repeat center center/contain;
    bottom: 0.6rem;
    right: 1.2rem;
  }
}
.p-index__faq__qna__list__answer__text__link {
  text-decoration: none;
  cursor: pointer;
  color: #004bb1;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.p-index__faq__qna__list__answer__text__link:hover {
  color: #ed302f;
}
.p-index__inquiry {
  padding-top: 9.2rem;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #fff), color-stop(50%, rgba(255, 255, 0, 0)));
  background: linear-gradient(180deg, #fff 50%, rgba(255, 255, 0, 0) 50%);
}
@media screen and (max-width: 750px) {
  .p-index__inquiry {
    padding-top: 6.6rem;
  }
}
.p-index__inquiry.is-confirm, .p-index__inquiry.is-result {
  padding-top: 26.1rem;
}
@media screen and (max-width: 750px) {
  .p-index__inquiry.is-confirm, .p-index__inquiry.is-result {
    padding-top: 16.6rem;
  }
}
.p-index__inquiry__heading {
  text-align: center;
  font-family: "Gothic A1", sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 5rem;
  color: #ed302f;
  margin-bottom: 5.7rem;
}
@media screen and (max-width: 750px) {
  .p-index__inquiry__heading {
    font-size: 2.5rem;
    line-height: 3.2rem;
    margin-bottom: 4.3rem;
  }
}
.p-index__inquiry__progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 85rem;
  height: 6.7rem;
  margin: 0 auto 2.5rem;
  background-color: #f2f2f2;
  overflow: hidden;
  padding: 0.8rem 0 0 3.1rem;
  position: relative;
  border-radius: 0.5rem;
}
@media screen and (max-width: 750px) {
  .p-index__inquiry__progress {
    width: 100%;
    padding: 0 0 0 1rem;
    margin: 0 auto 1.7rem;
  }
}
.is-result .p-index__inquiry__progress {
  margin-bottom: 8rem;
}
@media screen and (max-width: 750px) {
  .is-result .p-index__inquiry__progress {
    margin-bottom: 3rem;
  }
}
.p-index__inquiry__progress::before {
  content: "";
  display: block;
  height: 100%;
  width: 88.458rem;
  background: url("../img/views/index/pc/line-red-progress-bar.svg") no-repeat center center/cover;
  position: absolute;
  top: 0;
  left: -68.5%;
  z-index: 1;
  -webkit-transition: left 1s;
  transition: left 1s;
}
@media screen and (max-width: 750px) {
  .p-index__inquiry__progress::before {
    width: 100%;
    background: unset;
    background-color: #ed302f;
    -webkit-clip-path: polygon(94% 0, 100% 50%, 94% 100%, 0 100%, 0 0);
            clip-path: polygon(94% 0, 100% 50%, 94% 100%, 0 100%, 0 0);
    left: -20.5rem;
  }
}
.p-index__inquiry__progress.is-arrow-move01::before {
  left: -36.1%;
}
@media screen and (max-width: 750px) {
  .p-index__inquiry__progress.is-arrow-move01::before {
    left: -28.1%;
  }
}
.p-index__inquiry__progress.is-arrow-move02::before {
  left: 0;
}
@media screen and (max-width: 750px) {
  .p-index__inquiry__progress.is-arrow-move02::before {
    width: 110%;
  }
}
.p-index__inquiry__progress::after {
  content: "";
  display: block;
  height: 100%;
  width: 31.5rem;
  background: url("../img/views/index/pc/line-gray-progress-arrow.svg") no-repeat center center/cover;
  position: absolute;
  top: 0;
  left: 26.1rem;
  z-index: 0;
}
@media screen and (max-width: 750px) {
  .p-index__inquiry__progress::after {
    width: 100%;
    background: unset;
    background-color: #c9c9c9;
    -webkit-clip-path: polygon(94% 0, 100% 50%, 94% 100%, 0 100%, 0 0);
            clip-path: polygon(94% 0, 100% 50%, 94% 100%, 0 100%, 0 0);
    left: -9.6rem;
  }
}
.p-index__inquiry__progress__bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6.1rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .p-index__inquiry__progress__bar {
    gap: 2rem;
  }
}
@media screen and (max-width: 750px) {
  .p-index__inquiry__progress__bar:nth-child(2), .p-index__inquiry__progress__bar:nth-child(3) {
    gap: 0.7rem;
  }
}
.p-index__inquiry__progress__bar:nth-child(2) {
  margin: 0 6.9rem 0 11.9rem;
}
@media screen and (max-width: 750px) {
  .p-index__inquiry__progress__bar:nth-child(2) {
    margin: 0 1.6rem 0 4.4rem;
  }
}
.p-index__inquiry__progress__bar__number {
  font-family: "Reddit Sans", sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  color: #888;
  opacity: 0.31;
}
@media screen and (max-width: 750px) {
  .p-index__inquiry__progress__bar__number {
    font-size: 2.5rem;
  }
}
.is-active .p-index__inquiry__progress__bar__number {
  color: #fd8c8c;
}
.p-index__inquiry__progress__bar__text {
  font-family: "Gothic A1", sans-serif;
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1;
  color: #b7b7b7;
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-index__inquiry__progress__bar__text {
    font-size: 1.4rem;
    top: 0.3rem;
  }
}
.is-active .p-index__inquiry__progress__bar__text {
  color: #fff;
}
.p-index__inquiry__note {
  width: 85rem;
  margin: 0 auto 2.7rem;
  font-family: "Reddit Sans", sans-serif;
  font-size: 1.6rem;
  line-height: 3rem;
  color: #333;
}
@media screen and (max-width: 750px) {
  .p-index__inquiry__note {
    width: auto;
    line-height: 2.5rem;
    letter-spacing: 0.5px;
  }
}
.p-index__inquiry__phone {
  background-color: #f2f2f4;
  margin: 0 auto -2.4rem;
  width: 44rem;
  height: 10.2rem;
  border-radius: 1rem;
  padding: 1.5rem 0 0;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .p-index__inquiry__phone {
    width: 27.5rem;
    padding: 0.6rem 0 0;
    height: 7.2rem;
  }
}
.p-index__inquiry__phone__num {
  text-decoration: none;
  font-family: "Reddit Sans", sans-serif;
  font-size: 2.5rem;
  font-weight: normal;
  line-height: 1;
  color: #333;
}
@media screen and (max-width: 750px) {
  .p-index__inquiry__phone__num {
    font-size: 1.6rem;
    letter-spacing: 0.5px;
  }
}
.p-index__inquiry__phone__num::before {
  content: "";
  display: inline-block;
  width: 3.2rem;
  height: 3.2rem;
  background: url("../img/views/index/pc/icon-phone-red.svg") no-repeat center center/cover;
  margin-right: 1.4rem;
  position: relative;
  top: 0.9rem;
}
@media screen and (max-width: 750px) {
  .p-index__inquiry__phone__num::before {
    width: 2.4rem;
    height: 2.3rem;
    top: 0.5rem;
    margin-right: -0.1rem;
    left: -0.5rem;
  }
}
.p-index__inquiry__form {
  position: relative;
}
.p-index__inquiry__form::before {
  content: "";
  display: block;
  position: absolute;
  inset: 26.3rem 0 17.1rem;
  background-color: #333;
  z-index: 0;
}
@media screen and (max-width: 750px) {
  .p-index__inquiry__form::before {
    inset: 18.5rem 0 11.5rem;
  }
}
.is-confirm .p-index__inquiry__form::before {
  inset: 12rem 0 17.1rem;
}
@media screen and (max-width: 750px) {
  .is-confirm .p-index__inquiry__form::before {
    inset: 18.6rem 0 15.1rem;
  }
}
.p-index__inquiry__form__privacy {
  margin-top: 3.6rem;
  margin-bottom: 8rem;
}
@media screen and (max-width: 750px) {
  .p-index__inquiry__form__privacy {
    margin-top: 2.6rem;
    margin-bottom: 4.1rem;
  }
}
.is-confirm .p-index__inquiry__form__privacy {
  margin-top: -0.8rem;
  margin-bottom: 7.7rem;
}
@media screen and (max-width: 750px) {
  .is-confirm .p-index__inquiry__form__privacy {
    margin-bottom: 3.5rem;
  }
}
.p-index__inquiry__form__privacy__head {
  font-family: "Reddit Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 2;
  color: #333;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 750px) {
  .p-index__inquiry__form__privacy__head {
    letter-spacing: 0.5px;
    margin-bottom: 1.4rem;
  }
}
.is-confirm .p-index__inquiry__form__privacy__head {
  margin-bottom: 0.9rem;
}
@media screen and (max-width: 750px) {
  .is-confirm .p-index__inquiry__form__privacy__head {
    letter-spacing: 0;
  }
}
.p-index__inquiry__form__privacy__head .is-required {
  display: inline-block;
  font-family: "Reddit Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  color: #dc000c;
  border: 1px solid #dc000c;
  margin-left: 1rem;
  padding: 0.3rem 1rem;
}
@media screen and (max-width: 750px) {
  .p-index__inquiry__form__privacy__head .is-required {
    padding: 0.3rem 0.5rem 0.3rem 1rem;
  }
}
.p-index__inquiry__form__privacy__policy {
  color: #333;
  height: 31rem;
  overflow-y: scroll;
  border: 1px solid #cdd6dd;
  border-radius: 0.5rem;
  margin-bottom: 2.1rem;
  padding: 1.5rem 1.5rem 1.5rem 2rem;
}
@media screen and (max-width: 750px) {
  .p-index__inquiry__form__privacy__policy {
    padding: 1.1rem 0.9rem;
    margin-bottom: 1.1rem;
  }
}
.p-index__inquiry__form__privacy__policy__top-text, .p-index__inquiry__form__privacy__policy__text {
  font-family: "Reddit Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 3rem;
  margin-bottom: 2.8rem;
  letter-spacing: 0.46px;
}
@media screen and (max-width: 750px) {
  .p-index__inquiry__form__privacy__policy__top-text, .p-index__inquiry__form__privacy__policy__text {
    line-height: 2.5rem;
  }
}
.p-index__inquiry__form__privacy__policy__top-text .is-blue, .p-index__inquiry__form__privacy__policy__text .is-blue {
  color: #004bb1;
}
.p-index__inquiry__form__privacy__policy__h3 {
  font-family: "Gothic A1", sans-serif;
  font-size: 3.3rem;
  font-weight: 700;
  line-height: 4.7rem;
}
@media screen and (max-width: 750px) {
  .p-index__inquiry__form__privacy__policy__h3 {
    font-size: 2rem;
    line-height: 3rem;
    margin-bottom: 1rem;
  }
}
.p-index__inquiry__form__privacy__policy__h4 {
  font-family: "Gothic A1", sans-serif;
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 3.5rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 750px) {
  .p-index__inquiry__form__privacy__policy__h4 {
    font-size: 1.8rem;
    line-height: 2.5rem;
  }
}
.p-index__inquiry__form__privacy__confirm {
  font-family: "Reddit Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 2.8rem;
  color: #333;
}
@media screen and (max-width: 750px) {
  .p-index__inquiry__form__privacy__confirm {
    line-height: 3rem;
  }
}
.p-index__inquiry__result {
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #fff), color-stop(50%, rgba(255, 255, 0, 0)));
  background: linear-gradient(180deg, #fff 50%, rgba(255, 255, 0, 0) 50%);
}
.p-index__inquiry__result::before {
  content: "";
  display: block;
  position: absolute;
  inset: 12rem 0 17.1rem;
  background-color: #333;
  z-index: 0;
}
@media screen and (max-width: 750px) {
  .p-index__inquiry__result::before {
    inset: 7rem 0;
  }
}
.p-index__inquiry__result__inner {
  background-color: #fff;
  border-radius: 1rem;
  -webkit-box-shadow: 0 0 3.6rem rgba(0, 0, 0, 0.09);
          box-shadow: 0 0 3.6rem rgba(0, 0, 0, 0.09);
  padding: 11.4rem 16rem 10.1rem;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .p-index__inquiry__result__inner {
    padding: 6.6rem 1.1rem 5rem;
  }
}
.p-index__inquiry__result__heading {
  font-family: "Gothic A1", sans-serif;
  font-size: 3.3rem;
  font-weight: 700;
  line-height: 4.7rem;
  color: #333;
  margin-bottom: 5.1rem;
}
@media screen and (max-width: 750px) {
  .p-index__inquiry__result__heading {
    font-size: 2rem;
    line-height: 3rem;
    margin-bottom: 1.7rem;
  }
}
.p-index__inquiry__result__heading .is-red {
  color: #ed302f;
}
.p-index__inquiry__result__catch {
  font-family: "Reddit Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 3rem;
  color: #333;
  letter-spacing: -0.12px;
  margin-bottom: 7.6rem;
}
@media screen and (max-width: 750px) {
  .p-index__inquiry__result__catch {
    margin-bottom: 3.5rem;
  }
}

.p-news {
  border-collapse: collapse;
  width: 100%;
}
.p-news__head {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  font-weight: normal;
  padding: 15px 1em 15px 0;
  white-space: nowrap;
  width: 1em;
}
.p-news__data {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  padding: 15px 0;
}
.p-news__data.is-label {
  padding: 15px 1em 15px 0;
  white-space: nowrap;
  width: 1em;
}

.p-news-detail__meta {
  margin-bottom: 5px;
}
.p-news-detail__meta__item {
  margin-right: 10px;
}
.p-news-detail__title {
  border-bottom: 1px solid #ccc;
  font-size: 2.4rem;
  margin-bottom: 30px;
}
@media screen and (max-width: 750px) {
  .p-news-detail__title {
    margin-bottom: 2rem;
  }
}
.p-news-detail__text {
  width: auto;
}
.p-news-detail__photo {
  text-align: center;
  width: auto;
}
@media screen and (max-width: 750px) {
  .p-news-detail__photo {
    margin-top: 2rem;
  }
}
.p-news-detail__file {
  margin-top: 30px;
}
@media screen and (max-width: 750px) {
  .p-news-detail__file {
    margin-top: 2rem;
  }
}
.p-news-detail__back {
  margin-top: 60px;
}
@media screen and (max-width: 750px) {
  .p-news-detail__back {
    margin-top: 3rem;
  }
}

.p-contact__privacy-check {
  margin: 30px 0;
  text-align: center;
}
.p-contact__submit {
  text-align: center;
}
.p-contact__submit__button {
  display: inline-block;
  width: 100%;
}
.p-contact__error {
  color: #f00;
}
.p-contact__result {
  text-align: center;
}
.p-contact__result__head {
  font-size: 1.4em;
  margin-bottom: 20px;
}

/* Utility */
/**
 * Align Styles
 *
 * .u-align-center
 * .u-align-left
 * .u-align-right
 * .u-align-justify
 *
 * @see foundation/mixins/style/_align.scss
 */
.u-align-center {
  text-align: center !important;
}

.u-align-left {
  text-align: left !important;
}

.u-align-right {
  text-align: right !important;
}

.u-align-justify {
  text-align: justify !important;
}

@media screen and (min-width: 751px) {
  .u-pc-align-center {
    text-align: center !important;
  }
  .u-pc-align-left {
    text-align: left !important;
  }
  .u-pc-align-right {
    text-align: right !important;
  }
  .u-pc-align-justify {
    text-align: justify !important;
  }
}
@media screen and (max-width: 750px) {
  .u-sp-align-center {
    text-align: center !important;
  }
  .u-sp-align-left {
    text-align: left !important;
  }
  .u-sp-align-right {
    text-align: right !important;
  }
  .u-sp-align-justify {
    text-align: justify !important;
  }
}
/**
 * Anchor
 */
@media screen and (min-width: 751px) {
  .u-anchor-tel {
    pointer-events: none !important;
  }
}
.u-anchor-tel:not(.has-no-style) {
  color: inherit;
  text-decoration: none;
}

.u-color-text {
  color: #1d1d1d !important;
}

.u-color-link-text {
  color: #1183c0 !important;
}

/**
 * Display Styles
 *
 * .u-display-block
 * .u-display-inline-block
 * .u-display-flex
 * .u-display-none
 *
 * @see foundation/mixins/style/_display.scss
 */
.u-display-block {
  display: block !important;
}

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

.u-display-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

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

@media screen and (min-width: 751px) {
  .u-pc-display-block {
    display: block !important;
  }
  .u-pc-display-inline-block {
    display: inline-block !important;
  }
  .u-pc-display-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .u-pc-display-none {
    display: none !important;
  }
}
@media screen and (max-width: 750px) {
  .u-sp-display-block {
    display: block !important;
  }
  .u-sp-display-inline-block {
    display: inline-block !important;
  }
  .u-sp-display-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .u-sp-display-none {
    display: none !important;
  }
}
/**
 * Flex Box
 *
 * .u-flex
 * .u-flex-row-reverse
 * .u-flex-column
 * .u-flex-column-reverse
 * .u-flex-wrap
 * .u-flex-justify-flex-start
 * .u-flex-justify-flex-end
 * .u-flex-justify-center
 * .u-flex-justify-space-between
 * .u-flex-justify-space-around
 * .u-flex-align-flex-start
 * .u-flex-align-flex-end
 * .u-flex-align-center
 * .u-flex-align-space-between
 *
 * @see foundation/mixins/style/_flex.scss
 */
.u-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.u-flex-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.u-flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.u-flex-column-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.u-flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.u-flex-justify-flex-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.u-flex-justify-flex-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.u-flex-justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.u-flex-justify-space-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.u-flex-justify-space-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.u-flex-align-flex-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.u-flex-align-flex-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.u-flex-align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.u-flex-align-space-between {
  -webkit-box-align: space-between;
      -ms-flex-align: space-between;
          align-items: space-between;
}

@media screen and (min-width: 751px) {
  .u-pc-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .u-pc-flex-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .u-pc-flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .u-pc-flex-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .u-pc-flex-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .u-pc-flex-justify-flex-start {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .u-pc-flex-justify-flex-end {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .u-pc-flex-justify-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .u-pc-flex-justify-space-between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .u-pc-flex-justify-space-around {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .u-pc-flex-align-flex-start {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .u-pc-flex-align-flex-end {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .u-pc-flex-align-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .u-pc-flex-align-space-between {
    -webkit-box-align: space-between;
        -ms-flex-align: space-between;
            align-items: space-between;
  }
}
@media screen and (max-width: 750px) {
  .u-sp-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .u-sp-flex-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .u-sp-flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .u-sp-flex-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .u-sp-flex-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .u-sp-flex-justify-flex-start {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .u-sp-flex-justify-flex-end {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .u-sp-flex-justify-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .u-sp-flex-justify-space-between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .u-sp-flex-justify-space-around {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .u-sp-flex-align-flex-start {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .u-sp-flex-align-flex-end {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .u-sp-flex-align-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .u-sp-flex-align-space-between {
    -webkit-box-align: space-between;
        -ms-flex-align: space-between;
            align-items: space-between;
  }
}
/**
 * Float
 *
 * .u-float-left
 * .u-float-right
 * .u-clear
 * .u-clearfix
 *
 * @see foundation/mixins/style/_float.scss
 */
.u-float-left {
  float: left;
}

.u-float-right {
  float: right;
}

.u-clear {
  clear: both;
}

.u-clearfix {
  clear: both;
  content: "";
  display: block;
}

@media screen and (min-width: 751px) {
  .u-pc-float-left {
    float: left;
  }
  .u-pc-float-right {
    float: right;
  }
  .u-pc-clear {
    clear: both;
  }
  .u-pc-clearfix {
    clear: both;
    content: "";
    display: block;
  }
}
@media screen and (max-width: 750px) {
  .u-sp-float-left {
    float: left;
  }
  .u-sp-float-right {
    float: right;
  }
  .u-sp-clear {
    clear: both;
  }
  .u-sp-clearfix {
    clear: both;
    content: "";
    display: block;
  }
}
/**
 * Font Style
 */
.u-font-serif {
  font-family: "Noto Serif JP", Georgia, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
}

.u-font-sans {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Verdana, sans-serif;
}

.u-font-source {
  font-family: "Source Code Pro", monospace;
}

.u-font-marker {
  background: rgba(174, 207, 222, 0);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, rgba(174, 207, 222, 0)), color-stop(70%, #aecfde));
  background: linear-gradient(to bottom, rgba(174, 207, 222, 0) 70%, #aecfde 70%);
  font-weight: normal;
}

/**
 * Font Weight
 */
.u-font-weight-normal {
  font-weight: normal;
}

.u-font-weight-bold {
  font-weight: bold;
}

.u-font-weight-bolder {
  font-weight: 900;
}

/**
 * Grid system
 *
 * .u-grid__row
 * .u-grid__col
 * .u-grid__col.is-col-(number)
 *
 * .e.g) If $pc/sp-grid-steps is 12
 * <div class="u-grid__row">
 *     <div class="u-grid__col is-col-6">
 *         width 50%
 *     </div>
 *     <div class="u-grid__col is-col-3">
 *         width 25%
 *     </div>
 *     <div class="u-grid__col is-col-3">
 *         width 25%
 *     </div>
 * </div>
 *
 * @see foundation/mixins/style/_grid.scss
 */
.u-grid__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -1rem;
  margin-right: -1rem;
}
.u-grid__col {
  margin-left: 1rem;
  margin-right: 1rem;
}
.u-grid__col.is-col-1 {
  width: calc(8.3333333333% - 2rem);
}
.u-grid__col.is-col-2 {
  width: calc(16.6666666667% - 2rem);
}
.u-grid__col.is-col-3 {
  width: calc(25% - 2rem);
}
.u-grid__col.is-col-4 {
  width: calc(33.3333333333% - 2rem);
}
.u-grid__col.is-col-5 {
  width: calc(41.6666666667% - 2rem);
}
.u-grid__col.is-col-6 {
  width: calc(50% - 2rem);
}
.u-grid__col.is-col-7 {
  width: calc(58.3333333333% - 2rem);
}
.u-grid__col.is-col-8 {
  width: calc(66.6666666667% - 2rem);
}
.u-grid__col.is-col-9 {
  width: calc(75% - 2rem);
}
.u-grid__col.is-col-10 {
  width: calc(83.3333333333% - 2rem);
}
.u-grid__col.is-col-11 {
  width: calc(91.6666666667% - 2rem);
}
.u-grid__col.is-col-12 {
  width: calc(100% - 2rem);
}

@media screen and (min-width: 751px) {
  .u-pc-grid__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: -1rem;
    margin-right: -1rem;
  }
  .u-pc-grid__col {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .u-pc-grid__col.is-col-1 {
    width: calc(8.3333333333% - 2rem);
  }
  .u-pc-grid__col.is-col-2 {
    width: calc(16.6666666667% - 2rem);
  }
  .u-pc-grid__col.is-col-3 {
    width: calc(25% - 2rem);
  }
  .u-pc-grid__col.is-col-4 {
    width: calc(33.3333333333% - 2rem);
  }
  .u-pc-grid__col.is-col-5 {
    width: calc(41.6666666667% - 2rem);
  }
  .u-pc-grid__col.is-col-6 {
    width: calc(50% - 2rem);
  }
  .u-pc-grid__col.is-col-7 {
    width: calc(58.3333333333% - 2rem);
  }
  .u-pc-grid__col.is-col-8 {
    width: calc(66.6666666667% - 2rem);
  }
  .u-pc-grid__col.is-col-9 {
    width: calc(75% - 2rem);
  }
  .u-pc-grid__col.is-col-10 {
    width: calc(83.3333333333% - 2rem);
  }
  .u-pc-grid__col.is-col-11 {
    width: calc(91.6666666667% - 2rem);
  }
  .u-pc-grid__col.is-col-12 {
    width: calc(100% - 2rem);
  }
}
@media screen and (max-width: 750px) {
  .u-sp-grid__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }
  .u-sp-grid__col {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }
  .u-sp-grid__col.is-col-1 {
    width: calc(8.3333333333% - 0.5rem);
  }
  .u-sp-grid__col.is-col-2 {
    width: calc(16.6666666667% - 0.5rem);
  }
  .u-sp-grid__col.is-col-3 {
    width: calc(25% - 0.5rem);
  }
  .u-sp-grid__col.is-col-4 {
    width: calc(33.3333333333% - 0.5rem);
  }
  .u-sp-grid__col.is-col-5 {
    width: calc(41.6666666667% - 0.5rem);
  }
  .u-sp-grid__col.is-col-6 {
    width: calc(50% - 0.5rem);
  }
  .u-sp-grid__col.is-col-7 {
    width: calc(58.3333333333% - 0.5rem);
  }
  .u-sp-grid__col.is-col-8 {
    width: calc(66.6666666667% - 0.5rem);
  }
  .u-sp-grid__col.is-col-9 {
    width: calc(75% - 0.5rem);
  }
  .u-sp-grid__col.is-col-10 {
    width: calc(83.3333333333% - 0.5rem);
  }
  .u-sp-grid__col.is-col-11 {
    width: calc(91.6666666667% - 0.5rem);
  }
  .u-sp-grid__col.is-col-12 {
    width: calc(100% - 0.5rem);
  }
}
/**
 * Image
 *
 * .u-image-full
 * .u-image-contain
 * .u-image-fit-contain
 * .u-image-fit-cover
 * .u-image-fit-fill
 * .u-image-fit-scale-down
 *
 * @see foundation/mixins/style/_image.scss
 */
.u-image-full {
  width: 100%;
}

.u-image-contain {
  max-width: 100%;
}

.u-image-fit-contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.u-image-fit-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.u-image-fit-fill {
  -o-object-fit: fill;
     object-fit: fill;
}

.u-image-fit-scale-down {
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

@media screen and (min-width: 751px) {
  .u-pc-image-full {
    width: 100%;
  }
  .u-pc-image-contain {
    max-width: 100%;
  }
  .u-pc-image-fit-contain {
    -o-object-fit: contain;
       object-fit: contain;
  }
  .u-pc-image-fit-cover {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .u-pc-image-fit-fill {
    -o-object-fit: fill;
       object-fit: fill;
  }
  .u-pc-image-fit-scale-down {
    -o-object-fit: scale-down;
       object-fit: scale-down;
  }
}
@media screen and (max-width: 750px) {
  .u-sp-image-full {
    width: 100%;
  }
  .u-sp-image-contain {
    max-width: 100%;
  }
  .u-sp-image-fit-contain {
    -o-object-fit: contain;
       object-fit: contain;
  }
  .u-sp-image-fit-cover {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .u-sp-image-fit-fill {
    -o-object-fit: fill;
       object-fit: fill;
  }
  .u-sp-image-fit-scale-down {
    -o-object-fit: scale-down;
       object-fit: scale-down;
  }
}
.u-layout {
  margin: 0 auto;
  max-width: calc(1170px + 8rem);
  padding: 0 4rem;
}
@media screen and (max-width: 750px) {
  .u-layout {
    margin: 0 2rem;
    padding: 0;
    width: auto;
  }
  .u-layout.is-nomargin {
    margin: 0;
    padding: 0;
  }
  .u-layout.is-padding {
    margin: 0;
    padding: 0 2rem;
  }
}

@media screen and (min-width: 751px) {
  .u-pc-layout {
    margin: 0 auto;
    max-width: calc(1170px + 8rem);
    padding: 0 4rem;
  }
}
@media screen and (max-width: 750px) {
  .u-sp-layout {
    margin: 0 2rem;
    max-width: none;
  }
  .u-sp-layout.is-nomargin {
    margin: 0;
  }
  .u-sp-layout.is-padding {
    margin: 0;
    padding: 0 2rem;
  }
}
/**
 * Display only target layout
 */
@media screen and (min-width: 751px) {
  .u-sp-only {
    display: none !important;
  }
}
@media screen and (max-width: 750px) {
  .u-pc-only {
    display: none !important;
  }
}