@charset "UTF-8";
/*----------------------------------------------------------------------------------------------------------
writing-mode mixin
    Usage:
        $orientation    v (vertical)
                        h (horizontal)
		$direction      rl (right to left)
						lr (left to right)
----------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------
writing-mode mixin
    Usage:
        $orientation    v (vertical)
                        h (horizontal)
		$direction      rl (right to left)
						lr (left to right)
----------------------------------------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline; }

html {
  line-height: 1; }

ol, ul {
  list-style: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle; }

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

a img {
  border: none; }

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block; }

/**
 * !!! 変数の定義 !!!
 * 変数は作りすぎず、デザインコンポーネント、もしくはシンボルを元に作成する
 * またGoogle Font等の特殊なウェブフォントの場合、そのフォント名を定義してわかりやすくする
 */
/**
 * !!! ブレークポイント !!!
 */
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important; } }

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

::-webkit-scrollbar {
  display: none;
  -webkit-appearance: none; }

/**
 * !!! browsersyncのアラートを非表示 !!!
 */
#__bs_notify__ {
  display: none !important; }

/**
 * !!! ページCSS基本設定 !!!
 * 基本的にこの箇所は操作しないようにする
 * ----------------ここから----------------
 */
html {
  font-size: 62.5%;
  font-family: "dnp-shuei-gothic-kin-std", sans-serif;
  background: #fffef5;
  color: #0025ff;
  opacity: 0;
  transition: opacity .6s 1s; }
  html.active {
    opacity: 1; }

* {
  font-size: 14px;
  font-size: 1.4rem;
  box-sizing: border-box; }

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom; }

a {
  color: inherit;
  text-decoration: none;
  transition: opacity .3s; }
  a:hover {
    opacity: 0.6; }

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none; }

textarea {
  resize: vertical; }

input[type='checkbox'],
input[type='radio'] {
  display: none; }

input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer; }

select::-ms-expand {
  display: none; }

.row {
  overflow: hidden;
  *zoom: 1; }

/**
 * ----------------ここまで----------------
 */
/**
 * !!! FlexBox Rule !!!
 * 都度scssを記載するのではなく、クラスで定義し、クラスの付け外しで管理すること。
 */
.flex-row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between; }

/**
 * !!! Inner Rule !!!
 * 最初にデザインを確認し、存在するinnerパターンを作成すること
 * max-width指定のみだと、画面幅を縮小するときに余白が消えるため、paddingをつけること
 * 例) innerが1000pxであれば、
 *     max-width: 1060px;
 *     padding: 0 30px;
 */
.inner {
  max-width: 1380px;
  padding: 0 40px;
  margin: 0 auto; }
  @media only screen and (max-width: 767px) {
    .inner {
      padding: 0 40px; } }

[data-trigger] {
  position: relative;
  top: 60px;
  -webkit-transition: top 1s, opacity 1s;
  -moz-transition: top 1s, opacity 1s;
  -o-transition: top 1s, opacity 1s;
  transition: top 1s, opacity 1s;
  opacity: 0; }
  [data-trigger].visible {
    top: 0;
    opacity: 1; }

@media only screen and (max-width: 767px) {
  main {
    padding-top: 55px; } }

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }
  body.fixed {
    overflow: hidden; }

.footer {
  position: relative; }
  @media only screen and (max-width: 767px) {
    .footer .inner {
      padding: 0 32px; } }
  .footer__nav {
    background: #0025ff;
    color: #fff;
    padding: 62px 0 46px; }
    @media only screen and (max-width: 767px) {
      .footer__nav {
        padding: 43px 0 34px; } }
    .footer__nav .inner {
      position: relative; }
  .footer__list {
    display: flex; }
    @media only screen and (max-width: 767px) {
      .footer__list {
        display: block; } }
    .footer__list li {
      margin-right: 62px; }
      @media only screen and (max-width: 767px) {
        .footer__list li {
          margin-right: 0;
          margin-bottom: 23px; } }
      @media only screen and (max-width: 767px) {
        .footer__list li:last-of-type {
          margin-bottom: 0; } }
      .footer__list li .en {
        display: block;
        font-size: 17px;
        font-size: 1.7rem;
        letter-spacing: 0.05em;
        font-weight: 900; }
        @media only screen and (max-width: 767px) {
          .footer__list li .en {
            font-size: 21px;
            font-size: 2.1rem; } }
      .footer__list li .jp {
        display: block;
        font-size: 17px;
        font-size: 1.7rem;
        letter-spacing: 0.05em;
        font-weight: 500;
        margin-top: 12px; }
        @media only screen and (max-width: 767px) {
          .footer__list li .jp {
            font-size: 17px;
            font-size: 1.7rem;
            margin-top: 12px; } }
  .footer__list-sub {
    display: flex;
    margin-top: 48px; }
    @media only screen and (max-width: 767px) {
      .footer__list-sub {
        display: block;
        margin-top: 45px; } }
    .footer__list-sub li {
      margin-right: 84px; }
      @media only screen and (max-width: 767px) {
        .footer__list-sub li {
          margin: 0 0 32px; } }
      @media only screen and (max-width: 767px) {
        .footer__list-sub li:last-of-type {
          margin-bottom: 0; } }
      .footer__list-sub li a {
        display: flex;
        align-items: center; }
        .footer__list-sub li a i {
          display: inline-block;
          margin-right: 8px; }
        .footer__list-sub li a .w17 {
          width: 17px; }
        .footer__list-sub li a .w20 {
          width: 20px; }
        .footer__list-sub li a span {
          font-size: 17px;
          font-size: 1.7rem;
          font-weight: 500; }
        .footer__list-sub li a strong {
          font-size: 19px;
          font-size: 1.9rem;
          font-weight: 500; }
  .footer__bottom {
    padding: 38px 0 38px;
    background: #fffef5; }
    @media only screen and (max-width: 767px) {
      .footer__bottom {
        padding: 22px 0 22px; } }
    .footer__bottom .inner {
      display: flex;
      justify-content: space-between;
      align-items: flex-end; }
      @media only screen and (max-width: 767px) {
        .footer__bottom .inner {
          flex-direction: column;
          align-items: flex-start;
          padding: 0 20px; } }
  .footer__logo {
    display: block;
    width: 264px; }
    @media only screen and (max-width: 767px) {
      .footer__logo {
        width: 100px;
        order: 2; } }
  .footer__copyright {
    font-size: 17px;
    font-size: 1.7rem;
    font-family: "Inter", sans-serif;
    font-weight: 200; }
    @media only screen and (max-width: 767px) {
      .footer__copyright {
        order: 1;
        font-size: 10px;
        font-size: 1rem;
        margin-bottom: 20px; } }
  .footer .pagetop {
    position: absolute;
    display: block;
    width: 75px;
    right: 40px;
    bottom: -24px; }
    @media only screen and (max-width: 767px) {
      .footer .pagetop {
        right: 12px;
        bottom: -16px; } }

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fffef5;
  color: #0025ff;
  z-index: 99;
  transition: opacity 0.3s, visibility .3s, transform .3s; }
  @media only screen and (max-width: 767px) {
    .header {
      height: 52px;
      background: #fffef5;
      border-bottom: 2px solid #0025ff; } }
  .header.hide {
    transform: translate(0, -70px) !important;
    opacity: 0 !important; }
  .header .inner {
    max-width: 1160px;
    height: 100%; }
    @media only screen and (max-width: 767px) {
      .header .inner {
        padding: 0 14px; } }
  .header__top {
    height: 46px;
    border-bottom: 2px solid #0025ff; }
    @media only screen and (max-width: 767px) {
      .header__top {
        height: 52px;
        border: none; } }
    .header__top .inner {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative; }
    .header__top .hamburger {
      position: absolute;
      top: 50%;
      right: 40px;
      transform: translate(0, -50%); }
      @media only screen and (min-width: 768px) {
        .header__top .hamburger {
          pointer-events: none; } }
      @media only screen and (max-width: 767px) {
        .header__top .hamburger {
          right: 10px; } }
      .header__top .hamburger.is-active .hamburger__icon {
        transform: scale(100); }
      .header__top .hamburger__icon {
        transition: transform 0.6s cubic-bezier(0.75, 0.055, 0.675, 0.19), top 0.6s cubic-bezier(0.75, 0.055, 0.675, 0.19), right 0.6s cubic-bezier(0.75, 0.055, 0.675, 0.19);
        transform-origin: center center;
        width: 36px; }
        .header__top .hamburger__icon #lottie-js {
          width: 36px;
          animation-name: rotate360;
          animation-duration: 20s;
          animation-timing-function: linear;
          animation-fill-mode: both;
          animation-iteration-count: infinite; }
  .header__logo {
    display: block;
    width: 76px; }
  .header__nav {
    height: 52px;
    border-bottom: 2px solid #0025ff; }
    @media only screen and (max-width: 767px) {
      .header__nav {
        color: #fff; } }
    .header__nav .inner {
      display: flex;
      align-items: center;
      justify-content: space-between; }
      @media only screen and (max-width: 767px) {
        .header__nav .inner {
          padding: 0;
          display: block;
          width: 100%;
          overflow-y: scroll;
          padding: 48px 32px 80px; } }
    @media only screen and (max-width: 767px) {
      .header__nav {
        position: fixed;
        width: 100vw;
        height: 100svh;
        top: 0;
        left: 0;
        bottom: 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.6s cubic-bezier(0.75, 0.055, 0.675, 0.19), visibility 0.6s cubic-bezier(0.75, 0.055, 0.675, 0.19);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        overflow-y: scroll; } }
    @media only screen and (max-width: 767px) {
      .header__nav.is-active {
        opacity: 1;
        visibility: visible; } }
    @media only screen and (max-width: 767px) {
      .header__nav .close {
        width: 44px;
        display: block;
        position: absolute;
        padding: 0;
        top: 48px;
        right: 38px; } }
    @media only screen and (max-width: 767px) {
      .header__nav__logo {
        display: block;
        width: 178px;
        margin-bottom: 36px; } }
  .header__list {
    display: flex;
    align-items: center; }
    @media only screen and (min-width: 768px) {
      .header__list {
        width: calc(100% - 470px); } }
    @media only screen and (max-width: 767px) {
      .header__list {
        display: block; } }
    .header__list li {
      margin-right: 40px; }
      @media only screen and (max-width: 1140px) {
        .header__list li {
          margin-right: 30px; } }
      @media only screen and (max-width: 767px) {
        .header__list li {
          line-height: 1.82352941;
          margin: 0 0 12px; } }
      @media only screen and (max-width: 767px) {
        .header__list li a {
          display: flex;
          align-items: center; } }
      .header__list li .en {
        font-size: 17px;
        font-size: 1.7rem;
        font-weight: 600;
        font-family: "Inter", sans-serif; }
        @media only screen and (max-width: 767px) {
          .header__list li .en {
            display: block;
            font-family: "source-han-serif-japanese", serif;
            font-weight: 900;
            font-size: 21px;
            font-size: 2.1rem;
            letter-spacing: 0.05em; } }
      @media only screen and (max-width: 767px) {
        .header__list li .jp {
          display: block;
          font-family: "dnp-shuei-gothic-kin-std", sans-serif;
          font-weight: 500;
          font-size: 21px;
          font-size: 2.1rem;
          letter-spacing: 0.05em; }
          .header__list li .jp:before {
            content: "";
            width: 1px;
            height: 20px;
            display: inline-block;
            background: #fff;
            margin: 0 11px;
            position: relative;
            top: 3px; } }
  .header__list-right {
    display: flex;
    align-items: center;
    justify-content: flex-end; }
    @media only screen and (max-width: 767px) {
      .header__list-right {
        display: block; } }
    .header__list-right li {
      padding: 6px 30px;
      position: relative;
      border-left: 1px solid #0025ff;
      display: flex; }
      .header__list-right li:nth-of-type(2) {
        border-right: 1px solid #0025ff; }
      @media only screen and (max-width: 767px) {
        .header__list-right li {
          line-height: 1.82352941;
          margin: 0 0 16px;
          padding: 0;
          flex-direction: column; } }
      .header__list-right li a {
        display: flex;
        align-items: center; }
      .header__list-right li a:nth-child(2) {
        margin-left: 30px; }
        @media only screen and (max-width: 767px) {
          /* .header__list-right li a {
            display: block; } */
          .header__list-right li a:nth-child(2) {
            margin-left: 0;
            margin-top: 16px; } }
        .header__list-right li a i {
          display: inline-block;
          margin-right: 8px; }
        .header__list-right li a .w17 {
          width: 17px; }
        .header__list-right li a .w20 {
          width: 20px; }
        .header__list-right li a span {
          font-size: 18px;
          font-size: 1.8rem;
          font-size: 1.5rem;
          letter-spacing: 0.05em;
          font-weight: 600;
          white-space: nowrap; }
          @media only screen and (max-width: 767px) {
            .header__list-right li a span {
              font-size: 21px;
              font-size: 2.1rem; } }
  .header__sns-list {
    display: flex;
    margin-bottom: 20px; }
    .header__sns-list li {
      width: 48px;
      margin-right: 18px; }
  .header__copyright {
    font-size: 11px;
    font-size: 1.1rem;
    font-family: "Inter", sans-serif;
    font-weight: 200; }

.header-simple {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: #0025ff;
  color: #fff;
  z-index: 99;
  transition: opacity 0.3s, visibility .3s, transform .3s; }
  @media only screen and (max-width: 767px) {
    .header-simple {
      height: 55px;
      background: #fffef5;
      border-bottom: 2px solid #0025ff; } }
  .header-simple.hide {
    transform: translate(0, -70px) !important;
    opacity: 0 !important; }
  .header-simple .inner {
    max-width: 1160px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 9px; }
    @media only screen and (max-width: 767px) {
      .header-simple .inner {
        justify-content: center;
        align-items: center;
        padding-bottom: 0; } }
  .header-simple__logo {
    display: block;
    width: 264px; }
    @media only screen and (max-width: 767px) {
      .header-simple__logo {
        width: 190px; } }
  .header-simple .hamburger {
    position: absolute;
    top: 10px;
    right: 12px; }
    .header-simple .hamburger.is-active .hamburger__icon {
      transform: scale(100); }
    .header-simple .hamburger__icon {
      transition: transform 0.6s cubic-bezier(0.75, 0.055, 0.675, 0.19), top 0.6s cubic-bezier(0.75, 0.055, 0.675, 0.19), right 0.6s cubic-bezier(0.75, 0.055, 0.675, 0.19);
      transform-origin: center center;
      width: 36px; }
      .header-simple .hamburger__icon #lottie-js {
        width: 36px;
        animation-name: rotate360;
        animation-duration: 20s;
        animation-timing-function: linear;
        animation-fill-mode: both;
        animation-iteration-count: infinite; }

@keyframes rotate360 {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
  @media only screen and (max-width: 767px) {
    .header-simple .gnav-simple {
      position: fixed;
      width: 100vw;
      height: 100svh;
      top: 0;
      left: 0;
      bottom: 0;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.6s cubic-bezier(0.75, 0.055, 0.675, 0.19), visibility 0.6s cubic-bezier(0.75, 0.055, 0.675, 0.19);
      padding: 40px 40px 28px;
      display: flex;
      flex-direction: column;
      justify-content: space-between; } }
  @media only screen and (max-width: 767px) {
    .header-simple .gnav-simple.is-active {
      opacity: 1;
      visibility: visible; } }
  @media only screen and (max-width: 767px) {
    .header-simple .gnav-simple .close {
      width: 36px;
      display: block;
      position: absolute;
      top: 16px;
      right: 12px; } }
  @media only screen and (max-width: 767px) {
    .header-simple .gnav-simple__logo {
      display: block;
      width: 208px;
      margin-bottom: 56px; } }
  .header-simple .gnav-simple__copyright {
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-size: 1.1rem;
    font-weight: 300; }
  .header-simple .gnav-simple__list {
    display: flex;
    justify-content: flex-end; }
    @media only screen and (max-width: 767px) {
      .header-simple .gnav-simple__list {
        display: block; } }
    .header-simple .gnav-simple__list li {
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.82352941;
      font-family: "Inter", sans-serif;
      font-weight: 500;
      margin-right: 20px; }
      @media only screen and (min-width: 768px) {
        .header-simple .gnav-simple__list li {
          line-height: 1; } }
      @media only screen and (max-width: 767px) {
        .header-simple .gnav-simple__list li {
          margin: 0 0 16px; } }
      @media only screen and (max-width: 767px) {
        .header-simple .gnav-simple__list li .en {
          display: block;
          font-family: "source-han-serif-japanese", serif;
          font-weight: 900;
          font-size: 17px;
          font-size: 1.7rem;
          letter-spacing: 0.05em; } }
      @media only screen and (max-width: 767px) {
        .header-simple .gnav-simple__list li .jp {
          display: block;
          font-family: "dnp-shuei-gothic-kin-std", sans-serif;
          font-weight: 500;
          font-size: 14px;
          font-size: 1.4rem;
          letter-spacing: 0.05em; } }

.c-btn {
  width: 100%;
  max-width: 400px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #0025ff;
  color: #0025ff;
  margin: 0 auto;
  font-size: 21px;
  font-size: 2.1rem;
  letter-spacing: 0.1em;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  transition: color .3s, background-color .3s, top 1s, opacity 1s; }
  @media only screen and (max-width: 767px) {
    .c-btn {
      max-width: 234px;
      height: 52px;
      font-size: 17px;
      font-size: 1.7rem; } }
  .c-btn:hover {
    color: #fff;
    background: #0025ff;
    opacity: 1; }
  .c-btn.wht {
    color: #fff;
    border: 1px solid #fff; }
    .c-btn.wht:hover {
      color: #0025ff;
      background: #fff; }

.c-title02 {
  text-align: center; }
  .c-title02 .jp {
    display: block;
    font-size: 28px;
    font-size: 2.8rem;
    letter-spacing: 0.05em;
    font-weight: 900; }
    @media only screen and (max-width: 767px) {
      .c-title02 .jp {
        font-size: 23px;
        font-size: 2.3rem; } }
  .c-title02 .en {
    display: block;
    font-size: 17px;
    font-size: 1.7rem;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-top: 14px; }
    @media only screen and (max-width: 767px) {
      .c-title02 .en {
        font-size: 14px;
        font-size: 1.4rem;
        margin-top: 11px; } }

@media only screen and (max-width: 767px) {
  .c-pageTitle {
    margin-bottom: 14px; } }

.c-pageTitle .jp {
  font-size: 35px;
  font-size: 3.5rem;
  letter-spacing: 0.05em;
  line-height: 1.77142857;
  font-weight: 900;
  display: block;
  font-feature-settings: "palt"; }
  @media only screen and (max-width: 767px) {
    .c-pageTitle .jp {
      font-size: 30px;
      font-size: 3rem; } }

.c-pageTitle .en {
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  display: block;
  margin-top: 6px; }
  @media only screen and (max-width: 767px) {
    .c-pageTitle .en {
      font-size: 14px;
      font-size: 1.4rem;
      margin-top: 0; } }

.c-main-visual {
  padding: 126px 0 0; }
  @media only screen and (max-width: 767px) {
    .c-main-visual {
      padding: 50px 0 0; } }
  .c-main-visual .inner {
    display: flex;
    justify-content: space-between; }
    @media only screen and (max-width: 767px) {
      .c-main-visual .inner {
        flex-direction: column; } }
  .c-main-visual__text {
    width: 398px;
    padding-top: 100px; }
    @media only screen and (max-width: 767px) {
      .c-main-visual__text {
        width: calc(100% + 30px);
        order: 2;
        margin: 0 -15px;
        margin-top: -147px;
        background: #fff;
        padding: 34px 40px;
        position: relative;
        z-index: +1; } }
    .c-main-visual__text .c-pageTitle {
      margin-bottom: 48px; }
    .c-main-visual__text .tableList {
      font-size: 28px;
      font-size: 2.8rem;
      letter-spacing: 0.05em;
      line-height: 1.5;
      font-weight: 600; }
      @media only screen and (max-width: 767px) {
        .c-main-visual__text .tableList {
          font-size: 20px;
          font-size: 2rem; } }
      .c-main-visual__text .tableList li {
        margin-bottom: 6px; }
        .c-main-visual__text .tableList li:last-of-type {
          margin-bottom: 0; }
  .c-main-visual__image {
    width: calc(100% - 398px); }
    @media only screen and (max-width: 767px) {
      .c-main-visual__image {
        width: calc(100% + 60px);
        height: 507px;
        margin: 0 -30px;
        order: 1;
        border-radius: 0 166px 0 0;
        overflow: hidden; } }
    @media only screen and (max-width: 767px) {
      .c-main-visual__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center; } }

.c-col {
  padding-top: 120px;
  padding-bottom: 36px; }
  @media only screen and (max-width: 767px) {
    .c-col {
      padding-top: 60px;
      padding-bottom: 30px; } }
  .c-col .inner {
    display: flex;
    justify-content: space-between; }
    @media only screen and (max-width: 767px) {
      .c-col .inner {
        display: block; } }
  .c-col .left {
    width: 344px; }
    @media only screen and (max-width: 767px) {
      .c-col .left {
        width: 100%; } }
    .c-col .left__box {
      position: sticky;
      top: 100px; }
      @media only screen and (max-width: 767px) {
        .c-col .left__box {
          position: static; } }
    .c-col .left .title {
      font-size: 28px;
      font-size: 2.8rem;
      letter-spacing: 0.05em;
      font-weight: 600;
      display: block;
      margin-bottom: 42px; }
      @media only screen and (max-width: 767px) {
        .c-col .left .title {
          font-size: 20px;
          font-size: 2rem;
          margin-bottom: 24px; } }
    @media only screen and (max-width: 767px) {
      .c-col .left figure .image {
        margin: 0 auto; } }
    .c-col .left figure .image.w252 {
      max-width: 252px; }
    .c-col .left figure figcaption {
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.82352941;
      letter-spacing: 0.1em;
      font-weight: 300;
      margin-top: 28px; }
      @media only screen and (max-width: 767px) {
        .c-col .left figure figcaption {
          font-size: 14px;
          font-size: 1.4rem;
          margin-top: 16px; } }
  .c-col .cont {
    width: calc(100% - 398px); }
    @media only screen and (max-width: 767px) {
      .c-col .cont {
        width: 100%;
        margin-top: 24px; } }
    .c-col .cont h4 {
      font-size: 28px;
      font-size: 2.8rem;
      line-height: 1.5;
      letter-spacing: 0.05em;
      font-weight: 900;
      margin-bottom: 42px; }
      @media only screen and (max-width: 767px) {
        .c-col .cont h4 {
          font-size: 20px;
          font-size: 2rem;
          margin-bottom: 18px; } }
    .c-col .cont p {
      font-size: 21px;
      font-size: 2.1rem;
      letter-spacing: 0.05em;
      line-height: 2;
      font-weight: 500; }
      @media only screen and (max-width: 767px) {
        .c-col .cont p {
          font-size: 14px;
          font-size: 1.4rem; } }
    .c-col .cont .table table {
      width: 100%; }
      @media only screen and (max-width: 767px) {
        .c-col .cont .table table {
          display: block; } }
      @media only screen and (max-width: 767px) {
        .c-col .cont .table table tbody {
          display: block; } }
      @media only screen and (max-width: 767px) {
        .c-col .cont .table table tbody tr {
          display: block;
          border-bottom: 1px solid #0025ff; } }
      .c-col .cont .table table tbody tr th {
        width: 166px;
        border-bottom: 1px solid #0025ff;
        font-size: 21px;
        font-size: 2.1rem;
        letter-spacing: 0.05em;
        font-weight: 500;
        line-height: 1.5;
        padding: 20px 0 8px;
        vertical-align: top; }
        @media only screen and (max-width: 767px) {
          .c-col .cont .table table tbody tr th {
            font-size: 14px;
            font-size: 1.4rem;
            display: block;
            width: 100%;
            border: none;
            padding-top: 24px;
            padding-bottom: 0; } }
      .c-col .cont .table table tbody tr td {
        width: calc(100% - 166px);
        border-bottom: 1px solid #0025ff;
        font-size: 21px;
        font-size: 2.1rem;
        letter-spacing: 0.05em;
        font-weight: 500;
        line-height: 1.5;
        padding: 20px 0 8px; }
        @media only screen and (max-width: 767px) {
          .c-col .cont .table table tbody tr td {
            font-size: 14px;
            font-size: 1.4rem;
            display: block;
            width: 100%;
            border: none;
            padding-top: 8px; } }
    .c-col .cont .map {
      margin-top: 56px; }
      @media only screen and (max-width: 767px) {
        .c-col .cont .map {
          margin-top: 46px; } }
    @media only screen and (max-width: 767px) {
      .c-col .cont .historyTable table {
        display: block; } }
    @media only screen and (max-width: 767px) {
      .c-col .cont .historyTable table tbody {
        display: block; } }
    @media only screen and (max-width: 767px) {
      .c-col .cont .historyTable table tbody tr {
        display: block;
        margin-bottom: 16px; } }
    .c-col .cont .historyTable table tbody tr th {
      width: 166px;
      font-size: 21px;
      font-size: 2.1rem;
      letter-spacing: 0.05em;
      font-weight: 500;
      line-height: 2; }
      @media only screen and (max-width: 767px) {
        .c-col .cont .historyTable table tbody tr th {
          font-size: 14px;
          font-size: 1.4rem;
          display: block;
          width: 100%; } }
    .c-col .cont .historyTable table tbody tr td {
      width: calc(100% - 166px);
      font-size: 21px;
      font-size: 2.1rem;
      letter-spacing: 0.05em;
      font-weight: 500;
      line-height: 2; }
      @media only screen and (max-width: 767px) {
        .c-col .cont .historyTable table tbody tr td {
          font-size: 14px;
          font-size: 1.4rem;
          width: 100%; } }

.c-han {
  font-family: "source-han-serif-japanese", serif;
  font-weight: 900; }

.spSlider {
  position: relative; }
  .spSlider .navigation button {
    width: 46px;
    height: 46px;
    padding: 0;
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0025ff;
    transition: background-color .3s; }
    @media only screen and (max-width: 767px) {
      .spSlider .navigation button {
        width: 25px;
        height: 25px; } }
    .spSlider .navigation button:hover {
      background: #595757; }
    .spSlider .navigation button:after {
      content: none; }
    .spSlider .navigation button img {
      width: 13px;
      display: block; }
      @media only screen and (max-width: 767px) {
        .spSlider .navigation button img {
          width: 7px; } }
  .spSlider .navigation .swiper-button-prev {
    left: auto;
    right: calc(50vw + 718px); }
    @media only screen and (max-width: 1600px) {
      .spSlider .navigation .swiper-button-prev {
        left: 32px;
        right: auto; } }
    @media only screen and (max-width: 767px) {
      .spSlider .navigation .swiper-button-prev {
        left: -20px; } }
  .spSlider .navigation .swiper-button-next {
    right: auto;
    left: calc(50vw + 718px); }
    @media only screen and (max-width: 1600px) {
      .spSlider .navigation .swiper-button-next {
        right: 32px;
        left: auto; } }
    @media only screen and (max-width: 767px) {
      .spSlider .navigation .swiper-button-next {
        right: -20px; } }

@media only screen and (max-width: 767px) {
  .c-interviewSlider {
    overflow: visible; } }

@media only screen and (max-width: 767px) {
  .c-interviewSlider .c-interviewList li {
    width: 100%; } }

.c-interviewList {
  display: flex; }
  .c-interviewList li {
    width: 31.48148148%;
    margin-right: 2.77777778%; }
    @media only screen and (min-width: 768px) {
      .c-interviewList li:nth-of-type(-n + 3) {
        margin-top: 0; } }
    @media only screen and (min-width: 768px) {
      .c-interviewList li:nth-of-type(3n) {
        margin-right: 0; } }
    .c-interviewList li a:hover {
      opacity: 1; }
      .c-interviewList li a:hover .image:after {
        opacity: 1; }
      .c-interviewList li a:hover .text {
        color: #3264ff; }
        .c-interviewList li a:hover .text .titleBox span {
          opacity: 0.6; }
        .c-interviewList li a:hover .text .credit .credit__interviewer {
          opacity: 0.6; }
        .c-interviewList li a:hover .text .annotation {
          opacity: 0.6; }
    .c-interviewList li .image {
      padding-top: 66.76470588%;
      position: relative;
      overflow: hidden;
      border-radius: 0 100px 0 0; }
      .c-interviewList li .image:after {
        content: "";
        width: 100%;
        height: 100%;
        display: block;
        background: rgba(255, 255, 255, 0.4);
        position: absolute;
        top: 0;
        left: 0;
        transition: opacity .3s;
        opacity: 0; }
      .c-interviewList li .image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center; }
    .c-interviewList li .text {
      margin-top: 30px;
      transition: color .3s; }
      @media only screen and (max-width: 767px) {
        .c-interviewList li .text {
          padding: 0 14px; } }
      .c-interviewList li .text .titleBox {
        margin-bottom: 14px; }
        @media only screen and (max-width: 767px) {
          .c-interviewList li .text .titleBox {
            margin-bottom: 14px; } }
        .c-interviewList li .text .titleBox span {
          font-size: 14px;
          font-size: 1.4rem;
          line-height: 1.82352941;
          letter-spacing: 0.05em;
          font-weight: 600;
          display: block;
          font-feature-settings: "palt";
          margin-bottom: 2px;
          color: #231815;
          transition: opacity .3s; }
          @media only screen and (max-width: 767px) {
            .c-interviewList li .text .titleBox span {
              font-size: 13px;
              font-size: 1.3rem; } }
        .c-interviewList li .text .titleBox h3 {
          font-size: 21px;
          font-size: 2.1rem;
          line-height: 1.57142857;
          letter-spacing: 0.05em;
          font-weight: 900;
          font-family: "source-han-serif-japanese", serif;
          font-feature-settings: "palt"; }
          @media only screen and (max-width: 767px) {
            .c-interviewList li .text .titleBox h3 {
              font-size: 21px;
              font-size: 2.1rem; } }
      .c-interviewList li .text .credit {
        margin-bottom: 18px; }
        .c-interviewList li .text .credit__name {
          margin-bottom: 18px; }
          .c-interviewList li .text .credit__name .jp {
            font-size: 24px;
            font-size: 2.4rem;
            font-family: "source-han-serif-japanese", serif;
            font-weight: 900;
            letter-spacing: 0.05em;
            line-height: 1.6;
            font-feature-settings: "palt"; }
            @media only screen and (max-width: 767px) {
              .c-interviewList li .text .credit__name .jp {
                font-size: 23px;
                font-size: 2.3rem; } }
            .c-interviewList li .text .credit__name .jp small {
              font-size: 14px;
              font-size: 1.4rem;
              font-family: "dnp-shuei-gothic-kin-std", sans-serif;
              font-weight: 600; }
              @media only screen and (max-width: 767px) {
                .c-interviewList li .text .credit__name .jp small {
                  display: block; } }
            @media only screen and (max-width: 767px) {
              .c-interviewList li .text .credit__name .jp br {
                display: none; } }
          .c-interviewList li .text .credit__name .en {
            font-size: 14px;
            font-size: 1.4rem;
            letter-spacing: 0.1em;
            font-weight: 500;
            font-family: "Inter", sans-serif;
            display: block;
            font-feature-settings: "palt";
            margin-top: 8px; }
            @media only screen and (max-width: 767px) {
              .c-interviewList li .text .credit__name .en {
                font-size: 13px;
                font-size: 1.3rem; } }
        .c-interviewList li .text .credit__interviewer {
          font-size: 14px;
          font-size: 1.4rem;
          letter-spacing: 0.05em;
          line-height: 1.82352941;
          font-weight: 600;
          font-feature-settings: "palt";
          color: #231815;
          transition: opacity .3s; }
          @media only screen and (max-width: 767px) {
            .c-interviewList li .text .credit__interviewer {
              font-size: 13px;
              font-size: 1.3rem; } }
      .c-interviewList li .text .annotation {
        font-size: 12px;
        font-size: 1.2rem;
        letter-spacing: 0.05em;
        line-height: 1.90909091;
        font-weight: 500;
        margin-bottom: 12px;
        color: #231815;
        transition: opacity .3s; }
      .c-interviewList li .text .btn {
        display: inline-block;
        padding: 6px;
        border: 1px solid #0025ff;
        font-size: 12px;
        font-size: 1.2rem;
        letter-spacing: 0.05em;
        font-weight: 500; }

.c-newsList li {
  border-bottom: 1px dashed #0025ff; }
  .c-newsList li a {
    display: flex;
    align-items: center;
    padding: 20px 0 16px; }
    .c-newsList li a:hover {
      opacity: 1; }
      .c-newsList li a:hover .date {
        opacity: 0.6; }
      .c-newsList li a:hover .cate {
        background: #0025ff;
        color: #fff; }
      .c-newsList li a:hover .title {
        opacity: 0.6; }
    @media only screen and (max-width: 767px) {
      .c-newsList li a {
        padding: 32px 0 14px;
        flex-direction: column;
        align-items: flex-start; } }
    .c-newsList li a .date {
      width: 116px;
      font-size: 13px;
      font-size: 1.3rem;
      letter-spacing: 0.1em;
      font-weight: 500;
      font-family: "Inter", sans-serif;
      transition: opacity .3s;
      color: #231815; }
      @media only screen and (max-width: 767px) {
        .c-newsList li a .date {
          order: 3;
          margin-top: 32px; } }
    .c-newsList li a .cate {
      min-width: 131px;
      height: 30px;
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      width: max-content;
      border: 1px solid #0025ff;
      font-size: 14px;
      font-size: 1.4rem;
      letter-spacing: 0.05em;
      font-weight: 600;
      margin-right: 26px;
      transition: color .3s, background-color .3s; }
      @media only screen and (max-width: 767px) {
        .c-newsList li a .cate {
          order: 1;
          margin-bottom: 8px;
          font-size: 17px;
          font-size: 1.7rem;
          font-size: 1.3rem;
         } }
    .c-newsList li a .title {
      font-size: 14px;
      font-size: 1.4rem;
      letter-spacing: 0.05em;
      line-height: 1.71428571;
      font-weight: 600;
      max-width: calc(100% - 272px);
      transition: opacity .3s;
      color: #231815; }
      @media only screen and (max-width: 767px) {
        .c-newsList li a .title {
          order: 2;
          max-width: 100%;
          width: 100%;
          /* font-size: 17px;
          font-size: 1.7rem; */
         } }

/* Z-INDEX */
.formError {
  z-index: 990; }

.formError .formErrorContent {
  z-index: 991; }

.formError .formErrorArrow {
  z-index: 996; }

.ui-dialog .formError {
  z-index: 5000; }

.ui-dialog .formError .formErrorContent {
  z-index: 5001; }

.ui-dialog .formError .formErrorArrow {
  z-index: 5006; }

.inputContainer {
  position: relative;
  float: left; }

.formError {
  position: absolute;
  top: 300px;
  left: 300px;
  display: block;
  cursor: pointer;
  text-align: left; }

.formError.inline {
  position: relative;
  top: 0;
  left: 0;
  display: inline-block; }

.ajaxSubmit {
  padding: 20px;
  background: #55ea55;
  border: 1px solid #999;
  display: none; }

.formError .formErrorContent {
  width: 100%;
  background: #ee0101;
  position: relative;
  color: #fff;
  min-width: 120px;
  font-size: 11px;
  border: 2px solid #ddd;
  box-shadow: 0 0 6px #000;
  -moz-box-shadow: 0 0 6px #000;
  -webkit-box-shadow: 0 0 6px #000;
  -o-box-shadow: 0 0 6px #000;
  padding: 4px 10px 4px 10px;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -o-border-radius: 6px; }

.formError.inline .formErrorContent {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  border: none;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -o-border-radius: 0; }

.greenPopup .formErrorContent {
  background: #33be40; }

.blackPopup .formErrorContent {
  background: #393939;
  color: #FFF; }

.formError .formErrorArrow {
  width: 15px;
  margin: -2px 0 0 13px;
  position: relative; }

body[dir='rtl'] .formError .formErrorArrow,
body.rtl .formError .formErrorArrow {
  margin: -2px 13px 0 0; }

.formError .formErrorArrowBottom {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  margin: 0px 0 0 12px;
  top: 2px; }

.formError .formErrorArrow div {
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
  box-shadow: 0 2px 3px #444;
  -moz-box-shadow: 0 2px 3px #444;
  -webkit-box-shadow: 0 2px 3px #444;
  -o-box-shadow: 0 2px 3px #444;
  font-size: 0px;
  height: 1px;
  background: #ee0101;
  margin: 0 auto;
  line-height: 0;
  font-size: 0;
  display: block; }

.formError .formErrorArrowBottom div {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none; }

.greenPopup .formErrorArrow div {
  background: #33be40; }

.blackPopup .formErrorArrow div {
  background: #393939;
  color: #FFF; }

.formError .formErrorArrow .line10 {
  width: 13px;
  border: none; }

.formError .formErrorArrow .line9 {
  width: 11px;
  border: none; }

.formError .formErrorArrow .line8 {
  width: 11px; }

.formError .formErrorArrow .line7 {
  width: 9px; }

.formError .formErrorArrow .line6 {
  width: 7px; }

.formError .formErrorArrow .line5 {
  width: 5px; }

.formError .formErrorArrow .line4 {
  width: 3px; }

.formError .formErrorArrow .line3 {
  width: 1px;
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
  border-bottom: 0 solid #ddd; }

.formError .formErrorArrow .line2 {
  width: 3px;
  border: none;
  background: #ddd; }

.formError .formErrorArrow .line1 {
  width: 1px;
  border: none;
  background: #ddd; }

body.about main {
  padding-bottom: 244px; }
  @media only screen and (max-width: 767px) {
    body.about main {
      padding-top: 0px;
      padding-bottom: 60px; } }

body.about .topMovie {
  width: 100vw;
  height: 100vh; }
  body.about .topMovie video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center; }

body.about .main-visual {
  height: 100vh; }
  @media only screen and (max-width: 767px) {
    body.about .main-visual {
      height: calc(100vh - 53px); } }
  body.about .main-visual .inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center; }
  body.about .main-visual__text h2 {
    margin-bottom: 66px; }
    @media only screen and (max-width: 767px) {
      body.about .main-visual__text h2 {
        margin-bottom: 38px; } }
    body.about .main-visual__text h2 .jp {
      font-size: 24px;
      font-size: 2.4rem;
      letter-spacing: 0.05em;
      line-height: 1.75;
      font-weight: 900;
      display: block;
      font-family: "source-han-serif-japanese", serif; }
      @media only screen and (max-width: 767px) {
        body.about .main-visual__text h2 .jp {
          font-size: 23px;
          font-size: 2.3rem; } }
      body.about .main-visual__text h2 .jp span {
        font-family: "Inter", sans-serif; }
    body.about .main-visual__text h2 .en {
      display: block;
      font-family: "Inter", sans-serif;
      font-size: 14px;
      font-size: 1.4rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      margin-top: 2px; }
      @media only screen and (max-width: 767px) {
        body.about .main-visual__text h2 .en {
          font-size: 14px;
          font-size: 1.4rem; } }
  body.about .main-visual__text strong {
    display: block;
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 1.75;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 58px;
    font-feature-settings: "palt"; }
    @media only screen and (max-width: 767px) {
      body.about .main-visual__text strong {
        font-size: 18px;
        font-size: 1.8rem;
        margin-bottom: 34px; } }
  body.about .main-visual__text p {
    font-size: 18px;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    line-height: 2;
    font-weight: 500;
    color: #231815; }
    @media only screen and (max-width: 767px) {
      body.about .main-visual__text p {
        font-size: 13px;
        font-size: 1.3rem;
        text-align: left; } }

body.about section {
  margin-bottom: 200px; }
  @media only screen and (max-width: 767px) {
    body.about section {
      margin-bottom: 100px; } }
  body.about section:last-of-type {
    margin-bottom: 0; }
  body.about section .inner {
    max-width: 1160px; }
    @media only screen and (max-width: 767px) {
      body.about section .inner {
        padding: 0 40px; } }
  body.about section .c-title02 {
    margin-bottom: 100px;
    font-feature-settings: "palt"; }
    @media only screen and (max-width: 767px) {
      body.about section .c-title02 {
        margin-bottom: 40px; } }
    @media only screen and (min-width: 768px) {
      body.about section .c-title02 .jp {
        font-size: 24px;
        font-size: 2.4rem; } }
    @media only screen and (min-width: 768px) {
      body.about section .c-title02 .en {
        font-size: 14px;
        font-size: 1.4rem;
        margin-top: 10px; } }
  body.about section .col {
    display: flex;
    justify-content: space-between; }
    @media only screen and (max-width: 767px) {
      body.about section .col {
        display: block; } }
    body.about section .col .left {
      width: 47.5%; }
      @media only screen and (max-width: 767px) {
        body.about section .col .left {
          width: 100%;
          padding-top: 0;
          margin-bottom: 40px; } }
      body.about section .col .left__box {
        position: sticky;
        top: 130px; }
        @media only screen and (max-width: 767px) {
          body.about section .col .left__box figure > div {
            margin: 0 -28px; } }
        body.about section .col .left__box figure > div img {
          width: 100%; }
        body.about section .col .left__box figure figcaption {
          margin-top: 28px;
          text-align: right;
          font-size: 17px;
          font-size: 1.7rem;
          letter-spacing: 0.1em;
          line-height: 1.41176471; }
          @media only screen and (max-width: 767px) {
            body.about section .col .left__box figure figcaption {
              font-size: 14px;
              font-size: 1.4rem;
              margin-top: 16px; } }
        body.about section .col .cont .btn {
          width: 226px;
          height: 54px;
          border-radius: 27px;
          border: 1px solid #0025ff;
          display: flex;
          align-items: center;
          justify-content: center;
          margin: 50px auto 0;
          transition: background-color .3s, color .3s; }
          @media only screen and (max-width: 767px) {
            body.about section .col .cont .btn {
              margin-top: 30px; } }
          body.about section .col .cont .btn:hover {
            background: #0025ff;
            color: #fff;
            opacity: 1; }
            body.about section .col .cont .btn:hover i svg path {
              fill: #fff; }
          body.about section .col .cont .btn i {
            display: inline-block;
            width: 17px;
            margin-right: 8px; }
            body.about section .col .cont .btn i svg {
              display: block; }
              body.about section .col .cont .btn i svg path {
                transition: fill .3s; }
          body.about section .col .left__box .btn span {
            font-size: 17px;
            font-size: 1.7rem;
            letter-spacing: 0.05em;
            font-weight: 500; }
    body.about section .col .cont {
      width: 47.5%; }
      @media only screen and (max-width: 767px) {
        body.about section .col .cont {
          width: 100%; } }
      body.about section .col .cont .title {
        font-size: 27px;
        font-size: 2.7rem;
        letter-spacing: 0.05em;
        line-height: 1.76190476;
        font-weight: 600;
        margin-top: -10px;
        margin-bottom: 6px;
        font-feature-settings: "palt"; }
        @media only screen and (max-width: 767px) {
          body.about section .col .cont .title {
            font-size: 20px;
            font-size: 2rem; } }
      body.about section .col .cont h4 {
        font-size: 24px;
        font-size: 2.4rem;
        letter-spacing: 0.05em;
        line-height: 1.75;
        font-weight: 600;
        margin-bottom: 34px;
        margin-top: -5px; }
        @media only screen and (max-width: 767px) {
          body.about section .col .cont h4 {
            font-size: 20px;
            font-size: 2rem;
            margin-bottom: 18px; } }
        body.about section .col .cont h4.indent {
          text-indent: -0.5em; }
      body.about section .col .cont p {
        font-size: 13px;
        font-size: 1.3rem;
        line-height: 1.72727273;
        letter-spacing: 0.05em;
        font-weight: 500;
        color: #231815; }
        @media only screen and (max-width: 767px) {
          body.about section .col .cont p {
            font-size: 14px;
            font-size: 1.4rem; } }
      body.about section .col .cont .right {
        text-align: right;
        margin-top: 26px; }
      body.about section .col .cont .table {
        margin-top: 0; }
        body.about section .col .cont .table table {
          width: 100%; }
          @media only screen and (max-width: 767px) {
            body.about section .col .cont .table table {
              display: block; } }
          @media only screen and (max-width: 767px) {
            body.about section .col .cont .table table tbody {
              display: block; } }
          @media only screen and (max-width: 767px) {
            body.about section .col .cont .table table tbody tr {
              display: block;
              border-bottom: 1px dashed #0025ff; } }
          body.about section .col .cont .table table tbody tr th {
            width: 100px;
            border-bottom: 1px dashed #0025ff;
            font-size: 13px;
            font-size: 1.3rem;
            letter-spacing: 0.05em;
            font-weight: 500;
            line-height: 1.5;
            padding: 12px 0 6px;
            vertical-align: top;
            color: #231815; }
            @media only screen and (max-width: 767px) {
              body.about section .col .cont .table table tbody tr th {
                font-size: 14px;
                font-size: 1.4rem;
                display: block;
                width: 100%;
                border: none;
                padding-top: 24px;
                padding-bottom: 0; } }
          body.about section .col .cont .table table tbody tr td {
            width: calc(100% - 100px);
            border-bottom: 1px dashed #0025ff;
            font-size: 13px;
            font-size: 1.3rem;
            letter-spacing: 0.05em;
            font-weight: 500;
            line-height: 1.5;
            padding: 12px 0 6px;
            color: #231815; }
            @media only screen and (max-width: 767px) {
              body.about section .col .cont .table table tbody tr td {
                font-size: 14px;
                font-size: 1.4rem;
                display: block;
                width: 100%;
                border: none;
                padding-top: 8px; } }
      body.about section .col .cont .map {
        margin-top: 32px;
        position: relative;
        display: block; }
        @media only screen and (max-width: 767px) {
          body.about section .col .cont .map {
            margin-top: 46px; } }
        body.about section .col .cont .map iframe {
          width: 100%;
          height: 100%; }
      body.about section .col .cont .historyTable {
        margin-top: 0; }
        @media only screen and (max-width: 767px) {
          body.about section .col .cont .historyTable table {
            display: block; } }
        @media only screen and (max-width: 767px) {
          body.about section .col .cont .historyTable table tbody {
            display: block; } }
        @media only screen and (max-width: 767px) {
          body.about section .col .cont .historyTable table tbody tr {
            display: block;
            margin-bottom: 16px; } }
        body.about section .col .cont .historyTable table tbody tr th {
          width: 70px;
          font-size: 13px;
          font-size: 1.3rem;
          letter-spacing: 0.05em;
          font-weight: 500;
          line-height: 2;
          vertical-align: top;
          color: #231815; }
          @media only screen and (max-width: 767px) {
            body.about section .col .cont .historyTable table tbody tr th {
              font-size: 14px;
              font-size: 1.4rem;
              display: block;
              width: 100%; } }
        body.about section .col .cont .historyTable table tbody tr td {
          width: calc(100% - 70px);
          font-size: 13px;
          font-size: 1.3rem;
          letter-spacing: 0.05em;
          font-weight: 500;
          line-height: 2;
          color: #231815; }
          @media only screen and (max-width: 767px) {
            body.about section .col .cont .historyTable table tbody tr td {
              font-size: 14px;
              font-size: 1.4rem;
              width: 100%; } }

body.contact .whole {
  padding: 210px 0 325px; }
  @media only screen and (max-width: 767px) {
    body.contact .whole {
      padding: 98px 0 84px; } }
  body.contact .whole .inner {
    max-width: 1160px; }
    @media only screen and (max-width: 767px) {
      body.contact .whole .inner {
        padding: 0 20px; } }
  body.contact .whole .head {
    max-width: 692px;
    margin: 0 auto 146px; }
    @media only screen and (max-width: 767px) {
      body.contact .whole .head {
        margin-bottom: 54px; } }
    body.contact .whole .head p {
      font-size: 13px;
      font-size: 1.3rem;
      letter-spacing: 0.05em;
      line-height: 1.73076923;
      font-weight: 500;
      margin-top: 68px;
      font-feature-settings: "palt";
      color: #231815; }
      @media only screen and (max-width: 767px) {
        body.contact .whole .head p {
          font-size: 13px;
          font-size: 1.3rem;
          line-height: 2.05882353;
          margin-top: 34px; } }
  body.contact .whole .formArea h3 {
    margin-bottom: 70px; }
    @media only screen and (max-width: 767px) {
      body.contact .whole .formArea h3 {
        margin-bottom: 25px; } }
    body.contact .whole .formArea h3 span {
      font-size: 17px;
      font-size: 1.7rem;
      letter-spacing: 0.05em;
      line-height: 1.75;
      font-weight: 600; }
      @media only screen and (max-width: 767px) {
        body.contact .whole .formArea h3 span {
          font-size: 21px;
          font-size: 2.1rem; } }
    body.contact .whole .formArea h3 small {
      font-size: 13px;
      font-size: 1.3rem;
      letter-spacing: 0.05em;
      line-height: 2.69230769;
      font-weight: 500; }
      @media only screen and (max-width: 767px) {
        body.contact .whole .formArea h3 small {
          font-size: 13px;
          font-size: 1.3rem;
          display: block;
          line-height: 1.5; } }
      body.contact .whole .formArea h3 small em {
        color: #ff0000; }
  body.contact .whole .formArea .col2 {
    display: flex;
    align-items: flex-end;
    justify-content: space-between; }
    @media only screen and (max-width: 767px) {
      body.contact .whole .formArea .col2 {
        display: block; } }
    body.contact .whole .formArea .col2 dl {
      width: calc((100% - 40px) / 2); }
      @media only screen and (max-width: 767px) {
        body.contact .whole .formArea .col2 dl {
          width: 100%; } }
    @media only screen and (max-width: 767px) {
      body.contact .whole .formArea .col2 .sp-mb {
        margin-bottom: 16px; } }
  body.contact .whole .formArea dl {
    margin-bottom: 40px; }
    @media only screen and (max-width: 767px) {
      body.contact .whole .formArea dl {
        margin-bottom: 30px; } }
    body.contact .whole .formArea dl dt {
      font-size: 13px;
      font-size: 1.3rem;
      letter-spacing: 0.05em;
      line-height: 1.5;
      font-weight: 500;
      margin-bottom: 8px; }
      @media only screen and (max-width: 767px) {
        body.contact .whole .formArea dl dt {
          font-size: 15px;
          font-size: 1.5rem; } }
      body.contact .whole .formArea dl dt em {
        color: #ff0000; }
    body.contact .whole .formArea dl dd input[type="text"] {
      width: 100%;
      height: 50px;
      border-radius: 6px;
      background: #eaeaea;
      padding: 10px 20px;
      font-size: 13px;
      font-size: 1.3rem;
      letter-spacing: 0.05em;
      font-weight: 500;
      line-height: 1.75; }
      @media only screen and (max-width: 767px) {
        body.contact .whole .formArea dl dd input[type="text"] {
          font-size: 14px;
          font-size: 1.4rem;
          height: 60px;
          padding: 10px; } }
      body.contact .whole .formArea dl dd input[type="text"]::placeholder {
        color: #231815; }
    body.contact .whole .formArea dl dd select {
      width: 100%;
      height: 50px;
      border-radius: 6px;
      background: #eaeaea;
      padding: 10px 20px;
      font-size: 13px;
      font-size: 1.3rem;
      letter-spacing: 0.05em;
      font-weight: 500;
      line-height: 1.75; }
      @media only screen and (max-width: 767px) {
        body.contact .whole .formArea dl dd select {
          font-size: 14px;
          font-size: 1.4rem;
          height: 60px;
          padding: 10px; } }
      body.contact .whole .formArea dl dd select::placeholder {
        color: #231815; }
    body.contact .whole .formArea dl dd textarea {
      width: 100%;
      height: 275px;
      border-radius: 6px;
      background: #eaeaea;
      padding: 10px 20px;
      font-size: 13px;
      font-size: 1.3rem;
      letter-spacing: 0.05em;
      font-weight: 500;
      line-height: 1.75; }
      @media only screen and (max-width: 767px) {
        body.contact .whole .formArea dl dd textarea {
          font-size: 12px;
          font-size: 1.2rem;
          height: 48px;
          height: 300px;
          padding: 10px; } }
      body.contact .whole .formArea dl dd textarea::placeholder {
        color: #231815; }
    body.contact .whole .formArea dl dd p {
      font-size: 13px;
      font-size: 1.3rem;
      letter-spacing: 0.05em;
      font-weight: 500;
      line-height: 1.75;
      word-break: break-all; }
      @media only screen and (max-width: 767px) {
        body.contact .whole .formArea dl dd p {
          font-size: 14px;
          font-size: 1.4rem; } }
  body.contact .whole .formArea .g-recaptcha > div {
    margin: 0 auto 40px; }
  body.contact .whole .formArea .btnWrap {
    text-align: center;
    margin-top: 64px; }
    body.contact .whole .formArea .btnWrap .modify {
      font-size: 20px;
      font-size: 2rem;
      text-decoration: underline;
      display: inline-block;
      margin-top: 40px;
      letter-spacing: 0.1em; }
      @media only screen and (max-width: 767px) {
        body.contact .whole .formArea .btnWrap .modify {
          font-size: 17px;
          font-size: 1.7rem; } }
  body.contact .whole .other {
    margin-top: 86px; }
    @media only screen and (max-width: 767px) {
      body.contact .whole .other {
        margin: 86px 0px 0; } }
    body.contact .whole .other h3 {
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.2;
      font-weight: 600;
      margin-bottom: 24px; }
      @media only screen and (max-width: 767px) {
        body.contact .whole .other h3 {
          font-size: 13px;
          font-size: 1.3rem;
          line-height: 1.5; } }
    body.contact .whole .other__list {
      display: flex;
      flex-wrap: wrap; }
      body.contact .whole .other__list li {
        width: 14.81481481%;
        margin-right: 2.22222223%;
        margin-top: 2.22222223%; }
        @media only screen and (max-width: 767px) {
          body.contact .whole .other__list li {
            width: 48%;
            margin-right: 4%;
            margin-top: 4%; } }
        @media only screen and (max-width: 767px) {
          body.contact .whole .other__list li:nth-of-type(-n + 2) {
            margin-top: 0; } }
        @media only screen and (max-width: 767px) {
          body.contact .whole .other__list li:nth-of-type(2n) {
            margin-right: 0; } }
        @media only screen and (min-width: 768px) {
          body.contact .whole .other__list li:nth-of-type(-n + 6) {
            margin-top: 0; } }
        @media only screen and (min-width: 768px) {
          body.contact .whole .other__list li:nth-of-type(6n) {
            margin-right: 0; } }
  body.contact .whole .thanks {
    padding: 90px 0 0;
    text-align: center; }
    @media only screen and (max-width: 767px) {
      body.contact .whole .thanks {
        padding-top: 0; } }
    @media only screen and (max-width: 767px) {
      body.contact .whole .thanks {
        padding-top: 45px; } }
    body.contact .whole .thanks p {
      font-size: 17px;
      font-size: 1.7rem;
      letter-spacing: 0.05em;
      line-height: 2.05882353;
      font-weight: 500;
      margin-bottom: 114px; }
      @media only screen and (max-width: 767px) {
        body.contact .whole .thanks p {
          font-size: 12px;
          font-size: 1.2rem;
          line-height: 1.875;
          margin-bottom: 70px; } }

body.interview_detail .whole {
  padding: 246px 0 470px; }
  @media only screen and (max-width: 767px) {
    body.interview_detail .whole {
      padding: 68px 0 0px; } }
  body.interview_detail .whole .inner {
    max-width: 1160px; }
    @media only screen and (max-width: 767px) {
      body.interview_detail .whole .inner {
        padding: 0 20px; } }
  @media only screen and (max-width: 767px) {
    body.interview_detail .whole__wrap {
      background: #fffef5;
      position: relative;
      z-index: +1;
      margin: 0 -20px;
      margin-top: 100vh; } }

body.interview_detail .background {
  padding: 120px 0 0;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; }
  body.interview_detail .background__title {
    margin-bottom: 16px;
    padding: 0 20px; }
    body.interview_detail .background__title .jp {
      font-size: 28px;
      font-size: 2.8rem;
      letter-spacing: 0.05em;
      font-weight: 900;
      display: block;
      margin-bottom: 10px;
      font-family: "source-han-serif-japanese", serif;
      font-feature-settings: "palt"; }
    body.interview_detail .background__title .en {
      font-size: 17px;
      font-size: 1.7rem;
      letter-spacing: 0.1em;
      font-weight: 500;
      font-family: "Inter", sans-serif;
      display: block; }
  body.interview_detail .background__image {
    height: calc(100vh - 188px);
    width: 100%;
    border-radius: 0 200px 0 0;
    overflow: hidden; }
    body.interview_detail .background__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center; }

body.interview_detail .head {
  display: flex;
  align-items: flex-end;
  margin-bottom: 150px; }
  @media only screen and (max-width: 767px) {
    body.interview_detail .head {
      display: block;
      margin-bottom: 26px;
      background: #fff;
      padding: 58px 20px 68px; } }
  body.interview_detail .head__text {
    width: 30.55555556%;
    padding-right: 20px; }
    @media only screen and (max-width: 767px) {
      body.interview_detail .head__text {
        width: 100%;
        padding-right: 0; } }
    body.interview_detail .head__text .title {
      margin-bottom: 62px; }
      @media only screen and (max-width: 767px) {
        body.interview_detail .head__text .title {
          text-align: center; } }
      body.interview_detail .head__text .title .jp {
        font-size: 22px;
        font-size: 2.2rem;
        letter-spacing: 0.03em;
        font-family: "source-han-serif-japanese", serif;
        display: block;
        font-weight: 900;
        font-feature-settings: "palt";
        margin-bottom: 10px; }
        @media only screen and (max-width: 767px) {
          body.interview_detail .head__text .title .jp {
            font-size: 23px;
            font-size: 2.3rem; } }
      body.interview_detail .head__text .title .en {
        font-size: 22px;
        font-size: 2.2rem;
        letter-spacing: 0.1em;
        font-weight: 500;
        font-family: "Inter", sans-serif;
        display: block;
        font-feature-settings: "palt"; }
        @media only screen and (max-width: 767px) {
          body.interview_detail .head__text .title .en {
            font-size: 23px;
            font-size: 2.3rem; } }
    body.interview_detail .head__text .titleBox {
      margin-bottom: 40px; }
      @media only screen and (max-width: 767px) {
        body.interview_detail .head__text .titleBox {
          margin-bottom: 24px; } }
      body.interview_detail .head__text .titleBox span {
        font-size: 18px;
        font-size: 1.8rem;
        line-height: 1.82352941;
        letter-spacing: 0.05em;
        font-weight: 600;
        display: block;
        margin-bottom: 3px;
        font-feature-settings: "palt";
        color: #231815; }
        @media only screen and (max-width: 767px) {
          body.interview_detail .head__text .titleBox span {
            font-size: 13px;
            font-size: 1.3rem; } }
      body.interview_detail .head__text .titleBox h3 {
        font-size: 28px;
        font-size: 2.8rem;
        line-height: 1.57142857;
        letter-spacing: 0.05em;
        font-weight: 900;
        font-family: "source-han-serif-japanese", serif;
        font-feature-settings: "palt"; }
        @media only screen and (max-width: 767px) {
          body.interview_detail .head__text .titleBox h3 {
            font-size: 24px;
            font-size: 2.4rem; } }
    @media only screen and (max-width: 767px) {
      body.interview_detail .head__text .image {
        margin-bottom: 24px; } }
    body.interview_detail .head__text .credit__name {
      margin-bottom: 12px; }
      body.interview_detail .head__text .credit__name .jp {
        font-size: 22px;
        font-size: 2.2rem;
        font-family: "source-han-serif-japanese", serif;
        font-weight: 900;
        letter-spacing: 0.05em;
        line-height: 1.76190476;
        font-feature-settings: "palt"; }
        @media only screen and (max-width: 767px) {
          body.interview_detail .head__text .credit__name .jp {
            font-size: 23px;
            font-size: 2.3rem; } }
        body.interview_detail .head__text .credit__name .jp small {
          font-size: 15px;
          font-size: 1.5rem;
          font-family: "dnp-shuei-gothic-kin-std", sans-serif;
          font-weight: 600; }
      body.interview_detail .head__text .credit__name .en {
        font-size: 18px;
        font-size: 1.8rem;
        letter-spacing: 0.1em;
        font-weight: 500;
        font-family: "Inter", sans-serif;
        display: block;
        font-feature-settings: "palt";
        margin-right: 3px; }
        @media only screen and (max-width: 767px) {
          body.interview_detail .head__text .credit__name .en {
            font-size: 13px;
            font-size: 1.3rem; } }
    body.interview_detail .head__text .credit__interviewer {
      font-size: 18px;
      font-size: 1.8rem;
      letter-spacing: 0.05em;
      line-height: 1.82352941;
      font-weight: 600;
      font-feature-settings: "palt";
      color: #231815; }
      @media only screen and (max-width: 767px) {
        body.interview_detail .head__text .credit__interviewer {
          font-size: 13px;
          font-size: 1.3rem; } }
  body.interview_detail .head__image {
    width: 69.44444444%; }
    @media only screen and (max-width: 767px) {
      body.interview_detail .head__image {
        width: 100%; } }

@media only screen and (max-width: 767px) {
  body.interview_detail .contents {
    padding-bottom: 90px; } }

body.interview_detail .contents .col {
  margin-bottom: 80px;
  display: flex;
  justify-content: space-between; }
  @media only screen and (max-width: 767px) {
    body.interview_detail .contents .col {
      flex-direction: column;
      margin-bottom: 60px; } }
  body.interview_detail .contents .col:last-of-type {
    margin-bottom: 0; }

body.interview_detail .contents .imageWrap {
  width: 32.40740741%; }
  @media only screen and (max-width: 767px) {
    body.interview_detail .contents .imageWrap {
      width: 100%;
      order: 2;
      margin-top: 24px; } }
  body.interview_detail .contents .imageWrap figure {
    margin-bottom: 90px; }
    @media only screen and (max-width: 767px) {
      body.interview_detail .contents .imageWrap figure {
        margin-bottom: 32px; } }
    body.interview_detail .contents .imageWrap figure:last-of-type {
      margin-bottom: 0; }
    body.interview_detail .contents .imageWrap figure img {
      width: 100%; }
    body.interview_detail .contents .imageWrap figure figcaption {
      font-size: 13px;
      font-size: 1.3rem;
      line-height: 1.45454545;
      letter-spacing: 0.05em;
      color: #595757;
      display: block;
      margin-top: 12px; }
      @media only screen and (max-width: 767px) {
        body.interview_detail .contents .imageWrap figure figcaption {
          font-size: 12px;
          font-size: 1.2rem;
          padding: 0 20px;
          margin-top: 10px; } }

body.interview_detail .contents .textWrap {
  width: 62.59259259%;
  margin-left: auto; }
  @media only screen and (max-width: 767px) {
    body.interview_detail .contents .textWrap {
      width: 100%;
      order: 1;
      padding: 0 20px; } }
  body.interview_detail .contents .textWrap dl dt {
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.82352941;
    letter-spacing: 0.05em;
    font-weight: 600;
    font-feature-settings: "palt";
    margin-bottom: 8px; }
    @media only screen and (max-width: 767px) {
      body.interview_detail .contents .textWrap dl dt {
        font-size: 21px;
        font-size: 2.1rem;
        line-height: 1.66666667;
        margin-bottom: 56px; } }
  body.interview_detail .contents .textWrap dl dd {
    color: #231815; }
    body.interview_detail .contents .textWrap dl dd h2 {
      font-size: 24px;
      font-size: 2.4rem;
      line-height: 1.76190476;
      letter-spacing: 0.05em;
      font-weight: 900;
      font-family: "source-han-serif-japanese", serif;
      font-feature-settings: "palt";
      margin-bottom: 32px;
      color: #0025ff; }
      @media only screen and (max-width: 767px) {
        body.interview_detail .contents .textWrap dl dd h2 {
          font-size: 24px;
          font-size: 2.4rem;
          line-height: 1.79166667;
          margin-bottom: 28px; } }
    body.interview_detail .contents .textWrap dl dd b {
      color: #0025ff; }
    body.interview_detail .contents .textWrap dl dd p {
      font-size: 13px;
      font-size: 1.3rem;
      line-height: 2.27272727;
      letter-spacing: 0.05em;
      font-weight: 500;
      font-feature-settings: "palt"; }
      @media only screen and (max-width: 767px) {
        body.interview_detail .contents .textWrap dl dd p {
          font-size: 17px;
          font-size: 1.7rem;
          line-height: 2.05882353; } }
      body.interview_detail .contents .textWrap dl dd p em {
        font-size: 11px;
        font-size: 1.1rem;
        color: #595757; }
        @media only screen and (max-width: 767px) {
          body.interview_detail .contents .textWrap dl dd p em {
            font-size: 14px;
            font-size: 1.4rem; } }

body.interview_detail .contents .interviewer {
  width: 62.59259259%;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
  color: #231815; }
  @media only screen and (max-width: 767px) {
    body.interview_detail .contents .interviewer {
      width: 100%;
      flex-direction: column; } }
  body.interview_detail .contents .interviewer__image {
    width: 28.10650888%; }
    @media only screen and (max-width: 767px) {
      body.interview_detail .contents .interviewer__image {
        width: 100%;
        margin: 0 auto 28px;
        padding-top: 66.66666667%;
        position: relative; } }
    body.interview_detail .contents .interviewer__image img {
      width: 100%; }
      @media only screen and (max-width: 767px) {
        body.interview_detail .contents .interviewer__image img {
          width: 100%;
          height: 100%;
          position: absolute;
          top: 0;
          left: 0;
          object-fit: cover;
          object-position: center; } }
  body.interview_detail .contents .interviewer__text {
    width: 65.38461538%; }
    @media only screen and (max-width: 767px) {
      body.interview_detail .contents .interviewer__text {
        width: 100%;
        padding: 0 20px; } }
    body.interview_detail .contents .interviewer__text strong {
      font-size: 17px;
      font-size: 1.7rem;
      line-height: 1.82352941;
      letter-spacing: 0.05em;
      font-weight: 600;
      display: block;
      margin-bottom: 24px;
      font-feature-settings: "palt"; }
      @media only screen and (max-width: 767px) {
        body.interview_detail .contents .interviewer__text strong {
          font-size: 21px;
          font-size: 2.1rem;
          margin-bottom: 24px; } }
    body.interview_detail .contents .interviewer__text > div {
      font-size: 13px;
      font-size: 1.3rem;
      line-height: 2.27272727;
      letter-spacing: 0.05em;
      font-weight: 500;
      font-feature-settings: "palt"; }
      @media only screen and (max-width: 767px) {
        body.interview_detail .contents .interviewer__text > div {
          font-size: 14px;
          font-size: 1.4rem;
          letter-spacing: 0.05em;
          line-height: 1.78571429;
          font-weight: 200; } }

body.news_detail .whole {
  padding: 182px 0 150px; }
  @media only screen and (max-width: 767px) {
    body.news_detail .whole {
      padding: 98px 0 84px; } }
  body.news_detail .whole .inner {
    max-width: 830px; }
    @media only screen and (max-width: 767px) {
      body.news_detail .whole .inner {
        padding: 0 20px; } }

body.news_detail .head {
  margin-bottom: 72px; }
  @media only screen and (max-width: 767px) {
    body.news_detail .head {
      margin-bottom: 32px; } }

body.news_detail .post .title {
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  line-height: 1.52380952;
  font-weight: 900;
  font-family: "source-han-serif-japanese", serif;
  text-align: center;
  margin-bottom: 66px; }
  @media only screen and (max-width: 767px) {
    body.news_detail .post .title {
      margin-bottom: 48px; } }

body.news_detail .post .cont {
  color: #231815; }
  body.news_detail .post .cont strong {
    font-size: 18px;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    line-height: 2.05882353;
    font-weight: 500;
    display: block;
    margin-bottom: 100px; }
    @media only screen and (max-width: 767px) {
      body.news_detail .post .cont strong {
        font-size: 14px;
        font-size: 1.4rem;
        margin-bottom: 80px; } }
  body.news_detail .post .cont img {
    width: 100%;
    margin-bottom: 50px; }
    @media only screen and (max-width: 767px) {
      body.news_detail .post .cont img {
        margin-bottom: 40px; } }
  body.news_detail .post .cont p {
    font-size: 12px;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    line-height: 2.27272727;
    font-weight: 500;
    margin-bottom: 50px; }
    @media only screen and (max-width: 767px) {
      body.news_detail .post .cont p {
        margin-bottom: 40px; } }

body.news .whole {
  padding: 182px 0 150px; }
  @media only screen and (max-width: 767px) {
    body.news .whole {
      padding: 98px 0 84px; } }
  body.news .whole .inner {
    max-width: 1160px; }
    @media only screen and (max-width: 767px) {
      body.news .whole .inner {
        padding: 0 20px; } }

body.news .col {
  display: flex;
  justify-content: space-between;
  padding-top: 82px; }
  @media only screen and (max-width: 767px) {
    body.news .col {
      flex-direction: column;
      padding-top: 16px; } }
  body.news .col .left {
    width: 300px; }
    @media only screen and (max-width: 767px) {
      body.news .col .left {
        width: 100%; } }
    body.news .col .left .cateList {
      width: 200px;
      position: sticky;
      padding-top: 16px;
      top: 140px; }
      @media only screen and (max-width: 767px) {
        body.news .col .left .cateList {
          margin: 0 auto 20px; } }
      body.news .col .left .cateList li {
        border-bottom: 1px solid #0025ff;
        padding-left: 24px; }
        body.news .col .left .cateList li a {
          font-size: 17px;
          font-size: 1.7rem;
          letter-spacing: 0.1em;
          font-family: "Inter", sans-serif;
          font-weight: 600;
          display: block;
          padding: 15px 0 13px;
          padding-left: 15px;
          position: relative; }
          @media only screen and (max-width: 767px) {
            body.news .col .left .cateList li a {
              font-size: 14px;
              font-size: 1.4rem;
              padding: 13px 0 11px;
              padding-left: 15px; } }
          body.news .col .left .cateList li a:before {
            content: "";
            width: 4px;
            height: 4px;
            display: inline-block;
            background: #0025ff;
            border-radius: 50%;
            position: absolute;
            top: 50%;
            left: 0%;
            transform: translate(0%, -50%); }
  body.news .col .cont {
    width: calc(100% - 300px); }
    @media only screen and (max-width: 767px) {
      body.news .col .cont {
        width: 100%; } }

.pagination {
  margin-top: 80px; }
  @media only screen and (max-width: 767px) {
    .pagination {
      margin-top: 80px; } }
  .pagination .wp-pagenavi {
    display: flex;
    align-items: center;
    justify-content: center; }
    .pagination .wp-pagenavi > span, .pagination .wp-pagenavi a {
      font-size: 15px;
      font-size: 1.5rem;
      letter-spacing: 0.05em;
      font-weight: 500;
      font-family: "Inter", sans-serif;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid #0025ff;
      margin: 0 5px;
      order: 2; }
    .pagination .wp-pagenavi .previouspostslink, .pagination .wp-pagenavi .nextpostslink {
      width: auto;
      height: auto;
      border: none; }
    .pagination .wp-pagenavi .previouspostslink {
      order: 1; }
    .pagination .wp-pagenavi .nextpostslink {
      order: 3; }
    .pagination .wp-pagenavi .current {
      color: #fff;
      background: #0025ff; }
    .pagination .wp-pagenavi .extend {
      width: auto;
      height: auto;
      border: none; }

body.privacy .whole {
  padding: 182px 0 150px; }
  @media only screen and (max-width: 767px) {
    body.privacy .whole {
      padding: 98px 0 84px; } }
  body.privacy .whole .inner {
    max-width: 830px; }
    @media only screen and (max-width: 767px) {
      body.privacy .whole .inner {
        padding: 0 20px; } }

body.privacy .head {
  margin: 0 auto 80px; }
  @media only screen and (max-width: 767px) {
    body.privacy .head {
      margin-bottom: 54px; } }

body.privacy .cont {
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  line-height: 1.73076923;
  font-weight: 400;
  margin-top: 68px;
  font-feature-settings: "palt";
  color: #231815; }
  @media only screen and (max-width: 767px) {
    body.privacy .cont {
      margin-top: 34px; } }
  body.privacy .cont dl {
    margin-bottom: 48px; }
    body.privacy .cont dl dt {
      font-size: 15px;
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 8px; }

body.test main {
  padding: 200px 0; }

@media only screen and (max-width: 767px) {
  body.top main {
    padding-top: 0; } }

body.top .header-simple {
  transform: translate(0, -98px);
  opacity: 0; }
  body.top .header-simple.is-active {
    transform: translate(0, 0px);
    opacity: 1; }

body.top .header {
  transform: translate(0, -70px);
  opacity: 0; }
  body.top .header.is-active {
    transform: translate(0, 0px);
    opacity: 1; }

body.top .footer {
  position: relative;
  display: none; }

body.top .firstView {
  position: fixed;
  width: 100vw;
  height: 100svh;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0%);
  z-index: 101;
  transition: transform 0.6s ease-out, border-radius 0.6s cubic-bezier(0.75, 0.055, 0.675, 0.19), width 0.6s cubic-bezier(0.75, 0.055, 0.675, 0.19), height 0.6s cubic-bezier(0.75, 0.055, 0.675, 0.19), top 0.6s ease-out;
  transition-delay: 0.3s;
  transform-origin: center top; }
  body.top .firstView.hide:after {
    opacity: 1;
    top: -2%;
    left: 51.4%;
    width: calc(max(9.375vw, 16.666vh));
    height: calc(max(9.375vw, 16.666vh));
    transform: translate(-50%, -50%);
    animation-name: small;
    animation-duration: 1s;
    animation-delay: 0.9s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.69, 0.2, 0.88, 0.43); }
    @media only screen and (max-width: 767px) {
      body.top .firstView.hide:after {
        width: calc(max(9vw, 5.8vh));
        height: calc(max(9vw, 5.8vh));
        top: -1%;
        left: 51.8%;
        animation-name: small_sp; } }
  body.top .firstView:after {
    content: "";
    width: 240vmax;
    height: 240vmax;
    border-radius: 50%;
    display: block;
    background: #0025ff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity .6s 0s, transform .6s .3s, width .6s .3s, height .6s .3s, top .6s, left .6s .3s;
    pointer-events: none;
    transform-origin: center center; }
    @media only screen and (max-width: 767px) {
      body.top .firstView:after {
        width: 240vmax;
        height: 240vmax; } }

@keyframes small {
  0% {
    top: -2%;
    opacity: 1; }
  50% {
    top: -2%;
    opacity: 1; }
  97% {
    opacity: 0; }
  100% {
    top: 110vh;
    opacity: 0; } }

@keyframes small_sp {
  0% {
    top: -1%;
    opacity: 1; }
  50% {
    top: -1%;
    opacity: 1; }
  97% {
    opacity: 0; }
  100% {
    top: 105vh;
    opacity: 0; } }
  body.top .firstView__slider {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0; }
    body.top .firstView__slider .swiper-slide {
      width: 100%;
      height: 100%;
      overflow: hidden; }
      body.top .firstView__slider .swiper-slide.swiper-slide-active-prev img {
        animation: zoomIn 7.5s linear 0s 1 normal both; }
      body.top .firstView__slider .swiper-slide.swiper-slide-duplicate-active img, body.top .firstView__slider .swiper-slide.swiper-slide-active img {
        animation: zoomIn 7.5s linear 0s 1 normal both; }
      body.top .firstView__slider .swiper-slide.stop img {
        animation-name: none; }
      body.top .firstView__slider .swiper-slide.start img {
        animation: zoomIn 7.5s linear 0s 1 normal both; }
  body.top .firstView__image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%; }
    body.top .firstView__image:after {
      content: "";
      width: 100%;
      height: 100%;
      display: block;
      background: #0025ff;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      mix-blend-mode: multiply;
      z-index: +1; }
    body.top .firstView__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center; }
  body.top .firstView__text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    width: 100%;
    text-align: center;
    padding-top: 12.48606466vh; }
    @media only screen and (max-width: 767px) {
      body.top .firstView__text {
        padding-top: 0; } }
    body.top .firstView__text p {
      font-size: 36px;
      font-size: 3.6rem;
      line-height: 1.5;
      letter-spacing: 0.025em;
      font-weight: 800;
      margin-bottom: 74px; }
      @media only screen and (max-width: 767px) {
        body.top .firstView__text p {
          font-size: 24px;
          font-size: 2.4rem;
          margin-bottom: 66px; } }
  body.top .firstView__loading {
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 500;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    width: 100%;
    text-align: center; }
    @media only screen and (max-width: 767px) {
      body.top .firstView__loading {
        font-size: 14px;
        font-size: 1.4rem; } }
    body.top .firstView__loading__image {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      height: 100vh;
      width: auto; }
      body.top .firstView__loading__image:after {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        display: block;
        background: #0025ff;
        top: 0;
        left: 0;
        animation: loading 1s linear 0s 1 normal both;
        animation-delay: 1s; }
      body.top .firstView__loading__image img {
        height: 100vh;
        width: auto; }
        @media only screen and (max-width: 767px) {
          body.top .firstView__loading__image img {
            max-width: none; } }
    body.top .firstView__loading__text {
      position: relative; }

@keyframes zoomIn {
  0% {
    transform: scale(1.1); }
  100% {
    transform: scale(1); } }

@keyframes loading {
  0% {
    height: 100%; }
  100% {
    height: 0%; } }

body.top .introMovie {
  width: 100vw;
  height: 100svh;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 100;
  overflow: hidden;
  background: #fff; }
  body.top .introMovie video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center; }
  body.top .introMovie .c-btn {
    position: absolute;
    right: 40px;
    bottom: 40px;
    z-index: +1;
    width: 120px;
    height: 40px;
    font-size: 16px;
    font-size: 1.6rem; }
    @media only screen and (max-width: 767px) {
      body.top .introMovie .c-btn {
        right: 20px;
        bottom: 40px; } }

body.top .intro {
  width: 100vw;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative; }
  body.top .intro__text {
    text-align: center; }
    body.top .intro__text .col {
      color: #231815;
      display: flex;
      align-items: center;
      justify-content: center;
      font-feature-settings: "palt";
      font-weight: 700;
      opacity: 0;
      transform: translate(0, 168px); }
      @media only screen and (max-width: 767px) {
        body.top .intro__text .col {
          transform: translate(0, 235px); } }
      body.top .intro__text .col > span {
        font-size: 17px;
        font-size: 1.7rem;
        letter-spacing: 0.057em;
        line-height: 1.82352941;
        margin-top: 6px;
        margin-right: 26px; }
        @media only screen and (max-width: 767px) {
          body.top .intro__text .col > span {
            font-size: 14px;
            font-size: 1.4rem;
            margin-right: 21px; } }
      body.top .intro__text .col strong {
        font-size: 34px;
        font-size: 3.4rem;
        letter-spacing: 0.05em; }
        @media only screen and (max-width: 767px) {
          body.top .intro__text .col strong {
            font-size: 29px;
            font-size: 2.9rem; } }
      body.top .intro__text .col small {
        font-size: 26px;
        font-size: 2.6rem; }
        @media only screen and (max-width: 767px) {
          body.top .intro__text .col small {
            font-size: 23px;
            font-size: 2.3rem; } }
      body.top .intro__text .col em {
        font-size: 28px;
        font-size: 2.8rem; }
        @media only screen and (max-width: 767px) {
          body.top .intro__text .col em {
            font-size: 24px;
            font-size: 2.4rem; } }
    body.top .intro__text .logo {
      opacity: 0;
      margin: 118px auto 124px; }
      @media only screen and (max-width: 767px) {
        body.top .intro__text .logo {
          width: 204px;
          margin: 80px auto 80px; } }
    body.top .intro__text p {
      opacity: 0;
      font-size: 14px;
      font-size: 1.4rem;
      letter-spacing: 0.05em;
      line-height: 1.71428571;
      font-weight: 600;
      color: #231815;
      font-feature-settings: "palt"; }
      @media only screen and (max-width: 767px) {
        body.top .intro__text p {
          font-size: 17px;
          font-size: 1.7rem;
          line-height: 2.04761905; } }

body.top .about {
  padding-top: 160px;
  padding-bottom: 80px; }
  @media only screen and (max-width: 767px) {
    body.top .about {
      padding-top: 118px;
      padding-bottom: 44px; } }
  body.top .about .inner {
    max-width: 100%; }
  @media only screen and (max-width: 767px) {
    body.top .about__logo {
      width: 238px;
      margin: 0 auto 48px; } }
  body.top .about__text {
    text-align: center;
    font-size: 18px;
    font-size: 1.8rem;
    letter-spacing: 0.03em;
    line-height: 2.28571429;
    font-weight: 800;
    margin-bottom: 100px;
    color: #231815; }
    @media only screen and (max-width: 767px) {
      body.top .about__text {
        font-size: 15px;
        font-size: 1.5rem;
        line-height: 2.21052632;
        letter-spacing: 0.02em;
        text-align: left;
        margin-bottom: 50px; } }
    body.top .about__text p {
      margin-bottom: 32px; }
      @media only screen and (max-width: 767px) {
        body.top .about__text p {
          margin-bottom: 18px; } }

body.top .our-domain {
  height: 100svh;
  overflow: hidden;
  position: relative; }
  @media only screen and (max-width: 767px) {
    body.top .our-domain {
      padding-top: 140px; } }
  body.top .our-domain .c-title02 .en {
    width: 88px;
    margin-left: auto;
    margin-right: auto; }
    @media only screen and (max-width: 767px) {
      body.top .our-domain .c-title02 .en {
        width: 70px; } }
  body.top .our-domain .inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center; }
    @media only screen and (max-width: 767px) {
      body.top .our-domain .inner {
        justify-content: flex-start; } }
  body.top .our-domain .c-title02 {
    margin-bottom: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0; }
    @media only screen and (max-width: 767px) {
      body.top .our-domain .c-title02 {
        margin-bottom: 28px; } }
  body.top .our-domain__article {
    position: relative;
    max-width: 975px;
    max-height: 615px;
    width: calc((100vh - 310px) * 1.56);
    height: calc(100vh - 310px);
    margin: 200px auto 0; }
    @media only screen and (max-width: 767px) {
      body.top .our-domain__article {
        width: 68.5922328svh;
        height: 45svh;
        max-height: none;
        margin: 30px calc((-68.5922328svh + 100vw) / 2 - 40px) 0; } }
    body.top .our-domain__article .circleFirst {
      width: 21.84615385%;
      padding-top: 21.84615385%;
      position: absolute;
      top: 0%;
      left: 50%;
      transform: translate(-50%, 0%);
      transform-origin: center top;
      opacity: 0; }
      body.top .our-domain__article .circleFirst .circle {
        width: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transform-origin: center top; }
      body.top .our-domain__article .circleFirst .catch {
        width: 72.76995305%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); }
    body.top .our-domain__article .circleList {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
      body.top .our-domain__article .circleList .circleWrap {
        position: absolute;
        top: 0%;
        left: 50%;
        transform: translate(-50%, 0%) scale(0);
        transform-origin: center top;
        opacity: 0; }
        body.top .our-domain__article .circleList .circleWrap:nth-of-type(1) {
          width: 41.02564103%;
          transform: translate(-50%, 0%) scale(0.53); }
        body.top .our-domain__article .circleList .circleWrap:nth-of-type(2) {
          width: 63.38461538%;
          transform: translate(-50%, 0%) scale(0.63); }
        body.top .our-domain__article .circleList .circleWrap:nth-of-type(3) {
          width: 100%;
          transform: translate(-50%, 0%) scale(0.63); }
        body.top .our-domain__article .circleList .circleWrap .circle {
          width: 100%; }
    body.top .our-domain__article .catch01 {
      width: 12.71794872%; }
    body.top .our-domain__article .catch02 {
      width: 8.41025641%; }
    body.top .our-domain__article .catch03 {
      width: 12.71794872%; }
    body.top .our-domain__article .box {
      width: 100%;
      position: absolute;
      top: 0%;
      left: 50%;
      transform: translate(-50%, 0%); }
      body.top .our-domain__article .box .catch {
        margin: 0 auto;
        opacity: 0; }
        body.top .our-domain__article .box .catch.active {
          opacity: 1; }
    body.top .our-domain__article .box01 {
      padding-top: 24.82051282%; }
    body.top .our-domain__article .box02 {
      padding-top: 41%; }
    body.top .our-domain__article .box03 {
      padding-top: 56%; }
    body.top .our-domain__article .text01 {
      bottom: -4.8%; }
    body.top .our-domain__article .text02 {
      bottom: -4.8%; }
    body.top .our-domain__article .text03 {
      bottom: -3%; }
    body.top .our-domain__article .text {
      font-size: clamp(10px, calc((100vh - 250px) * 1.56 * 0.01888889), 17px);
      letter-spacing: 0.05em;
      font-weight: 500;
      line-height: 1.52941176;
      width: 100%;
      max-width: 343px;
      position: absolute;
      left: clamp(0px, calc(50% + ((100vh - 250px) * 1.56 * 0.12)), calc(50% + 122px));
      opacity: 0;
      color: #231815; }
      @media only screen and (max-width: 767px) {
        body.top .our-domain__article .text {
          left: 50%;
          transform: translate(-50%, 0);
          font-size: 12px;
          font-size: 1.2rem;
          width: calc(100vw - 80px);
          bottom: -63px; } }
      body.top .our-domain__article .text.active {
        opacity: 1; }

body.top .interview {
  padding: 164px 0 100px;
  overflow: hidden;
  display: none;
  height: 100svh;
  position: relative; }
  @media only screen and (max-width: 767px) {
    body.top .interview {
      padding: 56px 0 58px; } }
  @media only screen and (max-width: 767px) {
    body.top .interview .inner {
      padding: 0 30px; } }
  body.top .interview .c-title02 {
    margin-bottom: 114px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    white-space: nowrap; }
    @media only screen and (max-width: 767px) {
      body.top .interview .c-title02 {
        margin-bottom: 20px; } }
    body.top .interview .c-title02 .jp {
      font-feature-settings: "palt"; }
  body.top .interview .interviewWrap {
    opacity: 0;
    padding-top: 114px; }
    @media only screen and (max-width: 767px) {
      body.top .interview .interviewWrap {
        padding-top: 100px; } }
  body.top .interview .c-interviewList {
    margin-bottom: 44px; }

body.top .our-business {
  padding: 164px 0 100px;
  overflow: hidden;
  display: none;
  height: 100svh;
  position: relative; }
  @media only screen and (max-width: 767px) {
    body.top .our-business {
      padding: 56px 0 58px; } }
  body.top .our-business .c-title02 {
    margin-bottom: 114px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0; }
    @media only screen and (max-width: 767px) {
      body.top .our-business .c-title02 {
        margin-bottom: 20px; } }
  body.top .our-business .sliderWrapAll {
    opacity: 0;
    padding-top: 114px; }
    @media only screen and (max-width: 767px) {
      body.top .our-business .sliderWrapAll {
        padding-top: 100px; } }
  body.top .our-business .sliderWrap {
    padding: 36px 0 50px;
    transition: background-color 0.3s, top 1s, opacity 1s;
    margin-bottom: 44px;
    position: relative; }
    @media only screen and (max-width: 767px) {
      body.top .our-business .sliderWrap {
        padding: 46px 0 23px;
        margin-bottom: 0; } }
    body.top .our-business .sliderWrap:hover {
      background-color: #F5F7F1; }
    body.top .our-business .sliderWrap__title {
      font-size: 31px;
      font-size: 3.1rem;
      letter-spacing: 0.05em;
      font-weight: 600;
      margin-bottom: 24px;
      font-feature-settings: "palt"; }
      @media only screen and (max-width: 767px) {
        body.top .our-business .sliderWrap__title {
          font-size: 25px;
          font-size: 2.5rem;
          margin-bottom: 29px;
          text-align: center; } }
      body.top .our-business .sliderWrap__title strong {
        font-size: 39px;
        font-size: 3.9rem;
        font-weight: 900; }
        @media only screen and (max-width: 767px) {
          body.top .our-business .sliderWrap__title strong {
            font-size: 32px;
            font-size: 3.2rem; } }
      body.top .our-business .sliderWrap__title em {
        font-weight: 900; }
  body.top .our-business .businessSlider {
    overflow: visible; }
    @media only screen and (max-width: 767px) {
      body.top .our-business .businessSlider {
        width: calc(100% - 46px); } }
    body.top .our-business .businessSlider .swiper-slide {
      width: 300px;
      height: auto;
      background: #fff;
      padding: 52px 24px 24px;
      position: relative;
      cursor: pointer; }
      @media only screen and (max-width: 767px) {
        body.top .our-business .businessSlider .swiper-slide {
          padding: 43px 18px 20px; } }
      body.top .our-business .businessSlider .swiper-slide:hover {
        opacity: 1; }
        body.top .our-business .businessSlider .swiper-slide:hover .logo i .blue {
          opacity: 1; }
        body.top .our-business .businessSlider .swiper-slide:hover .logo i .color {
          opacity: 0; }
        body.top .our-business .businessSlider .swiper-slide:hover .text {
          color: #0025FF; }
      body.top .our-business .businessSlider .swiper-slide .logo {
        height: 127px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative; }
        @media only screen and (max-width: 767px) {
          body.top .our-business .businessSlider .swiper-slide .logo {
            height: 105px; } }
        body.top .our-business .businessSlider .swiper-slide .logo i {
          display: flex;
          align-items: center;
          justify-content: center; }
          body.top .our-business .businessSlider .swiper-slide .logo i img {
            transition: opacity .3s;
            margin: auto;
            display: block;
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            margin: auto;
            max-height: 100%; }
            @media only screen and (max-width: 767px) {
              body.top .our-business .businessSlider .swiper-slide .logo i img {
                max-width: 80%; } }
          body.top .our-business .businessSlider .swiper-slide .logo i .blue {
            opacity: 0;
            z-index: +1; }
          body.top .our-business .businessSlider .swiper-slide .logo i .color {
            opacity: 1; }
      body.top .our-business .businessSlider .swiper-slide .text {
        margin-top: 10px;
        transition: color .3s;
        color: #595757; }
        @media only screen and (max-width: 767px) {
          body.top .our-business .businessSlider .swiper-slide .text {
            margin-top: 14px; } }
        body.top .our-business .businessSlider .swiper-slide .text .name {
          display: block;
          text-align: center;
          font-size: 23px;
          font-size: 2.3rem;
          font-weight: 900;
          letter-spacing: 0.05em;
          margin: 0 -22px;
          font-feature-settings: "palt";
          display: flex;
          align-items: center;
          justify-content: center; }
          @media only screen and (min-width: 768px) {
            body.top .our-business .businessSlider .swiper-slide .text .name {
              min-height: 69px;
              line-height: 1.2; } }
          @media only screen and (max-width: 767px) {
            body.top .our-business .businessSlider .swiper-slide .text .name {
              min-height: 53px;
              line-height: 1.2;
              font-size: 18px;
              font-size: 1.8rem;
              margin: 0 -16px; } }
        body.top .our-business .businessSlider .swiper-slide .text .description {
          display: flex;
          align-items: center;
          justify-content: center; }
          @media only screen and (min-width: 768px) {
            body.top .our-business .businessSlider .swiper-slide .text .description {
              min-height: 63px;
              margin-top: 6px; } }
          @media only screen and (max-width: 767px) {
            body.top .our-business .businessSlider .swiper-slide .text .description {
              margin-top: 12px; } }
        body.top .our-business .businessSlider .swiper-slide .text p {
          font-size: 14px;
          font-size: 1.4rem;
          line-height: 1.5;
          letter-spacing: 0.041em;
          font-weight: 500;
          text-align: center; }
          @media only screen and (max-width: 767px) {
            body.top .our-business .businessSlider .swiper-slide .text p {
              font-size: 13px;
              font-size: 1.3rem; } }
      body.top .our-business .businessSlider .swiper-slide .line {
        content: "";
        width: calc(100% + 10px);
        height: calc(100% + 10px);
        display: block;
        position: absolute;
        top: -5px;
        left: -5px;
        pointer-events: none; }
        body.top .our-business .businessSlider .swiper-slide .line .y_right {
          width: 5px;
          height: calc(100% - 5px);
          position: absolute;
          right: 0;
          bottom: 0;
          display: block;
          background: #0025ff;
          transform-origin: top;
          transform: scaleY(0); }
        body.top .our-business .businessSlider .swiper-slide .line .x_bottom {
          width: calc(100% - 10px);
          height: 5px;
          position: absolute;
          bottom: 0;
          left: 5px;
          display: block;
          background: #0025ff;
          transform-origin: right;
          transform: scaleX(0); }
  body.top .our-business .navigation button {
    width: 46px;
    height: 46px;
    padding: 0;
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0025ff;
    transition: background-color .3s; }
    @media only screen and (max-width: 767px) {
      body.top .our-business .navigation button {
        width: 25px;
        height: 25px; } }
    body.top .our-business .navigation button:hover {
      background: #595757; }
    body.top .our-business .navigation button:after {
      content: none; }
    body.top .our-business .navigation button img {
      width: 13px;
      display: block; }
      @media only screen and (max-width: 767px) {
        body.top .our-business .navigation button img {
          width: 7px; } }
  body.top .our-business .navigation .swiper-button-prev {
    left: auto;
    right: calc(50vw + 718px); }
    @media only screen and (max-width: 1600px) {
      body.top .our-business .navigation .swiper-button-prev {
        left: 32px;
        right: auto; } }
    @media only screen and (max-width: 767px) {
      body.top .our-business .navigation .swiper-button-prev {
        left: 9px; } }
    body.top .our-business .navigation .swiper-button-prev img {
      margin-right: 2%; }
  body.top .our-business .navigation .swiper-button-next {
    right: auto;
    left: calc(50vw + 718px); }
    @media only screen and (max-width: 1600px) {
      body.top .our-business .navigation .swiper-button-next {
        right: 32px;
        left: auto; } }
    @media only screen and (max-width: 767px) {
      body.top .our-business .navigation .swiper-button-next {
        right: 9px; } }
    body.top .our-business .navigation .swiper-button-next img {
      margin-left: 2%; }

body.top .news {
  padding: 164px 0 100px;
  overflow: hidden;
  display: none;
  height: 100svh;
  position: relative; }
  @media only screen and (min-width: 768px) {
    body.top .news {
      min-height: 100vh; } }
  @media only screen and (max-width: 767px) {
    body.top .news {
      padding: 56px 0 40px;
      min-height: 100vh; } }
  @media only screen and (max-width: 767px) {
    body.top .news .inner {
      padding: 0 20px; } }
  body.top .news .c-title02 {
    margin-bottom: 114px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0; }
    @media only screen and (max-width: 767px) {
      body.top .news .c-title02 {
        margin-bottom: 20px; } }
  body.top .news .newsWrap {
    opacity: 0;
    padding-top: 114px; }
    @media only screen and (max-width: 767px) {
      body.top .news .newsWrap {
        padding-top: 100px; } }
  body.top .news .c-newsList {
    margin-bottom: 65px; }
    @media only screen and (max-width: 767px) {
      body.top .news .c-newsList {
        margin-bottom: 62px; } }

/* 2025.5 採用情報ボタン追加 */
.recruit__sidebtn {
  width: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 0;
  bottom: 50px;
  background-color: #0125FB;
  border-radius: 10px 0 0 10px;
  padding: 35px 18px;
  box-sizing: border-box;
  z-index: 11;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  opacity: 0;
  transition: opacity 0.3s, visibility .3s;
}
.recruit__sidebtn.is-active {
  opacity: 1;
}
.recruit__sidebtn i {
  display: block;
  width: 12px;
  margin-bottom: 8px;
}
.recruit__sidebtn img {
  width: 100%;
  height: auto;
}
.recruit__sidebtn span {
  font-weight: bold;
  writing-mode: vertical-rl;
  text-wrap: nowrap;
  letter-spacing: 0.2em;
  font-size: 15px;
  color: #fff;
}
@media only screen and (max-width: 767px) {
.recruit__sidebtn {
  width: 40px;
  bottom: 25px;
  padding: 20px 13px;
}
.recruit__sidebtn span {
  font-size: 14px;
}
}