@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500&display=swap");
html {
  visibility: hidden;
}

html.wf-active {
  visibility: visible;
}

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

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 0;
  display: block;
}

span {
  display: block;
}

h1 {
  font-size: 0;
}

ul,
ol,
li {
  list-style: none;
  display: block;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 0;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
}

a {
  text-decoration: none;
  text-decoration-skip-ink: auto;
  display: block;
}

img,
picture {
  width: 100%;
  display: block;
  margin: 0 auto;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

input, textarea, button {
  color: #F6A900;
  background-color: #FFFFFF;
  margin: 0em;
  padding: 0;
  border-width: 0;
  border-style: none;
  border-color: transparent;
}

input, textarea {
  cursor: text;
}

button {
  cursor: pointer;
}

input:focus {
  background-color: #FFFFFF;
  margin: 0em;
  padding: 0;
  border-width: 0;
  border-style: none;
  border-color: transparent;
}

:focus-visible {
  outline: none;
}

@media screen and (min-width: 428px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 428px) {
  .pc {
    display: none;
  }
}
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  height: 100%;
}

body {
  background: #F7F7F7;
  color: #231815;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 2.1428571429;
  letter-spacing: 0.06em;
}

a:-webkit-any-link {
  color: #231815;
}

a {
  transition: 0.3s;
}

a:hover {
  opacity: 0.8;
  transform: scale(1.01);
}

p {
  margin-bottom: 12px;
}

span {
  display: inline-block;
}

input, textarea, button {
  color: #231815;
  background-color: #F7F7F7;
  width: 100%;
  border-radius: 4px;
  border-width: 1px;
  border-style: solid;
  border-color: #F7F7F7;
  padding: 4px;
}

input:focus {
  background-color: #FFFFFF;
  margin: 0em;
  padding: 0;
  border-width: 1px;
  border-style: solid;
  border-color: #F6A900;
  padding: 4px;
}

:focus-visible {
  outline: none;
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.6.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
.animated {
  animation-duration: 1.5s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.delay-05s {
  animation-delay: 0.5s;
}

.animated.delay-1s {
  animation-delay: 1s;
}

.animated.delay-2s {
  animation-delay: 2s;
}

.animated.delay-3s {
  animation-delay: 3s;
}

.animated.delay-4s {
  animation-delay: 4s;
}

.animated.delay-5s {
  animation-delay: 5s;
}

@keyframes bounce {
  0%, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateZ(0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}

@keyframes flash {
  0%, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}

@keyframes pulse {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scaleX(1);
  }
}
.pulse {
  animation-name: pulse;
}

@keyframes rubberBand {
  0% {
    transform: scaleX(1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scaleX(1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}

@keyframes shake {
  0%, to {
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}

@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  to {
    transform: rotate(0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}

@keyframes tada {
  0% {
    transform: scaleX(1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    transform: scaleX(1);
  }
}
.tada {
  animation-name: tada;
}

@keyframes wobble {
  0% {
    transform: translateZ(0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    transform: translateZ(0);
  }
}
.wobble {
  animation-name: wobble;
}

@keyframes jello {
  0%, 11.1%, to {
    transform: translateZ(0);
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}

@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}
.bounceIn {
  animation-duration: 0.75s;
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: translateZ(0);
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: translateZ(0);
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: translateZ(0);
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translateZ(0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-duration: 0.75s;
  animation-name: bounceOut;
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes flip {
  0% {
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateY(-20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@keyframes flipOutX {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-duration: 0.75s;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.flipOutY {
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@keyframes lightSpeedIn {
  0% {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translateZ(0);
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}

@keyframes rotateIn {
  0% {
    transform-origin: center;
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: translateZ(0);
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translateZ(0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translateZ(0);
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translateZ(0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translateZ(0);
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  0% {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate(200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate(45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate(80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate(60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-duration: 2s;
  animation-name: hinge;
}

@keyframes jackInTheBox {
  0% {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.jackInTheBox {
  animation-name: jackInTheBox;
}

@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.rollIn {
  animation-name: rollIn;
}

@keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}

@keyframes slideInDown {
  0% {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideInUp {
  0% {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideOutDown {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}

@keyframes slideOutLeft {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}

.js_fadein, .js_fadeinup {
  opacity: 0;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./../image/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

.l-header {
  width: 100%;
  padding: 30px 34px 22px 28px;
}

@media screen and (max-width: 743px) {
  .l-header {
    width: 100%;
    padding: 5.8666666667% 5.0666666667% 0;
  }
}
.l-footer {
  width: 100%;
  padding: 50px 56px;
}

.l-container--all {
  width: 100%;
  margin: 0 auto;
}

.l-container--large {
  padding-right: 9.4444444444%;
  padding-left: 9.4444444444%;
  margin: 0 auto;
}

@media screen and (max-width: 1057px) {
  .l-container--large {
    padding-right: 5.0666666667%;
    padding-left: 5.0666666667%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1600px) {
  .l-container--large {
    padding: 0 calc((100% - 1300px) / 2);
  }
}
.l-container--medium {
  padding-right: 13.8888888889%;
  padding-left: 13.8888888889%;
  margin: 0 auto;
}

@media screen and (max-width: 1057px) {
  .l-container--medium {
    padding-right: 8.8%;
    padding-left: 8.8%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1440px) {
  .l-container--medium {
    padding: 0 calc((100% - 1040px) / 2);
  }
}
.l-container--small {
  padding-right: 21.0069444444%;
  padding-left: 21.0069444444%;
  margin: 0 auto;
}

@media screen and (max-width: 1057px) {
  .l-container--small {
    padding-right: 8.8%;
    padding-left: 8.8%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1440px) {
  .l-container--small {
    padding: 0 calc((100% - 835px) / 2);
  }
}
@media screen and (max-width: 1057px) {
  .l-footer {
    width: 100%;
    padding: 56px 56px 16px;
  }
}
.c-button {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
}

.c-button__icon {
  margin-right: 8px;
}

.c-header02 {
  font-size: 28px;
  letter-spacing: 0.18em;
  line-height: 2;
  font-weight: 400;
}

.c-largetxt {
  font-size: 16px;
  line-height: 2.5;
}

.c-header03 {
  font-size: 20px;
  letter-spacing: 0.14em;
  line-height: 1.85;
  font-weight: 400;
}

.c-more__link {
  padding-bottom: 10px;
  border-bottom: 1.5px solid #231815;
  display: inline-block;
  line-height: 1;
}

.c-more__txt {
  font-size: 14px;
  letter-spacing: 0.14em;
  font-weight: 500;
  padding: 0 4px;
  line-height: 1;
}

.c-typo {
  position: relative;
}

.c-typo::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 142px;
  z-index: -1;
  width: 100%;
}

.c-typo--page {
  z-index: 1;
}

.c-typo--page::before {
  display: none;
}

.c-sliderArrows {
  display: flex;
  justify-content: flex-end;
}

.c-sliderArrows__Next {
  margin-left: 16px;
}

.c-arrow {
  position: relative;
}

.c-arrow::after {
  display: block;
  content: "→";
  background-color: #F6A900;
  width: 48px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
  color: #FFFFFF;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}

.c-arrow:hover::after {
  background-color: #FFFFFF;
  color: #F6A900;
  border: 1px solid #F6A900;
}

.c-arrow--white::after {
  background-color: #FFFFFF;
  color: #F6A900;
  border: 1px solid #FFFFFF;
}

.c-arrow--white:hover::after {
  background-color: #F6A900;
  color: #FFFFFF;
}

.c-nextDetailCard {
  padding: 16px 24px;
  background-color: #FFFFFF;
  border-radius: 2px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
}

.c-nextDetailNum--line {
  border-right: 1px solid #EDEBEB;
  padding-right: 26px;
  margin-right: 26px;
  margin-bottom: 0;
}

.c-nextDetailTxtWrap {
  flex: 1;
}

.c-nextDetailTxt {
  line-height: 1.6;
  margin-bottom: 0;
}

.c-nextDetail__exp {
  padding: 0 16px;
}

.c-nextDetailCardWrap {
  padding: 0 8px;
  margin-bottom: 32px;
}

.c-nextDetail__ItemWrap {
  margin-bottom: 96px;
}

.c-nextDetail__header04 {
  font-size: 28px;
  letter-spacing: 0.18em;
  line-height: 28px;
  padding-left: 16px;
  padding-bottom: 40px;
  border-bottom: 1px solid #EDEBEB;
  margin-bottom: 44px;
  font-weight: 400;
  vertical-align: middle;
}

.c-nextDetail__header05 {
  font-size: 20px;
  letter-spacing: 0.14em;
  font-weight: 400;
  padding-left: 16px;
  margin-bottom: 18px;
}

.c-nextDetail__engcap {
  margin-left: 32px;
  font-size: 14px;
  letter-spacing: 0.12em;
  line-height: 28px;
  font-weight: 500;
  vertical-align: 5.5px;
}

.c-folder {
  position: relative;
  padding-left: 20px;
  line-height: 1;
  display: block;
}

body a.c-folder {
  display: block;
}

.c-folder::before {
  display: block;
  content: "\f07b";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  margin-top: 1px;
}

.c-pageCard {
  background: #F7F7F7;
  border-radius: 4px;
  padding: 16px;
  margin-bottom: 16px;
  margin-top: 40px;
  font-weight: 500;
}

.c-submit {
  background-color: #F6A900;
  color: #FFFFFF;
  cursor: pointer;
}

.c-pageCard02 {
  display: flex;
  margin-bottom: 64px;
}

.c-pageCard02__img {
  width: 180px;
  margin-right: 24px;
  margin-top: 8px;
}

.c-pageCard02__txt {
  flex: 1;
}

.c-submit:hover {
  background-color: #FFFFFF;
  color: #F6A900;
  border: 1px solid #F6A900;
}

.c-submit:focus {
  background-color: #F6A900;
  color: #FFFFFF;
}

@media screen and (max-width: 1057px) {
  .c-nextDetail__engcap {
    margin-left: 2px;
    display: block;
    margin-top: 8px;
    font-weight: 300;
  }
  .c-nextDetail__ItemWrap {
    margin-bottom: 56px;
  }
  .c-nextDetail__header04 {
    padding-bottom: 16px;
    position: relative;
  }
  .c-nextDetail__header04::before {
    display: block;
    content: "";
    width: 16px;
    height: 2px;
    background-color: #231815;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    transition: transform 0.3s;
  }
  .c-nextDetail__header04::after {
    display: block;
    content: "";
    width: 16px;
    height: 2px;
    background-color: #231815;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    right: 0;
    transition: transform 0.3s;
  }
  .c-nextDetail__header04.is-open::after {
    display: block;
    content: "";
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.3s;
  }
  .c-nextDetail__header04.is-open::before {
    display: block;
    content: "";
    opacity: 0;
    transition: transform 0.3s;
  }
}
@media screen and (max-width: 743px) {
  .c-nextDetail__header04 {
    font-size: 20px;
    margin-bottom: 32px;
  }
  .c-nextDetail__ItemWrap {
    margin-bottom: 32px;
  }
  .c-nextDetail__Item {
    margin-bottom: 52px;
  }
  .c-nextDetail__engcap {
    margin-left: 1px;
    margin-top: 4px;
  }
  .c-pageCard02 {
    display: block;
    margin-bottom: 64px;
  }
  .c-pageCard02__img {
    width: 100%;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 16px;
  }
  .c-typo::before {
    margin-top: 16px;
    top: 0;
    left: 0;
    padding-top: 700px;
    z-index: -1;
    width: 88px;
    transform: none;
  }
}
@media screen and (max-width: 428px) {
  .c-sliderArrows {
    display: none;
  }
  .c-header02 {
    font-size: 20px;
  }
  .c-header03 {
    font-size: 16px;
  }
  .c-largetxt {
    font-size: 15px;
    line-height: 2.25;
  }
  .c-nextDetailCard {
    display: block;
    padding: 14px 16px;
  }
  .c-nextDetailNum--line {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
  }
  .c-nextDetailNum {
    margin-bottom: 10px;
    line-height: 1;
    font-size: 15px;
  }
  .c-nextDetail__header05 {
    font-size: 16px;
  }
  .c-typo::before {
    margin-top: 16px;
    top: 0;
    left: 0;
    padding-top: 600px;
    z-index: -1;
    width: 71px;
    transform: none;
  }
}
.p-logo--header {
  width: 225px;
  margin-right: 48px;
}

.p-header {
  display: flex;
  justify-content: start;
  align-items: center;
  z-index: 9999;
  position: absolute;
}

.p-header::after {
  display: block;
  content: "";
  width: calc(100% - 48px);
  height: 1px;
  background-color: #FFFFFF;
  position: absolute;
  bottom: 0;
  left: 24px;
}

.p-navWrapper {
  flex-grow: 1;
}

.p-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.p-nav__menu {
  display: flex;
  justify-content: start;
}

.p-nav__btn {
  display: flex;
  justify-content: end;
}

.p-nav__menuList {
  margin-right: 32px;
}

.p-nav__menuBlk:-webkit-any-link {
  letter-spacing: 0.14em;
  font-weight: 500;
  color: #FFFFFF;
}

.p-nav__btnList {
  margin-left: 6px;
}

.p-kv {
  background: no-repeat center center/cover;
  width: 100%;
  height: 729px;
  position: relative;
}

.p-kv--child {
  height: 657px;
}

.p-kv--none {
  height: 96px;
  background-image: none;
}

.p-kv__copy {
  position: absolute;
  left: 44px;
  bottom: 56px;
  color: #FFFFFF;
  font-size: 42px;
  letter-spacing: 0.15em;
  font-weight: 500;
  line-height: 1.75;
}

.p-kv__copy--next {
  left: 58px;
}

.p-kv__indent {
  margin-left: 18px;
}

.p-kv__cta {
  background-color: #F6A900;
  position: absolute;
  right: 44px;
  bottom: 56px;
  padding: 14px 80px 12px 22px;
  border-radius: 4px;
}

.p-kv::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #252E35;
  opacity: 0.6;
}

.p-kv__ctaTxt {
  margin-bottom: 0px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
}

@media screen and (max-width: 1288px) {
  .p-kv__cta {
    background-color: #F6A900;
    position: relative;
    padding: 14px 80px 12px 22px;
    border-radius: 4px;
    right: auto;
    bottom: auto;
    margin: 32px;
    z-index: 2;
  }
  .p-kv__ctaTxt {
    font-size: 16px;
  }
  .p-kv--none {
    height: 91px;
    min-height: auto;
    background-image: none;
  }
}
@media screen and (max-width: 743px) {
  .p-kv__copy {
    font-size: calc(21 / 368 * 100vw + -147 / 368 * 1px);
    left: 2.0666666667%;
    bottom: 30px;
  }
  .p-kv__indent {
    margin-left: 3%;
  }
  .p-kv {
    height: 61vh;
    min-height: 411px;
  }
  .p-kv--child {
    height: 60vh;
    min-height: 400px;
  }
  .p-kv--none {
    height: calc(10.8vw + 40px);
    min-height: auto;
    background-image: none;
  }
  .p-kv__cta {
    padding: 10px 16px;
    margin: 3.2% 2.1333333333%;
  }
  .p-kv__copy--next {
    left: 5.0666666667%;
  }
  .p-header::after {
    display: none;
  }
}
.p-arrow--kv::after {
  right: 14px;
}

.p-nav__btnBlk {
  background-color: #FFFFFF;
  padding: 10px 16px;
}

.p-nav__btnTxt {
  font-size: 12px;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 1400px) {
  #g-nav {
    position: fixed;
    z-index: 999;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #EDEBEB;
    transition: all 0.6s;
  }
  #g-nav.panelactive {
    right: 0;
  }
  #g-nav.panelactive #g-nav-list {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  #g-nav .g-nav-wrapper {
    position: absolute;
    z-index: 999;
    top: 12%;
    left: 50%;
    transform: translateX(-50%);
  }
  #g-nav {
    list-style: none;
    text-align: center;
  }
  .openbtn1 {
    position: fixed;
    z-index: 9999;
    right: 28px;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }
  .openbtn1 span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 14px;
    height: 3px;
    background-color: #FFFFFF;
    width: 45%;
  }
  .openbtn1.is-black span {
    background-color: #777D81;
  }
  .openbtn1.active span {
    background-color: #231815;
  }
  .openbtn1 span:nth-of-type(1) {
    top: 15px;
  }
  .openbtn1 span:nth-of-type(2) {
    top: 23px;
  }
  .openbtn1 span:nth-of-type(3) {
    top: 31px;
  }
  .openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 50%;
  }
  .openbtn1.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn1.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 50%;
  }
}
@media screen and (max-width: 1400px) and (max-width: 743px) {
  .openbtn1 {
    right: calc(5.0666666667% - 13px);
  }
}
@media screen and (max-width: 1400px) {
  .p-nav--header {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 1400px) {
  .p-nav__menu--header {
    flex-direction: column;
    margin-bottom: 38px;
  }
}
@media screen and (max-width: 1400px) {
  .p-nav__menuList--header {
    margin-right: 0;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 1400px) {
  .p-nav__menuBlk--header:-webkit-any-link {
    color: #231815;
  }
}
@media screen and (max-width: 1400px) {
  .p-nav__btn {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
}
@media screen and (max-width: 1400px) {
  .p-nav__btnList {
    margin-left: 0px;
    margin-bottom: 14px;
  }
}
.p-footer {
  background-color: #777D81;
}

.p-footer__above {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding-bottom: 32px;
  margin-bottom: 32px;
}

.p-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.p-footer__above::after {
  display: block;
  content: "";
  width: calc(100% + 32px);
  height: 1px;
  background-color: #FFFFFF;
  position: absolute;
  bottom: 0;
  left: -16px;
}

.p-footer__sns {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  fill: #FFFFFF;
}

.p-footer__snsLogoWrap {
  line-height: 1;
}

.p-footer__snsLogo {
  height: 22px;
  margin-left: 22px;
}

.p-footer__snsLogo--note {
  padding-top: 3.5px;
  padding-bottom: 3.5px;
  height: 22px;
  display: block;
}

.p-nav__menuList--footer {
  margin-right: 24px;
}

.p-nav__menuBlk--footer {
  font-size: 12px;
  font-weight: 400;
}

.p-kv::after {
  background-color: #777D81;
}

.p-logo--footer {
  width: 265px;
}

.p-footer__cr {
  opacity: 0.5;
  color: #FFFFFF;
  font-size: 12px;
}

@media screen and (max-width: 1057px) {
  .p-footer__above {
    flex-direction: column;
  }
  .p-footer__snsLogo {
    margin-left: 0;
    margin-right: 22px;
  }
  .p-footer__snsLogo--note {
    margin-right: 0;
  }
  .p-footer__sns {
    margin-top: 55px;
  }
  .p-footer__above::after {
    display: none;
  }
  .p-nav__menuList--footer {
    display: none;
  }
  .p-nav__menuBlk--sp {
    display: block;
  }
  .p-footer__bottom {
    flex-direction: column;
  }
  .p-nav__menu {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
  }
  .p-nav__menuList--footer {
    margin-right: 0;
    margin-bottom: 16px;
  }
}
.p-newsTop {
  padding-top: 112px;
  padding-bottom: 128px;
}

.p-newsTop__wrap {
  display: flex;
  justify-content: start;
}

.p-newsTop__header {
  line-height: 1;
  margin-right: 8.0479452055%;
}

.p-newsTop__list {
  margin-top: -22px;
  margin-bottom: -22px;
  flex: 1;
  width: calc(100% - 382px);
}

.p-newsTop__link {
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 22px 8px;
}

.p-newsTop__link:nth-of-type(2) {
  border-top: 1px solid #F0EFED;
  border-bottom: 1px solid #F0EFED;
}

.p-newsTop__date {
  line-height: 1;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #777D81;
  width: 94px;
  margin-right: 24px;
  font-weight: 300;
}

.p-newsTop__title {
  font-size: 15px;
  letter-spacing: 0.08em;
  width: calc(100% - 192px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1;
}

.p-newsTop__more {
  transform: translateY(-100%);
}

@media screen and (max-width: 1288px) {
  .p-newsTop {
    padding-top: 206px;
  }
}
@media screen and (max-width: 1057px) {
  .p-newsTop__wrap {
    display: block;
  }
  .p-newsTop__header {
    margin-right: 0;
    margin-bottom: 24px;
  }
  .p-newsTop__list {
    margin-top: 0;
    margin-bottom: 32px;
    flex: auto;
    width: auto;
  }
  .p-newsTop__more {
    transform: translateY(0%);
  }
  .p-newsTop__link {
    display: block;
  }
  .p-newsTop__date {
    margin-bottom: 8px;
  }
  .p-newsTop__title {
    line-height: 1.5;
    width: calc(100% - 80px);
  }
}
@media screen and (max-width: 743px) {
  .p-newsTop {
    padding-top: 148px;
    padding-bottom: 52px;
  }
}
@media screen and (max-width: 428px) {
  .p-newsTop__title {
    white-space: initial;
    overflow: visible;
    text-overflow: clip;
  }
}
.p-nextTop__header02 {
  line-height: 1;
  margin-bottom: 30.75px;
}

.p-nextTop__header03 {
  margin-bottom: 22.75px;
}

.p-aboutTop {
  padding-top: 138.75px;
  padding-bottom: 148px;
}

.p-aboutTop__wrap {
  display: flex;
  justify-content: start;
  align-items: flex-start;
}

.p-aboutTop__header {
  margin-right: 5.4794520548%;
  width: 430px;
}

.p-aboutTop__txtWrap {
  flex: 1;
  margin-top: 6px;
}

.p-aboutTop_txt {
  margin-bottom: 14px;
}

.p-aboutTop__more {
  transform: translateY(-100%);
  transform: none;
}

@media screen and (max-width: 1288px) {
  .p-aboutTop {
    padding-top: 105px;
    padding-bottom: 122px;
  }
  .p-aboutTop__header {
    width: 372px;
  }
  .p-aboutTop__wrap {
    display: block;
  }
  .p-aboutTop__more {
    margin-top: 48px;
  }
  .p-aboutTop__header {
    margin-right: auto;
    width: auto;
    margin-bottom: 52px;
  }
}
@media screen and (max-width: 428px) {
  .p-aboutTop {
    padding-top: 58px;
    padding-bottom: 72px;
  }
  .p-aboutTop__header {
    margin-bottom: 32px;
  }
}
.p-nextTop__more {
  margin-top: 48px;
}

.p-nextTop {
  padding-top: 112px;
  padding-bottom: 112px;
}

.p-nextTop__wrap {
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
}

.p-nextTop__imgWrap {
  width: 46.3888888889%;
  margin-right: 7.5342465753%;
}

.p-nextTop__txtWrap {
  flex: 1;
  padding-right: 6.8055555556%;
}

.p-nextTop::after {
  z-index: -2;
  top: 0;
  right: 0;
  position: absolute;
  display: block;
  content: "";
  width: 90.5555555556%;
  /* margin-left: auto; */
  height: 100%;
  background-color: #FFFFFF;
}

.p-nextTop__engCap {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: #F6A900;
  margin-bottom: 18px;
}

@media screen and (max-width: 1057px) {
  .p-nextTop__wrap {
    display: block;
  }
  .p-nextTop {
    padding-top: 0px;
    padding-bottom: 112px;
  }
  .p-nextTop__txtWrap {
    padding-right: 8.8%;
    padding-left: 8.8%;
    margin: 0 auto;
  }
  .p-nextTop__imgWrap {
    width: 91.2%;
    margin-right: auto;
    margin-bottom: 56px;
  }
  .p-nextTop::after {
    width: 100%;
    margin-top: 32%;
    height: calc(100% - 32vw);
  }
}
@media screen and (max-width: 428px) {
  .p-nextTop {
    padding-bottom: 72px;
  }
}
.p-interviewTop {
  padding-top: 80px;
  padding-bottom: 128px;
  width: 90.5555555556%;
  margin-left: auto;
  margin-right: 0;
  overflow: hidden;
}

.p-interviewTop_head {
  padding: 0 56px 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 46px;
}

.p-interviewTop__ttl {
  display: flex;
  justify-content: start;
  align-items: center;
}

.p-interviewTop__header {
  margin-right: 40px;
  line-height: 1;
}

.p-interviewTop__slider {
  width: 1859px;
}

.p-interviewTop__card {
  width: 343px;
  padding: 40px 28px;
  background-color: #FFFFFF;
  margin-right: 36px;
}

.p-interviewTop__cardTxtWrap {
  width: 287px;
}

.p-interviewTop__cardHeader {
  padding: 0 6px 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid #231815;
}

.p-interviewTop__cardTxt {
  padding: 0 6px;
  margin-bottom: 0;
}

@media screen and (max-width: 1057px) {
  .p-interviewTop {
    padding-bottom: 128px;
  }
}
@media screen and (max-width: 743px) {
  .js-slider--interview {
    padding-bottom: 0;
  }
  .p-interviewTop__slider {
    width: 100%;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .p-interviewTop__slider:-webkit-scrollbar {
    display: none;
  }
  .p-interviewTop__cardWrap {
    display: flex;
  }
  .p-interviewTop_sliderArrows {
    display: none;
  }
}
@media screen and (max-width: 428px) {
  .p-interviewTop__ttl {
    justify-content: space-between;
    width: 100%;
  }
  .p-interviewTop__card {
    width: 268px;
    padding: 28px 20px 28px;
    margin-right: 24px;
  }
  .p-interviewTop__cardTxtWrap {
    width: 228px;
  }
  .p-interviewTop {
    padding-top: 40px;
    padding-bottom: 52px;
  }
  .p-interviewTop_head {
    padding: 0 24px 0 0;
    margin-bottom: 24px;
  }
  .p-interviewTop__cardHeader {
    padding: 0 6px 20px;
    margin-bottom: 20px;
  }
}
.p-mediaTop {
  padding-top: 132px;
  padding-bottom: 160px;
}

.p-mediaTopheader02 {
  text-align: center;
  margin-bottom: 80px;
  line-height: 1;
}

.p-mediaTop__cardWrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-mediaTop__card {
  width: 300px;
}

.p-mediaTop__card:nth-of-type(2) {
  margin: 0 64px;
}

.p-mediaTopheader03 {
  text-align: center;
  margin-bottom: 8px;
}

.p-mediaTop_iconWrap {
  width: 156px;
  height: 156px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #FFFFFF;
  margin: 0 auto 26px;
}

.p-mediaTop_icon {
  width: 64px;
}

@media screen and (max-width: 1057px) {
  .p-mediaTop__cardWrap {
    flex-direction: column;
  }
  .p-mediaTop__card {
    width: 100%;
    max-width: 480px;
    margin-bottom: 40px;
  }
  .p-mediaTop__card:nth-of-type(2) {
    margin: 0 0 64px;
  }
}
@media screen and (max-width: 743px) {
  .p-mediaTop {
    padding-top: 50px;
    padding-bottom: 100px;
  }
  .p-mediaTop_iconWrap {
    width: 120px;
    height: 120px;
  }
  .p-mediaTop_icon {
    width: 28px;
  }
}
.p-buttonArrow {
  background-color: #F6A900;
  width: 48px;
  height: 24px;
}

.p-buttonArrow__txt {
  color: #FFFFFF;
  font-size: 17px;
  line-height: 24px;
  margin-bottom: 0px;
}

.p-buttonArrow:hover {
  background-color: #FFFFFF;
  border: 1px solid #F6A900;
}

.p-buttonArrow:hover .p-buttonArrow__txt {
  color: #F6A900;
}

.p-typo--AboutTop::before {
  background: url("../image/Introduction.svg") no-repeat center top/contain;
}

.p-typo--NextTop::before {
  background: url("../image/OurSchool.svg") no-repeat center top/contain;
}

.p-typo--InterviewTop::before {
  background: url("../image/Student'sVoice.svg") no-repeat center top/contain;
}

.p-typo--MediaTop::before {
  background: url("../image/OurMedia.svg") no-repeat center top/contain;
}

@media screen and (max-width: 743px) {
  .p-typo--AboutTop::before {
    background: url("../image/Introduction--hori.svg") no-repeat center top/contain;
  }
  .p-typo--NextTop::before {
    background: url("../image/OurSchool--hori.svg") no-repeat center top/contain;
    margin-top: 63%;
  }
  .p-interviewTop {
    overflow: visible;
  }
  .p-typo--InterviewTop::before {
    background: url("../image/Student'sVoice--hori.svg") no-repeat center top/contain;
    left: -9.4444444444%;
  }
  .p-typo--MediaTop::before {
    background: url("../image/OurMedia--hori.svg") no-repeat center top/contain;
  }
}
@media screen and (max-width: 428px) {
  .p-typo--NextTop::before {
    margin-top: 63%;
  }
}
.p-nextIntro {
  padding-top: 112px;
  padding-bottom: 124px;
}

@media screen and (max-width: 1288px) {
  .p-nextIntro {
    padding-top: 206px;
  }
}
.p-nextIntro__header02 {
  text-align: center;
  line-height: 1;
  margin-bottom: 80px;
}

.p-nextIntro__txtWrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
}

.p-nextIntro__txt {
  width: 47.65625%;
}

.p-nextDetail {
  padding-top: 132px;
  padding-bottom: 280px;
  display: flex;
  justify-content: start;
  align-items: flex-start;
}

.p-nextDetail__link:-webkit-any-link {
  position: relative;
  padding-left: 42px;
  z-index: 2;
  line-height: 1;
  margin-bottom: 32px;
  color: #777D81;
  transition: all 0.3s;
}

.p-nextDetail__link::before {
  display: block;
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #777D81;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background-color: #F7F7F7;
  transition: all 0.1s;
}

.p-nextDetail__navWrap {
  position: sticky;
  top: 88px;
  margin-right: 12.3287671233%;
}

.p-nextDetail__nav {
  position: relative;
  padding-top: 16px;
  z-index: 1;
  margin-bottom: 56px;
}

.p-nextDetail__nav::before {
  display: block;
  content: "";
  width: 1px;
  height: 288px;
  background-color: #777D81;
  position: absolute;
  top: 0;
  left: 8.5px;
}

.p-nextDetail__navWrap {
  width: 227px;
}

.p-nextDetail__btnBlk--apply {
  background-color: #F6A900;
  padding: 12px 16px;
  display: block;
  margin-bottom: 16px;
  box-shadow: 0px 3px 6px #B9B9B9;
}

.p-nextDetail__btnTxt--apply {
  font-size: 18px;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  display: block;
  line-height: 1;
  text-align: center;
}

.p-nextDetail__btnBlk--dl {
  background-color: #FFFFFF;
  border: 1px solid #F6A900;
  padding: 12px 15px;
  display: block;
}

.p-nextDetail__btnTxt--dl {
  font-size: 15px;
  letter-spacing: 0.08em;
  color: #F6A900;
  display: block;
  line-height: 1;
}

.p-nextDetail__btnDue {
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 36px;
}

.p-nextCarriculum__Num {
  line-height: 40px;
  width: 78px;
  font-size: 16px;
}

.p-nextSchedule__Num {
  line-height: 24px;
  width: 78px;
  font-size: 16px;
}

.p-nextSchedule__taikenTtl {
  line-height: 24px;
  font-size: 16px;
  margin-bottom: 16px;
}

.p-nextTaiken__block {
  padding: 28px 24px 16px;
}

.p-nextSchedule__taikenBtn {
  padding: 12px 0 16px;
}

.p-nextDetail__content {
  flex: 1;
}

.p-nextSchedule__TxtWrap {
  display: flex;
  align-items: center;
}

@media screen and (min-width: 1057px) {
  .p-nextSchedule__Date {
    width: 192px;
  }
}
.p-nextPlace__detail {
  flex: 1;
}

.p-nextPlace__TxtWrap {
  display: flex;
  align-items: flex-start;
}

.p-nextDetail__placeNum {
  line-height: 24px;
  width: 179px;
  font-size: 16px;
}

.p-nextSchedule__Txt {
  margin-right: 24px;
}

.p-typoNext {
  z-index: 1;
}

.p-typoNext::before {
  background: url("../image/OurSchool.svg") no-repeat center bottom/contain;
}

.p-nextPlace__cap {
  font-size: 12px;
  letter-spacing: 0.08;
}

.p-nextStaff__listWrap {
  padding: 0 8px;
}

.p-nextPlace__TxtWrap--online {
  margin-bottom: 8px;
}

.p-nextStaff__list {
  display: flex;
  justify-content: start;
  align-items: flex-start;
  margin-bottom: 32px;
}

.p-nextStaff__pic {
  width: 180px;
  margin-right: 24px;
}

.p-nextStaff__txtWrap {
  flex: 1;
}

.p-nextStaff__expWrap {
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid #EDEBEB;
}

.p-nextRequirementCard {
  align-items: flex-start;
}

.p-nextRequirement__Num {
  font-size: 28px;
  margin-right: 24px;
  color: #777D81;
  line-height: 1;
}

.p-nextRequirementSub {
  margin-top: 8px;
}

.p-nextTuitionCard {
  display: block;
}

.p-nextTuition__ttl {
  width: 114px;
  display: inline-block;
}

.p-nextTuition__price {
  display: inline;
}

.p-nextFaqCard {
  display: block;
}

.p-nextFaq__question {
  padding-right: 40px;
  position: relative;
}

.p-nextFaq__answer {
  margin-top: 12px;
  padding-right: 40px;
  margin-bottom: 0;
}

.p-nextFaq__question::before {
  display: block;
  content: "";
  width: 16px;
  height: 2px;
  background-color: #231815;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  transition: transform 0.3s;
}

.p-nextFaq__question::after {
  display: block;
  content: "";
  width: 16px;
  height: 2px;
  background-color: #231815;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  right: 0;
  transition: transform 0.3s;
}

.p-nextFaq__question.is-open::after {
  display: block;
  content: "";
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s;
}

.p-nextFaq__question.is-open::before {
  display: block;
  content: "";
  opacity: 0;
  transition: transform 0.3s;
}

.p-nextDetail__btnDueInside {
  display: block;
  font-size: 10px;
  margin-left: 8px;
  padding-bottom: 1px;
  transform: translateY(-2px);
    text-align: center;
    color: #fff;
    margin-top: 8px;
    line-height: 1;
}

@media screen and (max-width: 1057px) {
  .p-nextDetail__navWrap {
    display: none;
    position: static;
  }
  .p-nextDetail {
    padding-top: 88px;
  }
  .p-nextDetail__btnDue {
    display: none;
  }
  .p-nextDetail__btnList {
    position: fixed;
    bottom: 0;
    z-index: 9990;
    width: 90.4%;
  }
  .p-nextSchedule__TxtWrap {
    display: block;
  }
  .p-nextDetail__btnList::before {
    display: block;
    content: "";
    position: absolute;
    top: -12px;
    width: 100vw;
    left: -5.0666666667vw;
    height: calc(100% + 24px);
    background-color: #FFFFFF;
  }
  .p-nextDetail__btnBlk--apply {
    position: relative;
  }
}
@media screen and (max-width: 743px) {
  .p-nextIntro__txtWrap {
    flex-direction: column;
  }
  .p-nextIntro__txt {
    width: 100%;
  }
  .p-nextIntro {
    padding-bottom: 72px;
  }
  .p-nextStaff__list {
    display: block;
  }
  .p-nextStaff__pic {
    width: 100%;
    margin-right: 0;
    margin-bottom: 16px;
  }
  .p-nextStaff__name {
    margin-bottom: 0;
  }
  .p-typoNext::before {
    background: url("../image/OurSchool--hori.svg") no-repeat center bottom/contain;
  }
}
@media screen and (max-width: 428px) {
  .p-nextIntro {
    padding-top: 148px;
  }
  .p-nextIntro__more {
    margin-top: 32px;
  }
  .p-nextDetail {
    padding-bottom: 192px;
  }
  .p-nextDetail {
    padding-top: 52px;
  }
  .p-nextCarriculum__Num {
    line-height: 1;
    font-size: 15px;
    margin-bottom: 10px;
  }
  .p-nextSchedule__Num {
    line-height: 1;
    font-size: 15px;
    margin-bottom: 10px;
  }
  .p-nextPlace__TxtWrap {
    display: block;
  }
  .p-nextDetail__placeNum {
    margin-bottom: 2px;
  }
  .p-nextRequirementCard {
    display: flex;
  }
  .p-nextRequirement__Num {
    font-size: 14px;
    margin-bottom: 0;
    margin-right: 8px;
    line-height: 1.5;
  }
  .p-nextIntro__header02 {
    text-align: start;
    margin-bottom: 52px;
  }
  .p-nextDetail__btnBlk--applyBottom {
    padding: 8px 16px 6px;
  }
  .p-nextDetail__btnDueInsideBottom {
    display: block;
    margin-top: 8px;
    line-height: 1;
    
  }
}
.p-page {
  padding-top: 112px;
  padding-bottom: 280px;
}

.p-kv--about,
.p-kv--radio,
.p-kv--interview {
  height: 657px;
}

@media screen and (min-width: 428px) {
  .p-kv--top {
    background: url("../image/topMain.jpg") no-repeat center center/cover;
  }
  .p-kv--next {
    background: url("../image/nextMain.jpg") no-repeat center center/cover;
  }
  .p-kv--about {
    background: url("../image/aboutMain.jpg") no-repeat center center/cover;
  }
  .p-kv--radio {
    background: url("../image/youtubeMain.jpg") no-repeat center center/cover;
  }
  .p-kv--interview {
    background: url("../image/interviewMain.jpg") no-repeat center center/cover;
  }
}
@media screen and (max-width: 743px) {
  .p-kv--next {
    background: url("../image/nextMain--medium.jpg") no-repeat center center/cover;
  }
}
@media screen and (max-width: 428px) {
  .p-kv--top {
    background: url("../image/topMain--small.jpg") no-repeat center center/cover;
  }
  .p-kv--next {
    background: url("../image/nextMain--small.jpg") no-repeat center center/cover;
  }
  .p-kv--about {
    background: url("../image/aboutMain--small.jpg") no-repeat center center/cover;
  }
  .p-kv--radio {
    background: url("../image/youtubeMain--small.jpg") no-repeat center center/cover;
  }
  .p-kv--interview {
    background: url("../image/interviewMain--small.jpg") no-repeat center center/cover;
  }
}
@media screen and (max-width: 1288px) {
  .p-kv--about,
.p-kv--radio {
    height: 657px;
  }
}
@media screen and (max-width: 743px) {
  .p-kv--about,
.p-kv--radio,
.p-kv--interview {
    height: 60vh;
    min-height: 400px;
  }
}
.p-aboutInfo__row--first {
  border-top: 1px solid #EDEBEB;
}

.p-aboutInfo__row {
  display: flex;
  padding: 16px;
  border-bottom: 1px solid #EDEBEB;
}

.p-aboutInfo__ttl {
  width: 120px;
}

.p-aboutInfo__detail {
  display: inline-block;
  flex: 1;
  font-weight: 300;
}

b, strong {
  font-weight: 600;
  margin-top: 56px;
  margin-bottom: 24px;
  display: inline;
}

.p-page img {
  width: 100%;
  height: auto;
}

.p-page a {
  color: #F6A900;
  display: inline;
}

.p-page p {
  margin-bottom: 0;
  padding: 0 4px;
}

.p-page h3 {
  padding-left: 4px;
  margin-top: 64px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #EDEBEB;
  font-size: 20px;
  letter-spacing: 0.14em;
  line-height: 1.85;
  font-weight: 400;
}

.p-page .p-page__header03--noline {
  padding-bottom: 0;
  border-bottom: none;
}

.p-page__header02 {
  text-align: center;
  margin-bottom: 116px;
}

.wpcf7-form-control-wrap {
  width: 100%;
}

.wpcf7-form {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

#wpcf7-f19-p20-o1 p {
  margin-bottom: 24px;
}

.wpcf7-not-valid {
  background-color: #FFDDDD;
  border-color: #D54747;
  padding: 4px;
}

.wpcf7-response-output {
  border: none !important;
  color: #D54747;
}

.wpcf7-spinner {
  left: calc(50% - 36px);
  top: 16px;
}

.p-typo--about:before {
  display: block;
  background: url("../image/AboutUs.svg") no-repeat center bottom/contain;
}

.p-typo--partnership:before {
  display: block;
  background: url("../image/Partnership.svg") no-repeat center bottom/contain;
}

.p-typo--archives:before {
  display: block;
  background: url("../image/News.svg") no-repeat center bottom/contain;
}

.p-typo--contact:before {
  display: block;
  background: url("../image/Contact.svg") no-repeat center bottom/contain;
}

.p-typo--radio:before {
  display: block;
  background: url("../image/Youtube.svg") no-repeat center bottom/contain;
}

.p-typo--mail:before {
  display: block;
  background: url("../image/MailMagazine.svg") no-repeat center bottom/contain;
}

.p-typo--news:before {
  display: block;
  background: url("../image/News.svg") no-repeat center bottom/contain;
}

.p-typo--interview:before {
  display: block;
  background: url("../image/Student’sVoice--child.svg") no-repeat center bottom/contain;
}
.p-typo--activity-log:before {
  display: block;
  background: url("../image/ActivityLog.svg") no-repeat center bottom/contain;
}


.postid-1177 form .p-mail__form {
  display: flex;
  max-width: 600px;
  margin: 32px auto 0;
}

.postid-1177 form .p-mail__form input[type=text] {
  flex: 1;
}

.postid-1177 form .p-mail__form input[type=submit] {
  width: 64px;
  background-color: #F6A900;
  color: #FFFFFF;
  margin-left: 8px;
}

@media screen and (max-width: 1057px) {
  .p-page__header02 {
    margin-bottom: 52px;
  }
}
@media screen and (max-width: 743px) {
  .p-aboutInfo__row {
    display: block;
  }
  .p-aboutInfo__ttl {
    width: auto;
  }
  .p-typo--about:before {
    display: block;
    background: url("../image/AboutUs--hori.svg") no-repeat center top/contain;
  }
  .p-typo--partnership:before {
    display: block;
    background: url("../image/Partnership--hori.svg") no-repeat center top/contain;
  }
  .p-typo--archives:before {
    display: block;
    background: url("../image/News--hori.svg") no-repeat center top/contain;
  }
  .p-typo--contact:before {
    display: block;
    background: url("../image/Contact--hori.svg") no-repeat center top/contain;
  }
  .p-typo--radio:before {
    display: block;
    background: url("../image/Youtube--hori.svg") no-repeat center top/contain;
  }
  .p-typo--mail:before {
    display: block;
    background: url("../image/MailMagazine--hori.svg") no-repeat center top/contain;
  }
  .p-typo--news:before {
    display: block;
    background: url("../image/News--hori.svg") no-repeat center top/contain;
  }
  .p-typo--interview:before {
    display: block;
    background: url("../image/Student’sVoice--child--hori.svg") no-repeat center top/contain;
  }
  .p-typo--activity-log:before {
    display: block;
    background: url("../image/ActivityLog-hori.svg") no-repeat center top/contain;
  }
}
@media screen and (max-width: 428px) {
  .p-page__header02 {
    text-align: start;
    margin-bottom: 52px;
  }
  .p-page h3 {
    margin-top: 56px;
    font-size: 16px;
  }
  .p-page {
    padding-top: 58px;
    padding-bottom: 197px;
  }
}
.p-magazineForm {
  margin-top: 24px;
  margin-bottom: 40px;
}

.p-magazineSample {
  height: 480px;
  overflow-y: scroll;
  border: 1px solid #EDEBEB;
  border-radius: 4px;
}

@media screen and (max-width: 428px) {
  .p-magazineSample {
    height: 360px;
  }
}
.p-noteLink {
  margin-top: 40px;
}

.p-news a {
  color: #231815;
}

.p-news img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 3 / 2;
}

.p-news h3 {
  padding-left: 4px;
  margin-top: 8px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #EDEBEB;
  font-size: 16px;
  letter-spacing: 0.14em;
  line-height: 1.85;
  font-weight: 400;
}

.p-newsList {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(286px, 1fr));
  row-gap: 40px;
  column-gap: 40px;
  margin-bottom: 124px;
}

.p-newsList__item {
  background-color: #FFFFFF;
  margin: 0;
  border-radius: 8px;
}

.p-newsList__img {
  width: 100%;
  position: relative;
  background-color: #FFFFFF;
  overflow: hidden;
}

.p-newsList__title {
  font-size: 18px;
  text-align: start;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.09em;
  line-height: 1.5;
  color: #231815;
  margin-bottom: 8px;
}

.p-newsList__txt {
  padding: 20px;
}

.p-newsList__header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 8px;
}

.p-newsList__category,
.p-newsArticle__category {
  font-style: normal;
  font-size: 12px;
}

.p-newsList__category {
  display: none;
  color: #777D81;
}

.p-newsList__category:nth-of-type(2) {
  display: block;
}

.p-newsList__day,
.p-newsArticle__day {
  color: gray;
  font-style: normal;
  font-size: 12px;
}

.p-newsList__exp {
  font-size: 13px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 8px;
}

.p-newsCate {
  display: flex;
  justify-content: flex-start;
  margin: 0 auto 64px;
  flex-wrap: wrap;
}

.p-newsCate__item {
  margin-right: 24px;
  font-size: 14px;
  margin-bottom: 12px;
}

.p-newsArticle__header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 16px;
}

.wp-block-image {
  width: 100%;
  margin: 56px auto 56px !important;
  text-align: center;
}

.wp-block-image img {
  margin: 0 auto;
}

.relatedNews {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  margin: 0 auto;
  max-width: 900px;
}

.relatedNews__title {
  font-size: 18px;
  text-align: center;
  margin-bottom: 48px;
}

.relatedNews .p-newsList__title {
  font-size: 15px;
}

.newsPagenation {
  display: flex;
  justify-content: space-between;
  width: 60%;
  margin: 0 auto 160px;
}

.button a .newsbuttonText {
  margin: 0 16px;
}

.p-newsCate__current a p {
  color: #F6A900;
  font-weight: 500;
}

.p-newsPage__archive {
  width: 100%;
  margin: 0 auto;
}

.wp-pagenavi {
  display: flex;
  justify-content: center;
}

.wp-pagenavi .page,
.wp-pagenavi .current,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
  display: block;
  border: 1px solid #F6A900;
  width: 42px;
  margin: 0 8px;
  text-align: center;
  line-height: 42px;
  color: #F6A900;
  border-radius: 4px;
  letter-spacing: 0;
}

.wp-pagenavi .current {
  color: #FFFFFF;
  background-color: #F6A900;
  border: 1px solid #F6A900;
}

.wp-pagenavi a:hover, .wp-pagenavi span.current {
  border: 1px solid #F6A900 !important;
}

.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink,
.wp-pagenavi .last,
.wp-pagenavi .first,
.wp-pagenavi .last:hover,
.wp-pagenavi .first:hover {
  border: none !important;
  font-size: 24px;
  color: #F6A900;
  font-weight: bold;
}

.wp-pagenavi .last {
  margin-left: 24px;
  text-align: end;
}

.wp-pagenavi .first {
  margin-right: 24px;
}

.wp-pagenavi a, .wp-pagenavi span {
  width: 42px;
  line-height: 32px;
  text-decoration: none;
  border: 1px solid transparent;
  padding: 0 !important;
  margin: 2px;
}

.p-newsArticle {
  background-color: #FFFFFF;
  border-radius: 4px;
  padding: 72px 72px 106px;
  margin-right: 48px;
  flex: 1;
  width: 100%;
}

.p-article {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 144px;
  flex: 1;
  margin-bottom: 88px;
  padding-bottom: 280px;
  width: auto;
}

.p-newsArticle__perticle p {
  word-break: break-all;
}

.sidebar {
  width: 320px;
  background-color: #fff;
  padding: 32px;
  border-radius: 2px;
}

.p-newsArticle__title {
  font-size: 28px;
  padding-bottom: 32px;
  margin-bottom: 40px;
  color: #F6A900;
  border-bottom: 1px solid #EDEBEB;
}

.p-newsArticle__day {
  font-size: 12px;
  color: #777D81;
  margin-bottom: 0;
  line-height: 1;
}

.p-newsArticle__category:-webkit-any-link {
  font-size: 12px;
  margin-right: 10px;
  color: #777D81;
}

.p-newsCate__itemSelf:-webkit-any-link {
  color: #777D81;
  display: block;
}

.p-newsCate__current a:-webkit-any-link {
  color: #F6A900;
  font-weight: 500;
}

.p-sidebar__item {
  margin-bottom: 32px;
  color: #231815;
}

.p-sidebar__item a:-webkit-any-link {
  color: #777D81;
  font-size: 13px;
}

.p-sidebar__item .cat-item a {
  position: relative;
  padding-left: 20px;
}

.p-sidebar__item .cat-item a::before {
  display: block;
  content: "\f07b";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  margin-top: 1px;
}

.p-sidebar__item form div {
  display: flex;
}

.p-sidebar__item form div input[type=text] {
  flex: 1;
}

.p-sidebar__item form div input[type=submit] {
  width: 64px;
  background-color: #F6A900;
  color: #FFFFFF;
  margin-left: 8px;
}

.p-newsArticle__img {
  margin-bottom: 32px;
  width: 100%;
}

.p-newsArticle__perticle a:-webkit-any-link {
  color: #F6A900;
  display: inline-block;
}

@media screen and (max-width: 1288px) {
  .p-article .sidebar {
    display: none;
  }
  .p-newsArticle {
    margin-right: 0;
  }
  .p-article {
    margin-top: 88px;
  }
}
@media screen and (max-width: 743px) {
  .p-newsArticle__title {
    font-size: 20px;
    padding-bottom: 16px;
    margin-bottom: 24px;
  }
  .p-newsArticle {
    padding: 56px 40px 72px;
  }
  .p-article {
    margin-top: 32px;
  }
  .p-newsArticle__header {
    display: block;
  }
  .p-newsArticle__day {
    margin-bottom: 8px;
  }
  .p-newsArticle__category {
    margin-bottom: 4px;
  }
  .p-newsArticle__day .devide-line {
    display: none;
  }
}
@media screen and (max-width: 428px) {
  .p-newsArticle__title {
    font-size: 16px;
  }
  .p-article {
    padding-bottom: 197px;
  }
  .p-newsArticle {
    padding: 32px 24px 72px;
  }
}
.p-newsArticle__img img {
  width: 100% !important;
  height: auto !important;
}

@media screen and (min-width: 1550px) {
  .p-newsList {
    grid-template-columns: repeat(auto-fill, minmax(297px, 1fr));
  }
}
.js-header.change-color {
  background-color: #777D81;
}

.txt-mc {
  color: #F6A900 !important;
}

.txt-white {
  color: #FFFFFF;
}

.txt-300 {
  font-weight: 300;
}

span {
  display: inline-block;
}

.bg-white {
  background-color: #FFFFFF;
}

.inline {
  display: inline;
}

.block {
  display: block;
}

.bg-grid {
  background: #F7F7F7 url(../image/bg-grid.svg) repeat center top;
}

.devide-line {
  margin: 0 12px;
}

.js-faq {
  cursor: pointer;
}

.js-faqbox {
  display: none; /*はじめは非表示*/
}

@media screen and (max-width: 1057px) {
  .js-box {
    display: none; /*はじめは非表示*/
  }
  .js-accordion {
    cursor: pointer;
  }
}
@keyframes slidefade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.js-box--open {
  animation: slidefade 0.2s linear 0s;
  display: block;
}

.js-faqbox--open {
  animation: slidefade 0.2s linear 0s;
  display: block;
}

.p-nextDetail__link.js-current {
  color: #231815;
  font-weight: 500;
}

.p-nextDetail__link.js-current::before {
  border: 1px solid #231815;
  background-color: #231815;
}

.devide-line {
  margin: 0 12px;
}

@media screen and (min-width: 428px) {
  .p-nextIntro__txt {
    display: block;
  }
}
.js-apply {
  opacity: 1;
}

@media screen and (max-width: 1057px) {
  .js-apply {
    opacity: 0;
    transition: opacity 0.3s;
  }
  .js-apply.is-appear {
    opacity: 1;
  }
}
.slick-track {
  display: flex;
}

.slick-slide {
  height: auto !important;
}

body main .youtube {
  display: block;
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin: 32px auto 0;
}

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  height: 100% !important;
  width: 100% !important;
}

.p-log__contItem{
  display: flex;
  margin-bottom:16px;
  justify-content: flex-start;
}
.p-log__contDate{
  flex: 0 0 106px;
  font-weight:400;
  font-size:16px;
  padding:0!important;
}
.p-log__contTtl{
  padding:0!important;
}
.p-log__contItem{
  padding:0;
}
.p-log__contCat{
  font-size:13px;
  flex: 0 0 108px;
  background-color: #F6A900;
  color: #fff;
  border: 1px solid #F6A900;
  border-radius: 2px;
  padding: 0px 8px !important;
  line-height: 16px;
  height: 20px;
  margin-top: 7px;
  margin-right: 8px;
  display: block;
  text-align: center;
  font-weight: 500;
}
.p-log__link:-webkit-any-link {
  position: relative;
  padding-left: 42px;
  z-index: 2;
  line-height: 1;
  margin-bottom: 32px;
  color: #777D81;
  transition: all 0.3s;
  display: block;
}

.p-log__link.js-current {
  color: #231815;
  font-weight: 500;
}
.p-log__link.js-current::before {
  border: 1px solid #231815;
  background-color: #231815;
}
.p-log__link::before {
  display: block;
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #777D81;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background-color: #F7F7F7;
  transition: all 0.1s;
}
.p-log {
  display: flex;
  justify-content: start;
  align-items: flex-start;
}

.p-log__navWrap {
  position: sticky;
  top: 88px;
  margin-right: 12%;
  width: 100px;
}

.p-log__nav {
  position: relative;
  padding-top: 16px;
  z-index: 1;
  margin-bottom: 56px;
}
.p-log__nav::before {
  display: block;
  content: "";
  width: 1px;
  height: calc(100% + 40px);
  background-color: #777D81;
  position: absolute;
  top: 0;
  left: 8.5px;
}
.p-log__content {
  flex: 1;
}

.c-log__ItemWrap {
  margin-bottom: 96px;
}

.c-log__header04 {
  font-size: 28px;
  letter-spacing: 0.18em;
  line-height: 28px;
  padding-left: 4px;
  padding-bottom: 40px;
  border-bottom: 1px solid #EDEBEB;
  margin-bottom: 44px;
  font-weight: 400;
  vertical-align: middle;
}
a.p-log__contLink{
  width:1.5em;
  height:1.5em;
  padding-top: 0.2em;
  display: inline-block;
}
@media screen and (max-width: 1057px) {
  .p-log__contItem {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 8px;
}
.p-log__contDate{
  flex: 0;
}
.p-log__contCat{
flex: 0;
margin-top: 4px;
}
.c-log__header04 {
  padding-bottom: 32px;
  margin-bottom: 24px;
}
}
@media screen and (max-width: 428px) {
  .p-log {
    flex-direction: column;
}
.p-log__navWrap {
  top: 0px;
  margin-right:0;
  /* width: 100px; */
  margin-bottom: 28px;
  position: sticky;
  background-color: #fff;
  padding-top: 36px;
  margin-left: -5.0666666667vw;
  width: 100vw;
  padding-left: 5.0666666667vw;
}
.p-log__nav {
  position:static;
  padding-top:0;
  margin-bottom:0;
  z-index: 1;
  display: flex;
  justify-content: flex-start;
  column-gap: 20px;
}
.p-log__nav::before {
  display: none;
}
.p-log__link::before {
  width: 12px;
  height: 12px;
  margin-top: 1px;
}
.p-log__link:-webkit-any-link {
  padding-left: 22px;
}
}
img:is([sizes="auto" i], [sizes^="auto," i]) {
  contain: unset !important; /* contain をリセット */
  contain-intrinsic-size: unset!important; /* contain-intrinsic-size をリセット */
}

.p-aboutLink{
  background-color: #F6A900;
  padding: 12px 16px;
  display: block;
  margin-bottom: 16px;
  box-shadow: 0px 3px 6px #B9B9B9;
  color: #fff;
  border-radius: 9999px;
  width: 198px;
  text-align: center;
  margin: 0 auto;
  color:#fff!important;
  margin-top: 110px;
}
.p-aboutLinkWrap{
text-align: center;
}
.p-activityLink{
  background-color: #F6A900;
  padding: 12px 16px;
  display: block;
  margin-bottom: 16px;
  box-shadow: 0px 3px 6px #B9B9B9;
  color: #fff;
  border-radius: 9999px;
  width: 198px;
  text-align: center;
  color:#fff!important;
}
.p-activityLinkWrap{
  display: flex;
  justify-content: center;
  gap:8px 32px;
text-align: center;
margin-top:64px;
flex-wrap:wrap;
}
.p-activityTop{
  text-align: center;
  padding-bottom: 280px;
}



@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  * {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */
