@charset "UTF-8";
/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */
*, ::before, ::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p, table, blockquote, address, pre, iframe, form, figure, dl {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

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

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg, img, embed, object, iframe {
  vertical-align: bottom;
}

button, input, optgroup, select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

button, [type=button], [type=reset], [type=submit] {
  cursor: pointer;
}

button:disabled, [type=button]:disabled, [type=reset]:disabled, [type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=number] {
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td, th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
} /* mixin
--------------------------- */
:root {
  --wh: #fff;
  --bk: #333;
  --gr: #707070;
  --ppl: #EDEEF3;
  --ppl2: #7075B0;
  --ppl3: #A9ADDE;
}

/* base
--------------------------- */
img,
video,
object {
  max-width: 100%;
  height: auto;
}

a:hover {
  text-decoration: none;
}

img {
  width: 100%;
}

/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */
/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */
/* Default theme styles for the background */
.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  filter: blur(3px);
}

/* Default theme styles of the overlay */
.remodal-overlay {
  background: rgba(43, 46, 56, 0.9);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  animation-name: remodal-overlay-closing-keyframes;
}

/* Default theme styles of the wrapper */
.remodal-wrapper {
  padding: 10px 10px 0;
}

/* Default theme styles of the modal dialog */
.remodal {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  padding: 35px;
  transform: translate3d(0, 0, 0);
  color: #2b2e38;
  background: #fff;
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  animation-name: remodal-closing-keyframes;
}

/* Vertical align of the modal dialog */
.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

/* Close button */
.remodal-close {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  overflow: visible;
  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;
}

.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38;
}

.remodal-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 35px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 35px;
  content: "×";
  text-align: center;
}

/* Dialog buttons */
.remodal-confirm,
.remodal-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */
.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* Keyframes
   ========================================================================== */
@keyframes remodal-opening-keyframes {
  from {
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
    filter: blur(0);
  }
}
@keyframes remodal-closing-keyframes {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(0.95);
    opacity: 0;
    filter: blur(0);
  }
}
@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* Media queries
   ========================================================================== */
@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 700px;
  }
}
/* IE8
   ========================================================================== */
.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}

.lt-ie9 .remodal {
  width: 700px;
}

/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */
/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */
/* Hide scroll bar */
html.remodal-is-locked {
  overflow: hidden;
  touch-action: none;
}

/* Anti FOUC */
.remodal,
[data-remodal-id] {
  display: none;
}

/* Necessary styles of the overlay */
.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none;
}

/* Necessary styles of the wrapper */
.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
}

/* Fix iPad, iPhone glitches */
.remodal-overlay,
.remodal-wrapper {
  backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */
.remodal {
  position: relative;
  outline: none;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  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 {
  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;
}

/* utility
--------------------------- */
@media all and (max-width: 767px) {
  .u-view-pc {
    display: none;
  }
}

@media all and (min-width: 768px) {
  .u-view-sp {
    display: none;
  }
}

.u-inner {
  max-width: 100%;
  margin: auto;
  padding-left: 26px;
  padding-right: 26px;
}

@media (hover: hover) {
  .u-alpha {
    transition: all 0.3s ease 0s;
  }
  .u-alpha:hover {
    opacity: 0.7;
  }
}

.c-btn01 {
  width: 53.3333333333vw;
  margin-left: auto;
  margin-right: auto;
}
@media all and (min-width: 768px) {
  .c-btn01 {
    width: 200px;
  }
}
.c-btn01__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 13.3333333333vw;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #fff;
  font-weight: bold;
  line-height: 1.2;
  border-radius: 5px;
  background: radial-gradient(157.39% 187% at 50% -70%, #FFF 18.22%, var(--ppl3) 43.38%, var(--ppl2) 66.25%);
  position: relative;
  transition: all 0.3s ease 0s;
}
@media all and (min-width: 768px) {
  .c-btn01__link {
    min-height: 50px;
  }
}
.c-btn01__link:after {
  content: "";
  background: url(../img/common/ico_btn_arw01.svg) no-repeat 0 0;
  background-size: contain;
  width: 4.8vw;
  height: 4.8vw;
  position: absolute;
  top: 50%;
  right: 1.6vw;
  transform: translateY(-50%);
}
@media all and (min-width: 768px) {
  .c-btn01__link:after {
    width: 18px;
    height: 18px;
    right: 6px;
  }
}
@media (hover: hover) {
  .c-btn01__link:hover {
    background: radial-gradient(157.39% 187% at 50% -70%, #FFF 18.22%, #F5F8FF 55.77%, #D1DBF4 92.31%);
    color: var(--ppl2);
  }
}

.js-toggle-trigger {
  cursor: pointer;
}

.js-toggle-content {
  display: none;
}

@media all and (min-width: 768px) {
  .js-toggle-content-sp {
    display: none;
  }
}
.js-switch-content {
  display: none;
}
.js-switch-content.is-active {
  display: block;
}

.js-inview {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease 0s;
}
.js-inview.is-active {
  transform: translateY(0);
  opacity: 1;
}

/* LEFT用（right基準の要素向け） */
@keyframes cracker-left {
  0% {
    transform: translate(calc(var(--r) + 100%), calc(var(--b) + 100%)) scale(0.5) rotate(var(--rot, 0));
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translate(0, 0) scale(1) rotate(0);
    opacity: 1;
  }
}
/* RIGHT用（left基準の要素向け） */
@keyframes cracker-right {
  0% {
    transform: translate(calc(-1 * var(--l) - 100%), calc(var(--b) + 100%)) scale(0.5) rotate(var(--rot, 0));
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translate(0, 0) scale(1) rotate(0);
    opacity: 1;
  }
}
@keyframes float {
  0% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(10px);
  }
}
/* c-modal-close
--------------------------- */
.c-modal-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 12vw;
  height: 12vw;
  z-index: 5;
}
@media all and (min-width: 768px) {
  .c-modal-close {
    width: 45px;
    height: 45px;
  }
}
.c-modal-close.is-btm-pos {
  position: absolute;
  top: auto;
  bottom: 6.1333333333vw;
  left: 0;
  right: 0;
  margin: auto;
  width: 8.5333333333vw;
  height: 8.5333333333vw;
}
@media all and (min-width: 768px) {
  .c-modal-close.is-btm-pos {
    bottom: 23px;
    width: 32px;
    height: 32px;
  }
}

/* remodal カスタマイズ
--------------------------- */
.remodal {
  width: 100vw;
  max-width: 100%;
  padding: 0;
  color: var(--gr);
  border-radius: 5.3333333333vw;
}
@media all and (min-width: 768px) {
  .remodal {
    width: 375px;
    border-radius: 20px;
  }
}

.remodal-wrapper {
  padding: 0;
}

.remodal-overlay {
  background: rgba(43, 46, 56, 0.5);
}

.c-ttl01 {
  font-size: 8vw;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-box: trim-both cap alphabetic;
}
@media all and (min-width: 768px) {
  .c-ttl01 {
    font-size: 30px;
  }
}

/* body
--------------------------- */
.l-body {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Hiragino Mincho", "Times New Roman", serif;
  font-size: 4.2666666667vw;
  font-weight: 500;
  line-height: 1.8;
  color: var(--gr);
  font-feature-settings: "palt";
  background-color: var(--ppl);
}
@media all and (min-width: 768px) {
  .l-body {
    font-size: 1rem;
  }
}

/* l-wrapper
--------------------------- */
.l-wrapper {
  position: relative;
}

/* l-main
--------------------------- */
.l-main {
  width: 100%;
  position: relative;
  z-index: 5;
}
@media all and (min-width: 768px) {
  .l-main {
    max-width: 375px;
    margin: auto;
    box-shadow: 0 0 10px var(--ppl3);
  }
}

/* l-footer
--------------------------- */
/* l-header
--------------------------- */
.l-header {
  display: none;
}
@media all and (min-width: 768px) {
  .l-header {
    display: block;
    position: fixed;
    top: 36px;
    left: 5.1976573939vw;
    z-index: 10;
  }
  .l-header__logo {
    width: 100px;
  }
}

/* l-left l-right
--------------------------- */
.l-left,
.l-right {
  display: none;
}
@media all and (min-width: 768px) {
  .l-left,
  .l-right {
    overflow: hidden;
    position: fixed;
    top: 0;
    display: block;
    height: 100vh;
    width: calc((100% - 375px) / 2);
  }
}

/* l-left
--------------------------- */
@media all and (min-width: 768px) {
  .l-left {
    left: 0;
  }
  .l-left:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background: url(../img/common/bg_left.svg) no-repeat left 0 bottom 10px;
    background-size: contain;
    width: max(100%, 496px);
    height: 100%;
    opacity: 0.5;
  }
}

/* l-right
--------------------------- */
@media all and (min-width: 768px) {
  .l-right {
    right: 0;
  }
  .l-right:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    background: url(../img/common/bg_right.svg) no-repeat right 0 bottom 10px;
    background-size: contain;
    width: max(100%, 493px);
    height: 100%;
    opacity: 0.5;
  }
}

/* anim-left
--------------------------- */
.anim-left-supple01 {
  width: max(3.8067349927vw, 52px);
  /* 最終座標（止まる位置） */
  --r: max(16.2518301611vw, 222px);
  --b: max(15.7027818448vw, 214.5px);
  /* 微調整 */
  --index: 0;
  --rot: -360deg;
  --float: 1;
}
.anim-left-supple02 {
  width: max(4.0995607613vw, 56px);
  /* 最終座標（止まる位置） */
  --r: max(16.1786237189vw, 221px);
  --b: max(26.7935578331vw, 366px);
  /* 微調整 */
  --index: 1;
  --rot: -540deg;
  --float: 1.3;
}
.anim-left-supple03 {
  width: max(4.9780380673vw, 68px);
  /* 最終座標（止まる位置） */
  --r: max(28.8433382138vw, 394px);
  --b: max(22.4743777452vw, 307px);
  /* 微調整 */
  --index: 2;
  --rot: -720deg;
  --float: 1.6;
}
.anim-left-supple04 {
  width: max(3.3674963397vw, 46px);
  /* 最終座標（止まる位置） */
  --r: max(3.5871156662vw, 49px);
  --b: max(31.6983894583vw, 433px);
  /* 微調整 */
  --index: 3;
  --rot: -360deg;
  --float: 1.9;
}
.anim-left-supple05 {
  width: max(5.1244509517vw, 70px);
  /* 最終座標（止まる位置） */
  --r: max(25.7686676428vw, 352px);
  --b: max(34.6998535871vw, 474px);
  /* 微調整 */
  --index: 2;
  --rot: -540deg;
  --float: 2.1;
}
.anim-left-supple06 {
  width: max(17.6427525622vw, 241px);
  /* 最終座標（止まる位置） */
  --r: max(5.8565153734vw, 80px);
  --b: max(34.1142020498vw, 466px);
  /* 微調整 */
  --index: 1;
  --rot: 0deg;
  --float: 6;
}

/* anim-right
--------------------------- */
.anim-right-supple01 {
  width: max(5.1244509517vw, 70px);
  /* 最終座標（止まる位置） */
  --l: max(12.298682284vw, 168px);
  --b: max(17.532942899vw, 239.5px);
  /* 微調整 */
  --index: 0;
  --rot: 360deg;
  --float: 1.2;
}
.anim-right-supple02 {
  width: max(3.8067349927vw, 52px);
  /* 最終座標（止まる位置） */
  --l: max(5.7833089312vw, 79px);
  --b: max(28.7701317716vw, 393px);
  /* 微調整 */
  --index: 1;
  --rot: 540deg;
  --float: 1.4;
}
.anim-right-supple03 {
  width: max(4.1727672035vw, 57px);
  /* 最終座標（止まる位置） */
  --l: max(15.8125915081vw, 216px);
  --b: max(37.8477306003vw, 517px);
  /* 微調整 */
  --index: 2;
  --rot: 720deg;
  --float: 1.6;
}
.anim-right-supple04 {
  width: max(5.1976573939vw, 71px);
  /* 最終座標（止まる位置） */
  --l: max(4.4655929722vw, 61px);
  --b: max(46.5592972182vw, 636px);
  /* 微調整 */
  --index: 3;
  --rot: 360deg;
  --float: 1.8;
}
.anim-right-supple05 {
  width: max(4.9780380673vw, 68px);
  /* 最終座標（止まる位置） */
  --l: max(21.5959004392vw, 295px);
  --b: max(48.5358711567vw, 663px);
  /* 微調整 */
  --index: 2;
  --rot: 540deg;
  --float: 2;
}
.anim-right-supple06 {
  width: max(17.2035139092vw, 235px);
  /* 最終座標（止まる位置） */
  --l: max(21.0102489019vw, 287px);
  --b: max(21.9619326501vw, 300px);
  /* 微調整 */
  --index: 1;
  --rot: 0deg;
  --float: 2.2;
}

/* anim-image
--------------------------- */
.anim-image {
  position: absolute;
  /* ここが「止まる座標」：各要素で --l/--r/--b を設定 */
  left: var(--l, auto);
  right: var(--r, auto);
  bottom: var(--b, 0);
  /* アニメ共通 */
  animation-duration: 1.6s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  /* 連番ディレイ */
  animation-delay: calc(var(--index, 0) * 0.03s);
  will-change: transform, opacity;
}
.anim-image img {
  animation-duration: calc(var(--float, 0) * 0.9s);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate-reverse;
}

#history .l-main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* p-history
--------------------------- */
.p-history {
  padding-bottom: 8vw;
}
@media all and (min-width: 768px) {
  .p-history {
    padding-bottom: 30px;
  }
}

/* p-history-intro
--------------------------- */
.p-history-intro {
  overflow: hidden;
}
.p-history-intro__head {
  margin-top: -21.0666666667vw;
  text-align: center;
  padding: 28.8vw 0 16.5333333333vw;
  background: url(../img/common/bg_head.svg) no-repeat 50% 50%;
  background-size: 80.8vw auto;
}
@media all and (min-width: 768px) {
  .p-history-intro__head {
    margin-top: -79px;
    padding: 108px 0 62px;
    background-size: 303px auto;
  }
}
.p-history-intro__ttl .logo {
  display: inline-block;
  width: 24.5333333333vw;
  margin: 0 2.6666666667vw;
}
@media all and (min-width: 768px) {
  .p-history-intro__ttl .logo {
    width: 92px;
    margin: 0 10px;
  }
}
.p-history-intro__txt {
  text-align: center;
  letter-spacing: 0.1em;
  text-box: trim-both cap alphabetic;
}
.p-history-intro__txt + .p-history-intro__txt {
  margin-top: 5.3333333333vw;
}
@media all and (min-width: 768px) {
  .p-history-intro__txt + .p-history-intro__txt {
    margin-top: 20px;
  }
}

/* p-history-product
--------------------------- */
.p-history-product {
  padding: 0 9.6vw 0;
  margin-top: 6.9333333333vw;
}
@media all and (min-width: 768px) {
  .p-history-product {
    padding: 0 36px 0;
    margin-top: 26px;
  }
}
.p-history-product-slider {
  box-shadow: 0 0 10px 0 #EFE7E1;
  background: #fff url(../img/history/bg_slider.png) no-repeat 0 100%/cover;
}
.p-history-product-slider.is-2025-active {
  background: #fff url(../img/history/bg_slider_2025.png) no-repeat 0 0/cover;
}
.p-history-product-slider__item {
  padding: 6.6666666667vw 0 0;
  min-height: 80vw;
}
@media all and (min-width: 768px) {
  .p-history-product-slider__item {
    padding: 25px 0 0;
    min-height: 300px;
  }
}
.p-history-product-slider__item__year {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 8.5333333333vw;
  margin-bottom: 11.2vw;
  position: relative;
}
@media all and (min-width: 768px) {
  .p-history-product-slider__item__year {
    min-height: 32px;
    margin-bottom: 42px;
  }
}
.p-history-product-slider__item__year span {
  font-size: 8.5333333333vw;
  line-height: 1;
  transform: scale(0.6);
  transform-origin: bottom;
  filter: blur(0.2666666667vw);
  opacity: 0.6;
  letter-spacing: 0.1em;
  transition: all 0.3s ease 0s;
}
@media all and (min-width: 768px) {
  .p-history-product-slider__item__year span {
    font-size: 32px;
    filter: blur(1px);
  }
}
.p-history-product-slider__item__link {
  display: block;
}
.p-history-product-slider__item img {
  will-change: transform;
  backface-visibility: hidden;
  transform: translate(8vw, -8vw) scale(0.5);
  transform-origin: top left;
  transition: all 0.5s linear 0s;
}
@media all and (min-width: 768px) {
  .p-history-product-slider__item img {
    transform: translate(30px, -30px) scale(0.5);
  }
}
.p-history-product-slider__item.slick-center img {
  transform: translate(0, 0) scale(1);
}
.p-history-product-slider__item.is-prev img {
  transform: translate(-8vw, 8vw) scale(1.5);
}
@media all and (min-width: 768px) {
  .p-history-product-slider__item.is-prev img {
    transform: translate(-30px, 30px) scale(1.5);
  }
}
.p-history-product-slider__item.is-prev-prev img {
  transform: translate(-16vw, 16vw) scale(1.5);
}
@media all and (min-width: 768px) {
  .p-history-product-slider__item.is-prev-prev img {
    transform: translate(-60px, 60px) scale(1.5);
  }
}
.p-history-product-slider__item.slick-center .p-history-product-slider__item__year:before {
  content: "";
  width: 100%;
  height: 1.6vw;
  background: linear-gradient(90deg, #FFF 0%, var(--ppl3) 20%, var(--ppl2) 30%, var(--ppl2) 70%, var(--ppl3) 80%, #FFF 100%);
  position: absolute;
  bottom: -3.7333333333vw;
  left: 50%;
  transform: translateX(-50%);
}
@media all and (min-width: 768px) {
  .p-history-product-slider__item.slick-center .p-history-product-slider__item__year:before {
    height: 6px;
    bottom: -14px;
  }
}
.p-history-product-slider__item.slick-center .p-history-product-slider__item__year span {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}
.p-history-product-slider__item.slick-center .p-history-product-slider__item__year img {
  transform-origin: center;
}
.p-history-product-slider .slick-prev,
.p-history-product-slider .slick-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 30px;
  height: 30px;
  z-index: 1;
}
.p-history-product-slider .slick-prev {
  left: -36px;
  background: url(../img/history/ico_slider_arrow_prev.svg) no-repeat 50% 50%/contain;
}
.p-history-product-slider .slick-next {
  right: -36px;
  background: url(../img/history/ico_slider_arrow_next.svg) no-repeat 50% 50%/contain;
}
.p-history-product__swipe {
  width: 26.6666666667vw;
  margin: 2.6666666667vw auto 0;
}
@media all and (min-width: 768px) {
  .p-history-product__swipe {
    width: 100px;
    margin: 10px auto 0;
  }
}

/* p-history-btn
--------------------------- */
.p-history-product-btn {
  margin-top: 4vw;
}
@media all and (min-width: 768px) {
  .p-history-product-btn {
    margin-top: 15px;
  }
}

/* p-history-modal
--------------------------- */
.p-history-modal {
  padding-bottom: 34.6666666667vw;
}
@media all and (min-width: 768px) {
  .p-history-modal {
    padding-bottom: 130px;
  }
}
.p-history-modal:before, .p-history-modal:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 37.3333333333vw;
}
@media all and (min-width: 768px) {
  .p-history-modal:before, .p-history-modal:after {
    height: 140px;
  }
}
.p-history-modal:before {
  top: 0;
  background: linear-gradient(183deg, var(--ppl2) -156.92%, var(--ppl3) -115.9%, #FDFDFE 27.83%, #FFF 56.97%);
}
.p-history-modal:after {
  bottom: 0;
  background: linear-gradient(3deg, var(--ppl2) -156.92%, var(--ppl3) -115.9%, #FDFDFE 27.83%, #FFF 56.97%);
}
.p-history-modal__content {
  position: relative;
  z-index: 1;
}
.p-history-modal__head {
  text-align: center;
  padding: 13.3333333333vw 0 15.7333333333vw;
  background: url(../img/history/bg_modal_head.svg) no-repeat 50% 100%;
  background-size: 39.2vw auto;
}
@media all and (min-width: 768px) {
  .p-history-modal__head {
    padding: 50px 0 59px;
    background-size: 147px auto;
  }
}
.p-history-modal__year {
  font-size: 11.7333333333vw;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-box: trim-both cap alphabetic;
}
@media all and (min-width: 768px) {
  .p-history-modal__year {
    font-size: 44px;
  }
}
.p-history-modal__year span {
  font-size: 8vw;
}
@media all and (min-width: 768px) {
  .p-history-modal__year span {
    font-size: 30px;
  }
}
.p-history-modal__img {
  width: 45.3333333333vw;
  margin: auto;
}
@media all and (min-width: 768px) {
  .p-history-modal__img {
    width: 170px;
  }
}
.p-history-modal__inner {
  width: 65.6vw;
  margin: 9.3333333333vw auto 0;
  display: flex;
  flex-direction: column;
  gap: 5.3333333333vw 0;
}
.p-history-modal__inner .is-space-7 {
  letter-spacing: -0.07em;
}
.p-history-modal__inner .is-space-5 {
  letter-spacing: -0.05em;
}
.p-history-modal__inner .is-space-14 {
  letter-spacing: -0.14em;
}
@media all and (min-width: 768px) {
  .p-history-modal__inner {
    width: 246px;
    margin: 35px auto 0;
    gap: 20px 0;
  }
}
.p-history-modal__tag {
  background: linear-gradient(90deg, #FFF 0%, var(--ppl3) 20%, var(--ppl2) 30%, var(--ppl2) 70%, var(--ppl3) 80%, #FFF) 100%;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 3.7333333333vw;
  font-weight: bold;
  color: #fff;
  width: 100%;
  height: 6.6666666667vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media all and (min-width: 768px) {
  .p-history-modal__tag {
    font-size: 14px;
  }
}
@media all and (min-width: 768px) {
  .p-history-modal__tag {
    height: 25px;
  }
}
.p-history-modal__name {
  text-align: left;
  font-size: 5.3333333333vw;
  line-height: 1.2;
  text-box: trim-both cap alphabetic;
  padding-bottom: 5.3333333333vw;
  border-bottom: 1px solid var(--ppl2);
  white-space: nowrap;
}
.p-history-modal__name .note {
  display: block;
  font-size: 3.7333333333vw;
  margin-top: 2.6666666667vw;
}
@media all and (min-width: 768px) {
  .p-history-modal__name .note {
    font-size: 14px;
    margin-top: 10px;
  }
}
.p-history-modal__name__item {
  text-indent: -1em;
  padding-left: 1em;
  white-space: nowrap;
}
.p-history-modal__name__item + .p-history-modal__name__item {
  margin-top: 2.6666666667vw;
}
@media all and (min-width: 768px) {
  .p-history-modal__name__item + .p-history-modal__name__item {
    margin-top: 10px;
  }
}
@media all and (min-width: 768px) {
  .p-history-modal__name {
    padding-bottom: 20px;
    font-size: 20px;
  }
}
.p-history-modal__txt {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  text-align: left;
  font-size: 3.7333333333vw;
  font-weight: 400;
  text-box: trim-both cap alphabetic;
}
@media all and (min-width: 768px) {
  .p-history-modal__txt {
    font-size: 14px;
  }
}
.p-history-modal__note {
  text-align: left;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
.p-history-modal__note__item {
  font-size: 3.2vw;
  font-weight: 400;
}
@media all and (min-width: 768px) {
  .p-history-modal__note__item {
    font-size: 12px;
  }
}

#interview .l-main {
  min-height: 100vh;
}

/* p-interview
--------------------------- */
.p-interview {
  padding-bottom: 10.1333333333vw;
}
@media all and (min-width: 768px) {
  .p-interview {
    padding-bottom: 38px;
  }
}

/* p-interview-intro
--------------------------- */
.p-interview-intro__head {
  text-align: center;
  padding: 13.8666666667vw 0 20.5333333333vw;
  background: url(../img/common/bg_head.svg) no-repeat 50% 85%;
  background-size: 80.8vw auto;
}
@media all and (min-width: 768px) {
  .p-interview-intro__head {
    padding: 52px 0 77px;
    background-size: 303px auto;
  }
}
.p-interview-intro__ttl .myjino {
  display: inline-block;
  width: 46.4vw;
}
@media all and (min-width: 768px) {
  .p-interview-intro__ttl .myjino {
    width: 174px;
  }
}

/* p-interview-list
--------------------------- */
.p-interview-list {
  margin-top: 4vw;
}
@media all and (min-width: 768px) {
  .p-interview-list {
    margin-top: 15px;
  }
}
.p-interview-list__item + .p-interview-list__item {
  margin-top: 9.6vw;
}
@media all and (min-width: 768px) {
  .p-interview-list__item + .p-interview-list__item {
    margin-top: 36px;
  }
}
.p-interview-list__item:nth-child(even) .p-interview-list__link {
  flex-direction: row-reverse;
}
.p-interview-list__item:nth-child(even) .p-interview-list__head {
  padding-left: 0;
  padding-right: 8vw;
}
@media all and (min-width: 768px) {
  .p-interview-list__item:nth-child(even) .p-interview-list__head {
    padding-right: 30px;
  }
}
.p-interview-list__item:nth-child(even) .p-interview-list__img:before {
  left: auto;
  right: -1.3333333333vw;
}
@media all and (min-width: 768px) {
  .p-interview-list__item:nth-child(even) .p-interview-list__img:before {
    right: -5px;
  }
}
.p-interview-list__item:nth-child(even) .p-interview-list__content {
  padding-right: 0;
  padding-left: 6.6666666667vw;
}
@media all and (min-width: 768px) {
  .p-interview-list__item:nth-child(even) .p-interview-list__content {
    padding-left: 25px;
  }
}
.p-interview-list__item:nth-child(1) .p-interview-list__link:after {
  background: url(../img/interview/img_fig01.png) no-repeat 0 0/cover;
  width: 16vw;
  height: 13.6vw;
  bottom: 5.8666666667vw;
  left: 0vw;
}
@media all and (min-width: 768px) {
  .p-interview-list__item:nth-child(1) .p-interview-list__link:after {
    width: 60px;
    height: 51px;
    bottom: 22px;
    left: 0;
  }
}
.p-interview-list__item:nth-child(2) .p-interview-list__link:after {
  background: url(../img/interview/img_fig02.png) no-repeat 0 0/cover;
  width: 18.4vw;
  height: 20.2666666667vw;
  bottom: 3.7333333333vw;
  right: 30.1333333333vw;
}
@media all and (min-width: 768px) {
  .p-interview-list__item:nth-child(2) .p-interview-list__link:after {
    width: 69px;
    height: 76px;
    bottom: 14px;
    right: 113px;
  }
}
.p-interview-list__item:nth-child(3) .p-interview-list__link:after {
  background: url(../img/interview/img_fig03.png) no-repeat 0 0/cover;
  width: 17.8666666667vw;
  height: 23.4666666667vw;
  bottom: 10.6666666667vw;
  left: 1.6vw;
}
@media all and (min-width: 768px) {
  .p-interview-list__item:nth-child(3) .p-interview-list__link:after {
    width: 67px;
    height: 88px;
    bottom: 40px;
    left: 6px;
  }
}
.p-interview-list__item:nth-child(4) .p-interview-list__link:after {
  background: url(../img/interview/img_fig04.png) no-repeat 0 0/cover;
  width: 12.5333333333vw;
  height: 13.8666666667vw;
  bottom: 6.9333333333vw;
  right: 29.8666666667vw;
}
@media all and (min-width: 768px) {
  .p-interview-list__item:nth-child(4) .p-interview-list__link:after {
    width: 47px;
    height: 52px;
    bottom: 26px;
    right: 112px;
  }
}
.p-interview-list__item:nth-child(5) .p-interview-list__link:after {
  background: url(../img/interview/img_fig05.png) no-repeat 0 0/cover;
  width: 25.6vw;
  height: 25.6vw;
  bottom: 1.3333333333vw;
  left: -4vw;
}
@media all and (min-width: 768px) {
  .p-interview-list__item:nth-child(5) .p-interview-list__link:after {
    width: 96px;
    height: 96px;
    bottom: 5px;
    left: -15px;
  }
}
.p-interview-list__link {
  width: 100%;
  min-height: 52vw;
  display: flex;
  background: #FFF;
  box-shadow: 0 0 10px 0 #EFE7E1;
  padding: 6.6666666667vw 0 5.3333333333vw;
  gap: 0 4vw;
  position: relative;
}
@media all and (min-width: 768px) {
  .p-interview-list__link {
    min-height: 195px;
    padding: 25px 0 20px;
    gap: 0 15px;
  }
}
.p-interview-list__link:before {
  content: "";
  width: 100%;
  height: 1.3333333333vw;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, var(--ppl3) 8.44%, var(--ppl2) 31.61%, var(--ppl2) 73.75%, var(--ppl3) 96.15%);
}
@media all and (min-width: 768px) {
  .p-interview-list__link:before {
    height: 5px;
  }
}
.p-interview-list__link:after {
  content: "";
  position: absolute;
  z-index: 2;
}
.p-interview-list__head {
  padding-left: 8vw;
}
@media all and (min-width: 768px) {
  .p-interview-list__head {
    padding-left: 30px;
  }
}
.p-interview-list__img {
  width: 29.3333333333vw;
  position: relative;
}
@media all and (min-width: 768px) {
  .p-interview-list__img {
    width: 110px;
  }
}
.p-interview-list__img:before {
  content: "";
  width: 26.6666666667vw;
  height: 32.8vw;
  background: linear-gradient(0deg, #FFF -14.63%, var(--ppl3) 40.19%, var(--ppl2) 125.61%);
  filter: blur(1.5px);
  position: absolute;
  bottom: -1.6vw;
  left: -1.3333333333vw;
}
@media all and (min-width: 768px) {
  .p-interview-list__img:before {
    width: 100px;
    height: 123px;
    bottom: -6px;
    left: -5px;
  }
}
.p-interview-list__img img {
  position: relative;
  z-index: 1;
  margin-top: -9.3333333333vw;
}
@media all and (min-width: 768px) {
  .p-interview-list__img img {
    margin-top: -35px;
  }
}
.p-interview-list__tap {
  width: 20.5333333333vw;
  margin: auto;
}
@media all and (min-width: 768px) {
  .p-interview-list__tap {
    width: 77px;
  }
}
.p-interview-list__content {
  padding-right: 6.1333333333vw;
}
@media all and (min-width: 768px) {
  .p-interview-list__content {
    padding-right: 23px;
  }
}
.p-interview-list__ttl {
  text-box: trim-both cap alphabetic;
}
.p-interview-list__ttl .txt {
  background: linear-gradient(0deg, rgba(169, 173, 222, 0.5) 0%, rgba(169, 173, 222, 0.5) 25%, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0) 100%);
}
.p-interview-list__lead, .p-interview-modal__lead {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  margin-top: 5.3333333333vw;
  text-box: trim-both cap alphabetic;
  color: var(--ppl2);
  font-size: 3.7333333333vw;
  font-weight: 400;
  line-height: 1.5;
}
@media all and (min-width: 768px) {
  .p-interview-list__lead, .p-interview-modal__lead {
    margin-top: 20px;
    font-size: 14px;
  }
}
.p-interview-list__name, .p-interview-modal__name {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  margin-top: 4vw;
  text-box: trim-both cap alphabetic;
  color: var(--ppl2);
  font-weight: bold;
  line-height: 1.2;
}
@media all and (min-width: 768px) {
  .p-interview-list__name, .p-interview-modal__name {
    margin-top: 15px;
  }
}

/* p-interview-btn
--------------------------- */
.p-interview-btn {
  margin-top: 8vw;
}
@media all and (min-width: 768px) {
  .p-interview-btn {
    margin-top: 30px;
  }
}

/* p-interview-list
--------------------------- */
.p-interview-modal {
  margin-bottom: 0;
  background-color: transparent;
}
.p-interview-modal__content {
  margin-top: 9.0666666667vw;
  padding: 0 6.9333333333vw 10.6666666667vw;
}
@media all and (min-width: 768px) {
  .p-interview-modal__content {
    margin-top: 34px;
    padding: 0 26px 40px;
  }
}
.p-interview-modal__inner {
  background-color: #fff;
  box-shadow: 0 0 10px 0 #EFE7E1;
}
.p-interview-modal__head {
  position: relative;
  padding: 9.8666666667vw 0 14.9333333333vw;
}
@media all and (min-width: 768px) {
  .p-interview-modal__head {
    padding: 37px 0 56px;
  }
}
.p-interview-modal__head:before {
  content: "";
  background: url(../img/common/bg_head.svg) no-repeat 0 0;
  background-size: contain;
  width: 63.2vw;
  height: 55.2vw;
  position: absolute;
  top: 36%;
  left: 48%;
  transform: translate(-50%, -50%);
}
@media all and (min-width: 768px) {
  .p-interview-modal__head:before {
    width: 237px;
    height: 207px;
  }
}
.p-interview-modal__ttl {
  text-box: trim-both cap alphabetic;
  font-size: 5.3333333333vw;
  line-height: 1.2;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.p-interview-modal__ttl .myjino {
  display: inline-block;
  width: 39.4666666667vw;
}
@media all and (min-width: 768px) {
  .p-interview-modal__ttl .myjino {
    width: 148px;
  }
}
@media all and (min-width: 768px) {
  .p-interview-modal__ttl {
    font-size: 20px;
  }
}
.p-interview-modal__cap {
  text-box: trim-both cap alphabetic;
  font-size: 5.3333333333vw;
  line-height: 2;
  text-align: center;
}
@media all and (min-width: 768px) {
  .p-interview-modal__cap {
    font-size: 20px;
  }
}
.p-interview-modal__img {
  width: 40vw;
  margin: 7.2vw auto 0;
  position: relative;
}
@media all and (min-width: 768px) {
  .p-interview-modal__img {
    width: 150px;
    margin: 27px auto 0;
  }
}
.p-interview-modal__img:before {
  content: "";
  width: 40vw;
  height: 48vw;
  background: linear-gradient(0deg, #FFF -14.63%, #BCB1D0 40.19%, #8F7FAD 125.61%);
  filter: blur(1.5px);
  position: absolute;
  bottom: -1.8666666667vw;
  left: -1.8666666667vw;
}
@media all and (min-width: 768px) {
  .p-interview-modal__img:before {
    width: 150px;
    height: 180px;
    bottom: -7px;
    left: -7px;
  }
}
.p-interview-modal__img img {
  position: relative;
  z-index: 1;
}
.p-interview-modal__lead {
  margin-top: 9.3333333333vw;
}
@media all and (min-width: 768px) {
  .p-interview-modal__lead {
    margin-top: 35px;
  }
}
.p-interview-modal__name {
  margin-top: 4vw;
  font-size: 4.8vw;
}
@media all and (min-width: 768px) {
  .p-interview-modal__name {
    margin-top: 15px;
    font-size: 18px;
  }
}
.p-interview-modal__faq {
  text-align: left;
  margin-top: 8vw;
  padding: 0 6.9333333333vw 10.6666666667vw;
}
@media all and (min-width: 768px) {
  .p-interview-modal__faq {
    margin-top: 30px;
    padding: 0 26px 40px;
  }
}
.p-interview-modal__faq__item + .p-interview-modal__faq__item {
  margin-top: 10.6666666667vw;
}
@media all and (min-width: 768px) {
  .p-interview-modal__faq__item + .p-interview-modal__faq__item {
    margin-top: 40px;
  }
}
.p-interview-modal__faq__ttl {
  width: 100%;
  min-height: 20.5333333333vw;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  line-height: 1.5;
  border-top: 1px solid var(--ppl2);
  border-bottom: 1px solid var(--ppl2);
  padding-block: 2.6666666667vw;
  padding-left: 20.8vw;
  position: relative;
}
@media all and (min-width: 768px) {
  .p-interview-modal__faq__ttl {
    min-height: 77px;
    padding-block: 10px;
    padding-left: 78.5px;
  }
}
.p-interview-modal__faq__ttl .q {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16.5333333333vw;
  height: 14.1333333333vw;
  background: url(../img/interview/bg_faq_ttl.svg) no-repeat 0 0/cover;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 8vw;
  color: #fff;
  line-height: 1.5;
}
@media all and (min-width: 768px) {
  .p-interview-modal__faq__ttl .q {
    font-size: 30px;
    width: 62px;
    height: 53px;
  }
}
.p-interview-modal__faq__ttl .note {
  font-size: 2.9333333333vw;
  display: block;
}
@media all and (min-width: 768px) {
  .p-interview-modal__faq__ttl .note {
    font-size: 11px;
  }
}
.p-interview-modal__faq__txt {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  margin-top: 5.3333333333vw;
  text-box: trim-both cap alphabetic;
  font-size: 3.7333333333vw;
  font-weight: 400;
}
@media all and (min-width: 768px) {
  .p-interview-modal__faq__txt {
    margin-top: 20px;
    font-size: 14px;
  }
}
.p-interview-modal__faq__txt .txt {
  background: linear-gradient(0deg, rgba(169, 173, 222, 0.5) 0%, rgba(169, 173, 222, 0.5) 30%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0) 100%);
}

/* TOPアニメーション
--------------------------- */
#top .l-main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media all and (min-width: 768px) {
  #top .anim-image {
    opacity: 0;
  }
  #top .anim-image-left {
    animation-name: cracker-left;
  }
  #top .anim-image-left img {
    animation-name: float;
  }
  #top .anim-image-right {
    animation-name: cracker-right;
  }
  #top .anim-image-right img {
    animation-name: float;
  }
}

/* p-top-overlay
--------------------------- */
.p-top-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  background-color: rgba(43, 46, 56, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.9s ease 0s;
}
.p-top-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

/* p-top-visit-modal
--------------------------- */
.p-top-visit-modal {
  position: absolute;
  width: 91.4666666667vw;
  top: 50%;
  left: 0;
  right: 0;
  transform: translate(0, -50%);
  margin: auto;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  border-radius: 5.3333333333vw;
  overflow: hidden;
  transition: all 0.9s linear 0s;
}
@media all and (min-width: 768px) {
  .p-top-visit-modal {
    border-radius: 20px;
    width: 343px;
  }
}
.p-top-visit-modal.is-active {
  opacity: 1;
  visibility: visible;
}
.p-top-visit-modal:before, .p-top-visit-modal:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 37.3333333333vw;
}
@media all and (min-width: 768px) {
  .p-top-visit-modal:before, .p-top-visit-modal:after {
    height: 140px;
  }
}
.p-top-visit-modal:before {
  top: 0;
  background: linear-gradient(183deg, var(--ppl2) -38.45%, var(--ppl3) -4.96%, #D4D5EE 17.37%, #FDFDFE 50.87%, #FFF 99.25%);
}
.p-top-visit-modal::after {
  bottom: 0;
  background: linear-gradient(3deg, var(--ppl2) -38.45%, var(--ppl3) -4.96%, #D4D5EE 17.37%, #FDFDFE 50.87%, #FFF 99.25%);
}
.p-top-visit-modal .c-modal-close {
  top: 4vw;
  right: 4vw;
}
@media all and (min-width: 768px) {
  .p-top-visit-modal .c-modal-close {
    top: 15px;
    right: 15px;
  }
}
.p-top-visit-modal-content {
  position: relative;
  z-index: 1;
  padding: 20.2666666667vw 0 36.2666666667vw;
  text-align: center;
  background: url(../img/top/img_visit_modal_content_btm.png);
  background-repeat: no-repeat;
  background-position: left 50% bottom 9.0666666667vw;
  background-size: 59.7333333333vw auto;
}
@media all and (min-width: 768px) {
  .p-top-visit-modal-content {
    padding: 70px 0 136px;
    background-position: left 50% bottom 34px;
    background-size: 224px auto;
  }
}
.p-top-visit-modal-content__logo {
  width: 29.6vw;
  margin: auto;
}
@media all and (min-width: 768px) {
  .p-top-visit-modal-content__logo {
    width: 111px;
  }
}
.p-top-visit-modal-content__ttl {
  margin-top: 1.3333333333vw;
  font-size: 6.6666666667vw;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media all and (min-width: 768px) {
  .p-top-visit-modal-content__ttl {
    margin-top: 5px;
    font-size: 1.5625rem;
  }
}
.p-top-visit-modal-content__txt {
  text-box: trim-both cap alphabetic;
  margin-top: 8.8vw;
}
@media all and (min-width: 768px) {
  .p-top-visit-modal-content__txt {
    margin-top: 33px;
  }
}
.p-top-visit-modal-content__txt + .p-top-visit-modal-content__txt {
  margin-top: 8vw;
}
@media all and (min-width: 768px) {
  .p-top-visit-modal-content__txt + .p-top-visit-modal-content__txt {
    margin-top: 30px;
  }
}

/* p-top-intro
--------------------------- */
.p-top-intro {
  overflow: hidden;
  text-align: center;
  background: url(../img/top/bg_intro.svg) no-repeat 50% 50%;
  background-size: 112.8vw auto;
  padding: 21.3333333333vw 0 14.9333333333vw 0;
  margin-top: -10.6666666667vw;
}
@media all and (min-width: 768px) {
  .p-top-intro {
    background: url(../img/top/bg_intro.svg) no-repeat 50% 50%;
    background-size: 423px auto;
    padding: 80px 0 56px 0;
    margin-top: -40px;
  }
}
.p-top-intro__logo {
  width: 30.1333333333vw;
  margin: auto;
}
@media all and (min-width: 768px) {
  .p-top-intro__logo {
    width: 113px;
  }
}
.p-top-intro__ttl {
  margin-top: 2.6666666667vw;
  font-size: 8vw;
  line-height: 1;
  letter-spacing: 0.05em;
  text-box: trim-both cap alphabetic;
}
@media all and (min-width: 768px) {
  .p-top-intro__ttl {
    margin-top: 10px;
    font-size: 1.875rem;
  }
}
.p-top-intro__ttl .num {
  font-size: 10.6666666667vw;
}
@media all and (min-width: 768px) {
  .p-top-intro__ttl .num {
    font-size: 2.5rem;
  }
}
.p-top-intro__txt {
  margin-top: 7.4666666667vw;
  text-box: trim-both cap alphabetic;
}
@media all and (min-width: 768px) {
  .p-top-intro__txt {
    margin-top: 28px;
  }
}

/* p-top-contents
--------------------------- */
.p-top-contents {
  padding: 0 4.2666666667vw 0 4.5333333333vw;
}
@media all and (min-width: 768px) {
  .p-top-contents {
    padding: 0 16px 0 17px;
  }
}
.p-top-contents__inner {
  background: url(../img/top/bg_contents.png) no-repeat 0 100%/cover;
  min-height: 141.0666666667vw;
  display: flex;
  justify-content: center;
  padding-left: 1.6vw;
}
@media all and (min-width: 768px) {
  .p-top-contents__inner {
    min-height: 529px;
    padding-left: 6px;
  }
}
.p-top-contents-left {
  width: 49.3333333333vw;
  padding-top: 24.5333333333vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media all and (min-width: 768px) {
  .p-top-contents-left {
    width: 185px;
    padding-top: 92px;
  }
}
.p-top-contents-left__logo {
  width: 21.8666666667vw;
  margin-left: auto;
  margin-right: 4vw;
}
@media all and (min-width: 768px) {
  .p-top-contents-left__logo {
    width: 82px;
    margin-right: 15px;
  }
}
.p-top-contents-left__list {
  margin-top: 5.3333333333vw;
  padding: 0 3.4666666667vw 0 3.2vw;
}
@media all and (min-width: 768px) {
  .p-top-contents-left__list {
    margin-top: 20px;
    padding: 0 13px 0 12px;
  }
}
.p-top-contents-left__item + .p-top-contents-left__item {
  margin-top: 3.4666666667vw;
}
@media all and (min-width: 768px) {
  .p-top-contents-left__item + .p-top-contents-left__item {
    margin-top: 13px;
  }
}
.p-top-contents-left__item:last-child {
  margin-top: 4vw;
}
@media all and (min-width: 768px) {
  .p-top-contents-left__item:last-child {
    margin-top: 15px;
  }
}
.p-top-contents-left__item__link {
  background: url(../img/top/bg_btn_purple.png) no-repeat 0 0/contain;
  height: 13.6vw;
  width: 100%;
  transition: all 0.3s ease 0s;
}
@media all and (min-width: 768px) {
  .p-top-contents-left__item__link {
    height: 51px;
  }
}
.p-top-contents-left__item__link.is-no-link {
  display: block;
  pointer-events: none;
  background: url(../img/top/bg_btn.png) no-repeat 0 0/contain;
  height: 12.8vw;
}
@media all and (min-width: 768px) {
  .p-top-contents-left__item__link.is-no-link {
    height: 48px;
  }
}
.p-top-contents-left__item__link.is-soon {
  pointer-events: none;
  color: var(--ppl2);
  padding-top: 2.6666666667vw;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url(../img/top/bg_btn_soon.png) no-repeat 0 0/contain;
  height: 13.6vw;
  position: relative;
}
@media all and (min-width: 768px) {
  .p-top-contents-left__item__link.is-soon {
    padding-top: 10px;
    height: 51px;
  }
}
.p-top-contents-left__item__link.is-soon:before {
  content: "準備中";
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 3.7333333333vw;
  line-height: 1;
  font-weight: bold;
  color: #fff;
  padding: 0.8vw 2.6666666667vw;
  border-radius: 200px;
  border: 1px solid var(--ppl2);
  border-radius: 200px;
  background: linear-gradient(2deg, var(--ppl2) 1.57%, var(--ppl3) 92.83%, #FFF 180.77%);
  position: absolute;
  top: -0.6666666667vw;
  left: 50%;
  transform: translate(-50%, 0);
}
@media all and (min-width: 768px) {
  .p-top-contents-left__item__link.is-soon:before {
    font-size: 0.875rem;
    padding: 3px 10px;
    top: -2.5px;
  }
}
.p-top-contents-left__item__link.is-game {
  display: flex;
  align-items: center;
  padding-top: 3.2vw;
  position: relative;
}
@media all and (min-width: 768px) {
  .p-top-contents-left__item__link.is-game {
    padding-top: 12px;
  }
}
.p-top-contents-left__item__link.is-game:before {
  content: "";
  background: url(../img/top/img_fig_game.png) no-repeat 0 0/contain;
  width: 9.0666666667vw;
  height: 8vw;
  position: absolute;
  right: 1.8666666667vw;
  bottom: -0.5333333333vw;
  z-index: 1;
}
@media all and (min-width: 768px) {
  .p-top-contents-left__item__link.is-game:before {
    width: 34px;
    height: 30px;
    right: 7px;
    bottom: -2px;
  }
}
@media (hover: hover) {
  .p-top-contents-left__item__link:hover {
    background: url(../img/top/bg_btn_purple_hov.png) no-repeat 0 0/contain;
  }
  .p-top-contents-left__item__link:hover .p-top-contents-left__item__game--head {
    border: 1px solid var(--ppl2);
    background: linear-gradient(25deg, var(--ppl2) 15.8%, var(--ppl3) 78.93%, #FFF 110.35%);
    color: #fff;
  }
  .p-top-contents-left__item__link:hover .p-top-contents-left__item__game--txt {
    color: var(--ppl2);
  }
}
.p-top-contents-left__item__game--head {
  color: var(--ppl2);
  font-size: 3.7333333333vw;
  line-height: 1;
  border-radius: 200px;
  border: 1px solid #D1DBF4;
  background: linear-gradient(0deg, #C9DBF3 -87.55%, #FFF 82.01%);
  padding: 0.8vw 2.6666666667vw;
  position: absolute;
  top: -0.8vw;
  left: 50%;
  transform: translate(-50%, 0);
  white-space: nowrap;
}
@media all and (min-width: 768px) {
  .p-top-contents-left__item__game--head {
    font-size: 0.875rem;
    padding: 3px 10px;
    top: -3px;
  }
}
.p-top-contents-left__item__game--txt {
  font-size: 3.7333333333vw;
  font-weight: bold;
  padding-left: 5.3333333333vw;
  color: #fff;
}
@media all and (min-width: 768px) {
  .p-top-contents-left__item__game--txt {
    font-size: 0.875rem;
    padding-left: 20px;
  }
}
.p-top-contents-left__tap {
  display: flex;
  justify-content: center;
}
.p-top-contents-left__tap__link {
  width: 25.6vw;
  height: 17.6vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/top/bg_btn_tap.png) no-repeat 0 0/contain;
  text-align: center;
  color: #fff;
  font-size: 5.3333333333vw;
  line-height: 1;
  letter-spacing: 0.1em;
  position: relative;
}
@media all and (min-width: 768px) {
  .p-top-contents-left__tap__link {
    width: 96px;
    height: 66px;
    font-size: 1.25rem;
  }
}
.p-top-contents-left__tap__link:before {
  content: "";
  background: url(../img/top/img_fig_tap.png) no-repeat 0 0/contain;
  width: 11.2vw;
  height: 10.6666666667vw;
  position: absolute;
  top: -2.6666666667vw;
  left: 0;
}
@media all and (min-width: 768px) {
  .p-top-contents-left__tap__link:before {
    width: 42px;
    height: 40px;
    top: -10px;
    left: 0;
  }
}
@media (hover: hover) {
  .p-top-contents-left__tap__link:hover {
    background: url(../img/top/bg_btn_tap_hov.png) no-repeat 0 0/contain;
    color: var(--ppl2);
  }
}
.p-top-contents-right {
  width: 32.2666666667vw;
  padding-top: 22.4vw;
}
@media all and (min-width: 768px) {
  .p-top-contents-right {
    width: 121px;
    padding-top: 84px;
  }
}
.p-top-contents-right__list {
  padding: 0 1.8666666667vw 0 1.0666666667vw;
}
@media all and (min-width: 768px) {
  .p-top-contents-right__list {
    padding: 0 7px 0 4px;
  }
}
.p-top-contents-right__item {
  width: 29.3333333333vw;
  height: 28.8vw;
}
@media all and (min-width: 768px) {
  .p-top-contents-right__item {
    width: 110px;
    height: 108px;
  }
}
.p-top-contents-right__item + .p-top-contents-right__item {
  margin-top: 6.9333333333vw;
}
@media all and (min-width: 768px) {
  .p-top-contents-right__item + .p-top-contents-right__item {
    margin-top: 26px;
  }
}
.p-top-contents-right__item__link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  text-align: center;
  padding-top: 3.7333333333vw;
  background: url(../img/top/bg_btn_purple_l.png) no-repeat 0 0/contain;
  position: relative;
  transition: all 0.3s ease 0s;
}
@media all and (min-width: 768px) {
  .p-top-contents-right__item__link {
    padding-top: 14px;
  }
}
.p-top-contents-right__item__link.is-history::before {
  content: "";
  background: url(../img/top/img_fig_history.png) no-repeat 0 0/contain;
  width: 8.5333333333vw;
  height: 7.7333333333vw;
  position: absolute;
  top: 64%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media all and (min-width: 768px) {
  .p-top-contents-right__item__link.is-history::before {
    width: 32px;
    height: 29px;
  }
}
.p-top-contents-right__item__link.is-interview::before {
  content: "";
  background: url(../img/top/img_fig_interview.png) no-repeat 0 0/contain;
  width: 7.2vw;
  height: 7.2vw;
  position: absolute;
  top: 62%;
  left: 71%;
  transform: translate(-50%, -50%);
}
@media all and (min-width: 768px) {
  .p-top-contents-right__item__link.is-interview::before {
    width: 27px;
    height: 27px;
  }
}
@media (hover: hover) {
  .p-top-contents-right__item__link:hover {
    background: url(../img/top/bg_btn_purple_l_hov.png) no-repeat 0 0/contain;
  }
  .p-top-contents-right__item__link:hover .p-top-contents-right__item__txt {
    color: var(--ppl2);
  }
  .p-top-contents-right__item__link:hover .p-top-contents-right__item__txt .logo path {
    fill: var(--ppl2);
  }
}
.p-top-contents-right__item__txt {
  font-size: 3.7333333333vw;
  line-height: 1.2;
  color: #fff;
  font-weight: bold;
}
.p-top-contents-right__item__txt .logo {
  display: inline-block;
  width: 12.8vw;
  height: 4.8vw;
}
.p-top-contents-right__item__txt .logo svg {
  width: 100%;
  height: auto;
}
@media all and (min-width: 768px) {
  .p-top-contents-right__item__txt .logo {
    width: 48px;
    height: 18px;
  }
}
@media all and (min-width: 768px) {
  .p-top-contents-right__item__txt {
    font-size: 0.875rem;
  }
}
.p-top-contents-right__item__en {
  font-size: 4.8vw;
  color: var(--ppl2);
}
@media all and (min-width: 768px) {
  .p-top-contents-right__item__en {
    font-size: 1.125rem;
  }
}

/* p-top-message
--------------------------- */
.p-top-message {
  background-color: var(--ppl);
  padding-bottom: 9.8666666667vw;
  width: 91.4666666667vw;
}
@media all and (min-width: 768px) {
  .p-top-message {
    padding-bottom: 37px;
    width: 343px;
  }
}
.p-top-message .c-modal-close {
  top: 4vw;
  right: 4vw;
}
@media all and (min-width: 768px) {
  .p-top-message .c-modal-close {
    top: 15px;
    right: 15px;
  }
}
.p-top-message__head {
  padding: 20.8vw 0 30.6666666667vw;
  text-align: center;
  background: url(../img/top/bg_intro.svg) no-repeat 50% -5.3333333333vw;
  background-size: 98.1333333333vw auto;
  position: relative;
}
@media all and (min-width: 768px) {
  .p-top-message__head {
    padding: 78px 0 115px;
    background: url(../img/top/bg_intro.svg) no-repeat 50% -20px;
    background-size: 368px auto;
  }
}
.p-top-message__head:before {
  content: "";
  background: url(../img/top/img_message_head.png) no-repeat 0 0/contain;
  width: 68.5333333333vw;
  height: 22.6666666667vw;
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media all and (min-width: 768px) {
  .p-top-message__head:before {
    background-size: 257px auto;
    width: 257px;
    height: 85px;
  }
}
.p-top-message__head__logo {
  width: 29.6vw;
  margin: auto;
}
@media all and (min-width: 768px) {
  .p-top-message__head__logo {
    width: 111px;
  }
}
.p-top-message__head__ttl {
  font-size: 6.6666666667vw;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media all and (min-width: 768px) {
  .p-top-message__head__ttl {
    font-size: 1.5625rem;
  }
}
.p-top-message__head__txt {
  margin-top: 3.2vw;
  text-box: trim-both cap alphabetic;
}
@media all and (min-width: 768px) {
  .p-top-message__head__txt {
    margin-top: 12px;
  }
}
.p-top-message__txt {
  text-align: center;
  text-box: trim-both cap alphabetic;
}
.p-top-message__txt + .p-top-message__txt {
  margin-top: 6.6666666667vw;
}
@media all and (min-width: 768px) {
  .p-top-message__txt + .p-top-message__txt {
    margin-top: 25px;
  }
}
.p-top-message__note {
  margin-top: 8vw;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, var(--white, #FFF) 16.83%, var(--white, #FFF) 84.62%, rgba(255, 255, 255, 0) 100%);
  padding: 1.3333333333vw 2.6666666667vw;
  font-size: 3.7333333333vw;
  font-weight: 400;
}
@media all and (min-width: 768px) {
  .p-top-message__note {
    margin-top: 30px;
    padding: 5px 10px;
    font-size: 0.875rem;
  }
}