@charset "UTF-8";
/*----------------------------------------------------
リセット
--------------------------------------------------- */
/*reset*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(button) {
  border-style: solid;
}

:where(a) {
  color: inherit;
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) {
  outline: 3px solid Highlight;
  outline-offset: 2px;
  scroll-margin-block: 10vh;
  z-index: 2;
}

:where(.visually-hidden:not(:focus-within, :active)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

figure {
  margin-bottom: 0;
}

/*----------------------------------------------------
変数・計算式など
--------------------------------------------------- */
:root {
  --blue-01: rgb(11, 139, 238);
  --white-01: rgb(255, 255, 255);
  --black-01: rgb(0, 0, 0);
  --red-01: rgb(255, 0, 0, 1);
}

/*----------------------------------------------------
メイン
--------------------------------------------------- */
/*----------------------------------------------------
変数・計算式など
--------------------------------------------------- */
@font-face {
  font-family: "tiempos-text-regular";
  /*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*/
  src: url("../font/tiempos-text-regular.woff2") format("woff"), url("../font/TiemposText-Regular.otf") format("opentype");
}
@font-face {
  font-family: "tiempos-text-regular-italic";
  /*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*/
  src: url("../font/tiempos-text-regular-italic.woff2") format("woff"), url("../font/TiemposText-RegularItalic.otf") format("opentype");
}
@font-face {
  font-family: "tiempos-headline-regular";
  /*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*/
  src: url("../font/tiempos-headline-regular.woff2") format("woff"), url("../font/TiemposHeadline-Regular.otf") format("opentype");
}
@font-face {
  font-family: "tiempos-text-semibold";
  /*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*/
  src: url("../font/tiempos-text-semibold.woff2") format("woff"), url("../font/TiemposHeadline-Semibold.otf") format("opentype");
}
@font-face {
  font-family: "tiempos-text-semibold-italic";
  /*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*/
  src: url("../font/tiempos-text-semibold-italic.woff2") format("woff"), url("../font/TiemposHeadline-SemiboldItalic.otf") format("opentype");
}
.grecaptcha-badge {
  visibility: hidden;
  opacity: 0;
}

html {
  font-size: 16px;
}

html,
body {
  font-family: "tiempos-text-regular", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", sans-serif;
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0em;
  font-style: normal;
  color: #fff;
  background: #000;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  min-height: 100%;
  transition: all 1s 0s ease;
}

body.modal_open {
  overflow: hidden;
}
body.night_view {
  background: #261f1e;
}
body.lang-jp .lang_jp {
  display: block;
}
body.lang-jp .lang_en {
  display: none;
}
body.lang-en .lang_jp {
  display: none;
}
body.lang-en .lang_en {
  display: block;
}

.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

@media only screen and (max-width: 896px) {
  html,
  body {
    cursor: auto;
  }
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
  body.page {
    padding-top: 0vw;
  }
}
img {
  width: 100%;
  height: auto;
}

/*----------------------------------------------------
 swiper
--------------------------------------------------- */
.swiper-wrapper {
  transition-timing-function: ease;
}

/*----------------------------------------------------
 link
--------------------------------------------------- */
a:link, a:visited, a:active {
  color: #987659;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
a:hover {
  text-decoration: none;
}

/*----------------------------------------------------
  .fade_up
--------------------------------------------------- */
.fade_up {
  opacity: 0;
  transform: scale(1, 1) translate(0%, 10px);
}

.fade_up.js-fade_up_view {
  opacity: 1;
  transition: all 0.6s 0.1s ease;
  transform: scale(1, 1) translate(0%, 0%);
}

/*----------------------------------------------------
  .lazyload
--------------------------------------------------- */
.lazyload_set span {
  opacity: 0;
}
.lazyload_set span.lazyloaded {
  opacity: 1;
  transition: all 0.5s 0s ease;
}

.grade_bg {
  background: linear-gradient(90deg, #ffd900 0%, #ffef3f 7%, #c7dc68 14%, #68be8d 21%, #239dda 28%, #5a79ba 35%, #9079ad 42%, #e7609e 49%, #e95464 56%, #ed6d3d 70%, #f49d43 77%, #ffd900 100%);
  background-size: 500% 500%;
  animation-name: gradation_bg;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-timing-function: linear;
}

@keyframes gradation_bg {
  0% {
    background-position: 250% 250%;
  }
  100% {
    background-position: 0% 0%;
  }
}
/*----------------------------------------------------
  .wrapper
--------------------------------------------------- */
.wrapper {
  position: relative;
}
/*----------------------------------------------------
 block_header
--------------------------------------------------- */
.block_header {
  z-index: 20;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 130px;
  transition: all 0.5s 0s ease;
  pointer-events: none;
}
.block_header .logo {
  position: absolute;
  width: 133px;
  top: 32px;
  left: 4vw;
  pointer-events: auto;
}
@media (max-width: 896px) {
  .block_header .logo {
    top: 5vw;
    left: 5vw;
    width: 101px;
  }
}
.block_header .logo a {
  display: block;
}
.block_header .logo a svg {
  fill: #fff;
  transition: all 0.5s 0s ease;
}
.block_header ul.lang {
  position: absolute;
  top: 42px;
  right: 150px;
  right: -webkit-calc(4vw + 120px);
  right: calc(4vw + 120px);
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
  line-height: 1;
  pointer-events: auto;
}
@media (max-width: 896px) {
  .block_header ul.lang {
    display: none;
  }
}
.block_header ul.lang li {
  color: #fff;
  display: inline-block;
  transition: all 0.5s 0s ease;
}
.block_header ul.lang li a {
  display: inline-block;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  padding-bottom: 2px;
  transition: all 0.5s 0s ease;
}
.block_header ul.lang li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: #fff;
  transition: all 0.5s 0s ease;
}
.block_header ul.lang li a.active::after {
  width: 100%;
}
.block_header ul.lang li a:hover::after {
  width: 100%;
}
.block_header ul.lang li:first-child::after {
  display: inline-block;
  content: "/";
  font-size: 16px;
  font-weight: 400;
  margin-left: 4px;
  margin-right: 4px;
}
.block_header .contact {
  position: absolute;
  top: 32px;
  right: 4vw;
  line-height: 1;
  pointer-events: auto;
}
@media (max-width: 896px) {
  .block_header .contact {
    display: none;
  }
}
.block_header .contact a {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  width: 92px;
  height: 32px;
  border: 1px #fff solid;
  border-radius: 10px;
  color: #fff;
  transition: all 0.5s 0s ease;
}
.block_header .contact a:hover {
  background: #fff;
  color: #000;
}
.block_header .contact a:hover span.be::before {
  opacity: 1;
  transform: translate3d(0, -130%, 0);
}
.block_header .contact a:hover span.t {
  opacity: 0;
  transform: translate3d(0, -130%, 0);
}
.block_header .contact a span.be {
  display: block;
  position: relative;
  -webkit-clip-path: inset(0 0 -0.2em);
  clip-path: inset(0 0 -0.2em);
  font-weight: 400;
  letter-spacing: 0.02em;
  font-size: 16px;
}
.block_header .contact a span.be::before {
  transition: opacity 650ms, transform 650ms cubic-bezier(0.165, 0.84, 0.44, 1);
  content: attr(data-text);
  position: absolute;
  top: 130%;
  left: 0;
  opacity: 0;
}
.block_header .contact a span.be span.t {
  display: block;
  transition: opacity 650ms, transform 650ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
body.h_white .block_header .logo a svg,
body.page .block_header .logo a svg {
  fill: #000;
}
body.h_white .block_header ul.lang li,
body.page .block_header ul.lang li {
  color: #000;
}
body.h_white .block_header ul.lang li a,
body.page .block_header ul.lang li a {
  color: #000;
}
body.h_white .block_header ul.lang li a::after,
body.page .block_header ul.lang li a::after {
  background: #000;
}
body.h_white .block_header .contact a,
body.page .block_header .contact a {
  border: 1px #000 solid;
  color: #000;
}
body.h_white .block_header .contact a:hover,
body.page .block_header .contact a:hover {
  background: #000;
  color: #fff;
}

body.h_white .block_header .logo a svg,
body.article .block_header .logo a svg {
  fill: #000;
}
body.h_white .block_header ul.lang li,
body.article .block_header ul.lang li {
  color: #000;
}
body.h_white .block_header ul.lang li a,
body.article .block_header ul.lang li a {
  color: #000;
}
body.h_white .block_header ul.lang li a::after,
body.article .block_header ul.lang li a::after {
  background: #000;
}
body.h_white .block_header .contact a,
body.article .block_header .contact a {
  border: 1px #000 solid;
  color: #000;
}
body.h_white .block_header .contact a:hover,
body.article .block_header .contact a:hover {
  background: #000;
  color: #fff;
}

/*----------------------------------------------------
  .sp_menu
--------------------------------------------------- */
.block_navi {
  display: none;
}
@media (max-width: 896px) {
  .block_navi {
    display: block;
  }
}
.block_navi a {
  position: fixed;
  z-index: 110;
  top: 5vw;
  right: 0px;
  width: 80px;
  height: 24px;
  transition: all 0.4s 0s ease;
}
.block_navi a i {
  display: none;
}
.block_navi a .wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 24px;
  margin-top: -16px;
  margin-left: -12px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s 0s ease;
  pointer-events: auto;
}
.block_navi a .wrap span {
  position: absolute;
  top: 50%;
  left: 50%;
  background: #000;
  transform-origin: center center;
}
.block_navi a .wrap span.l1 {
  width: 12px;
  height: 1px;
  margin-top: -2px;
  margin-left: -6px;
}
.block_navi a .wrap span.l2 {
  width: 12px;
  height: 1px;
  margin-top: 2px;
  margin-left: -6px;
}
body.menu_open .block_navi a span.l1 {
  margin-top: 0px;
  transform: scale3d(1, 1, 1) translate(0px, 0px) rotate(45deg);
}
body.menu_open .block_navi a span.l2 {
  margin-top: 0px;
  transform: scale3d(1, 1, 1) translate(0px, 0px) rotate(-45deg);
}

body.h_white .block_navi a .wrap,
body.page .block_navi a .wrap {
  background: #000;
}
body.h_white .block_navi a .wrap span,
body.page .block_navi a .wrap span {
  background: #fff;
}

body.h_white .block_navi a .wrap,
body.article .block_navi a .wrap {
  background: #000;
}
body.h_white .block_navi a .wrap span,
body.article .block_navi a .wrap span {
  background: #fff;
}

/*----------------------------------------------------
  .block_sp_menu
--------------------------------------------------- */
.menu_bg {
  display: block;
  position: fixed;
  top: 0%;
  right: 0px;
  width: 100%;
  height: 100%;
  z-index: 5;
  opacity: 0;
  background: rgba(0, 0, 0, 0.8);
  visibility: hidden;
  transition: all 0s 0s ease;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
body.menu_open .menu_bg {
  opacity: 1;
  visibility: visible;
  transform: translate(0%, 0%);
}

.block_sp_menu {
  display: block;
  position: fixed;
  top: 0%;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 100;
  transition: all 0.5s 0s ease;
  opacity: 0;
  visibility: hidden;
  transform: translate(0%, 0px);
  background: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
body.menu_open .block_sp_menu {
  opacity: 1;
  visibility: visible;
  transform: translate(0%, 0px);
}

.block_sp_menu .logo {
  position: absolute;
  top: 5vw;
  left: 5vw;
  width: 101px;
}
.block_sp_menu .logo a {
  display: block;
}
.block_sp_menu .logo a svg {
  fill: #000;
  transition: all 0.5s 0s ease;
}
.block_sp_menu .inner {
  position: absolute;
  top: 50%;
  left: 4vw;
  width: 92vw;
  transform: translate(0%, -50%);
}
.block_sp_menu .inner ul.lang {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: flex-start; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
  line-height: 1;
  margin-bottom: 2.5vh;
  transform: translate(20px, 0px);
  opacity: 0;
}
body.menu_open .block_sp_menu .inner ul.lang {
  transform: translate(0px, 0px);
  opacity: 1;
  transition: all 0.5s 0.3s ease;
}

.block_sp_menu .inner ul.lang li {
  color: #000;
  display: inline-block;
  transition: all 0.5s 0s ease;
}
.block_sp_menu .inner ul.lang li a {
  display: inline-block;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  padding-bottom: 2px;
  transition: all 0.5s 0s ease;
}
.block_sp_menu .inner ul.lang li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: #000;
  transition: all 0.5s 0s ease;
}
.block_sp_menu .inner ul.lang li a.active::after {
  width: 100%;
}
.block_sp_menu .inner ul.lang li a:hover::after {
  width: 100%;
}
.block_sp_menu .inner ul.lang li:first-child::after {
  display: inline-block;
  content: "/";
  font-size: 16px;
  font-weight: 400;
  margin-left: 10px;
  margin-right: 10px;
}
.block_sp_menu .inner ul.menu li {
  transform: translate(20px, 0px);
  opacity: 0;
}
body.menu_open .block_sp_menu .inner ul.menu li {
  transform: translate(0px, 0px);
  opacity: 1;
}

body.menu_open .block_sp_menu .inner ul.menu li:nth-child(1) {
  transition: all 0.5s 0.35s ease;
}

body.menu_open .block_sp_menu .inner ul.menu li:nth-child(2) {
  transition: all 0.5s 0.4s ease;
}

body.menu_open .block_sp_menu .inner ul.menu li:nth-child(3) {
  transition: all 0.5s 0.45s ease;
}

body.menu_open .block_sp_menu .inner ul.menu li:nth-child(4) {
  transition: all 0.5s 0.5s ease;
}

body.menu_open .block_sp_menu .inner ul.menu li:nth-child(5) {
  transition: all 0.5s 0.55s ease;
}

body.menu_open .block_sp_menu .inner ul.menu li:nth-child(6) {
  transition: all 0.5s 0.6s ease;
}

body.menu_open .block_sp_menu .inner ul.menu li:nth-child(7) {
  transition: all 0.5s 0.65s ease;
}

body.menu_open .block_sp_menu .inner ul.menu li:nth-child(8) {
  transition: all 0.5s 0.7s ease;
}

.block_sp_menu .inner ul.menu li a {
  font-family: "tiempos-headline-regular", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", sans-serif;
  color: #000;
  font-size: 12.5vw;
  font-size: 6.2vh;
  line-height: 13.75vw;
  line-height: 6.8vh;
}
.block_sp_menu .bottom {
  position: absolute;
  bottom: 4vw;
  left: 4vw;
  width: 107px;
  z-index: 2;
}
.block_sp_menu .bottom svg {
  fill: #000;
  transition: all 0.5s 0s ease;
}

/*----------------------------------------------------
 block_loading
--------------------------------------------------- */
.block_loading {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 40;
  background: #000;
}
@media (max-width: 896px) {
  .block_loading {
    height: 100%;
  }
}
body.pageLoad .block_loading {
  transition: all 0.6s 2s cubic-bezier(0.83, 0, 0.17, 1);
  visibility: hidden;
  opacity: 0;
}

.block_loading svg {
  fill: #fff;
}
.block_loading .t_area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
@media (max-width: 896px) {
  .block_loading .t_area {
    height: 100%;
  }
}
body.pageLoad .block_loading .t_area {
  transition: all 0.6s 2s cubic-bezier(0.83, 0, 0.17, 1);
  opacity: 0;
  transform: scale3d(1, 1, 1) translate(0px, -40px);
}

.block_loading .t01 {
  position: absolute;
  bottom: 2vw;
  left: 30vw;
  width: 66.5vw;
  opacity: 0;
}
body.pageLoad .block_loading .t01 {
  bottom: 17vw;
  opacity: 1;
  transition: all 0.8s 0.1s cubic-bezier(0.83, 0, 0.17, 1);
}

.block_loading .t01 span {
  display: block;
  position: relative;
  left: 0;
}
body.pageLoad .block_loading .t01 span {
  left: -28vw;
  transition: all 0.6s 0.9s cubic-bezier(0.83, 0, 0.17, 1);
}

.block_loading .t02 {
  position: absolute;
  bottom: 17vw;
  left: 2vw;
  width: 20vw;
  opacity: 0;
}
body.pageLoad .block_loading .t02 {
  bottom: 17vw;
  bottom: 2vw;
  opacity: 1;
  transition: all 0.8s 0.1s cubic-bezier(0.83, 0, 0.17, 1);
}

.block_loading .t02 span {
  display: block;
  position: relative;
  left: 0;
}
body.pageLoad .block_loading .t02 span {
  left: 14.3vw;
  transition: all 0.6s 0.9s cubic-bezier(0.83, 0, 0.17, 1);
}

.block_loading .t03 {
  position: absolute;
  bottom: 2vw;
  left: 44.8vw;
  width: 51.8vw;
}
.block_loading .t03 span {
  display: block;
  position: relative;
  left: -14.3vw;
  opacity: 0;
}
body.pageLoad .block_loading .t03 span {
  left: 0vw;
  opacity: 1;
  transition: all 0.6s 0.9s cubic-bezier(0.83, 0, 0.17, 1);
}

/*----------------------------------------------------
 block_side
--------------------------------------------------- */
.block_side {
  position: fixed;
  bottom: 2vw;
  left: 4vw;
  width: 107px;
  z-index: 4;
  opacity: 0;
  transform: scale(1, 1) translate(0%, 40px);
}
@media (max-width: 896px) {
  .block_side {
    bottom: 4vw;
  }
}
body.pageLoad .block_side {
  transition: all 0.6s 2.05s cubic-bezier(0.83, 0, 0.17, 1);
  opacity: 1;
  transform: scale(1, 1) translate(0%, 0px);
}

.block_side svg {
  fill: #fff;
  transition: all 0.5s 0s ease;
}
body.h_white .block_side svg,
body.page .block_side svg {
  fill: #000;
}

/*----------------------------------------------------
 block_mainvisual
--------------------------------------------------- */
.block_mainvisual {
  position: relative;
  height: 100vh;
  margin-bottom: 80px;
}
@media (max-width: 896px) {
  .block_mainvisual {
    border: 6px #000 solid;
    box-sizing: border-box;
  }
}
.block_mainvisual .copy {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  transform: scale(1, 1) translate(0%, -50%);
  font-size: 120px;
  font-size: 6.25vw;
  font-weight: 400;
  line-height: 1.05;
  font-family: "tiempos-headline-regular", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", sans-serif;
  letter-spacing: -0.02em;
}
@media (max-width: 896px) {
  .block_mainvisual .copy {
    font-size: 12.5vw;
  }
}
.block_mainvisual .copy span {
  display: block;
  opacity: 0;
  transform: scale(1, 1) translate(0%, 40px);
}
body.pageLoad .block_mainvisual .copy span {
  transition: all 0.6s 2.05s cubic-bezier(0.83, 0, 0.17, 1);
  opacity: 1;
  transform: scale(1, 1) translate(0%, 0px);
}

.block_mainvisual .start {
  position: absolute;
  top: 29px;
  left: 50%;
  line-height: 1;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
@media (max-width: 896px) {
  .block_mainvisual .start {
    display: none;
  }
}
.block_mainvisual .start span {
  display: block;
  font-size: 16px;
  font-family: "tiempos-text-semibold";
  letter-spacing: 0.02em;
  padding-top: 4px;
}
.block_mainvisual .movie_area {
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: absolute; /* fixed の場合。absolute でも同じ */
  right: 0;
  top: 0;
}
.block_mainvisual .movie_area iframe {
  box-sizing: border-box;
  height: 51.56vw; /* 16:9 の高さなので 56.25% (= 9 ÷ 16) */
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  top: 49.999%;
  transform: translate(-50%, -50%);
  width: 193.935119887vh; /* 16:9 の幅なので 177.77% (= 16 ÷ 9) */
}

/*----------------------------------------------------
 block_page_navi
--------------------------------------------------- */
.block_page_navi {
  position: sticky;
  top: 33px;
  left: 0%;
  width: 700px;
  margin: 0 auto;
  padding-bottom: 100px;
  z-index: 25;
}
@media (max-width: 896px) {
  .block_page_navi {
    display: none;
  }
}
.block_page_navi ul {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
}
.block_page_navi ul li {
  margin: 0 4px;
}
.block_page_navi ul li a {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  padding: 0px 16px;
  border: 1px #fff solid;
  height: 32px;
  color: #fff;
  border-radius: 8px;
  transition: all 0.5s 0s ease;
}
.block_page_navi ul li a:hover {
  background: #fff;
  color: #000;
}
.block_page_navi ul li a:hover span.be::before {
  opacity: 1;
  transform: translate3d(0, -130%, 0);
}
.block_page_navi ul li a:hover span.t {
  opacity: 0;
  transform: translate3d(0, -130%, 0);
}
.block_page_navi ul li a span.be {
  display: block;
  position: relative;
  -webkit-clip-path: inset(0 0 -0.2em);
  clip-path: inset(0 0 -0.2em);
  font-weight: 400;
  letter-spacing: 0.02em;
  font-size: 16px;
}
.block_page_navi ul li a span.be::before {
  transition: opacity 650ms, transform 650ms cubic-bezier(0.165, 0.84, 0.44, 1);
  content: attr(data-text);
  position: absolute;
  top: 130%;
  left: 0;
  opacity: 0;
}
.block_page_navi ul li a span.be span.t {
  display: block;
  transition: opacity 650ms, transform 650ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
body.h_white .block_page_navi ul li a {
  border: 1px #000 solid;
  color: #000;
}
body.h_white .block_page_navi ul li a:hover {
  background: #000;
  color: #fff;
}

@media screen and (max-width: 1180px) {
  .block_page_navi {
    visibility: hidden;
    opacity: 0;
  }
}
/*----------------------------------------------------
 block_about
--------------------------------------------------- */
.block_about {
  padding-bottom: 200px;
}
@media (max-width: 896px) {
  .block_about {
    padding-bottom: 10vw;
  }
}
.block_about .inner {
  padding: 0 4vw;
  text-align: center;
  max-width: 1384px;
  margin: 0 auto;
}
.block_about .inner .copy {
  font-weight: 400;
  font-size: 60px;
  line-height: 68px;
  font-family: "tiempos-headline-regular", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", sans-serif;
}
@media (max-width: 896px) {
  .block_about .inner .copy {
    font-size: 10vw;
    line-height: 12.5vw;
  }
}
.block_about .inner p {
  margin-top: 60px;
  font-size: 32px;
  line-height: 1.55;
  font-weight: 400;
  font-family: "tiempos-headline-regular", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", sans-serif;
}
.block_about .inner p.font_jp {
  font-size: 30px;
  line-height: 1.53;
  text-align: left;
}
@media (max-width: 896px) {
  .block_about .inner p.font_jp {
    font-size: 5.5vw;
    line-height: 10vw;
  }
}
.block_about .inner p.font_jp.min {
  font-size: 24px;
  line-height: 1.533;
  font-weight: 400;
  padding-top: 6px;
}
@media (max-width: 896px) {
  .block_about .inner p.font_jp.min {
    font-size: 4vw;
  }
}
.block_about .inner p.min {
  font-size: 24px;
  line-height: 1.533;
  font-weight: 400;
  padding-top: 6px;
}
@media (max-width: 896px) {
  .block_about .inner p.min {
    font-size: 4vw;
  }
}
@media (max-width: 896px) {
  .block_about .inner p {
    font-size: 5.5vw;
    margin-top: 10vw;
  }
}

/*----------------------------------------------------
 block_mission
--------------------------------------------------- */
.block_mission {
  padding-top: 60px;
  padding-bottom: 100px;
}
@media (max-width: 896px) {
  .block_mission {
    padding-top: 5vw;
    padding-bottom: 10vw;
  }
}
.block_mission .inner {
  padding: 0 4vw;
  max-width: 1900px;
  margin: 0 auto;
}
.block_mission .inner .column {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
  margin-bottom: 80px;
}
@media (max-width: 896px) {
  .block_mission .inner .column {
    flex-direction: column; /* row row-reverse column */
    margin-bottom: 10vw;
  }
}
.block_mission .inner .column .c_title {
  width: 48%;
  font-size: 32px;
  line-height: 1.25;
  font-weight: 400;
  font-family: "tiempos-headline-regular", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", sans-serif;
}
@media (max-width: 896px) {
  .block_mission .inner .column .c_title {
    width: 100%;
    font-size: 5.5vw;
    margin-bottom: 4vw;
  }
}
.block_mission .inner .column .textarea {
  width: 50%;
  font-size: 24px;
  line-height: 1.533;
  font-weight: 400;
  padding-top: 6px;
}
.block_mission .inner .column .textarea.font_jp {
  font-size: 22px;
  line-height: 1.45;
}
@media (max-width: 896px) {
  .block_mission .inner .column .textarea.font_jp {
    font-size: 4vw;
  }
}
@media (max-width: 896px) {
  .block_mission .inner .column .textarea {
    width: 100%;
    font-size: 4vw;
  }
}
.block_mission .inner .column .textarea p {
  margin-bottom: 24px;
}
@media (max-width: 896px) {
  .block_mission .inner .column .textarea p {
    margin-bottom: 4vw;
  }
}
.block_mission .inner .caption {
  color: #fff;
}

/*----------------------------------------------------
 block_movie_area
--------------------------------------------------- */
.block_movie_area {
  width: 61.66%;
  margin: 0 auto;
  margin-bottom: 140px;
  position: relative;
}
@media (max-width: 896px) {
  .block_movie_area {
    position: relative;
    left: -2vw;
    width: 96vw;
  }
}
.block_movie_area .movie_player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.block_movie_area .movie_player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.block_movie_area.view a {
  opacity: 0;
  visibility: hidden;
}
.block_movie_area a {
  display: block;
  position: relative;
}
.block_movie_area a:hover .icon .l01 {
  height: 12px;
}
.block_movie_area a:hover .icon .l02 {
  transform: scale3d(2, 2.5, 1) translate(0px, 0px) rotate(-25deg);
}
.block_movie_area a:hover .icon .l03 {
  height: 12px;
}
.block_movie_area a .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 96px;
  height: 80px;
  margin-top: -40px;
  margin-left: -48px;
  overflow: hidden;
}
@media (max-width: 896px) {
  .block_movie_area a .icon {
    width: 48px;
    height: 40px;
    margin-top: -20px;
    margin-left: -24px;
  }
}
.block_movie_area a .icon .l01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 26px;
  background: #ffcd00;
  transition: all 0.4s 0s ease;
}
@media (max-width: 896px) {
  .block_movie_area a .icon .l01 {
    height: 13px;
  }
}
.block_movie_area a .icon .l02 {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 100%;
  height: 28px;
  margin-top: -14px;
  background: #ffcd00;
  transform: scale3d(2, 1, 1) translate(0px, 0px) rotate(-25deg);
  transition: all 0.4s 0s ease;
}
@media (max-width: 896px) {
  .block_movie_area a .icon .l02 {
    height: 14px;
    margin-top: -7px;
  }
}
.block_movie_area a .icon .l03 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 26px;
  background: #ffcd00;
  transition: all 0.4s 0s ease;
}
@media (max-width: 896px) {
  .block_movie_area a .icon .l03 {
    height: 13px;
  }
}
.block_movie_area a .icon .play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 22px;
  margin-top: -11px;
  margin-left: -10px;
}
@media (max-width: 896px) {
  .block_movie_area a .icon .play {
    width: 10px;
    height: 11px;
    margin-top: -6px;
    margin-left: -5px;
  }
}
.block_movie_area .caption {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #000;
}
@media (max-width: 896px) {
  .block_movie_area .caption {
    bottom: -60px;
    padding: 0 2vw;
  }
}

/*----------------------------------------------------
 block_admissions
--------------------------------------------------- */
.block_admissions {
  padding-bottom: 100px;
  color: #ffcd00;
}
@media (max-width: 896px) {
  .block_admissions {
    padding-bottom: 5vw;
  }
}
.block_admissions .inner {
  padding: 0 4vw;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}
.block_admissions .inner .copy {
  font-weight: 400;
  font-size: 120px;
  line-height: 126px;
  letter-spacing: -0.02em;
  font-family: "tiempos-headline-regular", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", sans-serif;
}
@media (max-width: 896px) {
  .block_admissions .inner .copy {
    font-size: 12.5vw;
    line-height: 13.75vw;
  }
}
.block_admissions .inner .exp {
  margin-top: 60px;
}
@media (max-width: 896px) {
  .block_admissions .inner .exp {
    margin-top: 5vw;
  }
}
.block_admissions .inner .exp.__jp {
  margin-right: -20px;
  margin-left: -20px;
}
@media (max-width: 896px) {
  .block_admissions .inner .exp.__jp {
    margin-right: auto;
    margin-left: auto;
  }
}
.block_admissions .inner .exp p {
  font-size: 24px;
  line-height: 1.53;
  font-weight: 400;
  margin-bottom: 16px;
}
@media (max-width: 896px) {
  .block_admissions .inner .exp p {
    font-size: 3.5vw;
    margin-bottom: 5vw;
  }
}

/*----------------------------------------------------
 block_program
--------------------------------------------------- */
.block_program {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #fff;
  color: #0b8bee;
}
@media (max-width: 896px) {
  .block_program {
    padding-top: 10vw;
    padding-bottom: 10vw;
  }
}
.block_program .inner {
  padding: 0 4vw;
  max-width: 1900px;
  margin: 0 auto;
}
.block_program .inner .column {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
  margin-bottom: 80px;
}
@media (max-width: 896px) {
  .block_program .inner .column {
    flex-direction: column;
    margin-bottom: 10vw;
  }
}
.block_program .inner .column .c_title {
  width: 48%;
  font-size: 32px;
  line-height: 1.25;
  font-weight: 400;
  font-family: "tiempos-headline-regular", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", sans-serif;
}
@media (max-width: 896px) {
  .block_program .inner .column .c_title {
    width: 100%;
    font-size: 5.5vw;
  }
}
.block_program .inner .column .textarea {
  width: 50%;
  font-size: 24px;
  line-height: 1.53;
  font-weight: 400;
  padding-top: 6px;
}
@media (max-width: 896px) {
  .block_program .inner .column .textarea {
    width: 100%;
    font-size: 4vw;
    padding-top: 5vw;
  }
}
.block_program .inner .column .textarea p {
  margin-bottom: 24px;
}
@media (max-width: 896px) {
  .block_program .inner .column .textarea p {
    margin-bottom: 4vw;
  }
}
.block_program .inner .tbd {
  background: #0b8bee;
  margin-bottom: 100px;
  height: 800px;
  display: flex;
  flex-direction: column; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  color: #fff;
}
@media (max-width: 896px) {
  .block_program .inner .tbd {
    height: 500px;
  }
}
.block_program .inner .tbd .sankaku {
  position: absolute;
  top: 220px;
  width: 100%;
  pointer-events: none;
}
@media (max-width: 896px) {
  .block_program .inner .tbd .sankaku {
    top: 120px;
  }
}
.block_program .inner .tbd .sankaku::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  height: 95.2627944163px;
  width: 270px;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
@media (max-width: 896px) {
  .block_program .inner .tbd .sankaku::after {
    height: 17.3205080757vw;
    width: 15vw;
  }
}
.block_program .inner .tbd .sankaku::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  background: #fff;
  height: 95.2627944163px;
  width: 270px;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  transform: scale3d(1, 1, 1) translate(0px, 0px) rotate(180deg);
}
@media (max-width: 896px) {
  .block_program .inner .tbd .sankaku::before {
    height: 17.3205080757vw;
    width: 15vw;
  }
}
.block_program .inner .tbd .sankaku.pos2 {
  top: 480px;
}
@media (max-width: 896px) {
  .block_program .inner .tbd .sankaku.pos2 {
    top: 300px;
  }
}
.block_program .inner .tbd .t_column {
  text-align: center;
  line-height: 1;
  margin-bottom: 140px;
  width: 100%;
}
@media (max-width: 896px) {
  .block_program .inner .tbd .t_column {
    margin-bottom: 100px;
  }
}
.block_program .inner .tbd .t_column:last-child {
  margin-bottom: 0;
}
.block_program .inner .tbd .t_column .c_title {
  font-size: 24px;
  line-height: 32px;
}
@media (max-width: 896px) {
  .block_program .inner .tbd .t_column .c_title {
    font-size: 5vw;
    font-size: 18px;
    line-height: 1.5;
  }
}
.block_program .inner .tbd .t_column .change_area {
  height: 80px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 896px) {
  .block_program .inner .tbd .t_column .change_area {
    height: 50px;
  }
}
.block_program .inner .tbd .t_column .change_area ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.block_program .inner .tbd .t_column .change_area ul li {
  font-size: 60px;
  height: 80px;
  font-family: "tiempos-headline-regular", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", sans-serif;
}
@media (max-width: 896px) {
  .block_program .inner .tbd .t_column .change_area ul li {
    font-size: 6.5vw;
    font-size: 26px;
    height: 50px;
  }
}
.block_program .inner .img_slide {
  margin-bottom: 200px;
  position: relative;
}
@media (max-width: 896px) {
  .block_program .inner .img_slide {
    left: -4vw;
    width: 100vw;
    overflow: hidden;
    margin-bottom: 20vw;
  }
}
.block_program .inner .img_slide .next_prev {
  flex-direction: row; /* row row-reverse column */
  justify-content: flex-start; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
  margin-bottom: 20px;
  display: none;
}
@media (max-width: 896px) {
  .block_program .inner .img_slide .next_prev {
    display: flex;
    margin-left: 4vw;
    margin-bottom: 10vw;
  }
}
.block_program .inner .img_slide .next_prev .swiper-button-next,
.block_program .inner .img_slide .next_prev .swiper-button-prev {
  position: relative;
  top: auto;
  margin-top: 0;
  width: 16px;
  height: 16px;
  left: auto;
  right: auto;
}
.block_program .inner .img_slide .next_prev .swiper-button-next:after,
.block_program .inner .img_slide .next_prev .swiper-button-prev:after {
  display: none;
}
.block_program .inner .img_slide .next_prev .swiper-button-prev {
  background: url(../img/common/arrow_prev.svg) no-repeat center center;
  background-size: 16px;
  margin-right: 20px;
}
.block_program .inner .img_slide .next_prev .swiper-button-next {
  background: url(../img/common/arrow_next.svg) no-repeat center center;
  background-size: 16px;
}
.block_program .inner .img_slide .swiper-wrapper {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
  height: auto;
}
@media (max-width: 896px) {
  .block_program .inner .img_slide .swiper-wrapper {
    padding-left: 4vw;
    padding-right: 4vw;
  }
}
.block_program .inner .img_slide .swiper-slide {
  width: 32%;
}
@media (max-width: 896px) {
  .block_program .inner .img_slide .swiper-slide {
    width: 70vw;
  }
}
.block_program .step {
  padding: 0 4vw;
  overflow: hidden;
  position: relative;
  padding-top: 30px;
  margin-bottom: 200px;
}
@media (max-width: 896px) {
  .block_program .step {
    padding-top: 5vw;
    margin-bottom: 20vw;
  }
}
.block_program .step .column {
  width: 597px;
  box-sizing: border-box;
  border-top: 1px #0b8bee solid;
  border-bottom: 1px #0b8bee solid;
  margin-left: -1px;
  position: relative;
}
.block_program .step .column:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: #0b8bee;
  z-index: 1;
}
.block_program .step .column:last-child {
  border-right: 1px #0b8bee solid;
}
.block_program .step .column .in {
  padding: 17px;
  position: relative;
  height: 530px;
}
.block_program .step .column .in .c_title {
  line-height: 1;
  font-size: 24px;
}
.block_program .step .column .in .list {
  padding-top: 30px;
  position: relative;
  z-index: 2;
}
.block_program .step .column .in .list .l_area {
  height: 104px;
  margin-bottom: 8px;
}
.block_program .step .column .in .list .l_area.l_in {
  background: #f2f2f2;
  color: #000;
}
.block_program .step .column .in .list .l_area.t_in {
  font-size: 16px;
  line-height: 24px;
  padding: 0px 15px 0 15px;
}
.block_program .step .column .in .list .l_area.l_in_b {
  position: absolute;
  top: 30px;
  left: 0%;
  background: #000;
  color: #fff;
  width: 270px;
  height: 328px;
}
.block_program .step .column .in .list .l_area.wide02 {
  width: 1162px;
}
.block_program .step .column .in .list .l_area.wide025 {
  width: 1476px;
}
.block_program .step .column .in .list .l_area.wide_h01 {
  margin-left: 50%;
  width: 876px;
}
.block_program .step .column .in .list .l_area.wide_h02 {
  margin-left: 50%;
  width: 287px;
}
.block_program .step .column .in .list .l_area .l_title {
  font-size: 16px;
  line-height: 24px;
  font-family: "tiempos-text-semibold";
  padding: 15px 15px 0 15px;
}
.block_program .step .column .in .list .l_area p {
  font-size: 16px;
  line-height: 24px;
  padding: 0px 15px 0 15px;
}
.block_program .step .column .in .list .attention {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 16px;
  line-height: 24px;
  text-indent: -0.4em;
  padding-left: 0.4em;
  color: #000;
}
.block_program .step .column .in .list .attention.t2 {
  text-indent: -0.8em;
  padding-left: 0.8em;
}
.block_program .step .column .in .list .attention.t3 {
  text-indent: -0.12em;
  padding-left: 0.12em;
}
.block_program .step .next_prev {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: flex-start; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
  margin-bottom: 20px;
}
@media (max-width: 896px) {
  .block_program .step .next_prev {
    margin-bottom: 10vw;
  }
}
.block_program .step .next_prev .swiper-button-next,
.block_program .step .next_prev .swiper-button-prev {
  position: relative;
  top: auto;
  margin-top: 0;
  width: 16px;
  height: 16px;
  left: auto;
  right: auto;
}
.block_program .step .next_prev .swiper-button-next:after,
.block_program .step .next_prev .swiper-button-prev:after {
  display: none;
}
.block_program .step .next_prev .swiper-button-prev {
  background: url(../img/common/arrow_prev.svg) no-repeat center center;
  background-size: 16px;
  margin-right: 20px;
}
.block_program .step .next_prev .swiper-button-next {
  background: url(../img/common/arrow_next.svg) no-repeat center center;
  background-size: 16px;
}
.block_program .step .download {
  position: absolute;
  top: 0px;
  right: 4vw;
}
.block_program .step .download a {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  padding: 4px 16px;
  border: 1px #0b8bee solid;
  border-radius: 8px;
  color: #0b8bee;
  transition: all 0.5s 0s ease;
}
@media (max-width: 896px) {
  .block_program .step .download a {
    padding: 1.25vw 5vw;
    font-size: 3.5vw;
  }
}
.block_program .step .download a:hover {
  background: #0b8bee;
  color: #fff;
}
.block_program .step .download a:hover span.be::before {
  opacity: 1;
  transform: translate3d(0, -130%, 0);
}
.block_program .step .download a:hover span.t {
  opacity: 0;
  transform: translate3d(0, -130%, 0);
}
.block_program .step .download a span.be {
  display: block;
  position: relative;
  -webkit-clip-path: inset(0 0 -0.2em);
  clip-path: inset(0 0 -0.2em);
  font-weight: 400;
  letter-spacing: 0.02em;
  font-size: 16px;
}
.block_program .step .download a span.be::before {
  transition: opacity 650ms, transform 650ms cubic-bezier(0.165, 0.84, 0.44, 1);
  content: attr(data-text);
  position: absolute;
  top: 130%;
  left: 0;
  opacity: 0;
}
.block_program .step .download a span.be span.t {
  display: block;
  transition: opacity 650ms, transform 650ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

/*----------------------------------------------------
 block_faq
--------------------------------------------------- */
.block_faq {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #000;
  color: #ffcd00;
  margin-top: -100px;
}
@media (max-width: 896px) {
  .block_faq {
    margin-top: 0;
    padding-top: 10vw;
    padding-bottom: 10vw;
  }
}
.block_faq .inner {
  padding: 0 4vw;
  max-width: 1900px;
  margin: 0 auto;
}
.block_faq .inner .title {
  text-align: center;
  font-size: 120px;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 100px;
  font-family: "tiempos-headline-regular", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", sans-serif;
}
@media (max-width: 896px) {
  .block_faq .inner .title {
    font-size: 12.5vw;
    line-height: 13.75vw;
    margin-bottom: 10vw;
  }
}
.block_faq .inner .ac_list .ac_column {
  position: relative;
  padding-top: 15px;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
  padding-bottom: 60px;
  cursor: pointer;
}
.block_faq .inner .ac_list .ac_column::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: #ffcd00;
}
.block_faq .inner .ac_list .ac_column.js-fade_up_view::before {
  transition: all 0.8s 0s cubic-bezier(0.83, 0, 0.17, 1);
  width: 100%;
}
@media (max-width: 896px) {
  .block_faq .inner .ac_list .ac_column {
    flex-direction: column;
    padding-top: 3vw;
    padding-bottom: 10vw;
  }
}
.block_faq .inner .ac_list .ac_column:hover .plus {
  transform: scale3d(1, 1, 1) translate(0px, 0px) rotate(90deg);
}
.block_faq .inner .ac_list .ac_column.active .plus .l02 {
  height: 0;
}
.block_faq .inner .ac_list .ac_column .ac_title {
  width: 48%;
  margin-right: 2%;
  font-size: 32px;
  line-height: 40px;
}
.block_faq .inner .ac_list .ac_column .ac_title.font_jp {
  font-size: 30px;
}
@media (max-width: 896px) {
  .block_faq .inner .ac_list .ac_column .ac_title.font_jp {
    font-size: 4.5vw;
  }
}
@media (max-width: 896px) {
  .block_faq .inner .ac_list .ac_column .ac_title {
    width: 90%;
    margin-right: 10%;
    font-size: 4.5vw;
    line-height: 1.5;
  }
}
.block_faq .inner .ac_list .ac_column .ac_text {
  padding-top: 8px;
  width: -webkit-calc(50% - 40px);
  width: calc(50% - 40px);
}
@media (max-width: 896px) {
  .block_faq .inner .ac_list .ac_column .ac_text {
    width: 100%;
  }
}
.block_faq .inner .ac_list .ac_column .ac_text .in {
  display: none;
  font-size: 24px;
  line-height: 1.5;
}
@media (max-width: 896px) {
  .block_faq .inner .ac_list .ac_column .ac_text .in {
    font-size: 3.5vw;
  }
}
.block_faq .inner .ac_list .ac_column .plus {
  position: relative;
  width: 14px;
  height: 14px;
  margin: 0 auto;
  margin-top: 10px;
  transition: all 0.4s 0s ease;
}
@media (max-width: 896px) {
  .block_faq .inner .ac_list .ac_column .plus {
    position: absolute;
    top: 2.5vw;
    right: 2vw;
  }
}
.block_faq .inner .ac_list .ac_column .plus .l01 {
  position: absolute;
  top: 6px;
  left: 0;
  width: 14px;
  height: 2px;
  background: #ffcd00;
}
.block_faq .inner .ac_list .ac_column .plus .l02 {
  position: absolute;
  top: 0%;
  left: 6px;
  width: 2px;
  height: 14px;
  background: #ffcd00;
  transition: all 0.4s 0s ease;
}

/*----------------------------------------------------
 block_footer
--------------------------------------------------- */
.block_footer {
  padding-top: 100px;
  padding-bottom: 40px;
  background: #0b8bee;
  color: #000;
  text-align: center;
  border: 10px #000 solid;
  position: relative;
}
body.page .block_footer {
  border: 10px #fff solid;
}
body.page .block_footer .sankaku::after {
  background: #fff;
}
body.page .block_footer .sankaku::before {
  background: #fff;
}

@media (max-width: 896px) {
  .block_footer {
    padding-top: calc(48 / 500 * 100vw);
    padding-bottom: 15vw;
  }
}
@media (max-width: 896px) {
  .block_footer .inner {
    padding-right: calc(8 / 500 * 100vw);
    padding-left: calc(8 / 500 * 100vw);
  }
}
.block_footer .copy {
  font-family: "tiempos-headline-regular", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", sans-serif;
  font-size: 120px;
  font-size: 4vw;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 100px;
}
@media (max-width: 896px) {
  .block_footer .copy {
    font-size: 10vw;
    line-height: 12.5vw;
    margin-bottom: calc(96 / 500 * 100vw);
  }
}
.block_footer .form_area .f_title {
  font-size: 16px;
  margin-bottom: 20px;
}
@media (max-width: 896px) {
  .block_footer .form_area .f_title {
    font-size: 3.5vw;
    margin-bottom: 4vw;
  }
}
.block_footer .form_area ul {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  margin-bottom: 40px;
}
@media (max-width: 896px) {
  .block_footer .form_area ul {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
}
.block_footer .form_area ul li {
  margin: 0 4px;
}
@media (max-width: 896px) {
  .block_footer .form_area ul li {
    margin: 0 1.5vw 3vw 1.5vw;
  }
}
.block_footer .form_area ul li a {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  padding: 4px 16px;
  border: 1px #000 solid;
  border-radius: 8px;
  color: #000;
  transition: all 0.5s 0s ease;
}
@media (max-width: 896px) {
  .block_footer .form_area ul li a {
    padding: 0.6vw 3vw;
    font-size: 3.5vw;
  }
}
.block_footer .form_area ul li a:hover {
  background: #000;
  color: #0b8bee;
}
.block_footer .form_area ul li a:hover span.be::before {
  opacity: 1;
  transform: translate3d(0, -130%, 0);
}
.block_footer .form_area ul li a:hover span.t {
  opacity: 0;
  transform: translate3d(0, -130%, 0);
}
.block_footer .form_area ul li a span.be {
  display: block;
  position: relative;
  -webkit-clip-path: inset(0 0 -0.2em);
  clip-path: inset(0 0 -0.2em);
  font-weight: 400;
  letter-spacing: 0.02em;
  font-size: 16px;
}
.block_footer .form_area ul li a span.be::before {
  transition: opacity 650ms, transform 650ms cubic-bezier(0.165, 0.84, 0.44, 1);
  content: attr(data-text);
  position: absolute;
  top: 130%;
  left: 0;
  opacity: 0;
}
.block_footer .form_area ul li a span.be span.t {
  display: block;
  transition: opacity 650ms, transform 650ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.block_footer .form_area .btn {
  margin-bottom: 100px;
}
@media (max-width: 896px) {
  .block_footer .form_area .btn {
    margin-bottom: 10vw;
  }
}
.block_footer .form_area .btn a {
  width: 124px;
  height: 64px;
  margin: 0 auto;
  background: #000;
  color: #fff;
  font-size: 16px;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  transition: all 0.5s 0s ease;
  border-radius: 8px;
}
.block_footer .form_area .btn a:hover {
  background: #fff;
  color: #000;
}
.block_footer .form_area .exp {
  text-align: center;
  width: 880px;
  margin: 0 auto;
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 100px;
}
@media (max-width: 896px) {
  .block_footer .form_area .exp {
    width: auto;
    font-size: 3.5vw;
    line-height: 6.5vw;
    padding: 0 4vw;
    margin-bottom: 10vw;
  }
}
.block_footer .copyright {
  font-size: 16px;
  margin-top: 64px;
}
@media (max-width: 896px) {
  .block_footer .copyright {
    margin-top: sp(32);
    font-size: 3.5vw;
    margin-bottom: 5vw;
  }
}
.block_footer ul.sub_menu {
  position: absolute;
  bottom: 40px;
  right: 4vw;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: flex-start; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
}
@media (max-width: 896px) {
  .block_footer ul.sub_menu {
    padding: 0 5vw;
    position: relative;
    bottom: auto;
    right: auto;
    justify-content: space-between; /* flex-start  center  space-between */
  }
}
.block_footer ul.sub_menu li {
  margin-left: 20px;
}
@media (max-width: 896px) {
  .block_footer ul.sub_menu li {
    margin-left: 0;
  }
}
.block_footer ul.sub_menu li a {
  display: block;
  color: #000;
  font-size: 16px;
  text-decoration: underline;
}
@media (max-width: 896px) {
  .block_footer ul.sub_menu li a {
    font-size: 3.5vw;
  }
}
.block_footer ul.sub_menu li a:hover {
  text-decoration: none;
}
.block_footer .sankaku {
  position: absolute;
  top: 150px;
  width: 100%;
  pointer-events: none;
}
@media (max-width: 896px) {
  .block_footer .sankaku {
    top: calc(148 / 500 * 100vw);
  }
}
.block_footer .sankaku::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: #000;
  height: 95.2627944163px;
  width: 15.625vw;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
@media (max-width: 896px) {
  .block_footer .sankaku::after {
    width: calc(48 / 500 * 100vw);
    height: calc(64 / 500 * 100vw);
  }
}
.block_footer .sankaku::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  background: #000;
  height: 95.2627944163px;
  width: 15.625vw;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  transform: scale3d(1, 1, 1) translate(0px, 0px) rotate(180deg);
}
@media (max-width: 896px) {
  .block_footer .sankaku::before {
    width: calc(48 / 500 * 100vw);
    height: calc(64 / 500 * 100vw);
  }
}
.block_footer .sankaku.pos02 {
  top: 440px;
}
@media (max-width: 896px) {
  .block_footer .sankaku.pos02 {
    display: none;
  }
}
.block_footer .text {
  text-align: center;
  color: var(--black-01);
  font-family: "tiempos-text-regular", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  margin-top: 32px;
}
@media (max-width: 896px) {
  .block_footer .text {
    font-size: calc(16 / 500 * 100vw);
    margin-top: calc(32 / 500 * 100vw);
    margin-right: calc(-8 / 500 * 100vw);
    margin-left: calc(-8 / 500 * 100vw);
  }
}

/*----------------------------------------------------
 block_entry
--------------------------------------------------- */
.block_entry {
  padding-top: 200px;
  padding-bottom: 100px;
  background: #fff;
  color: #000;
}
@media (max-width: 896px) {
  .block_entry {
    padding-top: 30vw;
    padding-bottom: 10vw;
  }
}
.block_entry .inner {
  padding: 0 4vw;
  max-width: 1900px;
  margin: 0 auto;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
}
@media (max-width: 896px) {
  .block_entry .inner {
    flex-direction: column;
  }
}
.block_entry .inner .title {
  width: 50%;
  font-size: 32px;
  font-family: "tiempos-headline-regular", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", sans-serif;
  font-weight: 400;
}
@media (max-width: 896px) {
  .block_entry .inner .title {
    width: 100%;
    font-size: 5.5vw;
    margin-bottom: 40px;
  }
}
.block_entry .inner .entry {
  width: 50%;
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
  font-family: "tiempos-text-regular", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", sans-serif;
}
@media (max-width: 896px) {
  .block_entry .inner .entry {
    width: 100%;
    font-size: 4vw;
    line-height: 8.75vw;
  }
}
.block_entry .inner .entry .textarea {
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  font-family: "tiempos-text-regular", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", sans-serif;
  margin-bottom: 80px;
}
@media (max-width: 896px) {
  .block_entry .inner .entry .textarea {
    font-size: 4vw;
    line-height: 8.75vw;
    margin-bottom: 40px;
  }
}
.block_entry .inner .entry .textarea a {
  color: #000;
  text-decoration: underline;
}
.block_entry .inner .entry .textarea .sub_title {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  font-family: "tiempos-text-regular", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", sans-serif;
}
@media (max-width: 896px) {
  .block_entry .inner .entry .textarea .sub_title {
    font-size: 4vw;
    line-height: 8.75vw;
  }
}
.block_entry .inner .entry .textarea ol {
  margin-bottom: 40px;
  list-style: decimal;
  margin-left: 1em;
}
.block_entry .inner .entry .textarea p {
  margin-bottom: 40px;
}

/*----------------------------------------------------
faculty_section
--------------------------------------------------- */
.faculty_section {
  margin-top: 256px;
  margin-bottom: 256px;
}
@media (max-width: 896px) {
  .faculty_section {
    margin-top: calc(46 / 500 * 100vw);
    margin-bottom: calc(48 / 500 * 100vw);
  }
}
.faculty_section .area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 64px;
}
@media (max-width: 896px) {
  .faculty_section .area {
    gap: calc(24 / 500 * 100vw);
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.faculty_section .area .title {
  font-family: "tiempos-headline-regular", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 120px;
  line-height: 1;
  letter-spacing: 0em;
  text-align: center;
}
@media (max-width: 896px) {
  .faculty_section .area .title {
    font-size: calc(40 / 500 * 100vw);
    text-align: left;
  }
}
.faculty_section .area .text {
  font-size: 24px;
  letter-spacing: 0em;
  line-height: 1.3333333333;
  font-family: "tiempos-text-regular", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", sans-serif;
  font-style: normal;
  font-weight: 400;
  max-width: 880px;
  text-align: center;
}
@media (max-width: 896px) {
  .faculty_section .area .text {
    font-size: calc(20 / 500 * 100vw);
    line-height: 1.4;
    width: 100%;
    max-width: 100%;
    text-align: left;
  }
}

/*----------------------------------------------------
pr_section
--------------------------------------------------- */
.pr_section {
  margin-top: 96px;
  margin-bottom: 96px;
}
@media (max-width: 896px) {
  .pr_section {
    margin-top: calc(48 / 500 * 100vw);
    margin-bottom: calc(48 / 500 * 100vw);
  }
}
.pr_section .area {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 32px;
}
@media (max-width: 896px) {
  .pr_section .area {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: calc(32 / 500 * 100vw);
  }
}
.pr_section .area .block {
  grid-column: span 4;
}
.pr_section .area .block .title {
  font-size: 32px;
  font-family: "tiempos-headline-regular", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0em;
}
@media (max-width: 896px) {
  .pr_section .area .block .title {
    font-size: calc(32 / 500 * 100vw);
  }
}
.pr_section .area .list {
  grid-column: span 8;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: 64px;
}
@media (max-width: 896px) {
  .pr_section .area .list {
    row-gap: calc(32 / 500 * 100vw);
  }
}

.c-button {
  width: fit-content;
  height: 64px;
  padding-right: 32px;
  padding-left: 32px;
  background-color: var(--blue-01);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}
@media (max-width: 896px) {
  .c-button {
    height: calc(64 / 500 * 100vw);
    padding-right: calc(32 / 500 * 100vw);
    padding-left: calc(32 / 500 * 100vw);
  }
}
.c-button .c-button__text {
  font-size: 16px;
  letter-spacing: 0em;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  color: var(--white-01);
}
@media (max-width: 896px) {
  .c-button .c-button__text {
    font-size: calc(16 / 500 * 100vw);
  }
}

.c-article {
  position: relative;
  padding-top: 16px;
}
.c-article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--blue-01);
  transition: all 0.8s 0s cubic-bezier(0.83, 0, 0.17, 1);
  transition-property: width;
}
.c-article.js-fade_up_view::before {
  transition: all 0.8s 0s cubic-bezier(0.83, 0, 0.17, 1);
  width: 100%;
  transition-property: width;
}
@media (max-width: 896px) {
  .c-article {
    padding-top: calc(16 / 500 * 100vw);
  }
}
.c-article .c-article__area {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  column-gap: 32px;
}
@media (max-width: 896px) {
  .c-article .c-article__area {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: calc(32 / 500 * 100vw);
  }
}
.c-article .c-article__area .c-article__image {
  grid-column: span 2;
  width: 100%;
  height: 100%;
}
.c-article .c-article__area .c-article__image > .i {
  width: 100%;
  height: auto;
  aspect-ratio: 272/181;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 896px) {
  .c-article .c-article__area .c-article__image > .i {
    aspect-ratio: 288/192;
  }
}
.c-article .c-article__area .c-article__date {
  grid-column: span 2;
  font-size: 24px;
  font-family: "tiempos-text-regular", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
}
@media (max-width: 896px) {
  .c-article .c-article__area .c-article__date {
    font-size: calc(24 / 500 * 100vw);
  }
}
.c-article .c-article__area .c-article__textArea {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: 32px;
}
@media (max-width: 896px) {
  .c-article .c-article__area .c-article__textArea {
    row-gap: calc(32 / 500 * 100vw);
  }
}
.c-article .c-article__area .c-article__textArea .c-article__text {
  font-size: 24px;
  font-family: "tiempos-text-regular", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
}
@media (max-width: 896px) {
  .c-article .c-article__area .c-article__textArea .c-article__text {
    font-size: calc(24 / 500 * 100vw);
  }
}
.c-article .c-article__area .c-article__textArea .c-article__link {
  font-size: 24px;
  font-family: "tiempos-text-regular", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  color: var(--blue-01);
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
@media (max-width: 896px) {
  .c-article .c-article__area .c-article__textArea .c-article__link {
    font-size: calc(24 / 500 * 100vw);
  }
}

/*----------------------------------------------------
記事専用
--------------------------------------------------- */
/*----------------------------------------------------
変数・計算式など
--------------------------------------------------- */
body:has(.l-article) {
  background-color: var(--white-01);
  color: var(--black-01);
}
body:has(.l-article) #contact {
  border-color: var(--white-01);
}
body:has(.l-article) #contact .sankaku::before {
  background-color: var(--white-01);
}
body:has(.l-article) #contact .sankaku::after {
  background-color: var(--white-01);
}

.l-article {
  padding: 95px 4vw 86px;
  max-width: 1900px;
  margin: 0 auto;
}
@media (max-width: 896px) {
  .l-article {
    padding: calc(80 / 500 * 100vw) calc(16 / 500 * 100vw) calc(48 / 500 * 100vw);
  }
}
.l-article > .l-article__area > .l-article__head {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 30px;
}
@media (max-width: 896px) {
  .l-article > .l-article__area > .l-article__head {
    grid-template-columns: repeat(4, 1fr);
    column-gap: calc(16 / 500 * 100vw);
  }
}
.l-article > .l-article__area > .l-article__head .l-article__fv {
  grid-column: 3/11;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  row-gap: 64px;
}
@media (max-width: 896px) {
  .l-article > .l-article__area > .l-article__head .l-article__fv {
    grid-column: 1/5;
    row-gap: calc(24 / 500 * 100vw);
  }
}
.l-article > .l-article__area > .l-article__head .l-article__fv > .l-article__image {
  max-width: 1184px;
  width: 92.5vw;
  height: auto;
}
@media (max-width: 896px) {
  .l-article > .l-article__area > .l-article__head .l-article__fv > .l-article__image {
    max-width: 100%;
    width: auto;
  }
}
.l-article > .l-article__area > .l-article__head .l-article__fv > .l-article__image > .i {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.l-article > .l-article__area > .l-article__head .l-article__fv > .l-article__title {
  text-align: center;
  color: var(--black-01);
  font-family: "tiempos-text-regular", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 60px;
  line-height: 1.1333333333;
  letter-spacing: 0;
  max-width: 1184px;
  width: 92.5vw;
}
@media (max-width: 896px) {
  .l-article > .l-article__area > .l-article__head .l-article__fv > .l-article__title {
    max-width: 100%;
    width: auto;
    font-size: 32px;
  }
}
.l-article > .l-article__area > .l-article__head .l-article__fv > .l-article__read {
  text-align: center;
  color: var(--black-01);
  font-family: "tiempos-text-regular", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.25;
  letter-spacing: 0;
  max-width: 1184px;
  width: 92.5vw;
}
@media (max-width: 896px) {
  .l-article > .l-article__area > .l-article__head .l-article__fv > .l-article__read {
    max-width: 100%;
    width: auto;
    font-size: calc(24 / 500 * 100vw);
    margin-top: calc(24 / 500 * 100vw);
  }
}
.l-article > .l-article__area > .l-article__body {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 30px;
  margin-top: 192px;
}
@media (max-width: 896px) {
  .l-article > .l-article__area > .l-article__body {
    grid-template-columns: repeat(4, 1fr);
    font-size: calc(24 / 500 * 100vw);
    margin-top: calc(48 / 500 * 100vw);
    column-gap: calc(16 / 500 * 100vw);
    row-gap: calc(48 / 500 * 100vw);
  }
}
.l-article > .l-article__area > .l-article__body > .l-article__block:nth-of-type(1) {
  grid-column: span 6;
}
@media (max-width: 896px) {
  .l-article > .l-article__area > .l-article__body > .l-article__block:nth-of-type(1) {
    grid-column: span 4;
  }
}
.l-article > .l-article__area > .l-article__body > .l-article__block:nth-of-type(2) {
  grid-column: span 6;
}
@media (max-width: 896px) {
  .l-article > .l-article__area > .l-article__body > .l-article__block:nth-of-type(2) {
    grid-column: span 4;
  }
}
.l-article > .l-article__area > .l-article__body > .l-article__block > .l-article__text > .l-article__date,
.l-article > .l-article__area > .l-article__body > .l-article__block > .l-article__text > .l-article__category {
  color: var(--black-01);
  font-family: "tiempos-text-regular", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3333333333;
  display: block;
}
@media (max-width: 896px) {
  .l-article > .l-article__area > .l-article__body > .l-article__block > .l-article__text > .l-article__date,
  .l-article > .l-article__area > .l-article__body > .l-article__block > .l-article__text > .l-article__category {
    font-size: calc(20 / 500 * 100vw);
  }
}
.l-article > .l-article__area > .l-article__body > .l-article__block > .l-article__contents p {
  color: var(--black-01);
  font-size: 24px;
  font-family: "tiempos-text-regular", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3333333333;
  letter-spacing: 0;
}
@media (max-width: 896px) {
  .l-article > .l-article__area > .l-article__body > .l-article__block > .l-article__contents p {
    font-size: calc(20 / 500 * 100vw);
  }
}
.l-article > .l-article__area > .l-article__body > .l-article__block > .l-article__contents p a {
  color: var(--black-01);
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
}
@media (any-hover: hover) {
  .l-article > .l-article__area > .l-article__body > .l-article__block > .l-article__contents p a:hover {
    text-decoration: none;
  }
}
.l-article > .l-article__area > .l-article__body > .l-article__block > .l-article__contents p a.is-pdf {
  position: relative;
  padding-left: 28px;
  text-decoration: none;
  border-bottom: 1px solid var(--black-01);
}
@media (any-hover: hover) {
  .l-article > .l-article__area > .l-article__body > .l-article__block > .l-article__contents p a.is-pdf:hover {
    border-bottom: none;
  }
}
.l-article > .l-article__area > .l-article__body > .l-article__block > .l-article__contents p a.is-pdf::before {
  content: "";
  background-image: url("../img/common/download.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  aspect-ratio: 1;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.l-article > .l-article__area > .l-article__body > .l-article__block > .l-article__contents p:has(img) {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 32px;
}
@media (max-width: 896px) {
  .l-article > .l-article__area > .l-article__body > .l-article__block > .l-article__contents p:has(img) {
    grid-template-columns: repeat(4, 1fr);
    column-gap: calc(16 / 500 * 100vw);
  }
}
.l-article > .l-article__area > .l-article__body > .l-article__block > .l-article__contents p:has(img) img {
  grid-column: 2/6;
}
@media (max-width: 896px) {
  .l-article > .l-article__area > .l-article__body > .l-article__block > .l-article__contents p:has(img) img {
    grid-column: 1/5;
  }
}
.l-article > .l-article__area > .l-article__body > .l-article__block > .l-article__contents p:has(span) {
  line-height: 1;
  margin-top: 12px;
}
@media (max-width: 896px) {
  .l-article > .l-article__area > .l-article__body > .l-article__block > .l-article__contents p:has(span) {
    column-gap: calc(12 / 500 * 100vw);
  }
}
.l-article > .l-article__area > .l-article__body > .l-article__block > .l-article__contents strong {
  font-family: "tiempos-headline-regular", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", sans-serif;
  letter-spacing: 0.04em;
}
.l-article > .l-article__area > .l-article__body > .l-article__block > .l-article__contents ol {
  counter-reset: item;
  padding-left: 36px;
}
@media (max-width: 896px) {
  .l-article > .l-article__area > .l-article__body > .l-article__block > .l-article__contents ol {
    padding-left: calc(20 / 500 * 100vw);
  }
}
.l-article > .l-article__area > .l-article__body > .l-article__block > .l-article__contents ol li {
  counter-increment: item;
  color: var(--black-01);
  font-family: "tiempos-text-regular", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3333333333;
  display: block;
  position: relative;
}
@media (max-width: 896px) {
  .l-article > .l-article__area > .l-article__body > .l-article__block > .l-article__contents ol li {
    font-size: calc(20 / 500 * 100vw);
  }
}
.l-article > .l-article__area > .l-article__body > .l-article__block > .l-article__contents ol li::before {
  content: counter(item) ". ";
  position: absolute;
  left: -36px;
  color: var(--black-01);
}
@media (max-width: 896px) {
  .l-article > .l-article__area > .l-article__body > .l-article__block > .l-article__contents ol li::before {
    left: calc(-20 / 500 * 100vw);
  }
}
.l-article > .l-article__area > .l-article__body > .l-article__block > .l-article__contents ul {
  list-style: none;
  padding-left: 26px;
}
@media (max-width: 896px) {
  .l-article > .l-article__area > .l-article__body > .l-article__block > .l-article__contents ul {
    padding-left: calc(18 / 500 * 100vw);
  }
}
.l-article > .l-article__area > .l-article__body > .l-article__block > .l-article__contents ul li {
  position: relative;
  color: var(--black-01);
  font-family: "tiempos-text-regular", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3333333333;
}
@media (max-width: 896px) {
  .l-article > .l-article__area > .l-article__body > .l-article__block > .l-article__contents ul li {
    font-size: calc(20 / 500 * 100vw);
  }
}
.l-article > .l-article__area > .l-article__body > .l-article__block > .l-article__contents ul li::before {
  content: "・";
  position: absolute;
  left: -26px;
  color: var(--black-01);
}
@media (max-width: 896px) {
  .l-article > .l-article__area > .l-article__body > .l-article__block > .l-article__contents ul li::before {
    left: calc(18 / 500 * 100vw);
  }
}
.l-article > .l-article__area > .l-article__body > .l-article__block > .l-article__contents p br,
.l-article > .l-article__area > .l-article__body > .l-article__block > .l-article__contents ol br,
.l-article > .l-article__area > .l-article__body > .l-article__block > .l-article__contents ul br,
.l-article > .l-article__area > .l-article__body > .l-article__block > .l-article__contents span br {
  font-size: 16px;
}
@media (max-width: 896px) {
  .l-article > .l-article__area > .l-article__body > .l-article__block > .l-article__contents p br,
  .l-article > .l-article__area > .l-article__body > .l-article__block > .l-article__contents ol br,
  .l-article > .l-article__area > .l-article__body > .l-article__block > .l-article__contents ul br,
  .l-article > .l-article__area > .l-article__body > .l-article__block > .l-article__contents span br {
    font-size: calc(16 / 500 * 100vw);
  }
}
@media (max-width: 896px) {
  .l-article > .l-article__area > .l-article__body > .l-article__block > .l-article__contents br + br {
    display: none;
  }
}

/*----------------------------------------------------
記事専用
--------------------------------------------------- */
/*----------------------------------------------------
変数・計算式など
--------------------------------------------------- */
.form_content {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 32px;
}
@media (max-width: 896px) {
  .form_content {
    display: block;
  }
}
.form_content .wpcf7 {
  grid-column: 4/10;
}
.form_content .wpcf7 > .wpcf7-form {
  width: 100%;
  max-width: 100%;
  margin: auto;
}
.form_content .wpcf7 > .wpcf7-form .form_area {
  position: relative;
}
.form_content .wpcf7 > .wpcf7-form .form_area > .form_mail {
  display: block;
}
.form_content .wpcf7 > .wpcf7-form .form_area > .form_mail > .wpcf7-form-control-wrap {
  width: 100%;
  min-height: 64px;
  display: flex;
}
.form_content .wpcf7 > .wpcf7-form .form_area > .form_mail > .wpcf7-form-control-wrap > .wpcf7-form-control {
  font-family: "tiempos-text-regular", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0em;
  line-height: 1.5;
  color: var(--black-01);
  padding: 12px 16px 28px;
  border: 1px solid var(--black-01);
  width: 100%;
  min-height: 64px;
  background-color: var(--blue-01);
  border-radius: 0;
}
.form_content .wpcf7 > .wpcf7-form .form_area > .form_mail .wpcf7-response-output {
  display: none;
}
.form_content .wpcf7 > .wpcf7-form .form_area > .form_message {
  display: block;
  position: relative;
}
.form_content .wpcf7 > .wpcf7-form .form_area > .form_message > .form_bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, var(--blue-01) 100%);
  pointer-events: none;
}
.form_content .wpcf7 > .wpcf7-form .form_area > .form_message > .wpcf7-form-control-wrap {
  width: 100%;
  min-height: 192px;
  display: flex;
}
.form_content .wpcf7 > .wpcf7-form .form_area > .form_message > .wpcf7-form-control-wrap > .wpcf7-form-control {
  font-family: "tiempos-text-regular", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0em;
  line-height: 1.5;
  color: var(--black-01);
  padding: 12px 16px 28px;
  border-top: transparent;
  border-right: 1px solid var(--black-01);
  border-bottom: 1px solid var(--black-01);
  border-left: 1px solid var(--black-01);
  width: 100%;
  height: 192px;
  min-height: 192px;
  background-color: var(--blue-01);
  border-radius: 0;
}
.form_content .wpcf7 > .wpcf7-form .form_area > .form_message .wpcf7-response-output {
  display: none;
}
.form_content .wpcf7 > .wpcf7-form .form_area > .wpcf7-submit {
  position: absolute;
  z-index: 3;
  bottom: 16px;
  left: 16px;
  height: 32px;
  padding-right: 12px;
  padding-left: 12px;
  background-color: var(--black-01);
  border-radius: 10px;
  color: var(--white-01);
  border: none;
  line-height: 1;
}
@media (any-hover: hover) {
  .form_content .wpcf7 > .wpcf7-form .form_area > .wpcf7-submit {
    cursor: pointer;
  }
}
.form_content .wpcf7 > .wpcf7-form .form_area .wpcf7-not-valid-tip {
  display: none;
}
.form_content .wpcf7 > .wpcf7-form .error {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 896px) {
  .form_content .wpcf7 > .wpcf7-form .error {
    gap: calc(8 / 500 * 100vw);
  }
}
.form_content .wpcf7 > .wpcf7-form .error .mail {
  margin-top: 8px;
}
@media (max-width: 896px) {
  .form_content .wpcf7 > .wpcf7-form .error .mail {
    margin-top: calc(8 / 500 * 100vw);
  }
}
.form_content .wpcf7 > .wpcf7-form .error .error_text {
  font-family: "tiempos-text-regular", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--red-01);
  display: none;
  text-align: left;
}
@media (max-width: 896px) {
  .form_content .wpcf7 > .wpcf7-form .error .error_text {
    font-size: calc(16 / 500 * 100vw);
  }
}
.form_content .wpcf7 > .wpcf7-form .wpcf7-response-output {
  border: transparent;
}
.form_content .wpcf7 > .wpcf7-form .wpcf7-submit:disabled {
  opacity: 0.5;
  color: var(--black-01);
  background: var(--blue-01);
  border: 1px solid var(--black-01);
  cursor: auto;
}
.form_content .wpcf7 form.sent .wpcf7-response-output {
  border: transparent;
  font-family: "tiempos-text-regular", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0em;
  margin-top: 0;
  margin-bottom: 68px;
}
@media (max-width: 896px) {
  .form_content .wpcf7 form.sent .wpcf7-response-output {
    font-size: calc(24 / 500 * 100vw);
    margin-top: 0;
    margin-bottom: calc(64 / 500 * 100vw);
  }
}
.form_content input:-webkit-autofill {
  box-shadow: 0 0 0 1000px var(--blue-01) inset !important;
  -webkit-text-fill-color: var(--black-01) !important;
}
.form_content input:-webkit-autofill:focus {
  caret-color: var(--black-01) !important;
}
.form_content input::placeholder,
.form_content textarea::placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.form_content .wpcf7-spinner {
  display: none;
}

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