@charset "UTF-8";
/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/
.is-md-show {
  display: none;
}
@media screen and (max-width: 767px) {
  .is-md-show {
    display: block;
  }
}

.is-md-hide {
  display: block;
}
@media screen and (max-width: 767px) {
  .is-md-hide {
    display: none !important;
  }
}

@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  80% {
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  80% {
    transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes button-anime {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.05);
  }
  20% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes button-animes {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.05);
  }
  20% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

::-moz-selection {
  background-color: pink;
}

::selection {
  background-color: pink;
}

html {
  font-size: 62.5%;
  overflow-x: auto;
}

body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  -o-object-fit: cover;
  object-fit: cover;
}

a:link,
a:visited {
  color: black;
  text-decoration: none;
}

ul {
  padding-left: 0;
}

li {
  list-style: none;
}

textarea {
  resize: none;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212121;
}

.container {
  width: 100%;
  max-width: 116rem;
  padding-right: 2rem;
  padding-left: 2rem;
  margin-right: auto;
  margin-left: auto;
}

.container2 {
  width: 100%;
  max-width: 132rem;
  margin-right: auto;
  margin-left: auto;
}

.new-container-1 {
  margin-right: auto;
  margin-left: auto;
  max-width: 1000px;
  width: 100%;
  color: #212121 !important;
}
@media screen and (max-width: 767px) {
  .new-container-1 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.new-container-15 {
  margin-right: auto;
  margin-left: auto;
  max-width: 1000px;
  width: 100%;
  color: #212121 !important;
}
@media screen and (max-width: 1024px) {
  .new-container-15 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.new-container-151 {
  margin-right: auto;
  margin-left: auto;
  max-width: 1000px;
  padding-left: 10px;
  padding-right: 10px;
  width: 100%;
  color: #212121 !important;
}
@media screen and (max-width: 1024px) {
  .new-container-151 {
    padding-left: 0px;
    padding-right: 0px;
  }
}

.new-container-2 {
  margin-right: auto;
  margin-left: auto;
  max-width: 1202px;
  width: 100%;
  color: #212121 !important;
}
@media screen and (max-width: 767px) {
  .new-container-2 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.new-container-26 {
  margin-right: auto;
  margin-left: auto;
  max-width: 1230px;
  width: 100%;
  color: #212121 !important;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (max-width: 767px) {
  .new-container-26 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.new-container-25 {
  margin-right: auto;
  margin-left: auto;
  max-width: 1202px;
  width: 100%;
  color: #212121 !important;
  padding-left: 15px;
  padding-right: 15px;
}

.new-container-3 {
  margin-left: auto;
  width: 100%;
  color: #212121 !important;
  max-width: 1000px;
  margin-right: auto;
}
.new-container-3.is-scrolling {
  max-width: none;
}
@media screen and (max-width: 767px) {
  .new-container-3 {
    padding-left: 15px;
    padding-right: 0;
  }
}

.animation-button {
  animation: button-anime 2s linear infinite;
}

@keyframes button-anime {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.05);
  }
  20% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
.l-inner {
  max-width: 1240px;
  padding-right: 80px;
  padding-left: 80px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: 15px;
    padding-left: 15px;
  }
}

/*リンクの形状*/
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #942d2f;
  border-radius: 5px;
  width: 60px;
  height: 60px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s;
}

#page-top a:hover {
  background: #777;
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}

/*　上に上がる動き　*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
.c-button {
  -moz-column-gap: 16px;
  column-gap: 16px;
  position: relative;
  background-color: #ff2a2e;
  border-radius: 50px;
  border: 4px solid #ff2a2e;
  transition: all 0.3s;
  width: 480px;
  height: 79px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding-bottom: 2px;
  transition: all 0.3s;
  animation: button-anime 2s linear infinite;
}
.c-button:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
.c-button--stop {
  animation: none;
}
.c-button--specials {
  animation: none;
}
@media screen and (max-width: 767px) {
  .c-button {
    width: 300px;
    height: 50px;
    margin: 0 auto;
  }
}
.c-button--black {
  background-color: #212121;
  border: 4px solid #212121;
}
.c-button--white {
  background-color: #fff;
  border: 4px solid #fff;
  color: #ff2a2e;
}
.c-button--yellow {
  background-color: #fec000;
  border: 4px solid #fec000;
  color: #212121;
}
.c-button--white2 {
  background-color: #fff;
  border: 4px solid #fff;
  color: #212121;
}
@media screen and (max-width: 767px) {
  .c-button--special {
    width: 100%;
    height: 50px;
    margin: 0 auto;
  }
}
.c-button__word {
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  transition: all 0.3s;
}
.c-button__word--white {
  color: #ff2a2e;
}
.c-button__word--white2 {
  color: #212121;
}
.c-button__word--yellow {
  color: #212121;
}
@media screen and (max-width: 767px) {
  .c-button__word {
    font-size: 18px;
  }
}
.c-button__arrow {
  position: absolute;
  top: 50%;
  right: 31px;
  transform: translateY(-50%);
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .c-button__arrow {
    right: 16px;
  }
}
.c-button__arrow--yellow path {
  fill: #212121;
  transition: all 0.3s;
}

.c-new-title {
  position: relative;
  margin-bottom: -6px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-new-title {
    margin-bottom: 19px;
  }
}
.c-new-title__h2 {
  font-size: 143px;
  font-family: "din-2014", sans-serif;
  color: #fff;
  letter-spacing: 0.02em;
}
.c-new-title__h2--gray {
  color: #f6f6f6;
}
@media screen and (max-width: 1300px) {
  .c-new-title__h2--gray {
    width: 100%;
    font-size: 100px;
  }
}
@media screen and (max-width: 500px) {
  .c-new-title__h2--gray {
    width: 144%;
    transform: translateX(-45px);
  }
}
.c-new-title__h2--gray-3 {
  color: #f6f6f6;
}
@media screen and (max-width: 1300px) {
  .c-new-title__h2--gray-3 {
    width: 100%;
    font-size: 100px;
  }
}
@media screen and (max-width: 500px) {
  .c-new-title__h2--gray-3 {
    width: 127%;
    transform: translateX(-45px);
  }
}
.c-new-title__h2--gray-2 {
  color: #f6f6f6;
}
@media screen and (max-width: 767px) {
  .c-new-title__h2 {
    font-size: 87px;
  }
}
.c-new-title__japanese {
  position: absolute;
  top: 94px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.036em;
  color: #212121;
  width: 100%;
}
@media screen and (max-width: 1300px) {
  .c-new-title__japanese {
    font-size: 30px;
    top: 79px;
  }
}
@media screen and (max-width: 767px) {
  .c-new-title__japanese {
    font-size: 24px;
    top: 56px;
    width: 100%;
  }
}
.c-new-title__img {
  position: absolute;
  top: 86px;
  left: 50%;
  transform: translateX(-50%);
  width: 336px;
}
@media screen and (max-width: 1300px) {
  .c-new-title__img {
    top: 59px;
  }
}
@media screen and (max-width: 767px) {
  .c-new-title__img {
    top: 52px;
    width: 230px;
  }
}
.c-new-title__english {
  position: absolute;
  font-size: 20px;
  font-weight: 700;
  font-family: "din-2014", sans-serif;
  color: #ff2a2e;
  top: 58px;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: 0.03em;
}
.c-new-title__english--japanese {
  top: 68px;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
@media screen and (max-width: 1300px) {
  .c-new-title__english--japanese {
    top: 42px;
  }
}
@media screen and (max-width: 1300px) {
  .c-new-title__english {
    font-size: 15px;
    letter-spacing: 0.03em;
  }
}
@media screen and (max-width: 767px) {
  .c-new-title__english {
    font-size: 14px;
    top: 35px;
    width: 100%;
  }
}

.c-new-button__button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #fff;
  border-radius: 50px;
  width: 650px;
  height: 100px;
}
@media screen and (max-width: 767px) {
  .c-new-button__button {
    width: 100%;
    height: 64px;
    margin-top: 30px !important;
  }
}
.c-new-button__title {
  font-size: 32px;
  font-weight: 700;
  color: #ff2a2e;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-new-button__title {
    font-size: 18px;
    letter-spacing: 0.04em;
  }
}
.c-new-button__button-ico {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
}
@media screen and (max-width: 767px) {
  .c-new-button__button-ico {
    width: 24px;
    height: 24px;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
  }
}

.l-footer {
  background-color: #fff;
}

.l-footer__inner {
  max-width: 1242px;
  padding: 80px 85px 40px;
  margin: auto;
  background-color: #ff2a2e;
  border-radius: 60px 60px 0 0;
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    padding: 32px 20px 32px;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
  }
}

.l-footer__buttons {
  width: 100%;
}

.l-footer__main {
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .l-footer__main {
    padding-bottom: 48px;
  }
}

.l-footer__foot {
  padding-top: 40px;
  border-top: solid 2px #fff;
}
@media screen and (max-width: 767px) {
  .l-footer__foot {
    padding-top: 36px;
  }
}

.p-footer-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .p-footer-foot {
    display: block;
  }
}

.p-footer-foot__logo {
  width: 267px;
  margin-right: 53px;
}
.p-footer-foot__logo img {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .p-footer-foot__logo {
    width: 118px;
    display: inline-block;
  }
}
@media screen and (max-width: 767px) {
  .p-footer-foot__logo {
    width: 133px;
  }
}
.p-footer-foot__logo a {
  display: block;
}

.p-footer-foot__copyright {
  display: block;
  font-size: 16px;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .p-footer-foot__copyright {
    margin-top: 36px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .p-footer-foot__copyright {
    margin-top: 23px;
    font-size: 14px;
  }
}

.p-footer-main {
  display: flex;
  justify-content: space-between;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .p-footer-main {
    display: block;
  }
}

.p-footer-main__lead {
  flex: 0 0 auto;
  width: 30%;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .p-footer-main__lead {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-footer-main__lead {
    font-size: 24px;
  }
}

.l-footer__flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 24px;
}

.p-footer-main__content {
  display: grid;
  grid-template-areas: "desc btn" "nav nav";
  grid-template-columns: 33% 67%;
  align-items: flex-start;
  width: 70%;
}
@media screen and (max-width: 1024px) {
  .p-footer-main__content {
    display: block;
    width: 100%;
    margin-top: 24px;
  }
}

.p-footer-main__desc {
  grid-area: desc;
  padding-top: 16px;
  padding-right: 11px;
  font-size: 16px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1200px) {
  .p-footer-main__desc {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .p-footer-main__desc {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-footer-main__desc {
    font-size: 14px;
  }
}

.p-footer-main__btn {
  grid-area: btn;
}
@media screen and (max-width: 1024px) {
  .p-footer-main__btn {
    margin: 32px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .p-footer-main__btn {
    margin: 50px auto 27px;
  }
}

@media screen and (max-width: 1200px) {
  .p-footer-main__btn span {
    font-size: 17px;
  }
}
@media screen and (max-width: 1024px) {
  .p-footer-main__btn span {
    font-size: 23px;
  }
}
@media screen and (max-width: 767px) {
  .p-footer-main__btn span {
    font-size: 20px;
  }
}

.p-footer-main__nav {
  grid-area: nav;
  padding-top: 30px;
}
@media screen and (max-width: 1024px) {
  .p-footer-main__nav {
    width: calc(100% + 30px);
    padding-top: 10px;
    margin-left: -15px;
  }
}
.p-footer-main__nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: right;
  row-gap: 10px;
}
@media screen and (max-width: 1024px) {
  .p-footer-main__nav ul {
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .p-footer-main__nav ul {
    row-gap: 3px;
  }
}
.p-footer-main__nav ul li {
  margin-right: 35px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1024px) {
  .p-footer-main__nav ul li {
    margin: 20px 10px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-footer-main__nav ul li {
    margin: 24px 10px 0;
  }
}
.p-footer-main__nav ul li a {
  display: flex;
  align-items: center;
}
.p-footer-main__nav ul li a span {
  margin-right: 8px;
  font-size: 16px;
  font-weight: bold;
  color: #fff !important;
}
@media screen and (max-width: 767px) {
  .p-footer-main__nav ul li a span {
    font-size: 14px;
  }
}
.p-footer-main__nav ul li a svg {
  width: 14px;
}

.l-footer__movie {
  display: none;
  letter-spacing: 0.04em;
  align-items: center;
}
.l-footer__movie--special {
  display: block;
}
@media screen and (max-width: 767px) {
  .l-footer__movie--special {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__movie {
    display: flex;
  }
}
.l-footer__movie span {
  margin-right: 8px;
  font-size: 16px;
  font-weight: bold;
  color: #fff !important;
}
@media screen and (max-width: 767px) {
  .l-footer__movie span {
    font-size: 14px;
  }
}
.l-footer__movie svg {
  width: 14px;
}

.p-banner {
  padding-top: 80px;
  padding-bottom: 0px;
  width: 1060px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-banner {
    width: 100%;
    padding-top: 62px;
  }
}
.p-banner__img {
  width: 100%;
}

.p-banner-2 {
  padding-top: 80px;
  padding-bottom: 80px;
  width: 1060px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-banner-2 {
    width: 100%;
    padding-top: 62px;
    padding-bottom: 62px;
  }
}
.p-banner-2__img {
  width: 100%;
}

.p-thanks {
  margin-top: 0 !important;
  padding-top: 85px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-thanks {
    padding-top: 60px;
  }
}
.p-thanks__section-mv {
  background-color: #f1f5f6;
  padding: 80px 40px 105px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-thanks__section-mv {
    padding: 45px 20px 110px;
  }
}
.p-thanks__title {
  font-size: 35px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-thanks__title {
    font-size: 20px;
  }
}
.p-thanks__title .__primary {
  border-bottom-width: 2px;
  display: inline-block;
  color: #e83434;
  border-bottom: solid 1px #e83434;
  border-bottom-width: 1px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-thanks__title .__primary {
    border-bottom-width: 1px;
  }
}
.p-thanks__title .__normal {
  display: block;
  font-weight: bold;
  padding-top: 14px;
}
.p-thanks__img {
  margin: 40px auto 0;
  width: 71%;
  max-width: 378px;
}
.p-thanks__desc {
  font-size: 19px;
  text-align: center;
  line-height: 2;
  letter-spacing: 0.08em;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-thanks__desc {
    font-size: 15px;
  }
}
.p-thanks__caption {
  display: flex;
  justify-content: center;
  margin-top: 16px;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-thanks__caption {
    margin-top: 25px;
    padding: 0 5px;
  }
}
.p-thanks__caption p {
  font-size: 15px;
  border-radius: 8px;
  border-width: 2px;
  padding: 7px 18px;
  color: #e83434;
  line-height: 1.8;
  letter-spacing: 0.08em;
  background-color: #fff;
  border: solid 1px #e83434;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-radius: 14px;
}
@media screen and (max-width: 767px) {
  .p-thanks__caption p {
    font-size: 14px;
    padding: 18px;
  }
}
.p-thanks__caption p a {
  color: #e83434;
}
.p-thanks__scroll-down {
  font-size: 14px;
  letter-spacing: 0.06em;
  position: absolute;
  bottom: 52px;
  left: 50%;
  transform: translateX(-50%);
}
.p-thanks__scroll-down::before {
  content: "";
  background-color: #333;
  width: 1px;
  height: 46px;
  position: absolute;
  bottom: -76px;
  left: 50%;
  animation: mv_scroll_anima 3s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes mv_scroll_anima {
  0% {
    transform: scale(1, 0);
    transform-origin: 0% 0%;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0% 0%;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0% 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0% 100%;
  }
}
.p-contact {
  padding-top: 94px;
  padding-bottom: 10px;
  position: relative;
  background: url(/_assets/img/contact/bg.png);
  background-size: cover;
  background-image: center;
  background-repeat: none;
}
@media screen and (max-width: 1200px) {
  .p-contact {
    background: none;
  }
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
.p-contact__ctr-button {
  margin-bottom: 48px !important;
}
@media screen and (max-width: 767px) {
  .p-contact__ctr-button {
    width: 90% !important;
  }
}
.p-contact__text {
  width: 571px;
  margin: 0 auto;
  margin-bottom: 55px;
}
@media screen and (max-width: 767px) {
  .p-contact__text {
    margin-bottom: 44px;
    width: 96px;
  }
}
.p-contact__position-arrow {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-contact__position-arrow {
    display: none !important;
  }
}
.p-contact__group {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  -moz-column-gap: 29px;
  column-gap: 29px;
  justify-content: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 1200px) {
  .p-contact__group {
    display: none !important;
  }
}
.p-contact__child {
  text-align: center;
}
.p-contact__img {
  width: 314px;
  margin-bottom: 18px;
  height: 196px;
  border-radius: 11px;
}
.p-contact__number {
  font-size: 24px;
  font-family: "din-2014", sans-serif;
  color: #ff2a2e;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  font-weight: 700;
}
.p-contact__title {
  font-size: 20px;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-bottom: 15px;
}
.p-contact__description {
  text-align: left;
  font-size: 14px;
  letter-spacing: 0.02em;
  max-width: 290px;
  margin: 0 auto;
}

.p-others {
  padding-top: 85px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .p-others {
    padding-top: 60px;
  }
}
.p-others__title {
  padding-top: 32px;
  padding-bottom: 32px;
  background-color: #4d4d4d;
  margin-bottom: 50px;
}
.p-others__title h4 {
  font-size: 30px;
  margin-bottom: 14px;
  color: #fff;
  text-align: center;
  font-weight: 700;
}
.p-others__title h3 {
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  text-align: center;
}
.p-others div {
  margin-bottom: 32px;
}
.p-others p {
  margin-bottom: 15px;
  font-size: 16px;
  text-align: left;
}
.p-others li {
  font-size: 16px;
}

.p-svg-arrow {
  width: 37px;
  text-align: center;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -33px;
}
@media screen and (max-width: 767px) {
  .p-svg-arrow {
    width: 27px;
    bottom: -24px;
  }
}

.l-index {
  padding-top: 85px;
}
@media screen and (max-width: 767px) {
  .l-index {
    padding-top: 60px;
  }
}

.l-new-header {
  background-color: #fff;
  z-index: 200;
  width: 100%;
  height: 85px;
  position: fixed;
  padding-left: 62.2px;
  padding-right: 28px;
  line-height: 85px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1300px) {
  .l-new-header {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .l-new-header {
    height: 60px;
    padding-left: 15px;
    padding-right: 15px;
    line-height: 60px;
  }
}
.l-new-header__logo-anker {
  display: inline-block;
  width: 184px;
}
@media screen and (max-width: 767px) {
  .l-new-header__logo-anker {
    width: 118.81px;
  }
}
.l-new-header__logo {
  width: 100%;
  margin-top: 36px;
  vertical-align: initial !important;
}
@media screen and (max-width: 767px) {
  .l-new-header__logo {
    margin-top: 25px;
  }
}
.l-new-header__right {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media screen and (max-width: 1300px) {
  .l-new-header__right {
    display: none;
  }
}
.l-new-header__ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 30px;
  column-gap: 30px;
  margin-right: 31px;
}
.l-new-header__li {
  text-align: center;
}
.l-new-header__japanese {
  font-size: 16px;
  letter-spacing: 0.06em;
  color: #333333;
  font-weight: 700;
  margin-bottom: 9px;
  line-height: 1;
}
.l-new-header__english {
  font-size: 14px;
  letter-spacing: 0.06em;
  color: #ff2a2e;
  font-weight: 600;
  font-family: "din-2014", sans-serif;
  line-height: 1;
}
.l-new-header__button {
  width: 284px;
  background-color: #ff2a2e;
  border-radius: 28px;
  height: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s;
}
.l-new-header__button:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
.l-new-header__text {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.l-new-header__arrow {
  width: 7.5px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 18px;
}

.l-hamburger {
  display: none;
  text-align: center;
}
@media screen and (max-width: 1300px) {
  .l-hamburger {
    display: block;
  }
}
.l-hamburger__30-box {
  text-align: center;
}
.l-hamburger__space {
  height: 85px;
  background-color: #ff2a2e;
}
@media screen and (max-width: 767px) {
  .l-hamburger__space {
    height: 60px;
  }
}
.l-hamburger__30 {
  color: #fff;
  position: relative;
  letter-spacing: 0.04em;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20.5px;
  margin-top: 70px;
  text-align: center;
  display: inline-block;
}
.l-hamburger__30::before {
  position: absolute;
  left: -19.4px;
  content: "";
  background-color: #ffe6e6;
  width: 2px;
  height: 21px;
  transform: rotate(-30deg);
  top: 4px;
  border-radius: 10px;
}
.l-hamburger__30::after {
  position: absolute;
  right: -19.4px;
  content: "";
  background-color: #ffe6e6;
  width: 2px;
  height: 21px;
  transform: rotate(30deg);
  border-radius: 10px;
  top: 4px;
}
.l-hamburger__contact {
  position: relative;
  background-color: #fff;
  border-radius: 5px;
  width: 289px;
  padding-top: 18.5px;
  padding-bottom: 18.5px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.l-hamburger__contact-text {
  color: #ff2a2e;
  font-size: 18px;
  letter-spacing: 0.04em;
  line-height: 1.5;
  font-weight: 700;
}
.l-hamburger__contact-ico {
  width: 20px;
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  right: 17.7px;
}
.l-hamburger__contact-p {
  margin: 0 auto;
  font-size: 20px;
}
.l-hamburger__nav {
  position: fixed;
  background-color: #fff;
  color: #333;
  width: 100%;
  height: 100%;
  z-index: 50;
  opacity: 0;
  top: -1500px;
  transition: all 0.7s;
  z-index: 800;
}
.l-hamburger__ul {
  text-align: left;
  position: relative;
}
.l-hamburger__p {
  font-weight: 500;
  line-height: 1;
  font-family: "din-2014", sans-serif;
  font-size: 32px;
  color: rgba(255, 255, 255, 0.5);
}
.l-hamburger__japanese {
  font-size: 12px;
  color: #fff;
  font-weight: 700;
}
.l-hamburger__li {
  position: relative;
  border-top: 1px solid #f6f6f6;
  padding-left: 40px;
  padding-top: 15.5px;
  padding-bottom: 15.5px;
  border-color: rgba(246, 246, 246, 0.3);
}
.l-hamburger__li--special {
  border-bottom: 1px solid #f6f6f6;
  border-color: rgba(246, 246, 246, 0.3);
}
.l-hamburger__li.is-open .l-hamburger__submenu {
  max-height: 1000px;
  opacity: 1;
  transform: translateY(0);
}
.l-hamburger__li.is-open .l-hamburger__arrow {
  transform: rotate(180deg);
}
.l-hamburger__a {
  color: #333;
  position: relative;
  font-size: 1.8px;
  cursor: pointer;
  text-transform: capitalize;
  display: inline-block;
  text-transform: uppercase;
}
@media screen and (max-width: 1300px) {
  .l-hamburger__a {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .l-hamburger__a {
    font-size: 2.5px;
  }
}
.l-hamburger__arrow {
  position: absolute;
  display: inline-block;
  top: 50%;
  transform: translateY(-50%);
  right: -100px;
  transform-origin: center 3px;
}
.l-hamburger__button {
  display: none;
  cursor: pointer;
  width: 85px;
  height: 85px;
  border: none;
  position: fixed;
  right: 0;
  top: 0;
  background-color: transparent;
  z-index: 900;
  transition: all 0.5s;
  background-color: #212121;
}
@media screen and (max-width: 1300px) {
  .l-hamburger__button {
    display: inline-block;
  }
}
@media screen and (max-width: 767px) {
  .l-hamburger__button {
    width: 60px;
    height: 60px;
  }
}
.l-hamburger__hum {
  display: none;
  height: 2px;
  width: 30px;
  background-color: #fff;
  position: relative;
  display: inline-block;
  text-align: center;
  margin-top: 25px;
  z-index: 900;
  border-radius: 10px;
}
.l-hamburger__hum::before, .l-hamburger__hum::after {
  content: "";
  display: inline-block;
  height: 2px;
  width: 30px;
  background-color: #fff;
  position: absolute;
  top: -10px;
  left: 0;
  transition: all 0.25s;
  border-radius: 3px;
}
@media screen and (max-width: 767px) {
  .l-hamburger__hum::before, .l-hamburger__hum::after {
    height: 1.5px;
    width: 18px;
    top: -6px;
  }
}
.l-hamburger__hum::after {
  top: 10px;
}
@media screen and (max-width: 767px) {
  .l-hamburger__hum::after {
    top: 6px;
  }
}
@media screen and (max-width: 1300px) {
  .l-hamburger__hum {
    display: inline-block;
  }
}
@media screen and (max-width: 767px) {
  .l-hamburger__hum {
    height: 1.5px;
    width: 18px;
    margin-top: 23px;
  }
}

.open .l-hamburger__nav {
  top: 0;
  opacity: 1;
  background-color: #ff2a2e;
}

.open .l-hamburger__button span {
  background-color: transparent;
}

.open .l-hamburger__button span::before {
  transform: translateY(9px) rotate(-315deg);
}
@media screen and (max-width: 767px) {
  .open .l-hamburger__button span::before {
    transform: translateY(7px) rotate(-315deg);
  }
}

.open .l-hamburger__button span::after {
  transform: translateY(-11px) rotate(315deg);
}
@media screen and (max-width: 767px) {
  .open .l-hamburger__button span::after {
    transform: translateY(-5px) rotate(315deg);
  }
}

.p-comparison {
  padding-top: 104px;
}
@media screen and (max-width: 767px) {
  .p-comparison {
    padding-top: 53px;
  }
}
.p-comparison__text-group {
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-comparison__text-group {
    margin-bottom: 28px;
  }
}
.p-comparison__sub {
  font-size: 20px;
  font-weight: 700;
  color: #ff2a2e;
  font-family: "din-2014", sans-serif;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .p-comparison__sub {
    font-size: 14px;
    margin-bottom: 4px;
  }
}
.p-comparison__title {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  color: #212121;
  letter-spacing: 0.02px;
}
@media screen and (max-width: 767px) {
  .p-comparison__title {
    font-size: 24px;
  }
}
.p-comparison__wrap {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-comparison__wrap {
    width: 751px;
    height: 381px;
  }
}
.p-new-reason {
  padding-top: 107px;
  padding-bottom: 119px;
}
@media screen and (max-width: 767px) {
  .p-new-reason {
    padding-top: 62px;
    padding-bottom: 60px;
  }
}
.p-new-reason__title-group {
  text-align: center;
  width: 556px;
  margin: 0 auto;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .p-new-reason__title-group {
    width: 342px;
    margin-bottom: 41px;
  }
}
.p-new-reason__logo {
  width: 100%;
}
.p-new-reason__group {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  -moz-column-gap: 69px;
  column-gap: 69px;
}
@media screen and (max-width: 1300px) {
  .p-new-reason__group {
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-new-reason__group {
    row-gap: 30px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
  }
}
.p-new-reason__child {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 25px;
}
@media screen and (max-width: 767px) {
  .p-new-reason__child {
    row-gap: 16px;
  }
}
.p-new-reason__img {
  width: 310px;
  box-shadow: 3px 5px 15px rgba(51, 51, 51, 0.15);
}
@media screen and (max-width: 1024px) {
  .p-new-reason__img {
    width: 220px;
  }
}
@media screen and (max-width: 767px) {
  .p-new-reason__img {
    width: 305px;
  }
}
.p-new-reason__img-sp {
  width: 100%;
}
.p-new-reason__arrow {
  width: 37px;
  margin-bottom: 56.3px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-new-reason__arrow {
    width: 20px;
    margin-bottom: 30px;
  }
}
.p-new-reason__texts {
  color: #212121;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
}
.p-new-reason__texts span {
  color: #ff2a2e;
}
@media screen and (max-width: 1024px) {
  .p-new-reason__texts {
    font-size: 18px;
  }
}
.p-new-reason__second-parent {
  text-align: center;
}
.p-new-reason__down {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 67.3px;
  column-gap: 67.3px;
}
@media screen and (max-width: 1024px) {
  .p-new-reason__down {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-new-reason__down {
    row-gap: 8px;
  }
}
.p-new-reason__reco-img {
  width: 400px;
}
@media screen and (max-width: 767px) {
  .p-new-reason__reco-img {
    width: 100%;
  }
}
.p-new-reason__list-group {
  display: flex;
  flex-direction: column;
  row-gap: 32.4px;
}
@media screen and (max-width: 767px) {
  .p-new-reason__list-group {
    row-gap: 13.8px;
  }
}
.p-new-reason__text--1 {
  width: 461.91px;
}
@media screen and (max-width: 767px) {
  .p-new-reason__text--1 {
    width: 308px;
  }
}
.p-new-reason__text--2 {
  width: 502.37px;
}
@media screen and (max-width: 767px) {
  .p-new-reason__text--2 {
    width: 326px;
  }
}
.p-new-reason__text--3 {
  width: 440.37px;
}
@media screen and (max-width: 767px) {
  .p-new-reason__text--3 {
    width: 293px;
  }
}
.p-new-reason__text--4 {
  width: 481.37px;
}
@media screen and (max-width: 767px) {
  .p-new-reason__text--4 {
    width: 314px;
  }
}

.p-new-recommendation {
  text-align: center;
}
.p-new-recommendation__title-group {
  text-align: center;
  width: 512px;
  margin: 0 auto;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .p-new-recommendation__title-group {
    width: 216px;
    margin-bottom: 20px;
  }
}
.p-new-recommendation__logo {
  width: 100%;
}

.p-new-cari {
  overflow-x: hidden;
  background: url(https://digital-hacks.jp/_assets/img/index-new/cari/bg-curriculum.png);
  padding-top: 310px;
  padding-bottom: 123px;
  position: relative;
  background-repeat: repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-new-cari {
    padding-top: 188px;
    padding-bottom: 109px;
    background: url(https://digital-hacks.jp/_assets/img/index-new/cari/bg-curriculum-sp.png);
    background-repeat: repeat;
    background-size: contain;
  }
}
.p-new-cari__title-group {
  position: absolute;
  top: 118px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 880px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-new-cari__title-group {
    width: 511px;
    position: absolute;
    top: 76px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.p-new-cari__logo {
  width: 100%;
}
.p-new-cari__plus {
  width: 32px;
}
@media screen and (max-width: 767px) {
  .p-new-cari__plus {
    width: 25px;
  }
}
.p-new-cari__description {
  margin-bottom: 83px;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.7;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-new-cari__description {
    margin-bottom: 40px;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-align: left;
    line-height: 1.8;
  }
}
.p-new-cari__group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.p-new-cari__child {
  padding: 68px 60px 50px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  -moz-column-gap: 17px;
  column-gap: 17px;
  border: 1px solid #ff2a2e;
  background-color: #fff;
  border-radius: 10px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .p-new-cari__child {
    height: 333px;
    align-items: flex-start;
  }
}
@media screen and (max-width: 1024px) {
  .p-new-cari__child {
    border-radius: 8px;
    padding: 80px 20px 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-new-cari__child {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}
.p-new-cari__ico {
  width: 247px;
  position: absolute;
  left: 0;
  top: 50px;
}
@media screen and (max-width: 1200px) {
  .p-new-cari__ico {
    top: 25px;
  }
}
@media screen and (max-width: 767px) {
  .p-new-cari__ico {
    top: 38px;
    width: 174px;
  }
}
.p-new-cari__img {
  width: 573px;
}
@media screen and (max-width: 1200px) {
  .p-new-cari__img {
    width: 300px;
    -o-object-fit: auto;
    object-fit: auto;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-new-cari__img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 170px;
  }
}
.p-new-cari__img--2 {
  height: 300px;
  -o-object-fit: contain;
  object-fit: contain;
}
@media screen and (max-width: 1200px) {
  .p-new-cari__img--2 {
    width: 300px;
    -o-object-fit: auto;
    object-fit: auto;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-new-cari__img--2 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    top: 160px;
  }
}
.p-new-cari__img--3 {
  height: 304px;
  -o-object-fit: contain;
  object-fit: contain;
}
@media screen and (max-width: 1200px) {
  .p-new-cari__img--3 {
    width: 300px;
    -o-object-fit: auto;
    object-fit: auto;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-new-cari__img--3 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    top: 190px;
  }
}
.p-new-cari__h3 {
  font-weight: 700;
  font-size: 31px;
  letter-spacing: 0.02em;
  line-height: 1.65;
  margin-bottom: 22px;
}
@media screen and (max-width: 1200px) {
  .p-new-cari__h3 {
    font-size: 23px;
  }
}
@media screen and (max-width: 767px) {
  .p-new-cari__h3 {
    font-size: 20px;
    margin-bottom: 203px;
    letter-spacing: 0;
  }
}
.p-new-cari__descriptions {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.8;
  text-align: left;
  max-width: 454px;
}
@media screen and (max-width: 1200px) {
  .p-new-cari__descriptions {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .p-new-cari__descriptions {
    font-size: 14px;
  }
}
.p-new-cari__arrows {
  width: 37px;
  height: 22px;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-new-cari__arrows {
    margin-top: 15px;
    margin-bottom: 15px;
    width: 27px;
    height: 15xpx;
  }
}

.p-new-fv {
  padding-top: 98px;
  padding-bottom: 54px;
  background: url(/_assets/img/fv/bg.png);
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .p-new-fv {
    background-position-x: 60%;
  }
}
@media screen and (max-width: 767px) {
  .p-new-fv {
    padding-top: 141px;
    padding-bottom: 6px;
    background: url(/_assets/img/fv/bg-sp.png);
    background-size: cover;
    background-position: center;
  }
}
.p-new-fv__70 {
  font-size: 70px;
}
@media screen and (max-width: 767px) {
  .p-new-fv__70 {
    font-size: 31px;
  }
}
.p-new-fv__a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 446px;
}
.p-new-fv__text {
  width: 446px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding-top: 26px;
  padding-bottom: 26px;
  background-color: #ff2a2e;
  border-radius: 7px;
  box-shadow: 6px 6px 0px #c40d10;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.p-new-fv__description {
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  line-height: 1.52;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-new-fv__description {
    margin-bottom: 20px;
    font-size: 16px;
    color: #333;
  }
}
@media screen and (max-width: 767px) {
  .p-new-fv__description span {
    color: #ff2a2e;
  }
}
.p-new-fv__h1 {
  margin: 0;
  font-size: 60px;
  color: #212121;
  background-color: #fff;
  font-weight: 800;
  margin-bottom: 27px;
  line-height: 1;
  display: inline-block;
  padding-left: 17px;
  padding-right: 17px;
  padding-bottom: 17px;
  padding-top: 10px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-new-fv__h1 {
    margin-bottom: 10px;
    font-size: 26px;
    padding-left: 7px;
    padding-right: 7px;
    padding-bottom: 7px;
    padding-top: 2px;
  }
}
.p-new-fv__h1 span {
  font-size: 80px;
  color: #ff2a2e;
}
@media screen and (max-width: 767px) {
  .p-new-fv__h1 span {
    font-size: 34px;
  }
}
.p-new-fv__h2 {
  line-height: 1;
  margin: 0;
  display: inline-block;
  font-size: 60px;
  color: #212121;
  background-color: #fff;
  margin-bottom: 55px;
  padding-left: 17px;
  padding-right: 17px;
  padding-bottom: 17px;
  padding-top: 10px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-new-fv__h2 {
    margin-bottom: 10px;
    font-size: 26px;
    padding-left: 7px;
    padding-right: 7px;
    padding-bottom: 7px;
    padding-top: 2px;
  }
}
.p-new-fv__certification {
  width: 167.5px;
  margin-bottom: 37.3px;
}
.p-new-fv__kome {
  width: 317px;
}
.p-new-fv__another {
  background-color: #fff;
  border: 1px solid #ff2a2e;
  width: 320px;
  height: 34px;
  font-size: 18px;
  font-weight: 700;
  color: #ff2a2e;
  letter-spacing: 0.04em;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -17.5px;
  border-radius: 19px;
  padding-bottom: 4px;
}
.p-new-fv__arrow {
  width: 10px;
  top: 50%;
  transform: translateY(-50%);
  right: 33.7px;
  position: absolute;
}

.p-new-black {
  padding-top: 32px;
  padding-bottom: 44px;
  text-align: center;
  background-color: #212121;
}
@media screen and (max-width: 767px) {
  .p-new-black {
    display: none;
  }
}
.p-new-black__wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14.5px;
}
.p-new-black__img--1 {
  width: 326px;
}
@media screen and (max-width: 1024px) {
  .p-new-black__img--1 {
    width: 246px;
  }
}
.p-new-black__img--2 {
  width: 296px;
}
@media screen and (max-width: 1024px) {
  .p-new-black__img--2 {
    width: 216px;
  }
}
.p-new-black__img--3 {
  width: 325px;
}
@media screen and (max-width: 1024px) {
  .p-new-black__img--3 {
    width: 245px;
  }
}
.p-new-black__text {
  width: 266px;
}

.p-new-button {
  padding-top: 37px;
  padding-bottom: 30px;
  background-color: #212121;
}
.p-new-button__a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
}
.p-new-button__another {
  background-color: #fff;
  border: 1px solid #ff2a2e;
  width: 241px;
  height: 25px;
  font-size: 13px;
  font-weight: 700;
  color: #ff2a2e;
  letter-spacing: 0.04em;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -12.5px;
  border-radius: 17px;
  padding-bottom: 4px;
}
.p-new-button__text {
  width: 100%;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #ff2a2e;
  border-radius: 7px;
  box-shadow: 0px 5px 0px #c40d10;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.p-new-button__arrow {
  width: 7.44px;
  top: 50%;
  transform: translateY(-50%);
  right: 25.2px;
  position: absolute;
}

.p-new-mouth {
  background-color: #f6f6f6;
  padding-top: 68px;
  padding-bottom: 68px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-new-mouth {
    padding-top: 25px;
    padding-bottom: 40px;
  }
}
.p-new-mouth__swiper {
  overflow: hidden;
}
.p-new-mouth__text-pc {
  width: 650px;
  position: absolute;
  top: -27px;
  left: 50%;
  transform: translateX(-50%);
}
.p-new-mouth__text-sp {
  width: 263px;
  margin: 0 auto;
  margin-bottom: 15px;
}
.p-new-mouth__swiper-wrpper {
  transition-timing-function: linear;
}
.p-new-mouth__swiper-slide {
  width: auto;
  height: 123px;
}
.p-new-mouth__person {
  height: 100%;
}
.p-new-mouth__img {
  width: 51px;
  height: 51px;
  margin-bottom: 2px;
}
.p-new-mouth__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.p-new-mouth__name {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.p-new-mouth__name span {
  font-size: 13px;
}
.p-new-mouth__twitter {
  font-size: 8px;
  color: #8e8e8e;
  letter-spacing: 0.02em;
  font-weight: 500;
}
.p-new-mouth__right {
  font-size: 14px;
  line-height: 1.57;
  font-weight: 500;
}
.p-new-mouth__test {
  height: 147px;
  width: 93%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}
@media screen and (max-width: 1800px) {
  .p-new-mouth__test {
    height: 140px;
  }
}
@media screen and (max-width: 1600px) {
  .p-new-mouth__test {
    height: 123px;
  }
}
@media screen and (max-width: 1300px) {
  .p-new-mouth__test {
    height: 108px;
  }
}
@media screen and (max-width: 1024px) {
  .p-new-mouth__test {
    height: 123px;
  }
}
@media screen and (max-width: 767px) {
  .p-new-mouth__test {
    height: 123px;
  }
}

.p-new-about {
  padding-top: 118px;
  padding-bottom: 164px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-new-about {
    padding-top: 165px;
    padding-bottom: 98px;
    overflow-x: hidden;
  }
}
.p-new-about__marker {
  font-weight: 600;
  text-decoration: underline !important;
}
.p-new-about__title-group {
  text-align: center;
  width: 678px;
  margin: 0 auto;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .p-new-about__title-group {
    width: 418px;
    position: absolute;
    top: 58px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.p-new-about__logo {
  width: 100%;
}
.p-new-about__group {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 96px;
  column-gap: 96px;
}
@media screen and (max-width: 1300px) {
  .p-new-about__group {
    -moz-column-gap: 35px;
    column-gap: 35px;
  }
}
@media screen and (max-width: 767px) {
  .p-new-about__group {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.p-new-about__img {
  width: 482px;
}
@media screen and (max-width: 1300px) {
  .p-new-about__img {
    width: 286px;
  }
}
@media screen and (max-width: 767px) {
  .p-new-about__img {
    position: absolute;
    top: 302px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.p-new-about__right {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-new-about__right {
    text-align: center;
  }
}
.p-new-about__h3 {
  letter-spacing: 0.04em;
  font-weight: 700;
  font-size: 33px;
  line-height: 1.72;
}
@media screen and (max-width: 1300px) {
  .p-new-about__h3 {
    font-size: 26px;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 1024px) {
  .p-new-about__h3 {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  .p-new-about__h3 {
    margin-bottom: 370px;
    font-size: 24px;
    line-height: 1.65;
  }
}
.p-new-about__h3 span {
  color: #fff;
  background-color: #ff2a2e;
  padding-right: 8px;
  padding-left: 8px;
  padding-bottom: 3.5px;
  margin-right: 10px;
  font-size: 42px;
}
@media screen and (max-width: 767px) {
  .p-new-about__h3 span {
    margin-right: 3px;
    font-size: 29px;
  }
}
.p-new-about__description {
  line-height: 1.77;
  letter-spacing: 0.05em;
  font-size: 18px;
  font-weight: 400;
  margin-top: 19px;
}
.p-new-about__description span {
  font-weight: 700;
}
@media screen and (max-width: 1300px) {
  .p-new-about__description {
    line-height: 1.9;
    font-size: 14px;
    margin-top: 0;
    text-align: left;
    padding-right: 5px;
    padding-left: 5px;
  }
}
.p-new-about__button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(to bottom, #ffe100, #fb9908);
  border-radius: 40px;
  width: 500px;
  height: 80px;
  transition: all 0.3s;
  margin: 0 auto;
  margin-top: 46px;
  box-shadow: 3px 7px 15px rgba(251, 153, 8, 0.25);
}
@media screen and (max-width: 1300px) {
  .p-new-about__button {
    width: 100%;
    height: 64px;
  }
}
.p-new-about__button:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
.p-new-about__button-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 32px;
  width: 32px;
  height: 32px;
}
.p-new-about__button-text {
  color: #333;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-new-about__button-text {
    font-size: 18px;
  }
}
.p-new-about__button-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 32px;
  width: 32px;
  height: 32px;
}
@media screen and (max-width: 767px) {
  .p-new-about__button-arrow {
    right: 22px;
    width: 24px;
    height: 24px;
  }
}

.p-new-voice {
  overflow-x: hidden;
  background: url(https://digital-hacks.jp/_assets/img/index-new/voice/bg.png);
  background-position: center;
  background-repeat: none;
  background-size: cover;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 98px;
}
@media screen and (max-width: 767px) {
  .p-new-voice {
    background: url(https://digital-hacks.jp/_assets/img/index-new/voice/bg-sp.png);
    background-position: center;
    background-repeat: none;
    background-size: cover;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 98px;
    overflow-x: hidden;
  }
}
.p-new-voice__circle {
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
  font-size: 24px;
  letter-spacing: 0.05em;
  padding: 1.8px 55px 3px 55px;
  border: 1px solid #fff;
  border-radius: 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 455px;
  margin: 0 auto;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-new-voice__circle {
    margin: 0 auto;
    margin-bottom: 10px;
    font-size: 16px;
    padding: 2.2px 35px 4px 35px;
    width: 300px;
  }
}
.p-new-voice__letter-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 14px;
  column-gap: 14px;
  margin-bottom: 56px;
}
@media screen and (max-width: 767px) {
  .p-new-voice__letter-group {
    flex-direction: column;
    align-items: center;
    row-gap: 4.3px;
    margin-bottom: 38.7px;
  }
}
.p-new-voice__letter-1 {
  font-size: 36px;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-new-voice__letter-1 {
    font-size: 24px;
  }
}
.p-new-voice__letter-2 {
  font-size: 36px;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #ff2a2e;
  background-color: #fff;
  line-height: 1;
  padding: 7px 10px 10px 10px;
}
@media screen and (max-width: 767px) {
  .p-new-voice__letter-2 {
    font-size: 26px;
  }
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev,
.swiper-button-next {
  height: 39px !important;
  width: 30px !important;
}
@media screen and (max-width: 767px) {
  .swiper-button-prev,
  .swiper-button-next {
    height: 22px !important;
    width: 13px !important;
  }
}

.swiper-button-prev {
  left: 31% !important;
}
@media screen and (max-width: 1600px) {
  .swiper-button-prev {
    left: 30% !important;
  }
}
@media screen and (max-width: 767px) {
  .swiper-button-prev {
    left: 18px !important;
  }
}

.swiper-container {
  position: relative;
}

.swiper-button-next {
  right: 31% !important;
}
@media screen and (max-width: 1600px) {
  .swiper-button-next {
    right: 30% !important;
  }
}
@media screen and (max-width: 767px) {
  .swiper-button-next {
    right: 18px !important;
  }
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev::after,
.swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "" !important;
  height: 37px !important;
  margin: auto !important;
  width: 22px !important;
}
@media screen and (max-width: 767px) {
  .swiper-button-prev::after,
  .swiper-button-next::after {
    height: 21px !important;
    width: 13px !important;
  }
}

/* 前への矢印カスタマイズ */
.swiper-button-prev::after {
  background-image: url(../img/voice/arrow-left.svg);
}
@media screen and (max-width: 767px) {
  .swiper-button-prev::after {
    background-image: url(https://digital-hacks.jp/_assets/img/index-new/voice/arrow-left-sp.png);
  }
}

/* 次への矢印カスタマイズ */
.swiper-button-next::after {
  background-image: url(../img/voice/arrow-right.svg);
}
@media screen and (max-width: 767px) {
  .swiper-button-next::after {
    background-image: url(https://digital-hacks.jp/_assets/img/index-new/voice/arrow-right-sp.png);
  }
}

.swiper-pagination {
  bottom: -40px !important;
}
@media screen and (max-width: 767px) {
  .swiper-pagination {
    bottom: -43px !important;
  }
}

.swiper-pagination-bullet {
  background: rgba(255, 230, 230, 0.9) !important;
  width: 7.5px !important;
  height: 7.5px !important;
}

.swiper-pagination-bullet-active {
  background: #ffe6e6 !important;
}

.slider-thumbnail {
  margin-top: 40px;
  width: 100%;
  display: none !important;
}

.slider-nav .slick-slides {
  margin-right: 7px;
  margin-left: 7px;
  cursor: pointer;
}

.slider-for {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .slider-for {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .slider-nav {
    display: none !important;
  }
}

.slick-prev {
  left: -50px !important;
}
.slick-prev::before {
  font-size: 28px !important;
}

.slick-next {
  right: -50px !important;
}
.slick-next::before {
  font-size: 28px !important;
}

.p-community {
  position: relative;
  overflow-x: hidden;
  padding-top: 90px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .p-community {
    padding-top: 0px;
    padding-bottom: 70px;
  }
}
.p-community__title-group {
  position: absolute;
  top: 72px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 802px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-community__title-group {
    width: 434px;
    position: absolute;
    top: 76px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.p-community__container {
  max-width: 1440px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1200px) {
  .p-community__container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .p-community__container {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.p-community__wrap {
  margin-top: 193px;
}
.p-community__child {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 66px;
  column-gap: 66px;
}
.p-community__child--1 {
  justify-content: left;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .p-community__child--1 {
    margin-bottom: 30px;
  }
}
.p-community__child--2 {
  justify-content: right;
}
@media screen and (max-width: 767px) {
  .p-community__child {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.p-community__img--1 {
  width: 680px;
}
@media screen and (max-width: 1200px) {
  .p-community__img--1 {
    width: 400px;
  }
}
@media screen and (max-width: 900px) {
  .p-community__img--1 {
    width: 350px;
  }
}
@media screen and (max-width: 767px) {
  .p-community__img--1 {
    width: 100%;
    margin-bottom: 16px;
  }
}
.p-community__img--2 {
  width: 632px;
}
@media screen and (max-width: 1200px) {
  .p-community__img--2 {
    width: 400px;
  }
}
@media screen and (max-width: 900px) {
  .p-community__img--2 {
    width: 350px;
  }
}
@media screen and (max-width: 767px) {
  .p-community__img--2 {
    width: 100%;
    margin-bottom: 13px;
  }
}
.p-community__letter-group {
  text-align: left;
  max-width: 574px;
}
@media screen and (max-width: 767px) {
  .p-community__letter-group {
    text-align: center;
  }
}
.p-community__img-text {
  width: 550px;
  margin-bottom: 11px;
}
@media screen and (max-width: 767px) {
  .p-community__img-text {
    width: 310px;
    margin: 0 auto;
    margin-bottom: -7px;
  }
}
.p-community__title {
  margin-bottom: 14px;
  font-size: 32px;
  font-weight: 700;
}
.p-community__title--1 {
  margin-bottom: 24px;
}
.p-community__title--2 {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .p-community__title {
    font-size: 18px;
    text-align: center;
  }
}
.p-community__yellow {
  margin-bottom: 27px;
  font-size: 25px;
  font-weight: 700;
  color: #ffbe23;
}
@media screen and (max-width: 767px) {
  .p-community__yellow {
    font-size: 18px;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
    text-align: center;
  }
}
.p-community__description {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.85;
}
@media screen and (max-width: 1200px) {
  .p-community__description {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .p-community__description {
    font-size: 14px;
    text-align: left;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.community-swiper {
  height: 262px;
  margin-bottom: 100px;
  position: relative;
}
@media screen and (max-width: 1300px) {
  .community-swiper {
    height: 222px;
  }
}
@media screen and (max-width: 767px) {
  .community-swiper {
    margin-bottom: 3px;
  }
}

.swiper-paginations {
  text-align: center;
  position: absolute;
  top: 230px !important;
}
@media screen and (max-width: 1300px) {
  .swiper-paginations {
    top: 190px !important;
  }
}
@media screen and (max-width: 767px) {
  .swiper-paginations {
    top: 165px !important;
  }
}

.swiper-paginations .swiper-pagination-bullet {
  background-color: #ffe6e6 !important;
}

.swiper-paginations .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #ff2a2e !important;
}

.p-new-support {
  padding-bottom: 120px;
  padding-top: 120px;
  background-color: #f6f6f6;
}
@media screen and (max-width: 767px) {
  .p-new-support {
    position: relative;
    padding-top: 160px;
    padding-bottom: 80px;
    background-color: #fff;
  }
}
.p-new-support__title-group {
  text-align: center;
  width: 628px;
  margin: 0 auto;
  margin-bottom: 91px;
}
@media screen and (max-width: 767px) {
  .p-new-support__title-group {
    width: 386px;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 0;
  }
}
.p-new-support__logo {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-new-support__logo {
    position: absolute;
    top: 19px;
  }
}
@media screen and (max-width: 1200px) {
  .p-new-support__group {
    text-align: center;
  }
}
.p-new-support__child {
  padding: 28px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: row;
  position: relative;
  justify-content: space-between;
}
.p-new-support__child:not(:last-child) {
  margin-bottom: 84px;
}
@media screen and (max-width: 767px) {
  .p-new-support__child:not(:last-child) {
    margin-bottom: 66px;
  }
}
.p-new-support__child--1 {
  padding-left: 60px;
}
.p-new-support__child--2 {
  padding-right: 60px;
  padding-left: 5px;
}
.p-new-support__child--3 {
  padding-left: 60px;
  padding-right: 28px;
  padding-top: 0;
  padding-bottom: 129px;
  position: relative;
}
.p-new-support__child--4 {
  padding-right: 60px;
  padding-left: 28px;
}
@media screen and (max-width: 767px) {
  .p-new-support__child--4 {
    padding-bottom: 30px !important;
  }
}
@media screen and (max-width: 1200px) {
  .p-new-support__child {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 30px !important;
    padding-bottom: 30px !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  .p-new-support__child {
    padding-top: 43px !important;
    padding-bottom: 16px;
    padding-left: 0px !important;
    padding-right: 0px !important;
    background-color: #f6f6f6;
  }
}
.p-new-support__letter-group {
  position: relative;
}
.p-new-support__letter-group--1 {
  padding-top: 52px;
}
.p-new-support__letter-group--2 {
  padding-top: 52px;
}
.p-new-support__letter-group--3 {
  padding-top: 80px;
}
@media screen and (max-width: 1200px) {
  .p-new-support__letter-group {
    padding-top: 0 !important;
  }
}
.p-new-support__number {
  width: 133px;
  top: -34px;
  left: 40px;
  position: absolute;
}
.p-new-support__number--1 {
  top: -34px;
  left: 40px;
}
.p-new-support__number--2 {
  top: -34px;
  right: 40px;
  left: initial;
}
@media screen and (max-width: 767px) {
  .p-new-support__number {
    width: 66px;
    top: -20px;
    left: 50%;
    right: initial;
    transform: translateX(-50%);
  }
}
.p-new-support__h3 {
  line-height: 1.5;
  font-size: 35px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 9px;
}
@media screen and (max-width: 767px) {
  .p-new-support__h3 {
    font-size: 20px;
    margin-bottom: 0;
  }
}
.p-new-support__sub {
  color: #ff2a2e;
  line-height: 1.5;
  font-size: 25px;
  letter-spacing: 0.02em;
  font-weight: 700;
  margin-bottom: 24px;
}
@media screen and (max-width: 1200px) {
  .p-new-support__sub {
    margin-bottom: 330px;
  }
}
@media screen and (max-width: 1200px) {
  .p-new-support__sub--3 {
    margin-bottom: 356px;
  }
}
@media screen and (max-width: 767px) {
  .p-new-support__sub--2 {
    margin-bottom: 257px !important;
  }
}
@media screen and (max-width: 767px) {
  .p-new-support__sub {
    font-size: 16px;
    margin-bottom: 255px;
  }
}
.p-new-support__description {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.77;
  letter-spacing: 0.05em;
  width: 501px;
}
@media screen and (max-width: 1200px) {
  .p-new-support__description {
    text-align: left;
    font-size: 14px;
    width: 300px;
    margin: 0 auto;
  }
}
.p-new-support__arrow {
  width: 8.32px;
}
.p-new-support__img {
  -o-object-fit: cover;
  object-fit: cover;
}
.p-new-support__img--1 {
  width: 550px;
}
.p-new-support__img--2 {
  width: 580px;
}
@media screen and (max-width: 767px) {
  .p-new-support__img--2 {
    top: 110px !important;
  }
}
.p-new-support__img--4 {
  width: 550px;
}
@media screen and (max-width: 1200px) {
  .p-new-support__img {
    position: absolute;
    top: 157px;
    left: 50%;
    transform: translateX(-50%);
    width: 425px;
  }
}
.p-new-support__img--3 {
  width: 594px;
  position: absolute;
  bottom: 0;
  right: 28px;
}
@media screen and (max-width: 1200px) {
  .p-new-support__img--3 {
    position: absolute;
    top: 149px;
    left: 44%;
    transform: translateX(-50%);
    width: 401px;
  }
}
@media screen and (max-width: 400px) {
  .p-new-support__img--3 {
    width: 83% !important;
    top: 131px;
  }
}
@media screen and (max-width: 767px) {
  .p-new-support__img {
    top: 123px;
    left: 50%;
    transform: translateX(-50%);
    width: 335px;
  }
}
@media screen and (max-width: 400px) {
  .p-new-support__img {
    width: 100%;
  }
}
.p-new-support__a-letter {
  font-size: 18px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 400px) {
  .p-new-support__a-letter {
    font-size: 12px;
  }
}
.p-new-support__a {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #707070;
  font-weight: 700;
  -moz-column-gap: 20px;
  column-gap: 20px;
  position: absolute;
  transition: all 0.3s;
}
.p-new-support__a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
.p-new-support__a--1 {
  bottom: 0;
  left: 0;
}
.p-new-support__a--2 {
  bottom: 25px;
  left: 0;
}
.p-new-support__a--3 {
  bottom: -80px;
  left: 0;
}
@media screen and (max-width: 1200px) {
  .p-new-support__a {
    position: static;
    text-align: center;
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-new-support__a {
    justify-content: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
  }
}

.p-new-plan {
  background-image: url(/_assets/img/price/bg.png);
  background-position: center;
  background-size: cover;
  padding-top: 110px;
  padding-bottom: 165px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-new-plan {
    padding-top: 58px;
    padding-bottom: 110px;
  }
}
.p-new-plan__title-group {
  text-align: center;
  width: 358px;
  margin: 0 auto;
  margin-bottom: 47px;
}
@media screen and (max-width: 767px) {
  .p-new-plan__title-group {
    width: 238px;
    margin-bottom: 22px;
  }
}
.p-new-plan__logo {
  width: 100%;
}

.p-price-april {
  width: 470px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 5px 5px 10px rgba(51, 51, 51, 0.16);
}
@media screen and (max-width: 1300px) {
  .p-price-april {
    width: 385px;
  }
}
@media screen and (max-width: 767px) {
  .p-price-april {
    width: 100%;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin-top: 0 !important;
  }
}
.p-price-april__wrapping {
  position: relative;
  padding: 44px 40px 0;
}
@media screen and (max-width: 1300px) {
  .p-price-april__wrapping {
    padding: 30px 17px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-price-april__wrapping {
    padding: 26px 17px 0;
  }
}
.p-price-april__wrapping2 {
  position: relative;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 1300px) {
  .p-price-april__wrapping2 {
    padding-left: 17px;
    padding-right: 17px;
  }
}
@media screen and (max-width: 767px) {
  .p-price-april__wrapping2 {
    padding-left: 17px;
    padding-right: 17px;
  }
}
@media screen and (max-width: 767px) {
  .p-price-april__padding {
    padding: 0px 0 70px !important;
  }
}
.p-price-april__sp-button-group {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-price-april__sp-button-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}
.p-price-april__popular-icon {
  position: absolute;
  right: 23px;
  top: -50px;
  width: 81px;
}
@media screen and (max-width: 1300px) {
  .p-price-april__popular-icon {
    right: 7px;
    top: -43px;
    width: 68px;
  }
}
@media screen and (max-width: 767px) {
  .p-price-april__popular-icon {
    display: none;
  }
}
.p-price-april__sp-button {
  height: 39px;
  cursor: pointer;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 50%;
  background-color: #fff;
}
.p-price-april__sp-button--mini {
  background-color: #e5e5e5;
  color: #fff;
}
.p-price-april__sp-button--mini.actives {
  background-color: #ffaaa5;
  color: #333;
  z-index: 2;
}
.p-price-april__sp-button--pro {
  background-color: #e5e5e5;
  color: #fff;
}
.p-price-april__sp-button--pro.active {
  background-color: #ff2a2e;
  color: #fff;
  z-index: 2;
}
.p-price-april__sp-button.inactive {
  background-color: #d3d3d3;
  border-color: #f1f1f1;
}
@media screen and (max-width: 767px) {
  .p-price-april__inner {
    max-width: initial !important;
    margin: 0 !important;
  }
}
.p-price-april__sp-logo {
  width: 121px;
}
.p-price-april__sp-title {
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
  font-weight: 700;
}
.p-price-april__sp-popular {
  position: absolute;
  top: -37px;
  right: -11px;
  z-index: 1;
  width: 56px;
}
.p-price-april__background-color {
  background-color: #fff !important;
}
.p-price-april__mini {
  border: 2px solid #ffaaa5;
  border-top: 2px solid #ffaaa5;
  padding-bottom: 136px;
}
@media screen and (max-width: 767px) {
  .p-price-april__mini {
    display: none;
    border-top: 2px solid #ffaaa5;
    padding-bottom: 30px;
  }
}
.p-price-april__pro {
  border: 2px solid #ff2a2e;
  border-top: 2px solid #ff2a2e;
  padding-bottom: 44px;
}
@media screen and (max-width: 767px) {
  .p-price-april__pro {
    border-top: 2px solid #ff2a2e;
    padding-bottom: 30px;
  }
}
.p-price-april__logo-group {
  width: 367px;
  margin: 0 auto;
  margin-bottom: 37px;
}
@media screen and (max-width: 1300px) {
  .p-price-april__logo-group {
    width: 290px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-price-april__logo-group {
    width: 261px;
    margin-bottom: 26.5px;
  }
}
.p-price-april__logo {
  width: 100%;
}
.p-price-april__description {
  font-size: 20px;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 31px;
  font-weight: 700;
  background-color: #f6f6f6;
  padding-top: 11px;
  padding-bottom: 11px;
}
@media screen and (max-width: 1300px) {
  .p-price-april__description {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .p-price-april__description {
    font-size: 14px;
    padding-top: 7.5px;
    padding-bottom: 7.5px;
    margin-bottom: 20px;
  }
}
.p-price-april__price-group {
  width: 280px;
  margin: 0 auto;
  margin-bottom: 29px;
}
@media screen and (max-width: 767px) {
  .p-price-april__price-group {
    margin-bottom: 23px;
    width: 195px;
  }
}
.p-price-april__price {
  width: 100%;
}
.p-price-april__hatena {
  width: 15px;
  position: absolute;
  top: 52%;
  transform: translateY(-50%);
  right: -26px;
  cursor: pointer;
}
@media screen and (max-width: 1300px) {
  .p-price-april__hatena {
    right: -26px;
  }
}
@media screen and (max-width: 767px) {
  .p-price-april__hatena {
    right: -26px;
    top: 53%;
  }
}
.p-price-april__hatena--pro {
  right: -26px;
}
@media screen and (max-width: 767px) {
  .p-price-april__hatena--pro {
    right: -26px;
  }
}
.p-price-april__hatena--d {
  right: -26px;
  top: 53%;
}
@media screen and (max-width: 767px) {
  .p-price-april__hatena--d {
    right: -26px;
  }
}
.p-price-april__hatena--e {
  right: -26px;
  top: 53%;
}
@media screen and (max-width: 767px) {
  .p-price-april__hatena--e {
    top: 53%;
    right: -26px;
  }
}
.p-price-april__answer {
  display: none;
  position: absolute;
  top: 71%;
  right: -3px;
  z-index: 1;
  width: 55%;
}
.p-price-april__answer--pro {
  right: -4px;
}
.p-price-april__answer--d {
  right: -12px;
  top: 102%;
  width: 61%;
}
.p-price-april__answer--e {
  top: 108%;
  right: -6px;
  width: 58%;
}
.p-price-april__dl {
  position: relative;
  padding-right: 8px;
  padding-left: 8px;
  display: flex;
  flex-direction: row;
  -moz-column-gap: 74px;
  column-gap: 74px;
  border-top: 1px solid #ffaaa5;
  align-items: center;
  height: 80px;
}
.p-price-april__dl:last-child {
  border-bottom: 1px solid #ffaaa5;
}
.p-price-april__dl--red {
  border-top: 1px solid #ff2a2e;
}
.p-price-april__dl--red:last-child {
  border-bottom: 1px solid #ff2a2e;
}
.p-price-april__dl--special {
  -moz-column-gap: 40px;
  column-gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-price-april__dl {
    height: 57px;
  }
}
.p-price-april__dt {
  font-size: 16px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1300px) {
  .p-price-april__dt {
    font-size: 12px;
    letter-spacing: 0.05em;
  }
}
.p-price-april__dd {
  font-size: 20px;
  color: #1a1a1a;
  line-height: 1;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 1300px) {
  .p-price-april__dd {
    font-size: 14px;
  }
}
.p-price-april__dd span {
  font-family: "din-2014", sans-serif;
  font-size: 34px;
  margin-right: 4px;
  transform: translateY(2px);
  display: inline-block;
}
@media screen and (max-width: 1300px) {
  .p-price-april__dd span {
    font-size: 24px;
  }
}
.p-price-april__date-group {
  margin-bottom: 28px;
}
@media screen and (max-width: 767px) {
  .p-price-april__date-group {
    margin-bottom: 17.9px;
  }
}
.p-price-april__content-group {
  padding: 19px 0px 24px 11px;
  border-bottom: 1px dashed #c9c9c9;
  margin-bottom: 22px;
}
.p-price-april__content-title {
  font-size: 16px;
  font-weight: 300;
  color: #888888;
  line-height: 1;
  margin-bottom: 20px;
}
.p-price-april__content-title span {
  font-size: 13px;
}
@media screen and (max-width: 1300px) {
  .p-price-april__content-title {
    font-size: 14px;
  }
}
.p-price-april__wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 16px;
}
.p-price-april__content-child {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 7.5px;
  column-gap: 7.5px;
  position: relative;
}
.p-price-april__check {
  width: 22px;
}
.p-price-april__content {
  font-size: 16px;
  color: #1a1a1a;
  position: relative;
}
.p-price-april__content--gray {
  color: #cbcbcb;
}
.p-price-april__content span {
  color: #ff2a2e;
}
@media screen and (max-width: 1300px) {
  .p-price-april__content {
    font-size: 14px;
  }
}
.p-price-april__subject-title {
  font-size: 16px;
  font-weight: 300;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 28px;
  letter-spacing: 0.1em;
}
.p-price-april__subject-title span {
  font-size: 13px;
}
@media screen and (max-width: 1300px) {
  .p-price-april__subject-title span {
    font-size: 11px;
  }
}
@media screen and (max-width: 767px) {
  .p-price-april__subject-title {
    font-size: 12px;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
  }
}
.p-price-april__subject-group {
  display: flex;
  flex-direction: column;
}
.p-price-april__subject-parent, .p-price-april__subject-parent--pro, .p-price-april__subject-parent--pro-intermediate, .p-price-april__subject-parent--pro-practical, .p-price-april__subject-parent--pro-archive {
  display: flex;
  flex-direction: column;
}
.p-price-april__subject-parent:not(:last-child), .p-price-april__subject-parent--pro:not(:last-child), .p-price-april__subject-parent--pro-intermediate:not(:last-child), .p-price-april__subject-parent--pro-practical:not(:last-child), .p-price-april__subject-parent--pro-archive:not(:last-child) {
  margin-bottom: 8px;
}
.p-price-april__subject-button, .p-price-april__subject-button--pro, .p-price-april__subject-button--pro-archive, .p-price-april__subject-button--pro-intermediate, .p-price-april__subject-button--practical {
  font-size: 20px;
  color: #1a1a1a;
  padding: 15.5px 0px 15.5px 40px;
  background-color: #ffe6e6;
  display: inline-block;
  width: 100%;
  position: relative;
  border-radius: 5px;
  letter-spacing: 0.1em;
}
.p-price-april__subject-button--red, .p-price-april__subject-button--pro--red, .p-price-april__subject-button--pro-archive--red, .p-price-april__subject-button--pro-intermediate--red, .p-price-april__subject-button--practical--red {
  background-color: #ff2a2e;
  color: #fff !important;
}
.p-price-april__subject-button::before, .p-price-april__subject-button::after, .p-price-april__subject-button--pro::before, .p-price-april__subject-button--pro::after, .p-price-april__subject-button--pro-archive::before, .p-price-april__subject-button--pro-archive::after, .p-price-april__subject-button--pro-intermediate::before, .p-price-april__subject-button--pro-intermediate::after, .p-price-april__subject-button--practical::before, .p-price-april__subject-button--practical::after {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background: #212121;
  position: absolute;
  right: 20px;
  transform: translateY(-50%);
  top: 50%;
  transition: all 0.3s;
}
.p-price-april__subject-button::after, .p-price-april__subject-button--pro::after, .p-price-april__subject-button--pro-archive::after, .p-price-april__subject-button--pro-intermediate::after, .p-price-april__subject-button--practical::after {
  transform: translate(0, -50%) rotate(-90deg);
}
.p-price-april__subject-button--special::before, .p-price-april__subject-button--pro--special::before, .p-price-april__subject-button--pro-archive--special::before, .p-price-april__subject-button--pro-intermediate--special::before, .p-price-april__subject-button--practical--special::before {
  display: none;
}
.p-price-april__subject-button--special::after, .p-price-april__subject-button--pro--special::after, .p-price-april__subject-button--pro-archive--special::after, .p-price-april__subject-button--pro-intermediate--special::after, .p-price-april__subject-button--practical--special::after {
  display: none;
}
.p-price-april__subject-button.is-active::after, .p-price-april__subject-button--pro.is-active::after, .p-price-april__subject-button--pro-archive.is-active::after, .p-price-april__subject-button--pro-intermediate.is-active::after, .p-price-april__subject-button--practical.is-active::after {
  transform: translateY(-50%) rotate(360deg);
}
.p-price-april__subject-button.is-active::before, .p-price-april__subject-button--pro.is-active::before, .p-price-april__subject-button--pro-archive.is-active::before, .p-price-april__subject-button--pro-intermediate.is-active::before, .p-price-april__subject-button--practical.is-active::before {
  transform: translateY(-50%) rotate(360deg);
}
@media screen and (max-width: 1300px) {
  .p-price-april__subject-button, .p-price-april__subject-button--pro, .p-price-april__subject-button--pro-archive, .p-price-april__subject-button--pro-intermediate, .p-price-april__subject-button--practical {
    font-size: 16px;
  }
}
.p-price-april__subject-child, .p-price-april__subject-child--pro, .p-price-april__subject-child--pro-intermediate, .p-price-april__subject-child--practical, .p-price-april__subject-child--archive {
  display: none;
  transition: all 0.3s ease-out;
  overflow: hidden;
}
.p-price-april__subject-child.is-open, .p-price-april__subject-child--pro.is-open, .p-price-april__subject-child--pro-intermediate.is-open, .p-price-april__subject-child--practical.is-open, .p-price-april__subject-child--archive.is-open {
  display: block;
}
.p-price-april__subject-detail-group {
  transition: opacity 0.3s ease-out;
}
.p-price-april__subject-child:not(.is-open) .p-price-april__subject-detail-group, .p-price-april__subject-child--pro:not(.is-open) .p-price-april__subject-detail-group {
  opacity: 0;
}
.p-price-april__subject-detail {
  font-size: 13px;
  padding: 8px 14px;
  border-right: 1px solid #c9c9c9;
  border-left: 1px solid #c9c9c9;
  border-bottom: 1px solid #c9c9c9;
  background-color: #fff;
}
.p-price-april__subject-detail span {
  font-size: 11px;
  color: #888888;
}
@media screen and (max-width: 1300px) {
  .p-price-april__subject-detail span {
    font-size: 11px;
  }
}
@media screen and (max-width: 1300px) {
  .p-price-april__subject-detail {
    font-size: 12px;
    padding: 7px 14px;
  }
}
.p-price-april__consult {
  font-size: 12px;
  color: #1a1a1a;
  margin-top: 40px;
  letter-spacing: 0.1em;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-price-april__consult {
    text-align: left;
    margin-top: 21px;
  }
}

.plus-white::before, .plus-white::after {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background: #fff !important;
  position: absolute;
  right: 20px;
  transform: translateY(-50%);
  top: 50%;
  transition: all 0.3s;
}
.plus-white::after {
  transform: translate(0, -50%) rotate(-90deg);
}

.price_inner {
  max-width: 355px;
  margin-left: 10px;
  margin-right: 10px;
}
@media screen and (min-width: 380px) {
  .price_inner {
    margin: auto;
  }
}
@media screen and (min-width: 750px) {
  .price_inner {
    display: flex;
    justify-content: center;
    max-width: 1080px;
  }
}
@media screen and (min-width: 1080px) {
  .price_inner {
    display: flex;
    justify-content: center;
    max-width: 1080px;
  }
}
.price_inner > * + * {
  margin-top: 20px;
}
@media screen and (min-width: 750px) {
  .price_inner > * + * {
    margin-top: 0;
    margin-left: 22px;
  }
}
@media screen and (min-width: 821px) {
  .price_inner > * + * {
    margin-top: 0;
    margin-left: 60px;
  }
}

.price_caption {
  margin-top: 20px;
  font-size: 10px;
  line-height: 16px;
  color: #333333;
  font-weight: 400;
  text-align: left;
}
@media screen and (min-width: 681px) {
  .price_caption {
    margin-top: 33px;
    font-size: 14px;
    line-height: 30px;
    text-align: center;
  }
}

.p-ctr3 {
  overflow-x: hidden;
  background: url(/_assets/img/ctr3/bg-reservation.png);
  background-position: center;
  background-repeat: none;
  background-size: cover;
  width: 100%;
  padding-top: 60px;
  padding-bottom: 30px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-ctr3 {
    background: url(/_assets/img/ctr3/bg-reservation-sp.png);
    background-position: center;
    background-repeat: none;
    background-size: cover;
    width: 100%;
    overflow-x: hidden;
    padding-top: 50px;
    padding-bottom: 86px;
  }
}
.p-ctr3__wrap {
  text-align: center;
}
.p-ctr3__up {
  margin-bottom: 9px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-ctr3__up {
    display: none;
  }
}
.p-ctr3__text-sp {
  width: 283px;
  margin: 0 auto;
  margin-bottom: 27px;
}
.p-ctr3__h3 {
  margin: 0;
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 40px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-ctr3__h3 {
    font-size: 28px;
    text-align: center;
    max-width: 314px;
    margin: 0 auto;
    margin-bottom: 26px;
  }
}
.p-ctr3__img {
  width: 283px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-ctr3__img {
    width: 238px;
  }
}

.p-new-ctr-2 {
  overflow-x: hidden;
  background: url(https://digital-hacks.jp/_assets/img/index-new/ctr2/bg-reservation.png);
  background-position: center;
  background-repeat: none;
  background-size: cover;
  width: 100%;
  padding-top: 136px;
  padding-bottom: 81px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-new-ctr-2 {
    background: url(https://digital-hacks.jp/_assets/img/index-new/ctr2/bg-reservation-sp.png);
    background-position: center;
    background-repeat: none;
    background-size: cover;
    width: 100%;
    padding-top: 105px;
    padding-bottom: 51px;
    overflow-x: hidden;
  }
}
.p-new-ctr-2__title-group {
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 918px;
  margin: 0 auto;
  margin-bottom: 0px;
}
@media screen and (max-width: 767px) {
  .p-new-ctr-2__title-group {
    width: 424px;
    position: absolute;
    top: 29px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.p-new-ctr-2__logo {
  width: 100%;
}
.p-new-ctr-2__upper {
  position: relative;
  text-align: center;
}
.p-new-ctr-2__reservation {
  width: 918px;
  height: 102px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-new-ctr-2__reservation {
    width: 424px;
    height: 53px;
  }
}
.p-new-ctr-2__30 {
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-new-ctr-2__30 {
    top: 18px;
    font-size: 16px;
  }
}
.p-new-ctr-2__button {
  margin: 0 auto;
  transition: all 0.3s;
}
.p-new-ctr-2__button:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-new-ctr-2__button {
    margin-top: 0 !important;
  }
}

.p-new-ctr-1 {
  background-color: #ff2a2e;
  padding-top: 56px;
}
@media screen and (max-width: 1300px) {
  .p-new-ctr-1 {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-new-ctr-1 {
    padding-top: 50px;
    padding-bottom: 50px;
    position: relative;
  }
}
.p-new-ctr-1__wrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
  -moz-column-gap: 64px;
  column-gap: 64px;
}
@media screen and (max-width: 767px) {
  .p-new-ctr-1__wrap {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.p-new-ctr-1__img {
  width: 449px;
}
@media screen and (max-width: 1300px) {
  .p-new-ctr-1__img {
    width: 360px;
  }
}
@media screen and (max-width: 767px) {
  .p-new-ctr-1__img {
    position: absolute;
    top: 127px;
    left: 50%;
    transform: translateX(-50%);
    width: 271px;
  }
}
.p-new-ctr-1__right {
  text-align: center;
  margin-right: 66px;
}
@media screen and (max-width: 1300px) {
  .p-new-ctr-1__right {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-new-ctr-1__right {
    margin-right: 0;
    width: 100%;
  }
}
.p-new-ctr-1__title {
  font-size: 32px;
  font-weight: 500;
  color: #fff;
  line-height: 1.31;
  text-align: center;
  margin-bottom: 37px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1300px) {
  .p-new-ctr-1__title {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .p-new-ctr-1__title {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 259px;
  }
}
.p-new-ctr-1__30 {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  position: relative;
  margin-bottom: 14px;
  display: inline-block;
  letter-spacing: 0.04em;
}
.p-new-ctr-1__30::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 18px;
  background-color: #fff;
  border-radius: 15px;
  top: 10px;
  left: -30px;
  transform: rotate(-25deg);
}
@media screen and (max-width: 767px) {
  .p-new-ctr-1__30::before {
    top: 4px;
    left: -16px;
  }
}
.p-new-ctr-1__30::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 18px;
  background-color: #fff;
  border-radius: 15px;
  top: 10px;
  right: -30px;
  transform: rotate(25deg);
}
@media screen and (max-width: 767px) {
  .p-new-ctr-1__30::after {
    top: 4px;
    right: -16px;
  }
}
@media screen and (max-width: 1300px) {
  .p-new-ctr-1__30 {
    font-size: 21px;
  }
}
@media screen and (max-width: 767px) {
  .p-new-ctr-1__30 {
    font-size: 14px;
    margin-bottom: 16px;
  }
}
.p-new-ctr-1__button {
  background-color: #fff;
  width: 588px;
  height: 100px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 50px;
  transition: all 0.3s;
}
@media screen and (max-width: 1300px) {
  .p-new-ctr-1__button {
    width: 400px;
    margin: 0 auto;
    height: 80px;
  }
}
@media screen and (max-width: 767px) {
  .p-new-ctr-1__button {
    width: 100%;
    height: 64px;
  }
}
.p-new-ctr-1__button:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
.p-new-ctr-1__button-text {
  color: #ff2a2e;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1300px) {
  .p-new-ctr-1__button-text {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-new-ctr-1__button-text {
    font-size: 16px;
  }
}
.p-new-ctr-1__ico {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
  width: 32px;
  height: 32px;
}
@media screen and (max-width: 1300px) {
  .p-new-ctr-1__ico {
    right: 20px;
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .p-new-ctr-1__ico {
    right: 20px;
    width: 24px;
    height: 24px;
  }
}
.p-new-ctr-1__detail {
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  margin-top: 16px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-new-ctr-1__detail {
    margin-top: 20px;
    font-size: 10px;
  }
}

.p-faq-index {
  padding-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .p-faq-index {
    padding-bottom: 80px;
  }
}

.p-faq__section + * {
  margin-top: 56px;
}
@media screen and (max-width: 767px) {
  .p-faq__section + * {
    margin-top: 48px;
  }
}

.p-faq__title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-faq__title {
    font-size: 18px;
  }
}
.p-faq__title b {
  font-size: 28px;
  color: #ff2a2e;
}
@media screen and (max-width: 767px) {
  .p-faq__title b {
    font-size: 22px;
  }
}

.p-faq__body {
  margin-top: 30px;
}

.p-faq__item {
  border-top: solid 1px #dddddd;
}
.p-faq__item:last-of-type {
  border-bottom: solid 1px #dddddd;
}

.p-faq__question {
  display: block;
}
.p-faq__question::-webkit-details-marker {
  display: none;
}
.p-faq__question > div {
  position: relative;
  display: flex;
  align-items: center;
  padding: 24px 20px;
  padding-right: 40px;
  font-size: 22px;
  letter-spacing: 0.02em;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-faq__question > div {
    padding: 23px 12px;
    padding-right: 34px;
    font-size: 16px;
  }
}
.p-faq__question > div span {
  padding-right: 20px;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: bold;
  color: #ff2a2e;
}
@media screen and (max-width: 767px) {
  .p-faq__question > div span {
    padding-right: 12px;
    font-size: 22px;
  }
}
.p-faq__question > div::before, .p-faq__question > div::after {
  position: absolute;
  margin: auto;
  inset: 0 auto;
  right: 20px;
  display: block;
  width: 18px;
  height: 2px;
  content: "";
  background-color: #dddddd;
  transition: transform 0.2s, opacity 0.2s;
}
@media screen and (max-width: 767px) {
  .p-faq__question > div::before, .p-faq__question > div::after {
    right: 12px;
  }
}
.p-faq__question > div::before {
  transform: rotate(90deg);
}
.p-faq__item.is-opened .p-faq__question > div::before {
  opacity: 0;
  transform: rotate(270deg);
}

.p-faq__item.is-opened .p-faq__question > div::after {
  transform: rotate(180deg);
}

.p-faq__answer {
  overflow: hidden;
}
.p-faq__answer > div {
  padding: 10px 20px 32px;
  font-size: 18px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-faq__answer > div {
    padding: 17px 12px 24px;
    font-size: 14px;
  }
}
.p-faq__answer > div a {
  color: #ff2a2e;
  text-decoration: underline;
}
.p-faq__answer > div a:hover {
  text-decoration: none;
}

.p-home__sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-home__sp {
    display: block;
  }
}

.p-home__pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .p-home__pc {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */
