@charset "UTF-8";
/*----------------------------------------
	RESET
	インラインCSSで対応する項目：box-sizing / body margin / img基本指定
-----------------------------------------*/
/* テキスト・ブロック要素の余白を初期化 */
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* リストの初期化 */
ul,
ol {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

/* 引用符の初期化 */
blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

/* フォーム要素の初期化 */
button,
input,
textarea,
select {
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 0;
}

button,
select {
  cursor: pointer;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

textarea {
  resize: vertical;
}

/* テーブルの初期化 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  font-weight: inherit;
  text-align: inherit;
}

/* 埋め込み要素 */
iframe {
  display: block;
  max-width: 100%;
  border: 0;
}

/* その他 */
address {
  font-style: normal;
}

summary {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

/* ====================
design SIZE SET
==================== */
/* ====================
header height
==================== */
/* ===================
 MIXIN
==================== */
/*----------------------------------------
	BASE
	サイト全体の基本設定
-----------------------------------------*/
:root {
  --pc-header-h: 100px;
  --sp-header-h: 60px;
  --header-height: var(--pc-header-h);
}
@media only screen and (max-width: 834px) {
  :root {
    --header-height: var(--sp-header-h);
  }
}

html {
  height: 100%;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--header-height);
}
html.is-open {
  overflow: hidden;
}

body {
  position: relative;
  width: 100%;
  min-width: 1200px;
  color: #000000;
  background: #FFFCF8;
  font-family: yakuhanjp, "Noto Sans JP", sans-serif;
  word-wrap: break-word;
  overflow-x: hidden;
  hanging-punctuation: allow-end;
  font-size: 1.6rem;
  letter-spacing: 0em;
  line-height: 2.13;
}
@media only screen and (max-width: 834px) {
  body {
    min-width: 0;
    font-size: calc(14 / 375 * 100vw);
    letter-spacing: 0em;
    line-height: 2.14;
    -ms-scroll-chaining: none;
        overscroll-behavior: none;
    -ms-touch-action: manipulation;
        touch-action: manipulation;
  }
}
body.is-open {
  overflow: hidden;
}

main {
  display: block;
}

picture,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
}

video {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  text-decoration: none;
}
@media only screen and (min-width: 835px) {
  a:hover {
    opacity: 0.7;
  }
}

@media only screen and (min-width: 835px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
input,
textarea,
select,
button {
  font-family: inherit;
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

:target {
  scroll-margin-top: var(--header-height);
}

.pc {
  display: block;
}
@media only screen and (max-width: 834px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media only screen and (max-width: 834px) {
  .sp {
    display: block !important;
  }
}

/*----------------------------------------
	MAIN
-----------------------------------------*/
.l-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  font-size: 1.2rem;
  letter-spacing: 0em;
  line-height: 1;
  text-align: center;
  color: #fff;
  background-color: #000;
  padding: 80px 0;
}
.l-footer__copy {
  font-size: 1.6rem;
  letter-spacing: 0em;
  line-height: 1.5;
}

@media only screen and (max-width: 834px) {
  .l-footer {
    gap: calc(16 / 375 * 100vw);
    font-size: calc(12 / 375 * 100vw);
    letter-spacing: 0em;
    line-height: 1;
    padding: calc(40 / 375 * 100vw) 0 calc(110 / 375 * 100vw);
  }
  .l-footer__copy {
    font-size: calc(15 / 375 * 100vw);
    letter-spacing: 0em;
    line-height: 1.6;
  }
}
/*----------------------------------------
	MAIN
-----------------------------------------*/
.l-main {
  display: block;
}

/*----------------------------------------
	COMMON
	共通幅・汎用コンテナ
-----------------------------------------*/
.c-full {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 40px;
}

.c-outer {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 40px;
}

.c-inner {
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
}

@media only screen and (max-width: 834px) {
  .c-full,
  .c-outer {
    padding-inline: calc(14 / 375 * 100vw);
  }
  .c-inner {
    padding-inline: calc(20 / 375 * 100vw);
  }
}
.c-link-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 56px;
  padding: 12px 30px;
  border: 1px solid #005cb9;
  border-radius: 999px;
  background: #005cb9;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.c-link-btn--small {
  min-height: 38px;
  padding: 8px 18px;
  font-size: 14px;
}
.c-link-btn--cta {
  min-width: 300px;
  padding-inline: 24px;
}

@media only screen and (min-width: 835px) {
  .c-link-btn:hover {
    opacity: 0.85;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
@media only screen and (max-width: 834px) {
  .c-link-btn {
    min-height: calc(48 / 375 * 100vw);
    padding: calc(10 / 375 * 100vw) calc(22 / 375 * 100vw);
    font-size: calc(15 / 375 * 100vw);
  }
  .c-link-btn--small {
    min-height: calc(34 / 375 * 100vw);
    padding: calc(8 / 375 * 100vw) calc(14 / 375 * 100vw);
    font-size: calc(12 / 375 * 100vw);
  }
  .c-link-btn--cta {
    min-width: 100%;
    padding-inline: calc(16 / 375 * 100vw);
  }
}
/*----------------------------------------
	TEXT
-----------------------------------------*/
.c-text-red {
  color: #ed1c24;
}

.c-text-blue {
  color: #0064bb;
}

.c-text-indent {
  display: block;
  text-indent: -0.5em;
  padding-left: 0.5em;
  line-height: 1.2;
}
.c-text-indent:not(:last-child) {
  margin-bottom: 0.3em;
}

/* MODAL
===================================*/
.c-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1000;
}
.c-modal__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
}
.c-modal__back {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.97);
  pointer-events: visible;
}
.c-modal-button {
  position: fixed;
  top: 50%;
  left: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: none;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 20;
}
.c-modal-button__arrow {
  display: block;
  width: 32px;
  height: 32px;
  background: #fff;
  border: none;
  pointer-events: visible;
}
.c-modal-button__arrow--prev {
  -webkit-mask-image: url("../img/common/arrow_pager_prev.svg");
          mask-image: url("../img/common/arrow_pager_prev.svg");
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: left;
          mask-position: left;
}
.c-modal-button__arrow--next {
  -webkit-mask-image: url("../img/common/arrow_pager_next.svg");
          mask-image: url("../img/common/arrow_pager_next.svg");
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: right;
          mask-position: right;
}
.c-modal-button__close {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 32px;
  height: 32px;
  background: #3C3C3C;
  border: none;
  -webkit-mask-image: url("../img/common/button_close.svg");
          mask-image: url("../img/common/button_close.svg");
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.c-modal-voice {
  position: relative;
  display: none;
  max-width: 868px;
  padding: 36px;
  background: #fff;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  z-index: 10;
  pointer-events: visible;
}
.c-modal-voice__profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 36px;
}
.c-modal-voice__profile img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 360px;
}
.c-modal-voice__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 398px;
}
.c-modal-voice__wrap:first-child {
  width: 360px;
}
.c-modal-voice__interview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 36px;
  margin-top: 38px;
}
.c-modal-voice__interview dl:nth-of-type(n+2) {
  margin-top: 25px;
}
.c-modal-voice__interview dt {
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  line-height: 1.4;
  color: #000000;
}
.c-modal-voice__text {
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  line-height: 1.62;
  margin-top: 20px;
}

@media only screen and (max-width: 834px) {
  .c-modal-button {
    position: relative;
    top: 0;
    left: 0;
    width: calc(354 / 375 * 100vw);
    height: auto;
    margin-top: calc(25 / 375 * 100vw);
    -webkit-transform: none;
            transform: none;
    z-index: 20;
  }
  .c-modal-button__arrow {
    width: calc(30 / 375 * 100vw);
    height: calc(30 / 375 * 100vw);
  }
  .c-modal-button__close {
    top: calc(2.5 / 375 * 100vw);
    right: calc(50% - 12.5 / 375 * 100vw);
    width: calc(25 / 375 * 100vw);
    height: calc(25 / 375 * 100vw);
    background: #fff;
  }
  .c-modal-voice {
    max-width: calc(354 / 375 * 100vw);
    max-height: 80vh;
    padding: calc(36 / 375 * 100vw);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    overflow: auto;
  }
  .c-modal-voice__profile {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(36 / 375 * 100vw);
  }
  .c-modal-voice__profile img {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: calc(360 / 375 * 100vw);
  }
  .c-modal-voice__wrap {
    width: 100%;
  }
  .c-modal-voice__wrap:first-child {
    width: 100%;
  }
  .c-modal-voice__interview {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(36 / 375 * 100vw);
    margin-top: calc(38 / 375 * 100vw);
  }
  .c-modal-voice__interview dl:nth-of-type(n+2) {
    margin-top: calc(36 / 375 * 100vw);
  }
  .c-modal-voice__interview dt {
    font-size: calc(15 / 375 * 100vw);
    letter-spacing: 0.03em;
    line-height: 1.4;
  }
  .c-modal-voice__text {
    font-size: calc(13 / 375 * 100vw);
    letter-spacing: 0.03em;
    line-height: 1.62;
    margin-top: calc(20 / 375 * 100vw);
  }
}
/*----------------------------------------
	HERO / FIRST VIEW
	ファーストビュー・メインビジュアル用
-----------------------------------------*/
/*----------------------------------------
	TOP
-----------------------------------------*/
.p-top__heading {
  font-size: 3rem;
  letter-spacing: 0em;
  line-height: 1.5;
  font-weight: 700;
  color: #00428a;
}
.p-top__lead {
  font-size: 1.6rem;
  letter-spacing: 0em;
  line-height: 1.5;
  margin-top: 0.5em;
}
.p-top__indent {
  font-size: 1.4rem;
  letter-spacing: 0em;
  line-height: 1.5;
  font-weight: normal;
  text-indent: -1em;
  padding-left: 1em;
}
.p-top__indent small {
  font-size: 1.2rem;
  letter-spacing: 0em;
  line-height: 1.5;
}
.p-top-hero {
  position: relative;
  overflow: hidden;
  background: #00428a;
  color: #fff;
}
.p-top-hero__fv {
  position: relative;
  padding: 80px 0 40px;
}
.p-top-hero__bg {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}
.p-top-hero__bg img {
  position: relative;
  width: 1750px;
  max-width: none;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p-top-hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/hero_back.webp) repeat center top/1305px auto;
  mix-blend-mode: multiply;
}
.p-top-hero__inner {
  position: relative;
  z-index: 1;
}
.p-top-hero__head {
  position: relative;
}
.p-top-hero__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 20px;
}
.p-top-hero__cards picture {
  width: 48.0769230769%;
}
.p-top-hero__catch {
  font-size: 2.4rem;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-align: center;
  font-weight: 700;
  color: #ff0;
  margin-top: 20px;
}
.p-top-hero__summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin-top: 32px;
}
.p-top-hero__summary img {
  width: auto;
  height: 84px;
}
.p-top-hero__entry {
  margin-left: auto;
  width: 224px;
}
.p-top-hero__deadline {
  font-size: 1.4rem;
  letter-spacing: 0em;
  line-height: 2.14;
  text-align: center;
  font-weight: 700;
  margin-bottom: 0.5em;
}
.p-top-hero__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 60px;
  font-size: 1.8rem;
  letter-spacing: 0em;
  line-height: 1;
  font-weight: 700;
  color: #00428a;
  background-color: #ff0;
  border: 1px solid #00428a;
  border-radius: 100vmax;
}
.p-top-hero__lead {
  font-size: 2rem;
  letter-spacing: 0.04em;
  line-height: 1.75;
  font-weight: 700;
  text-align: center;
  padding: 32px 0;
  background-color: #0064bb;
}
.p-top-hero__access {
  font-size: 2rem;
  letter-spacing: 0em;
  line-height: 2;
  font-weight: 700;
  text-align: center;
  color: #00428a;
  background: #d2dc00;
}
.p-top-special {
  margin-top: 80px;
}
.p-top-special__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 18px;
  padding: 30px;
  color: #fff;
  background: #0064bb;
}
.p-top-special__title {
  font-size: 2.4rem;
  letter-spacing: 0em;
  line-height: 1.5;
  font-weight: 700;
  border-bottom: 1px solid #fff;
  padding-bottom: 8px;
}
.p-top-special__title span {
  display: block;
  font-size: 1.8rem;
  letter-spacing: 0em;
  line-height: 1.5;
}
.p-top-special__speaker {
  font-size: 1.6rem;
  letter-spacing: 0em;
  line-height: 1.31;
  font-weight: 700;
  margin-top: 8px;
}
.p-top-special__name {
  font-size: 2rem;
  letter-spacing: 0em;
  line-height: 1.2;
  font-weight: 700;
  margin-top: 4px;
}
.p-top-special__name span {
  font-size: 1.4rem;
  letter-spacing: 0em;
  line-height: 1.5;
  font-weight: normal;
  margin-left: 0.5em;
}
.p-top-special__text {
  font-size: 1.2rem;
  letter-spacing: 0em;
  line-height: 1.5;
  margin-top: 4px;
}
.p-top-special__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 160px;
}
.p-top-forum {
  margin-top: 120px;
  padding: 80px 0;
  background-color: #ffffeb;
}
.p-top-forum__table {
  width: 100%;
  font-weight: 700;
  margin-top: 40px;
  background-color: #fff;
}
.p-top-forum__table th,
.p-top-forum__table td {
  padding: 16px 20px;
}
.p-top-forum__table thead {
  font-size: 1.8rem;
  letter-spacing: 0em;
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
  background: #0064bb;
}
.p-top-forum__table tbody tr {
  border-bottom: 1px solid #b3b3b3;
  border-right: 1px solid #b3b3b3;
}
.p-top-forum__table tbody th {
  width: 200px;
  font-size: 1.4rem;
  letter-spacing: 0em;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  background: #e6e6e6;
  border-right: 1px dotted #b3b3b3;
}
.p-top-forum__table tbody td {
  font-size: 1.8rem;
  letter-spacing: 0em;
  line-height: 1.5;
}
.p-top-forum__table tbody td:nth-of-type(2) {
  width: 410px;
  border-left: 1px dotted #b3b3b3;
}
.p-top-forum__table small {
  font-size: 1.4rem;
  letter-spacing: 0em;
  line-height: 1.5;
}
.p-top-forum__choice {
  text-align: center;
  border-bottom: 1px dotted #b3b3b3 !important;
}
.p-top-forum__attention {
  margin-top: 1em;
}
.p-top-forum__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  float: right;
  width: 155px;
  height: 40px;
  font-size: 1.2rem;
  letter-spacing: 0em;
  line-height: 1.08;
  font-weight: 700;
  margin-left: 100px;
  color: #fff;
  background-color: #00428a;
  border-radius: 100vmax;
}
.p-top-tour {
  background-color: #e5eff8;
  padding: 80px 0;
}
.p-top-tour__title {
  font-size: 2rem;
  letter-spacing: 0em;
  line-height: 1.35;
  font-weight: 700;
  color: #00428a;
  margin-top: 32px;
}
.p-top-tour__title small {
  font-size: 1.2rem;
  letter-spacing: 0em;
  line-height: 2.25;
  margin-left: 1em;
}
.p-top-tour__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 35px 0;
  margin-top: 16px;
}
.p-top-tour__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 49%;
}
.p-top-tour__department {
  width: 100%;
  font-size: 1.8rem;
  letter-spacing: 0em;
  line-height: 2.22;
  font-weight: 700;
  color: #fff;
  background-color: #0064bb;
  padding: 0 20px;
}
.p-top-tour__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  height: 100%;
  gap: 10px;
  margin-top: 16px;
}
.p-top-tour__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  width: 33.3333%;
}
.p-top-tour__name {
  font-size: 2rem;
  letter-spacing: 0em;
  line-height: 1.2;
  font-weight: 700;
  color: #0064bb;
}
.p-top-tour__name small {
  font-size: 1.4rem;
  letter-spacing: 0em;
  line-height: 1.71;
}
.p-top-tour__lab {
  font-size: 1.4rem;
  letter-spacing: 0em;
  line-height: 1.5;
  font-weight: 700;
}
.p-top-tour__theme {
  font-size: 1.2rem;
  letter-spacing: 0em;
  line-height: 1.5;
  margin-bottom: 1em;
}
.p-top-tour__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 40px;
  font-size: 1.2rem;
  letter-spacing: 0em;
  line-height: 1.33;
  font-weight: 700;
  color: #fff;
  margin-top: auto;
  background-color: #00428a;
  border-radius: 100vmax;
}
.p-top-report {
  padding: 80px 0;
  background-color: #e6e6e6;
}
.p-top-report__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 120px;
  height: 40px;
  font-size: 1.8rem;
  letter-spacing: 0em;
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  background-color: #fa64a5;
}
.p-top-report h2 {
  color: #000;
}
.p-top-report__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-top: 40px;
}
.p-top-report__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 33.3333%;
  font-weight: 700;
  padding: 25px 15px;
  background-color: #fff;
  border: 1px solid #fa64a5;
}
.p-top-report__school {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.8rem;
  letter-spacing: 0em;
  line-height: 1.5;
  border-bottom: 4px solid #fa64a5;
  margin: 0 auto;
  padding-bottom: 4px;
}
.p-top-report__theme {
  font-size: 2.4rem;
  letter-spacing: 0em;
  line-height: 1.5;
  margin: 16px 0;
}
.p-top-report__image {
  border-top: 3px dotted #fa64a5;
  margin-top: auto;
  padding-top: 16px;
}
.p-top-report__image img {
  width: 100%;
  height: 160px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
}
.p-top-report__lab {
  font-size: 1.6rem;
  letter-spacing: 0em;
  line-height: 1.31;
  text-align: center;
  margin-top: 8px;
}
.p-top-report__name {
  font-size: 2rem;
  letter-spacing: 0em;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
  margin: 0 -15px;
}
.p-top-report__name small {
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  line-height: 2.14;
}
.p-top-report__icon {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  margin: 0 auto;
}
.p-top-report__icon::before, .p-top-report__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: 4px;
  background-color: #fa64a5;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.p-top-report__icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.p-top-report__caption {
  font-size: 1.8rem;
  letter-spacing: 0em;
  line-height: 1.5;
  margin-top: 1em;
}
.p-top-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  padding: 80px 0;
}
.p-top-cta a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 320px;
  height: 80px;
  font-size: 2.4rem;
  letter-spacing: 0em;
  line-height: 1.25;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background-color: #0064bb;
  border-radius: 100vmax;
}
.p-top-cta a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  display: block;
  width: 24px;
  height: 24px;
  background: url(../img/icon_blank.svg) no-repeat center/contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-top-credit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  padding: 40px 0;
  font-size: 1.4rem;
  letter-spacing: 0em;
  line-height: 1.5;
  background-color: #e6e6e6;
  text-align: center;
}

@media only screen and (max-width: 834px) {
  .p-top {
    overflow: hidden;
  }
  .p-top__heading {
    font-size: calc(28 / 375 * 100vw);
    letter-spacing: 0em;
    line-height: 1.5;
  }
  .p-top__lead {
    font-size: calc(15 / 375 * 100vw);
    letter-spacing: 0em;
    line-height: 1.6;
    text-align: justify;
  }
  .p-top__indent {
    display: block;
    font-size: calc(14 / 375 * 100vw);
    letter-spacing: 0em;
    line-height: 1.5;
  }
  .p-top__indent small {
    font-size: calc(12 / 375 * 100vw);
    letter-spacing: 0em;
    line-height: 1.5;
  }
  .p-top-hero__fv {
    position: relative;
    padding: calc(40 / 375 * 100vw) 0;
  }
  .p-top-hero__bg img {
    width: calc(1024 / 375 * 100vw);
  }
  .p-top-hero__inner {
    width: 100%;
  }
  .p-top-hero__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: calc(24 / 375 * 100vw);
  }
  .p-top-hero__title {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: calc(56 / 375 * 100vw);
  }
  .p-top-hero__cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(10 / 375 * 100vw);
    margin-top: 0;
  }
  .p-top-hero__cards picture {
    width: 100%;
  }
  .p-top-hero__catch {
    font-size: calc(15 / 375 * 100vw);
    letter-spacing: 0.04em;
    line-height: 1.6;
    margin-top: calc(20 / 375 * 100vw);
  }
  .p-top-hero__summary {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: calc(10 / 375 * 100vw);
    margin-top: calc(40 / 375 * 100vw);
  }
  .p-top-hero__summary img {
    width: auto;
    height: calc(67 / 375 * 100vw);
  }
  .p-top-hero__summary img:nth-of-type(2) {
    height: calc(64 / 375 * 100vw);
  }
  .p-top-hero__entry {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    margin: 0;
    border-radius: 0;
  }
  .p-top-hero__deadline {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: calc(12 / 375 * 100vw);
    letter-spacing: 0em;
    line-height: 2.5;
    color: #00428a;
    margin-bottom: 0;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    pointer-events: none;
  }
  .p-top-hero__button {
    width: 100%;
    height: calc(65 / 375 * 100vw);
    font-size: calc(18 / 375 * 100vw);
    letter-spacing: 0em;
    line-height: 1;
    padding-bottom: calc(15 / 375 * 100vw);
    border-radius: 0;
  }
  .p-top-hero__lead {
    font-size: calc(14 / 375 * 100vw);
    letter-spacing: 0.04em;
    line-height: 1.71;
    text-align: justify;
    padding: calc(24 / 375 * 100vw);
  }
  .p-top-hero__access {
    font-size: calc(15 / 375 * 100vw);
    letter-spacing: 0em;
    line-height: 1.6;
    padding: calc(24 / 375 * 100vw);
  }
  .p-top-special {
    margin-top: calc(40 / 375 * 100vw);
  }
  .p-top-special__box {
    padding: calc(24 / 375 * 100vw);
  }
  .p-top-special__title {
    font-size: calc(24 / 375 * 100vw);
    letter-spacing: 0em;
    line-height: 1.5;
    padding-bottom: calc(8 / 375 * 100vw);
  }
  .p-top-special__title span {
    font-size: calc(18 / 375 * 100vw);
    letter-spacing: 0em;
    line-height: 1.5;
  }
  .p-top-special__speaker {
    font-size: calc(16 / 375 * 100vw);
    letter-spacing: 0em;
    line-height: 1.31;
    margin-top: calc(8 / 375 * 100vw);
  }
  .p-top-special__name {
    font-size: calc(20 / 375 * 100vw);
    letter-spacing: 0em;
    line-height: 1.2;
    margin-top: calc(4 / 375 * 100vw);
  }
  .p-top-special__name span {
    font-size: calc(14 / 375 * 100vw);
    letter-spacing: 0em;
    line-height: 1.5;
    margin-left: 0.5em;
  }
  .p-top-special__text {
    font-size: calc(12 / 375 * 100vw);
    letter-spacing: 0em;
    line-height: 1.5;
    margin-top: calc(4 / 375 * 100vw);
  }
  .p-top-special__image {
    width: calc(160 / 375 * 100vw);
    margin: calc(8 / 375 * 100vw) auto;
  }
  .p-top-forum {
    margin-top: calc(40 / 375 * 100vw);
    padding: calc(40 / 375 * 100vw) 0;
  }
  .p-top-forum__table {
    margin-top: calc(32 / 375 * 100vw);
  }
  .p-top-forum__table th,
  .p-top-forum__table td {
    padding: calc(10 / 375 * 100vw);
  }
  .p-top-forum__table thead {
    font-size: calc(18 / 375 * 100vw);
    letter-spacing: 0em;
    line-height: 1.5;
  }
  .p-top-forum__table thead th {
    padding-left: calc(20 / 375 * 100vw);
  }
  .p-top-forum__table tbody th {
    width: calc(80 / 375 * 100vw);
    min-width: calc(80 / 375 * 100vw);
    font-size: calc(14 / 375 * 100vw);
    letter-spacing: 0em;
    line-height: 1.5;
    white-space: nowrap;
  }
  .p-top-forum__table tbody td {
    font-size: calc(15 / 375 * 100vw);
    letter-spacing: 0em;
    line-height: 1.6;
  }
  .p-top-forum__table tbody td:nth-of-type(2) {
    width: calc(175 / 375 * 100vw);
  }
  .p-top-forum__table small {
    font-size: calc(14 / 375 * 100vw);
    letter-spacing: 0em;
    line-height: 1.5;
  }
  .p-top-forum__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    float: none;
    width: calc(155 / 375 * 100vw);
    height: calc(40 / 375 * 100vw);
    font-size: calc(12 / 375 * 100vw);
    letter-spacing: 0em;
    line-height: 1.08;
    margin: calc(10 / 375 * 100vw) 0 0;
  }
  .p-top-tour {
    padding: calc(40 / 375 * 100vw) 0;
  }
  .p-top-tour__title {
    font-size: calc(20 / 375 * 100vw);
    letter-spacing: 0em;
    line-height: 1.35;
    margin-top: calc(32 / 375 * 100vw);
  }
  .p-top-tour__title small {
    font-size: calc(12 / 375 * 100vw);
    letter-spacing: 0em;
    line-height: 2.25;
  }
  .p-top-tour__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(32 / 375 * 100vw) 0;
    margin-top: calc(16 / 375 * 100vw);
  }
  .p-top-tour__group {
    width: 100%;
  }
  .p-top-tour__department {
    font-size: calc(18 / 375 * 100vw);
    letter-spacing: 0em;
    line-height: 2.22;
    padding: 0 calc(20 / 375 * 100vw);
  }
  .p-top-tour__inner {
    gap: calc(10 / 375 * 100vw);
    margin-top: calc(16 / 375 * 100vw);
  }
  .p-top-tour__card {
    gap: calc(8 / 375 * 100vw);
  }
  .p-top-tour__name {
    font-size: calc(15 / 375 * 100vw);
    letter-spacing: 0em;
    line-height: 1.6;
  }
  .p-top-tour__name small {
    font-size: calc(12 / 375 * 100vw);
    letter-spacing: 0em;
    line-height: 2;
  }
  .p-top-tour__lab {
    font-size: calc(12 / 375 * 100vw);
    letter-spacing: 0em;
    line-height: 1.5;
  }
  .p-top-tour__theme {
    font-size: calc(12 / 375 * 100vw);
    letter-spacing: 0em;
    line-height: 1.5;
  }
  .p-top-tour__button {
    height: calc(40 / 375 * 100vw);
    font-size: calc(12 / 375 * 100vw);
    letter-spacing: 0em;
    line-height: 1.33;
  }
  .p-top-report {
    padding: calc(40 / 375 * 100vw) 0;
  }
  .p-top-report__tag {
    width: calc(120 / 375 * 100vw);
    height: calc(40 / 375 * 100vw);
    font-size: calc(12 / 375 * 100vw);
    letter-spacing: 0em;
    line-height: 2.25;
    margin-bottom: calc(8 / 375 * 100vw);
  }
  .p-top-report__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(16 / 375 * 100vw);
    margin-top: calc(40 / 375 * 100vw);
  }
  .p-top-report__card {
    width: 100%;
    padding: calc(25 / 375 * 100vw) calc(15 / 375 * 100vw);
  }
  .p-top-report__school {
    font-size: calc(18 / 375 * 100vw);
    letter-spacing: 0em;
    line-height: 1.5;
    border-bottom: 4px solid #fa64a5;
    padding-bottom: calc(4 / 375 * 100vw);
  }
  .p-top-report__theme {
    font-size: calc(24 / 375 * 100vw);
    letter-spacing: 0em;
    line-height: 1.5;
    margin: calc(16 / 375 * 100vw) 0;
  }
  .p-top-report__image {
    padding-top: calc(16 / 375 * 100vw);
  }
  .p-top-report__image img {
    height: calc(160 / 375 * 100vw);
  }
  .p-top-report__lab {
    font-size: calc(16 / 375 * 100vw);
    letter-spacing: 0em;
    line-height: 1.31;
    margin-top: calc(8 / 375 * 100vw);
  }
  .p-top-report__name {
    font-size: calc(20 / 375 * 100vw);
    letter-spacing: 0em;
    line-height: 1.5;
    margin: 0 calc(-15 / 375 * 100vw);
  }
  .p-top-report__name small {
    font-size: calc(14 / 375 * 100vw);
    letter-spacing: -0.01em;
    line-height: 2.14;
  }
  .p-top-report__icon {
    width: calc(30 / 375 * 100vw);
    height: calc(30 / 375 * 100vw);
  }
  .p-top-report__icon::before, .p-top-report__icon::after {
    content: "";
    height: calc(4 / 375 * 100vw);
  }
  .p-top-report__caption {
    font-size: calc(18 / 375 * 100vw);
    letter-spacing: 0em;
    line-height: 1.5;
  }
  .p-top-cta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(20 / 375 * 100vw);
    padding: calc(40 / 375 * 100vw) 0;
  }
  .p-top-cta a {
    width: calc(320 / 375 * 100vw);
    height: calc(80 / 375 * 100vw);
    font-size: calc(24 / 375 * 100vw);
    letter-spacing: 0em;
    line-height: 1.25;
  }
  .p-top-cta a::after {
    right: calc(16 / 375 * 100vw);
    width: calc(24 / 375 * 100vw);
    height: calc(24 / 375 * 100vw);
  }
  .p-top-credit {
    gap: calc(20 / 375 * 100vw);
    padding: calc(40 / 375 * 100vw) 0;
    font-size: calc(15 / 375 * 100vw);
    letter-spacing: 0em;
    line-height: 1.6;
  }
}
/*----------------------------------------
	UTILITY
-----------------------------------------*/
/* 画面には見せず、読み上げソフトには伝えるための非表示クラス */
.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

/*----------------------------------------
	ANIMATION
-----------------------------------------*/
/* JS発火前はアニメーションを止める */
.u-inview {
  -webkit-animation: none !important;
          animation: none !important;
}
.u-inview > img {
  -webkit-animation: none !important;
          animation: none !important;
}

/* 動きが苦手なユーザー設定に合わせて、アニメーションやスクロール演出を抑える */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .u-inview,
  .is-animated {
    opacity: 1 !important;
    -webkit-transform: none !important;
            transform: none !important;
    -webkit-animation: none !important;
            animation: none !important;
  }
  .u-inview > img,
  .is-animated > img {
    opacity: 1 !important;
    -webkit-transform: none !important;
            transform: none !important;
    -webkit-animation: none !important;
            animation: none !important;
  }
}
/* フェード・移動 */
.u-fade-in {
  opacity: 0;
  -webkit-animation: animate-transform 0.8s forwards;
          animation: animate-transform 0.8s forwards;
}
.u-fade-up {
  opacity: 0;
  -webkit-transform: translate(0, 25px);
          transform: translate(0, 25px);
  -webkit-animation: animate-transform 0.8s forwards;
          animation: animate-transform 0.8s forwards;
}
.u-fade-down {
  opacity: 0;
  -webkit-transform: translate(0, -50px);
          transform: translate(0, -50px);
  -webkit-animation: animate-transform 0.8s forwards;
          animation: animate-transform 0.8s forwards;
}
.u-fade-left {
  opacity: 0;
  -webkit-transform: translate(-50px, 0);
          transform: translate(-50px, 0);
  -webkit-animation: animate-transform 0.8s forwards;
          animation: animate-transform 0.8s forwards;
}
.u-fade-right {
  opacity: 0;
  -webkit-transform: translate(50px, 0);
          transform: translate(50px, 0);
  -webkit-animation: animate-transform 0.8s forwards;
          animation: animate-transform 0.8s forwards;
}

/* 画像ズーム */
.u-image-in, .u-image-out {
  display: block;
  overflow: hidden;
}
.u-image-in img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-animation: animate-transform 2s ease-in-out forwards;
          animation: animate-transform 2s ease-in-out forwards;
}
.u-image-out img {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-animation: animate-transform 2s ease-in-out forwards;
          animation: animate-transform 2s ease-in-out forwards;
}

/* マスク表示 */
.u-mask-up {
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(33%, transparent), color-stop(50%, black));
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent 33%, black 50%);
          mask-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(33%, transparent), color-stop(50%, black));
          mask-image: linear-gradient(to bottom, transparent 0%, transparent 33%, black 50%);
  -webkit-mask-size: 100% 300%;
          mask-size: 100% 300%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: top;
          mask-position: top;
  -webkit-animation: animate-mask-up 1s ease-out forwards;
          animation: animate-mask-up 1s ease-out forwards;
  will-change: mask-position;
}
.u-mask-down {
  -webkit-mask-image: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(33%, transparent), color-stop(50%, black));
  -webkit-mask-image: linear-gradient(to top, transparent 0%, transparent 33%, black 50%);
          mask-image: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(33%, transparent), color-stop(50%, black));
          mask-image: linear-gradient(to top, transparent 0%, transparent 33%, black 50%);
  -webkit-mask-size: 100% 300%;
          mask-size: 100% 300%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: bottom;
          mask-position: bottom;
  -webkit-animation: animate-mask-down 1s ease-out forwards;
          animation: animate-mask-down 1s ease-out forwards;
  will-change: mask-position;
}
.u-mask-left {
  -webkit-mask-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(33%, transparent), color-stop(50%, black));
  -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 33%, black 50%);
          mask-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(33%, transparent), color-stop(50%, black));
          mask-image: linear-gradient(to right, transparent 0%, transparent 33%, black 50%);
  -webkit-mask-size: 300% 100%;
          mask-size: 300% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: left;
          mask-position: left;
  -webkit-animation: animate-mask-left 1s ease-out forwards;
          animation: animate-mask-left 1s ease-out forwards;
  will-change: mask-position;
}
.u-mask-right {
  -webkit-mask-image: -webkit-gradient(linear, right top, left top, from(transparent), color-stop(33%, transparent), color-stop(50%, black));
  -webkit-mask-image: linear-gradient(to left, transparent 0%, transparent 33%, black 50%);
          mask-image: -webkit-gradient(linear, right top, left top, from(transparent), color-stop(33%, transparent), color-stop(50%, black));
          mask-image: linear-gradient(to left, transparent 0%, transparent 33%, black 50%);
  -webkit-mask-size: 300% 100%;
          mask-size: 300% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: right;
          mask-position: right;
  -webkit-animation: animate-mask-right 1s ease-out forwards;
          animation: animate-mask-right 1s ease-out forwards;
  will-change: mask-position;
}

@media only screen and (max-width: 834px) {
  .u-mask-down-sp {
    -webkit-mask-image: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(33%, transparent), color-stop(50%, black));
    -webkit-mask-image: linear-gradient(to top, transparent 0%, transparent 33%, black 50%);
            mask-image: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(33%, transparent), color-stop(50%, black));
            mask-image: linear-gradient(to top, transparent 0%, transparent 33%, black 50%);
    -webkit-mask-size: 100% 300%;
            mask-size: 100% 300%;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: bottom;
            mask-position: bottom;
    -webkit-animation: animate-mask-down 1s ease-out forwards;
            animation: animate-mask-down 1s ease-out forwards;
    will-change: mask-position;
  }
}
/* 回転 */
.u-rotate-x {
  -webkit-animation: animate-rotate 8s forwards;
          animation: animate-rotate 8s forwards;
}
.u-rotate-center {
  -webkit-animation: animate-rotate-center 8s forwards;
          animation: animate-rotate-center 8s forwards;
}

/* スライドイン */
.u-slide-in {
  -webkit-animation: animate-slide-in 0.4s linear forwards;
          animation: animate-slide-in 0.4s linear forwards;
}

/* 滑らかに変形して出現 */
.u-smooth {
  opacity: 0;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-animation: animate-smooth 1s forwards;
          animation: animate-smooth 1s forwards;
}

@-webkit-keyframes animate-transform {
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes animate-transform {
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@-webkit-keyframes animate-mask-up {
  to {
    -webkit-mask-position: bottom;
            mask-position: bottom;
  }
}
@keyframes animate-mask-up {
  to {
    -webkit-mask-position: bottom;
            mask-position: bottom;
  }
}
@-webkit-keyframes animate-mask-down {
  to {
    -webkit-mask-position: top;
            mask-position: top;
  }
}
@keyframes animate-mask-down {
  to {
    -webkit-mask-position: top;
            mask-position: top;
  }
}
@-webkit-keyframes animate-mask-left {
  to {
    -webkit-mask-position: right;
            mask-position: right;
  }
}
@keyframes animate-mask-left {
  to {
    -webkit-mask-position: right;
            mask-position: right;
  }
}
@-webkit-keyframes animate-mask-right {
  to {
    -webkit-mask-position: left;
            mask-position: left;
  }
}
@keyframes animate-mask-right {
  to {
    -webkit-mask-position: left;
            mask-position: left;
  }
}
@-webkit-keyframes animate-rotate {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes animate-rotate {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes animate-rotate-center {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes animate-rotate-center {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}
@-webkit-keyframes animate-slide-in {
  from {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0);
  }
  to {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes animate-slide-in {
  from {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0);
  }
  to {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@-webkit-keyframes animate-smooth {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0) skewY(12deg);
            transform: translate3d(0, 100%, 0) skewY(12deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) skewY(0);
            transform: translate3d(0, 0, 0) skewY(0);
  }
}
@keyframes animate-smooth {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0) skewY(12deg);
            transform: translate3d(0, 100%, 0) skewY(12deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) skewY(0);
            transform: translate3d(0, 0, 0) skewY(0);
  }
}