@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; }

@keyframes fadein {
  0% {
    opacity: 0;
    font-size: small; }
  100% {
    opacity: 1;
    font-size: larger; } }

@keyframes slidein {
  0% {
    transform: translateX(-102%); }
  46% {
    transform: translateX(0%); }
  54% {
    transform: translateX(0%); }
  100% {
    transform: translateX(102%); } }

/**
 * !!! 変数の定義 !!!
 * 変数は作りすぎず、デザインコンポーネント、もしくはシンボルを元に作成する
 * また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: "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  background: #EAEDF1;
  color: #222; }

body.white {
  background: #fff; }

body.blue {
  background: #EBEEF2; }

* {
  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; }

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: 1040px;
  padding: 0 30px;
  margin: 0 auto; }
  @media only screen and (max-width: 767px) {
    .inner {
      padding: 0 24px; } }

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

body.career-page-body .footer__upper {
  display: none; }

.footer {
  color: #fff; }
  .footer__upper {
    background: #0B3B3F;
    padding: 60px 0; }
    @media only screen and (max-width: 767px) {
      .footer__upper {
        padding: 40px 24px; } }
    .footer__upper .footer__inner {
      max-width: 1040px;
      padding: 0 30px;
      margin: auto;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-justify-content: space-between;
      justify-content: space-between; }
      @media only screen and (max-width: 767px) {
        .footer__upper .footer__inner {
          padding: 0; } }
      .footer__upper .footer__inner a {
        display: block;
        height: 129px;
        position: relative;
        border-radius: 4px;
        box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.32);
        overflow: hidden;
        width: 48.9795918%; }
        @media only screen and (max-width: 767px) {
          .footer__upper .footer__inner a {
            width: 100%;
            height: 140px;
            margin-top: 24px; }
            .footer__upper .footer__inner a:nth-child(1) {
              margin-top: 0; } }
        @media only screen and (min-width: 768px) {
          .footer__upper .footer__inner a:hover figure > div div {
            opacity: 0.6; } }
        .footer__upper .footer__inner a:nth-child(1) figure > div div {
          background-image: url(../images/footer/bnr01_pc.jpg); }
          @media only screen and (max-width: 767px) {
            .footer__upper .footer__inner a:nth-child(1) figure > div div {
              background-image: url(../images/footer/bnr01_sp.jpg); } }
        .footer__upper .footer__inner a:nth-child(2) figure > div div {
          background-image: url(../images/footer/bnr02_pc.jpg); }
          @media only screen and (max-width: 767px) {
            .footer__upper .footer__inner a:nth-child(2) figure > div div {
              background-image: url(../images/footer/bnr02_sp.jpg); } }
        .footer__upper .footer__inner a figure > div {
          position: absolute;
          left: 0;
          top: 0;
          width: 100%;
          height: 100%; }
          .footer__upper .footer__inner a figure > div:after {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.2); }
          .footer__upper .footer__inner a figure > div div {
            background-size: cover;
            background-position: center;
            height: 100%;
            width: 100%;
            transition: all .3s; }
        .footer__upper .footer__inner a figure figcaption > div {
          position: absolute;
          top: 0;
          left: 0;
          display: -webkit-flex;
          display: flex;
          -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
          -webkit-justify-content: space-between;
          justify-content: space-between;
          width: 100%;
          align-items: center;
          justify-content: flex-start;
          padding: 0 24px;
          padding-top: 18px; }
          @media only screen and (max-width: 767px) {
            .footer__upper .footer__inner a figure figcaption > div {
              justify-content: space-between;
              align-items: flex-start;
              padding: 0 16px;
              padding-top: 18px; } }
          .footer__upper .footer__inner a figure figcaption > div strong {
            font-family: "Josefin Sans", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
            font-size: 36px;
            font-style: normal;
            font-weight: 700;
            line-height: normal; }
            @media only screen and (max-width: 767px) {
              .footer__upper .footer__inner a figure figcaption > div strong {
                font-size: 32px; } }
          .footer__upper .footer__inner a figure figcaption > div > span {
            font-size: 14px;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
            padding-left: 16px; }
            @media only screen and (max-width: 767px) {
              .footer__upper .footer__inner a figure figcaption > div > span {
                font-size: 12px;
                width: 163px;
                display: block;
                padding-left: 0; } }
        .footer__upper .footer__inner a figure figcaption em {
          position: absolute;
          display: block;
          right: 0;
          bottom: 0;
          padding-bottom: 24px;
          padding-right: 24px; }
          .footer__upper .footer__inner a figure figcaption em span {
            font-family: "Josefin Sans", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            letter-spacing: -0.28px;
            display: block;
            padding-right: 40px;
            background-image: url(../images/icon/ico_button_arrow.svg);
            background-position: top 3px right 0px;
            background-repeat: no-repeat;
            background-size: 24px 9px;
            transition: background-position 0.3s; }
  .footer__bottom {
    background: #023438;
    padding-bottom: 40px;
    position: relative; }
    @media only screen and (max-width: 767px) {
      .footer__bottom {
        padding-bottom: 32px; } }
    .footer__bottom a {
      opacity: 1;
      transition: opacity .3s; }
      @media only screen and (min-width: 768px) {
        .footer__bottom a:hover {
          opacity: 0.5; } }
    .footer__bottom__menu {
      max-width: 1040px;
      padding: 0 30px;
      margin: auto;
      padding-top: 55px;
      padding-bottom: 56px; }
      @media only screen and (max-width: 767px) {
        .footer__bottom__menu {
          padding: 0 24px; } }
      .footer__bottom__menu .footer__inner {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: space-between;
        justify-content: space-between; }
  .footer__brand {
    width: 281px;
    position: relative;
    padding-top: 24px;
    padding-right: 50px; }
    .footer__brand:before {
      content: "";
      position: absolute;
      right: 0;
      top: 0;
      width: 1px;
      height: 100%;
      background: #1B4F53; }
    @media only screen and (max-width: 767px) {
      .footer__brand {
        width: 100%;
        padding: 0;
        padding-top: 48px;
        padding-bottom: 48px;
        border-bottom: 1px solid #1B4F53; }
        .footer__brand:before {
          content: none; } }
    .footer__brand > a {
      display: block; }
      .footer__brand > a img {
        width: 231px;
        height: auto;
        display: block; }
        @media only screen and (max-width: 767px) {
          .footer__brand > a img {
            width: 200px; } }
    .footer__brand p {
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      line-height: normal;
      margin-top: 24px;
      text-align: center; }
      @media only screen and (max-width: 767px) {
        .footer__brand p {
          margin-top: 8px;
          text-align: left; } }
    .footer__brand ul {
      text-align: center;
      font-size: 0;
      margin-top: 24px; }
      @media only screen and (max-width: 767px) {
        .footer__brand ul {
          text-align: left; } }
      .footer__brand ul li {
        display: inline-block;
        vertical-align: middle;
        padding: 0 6px; }
        .footer__brand ul li a img {
          width: 36px;
          height: 36px;
          display: block; }
          @media only screen and (max-width: 767px) {
            .footer__brand ul li a img {
              width: 25px;
              height: 25px; } }
  .footer__sitemap {
    width: calc(100% - 281px);
    padding-left: 55px;
    padding-top: 24px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between; }
    @media only screen and (max-width: 767px) {
      .footer__sitemap {
        width: 100%;
        padding: 0;
        padding-top: 24px;
        padding-bottom: 24px; } }
    .footer__sitemap > ul {
      font-family: "Josefin Sans", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      line-height: normal; }
      @media only screen and (max-width: 767px) {
        .footer__sitemap > ul {
          width: 100%;
          display: -webkit-flex;
          display: flex;
          -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
          -webkit-justify-content: space-between;
          justify-content: space-between;
          align-items: flex-start;
          padding: 0 16px;
          padding-top: 16px;
          padding-bottom: 16px; }
          .footer__sitemap > ul.sp {
            padding-top: 0; } }
      .footer__sitemap > ul > li {
        padding: 12px 0; }
        @media only screen and (max-width: 767px) {
          .footer__sitemap > ul > li {
            width: 100%;
            padding: 0; }
            .footer__sitemap > ul > li:nth-child(1) {
              width: 102px; }
            .footer__sitemap > ul > li:nth-child(2) {
              width: calc(100% - 102px); } }
      .footer__sitemap > ul > ul {
        margin-top: 8px; }
        @media only screen and (max-width: 767px) {
          .footer__sitemap > ul > ul {
            width: calc(100% - 102px);
            padding-left: 0;
            margin-top: 0; } }
        .footer__sitemap > ul > ul li {
          padding: 4px 0;
          display: block; }
          @media only screen and (max-width: 767px) {
            .footer__sitemap > ul > ul li {
              padding: 0;
              padding-bottom: 8px; } }
          .footer__sitemap > ul > ul li a {
            font-size: 14px;
            font-weight: 400; }
  .footer__pp {
    max-width: 1160px;
    margin: auto;
    padding-top: 24px;
    border-top: 1px solid #1B4F53; }
    @media only screen and (max-width: 767px) {
      .footer__pp {
        width: calc(100% - 48px);
        margin: auto;
        padding-top: 16px; } }
    .footer__pp div {
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-justify-content: space-between;
      justify-content: space-between;
      align-items: center; }
      .footer__pp div p:nth-child(1) {
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: normal; }
      .footer__pp div p:nth-child(2) {
        color: #50686A;
        text-align: right;
        font-family: "Josefin Sans", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
        font-size: 10px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: -0.2px; }
        @media only screen and (max-width: 767px) {
          .footer__pp div p:nth-child(2) {
            padding-top: 6px; } }
  .footer__pagetop {
    position: absolute;
    right: 48px;
    top: 40px; }
    .footer__pagetop a {
      display: block;
      padding-top: 45px;
      position: relative; }
      @media only screen and (min-width: 768px) {
        .footer__pagetop a:hover {
          opacity: 1; }
          .footer__pagetop a:hover:before {
            top: -16px; } }
      .footer__pagetop a:before {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 0;
        width: 9px;
        height: 24px;
        background-image: url(../images/icon/ico_pagetop.svg);
        background-size: 9px 24px;
        background-position: center center;
        background-repeat: no-repeat;
        transition: top .3s; }
      .footer__pagetop a span {
        -ms-writing-mode: tb-rl;
        -webkit-writing-mode: vertical-rl;
        -moz-writing-mode: vertical-rl;
        -o-writing-mode: vertical-rl;
        writing-mode: vertical-rl;
        font-family: "Josefin Sans", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        display: block; }

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 80; }
  .header__inner {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    padding-left: 40px;
    padding-right: 40px; }
    @media only screen and (max-width: 767px) {
      .header__inner {
        padding: 22px 24px; } }
  .header__pc-mega {
    position: fixed;
    z-index: 70;
    width: 800px;
    left: 63%;
    transform: translateX(-50%);
    top: 72px;
    opacity: 1;
    pointer-events: none;
    transition: opacity .4s; }
    .header__pc-mega.appear {
      pointer-events: inherit; }
      .header__pc-mega.appear .header__pc-mega__inner {
        background: rgba(2, 52, 56, 0.7);
        box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(10px); }
        .header__pc-mega.appear .header__pc-mega__inner > div {
          opacity: 1; }
    .header__pc-mega__inner {
      border-radius: 4px;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-justify-content: space-between;
      justify-content: space-between;
      padding: 48px 57px;
      color: #fff;
      background: rgba(2, 52, 56, 0);
      box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
      backdrop-filter: blur(0px);
      transition: all .4s; }
      .header__pc-mega__inner > div {
        transition: all .4s;
        opacity: 0; }
        .header__pc-mega__inner > div:nth-child(1) {
          font-size: 18px;
          font-style: normal;
          font-weight: 500;
          line-height: 130%;
          /* 23.4px */
          letter-spacing: 0.72px;
          width: 40%; }
        .header__pc-mega__inner > div:nth-child(2) {
          width: 60%;
          border-left: 1px solid rgba(255, 255, 255, 0.3);
          padding-left: 52px; }
          .header__pc-mega__inner > div:nth-child(2) ul li {
            padding: 6px 0; }
            .header__pc-mega__inner > div:nth-child(2) ul li:first-child {
              padding-top: 0; }
            .header__pc-mega__inner > div:nth-child(2) ul li:last-child {
              padding-bottom: 0; }
            .header__pc-mega__inner > div:nth-child(2) ul li a:hover span:before {
              opacity: 1; }
            .header__pc-mega__inner > div:nth-child(2) ul li a span {
              padding-left: 20px;
              position: relative;
              font-size: 12px;
              font-style: normal;
              font-weight: 500;
              line-height: 1;
              display: inline-block; }
              .header__pc-mega__inner > div:nth-child(2) ul li a span:before {
                content: "";
                position: absolute;
                left: 0;
                top: 0;
                bottom: 0;
                margin: auto;
                width: 8px;
                height: 8px;
                border-radius: 8px;
                background: #0EA39E;
                opacity: 0;
                transition: opacity 0.3s; }
  .header__brand a svg,
  .header__brand a img {
    width: 118px;
    height: auto; }
    .header__brand a svg path,
    .header__brand a img path {
      fill: #222;
      transition: fill .3s; }
  .header__menu {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center; }
    @media only screen and (max-width: 767px) {
      .header__menu {
        display: none; } }
    .header__menu > ul {
      font-size: 0; }
      .header__menu > ul > li {
        display: inline-block;
        vertical-align: middle;
        margin-right: 40px; }
        .header__menu > ul > li > a {
          display: block;
          position: relative; }
          .header__menu > ul > li > a.on:before {
            width: 100% !important; }
          @media only screen and (min-width: 768px) {
            .header__menu > ul > li > a:hover:not([href="javascript:void(0);"]):before {
              width: 100%; } }
          .header__menu > ul > li > a:before {
            content: "";
            width: 100%;
            height: 2px;
            background: #222;
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 0;
            transition: width .3s; }
          .header__menu > ul > li > a span {
            font-family: "Josefin Sans", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
            text-align: center;
            font-size: 14px;
            font-style: normal;
            font-weight: 600;
            line-height: normal;
            letter-spacing: -0.28px;
            color: #222;
            transition: color .3s; }
  .header__toggle {
    position: fixed;
    z-index: 100;
    right: 24px;
    top: 12px; }
    .header__toggle.white a > div > div span {
      background: #fff; }
    .header__toggle.white a > div p {
      color: #fff; }
    .header__toggle a {
      display: block;
      width: 40px;
      height: 40px;
      position: relative; }
      .header__toggle a.on > div > div:before, .header__toggle a.on > div > div:after {
        width: 20px !important;
        transition-delay: .3s; }
      .header__toggle a.on > div > div span {
        width: 0 !important; }
      .header__toggle a.on > div p {
        color: #fff; }
      .header__toggle a > div {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%); }
        .header__toggle a > div > div {
          height: 24px;
          position: relative; }
          .header__toggle a > div > div:before, .header__toggle a > div > div:after {
            content: "";
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            left: 0;
            margin: auto;
            width: 20px;
            height: 1px;
            background: #fff;
            transform: rotate(45deg);
            width: 0;
            transition: width .3s; }
          .header__toggle a > div > div:after {
            transform: rotate(-45deg); }
          .header__toggle a > div > div span {
            position: absolute;
            top: 0;
            bottom: 0;
            right: 0;
            left: 0;
            margin: auto;
            background: #222;
            transition: background-color .3s, width .3s; }
            .header__toggle a > div > div span:nth-child(1) {
              width: 36px;
              height: 1px;
              top: -7px; }
            .header__toggle a > div > div span:nth-child(2) {
              width: 24px;
              height: 1px;
              top: 7px; }
        .header__toggle a > div p {
          color: #222;
          text-align: center;
          font-family: "Josefin Sans", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
          font-size: 11px;
          font-style: normal;
          font-weight: 500;
          line-height: normal;
          text-align: center;
          transition: color .3s; }
  .header.white-black .header__menu ul li a:before {
    background: #fff; }
  .header.white-black .header__menu ul li a span {
    color: #fff; }
  .header.white-black .header__toggle a > div > div span {
    background: #fff; }
  .header.white-black .header__toggle a > div p {
    color: #fff; }
  .header.white .header__menu ul li a:before {
    background: #fff; }
  .header.white .header__menu ul li a span {
    color: #fff; }
  .header.white .header__toggle a > div > div span {
    background: #fff; }
  .header.white .header__toggle a > div p {
    color: #fff; }
  .header.white .header__brand a svg path {
    fill: #fff; }
  .header__sp-menu {
    background: rgba(2, 52, 56, 0.7);
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 90;
    display: none; }
    .header__sp-menu__inner {
      max-width: 247px;
      width: 100%;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      padding-top: 76px; }
      .header__sp-menu__inner > div:nth-child(1) > ul > li {
        padding-top: 40px; }
        .header__sp-menu__inner > div:nth-child(1) > ul > li > a > span {
          color: #fff;
          font-family: "Josefin Sans", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
          font-size: 20px;
          font-style: normal;
          font-weight: 600;
          letter-spacing: -0.4px;
          line-height: 1; }
      .header__sp-menu__inner > div:nth-child(1) > ul > ul {
        display: block;
        font-size: 0;
        color: #fff;
        padding-top: 24px;
        display: none; }
        .header__sp-menu__inner > div:nth-child(1) > ul > ul > li:nth-child(1) {
          font-size: 12px;
          font-style: normal;
          font-weight: 400;
          line-height: 130%;
          /* 15.6px */
          letter-spacing: 0.48px;
          display: inline-block;
          vertical-align: top;
          width: 72px;
          padding: 8px 0;
          padding-top: 0; }
        .header__sp-menu__inner > div:nth-child(1) > ul > ul > li:nth-child(2) {
          display: inline-block;
          vertical-align: top;
          position: relative; }
          .header__sp-menu__inner > div:nth-child(1) > ul > ul > li:nth-child(2):before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 1px;
            height: 100%;
            opacity: 0.30000001192092896;
            background: #FFF; }
          .header__sp-menu__inner > div:nth-child(1) > ul > ul > li:nth-child(2) ol {
            padding-left: 24px; }
            .header__sp-menu__inner > div:nth-child(1) > ul > ul > li:nth-child(2) ol li {
              padding: 8px 0; }
              .header__sp-menu__inner > div:nth-child(1) > ul > ul > li:nth-child(2) ol li:nth-child(1) {
                padding-top: 0; }
              .header__sp-menu__inner > div:nth-child(1) > ul > ul > li:nth-child(2) ol li a span {
                font-size: 14px;
                font-style: normal;
                font-weight: 500;
                line-height: 130%; }
      .header__sp-menu__inner > div:nth-child(2) {
        padding-top: 56px; }
        .header__sp-menu__inner > div:nth-child(2) a {
          width: 100%; }

body.scrolled .header.white .header__brand a svg path {
  fill: #222; }

.button--primary {
  display: block;
  width: 334px;
  text-align: center;
  padding: 24px 0 26px 0;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(125deg, #023438 10%, #023438 40%, #023438 60%, #086B6B 100%);
  background-position: 1% 50%;
  background-size: 200% auto;
  transition: background-position .6s; }
  @media only screen and (max-width: 767px) {
    .button--primary {
      width: auto;
      padding: 0;
      display: inline-block; } }
  @media only screen and (min-width: 768px) {
    .button--primary:hover {
      background-position: 99% 50%; } }
  .button--primary em,
  .button--primary span {
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    background-image: url(../images/icon/ico_button_arrow.svg);
    background-position: center right 24px;
    display: block;
    background-repeat: no-repeat;
    background-size: 20px 17px;
    transition: background-position 0.3s;
    line-height: 1.428571429; }
    @media only screen and (max-width: 767px) {
      .button--primary em,
      .button--primary span {
        font-size: 14px;
        padding: 10px 16px;
        padding-right: 40px;
        display: block;
        background-size: 18px 7px;
        background-position: right 10px center; } }
  .button--primary em {
    font-family: "Josefin Sans", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif; }
  .button--primary[target="_blank"] span, .button--primary[target="_blank"] em {
    background-image: url(../images/icon/ico_button_external.svg); }
  .button--primary--link span {
    background-size: 24px 10px; }
  .button--primary--small {
    display: inline-block;
    width: auto;
    font-size: 0;
    padding-right: 0;
    padding: 0; }
    .button--primary--small[target="_blank"] span, .button--primary--small[target="_blank"] em {
      background-size: 13px 11px; }
    @media only screen and (min-width: 768px) {
      .button--primary--small:hover span {
        background-position: center right 12px; }
      .button--primary--small:hover[target="_blank"] span {
        background-position: center right 16px; } }
    .button--primary--small em, .button--primary--small span {
      display: inline-block;
      vertical-align: middle; }
    .button--primary--small em,
    .button--primary--small span {
      font-size: 14px;
      font-weight: 400; }
    .button--primary--small span, .button--primary--small em {
      padding: 10px 16px;
      padding-right: 42px;
      background-size: 16px 6px;
      background-position: center right 16px; }

.button--cta {
  display: block;
  width: 334px;
  text-align: center;
  padding: 26px 0 22px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(125deg, #63CEAE 10%, #0693B1 40%, #0693B1 52%, #63CEAE 100%);
  background-position: 1% 50%;
  background-size: 200% auto;
  transition: background-position .6s; }
  @media only screen and (max-width: 767px) {
    .button--cta {
      width: 100%; } }
  @media only screen and (min-width: 768px) {
    .button--cta:hover {
      background-position: 99% 50%; }
      .button--cta:hover span {
        background-position: top 3px right 16px; } }
  .button--cta span {
    color: #FFF;
    font-family: "Josefin Sans", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    position: relative;
    z-index: 1;
    display: block;
    background-image: url(../images/icon/ico_button_arrow.svg);
    background-position: top 3px right 24px;
    background-repeat: no-repeat;
    background-size: 24px 9px;
    transition: background-position 0.3s; }
  .button--cta--small {
    display: inline-block;
    width: auto;
    border-radius: 0;
    padding: 15px 35px 11px 35px;
    background-image: linear-gradient(125deg, #63CEAE 10%, #0693B1 50%, #0693B1 50%, #63CEAE 100%);
    transition: background-position .3s; }
    .button--cta--small span {
      font-size: 14px;
      background: none; }

.button--thirdly {
  border-radius: 2px;
  display: inline-block;
  border: 1px solid #0EA39E;
  padding: 9px 16px;
  font-size: 0;
  transition: background-color .3s; }
  .button--thirdly span, .button--thirdly svg {
    display: inline-block;
    vertical-align: middle; }
  .button--thirdly span {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    color: #0EA39E;
    margin-right: 8px;
    transition: color .3s; }
  .button--thirdly svg path, .button--thirdly svg rect {
    transition: stroke .3s; }
  @media only screen and (min-width: 768px) {
    .button--thirdly:hover {
      background: #0EA39E; }
      .button--thirdly:hover span {
        color: #fff; }
      .button--thirdly:hover svg path {
        stroke: #fff; }
      .button--thirdly:hover svg rect {
        stroke: #fff; } }

.fixed-side-text {
  position: fixed;
  left: 26px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9; }
  @media only screen and (max-width: 767px) {
    .fixed-side-text {
      display: none; } }
  .fixed-side-text > span {
    position: relative;
    display: block;
    padding: 48px 0; }
    .fixed-side-text > span:before {
      content: "";
      height: 32px;
      width: 1px;
      background: #999;
      position: absolute;
      right: 0;
      top: 0;
      left: 0;
      margin: auto; }
    .fixed-side-text > span:after {
      content: "";
      height: 32px;
      width: 1px;
      background: #999;
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      margin: auto; }
    .fixed-side-text > span > span {
      color: #999;
      font-family: "Josefin Sans", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
      font-size: 10px;
      font-style: normal;
      font-weight: 400;
      line-height: normal;
      letter-spacing: -0.2px;
      -ms-writing-mode: tb-rl;
      -webkit-writing-mode: vertical-rl;
      -moz-writing-mode: vertical-rl;
      -o-writing-mode: vertical-rl;
      writing-mode: vertical-rl;
      display: inline-block; }

.section-title {
  font-size: 0;
  overflow: hidden; }
  .section-title.delay span {
    transition-delay: 1.4s; }
  .section-title.delay svg line {
    transition-delay: 1.4s; }
  .section-title span {
    -webkit-transform: translateY(135%);
    -moz-transform: translateY(135%);
    -ms-transform: translateY(135%);
    -o-transform: translateY(135%);
    transform: translateY(135%);
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s; }
  .section-title svg line {
    stroke-dasharray: 24;
    stroke-dashoffset: 24;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s; }
  .section-title.visible span {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%); }
  .section-title.visible svg line {
    stroke-dashoffset: 0; }
  .section-title span, .section-title svg {
    display: inline-block;
    vertical-align: middle; }
  .section-title span {
    font-family: "Josefin Sans", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.4px; }
    @media only screen and (max-width: 767px) {
      .section-title span {
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        letter-spacing: 0; } }
  .section-title svg {
    margin-left: 16px; }
    @media only screen and (max-width: 767px) {
      .section-title svg {
        width: 13px;
        height: auto; } }
  .section-title.section-title--black span {
    color: #222; }
  .section-title.small span {
    font-size: 16px; }
  .section-title.small svg {
    margin-left: 12px;
    width: 12px;
    height: auto; }

.section-sub-title {
  padding-bottom: 16px;
  margin-top: 24px;
  position: relative; }
  .section-sub-title:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #222;
    -webkit-transition: width 0.8s;
    -moz-transition: width 0.8s;
    -o-transition: width 0.8s;
    transition: width 0.8s; }
    @media only screen and (max-width: 767px) {
      .section-sub-title:before {
        content: none; } }
  .section-sub-title.visible:before {
    width: 400px;
    transition-delay: .1s; }
  .section-sub-title.visible span {
    opacity: 1; }
    .section-sub-title.visible span:nth-child(1) {
      transition-delay: .3s; }
    .section-sub-title.visible span:nth-child(3) {
      transition-delay: .4s; }
  .section-sub-title span {
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    opacity: 0;
    transition: all .8s; }
    @media only screen and (max-width: 767px) {
      .section-sub-title span {
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        display: inline-block;
        position: relative; }
        .section-sub-title span:before {
          content: "";
          position: absolute;
          left: 0;
          bottom: -16px;
          width: 100%;
          height: 1px;
          background: #222; } }
  @media only screen and (max-width: 767px) {
    .section-sub-title.small {
      margin-top: 16px; } }
  .section-sub-title.small:before {
    content: none; }
  .section-sub-title.small span {
    font-size: 32px; }
    @media only screen and (max-width: 767px) {
      .section-sub-title.small span {
        font-size: 24px; }
        .section-sub-title.small span:before {
          content: none; } }

.swiper-pagination {
  bottom: -34px; }
  .swiper-pagination .swiper-pagination-bullet {
    background: #ADCDC5;
    opacity: 1; }
  .swiper-pagination .swiper-pagination-bullet-active {
    background: #0EA39E;
    opacity: 1; }

.wp-pagenavi {
  text-align: center;
  font-size: 0;
  margin-top: 56px; }
  .wp-pagenavi > span, .wp-pagenavi > a {
    display: inline-block;
    vertical-align: middle;
    font-family: "Roboto", "Josefin Sans", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    width: 32px;
    height: 32px;
    line-height: 32px;
    margin: 0 8px; }
  .wp-pagenavi .current {
    width: 32px;
    height: 32px;
    border-radius: 50px;
    background: #DEEBE8;
    text-align: center; }
  .wp-pagenavi .nextpostslink {
    text-indent: -9999px;
    background-image: url(../images/icon/page-next.svg);
    background-size: 8px 16px;
    background-position: center center;
    background-repeat: no-repeat; }
  .wp-pagenavi .previouspostslink {
    text-indent: -9999px;
    background-image: url(../images/icon/page-prev.svg);
    background-size: 8px 16px;
    background-position: center center;
    background-repeat: no-repeat; }

.about-page {
  overflow: hidden; }
  .about-page h2:not(.section-title) strong, .about-page h2:not(.section-title) span {
    display: block; }
  .about-page h2:not(.section-title) strong {
    font-family: "Josefin Sans", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal; }
    @media only screen and (max-width: 767px) {
      .about-page h2:not(.section-title) strong {
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        letter-spacing: -0.48px; } }
  .about-page h2:not(.section-title) span {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    margin-top: 8px; }
    @media only screen and (max-width: 767px) {
      .about-page h2:not(.section-title) span {
        margin-top: 4px; } }
  .about-page__sec01 {
    background: linear-gradient(180deg, #FFF 0%, #EAEDF1 100%);
    padding-top: 108px;
    padding-bottom: 160px; }
    @media only screen and (max-width: 767px) {
      .about-page__sec01 {
        padding-top: 65px;
        padding-bottom: 80px; } }
    .about-page__sec01 .inner h3 {
      font-size: 40px;
      margin-top: 40px;
      text-align: center;
      font-style: normal;
      font-weight: 700;
      line-height: 150%; }
      @media only screen and (max-width: 767px) {
        .about-page__sec01 .inner h3 {
          font-size: 24px;
          font-style: normal;
          font-weight: 700;
          line-height: 150%;
          margin-top: 48px; } }
    .about-page__sec01 .inner p {
      text-align: center;
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      line-height: 200%;
      margin-top: 40px; }
      @media only screen and (max-width: 767px) {
        .about-page__sec01 .inner p {
          margin-top: 24px;
          padding: 0 16px; } }
  .about-page__sec02 {
    position: relative;
    padding-top: 136px; }
    @media only screen and (max-width: 767px) {
      .about-page__sec02 {
        padding-top: 80px; } }
    .about-page__sec02:after, .about-page__sec02:before {
      content: "";
      position: absolute;
      left: -303.5px;
      top: -303.5px;
      border-radius: 607px;
      opacity: 0.10000000149011612;
      background: var(--agrismilegreen, #0EA39E);
      filter: blur(100px);
      width: 607px;
      height: 607px;
      pointer-events: none;
      z-index: -1; }
    .about-page__sec02:after {
      left: auto;
      right: -400px;
      top: 410px; }
    .about-page__sec02__box01 {
      padding-bottom: 320px;
      position: relative;
      border-bottom: 1px solid #222; }
      @media only screen and (max-width: 767px) {
        .about-page__sec02__box01 {
          padding-bottom: 152px; } }
      .about-page__sec02__box01 h3 {
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        text-align: center; }
      .about-page__sec02__box01 p {
        text-align: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 200%;
        margin: auto;
        margin-top: 40px;
        max-width: 800px; }
        @media only screen and (max-width: 767px) {
          .about-page__sec02__box01 p {
            margin-top: 24px;
            padding: 0 16px; } }
    .about-page__sec02__wave {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 0;
      width: 1280px;
      height: 391px;
      top: 330px;
      z-index: -1; }
      @media only screen and (max-width: 767px) {
        .about-page__sec02__wave {
          width: 375px;
          height: 477px;
          top: 336px; } }
      .about-page__sec02__wave .line01,
      .about-page__sec02__wave .line02,
      .about-page__sec02__wave .line03 {
        stroke-dasharray: 1226;
        transition: stroke-dashoffset 1.2s; }
    .about-page__sec02__wave02 {
      position: absolute;
      left: 0%;
      top: 54%;
      z-index: -1;
      width: 466px;
      height: 737px; }
      .about-page__sec02__wave02 .line01,
      .about-page__sec02__wave02 .line02,
      .about-page__sec02__wave02 .line03 {
        stroke-dasharray: 1226;
        transition: stroke-dashoffset 1.2s; }
    .about-page__sec02__wave03 {
      position: absolute;
      right: 0;
      bottom: -3%;
      z-index: -1;
      width: 945px;
      height: 555px; }
      @media only screen and (max-width: 767px) {
        .about-page__sec02__wave03 {
          position: absolute;
          bottom: -1%;
          width: 375px;
          height: 292px; } }
      .about-page__sec02__wave03 .line01,
      .about-page__sec02__wave03 .line02,
      .about-page__sec02__wave03 .line03 {
        stroke-dasharray: 1226;
        transition: stroke-dashoffset 1.2s; }
    .about-page__sec02 .inner:nth-child(5) {
      padding-top: 66px; }
    .about-page__sec02__boxes {
      max-width: 880px;
      margin: auto;
      padding-bottom: 320px; }
      @media only screen and (max-width: 767px) {
        .about-page__sec02__boxes {
          padding-bottom: 183px; } }
    .about-page__sec02__box {
      position: relative;
      margin-top: 110px; }
      @media only screen and (max-width: 767px) {
        .about-page__sec02__box {
          margin-top: 88px; } }
      .about-page__sec02__box:nth-child(1) {
        margin-top: 80px; }
        @media only screen and (max-width: 767px) {
          .about-page__sec02__box:nth-child(1) {
            margin-top: 48px; } }
      @media only screen and (min-width: 768px) {
        .about-page__sec02__box > div:nth-child(1) {
          position: absolute;
          left: 0;
          width: 35.456%;
          z-index: 2;
          padding: 20.32px 24px;
          top: 50%;
          transform: translateY(-50%); } }
      @media only screen and (max-width: 767px) {
        .about-page__sec02__box > div:nth-child(1) {
          width: calc(100% + 48px);
          position: relative;
          margin-left: -24px;
          padding: 32px 40px;
          padding-bottom: 54px; } }
      .about-page__sec02__box > div:nth-child(1):before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        opacity: 0.8999999761581421;
        background: linear-gradient(153deg, #31BC9D 0%, #02A9C3 100%);
        z-index: 0; }
      .about-page__sec02__box > div:nth-child(1) > span, .about-page__sec02__box > div:nth-child(1) > strong {
        position: relative;
        display: block;
        color: #fff; }
      .about-page__sec02__box > div:nth-child(1) > span {
        font-size: 0; }
        .about-page__sec02__box > div:nth-child(1) > span > span {
          display: inline-block;
          vertical-align: middle; }
          .about-page__sec02__box > div:nth-child(1) > span > span:nth-child(1) {
            font-family: "Akshar", "Josefin Sans", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
            font-size: 16px;
            font-style: normal;
            font-weight: 600;
            line-height: 150%; }
          .about-page__sec02__box > div:nth-child(1) > span > span:nth-child(2) {
            width: calc(100% - 28px);
            height: 1px;
            background: rgba(255, 255, 255, 0.5);
            margin-left: 13px; }
      .about-page__sec02__box > div:nth-child(1) > strong {
        font-family: "Josefin Sans", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        line-height: 110%;
        margin-top: 10px; }
        @media only screen and (max-width: 767px) {
          .about-page__sec02__box > div:nth-child(1) > strong {
            font-size: 24px;
            font-style: normal;
            font-weight: 700;
            line-height: 110%; } }
      .about-page__sec02__box > div:nth-child(2) {
        position: relative;
        z-index: 1;
        width: 67.273%;
        margin: 0 0 0 auto;
        border: 1px solid #FFF;
        background: rgba(255, 255, 255, 0.8);
        box-shadow: 0px 32px 32px 0px rgba(0, 0, 0, 0.04);
        backdrop-filter: blur(12px);
        padding: 64px 28px;
        padding-left: 48px; }
        @media only screen and (max-width: 767px) {
          .about-page__sec02__box > div:nth-child(2) {
            padding: 82px 25px;
            margin-top: -25px;
            width: 100%; } }
        .about-page__sec02__box > div:nth-child(2) p {
          font-size: 16px;
          font-style: normal;
          font-weight: 500;
          line-height: 180%; }
  .about-page__sec03 {
    padding: 160px 0;
    position: relative;
    background: #023438; }
    @media only screen and (max-width: 767px) {
      .about-page__sec03 {
        padding: 96px 0; } }
    .about-page__sec03 > img {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: auto;
      display: block;
      z-index: 0; }
    .about-page__sec03 .inner {
      position: relative;
      z-index: 2; }
    .about-page__sec03 .section-title span {
      color: #fff; }
    .about-page__sec03 .section-title svg line {
      stroke: #fff; }
    .about-page__sec03 .section-sub-title span {
      color: #fff; }
      @media only screen and (max-width: 767px) {
        .about-page__sec03 .section-sub-title span:before {
          background: #fff; } }
    .about-page__sec03 .section-sub-title:before {
      background: #fff; }
    .about-page__sec03__row {
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-justify-content: space-between;
      justify-content: space-between;
      padding-top: 62px; }
      @media only screen and (max-width: 767px) {
        .about-page__sec03__row {
          padding-top: 0; } }
      .about-page__sec03__row figure {
        position: relative;
        width: 47.9591837%;
        margin-top: 50px; }
        @media only screen and (max-width: 767px) {
          .about-page__sec03__row figure {
            width: 100%;
            margin-top: 71px; } }
        .about-page__sec03__row figure:nth-child(1) > div > div img {
          width: 271px;
          height: auto;
          display: block;
          left: 50%;
          top: 50%;
          transform: translate(-50%, -50%); }
          @media only screen and (max-width: 767px) {
            .about-page__sec03__row figure:nth-child(1) > div > div img {
              width: 250px; } }
        .about-page__sec03__row figure:nth-child(2) > div > div img {
          width: calc(100% - 48px);
          left: 50%;
          transform: translateX(-50%);
          bottom: 24px; }
          @media only screen and (max-width: 767px) {
            .about-page__sec03__row figure:nth-child(2) > div > div img {
              width: calc(100% - 32px);
              bottom: 16px; } }
        @media only screen and (max-width: 767px) {
          .about-page__sec03__row figure:nth-child(3) > div > div {
            padding-top: 165.1376147% !important; } }
        .about-page__sec03__row figure:nth-child(3) > div > div img {
          width: calc(100% - 48px);
          left: 50%;
          transform: translateX(-50%);
          bottom: 15px; }
          @media only screen and (max-width: 767px) {
            .about-page__sec03__row figure:nth-child(3) > div > div img {
              width: calc(100% - 32px);
              bottom: 16px; } }
        @media only screen and (max-width: 767px) {
          .about-page__sec03__row figure:nth-child(4) > div > div {
            padding-top: 130.8868502%; } }
        .about-page__sec03__row figure:nth-child(4) > div > div img {
          width: calc(100% - 30px);
          display: block;
          right: 0;
          bottom: 0; }
          @media only screen and (max-width: 767px) {
            .about-page__sec03__row figure:nth-child(4) > div > div img {
              width: calc(100%); } }
        .about-page__sec03__row figure:before {
          content: "";
          position: absolute;
          left: 0;
          top: 0;
          width: 100%;
          height: 100%;
          z-index: 0;
          opacity: 0.800000011920929;
          background: linear-gradient(136deg, #1E4B4F 0%, #083638 100%);
          box-shadow: 0px 24px 16px 0px rgba(0, 0, 0, 0.16);
          pointer-events: none; }
        .about-page__sec03__row figure > div {
          position: relative;
          z-index: 1; }
          .about-page__sec03__row figure > div > div {
            padding-top: 71.7021277%; }
            @media only screen and (max-width: 767px) {
              .about-page__sec03__row figure > div > div {
                padding-top: 104.2813456%; } }
            .about-page__sec03__row figure > div > div img {
              position: absolute; }
          .about-page__sec03__row figure > div strong {
            position: absolute;
            font-family: "Akshar", "Josefin Sans", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
            font-size: 64px;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
            opacity: 0.5;
            left: 24px;
            top: -36px;
            color: #fff; }
            @media only screen and (max-width: 767px) {
              .about-page__sec03__row figure > div strong {
                left: 20px; } }
          .about-page__sec03__row figure > div span {
            font-size: 20px;
            font-style: normal;
            font-weight: 700;
            line-height: 150%;
            position: absolute;
            left: 24px;
            top: 44px;
            color: #fff; }
            @media only screen and (max-width: 767px) {
              .about-page__sec03__row figure > div span {
                left: 20px; } }
        .about-page__sec03__row figure figcaption {
          position: relative;
          z-index: 1; }
          .about-page__sec03__row figure figcaption:before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: #000;
            opacity: 0.1; }
          .about-page__sec03__row figure figcaption p {
            position: relative;
            z-index: 1;
            color: #fff;
            min-height: 146px;
            padding: 24px;
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 150%; }
            @media only screen and (max-width: 767px) {
              .about-page__sec03__row figure figcaption p {
                min-height: 0;
                padding: 16px; } }
  .about-page__sec04 {
    padding-top: 160px;
    position: relative; }
    @media only screen and (max-width: 767px) {
      .about-page__sec04 {
        padding-top: 120px; } }
    .about-page__sec04:before {
      content: "";
      position: absolute;
      left: -363.5px;
      top: 0;
      border-radius: 607px;
      opacity: 0.10000000149011612;
      background: var(--agrismilegreen, #0EA39E);
      filter: blur(100px);
      width: 607px;
      height: 607px;
      pointer-events: none;
      z-index: -1; }
    .about-page__sec04:after {
      content: "";
      position: absolute;
      right: -303.5px;
      bottom: -160px;
      border-radius: 607px;
      opacity: 0.10000000149011612;
      background: var(--agrismilegreen, #0EA39E);
      filter: blur(100px);
      width: 607px;
      height: 607px;
      pointer-events: none;
      z-index: -1; }
    .about-page__sec04__row {
      padding-top: 64px; }
      @media only screen and (max-width: 767px) {
        .about-page__sec04__row {
          display: -webkit-flex;
          display: flex;
          -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
          -webkit-justify-content: space-between;
          justify-content: space-between; } }
      .about-page__sec04__row figure {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        margin-top: 56px; }
        @media only screen and (max-width: 767px) {
          .about-page__sec04__row figure {
            width: 47.706422%;
            display: block;
            margin-top: 32px; } }
        .about-page__sec04__row figure > div {
          width: 24.4897959%; }
          @media only screen and (max-width: 767px) {
            .about-page__sec04__row figure > div {
              width: 100%; } }
          .about-page__sec04__row figure > div img {
            display: block; }
        .about-page__sec04__row figure figcaption {
          width: 73.0612245%; }
          @media only screen and (max-width: 767px) {
            .about-page__sec04__row figure figcaption {
              width: 100%;
              padding-top: 8px; } }
          .about-page__sec04__row figure figcaption > div:nth-child(1) small, .about-page__sec04__row figure figcaption > div:nth-child(1) strong, .about-page__sec04__row figure figcaption > div:nth-child(1) em {
            display: block; }
          .about-page__sec04__row figure figcaption > div:nth-child(1) small {
            font-family: "Josefin Sans", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
            font-size: 12px;
            font-style: normal;
            font-weight: 400;
            line-height: 130%;
            /* 15.6px */
            letter-spacing: 0.48px;
            color: #666; }
          .about-page__sec04__row figure figcaption > div:nth-child(1) strong {
            font-size: 18px;
            font-style: normal;
            font-weight: 700;
            line-height: 150%;
            margin-top: 2px; }
          .about-page__sec04__row figure figcaption > div:nth-child(1) em {
            font-size: 14px;
            font-style: normal;
            font-weight: 500;
            line-height: 150%;
            color: #0EA39E;
            margin-top: 8px; }
            @media only screen and (max-width: 767px) {
              .about-page__sec04__row figure figcaption > div:nth-child(1) em {
                min-height: 42px; } }
          .about-page__sec04__row figure figcaption > div:nth-child(2) {
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid #D0D6DB; }
            @media only screen and (max-width: 767px) {
              .about-page__sec04__row figure figcaption > div:nth-child(2) {
                display: none; } }
            .about-page__sec04__row figure figcaption > div:nth-child(2) p {
              font-size: 16px;
              font-style: normal;
              font-weight: 500;
              line-height: 150%; }
          .about-page__sec04__row figure figcaption > div:nth-child(3) {
            display: none; }
            @media only screen and (max-width: 767px) {
              .about-page__sec04__row figure figcaption > div:nth-child(3) {
                display: block;
                width: 100%;
                border-bottom: 1px solid #D0D6DB;
                border-top: 1px solid #D0D6DB;
                margin-top: 16px;
                padding: 12px 0; }
                .about-page__sec04__row figure figcaption > div:nth-child(3) a {
                  display: -webkit-flex;
                  display: flex;
                  -webkit-flex-wrap: wrap;
                  flex-wrap: wrap;
                  -webkit-justify-content: space-between;
                  justify-content: space-between;
                  align-items: flex-start;
                  width: 100%; }
                  .about-page__sec04__row figure figcaption > div:nth-child(3) a > span {
                    color: #666;
                    font-family: "Josefin Sans", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
                    font-size: 14px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 100%;
                    /* 14px */
                    letter-spacing: 1.4px; }
                  .about-page__sec04__row figure figcaption > div:nth-child(3) a div {
                    width: 12px;
                    height: 12px;
                    position: relative; }
                    .about-page__sec04__row figure figcaption > div:nth-child(3) a div span {
                      position: absolute;
                      left: 0;
                      top: 0;
                      right: 0;
                      bottom: 0;
                      margin: auto;
                      width: 12px;
                      height: 1px;
                      background: #666; }
                      .about-page__sec04__row figure figcaption > div:nth-child(3) a div span:nth-child(2) {
                        transform: rotate(90deg); } }
  .about-page__sec05 {
    padding-top: 160px;
    position: relative; }
    @media only screen and (max-width: 767px) {
      .about-page__sec05 {
        padding-top: 120px; } }
    .about-page__sec05 > svg {
      position: absolute;
      width: 686px;
      height: 1173px;
      left: 0px;
      top: -170px;
      opacity: 0.1;
      pointer-events: none; }
    .about-page__sec05:before {
      content: "";
      position: absolute;
      left: -231.5px;
      top: 0;
      border-radius: 607px;
      opacity: 0.10000000149011612;
      background: var(--agrismilegreen, #0EA39E);
      filter: blur(100px);
      width: 607px;
      height: 607px;
      pointer-events: none; }
      @media only screen and (max-width: 767px) {
        .about-page__sec05:before {
          width: 268px;
          height: 268px;
          left: -134px; } }
    .about-page__sec05:after {
      content: "";
      position: absolute;
      right: -303.5px;
      bottom: -160px;
      border-radius: 607px;
      opacity: 0.10000000149011612;
      background: var(--agrismilegreen, #0EA39E);
      filter: blur(100px);
      width: 607px;
      height: 607px;
      pointer-events: none; }
      @media only screen and (max-width: 767px) {
        .about-page__sec05:after {
          display: none; } }
    .about-page__sec05__history {
      max-width: 800px;
      margin: auto;
      padding-top: 80px; }
      @media only screen and (max-width: 767px) {
        .about-page__sec05__history {
          padding-top: 48px; } }
      .about-page__sec05__history--box ul {
        padding-top: 48px;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        justify-content: flex-start; }
        @media only screen and (max-width: 767px) {
          .about-page__sec05__history--box ul {
            padding-top: 32px; } }
        .about-page__sec05__history--box ul:nth-child(1) {
          padding-top: 0; }
        .about-page__sec05__history--box ul:last-child li:nth-child(2):after {
          content: none; }
        .about-page__sec05__history--box ul li:nth-child(1) {
          color: #0EA39E;
          font-size: 16px;
          font-style: normal;
          font-weight: 700;
          line-height: 150%;
          width: 100px; }
          @media only screen and (max-width: 767px) {
            .about-page__sec05__history--box ul li:nth-child(1) {
              width: 69px; } }
        .about-page__sec05__history--box ul li:nth-child(2) {
          width: calc(100% - 100px);
          position: relative; }
          @media only screen and (max-width: 767px) {
            .about-page__sec05__history--box ul li:nth-child(2) {
              width: calc(100% - 69px); } }
          .about-page__sec05__history--box ul li:nth-child(2):before {
            content: "";
            position: absolute;
            left: -29px;
            top: 9.5px;
            width: 7px;
            height: 7px;
            border-radius: 7px;
            background: #0EA39E; }
            @media only screen and (max-width: 767px) {
              .about-page__sec05__history--box ul li:nth-child(2):before {
                left: -15px; } }
          .about-page__sec05__history--box ul li:nth-child(2):after {
            content: "";
            width: 1px;
            height: calc(100% + 44px);
            position: absolute;
            left: -26px;
            top: 14px;
            background: #0EA39E; }
            @media only screen and (max-width: 767px) {
              .about-page__sec05__history--box ul li:nth-child(2):after {
                left: -12px;
                height: calc(100% + 30px); } }
          .about-page__sec05__history--box ul li:nth-child(2) span, .about-page__sec05__history--box ul li:nth-child(2) small {
            display: block; }
          .about-page__sec05__history--box ul li:nth-child(2) span {
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 150%; }
          .about-page__sec05__history--box ul li:nth-child(2) small {
            font-size: 12px;
            font-style: normal;
            font-weight: 400;
            line-height: 130%;
            /* 15.6px */
            letter-spacing: 0.48px;
            margin-top: 4px; }
  .about-page__sec06 {
    padding-top: 160px;
    padding-bottom: 128px;
    position: relative; }
    .about-page__sec06 > svg {
      position: absolute;
      width: 686px;
      height: 1173px;
      left: 0px;
      top: -170px;
      opacity: 0.1;
      pointer-events: none; }
    .about-page__sec06:before {
      content: "";
      position: absolute;
      left: -231.5px;
      top: 0;
      border-radius: 607px;
      opacity: 0.10000000149011612;
      background: var(--agrismilegreen, #0EA39E);
      filter: blur(100px);
      width: 607px;
      height: 607px; }
      @media only screen and (max-width: 767px) {
        .about-page__sec06:before {
          width: 268px;
          height: 268px;
          left: -134px; } }
    .about-page__sec06__outline {
      max-width: 800px;
      margin: auto;
      padding-top: 64px; }
      .about-page__sec06__outline table {
        width: 100%; }
        @media only screen and (max-width: 767px) {
          .about-page__sec06__outline table {
            width: 100%;
            display: block; } }
        @media only screen and (max-width: 767px) {
          .about-page__sec06__outline table tbody {
            width: 100%;
            display: block; } }
        @media only screen and (max-width: 767px) {
          .about-page__sec06__outline table tr {
            width: 100%;
            display: block; } }
        @media only screen and (max-width: 767px) {
          .about-page__sec06__outline table tr:first-child th {
            margin-top: 0;
            padding-top: 0;
            border-top: none; } }
        .about-page__sec06__outline table tr:last-child th, .about-page__sec06__outline table tr:last-child td {
          border-bottom: none; }
        .about-page__sec06__outline table th, .about-page__sec06__outline table td {
          padding: 32px 0;
          border-bottom: 1px solid #DCDCDC;
          font-size: 16px;
          font-style: normal;
          font-weight: 500;
          line-height: 150%;
          vertical-align: top; }
          @media only screen and (max-width: 767px) {
            .about-page__sec06__outline table th, .about-page__sec06__outline table td {
              width: 100%;
              display: block;
              padding: 0;
              border: none; } }
        .about-page__sec06__outline table th {
          font-weight: 700; }
          @media only screen and (max-width: 767px) {
            .about-page__sec06__outline table th {
              width: 100%;
              display: block;
              margin-top: 24px;
              padding-top: 24px;
              border-top: 1px solid #DCDCDC; } }
        .about-page__sec06__outline table td {
          margin-top: 12px; }

.bio-technology {
  padding-top: 220px;
  position: relative;
  overflow: hidden; }
  @media only screen and (max-width: 767px) {
    .bio-technology {
      padding-top: 168px; } }
  .bio-technology > svg {
    position: absolute;
    left: 0;
    top: -1.6%;
    width: 100%;
    height: auto;
    z-index: 0;
    pointer-events: none; }
    .bio-technology > svg.add-black {
      top: -0.2%; }
      @media only screen and (max-width: 767px) {
        .bio-technology > svg.add-black {
          top: .1%; } }
    @media only screen and (max-width: 767px) {
      .bio-technology > svg {
        top: 0; } }
  .bio-technology .inner {
    position: relative; }
    .bio-technology .inner > h2:nth-child(4) {
      margin-top: 160px; }
      @media only screen and (max-width: 767px) {
        .bio-technology .inner > h2:nth-child(4) {
          margin-top: 100px; } }
    .bio-technology .inner > div {
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      line-height: 180%; }
      @media only screen and (max-width: 767px) {
        .bio-technology .inner > div {
          margin-top: 32px;
          padding-top: 0; } }
      .bio-technology .inner > div.has-mt {
        margin-top: 56px; }
        @media only screen and (max-width: 767px) {
          .bio-technology .inner > div.has-mt {
            margin-top: 32px; } }
      .bio-technology .inner > div > span {
        display: block; }
        .bio-technology .inner > div > span.br {
          margin-top: 32px; }
      .bio-technology .inner > div ul {
        padding: 6px 0; }
        .bio-technology .inner > div ul.no-style li {
          padding-left: 0;
          background: none; }
        .bio-technology .inner > div ul li {
          padding: 3px 0;
          font-weight: bold;
          padding-left: 22px;
          position: relative;
          background-image: url(../images/icon/ico_list.svg);
          background-position: center left;
          background-repeat: no-repeat; }
    .bio-technology .inner h3 {
      font-size: 40px;
      font-style: normal;
      font-weight: 700;
      line-height: 150%;
      margin-top: 24px;
      padding-bottom: 16px;
      position: relative;
      z-index: 2; }
      .bio-technology .inner h3:before {
        content: "";
        width: 0;
        height: 1px;
        background: #222;
        position: absolute;
        left: 0;
        bottom: 0;
        transition: width .5s; }
      .bio-technology .inner h3.visible:before {
        width: 370px;
        transition-delay: .1s; }
        @media only screen and (max-width: 767px) {
          .bio-technology .inner h3.visible:before {
            width: 100%; } }
      .bio-technology .inner h3.visible span {
        opacity: 1; }
        .bio-technology .inner h3.visible span:nth-child(1) {
          transition-delay: .3s; }
        .bio-technology .inner h3.visible span:nth-child(3) {
          transition-delay: .4s; }
      @media only screen and (max-width: 767px) {
        .bio-technology .inner h3 {
          font-size: 24px;
          font-style: normal;
          font-weight: 700;
          line-height: 150%;
          position: relative;
          border-bottom: none;
          display: inline-block; }
          .bio-technology .inner h3:before {
            content: "";
            width: 192px;
            height: 1px;
            background: #222;
            position: absolute;
            left: 0;
            bottom: 0; } }
      .bio-technology .inner h3 span {
        opacity: 0;
        transition: all .8s; }
      .bio-technology .inner h3.inline-block {
        display: inline-block; }
        .bio-technology .inner h3.inline-block.visible:before {
          width: 100%;
          transition-delay: .1s; }
          @media only screen and (max-width: 767px) {
            .bio-technology .inner h3.inline-block.visible:before {
              width: 100%; } }
    .bio-technology .inner > p {
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      line-height: 180%;
      margin-top: 56px; }
      @media only screen and (max-width: 767px) {
        .bio-technology .inner > p {
          margin-top: 32px; } }
    .bio-technology .inner > img {
      display: block;
      margin: auto;
      width: 640px;
      margin-top: 52px; }
      .bio-technology .inner > img.big {
        width: 100%;
        max-width: 889px; }
      @media only screen and (max-width: 767px) {
        .bio-technology .inner > img {
          margin-top: 32px;
          width: 100%; } }
  .bio-technology__row {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    margin-top: -266px; }
    @media only screen and (max-width: 767px) {
      .bio-technology__row {
        margin-top: 0;
        display: block; } }
  .bio-technology__nums {
    width: 60px;
    padding-top: 310px; }
    @media only screen and (max-width: 767px) {
      .bio-technology__nums {
        display: none; } }
    .bio-technology__nums > div {
      height: 100%;
      position: relative; }
      .bio-technology__nums > div:before {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        width: 1px;
        height: 100%;
        background-color: #fff; }
      .bio-technology__nums > div:after {
        content: "";
        position: absolute;
        width: 7px;
        height: 7px;
        border-radius: 7px;
        background: #fff;
        right: -3px;
        top: -3px; }
  .bio-technology__content {
    width: calc(100% - 60px);
    padding-bottom: 80px; }
    @media only screen and (max-width: 767px) {
      .bio-technology__content {
        width: 100%;
        padding-bottom: 0;
        padding-top: 32px; } }
  .bio-technology__intro {
    position: relative;
    padding: 40px;
    padding-right: 0;
    margin-top: -96px; }
    @media only screen and (max-width: 767px) {
      .bio-technology__intro {
        padding: 0;
        margin: 0;
        margin-top: 40px;
        padding: 24px; } }
    .bio-technology__intro:before {
      content: "";
      width: 108.1632653%;
      height: 100%;
      background: linear-gradient(87deg, rgba(255, 255, 255, 0.6) 39.58%, rgba(255, 255, 255, 0) 100%);
      z-index: 0;
      position: absolute;
      left: 0;
      top: 0; }
      @media only screen and (max-width: 767px) {
        .bio-technology__intro:before {
          width: 100%;
          height: 100%;
          background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 39.58%, rgba(255, 255, 255, 0) 100%); } }
    .bio-technology__intro p {
      position: relative;
      z-index: 1;
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      line-height: 180%;
      max-width: 576px; }
  .bio-technology__sec01 {
    padding-top: 119px !important; }
    @media only screen and (max-width: 767px) {
      .bio-technology__sec01 {
        padding-top: 120px !important; } }
    .bio-technology__sec01 > div:nth-child(1):after {
      content: "01" !important; }
  .bio-technology__sec02 {
    padding-top: 107px !important; }
    @media only screen and (max-width: 767px) {
      .bio-technology__sec02 {
        padding-top: 89px !important; } }
    .bio-technology__sec02 > div:nth-child(1):after {
      content: "02" !important; }
  .bio-technology__sec03 {
    padding-top: 108px !important; }
    @media only screen and (max-width: 767px) {
      .bio-technology__sec03 {
        padding-top: 80px !important; } }
    .bio-technology__sec03 > div:nth-child(1):after {
      content: "03" !important; }
  .bio-technology__sec04 {
    padding-top: 156px !important; }
    @media only screen and (max-width: 767px) {
      .bio-technology__sec04 {
        padding-top: 80px !important; } }
    .bio-technology__sec04 > div:nth-child(1):after {
      content: "04" !important; }
  .bio-technology__sec01, .bio-technology__sec02, .bio-technology__sec03, .bio-technology__sec04 {
    padding: 0 30px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    position: relative; }
    @media only screen and (max-width: 767px) {
      .bio-technology__sec01, .bio-technology__sec02, .bio-technology__sec03, .bio-technology__sec04 {
        padding: 0; } }
    .bio-technology__sec01 > div:nth-child(1), .bio-technology__sec02 > div:nth-child(1), .bio-technology__sec03 > div:nth-child(1), .bio-technology__sec04 > div:nth-child(1) {
      width: 44.1860465%;
      position: relative; }
      @media only screen and (max-width: 767px) {
        .bio-technology__sec01 > div:nth-child(1), .bio-technology__sec02 > div:nth-child(1), .bio-technology__sec03 > div:nth-child(1), .bio-technology__sec04 > div:nth-child(1) {
          width: 100%; } }
      .bio-technology__sec01 > div:nth-child(1):before, .bio-technology__sec02 > div:nth-child(1):before, .bio-technology__sec03 > div:nth-child(1):before, .bio-technology__sec04 > div:nth-child(1):before {
        content: "";
        width: 60px;
        height: 45px;
        background: linear-gradient(153deg, #02A9C3 0%, #31BC9D 100%);
        display: block; }
        @media only screen and (min-width: 768px) {
          .bio-technology__sec01 > div:nth-child(1):before, .bio-technology__sec02 > div:nth-child(1):before, .bio-technology__sec03 > div:nth-child(1):before, .bio-technology__sec04 > div:nth-child(1):before {
            position: absolute;
            left: -91px;
            top: -10px;
            border-radius: 23px 0px 0px 23px; } }
        @media only screen and (max-width: 767px) {
          .bio-technology__sec01 > div:nth-child(1):before, .bio-technology__sec02 > div:nth-child(1):before, .bio-technology__sec03 > div:nth-child(1):before, .bio-technology__sec04 > div:nth-child(1):before {
            width: 40px;
            height: 40px;
            border-radius: 40px;
            margin-bottom: 8px; } }
      .bio-technology__sec01 > div:nth-child(1):after, .bio-technology__sec02 > div:nth-child(1):after, .bio-technology__sec03 > div:nth-child(1):after, .bio-technology__sec04 > div:nth-child(1):after {
        content: "01";
        position: absolute;
        left: -67px;
        top: 0;
        color: #fff;
        text-align: center;
        font-family: "Akshar", "Josefin Sans", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: 130%; }
        @media only screen and (max-width: 767px) {
          .bio-technology__sec01 > div:nth-child(1):after, .bio-technology__sec02 > div:nth-child(1):after, .bio-technology__sec03 > div:nth-child(1):after, .bio-technology__sec04 > div:nth-child(1):after {
            left: 11px;
            top: 8px; } }
      .bio-technology__sec01 > div:nth-child(1) > small, .bio-technology__sec01 > div:nth-child(1) > strong, .bio-technology__sec01 > div:nth-child(1) > em, .bio-technology__sec02 > div:nth-child(1) > small, .bio-technology__sec02 > div:nth-child(1) > strong, .bio-technology__sec02 > div:nth-child(1) > em, .bio-technology__sec03 > div:nth-child(1) > small, .bio-technology__sec03 > div:nth-child(1) > strong, .bio-technology__sec03 > div:nth-child(1) > em, .bio-technology__sec04 > div:nth-child(1) > small, .bio-technology__sec04 > div:nth-child(1) > strong, .bio-technology__sec04 > div:nth-child(1) > em {
        display: block; }
      .bio-technology__sec01 > div:nth-child(1) > small, .bio-technology__sec02 > div:nth-child(1) > small, .bio-technology__sec03 > div:nth-child(1) > small, .bio-technology__sec04 > div:nth-child(1) > small {
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 130%; }
      .bio-technology__sec01 > div:nth-child(1) > strong, .bio-technology__sec02 > div:nth-child(1) > strong, .bio-technology__sec03 > div:nth-child(1) > strong, .bio-technology__sec04 > div:nth-child(1) > strong {
        font-size: 32px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        margin-top: 4px; }
        @media only screen and (max-width: 767px) {
          .bio-technology__sec01 > div:nth-child(1) > strong, .bio-technology__sec02 > div:nth-child(1) > strong, .bio-technology__sec03 > div:nth-child(1) > strong, .bio-technology__sec04 > div:nth-child(1) > strong {
            font-size: 24px;
            font-weight: 700; } }
      .bio-technology__sec01 > div:nth-child(1) > em, .bio-technology__sec02 > div:nth-child(1) > em, .bio-technology__sec03 > div:nth-child(1) > em, .bio-technology__sec04 > div:nth-child(1) > em {
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 130%;
        margin-top: 16px; }
      .bio-technology__sec01 > div:nth-child(1) p, .bio-technology__sec02 > div:nth-child(1) p, .bio-technology__sec03 > div:nth-child(1) p, .bio-technology__sec04 > div:nth-child(1) p {
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 180%;
        margin-top: 32px; }
      .bio-technology__sec01 > div:nth-child(1) a, .bio-technology__sec02 > div:nth-child(1) a, .bio-technology__sec03 > div:nth-child(1) a, .bio-technology__sec04 > div:nth-child(1) a {
        margin-top: 32px; }
    @media only screen and (max-width: 767px) {
      .bio-technology__sec01 > div:nth-child(2), .bio-technology__sec02 > div:nth-child(2), .bio-technology__sec03 > div:nth-child(2), .bio-technology__sec04 > div:nth-child(2) {
        width: 100%;
        margin-top: 40px; }
        .bio-technology__sec01 > div:nth-child(2) a, .bio-technology__sec02 > div:nth-child(2) a, .bio-technology__sec03 > div:nth-child(2) a, .bio-technology__sec04 > div:nth-child(2) a {
          margin-top: 48px; } }
  .bio-technology__data {
    background-color: #023438;
    margin-top: 80px;
    position: relative;
    padding-top: 160px;
    padding-bottom: 160px;
    color: #fff; }
    @media only screen and (max-width: 767px) {
      .bio-technology__data {
        margin-top: 160px;
        padding-top: 64px;
        padding-bottom: 24px; } }
    .bio-technology__data > img {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: auto;
      display: block; }
    .bio-technology__data .inner {
      position: relative; }
      .bio-technology__data .inner .section-title {
        color: #fff; }
        .bio-technology__data .inner .section-title svg line {
          stroke: #fff; }
      .bio-technology__data .inner h3:before {
        background: #fff; }
      .bio-technology__data .inner h3 span {
        color: #fff; }
      .bio-technology__data .inner > div {
        margin-top: 56px;
        border-radius: 4px;
        background: var(--black-01, #023438);
        box-shadow: 0px 24px 24px 0px rgba(0, 0, 0, 0.08);
        padding: 40px;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: space-between;
        justify-content: space-between; }
        @media only screen and (max-width: 767px) {
          .bio-technology__data .inner > div {
            margin-top: 32px;
            padding: 20px; } }
        .bio-technology__data .inner > div p {
          width: 55.2222222%;
          font-size: 16px;
          font-style: normal;
          font-weight: 500;
          line-height: 180%; }
          @media only screen and (max-width: 767px) {
            .bio-technology__data .inner > div p {
              width: 100%; } }
        .bio-technology__data .inner > div > div {
          width: calc(44.7777778% - 32px);
          background: rgba(11, 59, 63, 0.9);
          border-radius: 0px 4px 4px 0px;
          padding: 32px; }
          @media only screen and (max-width: 767px) {
            .bio-technology__data .inner > div > div {
              width: 100%;
              padding: 24px;
              margin-top: 32px; } }
          .bio-technology__data .inner > div > div > div > strong svg, .bio-technology__data .inner > div > div > div > strong span {
            display: inline-block;
            vertical-align: middle; }
          .bio-technology__data .inner > div > div > div > strong svg {
            width: 17px;
            height: auto; }
          .bio-technology__data .inner > div > div > div > strong span {
            font-size: 16px;
            font-style: normal;
            font-weight: 700;
            line-height: 150%; }
          .bio-technology__data .inner > div > div > div > div {
            display: -webkit-flex;
            display: flex;
            -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
            -webkit-justify-content: space-between;
            justify-content: space-between;
            padding-top: 17px; }
            .bio-technology__data .inner > div > div > div > div > div {
              width: 46.9055375%; }
              @media only screen and (max-width: 767px) {
                .bio-technology__data .inner > div > div > div > div > div {
                  width: 100%; } }
              .bio-technology__data .inner > div > div > div > div > div ul {
                margin-top: 7px; }
                .bio-technology__data .inner > div > div > div > div > div ul li {
                  font-size: 16px;
                  font-style: normal;
                  font-weight: 500;
                  line-height: 180%; }
  .bio-technology__goal {
    background-color: #023438;
    margin-top: 80px;
    position: relative;
    padding-top: 160px;
    padding-bottom: 160px;
    color: #fff; }
    @media only screen and (max-width: 767px) {
      .bio-technology__goal {
        margin-top: 160px;
        padding-top: 64px;
        padding-bottom: 24px;
        padding-bottom: 82px; } }
    .bio-technology__goal > img {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: auto;
      display: block; }
    .bio-technology__goal .inner {
      position: relative; }
      .bio-technology__goal .inner .section-title {
        color: #fff; }
        .bio-technology__goal .inner .section-title svg line {
          stroke: #fff; }
      .bio-technology__goal .inner h3 {
        display: inline-block; }
        .bio-technology__goal .inner h3:before {
          background: #fff;
          width: 0; }
        .bio-technology__goal .inner h3 span {
          color: #fff; }
      .bio-technology__goal .inner > div {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        align-items: center;
        margin-top: 72px; }
        @media only screen and (max-width: 767px) {
          .bio-technology__goal .inner > div {
            margin-top: 32px; } }
        .bio-technology__goal .inner > div p {
          width: 44.7959184%;
          font-size: 16px;
          font-style: normal;
          font-weight: 500;
          line-height: 180%; }
          @media only screen and (max-width: 767px) {
            .bio-technology__goal .inner > div p {
              width: 100%; } }
        .bio-technology__goal .inner > div div {
          width: 50%; }
          @media only screen and (max-width: 767px) {
            .bio-technology__goal .inner > div div {
              width: 100%;
              margin-top: 32px; } }
          .bio-technology__goal .inner > div div img {
            display: block; }
  .bio-technology__development {
    padding-top: 160px;
    padding-bottom: 160px;
    background: linear-gradient(180deg, #FFF 0%, #EAEDF1 100%, #EAEDF1 100%);
    overflow: hidden; }
    .bio-technology__development.gray {
      background: #EAEDF1; }
    @media only screen and (max-width: 767px) {
      .bio-technology__development {
        padding-bottom: 115px;
        padding-top: 60px; } }
    .bio-technology__development__sec03.mt-none {
      padding-bottom: 80px; }
      .bio-technology__development__sec03.mt-none .bio-technology__voice {
        padding-top: 0; }
    .bio-technology__development__sec02 {
      padding-top: 160px; }
      .bio-technology__development__sec02 .bio-technology__development__title-row > div:nth-child(1) {
        width: 37.755102%; }
        @media only screen and (max-width: 767px) {
          .bio-technology__development__sec02 .bio-technology__development__title-row > div:nth-child(1) {
            width: 100%; } }
      .bio-technology__development__sec02 .bio-technology__development__title-row > div:nth-child(2) {
        width: 54.8979592%; }
        @media only screen and (max-width: 767px) {
          .bio-technology__development__sec02 .bio-technology__development__title-row > div:nth-child(2) {
            width: 100%; } }
    .bio-technology__development__title-row {
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-justify-content: space-between;
      justify-content: space-between;
      align-items: flex-start; }
      .bio-technology__development__title-row.big-row > div:nth-child(1) {
        width: 32.6530612%; }
        @media only screen and (max-width: 767px) {
          .bio-technology__development__title-row.big-row > div:nth-child(1) {
            width: 100%; } }
        .bio-technology__development__title-row.big-row > div:nth-child(1) h3:before {
          width: 100%; }
      .bio-technology__development__title-row.big-row > div:nth-child(2) {
        width: 57.3469388%; }
        @media only screen and (max-width: 767px) {
          .bio-technology__development__title-row.big-row > div:nth-child(2) {
            width: 100%;
            margin-top: 32px; } }
      .bio-technology__development__title-row.big-row02 > div:nth-child(1) {
        width: 32.6530612%; }
        @media only screen and (max-width: 767px) {
          .bio-technology__development__title-row.big-row02 > div:nth-child(1) {
            width: 100%; } }
        .bio-technology__development__title-row.big-row02 > div:nth-child(1) h3:before {
          width: 100%; }
      .bio-technology__development__title-row.big-row02 > div:nth-child(2) {
        width: 57.3469388%; }
        @media only screen and (max-width: 767px) {
          .bio-technology__development__title-row.big-row02 > div:nth-child(2) {
            width: 100%;
            margin-top: 32px; } }
      .bio-technology__development__title-row > div:nth-child(1) {
        width: 46.9387755%; }
        @media only screen and (max-width: 767px) {
          .bio-technology__development__title-row > div:nth-child(1) {
            width: 100%; } }
      .bio-technology__development__title-row > div:nth-child(2) {
        width: 43.6734694%;
        padding-top: 40px; }
        @media only screen and (max-width: 767px) {
          .bio-technology__development__title-row > div:nth-child(2) {
            width: 100%;
            padding-top: 0; } }
        .bio-technology__development__title-row > div:nth-child(2) strong {
          display: block;
          font-size: 20px;
          font-style: normal;
          font-weight: 700;
          line-height: 150%;
          margin-bottom: 16px; }
        .bio-technology__development__title-row > div:nth-child(2) p {
          font-size: 16px;
          font-style: normal;
          font-weight: 500;
          line-height: 180%; }
    .bio-technology__development__points {
      border-radius: 2px;
      border: 1px solid #FFF;
      background: rgba(255, 255, 255, 0.7);
      box-shadow: 0px 32px 32px 0px rgba(0, 0, 0, 0.04);
      backdrop-filter: blur(12px);
      margin-top: 56px; }
      .bio-technology__development__points__inner {
        padding: 80px; }
        @media only screen and (max-width: 767px) {
          .bio-technology__development__points__inner {
            padding: 40px 32px; } }
    .bio-technology__development__point:nth-child(1) {
      padding-bottom: 64px;
      border-bottom: 1px solid #D0D6DB;
      margin-bottom: 64px; }
      @media only screen and (max-width: 767px) {
        .bio-technology__development__point:nth-child(1) {
          padding-bottom: 54px;
          margin-bottom: 54px; } }
    .bio-technology__development__point h4 em, .bio-technology__development__point h4 strong {
      display: block; }
    .bio-technology__development__point h4 em {
      font-family: "Josefin Sans", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
      font-size: 20px;
      font-style: normal;
      font-weight: 700;
      line-height: normal; }
    .bio-technology__development__point h4 strong {
      font-size: 20px;
      font-style: normal;
      font-weight: 700;
      line-height: 150%;
      margin-top: 8px; }
    .bio-technology__development__point p {
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      line-height: 150%;
      margin-top: 16px; }
    .bio-technology__development__point--images01 {
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-justify-content: space-between;
      justify-content: space-between;
      align-items: center;
      margin-top: 40px;
      padding-left: 30px; }
      @media only screen and (max-width: 767px) {
        .bio-technology__development__point--images01 {
          padding: 0;
          margin: 0; } }
      .bio-technology__development__point--images01 img {
        display: block; }
        @media only screen and (max-width: 767px) {
          .bio-technology__development__point--images01 img {
            margin-top: 48px; } }
        .bio-technology__development__point--images01 img:nth-child(1) {
          width: 52.7548209%; }
          @media only screen and (max-width: 767px) {
            .bio-technology__development__point--images01 img:nth-child(1) {
              width: 100%; } }
        .bio-technology__development__point--images01 img:nth-child(2) {
          width: 40.9669211%; }
          @media only screen and (max-width: 767px) {
            .bio-technology__development__point--images01 img:nth-child(2) {
              width: 100%; } }
    .bio-technology__development__point--images02 {
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-justify-content: space-between;
      justify-content: space-between;
      align-items: center;
      padding-left: 18px;
      margin-top: 40px; }
      @media only screen and (max-width: 767px) {
        .bio-technology__development__point--images02 {
          padding: 0;
          margin: 0; } }
      .bio-technology__development__point--images02 img {
        width: 41.9512195%;
        display: block; }
        @media only screen and (max-width: 767px) {
          .bio-technology__development__point--images02 img {
            width: 100%;
            margin-top: 48px; } }
    .bio-technology__development__works {
      border-radius: 2px;
      border: 1px solid #FFF;
      background: rgba(255, 255, 255, 0.7);
      box-shadow: 0px 32px 32px 0px rgba(0, 0, 0, 0.04);
      backdrop-filter: blur(12px);
      margin-top: 56px; }
      .bio-technology__development__works:nth-child(3) {
        margin-top: 40px; }
      .bio-technology__development__works__inner {
        padding: 64px; }
        @media only screen and (max-width: 767px) {
          .bio-technology__development__works__inner {
            padding: 40px 32px; } }
    .bio-technology__development__work__head figure {
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-justify-content: space-between;
      justify-content: space-between;
      padding-bottom: 23px;
      border-bottom: 1px solid #D0D6DB; }
      @media only screen and (max-width: 767px) {
        .bio-technology__development__work__head figure {
          display: block; } }
      .bio-technology__development__work__head figure > div div {
        width: 120px;
        height: 120px;
        border-radius: 120px;
        background-size: cover;
        background-position: center; }
        @media only screen and (max-width: 767px) {
          .bio-technology__development__work__head figure > div div {
            margin: auto;
            margin-bottom: 24px; } }
      .bio-technology__development__work__head figure figcaption {
        width: calc(100% - 120px);
        padding-left: 32px; }
        @media only screen and (max-width: 767px) {
          .bio-technology__development__work__head figure figcaption {
            width: 100%;
            padding: 0; } }
        .bio-technology__development__work__head figure figcaption small, .bio-technology__development__work__head figure figcaption strong {
          display: block; }
        .bio-technology__development__work__head figure figcaption small {
          font-size: 16px;
          font-style: normal;
          font-weight: 500;
          line-height: 130%; }
        .bio-technology__development__work__head figure figcaption strong {
          font-size: 20px;
          font-style: normal;
          font-weight: 700;
          line-height: 150%;
          margin-top: 8px; }
    .bio-technology__development__work__body strong {
      display: block;
      font-size: 16px;
      font-style: normal;
      font-weight: 700;
      line-height: 150%;
      color: #0EA39E; }
    .bio-technology__development__work__body p {
      margin-top: 8px;
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      line-height: 150%; }
    .bio-technology__development__work__body ul {
      margin-top: 8px; }
      .bio-technology__development__work__body ul li {
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        position: relative;
        display: block;
        padding-left: 16px; }
        .bio-technology__development__work__body ul li:before {
          content: "・";
          position: absolute;
          left: 0;
          top: 0; }
    .bio-technology__development__work__body > div {
      margin-top: 32px; }
      .bio-technology__development__work__body > div:nth-child(1) {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        align-items: flex-start; }
        .bio-technology__development__work__body > div:nth-child(1) > div:nth-child(1) {
          width: 51.2195122%; }
          @media only screen and (max-width: 767px) {
            .bio-technology__development__work__body > div:nth-child(1) > div:nth-child(1) {
              width: 100%;
              margin-top: 0; } }
        .bio-technology__development__work__body > div:nth-child(1) > div:nth-child(2) {
          width: 42.6829268%; }
          @media only screen and (max-width: 767px) {
            .bio-technology__development__work__body > div:nth-child(1) > div:nth-child(2) {
              width: 100%;
              margin-top: 32px; } }
    .bio-technology__development__images-box {
      border-radius: 2px;
      border: 1px solid #FFF;
      background: rgba(255, 255, 255, 0.7);
      box-shadow: 0px 32px 32px 0px rgba(0, 0, 0, 0.04);
      backdrop-filter: blur(12px);
      margin-top: 56px;
      padding: 96px; }
      @media only screen and (max-width: 767px) {
        .bio-technology__development__images-box {
          padding: 0 30px 48px; } }
      .bio-technology__development__images-box ul {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: space-between;
        justify-content: space-between; }
        .bio-technology__development__images-box ul li {
          width: 44.9238579%;
          margin-top: 80px;
          padding: 0 !important;
          background: none !important; }
          @media only screen and (max-width: 767px) {
            .bio-technology__development__images-box ul li {
              width: 100%;
              margin-top: 48px; } }
          .bio-technology__development__images-box ul li img {
            display: block;
            width: 100%; }
  .bio-technology__voice {
    padding-top: 160px; }
    .bio-technology__voice .inner > p {
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      line-height: 180%;
      margin-top: 56px; }
      @media only screen and (max-width: 767px) {
        .bio-technology__voice .inner > p {
          margin-top: 32px; } }
    .bio-technology__voice__row {
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-justify-content: space-between;
      justify-content: space-between;
      margin-bottom: 56px; }
      @media only screen and (max-width: 767px) {
        .bio-technology__voice__row {
          padding-top: 24px;
          margin-bottom: 48px; } }
      .bio-technology__voice__row > a {
        display: block;
        border-radius: 4px;
        overflow: hidden;
        margin-top: 40px;
        width: 47.9591837%; }
        @media only screen and (max-width: 767px) {
          .bio-technology__voice__row > a {
            margin-top: 24px;
            width: 100%; } }
        @media only screen and (min-width: 768px) {
          .bio-technology__voice__row > a:hover figure > div > div {
            transform: scale(1.05); } }
        .bio-technology__voice__row > a figure > div {
          display: block;
          overflow: hidden; }
          .bio-technology__voice__row > a figure > div > div {
            background-size: cover;
            background-position: center;
            padding-top: 44.6808511%;
            transition: transform .7s;
            transform: scale(1); }
        .bio-technology__voice__row > a figure figcaption {
          padding: 24px 40px 40px;
          background: #fff; }
          @media only screen and (max-width: 767px) {
            .bio-technology__voice__row > a figure figcaption {
              padding: 32px; } }
          .bio-technology__voice__row > a figure figcaption em {
            display: block;
            font-size: 16px;
            font-style: normal;
            font-weight: 700;
            line-height: 150%;
            color: #0EA39E;
            padding-top: 24px;
            border-top: 1px solid #E1E6EC;
            position: relative;
            margin-top: 24px; }
            .bio-technology__voice__row > a figure figcaption em:before {
              content: "";
              width: 56px;
              height: 1px;
              background: #0EA39E;
              position: absolute;
              left: 0;
              top: -1px; }
          .bio-technology__voice__row > a figure figcaption strong {
            display: block;
            font-size: 16px;
            font-style: normal;
            font-weight: 700;
            line-height: 150%; }
          .bio-technology__voice__row > a figure figcaption p {
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 150%;
            margin-top: 16px; }
  .bio-technology__solution-box01, .bio-technology__solution-box03 {
    margin-top: 109px;
    padding-top: 72px;
    padding-bottom: 80px;
    position: relative; }
    @media only screen and (max-width: 767px) {
      .bio-technology__solution-box01, .bio-technology__solution-box03 {
        margin-top: 64px;
        padding-top: 64px;
        padding-bottom: 0; } }
    .bio-technology__solution-box01:before, .bio-technology__solution-box03:before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(270deg, rgba(255, 255, 255, 0.7) 49.29%, rgba(234, 237, 241, 0.7) 100%); }
  .bio-technology__solution-box02 {
    margin-top: 109px;
    padding-top: 72px;
    padding-bottom: 80px;
    position: relative; }
    @media only screen and (max-width: 767px) {
      .bio-technology__solution-box02 {
        margin-top: 64px;
        padding-top: 64px;
        padding-bottom: 0; } }
    .bio-technology__solution-box02:before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, rgba(255, 255, 255, 0.7) 49.29%, rgba(234, 237, 241, 0.7) 100%); }
  .bio-technology__solution-box__inner {
    position: relative; }
    @media only screen and (max-width: 767px) {
      .bio-technology__solution-box__inner {
        padding: 0 25px; } }
  .bio-technology__solution-box__upper {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 64px;
    border-bottom: 1px solid #D0D6DB; }
    @media only screen and (max-width: 767px) {
      .bio-technology__solution-box__upper {
        padding-bottom: 40px; } }
    .bio-technology__solution-box__upper > div:nth-child(1) {
      width: 220px;
      padding-top: 14px; }
      @media only screen and (max-width: 767px) {
        .bio-technology__solution-box__upper > div:nth-child(1) {
          width: 100%;
          padding-top: 0; }
          .bio-technology__solution-box__upper > div:nth-child(1) img {
            width: 160px; } }
    .bio-technology__solution-box__upper > div:nth-child(2) {
      width: calc(100% - 286px); }
      @media only screen and (max-width: 767px) {
        .bio-technology__solution-box__upper > div:nth-child(2) {
          width: 100%; } }
      .bio-technology__solution-box__upper > div:nth-child(2) strong {
        display: block;
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        padding-top: 15px; }
        @media only screen and (max-width: 767px) {
          .bio-technology__solution-box__upper > div:nth-child(2) strong {
            padding-top: 0;
            font-size: 24px;
            font-style: normal;
            font-weight: 700;
            line-height: 150%;
            margin-top: 32px; } }
      .bio-technology__solution-box__upper > div:nth-child(2) p {
        margin-top: 24px;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        max-width: 670px; }
        @media only screen and (max-width: 767px) {
          .bio-technology__solution-box__upper > div:nth-child(2) p {
            margin-top: 16px; } }
  .bio-technology__solution-box__bottom {
    padding-top: 64px; }
    .bio-technology__solution-box__bottom > div:nth-child(1) strong {
      font-size: 16px;
      font-style: normal;
      font-weight: 700;
      line-height: 150%;
      display: block;
      color: #0EA39E; }
    .bio-technology__solution-box__bottom > div:nth-child(1) hr {
      border: none;
      box-shadow: none;
      width: 100%;
      height: 1px;
      background: #D0D6DB;
      margin: 0;
      padding: 0;
      margin: 32px 0; }
    .bio-technology__solution-box__bottom > div:nth-child(1) small {
      display: block;
      font-size: 12px;
      font-style: normal;
      font-weight: 500;
      line-height: 150%;
      letter-spacing: 0.48px;
      margin-top: 16px; }
    .bio-technology__solution-box__bottom > div:nth-child(1) ul {
      margin-top: 23px; }
      .bio-technology__solution-box__bottom > div:nth-child(1) ul:nth-child(1) {
        margin-top: 0; }
      .bio-technology__solution-box__bottom > div:nth-child(1) ul li b {
        display: block;
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        padding-left: 16px;
        position: relative; }
        .bio-technology__solution-box__bottom > div:nth-child(1) ul li b:before {
          content: "";
          position: absolute;
          left: 0;
          top: 0;
          width: 4px;
          height: 84%;
          background-image: linear-gradient(180deg, #18C8AF 0%, #2AB8CB 100%);
          bottom: 0;
          margin: auto; }
      .bio-technology__solution-box__bottom > div:nth-child(1) ul li span {
        display: block;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        margin-top: 8px; }
    .bio-technology__solution-box__bottom > div:nth-child(1) .button {
      margin-top: 56px; }
      @media only screen and (max-width: 767px) {
        .bio-technology__solution-box__bottom > div:nth-child(1) .button {
          margin-top: 32px; } }
    .bio-technology__solution-box__bottom01 > div:nth-child(1) {
      position: relative;
      z-index: 1; }
    @media only screen and (min-width: 768px) {
      .bio-technology__solution-box__bottom01 > div:nth-child(2) {
        position: absolute;
        right: -11%;
        bottom: -4%;
        width: 75.97%;
        z-index: 0;
        pointer-events: none; } }
    @media only screen and (max-width: 767px) {
      .bio-technology__solution-box__bottom01 > div:nth-child(2) {
        width: 125%;
        position: relative;
        left: -19%; } }
    .bio-technology__solution-box__bottom02 > div:nth-child(1) {
      width: 480px;
      margin: 0 0 0 auto;
      position: relative;
      z-index: 1; }
      @media only screen and (max-width: 767px) {
        .bio-technology__solution-box__bottom02 > div:nth-child(1) {
          width: 100%; } }
    @media only screen and (min-width: 768px) {
      .bio-technology__solution-box__bottom02 > div:nth-child(2) {
        position: absolute;
        left: -12%;
        bottom: -2%;
        width: 68.861224%;
        z-index: 0;
        pointer-events: none; } }
    @media only screen and (max-width: 767px) {
      .bio-technology__solution-box__bottom02 > div:nth-child(2) {
        width: 126%;
        left: -9%;
        position: relative; } }
    .bio-technology__solution-box__bottom03 > div:nth-child(1) {
      position: relative;
      width: 480px;
      z-index: 1; }
      @media only screen and (max-width: 767px) {
        .bio-technology__solution-box__bottom03 > div:nth-child(1) {
          width: 100%; } }
    @media only screen and (min-width: 768px) {
      .bio-technology__solution-box__bottom03 > div:nth-child(2) {
        position: absolute;
        right: -12%;
        bottom: 11%;
        width: 74.27551%;
        z-index: 0;
        pointer-events: none; } }
    @media only screen and (max-width: 767px) {
      .bio-technology__solution-box__bottom03 > div:nth-child(2) {
        width: 126%;
        left: -18%;
        position: relative; } }
  .bio-technology__strength {
    padding-top: 160px; }
    @media only screen and (min-width: 768px) {
      .bio-technology__strength .inner > p {
        white-space: nowrap; } }
    .bio-technology__strength__row {
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-justify-content: space-between;
      justify-content: space-between; }
      .bio-technology__strength__row > div {
        width: 31.0728745%;
        border-radius: 2px;
        border: 1px solid #FFF;
        background: rgba(255, 255, 255, 0.7);
        box-shadow: 0px 32px 32px 0px rgba(0, 0, 0, 0.04);
        backdrop-filter: blur(12px);
        padding: 36px 23px;
        margin-top: 60px; }
        @media only screen and (max-width: 767px) {
          .bio-technology__strength__row > div {
            margin-top: 32px;
            width: 100%; } }
        .bio-technology__strength__row > div > strong small, .bio-technology__strength__row > div > strong span, .bio-technology__strength__row > div > strong b {
          display: block;
          text-align: center; }
        .bio-technology__strength__row > div > strong small {
          color: #23B7A9;
          text-align: center;
          font-family: "Josefin Sans", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
          font-size: 14px;
          font-style: normal;
          font-weight: 700;
          line-height: normal; }
        .bio-technology__strength__row > div > strong span {
          color: #23B7A9;
          text-align: center;
          font-family: "Akshar", "Josefin Sans", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
          font-size: 32px;
          font-style: normal;
          font-weight: 600;
          margin-top: 8px; }
        .bio-technology__strength__row > div > strong b {
          margin-top: 14px;
          padding-bottom: 24px;
          font-size: 18px;
          font-style: normal;
          font-weight: 700;
          line-height: 150%;
          border-bottom: 1px solid #ECECEC; }
        .bio-technology__strength__row > div > p {
          font-size: 16px;
          font-style: normal;
          font-weight: 500;
          line-height: 150%;
          margin-top: 26px; }
  .bio-technology__sales-solution {
    padding-top: 160px; }
    .bio-technology__sales-solution .inner > img {
      display: block;
      margin-top: 96px;
      max-width: 100%;
      width: 100%; }
      @media only screen and (max-width: 767px) {
        .bio-technology__sales-solution .inner > img {
          margin-top: 40px; } }
    .bio-technology__sales-solution__boxes {
      margin-top: 96px !important; }
    .bio-technology__sales-solution__box:nth-child(1) {
      padding-bottom: 204px; }
      @media only screen and (max-width: 767px) {
        .bio-technology__sales-solution__box:nth-child(1) {
          padding-bottom: 80px; } }
    .bio-technology__sales-solution__box__head {
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-justify-content: space-between;
      justify-content: space-between;
      border-top: 1px solid #D0D6DB;
      padding-top: 24px; }
      .bio-technology__sales-solution__box__head > div:nth-child(1) {
        width: 367px; }
        @media only screen and (max-width: 767px) {
          .bio-technology__sales-solution__box__head > div:nth-child(1) {
            width: 100%; } }
        .bio-technology__sales-solution__box__head > div:nth-child(1) strong {
          display: block;
          font-size: 24px;
          font-style: normal;
          font-weight: 500;
          line-height: 150%; }
      .bio-technology__sales-solution__box__head > div:nth-child(2) {
        width: calc(100% - 367px);
        padding-left: 40px;
        border-left: 1px solid #D0D6DB; }
        @media only screen and (max-width: 767px) {
          .bio-technology__sales-solution__box__head > div:nth-child(2) {
            width: 100%;
            padding-left: 0;
            border: none;
            margin-top: 26px;
            padding-top: 16px;
            position: relative; }
            .bio-technology__sales-solution__box__head > div:nth-child(2):before {
              content: "";
              position: absolute;
              left: 0;
              top: 0;
              width: 110px;
              height: 1px;
              background: #D0D6DB; } }
        .bio-technology__sales-solution__box__head > div:nth-child(2) p {
          font-size: 16px;
          font-style: normal;
          font-weight: 500;
          line-height: 180%; }
        .bio-technology__sales-solution__box__head > div:nth-child(2) small {
          display: block;
          font-size: 14px;
          font-style: normal;
          font-weight: 500;
          line-height: 150%;
          margin-top: 8px; }
    .bio-technology__sales-solution__box__content {
      margin-top: 56px; }
      .bio-technology__sales-solution__box__content__row {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        position: relative;
        padding: 0 38px; }
        .bio-technology__sales-solution__box__content__row:before {
          content: "";
          position: absolute;
          left: 0;
          top: -9px;
          width: 100%;
          height: 264px;
          background: linear-gradient(360deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 100%); }
          @media only screen and (max-width: 767px) {
            .bio-technology__sales-solution__box__content__row:before {
              content: none; } }
        .bio-technology__sales-solution__box__content__row figure {
          width: 33.33333%;
          position: relative; }
          @media only screen and (max-width: 767px) {
            .bio-technology__sales-solution__box__content__row figure {
              width: 100%;
              padding-bottom: 80px; } }
          @media only screen and (max-width: 767px) {
            .bio-technology__sales-solution__box__content__row figure > div:before {
              content: "";
              position: absolute;
              left: 0;
              top: -8px;
              width: 100%;
              height: 264px;
              background: linear-gradient(360deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 100%);
              margin-left: -24px;
              width: calc(100% + 48px); } }
          .bio-technology__sales-solution__box__content__row figure > div img {
            width: 79.3333333%;
            display: block;
            margin: auto; }
            @media only screen and (max-width: 767px) {
              .bio-technology__sales-solution__box__content__row figure > div img {
                width: 240px;
                position: relative;
                z-index: 1; } }
          .bio-technology__sales-solution__box__content__row figure figcaption {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: -51px; }
            @media only screen and (max-width: 767px) {
              .bio-technology__sales-solution__box__content__row figure figcaption {
                bottom: 26px; } }
            .bio-technology__sales-solution__box__content__row figure figcaption a {
              min-width: 176px;
              text-align: center;
              line-height: 1; }
              .bio-technology__sales-solution__box__content__row figure figcaption a span {
                display: inline-block !important; }
      .bio-technology__sales-solution__box__content__sec {
        padding: 125px 0;
        position: relative; }
        @media only screen and (max-width: 767px) {
          .bio-technology__sales-solution__box__content__sec {
            padding: 60px 0; } }
        .bio-technology__sales-solution__box__content__sec:nth-child(1):before {
          content: "";
          position: absolute;
          left: 0;
          top: 0;
          width: 100%;
          height: 100%;
          background: linear-gradient(270deg, #FFF 0%, #EAEDF1 100%); }
          @media only screen and (max-width: 767px) {
            .bio-technology__sales-solution__box__content__sec:nth-child(1):before {
              width: calc(100% + 24px); } }
        .bio-technology__sales-solution__box__content__sec:nth-child(1) > div:nth-child(1) {
          padding-left: 56px; }
          @media only screen and (max-width: 767px) {
            .bio-technology__sales-solution__box__content__sec:nth-child(1) > div:nth-child(1) {
              padding: 0; } }
        @media only screen and (min-width: 768px) {
          .bio-technology__sales-solution__box__content__sec:nth-child(1) > div:nth-child(2) {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%); } }
        @media only screen and (min-width: 768px) {
          .bio-technology__sales-solution__box__content__sec:nth-child(1) > div:nth-child(2) img {
            max-height: 304px; } }
        .bio-technology__sales-solution__box__content__sec:nth-child(2) {
          margin-top: 32px;
          padding: 137px 0; }
          @media only screen and (max-width: 767px) {
            .bio-technology__sales-solution__box__content__sec:nth-child(2) {
              padding: 60px 0 0; } }
          .bio-technology__sales-solution__box__content__sec:nth-child(2):before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, #FFF 0%, #EAEDF1 100%); }
            @media only screen and (max-width: 767px) {
              .bio-technology__sales-solution__box__content__sec:nth-child(2):before {
                width: calc(100% + 24px);
                margin-left: -24px; } }
          .bio-technology__sales-solution__box__content__sec:nth-child(2) > div:nth-child(1) {
            padding-right: 56px;
            width: 460px;
            margin: 0 0 0 auto; }
            @media only screen and (max-width: 767px) {
              .bio-technology__sales-solution__box__content__sec:nth-child(2) > div:nth-child(1) {
                width: 100%;
                padding-right: 0; } }
          @media only screen and (max-width: 767px) {
            .bio-technology__sales-solution__box__content__sec:nth-child(2) > div:nth-child(2) {
              padding-top: 40px; }
              .bio-technology__sales-solution__box__content__sec:nth-child(2) > div:nth-child(2) img {
                width: 240px;
                margin: auto;
                display: block; } }
          @media only screen and (min-width: 768px) {
            .bio-technology__sales-solution__box__content__sec:nth-child(2) > div:nth-child(2) {
              top: auto;
              bottom: 0;
              left: 11%;
              position: absolute; }
              .bio-technology__sales-solution__box__content__sec:nth-child(2) > div:nth-child(2) img {
                height: 360px; } }
        .bio-technology__sales-solution__box__content__sec > div {
          position: relative;
          z-index: 1; }
          .bio-technology__sales-solution__box__content__sec > div:nth-child(1) strong {
            display: block;
            font-size: 20px;
            font-style: normal;
            font-weight: 700;
            line-height: 150%; }
          .bio-technology__sales-solution__box__content__sec > div:nth-child(1) p {
            margin-top: 16px; }
          .bio-technology__sales-solution__box__content__sec > div:nth-child(1) .button {
            margin-top: 32px; }
            @media only screen and (max-width: 767px) {
              .bio-technology__sales-solution__box__content__sec > div:nth-child(1) .button {
                margin-top: 24px;
                padding-bottom: 24px; } }
      .bio-technology__sales-solution__box__content__royalty {
        position: relative;
        margin-top: 32px;
        padding: 56px 0; }
        .bio-technology__sales-solution__box__content__royalty:before {
          content: "";
          position: absolute;
          left: 0;
          top: 0;
          width: 100%;
          height: 100%;
          opacity: 0.8;
          background: linear-gradient(159deg, rgba(255, 255, 255, 0) 0%, #FFF 100%); }
        .bio-technology__sales-solution__box__content__royalty strong {
          position: relative;
          display: block;
          font-size: 20px;
          font-style: normal;
          font-weight: 700;
          line-height: 150%;
          text-align: center; }
        .bio-technology__sales-solution__box__content__royalty__row {
          display: -webkit-flex;
          display: flex;
          -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
          -webkit-justify-content: space-between;
          justify-content: space-between;
          margin-top: 24px;
          position: relative; }
          .bio-technology__sales-solution__box__content__royalty__row figure {
            width: 50%;
            position: relative;
            padding: 0 48px; }
            @media only screen and (max-width: 767px) {
              .bio-technology__sales-solution__box__content__royalty__row figure {
                width: 100%;
                padding: 0 24px; } }
            @media only screen and (max-width: 767px) {
              .bio-technology__sales-solution__box__content__royalty__row figure:nth-child(1) {
                padding-bottom: 32px; } }
            .bio-technology__sales-solution__box__content__royalty__row figure:nth-child(1):before {
              content: "";
              position: absolute;
              right: 0;
              top: 0;
              width: 1px;
              height: 100%;
              background: #D0D6DB; }
              @media only screen and (max-width: 767px) {
                .bio-technology__sales-solution__box__content__royalty__row figure:nth-child(1):before {
                  top: auto;
                  bottom: 0;
                  right: 0;
                  left: 0;
                  margin: auto;
                  width: calc(100% - 48px);
                  height: 1px; } }
            @media only screen and (max-width: 767px) {
              .bio-technology__sales-solution__box__content__royalty__row figure:nth-child(2) {
                margin-top: 32px; } }
            .bio-technology__sales-solution__box__content__royalty__row figure > div img {
              display: block;
              width: 88px;
              margin: auto; }
            .bio-technology__sales-solution__box__content__royalty__row figure > div p {
              font-size: 20px;
              font-style: normal;
              font-weight: 700;
              line-height: 150%;
              text-align: center;
              padding-top: 16px; }
            .bio-technology__sales-solution__box__content__royalty__row figure figcaption {
              font-size: 16px;
              font-style: normal;
              font-weight: 500;
              line-height: 150%;
              padding-top: 16px; }
  .bio-technology__simple-row {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin-top: 62px; }
    .bio-technology__simple-row p {
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      line-height: 180%;
      width: 59.1836735%;
      padding-right: 64px; }
      @media only screen and (max-width: 767px) {
        .bio-technology__simple-row p {
          width: 100%;
          padding: 0; } }
    .bio-technology__simple-row div {
      width: 40.8163265%; }
      @media only screen and (max-width: 767px) {
        .bio-technology__simple-row div {
          width: 100%;
          margin-top: 40px; } }
  .bio-technology__business {
    padding-bottom: 172px;
    position: relative; }
    @media only screen and (max-width: 767px) {
      .bio-technology__business {
        padding-bottom: 120px; } }
    .bio-technology__business .inner {
      position: relative;
      z-index: 1; }
    @media only screen and (max-width: 767px) {
      .bio-technology__business.kaiseki-business:after {
        bottom: -1px;
        height: 88px;
        clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 0% 100%); } }
    .bio-technology__business:after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 306px;
      background: #F1F3F6;
      z-index: 0;
      clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 0% 100%); }
      @media only screen and (max-width: 767px) {
        .bio-technology__business:after {
          bottom: 38px;
          height: 76px; } }
  .bio-technology__business-strength {
    background: #F1F3F6;
    padding-bottom: 168px;
    position: relative; }
    @media only screen and (max-width: 767px) {
      .bio-technology__business-strength {
        padding-top: 40px;
        padding-bottom: 40px; } }
    .bio-technology__business-strength:after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 306px;
      background: #EAEDF1;
      z-index: 0;
      clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 0% 100%); }
      @media only screen and (max-width: 767px) {
        .bio-technology__business-strength:after {
          bottom: -1px;
          height: 88px; } }
    .bio-technology__business-strength .inner {
      z-index: 1; }
      .bio-technology__business-strength .inner p {
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 180%;
        margin-top: 56px; }
      .bio-technology__business-strength .inner img {
        margin-top: 68px;
        display: block;
        width: 100%;
        max-width: 753px; }
        @media only screen and (max-width: 767px) {
          .bio-technology__business-strength .inner img {
            margin-left: -24px;
            width: calc(100% + 48px);
            max-width: calc(100% + 48px); } }
      .bio-technology__business-strength .inner .button {
        margin-top: 24px; }
        @media only screen and (max-width: 767px) {
          .bio-technology__business-strength .inner .button {
            margin-top: 40px;
            width: 100%; }
            .bio-technology__business-strength .inner .button a {
              width: 100%; }
            .bio-technology__business-strength .inner .button span {
              text-align: left;
              width: 100%; } }
  .bio-technology__data-analysis {
    background: #EAEDF1;
    padding-bottom: 120px;
    position: relative; }
    @media only screen and (max-width: 767px) {
      .bio-technology__data-analysis {
        padding-top: 80px; } }
    .bio-technology__data-analysis .inner p {
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      line-height: 180%;
      margin-top: 56px; }
    .bio-technology__data-analysis .inner img {
      margin-top: 68px;
      display: block;
      width: 100%;
      max-width: 100%; }
  .bio-technology__products {
    padding-top: 56px;
    overflow: hidden; }
    .bio-technology__products__head {
      padding-bottom: 64px; }
      @media only screen and (max-width: 767px) {
        .bio-technology__products__head {
          padding-bottom: 0; } }
      .bio-technology__products__head > div {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        align-items: flex-start; }
        .bio-technology__products__head > div img {
          width: 22.5510204%;
          display: block; }
          @media only screen and (max-width: 767px) {
            .bio-technology__products__head > div img {
              width: 160px; } }
        .bio-technology__products__head > div strong {
          padding-top: 4px;
          display: block;
          font-size: 32px;
          font-style: normal;
          font-weight: 700;
          line-height: 150%;
          width: 70.9183673%; }
          @media only screen and (max-width: 767px) {
            .bio-technology__products__head > div strong {
              width: 100%;
              font-size: 24px;
              font-style: normal;
              font-weight: 700;
              line-height: 150%;
              padding-top: 30px; } }
    .bio-technology__products__body {
      padding-top: 64px;
      border-top: 1px solid #D0D6DB;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-justify-content: space-between;
      justify-content: space-between;
      align-items: center; }
      @media only screen and (max-width: 767px) {
        .bio-technology__products__body {
          padding-top: 40px; } }
      .bio-technology__products__body > div:nth-child(1) {
        width: 43.777551%; }
        @media only screen and (max-width: 767px) {
          .bio-technology__products__body > div:nth-child(1) {
            width: 100%; } }
        .bio-technology__products__body > div:nth-child(1) p {
          font-size: 16px;
          font-style: normal;
          font-weight: 500;
          line-height: 150%; }
        .bio-technology__products__body > div:nth-child(1) small {
          display: block;
          font-size: 12px;
          font-style: normal;
          font-weight: 500;
          line-height: 150%;
          /* 18px */
          letter-spacing: 0.48px;
          margin-top: 12px; }
        .bio-technology__products__body > div:nth-child(1) .button {
          margin-top: 64px; }
          @media only screen and (max-width: 767px) {
            .bio-technology__products__body > div:nth-child(1) .button {
              margin-top: 32px; } }
      .bio-technology__products__body > div:nth-child(2) {
        width: 56.122449%; }
        @media only screen and (max-width: 767px) {
          .bio-technology__products__body > div:nth-child(2) {
            margin-top: 48px;
            width: 100%; } }
        .bio-technology__products__body > div:nth-child(2) img {
          display: block; }
  .bio-technology__product {
    margin-top: 64px;
    padding: 80px 0 120px; }
    @media only screen and (max-width: 767px) {
      .bio-technology__product {
        padding: 64px 0; } }
    .bio-technology__product01 {
      background: linear-gradient(141deg, #FFF 0%, #EAEDF1 100%); }
      .bio-technology__product01 .bio-technology__products__body > div:nth-child(2) {
        max-width: 444px; }
    .bio-technology__product02 {
      background: linear-gradient(265deg, #FFF 0%, #EAEDF1 100%); }
      @media only screen and (min-width: 768px) {
        .bio-technology__product02 .bio-technology__products__body {
          align-items: flex-start; }
          .bio-technology__product02 .bio-technology__products__body > div:nth-child(1) {
            order: 2; }
          .bio-technology__product02 .bio-technology__products__body > div:nth-child(2) {
            order: 1; }
            .bio-technology__product02 .bio-technology__products__body > div:nth-child(2) img {
              max-width: 131%;
              right: 29%;
              position: relative; } }
    .bio-technology__product03 {
      background: linear-gradient(141deg, #FFF 0%, #EAEDF1 100%); }
      @media only screen and (min-width: 768px) {
        .bio-technology__product03 .bio-technology__products__body {
          align-items: flex-start; }
          .bio-technology__product03 .bio-technology__products__body > div:nth-child(2) img {
            max-width: 131%;
            left: -2%;
            position: relative; } }
  .bio-technology__promotion-support {
    padding-top: 160px;
    padding-bottom: 120px;
    position: relative; }
    .bio-technology__promotion-support:after, .bio-technology__promotion-support:before {
      content: "";
      position: absolute;
      right: -303.5px;
      top: -303.5px;
      border-radius: 607px;
      opacity: 0.10000000149011612;
      background: var(--agrismilegreen, #0EA39E);
      filter: blur(100px);
      width: 607px;
      height: 607px;
      pointer-events: none;
      z-index: -1; }
    .bio-technology__promotion-support:after {
      right: auto;
      left: -400px;
      top: 410px; }
    .bio-technology__promotion-support .inner > img {
      width: 100%;
      max-width: 100%; }
    .bio-technology__promotion-support__products {
      padding-bottom: 120px; }
      .bio-technology__promotion-support__products .bio-technology__solution-box01 {
        margin-top: 0; }
        .bio-technology__promotion-support__products .bio-technology__solution-box01 .bio-technology__solution-box__bottom01 > div:nth-child(1) {
          width: 50%; }
          @media only screen and (max-width: 767px) {
            .bio-technology__promotion-support__products .bio-technology__solution-box01 .bio-technology__solution-box__bottom01 > div:nth-child(1) {
              width: 100%; } }
        .bio-technology__promotion-support__products .bio-technology__solution-box01 .bio-technology__solution-box__bottom01 > div:nth-child(2) {
          right: -13%;
          bottom: 15.9%;
          width: 71%; }
          @media only screen and (max-width: 767px) {
            .bio-technology__promotion-support__products .bio-technology__solution-box01 .bio-technology__solution-box__bottom01 > div:nth-child(2) {
              width: 100%;
              right: 0;
              bottom: 0;
              left: 0;
              padding-bottom: 60px; } }
      @media only screen and (min-width: 768px) {
        .bio-technology__promotion-support__products .bio-technology__solution-box02 .bio-technology__solution-box__bottom02 > div:nth-child(2) {
          position: absolute;
          left: 2%;
          bottom: -5%;
          width: 32.499999%;
          z-index: 0;
          pointer-events: none; } }
      @media only screen and (max-width: 767px) {
        .bio-technology__promotion-support__products .bio-technology__solution-box02 .bio-technology__solution-box__bottom02 > div:nth-child(2) {
          padding: 0 24px;
          margin-top: 40px;
          padding-bottom: 48px; } }

.biostimulants {
  display: block;
  position: relative;
  overflow: hidden;
  background: #fff; }
  .biostimulants h3 {
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    margin-top: 24px;
    padding-bottom: 16px;
    position: relative;
    z-index: 2; }
    .biostimulants h3:before {
      content: "";
      width: 370px;
      height: 1px;
      background: #222;
      position: absolute;
      left: 0;
      bottom: 0; }
    @media only screen and (max-width: 767px) {
      .biostimulants h3 {
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        position: relative;
        border-bottom: none; }
        .biostimulants h3:before {
          content: "";
          width: 192px;
          height: 1px;
          background: #222;
          position: absolute;
          left: 0;
          bottom: 0; } }
  .biostimulants__mv {
    height: 512px;
    overflow: hidden;
    position: relative;
    background-image: url(../images/biostimulants/mv_pc.jpg);
    background-position: center center;
    background-size: cover; }
    @media only screen and (max-width: 767px) {
      .biostimulants__mv {
        background-image: url(../images/biostimulants/mv_sp.jpg);
        height: 380px; } }
    .biostimulants__mv:before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.3); }
    .biostimulants__mv .inner {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 100%;
      transform: translate(-50%, -50%); }
      .biostimulants__mv .inner h1 {
        color: #fff; }
        .biostimulants__mv .inner h1 em {
          display: block;
          font-size: 20px;
          font-style: normal;
          font-weight: 700;
          line-height: 20px;
          /* 100% */
          letter-spacing: -0.4px;
          font-family: "Josefin Sans", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif; }
        .biostimulants__mv .inner h1 strong {
          display: block;
          font-size: 40px;
          font-style: normal;
          font-weight: 700;
          line-height: 150%;
          margin-top: 24px; }
          @media only screen and (max-width: 767px) {
            .biostimulants__mv .inner h1 strong {
              font-size: 30px;
              font-style: normal;
              font-weight: 700;
              line-height: 150%;
              /* 45px */
              letter-spacing: -0.6px;
              margin-top: 16px; } }
          .biostimulants__mv .inner h1 strong span {
            display: inline-block;
            position: relative;
            padding-bottom: 16px; }
            @media only screen and (max-width: 767px) {
              .biostimulants__mv .inner h1 strong span {
                padding-bottom: 24px; } }
            .biostimulants__mv .inner h1 strong span:before {
              content: "";
              position: absolute;
              left: 0;
              bottom: 0;
              width: 160px;
              height: 1px;
              background: #fff; }
      .biostimulants__mv .inner p {
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        margin-top: 80px;
        max-width: 416px;
        color: #fff; }
        @media only screen and (max-width: 767px) {
          .biostimulants__mv .inner p {
            margin-top: 32px; } }
  .biostimulants__about {
    padding: 107px 0 104px;
    background: linear-gradient(180deg, #EAEDF1 0%, #FFF 100%);
    backdrop-filter: blur(5px);
    position: relative; }
    @media only screen and (max-width: 767px) {
      .biostimulants__about {
        padding-top: 91px;
        padding-bottom: 110px;
        background: linear-gradient(180deg, #FFF 50.52%, #EAEDF1 100%);
        backdrop-filter: blur(5px); } }
    .biostimulants__about > svg {
      position: absolute;
      right: 0;
      bottom: 0;
      width: calc(100% - 21px);
      height: auto;
      display: block; }
      @media only screen and (max-width: 767px) {
        .biostimulants__about > svg {
          width: 100%;
          bottom: -30px; } }
    .biostimulants__about .inner {
      position: relative; }
      .biostimulants__about .inner p {
        color: #222;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 180%;
        /* 28.8px */
        margin-top: 32px; }
        .biostimulants__about .inner p b {
          font-weight: bold; }
  .biostimulants__points--whole {
    background: linear-gradient(180deg, rgba(225, 230, 236, 0) 0%, #E1E6EC 100%);
    position: relative;
    z-index: 1; }
    @media only screen and (max-width: 767px) {
      .biostimulants__points--whole {
        background: #EAEDF1; } }
  .biostimulants__points__row {
    margin-top: 160px; }
    @media only screen and (max-width: 767px) {
      .biostimulants__points__row {
        margin-top: 80px; } }
    .biostimulants__points__row:nth-child(1) {
      margin-top: 0; }
    @media only screen and (min-width: 768px) {
      .biostimulants__points__row:nth-child(odd) figure > div {
        order: 2; }
      .biostimulants__points__row:nth-child(odd) figure figcaption {
        order: 1; }
      .biostimulants__points__row:nth-child(even) figure > div > div {
        left: auto;
        right: 0; } }
    @media only screen and (max-width: 767px) {
      .biostimulants__points__row figure > div {
        order: 2; }
      .biostimulants__points__row figure figcaption {
        order: 1; } }
    .biostimulants__points__row figure {
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-justify-content: space-between;
      justify-content: space-between; }
      @media only screen and (max-width: 767px) {
        .biostimulants__points__row figure {
          display: block; } }
      .biostimulants__points__row figure > div {
        width: 40.653061%;
        height: 315px;
        position: relative; }
        @media only screen and (max-width: 767px) {
          .biostimulants__points__row figure > div {
            display: none; } }
        .biostimulants__points__row figure > div > div {
          background-size: cover;
          background-position: center; }
          @media only screen and (min-width: 768px) {
            .biostimulants__points__row figure > div > div {
              width: 138.454829%;
              position: absolute;
              left: 0;
              top: 0;
              height: 100%; } }
          @media only screen and (max-width: 767px) {
            .biostimulants__points__row figure > div > div {
              padding-top: 56.2666667%; } }
      .biostimulants__points__row figure figcaption {
        width: 52.4489796%;
        padding-left: 48px;
        position: relative; }
        @media only screen and (max-width: 767px) {
          .biostimulants__points__row figure figcaption {
            width: 100%;
            padding-left: 0; } }
        .biostimulants__points__row figure figcaption > img:nth-child(1) {
          position: absolute;
          left: 0;
          top: 6px;
          width: 35px;
          height: auto; }
          @media only screen and (max-width: 767px) {
            .biostimulants__points__row figure figcaption > img:nth-child(1) {
              position: static; } }
        .biostimulants__points__row figure figcaption > img:nth-child(4) {
          display: block;
          margin-left: -24px;
          margin-top: 48px;
          width: calc(100% + 48px);
          max-width: calc(100% + 48px); }
        .biostimulants__points__row figure figcaption strong {
          display: block;
          font-size: 20px;
          font-style: normal;
          font-weight: 700;
          line-height: 150%; }
          @media only screen and (max-width: 767px) {
            .biostimulants__points__row figure figcaption strong {
              font-size: 18px;
              margin-top: 16px; } }
        .biostimulants__points__row figure figcaption p {
          font-size: 16px;
          font-style: normal;
          font-weight: 500;
          line-height: 180%;
          margin-top: 16px; }
          .biostimulants__points__row figure figcaption p b {
            font-weight: bold; }
  .biostimulants__market {
    padding-top: 160px;
    position: relative; }
    @media only screen and (max-width: 767px) {
      .biostimulants__market {
        padding-top: 83px; } }
    .biostimulants__market > svg {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: auto;
      z-index: 0;
      pointer-events: none; }
    .biostimulants__market .inner {
      position: relative; }
      .biostimulants__market .inner h2 {
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%; }
        @media only screen and (max-width: 767px) {
          .biostimulants__market .inner h2 {
            font-size: 20px;
            font-style: normal;
            font-weight: 700;
            line-height: 150%; } }
      .biostimulants__market .inner p {
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 180%;
        margin-top: 32px; }
        .biostimulants__market .inner p b {
          font-weight: 700; }
      .biostimulants__market .inner figure {
        margin-top: 48px; }
        .biostimulants__market .inner figure > img {
          box-shadow: 0px 32px 32px 0px rgba(0, 0, 0, 0.04); }
        .biostimulants__market .inner figure figcaption {
          padding-top: 16px; }
          .biostimulants__market .inner figure figcaption span {
            display: block;
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 1; }
            @media only screen and (max-width: 767px) {
              .biostimulants__market .inner figure figcaption span {
                display: -webkit-flex;
                display: flex;
                -webkit-flex-wrap: wrap;
                flex-wrap: wrap;
                -webkit-justify-content: space-between;
                justify-content: space-between;
                font-size: 12px;
                line-height: 1.5; }
                .biostimulants__market .inner figure figcaption span > b {
                  display: block; }
                  .biostimulants__market .inner figure figcaption span > b:nth-child(1) {
                    width: 40px; }
                  .biostimulants__market .inner figure figcaption span > b:nth-child(2) {
                    width: calc(100% - 40px); } }
            .biostimulants__market .inner figure figcaption span a {
              display: inline-block;
              vertical-align: top; }
              .biostimulants__market .inner figure figcaption span a em, .biostimulants__market .inner figure figcaption span a svg {
                display: inline-block;
                vertical-align: top; }
              .biostimulants__market .inner figure figcaption span a em {
                color: #0EA39E; }
              .biostimulants__market .inner figure figcaption span a svg {
                position: relative;
                top: 4px; }
  .biostimulants__description {
    padding-top: 160px;
    padding-bottom: 160px;
    position: relative;
    background: #E1E6EC; }
    @media only screen and (max-width: 767px) {
      .biostimulants__description {
        padding: 120px 0; } }
    .biostimulants__description > svg {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: auto;
      display: block;
      z-index: 0;
      pointer-events: none; }
    .biostimulants__description .inner {
      position: relative; }
      .biostimulants__description .inner p {
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 180%;
        margin-top: 32px; }
        .biostimulants__description .inner p b {
          font-weight: bold; }
      .biostimulants__description .inner figure {
        margin-top: 55px; }
        @media only screen and (max-width: 767px) {
          .biostimulants__description .inner figure img {
            margin-left: -24px;
            width: calc(100% + 48px);
            max-width: calc(100% + 48px); } }
        .biostimulants__description .inner figure figcaption {
          padding-top: 41px; }
          @media only screen and (max-width: 767px) {
            .biostimulants__description .inner figure figcaption p {
              margin-top: 0; } }
      .biostimulants__description .inner .button {
        margin-top: 56px; }
        @media only screen and (max-width: 767px) {
          .biostimulants__description .inner .button {
            margin-top: 40px; } }
        @media only screen and (max-width: 767px) {
          .biostimulants__description .inner .button a {
            width: 100%;
            padding: 16px 0; } }

.career-detail {
  margin-top: -160px;
  position: relative;
  z-index: 1; }
  @media only screen and (max-width: 767px) {
    .career-detail {
      padding-bottom: 56px; } }
  .career-detail__head p {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    max-width: 805px; }
    @media only screen and (max-width: 767px) {
      .career-detail__head p {
        margin-top: 40px; } }
  .career-detail__head ul {
    margin-top: 40px; }
    @media only screen and (max-width: 767px) {
      .career-detail__head ul {
        margin-top: 32px; } }
    .career-detail__head ul li {
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: 200%;
      display: inline-block;
      vertical-align: middle;
      padding-right: 12px;
      margin-right: 16px;
      color: #666666;
      position: relative; }
      .career-detail__head ul li:before {
        content: "";
        width: 1px;
        height: 17px;
        background: #666666;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto; }
      .career-detail__head ul li:last-child {
        padding-right: 0;
        margin-right: 0;
        border: none; }
        .career-detail__head ul li:last-child:before {
          content: none; }
  .career-detail__contents {
    max-width: 860px;
    padding: 0 30px;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 64px; }
    @media only screen and (max-width: 767px) {
      .career-detail__contents {
        padding: 0; } }
    .career-detail__contents > h2 {
      padding-top: 64px;
      border-top: 1px solid #000; }
      @media only screen and (max-width: 767px) {
        .career-detail__contents > h2 {
          padding-top: 48px; } }
    .career-detail__contents a {
      color: #0EA39E;
      text-decoration: underline; }
    .career-detail__contents .title__jobdetail {
      font-size: 24px;
      font-style: normal;
      font-weight: 700;
      line-height: 150%;
      margin-top: 64px; }
      @media only screen and (max-width: 767px) {
        .career-detail__contents .title__jobdetail {
          margin-top: 48px; } }
    .career-detail__contents .indlist {
      padding-top: 24px; }
      .career-detail__contents .indlist li {
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        position: relative;
        padding: 8px 0;
        padding-left: 18px; }
        .career-detail__contents .indlist li:before {
          content: "";
          position: absolute;
          left: 0;
          top: 18px;
          width: 6px;
          height: 6px;
          background: #0EA39E;
          border-radius: 6px; }
    .career-detail__contents .job__detail-vtblock-inr {
      margin-top: 32px; }
    .career-detail__contents .job__detail-vtblock-img img, .career-detail__contents .job__detail-vtblock-img video, .career-detail__contents .job__detail-vtblock-img iframe {
      display: block;
      width: 100%; }
    .career-detail__contents .job__detail-vtblock-text {
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: 200%;
      margin-top: 40px; }
    .career-detail__contents .job__detail-table {
      width: 100%;
      margin-top: 33px;
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      line-height: 150%;
      border-top: 1px solid #DCDCDC; }
      @media only screen and (max-width: 767px) {
        .career-detail__contents .job__detail-table {
          font-style: 14px; } }
      .career-detail__contents .job__detail-table tbody tr:last-child th, .career-detail__contents .job__detail-table tbody tr:last-child td {
        border: none; }
      .career-detail__contents .job__detail-table tbody tr th, .career-detail__contents .job__detail-table tbody tr td {
        padding: 32px 40px;
        vertical-align: top;
        border-bottom: 1px solid #DCDCDC; }
        @media only screen and (max-width: 767px) {
          .career-detail__contents .job__detail-table tbody tr th, .career-detail__contents .job__detail-table tbody tr td {
            padding: 20px 14px; } }
      .career-detail__contents .job__detail-table tbody tr th {
        background: rgba(234, 237, 241, 0.5);
        font-weight: 700;
        width: 254px; }
        @media only screen and (max-width: 767px) {
          .career-detail__contents .job__detail-table tbody tr th {
            width: auto; } }
      .career-detail__contents .job__detail-table tbody tr td ul li {
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        position: relative;
        padding: 8px 0;
        padding-left: 18px; }
        @media only screen and (max-width: 767px) {
          .career-detail__contents .job__detail-table tbody tr td ul li {
            font-style: 14px; } }
        .career-detail__contents .job__detail-table tbody tr td ul li:before {
          content: "";
          position: absolute;
          left: 0;
          top: 18px;
          width: 6px;
          height: 6px;
          background: #0EA39E;
          border-radius: 6px; }
  .career-detail__bnrs {
    background: #EAEDF1;
    padding: 72px 0; }
    .career-detail__bnrs.white {
      background: #fff; }
    .career-detail__bnrs ul {
      max-width: 692px;
      margin: auto;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-justify-content: space-between;
      justify-content: space-between;
      justify-content: center; }
      .career-detail__bnrs ul li {
        width: 48.265896%; }
        @media only screen and (max-width: 767px) {
          .career-detail__bnrs ul li {
            width: 100%; }
            .career-detail__bnrs ul li:nth-child(1) {
              order: 2;
              margin-top: 16px; }
            .career-detail__bnrs ul li:nth-child(2) {
              order: 1; } }
        .career-detail__bnrs ul li a {
          display: block; }
        .career-detail__bnrs ul li:nth-child(1) a {
          padding: 21px 0; }
          @media only screen and (max-width: 767px) {
            .career-detail__bnrs ul li:nth-child(1) a {
              padding: 15px 0 11px; } }
          .career-detail__bnrs ul li:nth-child(1) a span {
            background-image: url(../images/icon/ico_button_external.svg);
            background-position: center right 24px;
            background-size: 20px 17px; }
            @media only screen and (max-width: 767px) {
              .career-detail__bnrs ul li:nth-child(1) a span {
                font-size: 18px; } }

.career-top {
  height: 512px;
  position: relative;
  background-image: url(../images/career/main_pc.jpg);
  background-size: cover;
  background-position: center; }
  @media only screen and (max-width: 767px) {
    .career-top {
      height: 380px;
      background-image: url(../images/career/main_sp.jpg); } }
  .career-top:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); }
  .career-top .inner {
    position: relative;
    z-index: 1; }
    .career-top .inner h1 {
      position: absolute;
      left: 0;
      top: 120px;
      color: #fff; }
      @media only screen and (max-width: 767px) {
        .career-top .inner h1 {
          left: 24px;
          top: 88px; } }
      .career-top .inner h1 small, .career-top .inner h1 strong {
        display: block; }
      .career-top .inner h1 small {
        font-family: "Josefin Sans", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 20px;
        /* 100% */
        letter-spacing: -0.4px; }
      .career-top .inner h1 strong {
        margin-top: 24px; }
        @media only screen and (max-width: 767px) {
          .career-top .inner h1 strong {
            margin-top: 8px; } }
        .career-top .inner h1 strong span {
          display: inline-block;
          position: relative;
          font-size: 40px;
          font-style: normal;
          font-weight: 700;
          line-height: 150%;
          padding-bottom: 16px; }
          @media only screen and (max-width: 767px) {
            .career-top .inner h1 strong span {
              font-size: 32px; } }
          .career-top .inner h1 strong span:before {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 1px;
            background: #fff; }
  .career-top__main {
    background: #EAEDF1; }
    .career-top__main section {
      position: relative; }
  .career-top__message {
    padding-top: 72px;
    padding-bottom: 60px;
    background: linear-gradient(180deg, #FFF 50.52%, #EAEDF1 100%);
    position: relative; }
    @media only screen and (max-width: 767px) {
      .career-top__message {
        padding-bottom: 120px;
        padding-top: 64px; } }
    .career-top__message > svg {
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: auto;
      display: block;
      z-index: 0; }
    .career-top__message .inner {
      position: relative;
      z-index: 1; }
      .career-top__message .inner ul {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        margin-top: 72px; }
        @media only screen and (max-width: 767px) {
          .career-top__message .inner ul {
            margin-top: 64px; } }
        .career-top__message .inner ul:first-child {
          margin-top: 0; }
        .career-top__message .inner ul li:nth-child(1) {
          width: 171px;
          position: relative;
          top: 14px; }
          @media only screen and (max-width: 767px) {
            .career-top__message .inner ul li:nth-child(1) {
              width: 100%;
              top: 0; } }
          .career-top__message .inner ul li:nth-child(1) strong {
            font-size: 20px;
            font-style: normal;
            font-weight: 700;
            line-height: 20px;
            /* 100% */
            letter-spacing: -0.4px;
            display: block;
            padding-left: 40px;
            font-family: "Josefin Sans", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
            position: relative; }
            .career-top__message .inner ul li:nth-child(1) strong:before {
              content: "";
              position: absolute;
              left: 0;
              top: 0;
              bottom: 0;
              margin: auto;
              width: 24px;
              height: 1px;
              background: #222; }
        .career-top__message .inner ul li:nth-child(2) {
          width: calc(100% - 171px); }
          @media only screen and (max-width: 767px) {
            .career-top__message .inner ul li:nth-child(2) {
              width: 100%;
              top: 0;
              margin-top: 24px;
              padding-left: 32px;
              padding-right: 16px; } }
          .career-top__message .inner ul li:nth-child(2) span {
            font-family: "Josefin Sans", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
            font-size: 40px;
            font-style: normal;
            font-weight: 700;
            line-height: 150%; }
            @media only screen and (max-width: 767px) {
              .career-top__message .inner ul li:nth-child(2) span {
                font-size: 24px; } }
  .career-top__deck {
    padding-top: 60px;
    position: relative;
    padding-bottom: 160px; }
    @media only screen and (max-width: 767px) {
      .career-top__deck {
        padding-bottom: 120px;
        padding-top: 9px; } }
    .career-top__deck > .inner {
      position: relative; }
      .career-top__deck > .inner > div {
        padding: 0 30px;
        margin: auto;
        max-width: 860px;
        margin-top: 40px; }
        @media only screen and (max-width: 767px) {
          .career-top__deck > .inner > div {
            margin-top: 24px;
            padding: 0; } }
        .career-top__deck > .inner > div > div {
          border-radius: 5px;
          border: 6px solid rgba(255, 255, 255, 0.1);
          overflow: hidden; }
        .career-top__deck > .inner > div iframe {
          width: 100%;
          height: 450px; }
          @media only screen and (max-width: 767px) {
            .career-top__deck > .inner > div iframe {
              height: 183px; } }
      .career-top__deck > .inner p {
        max-width: 860px;
        margin: auto;
        padding: 0 30px;
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        margin-top: 40px; }
        @media only screen and (max-width: 767px) {
          .career-top__deck > .inner p {
            padding: 0;
            margin-top: 48px; } }
    .career-top__deck--member {
      position: relative;
      background: #F1F3F6;
      padding-top: 160px; }
      @media only screen and (max-width: 767px) {
        .career-top__deck--member {
          padding-top: 120px; } }
      .career-top__deck--member:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 306px;
        background: #EAEDF1;
        z-index: 0;
        clip-path: polygon(0 0, 100% 0, 0% 100%, 0 0%); }
      .career-top__deck--member:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 306px;
        background: #EAEDF1;
        z-index: 0;
        clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 0% 100%); }
      .career-top__deck--member .inner {
        position: relative;
        z-index: 1; }
  .career-top__member__row {
    max-width: 860px;
    padding: 0 30px;
    margin: auto;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between; }
    @media only screen and (max-width: 767px) {
      .career-top__member__row {
        padding: 0; } }
    .career-top__member__row figure {
      margin-top: 56px;
      width: 30%; }
      @media only screen and (max-width: 767px) {
        .career-top__member__row figure {
          width: 47.706422%;
          margin-top: 32px; } }
      .career-top__member__row figure > div {
        background: #D9D9D9; }
        .career-top__member__row figure > div img {
          display: block;
          width: 100%; }
      .career-top__member__row figure figcaption {
        padding-top: 16px; }
        .career-top__member__row figure figcaption small, .career-top__member__row figure figcaption strong, .career-top__member__row figure figcaption em {
          display: block; }
        .career-top__member__row figure figcaption small {
          font-size: 12px;
          font-style: normal;
          font-weight: 400;
          line-height: 130%;
          /* 15.6px */
          letter-spacing: 0.48px;
          color: #666; }
        .career-top__member__row figure figcaption strong {
          font-size: 18px;
          font-style: normal;
          font-weight: 700;
          line-height: 150%;
          margin-top: 2px; }
        .career-top__member__row figure figcaption em {
          font-size: 14px;
          font-style: normal;
          font-weight: 500;
          line-height: 150%;
          color: #0EA39E;
          margin-top: 8px; }
        .career-top__member__row figure figcaption p {
          font-size: 14px;
          font-style: normal;
          font-weight: 400;
          line-height: 150%;
          margin-top: 16px;
          padding-top: 16px;
          border-top: 1px solid #D0D6DB; }
          @media only screen and (max-width: 767px) {
            .career-top__member__row figure figcaption p {
              display: none; } }
        .career-top__member__row figure figcaption > div:nth-child(5) {
          margin-top: 32px; }
          @media only screen and (max-width: 767px) {
            .career-top__member__row figure figcaption > div:nth-child(5) {
              display: none; } }
        .career-top__member__row figure figcaption > div:nth-child(6) {
          display: none; }
          @media only screen and (max-width: 767px) {
            .career-top__member__row figure figcaption > div:nth-child(6) {
              display: block;
              width: 100%;
              border-bottom: 1px solid #D0D6DB;
              border-top: 1px solid #D0D6DB;
              margin-top: 16px;
              padding: 12px 0; }
              .career-top__member__row figure figcaption > div:nth-child(6) a {
                display: -webkit-flex;
                display: flex;
                -webkit-flex-wrap: wrap;
                flex-wrap: wrap;
                -webkit-justify-content: space-between;
                justify-content: space-between;
                align-items: flex-start;
                width: 100%; }
                .career-top__member__row figure figcaption > div:nth-child(6) a > span {
                  color: #666;
                  font-family: "Josefin Sans", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
                  font-size: 14px;
                  font-style: normal;
                  font-weight: 400;
                  line-height: 100%;
                  /* 14px */
                  letter-spacing: 1.4px; }
                .career-top__member__row figure figcaption > div:nth-child(6) a div {
                  width: 12px;
                  height: 12px;
                  position: relative; }
                  .career-top__member__row figure figcaption > div:nth-child(6) a div span {
                    position: absolute;
                    left: 0;
                    top: 0;
                    right: 0;
                    bottom: 0;
                    margin: auto;
                    width: 12px;
                    height: 1px;
                    background: #666; }
                    .career-top__member__row figure figcaption > div:nth-child(6) a div span:nth-child(2) {
                      transform: rotate(90deg); } }
  .career-top__workstyle {
    padding-bottom: 160px; }
    @media only screen and (max-width: 767px) {
      .career-top__workstyle {
        padding-bottom: 120px; } }
    .career-top__workstyle figure {
      position: relative;
      padding-top: 135px;
      margin-top: 56px; }
      @media only screen and (max-width: 767px) {
        .career-top__workstyle figure {
          padding-top: 176px;
          margin-top: 48px; } }
      .career-top__workstyle figure > div {
        width: 70.2040816%;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 0; }
        @media only screen and (max-width: 767px) {
          .career-top__workstyle figure > div {
            width: calc(87.933333% + 24px);
            margin-left: -24px; } }
        .career-top__workstyle figure > div div {
          background-size: cover;
          background-position: center;
          height: 274px;
          background-image: url(../images/career/img05.jpg); }
          @media only screen and (max-width: 767px) {
            .career-top__workstyle figure > div div {
              background-image: url(../images/career/img05_sp.jpg);
              height: 240px; } }
      .career-top__workstyle figure figcaption {
        position: relative;
        z-index: 1; }
        .career-top__workstyle figure figcaption a {
          display: block;
          width: 57.9591837%;
          margin: 0 0 0 auto;
          padding: 48px;
          border-radius: 4px;
          background: #FFF;
          position: relative;
          padding-right: 90px; }
          @media only screen and (min-width: 768px) {
            .career-top__workstyle figure figcaption a > svg {
              transition: right .5s; }
            .career-top__workstyle figure figcaption a:hover > svg {
              right: 36px; } }
          @media only screen and (max-width: 767px) {
            .career-top__workstyle figure figcaption a {
              width: 90.2140673%;
              padding: 32px 24px; } }
          .career-top__workstyle figure figcaption a > small {
            display: block;
            font-size: 0; }
            .career-top__workstyle figure figcaption a > small span, .career-top__workstyle figure figcaption a > small svg {
              display: inline-block;
              vertical-align: middle; }
            .career-top__workstyle figure figcaption a > small span {
              font-size: 15px;
              font-style: normal;
              font-weight: 700;
              line-height: 20px;
              /* 133.333% */
              letter-spacing: -0.3px;
              font-family: "Josefin Sans", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
              margin-right: 16px; }
          .career-top__workstyle figure figcaption a > strong {
            display: block;
            margin-top: 16px;
            font-size: 30px;
            font-style: normal;
            font-weight: 700;
            line-height: 150%; }
            @media only screen and (max-width: 767px) {
              .career-top__workstyle figure figcaption a > strong {
                font-size: 24px;
                font-style: normal;
                font-weight: 700;
                line-height: 150%;
                margin-top: 8px; } }
          .career-top__workstyle figure figcaption a p {
            margin-top: 24px;
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: 150%; }
            @media only screen and (max-width: 767px) {
              .career-top__workstyle figure figcaption a p {
                margin-top: 8px; } }
          .career-top__workstyle figure figcaption a > svg {
            display: block;
            width: 36px;
            height: 12px;
            margin: auto; }
            @media only screen and (min-width: 768px) {
              .career-top__workstyle figure figcaption a > svg {
                position: absolute;
                right: 48px;
                top: 0;
                bottom: 0; } }
            @media only screen and (max-width: 767px) {
              .career-top__workstyle figure figcaption a > svg {
                margin: 0 0 0 auto;
                margin-top: 12px; } }
  .career-top__requirement .inner > h3 {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    margin-top: 56px; }
    @media only screen and (max-width: 767px) {
      .career-top__requirement .inner > h3 {
        margin-top: 48px; } }
  .career-top__requirement .inner > div {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between; }
    @media only screen and (min-width: 768px) {
      .career-top__requirement .inner > div:before {
        content: "";
        width: 31.0204082%;
        display: block;
        order: 1; } }
    .career-top__requirement .inner > div a {
      width: 31.0204082%;
      display: block;
      border-radius: 4px;
      background: #FFF;
      box-shadow: 0px 16px 16px 0px rgba(0, 0, 0, 0.08);
      padding: 32px 24px;
      padding-top: 20px;
      padding-bottom: 40px;
      margin-top: 32px;
      position: relative; }
      @media only screen and (max-width: 767px) {
        .career-top__requirement .inner > div a {
          width: 100%;
          margin-top: 24px;
          padding: 16px;
          padding-bottom: 40px; } }
      .career-top__requirement .inner > div a svg {
        position: absolute;
        right: 24px;
        bottom: 24px; }
        @media only screen and (max-width: 767px) {
          .career-top__requirement .inner > div a svg {
            right: 16px;
            bottom: 16px; } }
      .career-top__requirement .inner > div a h3 {
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%; }
        @media only screen and (min-width: 768px) {
          .career-top__requirement .inner > div a h3 {
            min-height: 48px;
            display: flex;
            align-items: center; } }
      .career-top__requirement .inner > div a p {
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        margin-top: 12px;
        padding-top: 16px;
        position: relative;
        min-height: 110px; }
        @media only screen and (max-width: 767px) {
          .career-top__requirement .inner > div a p {
            margin-top: 12px;
            padding-top: 12px;
            min-height: 0; } }
        .career-top__requirement .inner > div a p:before {
          content: "";
          position: absolute;
          left: 0;
          top: 0;
          width: 100%;
          height: 1px;
          background: #E1E6EC; }
        .career-top__requirement .inner > div a p:after {
          content: "";
          position: absolute;
          left: 0;
          top: 0;
          width: 32px;
          height: 1px;
          background: #0EA39E; }
  .career-top__entry {
    padding-top: 160px;
    padding-bottom: 100px;
    position: relative; }
    @media only screen and (max-width: 767px) {
      .career-top__entry {
        padding-top: 120px;
        padding-bottom: 120px; } }
    .career-top__entry > svg {
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: auto;
      display: block;
      pointer-events: none;
      z-index: -1; }
    .career-top__entry .inner {
      position: relative; }
      .career-top__entry .inner > p {
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        /* 18px */
        letter-spacing: 0.48px;
        margin-top: 16px; }
        @media only screen and (max-width: 767px) {
          .career-top__entry .inner > p {
            margin-top: 56px; } }
      .career-top__entry .inner > div {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: space-between;
        justify-content: space-between; }
        .career-top__entry .inner > div a {
          width: 31.0204082%;
          display: block;
          margin-top: 56px; }
          @media only screen and (max-width: 767px) {
            .career-top__entry .inner > div a {
              width: 100%;
              margin-top: 24px; } }
          .career-top__entry .inner > div a figure {
            border-radius: 4px;
            box-shadow: 0px 16px 16px 0px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            position: relative;
            height: 200px; }
            .career-top__entry .inner > div a figure > div {
              position: absolute;
              left: 0;
              top: 0;
              width: 100%;
              height: 100%;
              z-index: 0; }
              .career-top__entry .inner > div a figure > div div {
                width: 100%;
                height: 100%;
                background-size: cover;
                background-position: center center; }
            .career-top__entry .inner > div a figure figcaption {
              position: absolute;
              left: 0;
              bottom: 0;
              background: rgba(11, 59, 63, 0.75);
              backdrop-filter: blur(3px);
              width: 100%;
              display: -webkit-flex;
              display: flex;
              -webkit-flex-wrap: wrap;
              flex-wrap: wrap;
              -webkit-justify-content: space-between;
              justify-content: space-between;
              align-items: center;
              padding: 16px 24px; }
              .career-top__entry .inner > div a figure figcaption span strong, .career-top__entry .inner > div a figure figcaption span em {
                display: inline-block;
                color: #fff;
                vertical-align: auto; }
              .career-top__entry .inner > div a figure figcaption span strong {
                font-size: 16px;
                font-style: normal;
                font-weight: 700;
                line-height: 150%; }
              .career-top__entry .inner > div a figure figcaption span em {
                font-family: "Josefin Sans", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
                font-size: 14px;
                font-style: normal;
                font-weight: 400;
                line-height: normal;
                margin-left: 4px; }
              .career-top__entry .inner > div a figure figcaption svg {
                display: block; }
  .career-top__story {
    background: #023438;
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative; }
    @media only screen and (max-width: 767px) {
      .career-top__story {
        padding: 40px 0; } }
    .career-top__story__bg-image {
      position: absolute;
      left: 0;
      width: 100%;
      top: 0;
      height: 544px;
      background-image: url(../images/career/story_bg.jpg);
      background-size: cover;
      background-position: center;
      opacity: 0.6000000238418579; }
      @media only screen and (max-width: 767px) {
        .career-top__story__bg-image {
          background-image: url(../images/career/story_bg_sp.jpg);
          height: 340px; } }
    .career-top__story:after {
      content: "";
      width: 100%;
      position: absolute;
      left: 0;
      background: linear-gradient(180deg, rgba(11, 59, 63, 0) 29.69%, rgba(3, 53, 57, 0.76) 70.83%, #023438 100%);
      height: 253px;
      top: 291px; }
      @media only screen and (max-width: 767px) {
        .career-top__story:after {
          height: 223px;
          top: 117px; } }
    .career-top__story .inner {
      position: relative;
      z-index: 1; }
      .career-top__story .inner h2 {
        padding-left: 38px;
        position: relative; }
        .career-top__story .inner h2 span {
          font-family: "Josefin Sans", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
          font-size: 20px;
          font-style: normal;
          font-weight: 700;
          line-height: 20px;
          /* 100% */
          letter-spacing: -0.4px;
          color: #fff; }
          .career-top__story .inner h2 span:before {
            content: "";
            width: 24px;
            height: 1px;
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            margin: auto;
            background-color: #fff; }
    .career-top__story .inner-big {
      max-width: 1200px;
      padding: 0 30px;
      margin: auto;
      margin-top: 200px;
      position: relative;
      z-index: 1; }
    .career-top__story__box {
      padding: 0 80px;
      border-radius: 4px;
      background: rgba(11, 59, 63, 0.6);
      box-shadow: 0px 24px 24px 0px rgba(0, 0, 0, 0.08);
      backdrop-filter: blur(12px);
      position: relative;
      color: #fff; }
      @media only screen and (max-width: 767px) {
        .career-top__story__box {
          padding: 0; } }
      .career-top__story__box > p {
        position: absolute;
        right: 0;
        top: -24px;
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        /* 18px */
        letter-spacing: 0.48px; }
      .career-top__story__box__tab {
        padding: 48px 0 34px;
        border-bottom: 1px solid #546362; }
        @media only screen and (max-width: 767px) {
          .career-top__story__box__tab {
            padding: 0;
            padding: 24px 16px; } }
        .career-top__story__box__tab ul {
          display: -webkit-flex;
          display: flex;
          -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
          -webkit-justify-content: space-between;
          justify-content: space-between;
          justify-content: center; }
          @media only screen and (min-width: 768px) {
            .career-top__story__box__tab ul {
              gap: 80px; } }
          .career-top__story__box__tab ul li {
            display: block; }
            @media only screen and (max-width: 767px) {
              .career-top__story__box__tab ul li {
                width: 50%;
                text-align: center;
                margin-top: 10px; } }
            @media only screen and (min-width: 768px) {
              .career-top__story__box__tab ul li a:hover span:before {
                width: 100%; } }
            .career-top__story__box__tab ul li a.on span:before {
              width: 100%; }
            .career-top__story__box__tab ul li a span {
              font-size: 14px;
              font-style: normal;
              font-weight: 700;
              line-height: 150%;
              display: inline-block;
              position: relative;
              padding-bottom: 8px; }
              .career-top__story__box__tab ul li a span:before {
                content: "";
                height: 2px;
                background: #fff;
                position: absolute;
                left: 0;
                bottom: 0;
                width: 0;
                transition: width .3s; }
      .career-top__story__box__contents {
        padding-bottom: 56px; }
        @media only screen and (max-width: 767px) {
          .career-top__story__box__contents {
            padding-left: 16px;
            padding-right: 16px;
            padding-bottom: 40px; } }
      .career-top__story__box__content__row {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: space-between;
        justify-content: space-between; }
        @media only screen and (min-width: 768px) {
          .career-top__story__box__content__row:before {
            width: 31.0204082%;
            content: "";
            display: block;
            order: 1; } }
        .career-top__story__box__content__row a {
          display: block;
          width: 31.0204082%;
          margin-top: 56px; }
          @media only screen and (max-width: 767px) {
            .career-top__story__box__content__row a {
              width: 100%;
              margin-top: 32px; } }
          .career-top__story__box__content__row a figure > div {
            border-radius: 4px;
            overflow: hidden; }
            .career-top__story__box__content__row a figure > div div {
              padding-top: 56.25%;
              background-position: center;
              background-size: cover;
              background-repeat: no-repeat; }
          .career-top__story__box__content__row a figure figcaption {
            padding-top: 16px;
            padding-right: 38px;
            position: relative; }
          .career-top__story__box__content__row a figure p {
            overflow: hidden;
            color: #FFF;
            text-overflow: ellipsis;
            white-space: nowrap;
            font-size: 14px;
            font-style: normal;
            font-weight: 500;
            line-height: 150%; }
          .career-top__story__box__content__row a figure svg {
            position: absolute;
            right: 0;
            bottom: 5px;
            width: 23px;
            height: 9px; }

.company-initiatives {
  position: relative;
  background: #F1F3F6; }
  .company-initiatives:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 306px;
    background: #EAEDF1;
    z-index: 0;
    clip-path: polygon(0 0, 100% 0, 0% 100%, 0 0%); }
    @media only screen and (max-width: 767px) {
      .company-initiatives:before {
        top: 38px;
        height: 76px; } }
  @media only screen and (max-width: 767px) {
    .company-initiatives:after {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 38px;
      background: #EAEDF1;
      z-index: 0; } }
  .company-initiatives #initiatives01 {
    position: relative;
    padding-top: 160px;
    padding-bottom: 220px;
    z-index: 2; }
    @media only screen and (max-width: 767px) {
      .company-initiatives #initiatives01 {
        padding: 0;
        padding-top: 84px; } }
    .company-initiatives #initiatives01:after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 306px;
      background: #EAEDF1;
      z-index: 0;
      clip-path: polygon(0% 100%, 100% 0%, 100% 100%, 0% 100%); }
      @media only screen and (max-width: 767px) {
        .company-initiatives #initiatives01:after {
          height: 60px; } }
    @media only screen and (max-width: 767px) {
      .company-initiatives #initiatives01 .company-initiatives__body {
        margin-left: -24px;
        width: calc(100% + 48px); } }
  .company-initiatives #initiatives02 {
    background: #EAEDF1;
    position: relative;
    overflow: hidden;
    padding-bottom: 104px; }
    @media only screen and (max-width: 767px) {
      .company-initiatives #initiatives02 {
        padding-top: 70px;
        padding-bottom: 84px; } }
    .company-initiatives #initiatives02 > img:nth-child(1) {
      position: absolute;
      left: 0;
      top: 50px;
      width: 100%; }
      @media only screen and (max-width: 767px) {
        .company-initiatives #initiatives02 > img:nth-child(1) {
          top: 390px; } }
    .company-initiatives #initiatives02 > img:nth-child(2) {
      position: absolute;
      width: 77%;
      top: 130px;
      right: 0;
      height: auto;
      display: block; }
      @media only screen and (max-width: 767px) {
        .company-initiatives #initiatives02 > img:nth-child(2) {
          width: 158.4%;
          bottom: 0;
          top: auto;
          max-width: 158%; } }
    .company-initiatives #initiatives02 > img:nth-child(3) {
      position: absolute;
      top: 69px;
      left: 64%;
      transform: translateX(-50%);
      width: 47.3%;
      height: auto; }
      @media only screen and (max-width: 767px) {
        .company-initiatives #initiatives02 > img:nth-child(3) {
          position: absolute;
          top: 310px;
          left: 50%;
          transform: translateX(-50%);
          width: 130%;
          height: auto;
          max-width: 130%; } }
  .company-initiatives #initiatives03 {
    background: #FBFCFE;
    position: relative;
    z-index: 1;
    margin-bottom: 192px; }
    @media only screen and (max-width: 767px) {
      .company-initiatives #initiatives03 {
        margin-bottom: 80px; } }
  .company-initiatives #initiatives04 {
    padding-bottom: 160px; }
    @media only screen and (max-width: 767px) {
      .company-initiatives #initiatives04 {
        padding-bottom: 80px; } }
  .company-initiatives .inner {
    position: relative;
    z-index: 1; }
  .company-initiatives__content {
    padding-left: 100px;
    position: relative; }
    @media only screen and (max-width: 767px) {
      .company-initiatives__content {
        padding-left: 0; } }
    .company-initiatives__content .fix-parts {
      position: absolute;
      left: 10px;
      top: -70px; }
      @media only screen and (max-width: 767px) {
        .company-initiatives__content .fix-parts {
          display: none; } }
      .company-initiatives__content .fix-parts li {
        display: block;
        width: 3px;
        height: 40px;
        background: #ADCDC5;
        margin-bottom: 8px; }
        .company-initiatives__content .fix-parts li.on {
          background: #0EA39E; }
  .company-initiatives__head {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 25px 15px 0;
    position: relative; }
    .company-initiatives__head:before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 0%;
      -webkit-transition: width 0.5s;
      -moz-transition: width 0.5s;
      -o-transition: width 0.5s;
      transition: width 0.5s;
      right: 0;
      margin: auto;
      height: 1px;
      background: #D0D6DB; }
    @media only screen and (max-width: 767px) {
      .company-initiatives__head {
        padding: 0;
        padding-top: 32px; } }
    .company-initiatives__head.visible:before {
      width: 100%; }
    .company-initiatives__head strong {
      display: block;
      font-size: 20px;
      font-style: normal;
      font-weight: 700;
      line-height: 150%;
      width: 300px;
      padding: 5px 0; }
      @media only screen and (max-width: 767px) {
        .company-initiatives__head strong {
          width: 100%; } }
    .company-initiatives__head p {
      width: calc(100% - 300px);
      padding: 5px 0 12px;
      padding-left: 40px;
      border-left: 1px solid #D0D6DB; }
      @media only screen and (max-width: 767px) {
        .company-initiatives__head p {
          width: 100%;
          padding: 0;
          border: none;
          position: relative;
          padding-top: 24px;
          margin-top: 32px; }
          .company-initiatives__head p:before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 110px;
            height: 1px;
            background: #D0D6DB; } }
      .company-initiatives__head p span {
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 180%; }
      .company-initiatives__head p a {
        position: relative;
        display: inline-block; }
        @media only screen and (min-width: 768px) {
          .company-initiatives__head p a:hover:before {
            width: 0; } }
        .company-initiatives__head p a:before {
          content: "";
          position: absolute;
          left: 6%;
          bottom: 1px;
          width: 89%;
          height: 1px;
          background: #000;
          transition: width .3s; }
    .company-initiatives__head--large strong {
      width: 350px; }
    .company-initiatives__head--large p {
      width: calc(100% - 350px);
      padding-left: 25px; }
      @media only screen and (max-width: 767px) {
        .company-initiatives__head--large p {
          width: 100%;
          padding: 0;
          padding-top: 24px; } }
  .company-initiatives__body {
    position: relative; }
    .company-initiatives__body > img {
      display: block;
      margin-top: 60px; }
      @media only screen and (max-width: 767px) {
        .company-initiatives__body > img {
          margin-top: 0; } }
    .company-initiatives__body > div {
      padding: 24px 15px 0; }
      @media only screen and (max-width: 767px) {
        .company-initiatives__body > div {
          padding: 0;
          padding-top: 48px; } }
      .company-initiatives__body > div.company-initiatives__body__links {
        padding: 0; }
        .company-initiatives__body > div.company-initiatives__body__links a {
          position: absolute;
          z-index: 1;
          display: block; }
          .company-initiatives__body > div.company-initiatives__body__links a:nth-child(1) {
            width: 23%;
            left: 2%;
            top: 14%;
            height: 28%; }
            @media only screen and (max-width: 767px) {
              .company-initiatives__body > div.company-initiatives__body__links a:nth-child(1) {
                width: 35%;
                left: 8%;
                top: 37%;
                height: 15%; } }
          .company-initiatives__body > div.company-initiatives__body__links a:nth-child(2) {
            width: 23%;
            left: 38.4%;
            top: 3.4%;
            height: 28%; }
            @media only screen and (max-width: 767px) {
              .company-initiatives__body > div.company-initiatives__body__links a:nth-child(2) {
                width: 35%;
                left: 31%;
                top: 6%;
                height: 15%; } }
          .company-initiatives__body > div.company-initiatives__body__links a:nth-child(3) {
            width: 23%;
            right: 2.4%;
            top: 14%;
            height: 28%; }
            @media only screen and (max-width: 767px) {
              .company-initiatives__body > div.company-initiatives__body__links a:nth-child(3) {
                width: 35%;
                right: 7%;
                top: 37%;
                height: 15%; } }
          .company-initiatives__body > div.company-initiatives__body__links a:nth-child(4) {
            width: 27.4%;
            left: 0;
            bottom: 8%;
            height: 36%;
            right: 0;
            margin: auto;
            border-radius: 100%; }
            @media only screen and (max-width: 767px) {
              .company-initiatives__body > div.company-initiatives__body__links a:nth-child(4) {
                width: 44%;
                height: 25%; } }
    .company-initiatives__body > blockquote {
      border-radius: 4px;
      border: 1px solid #FFF;
      background: rgba(255, 255, 255, 0.9);
      margin-top: 40px; }
      .company-initiatives__body > blockquote > div:nth-child(1) h4 {
        padding-top: 72px; }
        @media only screen and (max-width: 767px) {
          .company-initiatives__body > blockquote > div:nth-child(1) h4 {
            padding-top: 40px; } }
        .company-initiatives__body > blockquote > div:nth-child(1) h4 small, .company-initiatives__body > blockquote > div:nth-child(1) h4 strong, .company-initiatives__body > blockquote > div:nth-child(1) h4 em {
          display: block;
          text-align: center; }
        .company-initiatives__body > blockquote > div:nth-child(1) h4 small {
          font-family: "Josefin Sans", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
          font-size: 16px;
          font-style: normal;
          font-weight: 400;
          line-height: normal; }
          @media only screen and (max-width: 767px) {
            .company-initiatives__body > blockquote > div:nth-child(1) h4 small {
              font-size: 12px;
              font-style: normal;
              font-weight: 400;
              line-height: 130%; } }
          .company-initiatives__body > blockquote > div:nth-child(1) h4 small b {
            color: #0EA39E; }
        .company-initiatives__body > blockquote > div:nth-child(1) h4 strong {
          text-align: center;
          font-family: "Josefin Sans", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
          font-size: 24px;
          font-style: normal;
          font-weight: 700;
          line-height: normal;
          color: #0EA39E;
          margin-top: 16px; }
          @media only screen and (max-width: 767px) {
            .company-initiatives__body > blockquote > div:nth-child(1) h4 strong {
              margin-top: 24px; } }
        .company-initiatives__body > blockquote > div:nth-child(1) h4 em {
          color: #0EA39E;
          font-size: 16px;
          font-style: normal;
          font-weight: 700;
          line-height: 1;
          margin-top: 8px; }
      .company-initiatives__body > blockquote > div:nth-child(1) p {
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 180%;
        margin-top: 32px;
        padding: 0 71px 56px; }
        @media only screen and (max-width: 767px) {
          .company-initiatives__body > blockquote > div:nth-child(1) p {
            padding: 32px 24px;
            padding-top: 0;
            font-size: 14px;
            font-style: normal;
            font-weight: 500;
            line-height: 150%; } }
      .company-initiatives__body > blockquote > div:nth-child(2) {
        background: #F2F6FA;
        padding: 56px 100px; }
        @media only screen and (max-width: 767px) {
          .company-initiatives__body > blockquote > div:nth-child(2) {
            padding: 40px 24px; } }
        .company-initiatives__body > blockquote > div:nth-child(2) h4 {
          color: #0EA39E;
          text-align: center;
          font-size: 20px;
          font-style: normal;
          font-weight: 500;
          line-height: 150%; }
        .company-initiatives__body > blockquote > div:nth-child(2) table {
          width: 100%; }
          @media only screen and (max-width: 767px) {
            .company-initiatives__body > blockquote > div:nth-child(2) table {
              display: block;
              width: 100%; } }
          @media only screen and (max-width: 767px) {
            .company-initiatives__body > blockquote > div:nth-child(2) table tbody {
              display: block;
              width: 100%; } }
          @media only screen and (max-width: 767px) {
            .company-initiatives__body > blockquote > div:nth-child(2) table tr {
              display: block;
              width: 100%; } }
          .company-initiatives__body > blockquote > div:nth-child(2) table tr:last-child td, .company-initiatives__body > blockquote > div:nth-child(2) table tr:last-child th {
            border-bottom: none; }
          .company-initiatives__body > blockquote > div:nth-child(2) table td, .company-initiatives__body > blockquote > div:nth-child(2) table th {
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 150%;
            vertical-align: top;
            padding: 32px 0;
            border-bottom: 1px solid #D0D6DB; }
            @media only screen and (max-width: 767px) {
              .company-initiatives__body > blockquote > div:nth-child(2) table td, .company-initiatives__body > blockquote > div:nth-child(2) table th {
                padding: 0;
                border: none;
                display: block;
                width: 100%; } }
          .company-initiatives__body > blockquote > div:nth-child(2) table th {
            color: #0EA39E;
            width: 98px; }
            @media only screen and (max-width: 767px) {
              .company-initiatives__body > blockquote > div:nth-child(2) table th {
                display: block;
                width: 100%;
                padding-bottom: 13px; } }
          @media only screen and (max-width: 767px) {
            .company-initiatives__body > blockquote > div:nth-child(2) table td {
              padding-bottom: 24px;
              margin-bottom: 24px;
              border-bottom: 1px solid #D0D6DB; }
              .company-initiatives__body > blockquote > div:nth-child(2) table td.numbers p {
                position: relative;
                padding-left: 30px; }
              .company-initiatives__body > blockquote > div:nth-child(2) table td.numbers span {
                position: absolute;
                left: 0;
                top: 0; } }
        .company-initiatives__body > blockquote > div:nth-child(2) div.image {
          margin-top: 12px;
          position: relative; }
          @media only screen and (max-width: 767px) {
            .company-initiatives__body > blockquote > div:nth-child(2) div.image {
              margin-top: 32px; } }
          .company-initiatives__body > blockquote > div:nth-child(2) div.image > div:nth-child(1) {
            position: absolute;
            right: -40px;
            top: -34px; }
            @media only screen and (max-width: 767px) {
              .company-initiatives__body > blockquote > div:nth-child(2) div.image > div:nth-child(1) {
                width: 90px;
                height: 90px;
                right: -12px;
                top: -20px; } }
        .company-initiatives__body > blockquote > div:nth-child(2) div.button {
          text-align: center;
          margin-top: 40px; }
          @media only screen and (max-width: 767px) {
            .company-initiatives__body > blockquote > div:nth-child(2) div.button {
              margin-top: 32px; } }
  .company-initiatives__banners {
    padding: 46px 0 24px; }
    @media only screen and (max-width: 767px) {
      .company-initiatives__banners {
        padding-top: 24px;
        padding-bottom: 57px; } }
    .company-initiatives__banners__row {
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-justify-content: space-between;
      justify-content: space-between; }
      .company-initiatives__banners__row li {
        display: block;
        width: 23.8636364%;
        padding-bottom: 24px; }
        @media only screen and (max-width: 767px) {
          .company-initiatives__banners__row li {
            width: 47.4006116%;
            padding-bottom: 8px; } }
        .company-initiatives__banners__row li a {
          display: block;
          width: 100%;
          border-radius: 4px;
          border: 1px solid #FBFBFB;
          background: #FFF;
          box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.04);
          padding: 5px 36px;
          text-align: center; }
          @media only screen and (max-width: 767px) {
            .company-initiatives__banners__row li a {
              padding: 5px 14px; } }
          .company-initiatives__banners__row li a img {
            height: 68px;
            width: auto;
            -o-object-fit: contain;
            object-fit: contain; }
    @media only screen and (min-width: 768px) {
      .company-initiatives__banners .swiper-pagination {
        padding-left: 0px;
        bottom: -30px; } }
    @media only screen and (max-width: 767px) {
      .company-initiatives__banners .swiper-pagination {
        bottom: 26px; } }
  .company-initiatives__row {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding-left: 0 !important;
    padding-right: 0 !important;
    align-items: center;
    margin-top: 70px; }
    .company-initiatives__row > div:nth-child(1) {
      width: calc(100% - 384px);
      padding-right: 60px; }
      @media only screen and (max-width: 767px) {
        .company-initiatives__row > div:nth-child(1) {
          width: 100%;
          padding-right: 0; } }
      .company-initiatives__row > div:nth-child(1) img {
        width: 100%;
        height: auto;
        display: block; }
    .company-initiatives__row > div:nth-child(2) {
      width: 384px; }
      @media only screen and (max-width: 767px) {
        .company-initiatives__row > div:nth-child(2) {
          width: 100%;
          margin-top: -60px; } }
      .company-initiatives__row > div:nth-child(2) strong {
        display: block;
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%; }
      .company-initiatives__row > div:nth-child(2) > img {
        display: block;
        width: 100%;
        margin-top: 32px; }
        @media only screen and (max-width: 767px) {
          .company-initiatives__row > div:nth-child(2) > img {
            width: 88%;
            margin: auto;
            margin-top: 32px; } }
      .company-initiatives__row > div:nth-child(2) p {
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 180%;
        margin-top: 24px; }
        @media only screen and (max-width: 767px) {
          .company-initiatives__row > div:nth-child(2) p {
            margin-top: 32px; } }
      .company-initiatives__row > div:nth-child(2) a {
        margin-top: 24px; }
        @media only screen and (max-width: 767px) {
          .company-initiatives__row > div:nth-child(2) a {
            margin-top: 32px; }
            .company-initiatives__row > div:nth-child(2) a span {
              padding-right: 80px; } }

.contact-page {
  max-width: 800px;
  margin: auto; }
  .contact-page .contactform__table table {
    background: #F5F6F8;
    width: 100%;
    border-top: 1px solid #DCDCDC; }
    @media only screen and (max-width: 767px) {
      .contact-page .contactform__table table {
        width: 100%;
        display: block;
        border: none;
        background: transparent; } }
    @media only screen and (max-width: 767px) {
      .contact-page .contactform__table table tbody {
        width: 100%;
        display: block;
        border: none;
        background: transparent; } }
    @media only screen and (max-width: 767px) {
      .contact-page .contactform__table table tbody tr {
        width: 100%;
        display: block;
        border: none;
        background: transparent; } }
    .contact-page .contactform__table table tbody tr th, .contact-page .contactform__table table tbody tr td {
      padding: 20px;
      vertical-align: top;
      border-bottom: 1px solid #DCDCDC; }
      @media only screen and (max-width: 767px) {
        .contact-page .contactform__table table tbody tr th, .contact-page .contactform__table table tbody tr td {
          width: 100%;
          display: block;
          border: none;
          background: transparent; } }
    .contact-page .contactform__table table tbody tr th {
      font-size: 16px;
      font-style: normal;
      font-weight: 700;
      line-height: 150%;
      padding-top: 36px; }
      @media only screen and (max-width: 767px) {
        .contact-page .contactform__table table tbody tr th {
          padding: 0;
          margin-top: 36px; } }
      .contact-page .contactform__table table tbody tr th p span {
        color: #F00;
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        display: inline-block;
        margin-left: 4px; }
    .contact-page .contactform__table table tbody tr td {
      background: #fff; }
      @media only screen and (max-width: 767px) {
        .contact-page .contactform__table table tbody tr td {
          padding: 0;
          padding-top: 20px; } }
      .contact-page .contactform__table table tbody tr td textarea,
      .contact-page .contactform__table table tbody tr td input {
        border: 1px solid #DCDCDC;
        background: #F5F6F8;
        padding: 16px;
        font-size: 16px;
        font-style: normal;
        line-height: 150%;
        width: 100%; }
        .contact-page .contactform__table table tbody tr td textarea::placeholder,
        .contact-page .contactform__table table tbody tr td input::placeholder {
          color: #999; }
      .contact-page .contactform__table table tbody tr td .wpcf7-not-valid-tip {
        display: block;
        padding-top: 12px;
        color: #F00;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%; }
      .contact-page .contactform__table table tbody tr td textarea {
        resize: none;
        height: 200px; }
        @media only screen and (max-width: 767px) {
          .contact-page .contactform__table table tbody tr td textarea {
            height: 140px; } }
  .contact-page .contactform__privacycheck {
    padding: 30px;
    text-align: center;
    color: #000;
    text-align: center;
    font-family: Zen Kaku Gothic New;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 24px */ }
    @media only screen and (max-width: 767px) {
      .contact-page .contactform__privacycheck {
        padding: 30px 0; } }
    .contact-page .contactform__privacycheck a {
      text-decoration-line: underline; }
  .contact-page .contactform__privacycheck-check .wpcf7-list-item {
    margin-left: 0; }
    .contact-page .contactform__privacycheck-check .wpcf7-list-item label {
      margin-top: 24px;
      display: inline-block;
      position: relative; }
      .contact-page .contactform__privacycheck-check .wpcf7-list-item label input {
        position: absolute;
        left: 0;
        top: 0;
        width: 1px;
        height: 1px;
        opacity: 0;
        pointer-events: none; }
        .contact-page .contactform__privacycheck-check .wpcf7-list-item label input:checked + span:after {
          content: "";
          position: absolute;
          left: 5px;
          top: 6px;
          width: 12px;
          height: 7px;
          border-left: 2px solid #0B3B3F;
          border-bottom: 2px solid #0B3B3F;
          -webkit-transform: rotate(34deg);
          -moz-transform: rotate(34deg);
          -ms-transform: rotate(34deg);
          -o-transform: rotate(34deg);
          transform: rotate(-42deg); }
      .contact-page .contactform__privacycheck-check .wpcf7-list-item label > span {
        padding-left: 34px;
        display: inline-block;
        position: relative; }
        .contact-page .contactform__privacycheck-check .wpcf7-list-item label > span:before {
          content: "";
          width: 24px;
          height: 24px;
          border: 1px solid #DCDCDC;
          background: #F5F6F8;
          position: absolute;
          left: 0;
          top: 0;
          bottom: 0;
          margin: autos; }
  .contact-page .wpcf7 form .wpcf7-response-output,
  .contact-page .wpcf7 form.spam .wpcf7-response-output,
  .contact-page .wpcf7 form.invalid .wpcf7-response-output {
    color: #F00;
    border: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-style: normal;
    line-height: 150%;
    padding-bottom: 40px; }
    @media only screen and (max-width: 767px) {
      .contact-page .wpcf7 form .wpcf7-response-output,
      .contact-page .wpcf7 form.spam .wpcf7-response-output,
      .contact-page .wpcf7 form.invalid .wpcf7-response-output {
        padding-top: 32px;
        font-size: 14px;
        padding-bottom: 0; } }
  .contact-page .wpcf7-spinner {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%); }
  .contact-page .contactform__privacycheck-button {
    text-align: center; }
    .contact-page .contactform__privacycheck-button p {
      text-align: center;
      color: #fff;
      display: inline-block;
      position: relative; }
      @media only screen and (min-width: 768px) {
        .contact-page .contactform__privacycheck-button p:hover:before {
          right: 20px; } }
      .contact-page .contactform__privacycheck-button p:after {
        content: none !important; }
      .contact-page .contactform__privacycheck-button p:before {
        content: "";
        background-image: url(../images/icon/ico_button_arrow.svg);
        background-position: center;
        display: inline-block;
        background-repeat: no-repeat;
        transition: background-position 0.3s;
        line-height: 1.428571429;
        position: absolute;
        right: 24px;
        top: 50%;
        transform: translateY(-50%);
        width: 21px;
        height: 9px;
        background-size: 21px 9px;
        transition: right .3s;
        z-index: 1; }
        @media only screen and (max-width: 767px) {
          .contact-page .contactform__privacycheck-button p:before {
            right: 16px;
            width: 16px;
            height: 7px; } }
      .contact-page .contactform__privacycheck-button p input {
        width: 334px;
        padding: 24px 0 26px 0;
        border-radius: 4px;
        position: relative;
        overflow: hidden;
        background: linear-gradient(125deg, #023438 10%, #023438 40%, #023438 60%, #086B6B 100%);
        background-position: 1% 50%;
        background-size: 200% auto;
        transition: background-position .6s;
        color: #fff;
        color: #FFF;
        text-align: center;
        font-size: 18px;
        font-style: normal;
        font-weight: 400; }
        @media only screen and (max-width: 767px) {
          .contact-page .contactform__privacycheck-button p input {
            width: auto;
            padding: 0;
            display: inline-block;
            font-size: 14px;
            padding: 10px 16px;
            padding-right: 48px; } }
        @media only screen and (min-width: 768px) {
          .contact-page .contactform__privacycheck-button p input:hover {
            background-position: 99% 50%; } }

.future {
  padding: 160px 0 300px;
  background: linear-gradient(180deg, #FFF 0%, #EAEDF1 100%);
  backdrop-filter: blur(5px);
  position: relative; }
  @media only screen and (max-width: 767px) {
    .future {
      padding-top: 104px;
      padding-bottom: 150px; } }
  .future > img {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%; }
  .future .inner {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between; }
  .future__box {
    width: 340px; }
    .future__box h3 {
      font-size: 40px;
      font-style: normal;
      font-weight: 700;
      line-height: 150%;
      margin-top: 24px;
      padding-bottom: 16px;
      position: relative; }
      .future__box h3:before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0%;
        height: 1px;
        background: #222;
        -webkit-transition: width 0.8s;
        -moz-transition: width 0.8s;
        -o-transition: width 0.8s;
        transition: width 0.8s; }
      .future__box h3.visible:before {
        width: 100%;
        transition-delay: .1s; }
      .future__box h3.visible span {
        opacity: 1; }
        .future__box h3.visible span:nth-child(1) {
          transition-delay: .3s; }
        .future__box h3.visible span:nth-child(3) {
          transition-delay: .4s; }
      @media only screen and (max-width: 767px) {
        .future__box h3 {
          font-size: 24px;
          font-style: normal;
          font-weight: 700;
          line-height: 150%;
          position: relative;
          border-bottom: none; }
          .future__box h3:before {
            content: "";
            width: 192px;
            height: 1px;
            background: #222;
            position: absolute;
            left: 0;
            bottom: 0; } }
      .future__box h3 span {
        opacity: 0;
        transition: all .8s; }
    .future__box p {
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      line-height: 180%;
      margin-top: 56px; }
      @media only screen and (max-width: 767px) {
        .future__box p {
          margin-top: 32px; } }
    .future__box > div {
      margin-top: 32px; }
      @media only screen and (max-width: 767px) {
        .future__box > div {
          margin-top: 36px; } }
  .future__images {
    position: relative;
    width: 486px; }
    @media only screen and (max-width: 767px) {
      .future__images {
        width: 100%;
        margin-top: 72px; } }
    .future__images img {
      position: relative;
      z-index: 1;
      display: block;
      width: 100%;
      height: auto; }
    .future__images svg {
      position: absolute;
      left: 0;
      top: -11px;
      width: 100%;
      height: auto; }
    .future__images .circle-border01 {
      stroke-dasharray: 880,2;
      stroke-dashoffset: 880; }
    .future__images .circle-border02 {
      stroke-dasharray: 812,2;
      stroke-dashoffset: 812; }
    .future__images .circle-border03 {
      stroke-dasharray: 1110,2;
      stroke-dashoffset: 1110; }
    .future__images .circle-border04 {
      stroke-dasharray: 558,2;
      stroke-dashoffset: 558; }
    .future__images .circle-border05 {
      stroke-dasharray: 605;
      stroke-dashoffset: 605; }
    .future__images .circle-text {
      opacity: 0;
      transform: scale(0.9); }

.how-page {
  background: #FFFFFF; }
  .how-page__kv {
    height: 554px;
    padding-top: 104px;
    position: relative;
    overflow: hidden;
    background-image: url(../images/how/bg01.png);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: 100% auto; }
    @media only screen and (max-width: 767px) {
      .how-page__kv {
        padding-top: 96px;
        height: auto;
        background-image: url(../images/how/bg01_sp.png); } }
    .how-page__kv__inner {
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-justify-content: space-between;
      justify-content: space-between;
      align-items: center; }
      @media only screen and (max-width: 767px) {
        .how-page__kv__inner {
          display: block; } }
      .how-page__kv__inner h1 {
        width: 360px; }
        @media only screen and (max-width: 767px) {
          .how-page__kv__inner h1 {
            width: 100%; } }
        .how-page__kv__inner h1 small, .how-page__kv__inner h1 strong {
          display: block; }
        .how-page__kv__inner h1 small {
          font-family: "Josefin Sans", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
          font-size: 20px;
          font-style: normal;
          font-weight: 700;
          letter-spacing: -0.4px; }
          @media only screen and (max-width: 767px) {
            .how-page__kv__inner h1 small {
              font-size: 16px;
              font-style: normal;
              font-weight: 700;
              line-height: 20px;
              /* 125% */
              letter-spacing: -0.32px; } }
        .how-page__kv__inner h1 strong {
          font-size: 40px;
          font-style: normal;
          font-weight: 700;
          line-height: 150%;
          margin-top: 24px; }
          @media only screen and (max-width: 767px) {
            .how-page__kv__inner h1 strong {
              font-size: 32px;
              font-style: normal;
              font-weight: 700;
              line-height: 150%;
              margin-top: 12px; } }
      .how-page__kv__inner > div {
        width: calc(100% - 390px); }
        @media only screen and (max-width: 767px) {
          .how-page__kv__inner > div {
            width: 100%;
            position: relative;
            right: -24px;
            margin-top: 24px; } }
        .how-page__kv__inner > div > div {
          height: 450px;
          background-size: cover;
          background-position: center;
          background-repeat: no-repeat;
          background-image: url(../images/how/main.jpg);
          max-width: 200%;
          width: 125.425%; }
          @media only screen and (max-width: 767px) {
            .how-page__kv__inner > div > div {
              height: auto;
              width: 100%;
              max-width: 100%;
              height: 180px;
              background-image: url(../images/how/main_sp.jpg); } }
  .how-page__environment {
    padding-top: 80px; }
    @media only screen and (max-width: 767px) {
      .how-page__environment {
        padding-top: 104px; } }
    .how-page__environment .inner {
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-justify-content: space-between;
      justify-content: space-between; }
      .how-page__environment .inner > div:nth-child(1) {
        width: 51.2244898%; }
        @media only screen and (max-width: 767px) {
          .how-page__environment .inner > div:nth-child(1) {
            width: 100%; } }
        .how-page__environment .inner > div:nth-child(1) ul {
          margin-top: 112px; }
          @media only screen and (max-width: 767px) {
            .how-page__environment .inner > div:nth-child(1) ul {
              margin-top: 32px; } }
          .how-page__environment .inner > div:nth-child(1) ul li {
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 150%;
            position: relative;
            padding: 8px 0;
            padding-left: 14px; }
            .how-page__environment .inner > div:nth-child(1) ul li:before {
              content: "";
              position: absolute;
              left: 0;
              top: 0;
              bottom: 0;
              margin: auto;
              width: 8px;
              height: 8px;
              background: #0EA39E;
              border-radius: 8px; }
      .how-page__environment .inner > div:nth-child(2) {
        width: 48.7755102%; }
        @media only screen and (max-width: 767px) {
          .how-page__environment .inner > div:nth-child(2) {
            width: 100%;
            margin-top: 72px; } }
  .how-page__growth {
    padding-top: 120px;
    padding-bottom: 206px;
    position: relative; }
    @media only screen and (max-width: 767px) {
      .how-page__growth {
        padding-bottom: 120px; } }
    .how-page__growth > svg {
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: auto;
      z-index: 0;
      pointer-events: none; }
    .how-page__growth .inner {
      position: relative; }
    .how-page__growth__title {
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-justify-content: space-between;
      justify-content: space-between; }
      .how-page__growth__title > div:nth-child(1) {
        width: 309px; }
        @media only screen and (max-width: 767px) {
          .how-page__growth__title > div:nth-child(1) {
            width: 100%; } }
      .how-page__growth__title > div:nth-child(2) {
        width: calc(100% - 309px); }
        @media only screen and (max-width: 767px) {
          .how-page__growth__title > div:nth-child(2) {
            width: 100%; } }
        .how-page__growth__title > div:nth-child(2) p {
          font-size: 16px;
          font-style: normal;
          font-weight: 500;
          line-height: 150%;
          padding-top: 50px; }
          @media only screen and (max-width: 767px) {
            .how-page__growth__title > div:nth-child(2) p {
              padding-top: 0px; } }
    .how-page__growth__box01 {
      border-radius: 4px;
      background: linear-gradient(337deg, #FBFBFB 0%, #FFF 100%);
      border: 1px solid #ccc;
      padding: 32px 8px;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-justify-content: space-between;
      justify-content: space-between;
      align-items: center;
      margin-top: 48px; }
      @media only screen and (max-width: 767px) {
        .how-page__growth__box01 {
          width: 100%;
          display: block;
          padding: 40px 16px; } }
      .how-page__growth__box01 > div:nth-child(1) {
        width: 36.0204082%;
        text-align: center; }
        @media only screen and (max-width: 767px) {
          .how-page__growth__box01 > div:nth-child(1) {
            width: 100%; } }
        .how-page__growth__box01 > div:nth-child(1) strong {
          display: inline-block;
          position: relative;
          padding-bottom: 16px;
          color: #0EA39E;
          font-family: "Josefin Sans", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
          font-size: 18px;
          font-style: normal;
          font-weight: 500;
          line-height: 20px;
          letter-spacing: -0.36px;
          position: relative; }
          .how-page__growth__box01 > div:nth-child(1) strong:before {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            width: 32px;
            height: 1px;
            background: #0EA39E;
            margin: auto; }
      .how-page__growth__box01 > div:nth-child(2) {
        width: 63.9795918%;
        padding-right: 66px; }
        @media only screen and (max-width: 767px) {
          .how-page__growth__box01 > div:nth-child(2) {
            width: 100%;
            padding-right: 0; } }
        .how-page__growth__box01 > div:nth-child(2) table {
          width: 100%; }
          @media only screen and (max-width: 767px) {
            .how-page__growth__box01 > div:nth-child(2) table {
              display: block;
              width: 100%; } }
          @media only screen and (max-width: 767px) {
            .how-page__growth__box01 > div:nth-child(2) table tr {
              display: block;
              width: 100%; } }
          .how-page__growth__box01 > div:nth-child(2) table tr th, .how-page__growth__box01 > div:nth-child(2) table tr td {
            border-bottom: 1px solid #d5d5d5;
            padding: 16px 0; }
            @media only screen and (max-width: 767px) {
              .how-page__growth__box01 > div:nth-child(2) table tr th, .how-page__growth__box01 > div:nth-child(2) table tr td {
                display: block;
                width: 100%;
                border: none;
                padding: 0;
                padding: 0 16px; } }
          .how-page__growth__box01 > div:nth-child(2) table tr th {
            font-size: 16px;
            font-style: normal;
            font-weight: 700;
            line-height: 150%;
            color: #32737C;
            padding-right: 40px; }
            @media only screen and (max-width: 767px) {
              .how-page__growth__box01 > div:nth-child(2) table tr th {
                padding: 0 16px;
                padding-top: 16px; } }
          .how-page__growth__box01 > div:nth-child(2) table tr td {
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 150%; }
            @media only screen and (max-width: 767px) {
              .how-page__growth__box01 > div:nth-child(2) table tr td {
                padding: 0 16px;
                padding-bottom: 16px;
                padding-top: 8px;
                border-bottom: 1px solid #d5d5d5; } }
    .how-page__growth__box02 {
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-justify-content: space-between;
      justify-content: space-between; }
      @media only screen and (max-width: 767px) {
        .how-page__growth__box02 {
          display: block;
          width: 100%; } }
      .how-page__growth__box02 > div {
        width: calc(50% - 12px);
        border-radius: 4px;
        background: linear-gradient(337deg, #FBFBFB 0%, #FFF 100%);
        border: 1px solid #ccc;
        padding: 40px;
        margin-top: 24px; }
        @media only screen and (max-width: 767px) {
          .how-page__growth__box02 > div {
            display: block;
            width: 100%;
            padding: 40px 32px; } }
        .how-page__growth__box02 > div strong {
          display: block;
          position: relative;
          padding-bottom: 16px;
          color: #0EA39E;
          font-family: "Josefin Sans", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
          font-size: 18px;
          font-style: normal;
          font-weight: 500;
          line-height: 20px;
          letter-spacing: -0.36px;
          position: relative; }
          @media only screen and (max-width: 767px) {
            .how-page__growth__box02 > div strong {
              text-align: center; }
              .how-page__growth__box02 > div strong:before {
                content: "";
                position: absolute;
                left: 0;
                right: 0;
                bottom: 0;
                width: 32px;
                height: 1px;
                background: #0EA39E;
                margin: auto; } }
        .how-page__growth__box02 > div ul {
          display: -webkit-flex;
          display: flex;
          -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
          -webkit-justify-content: space-between;
          justify-content: space-between; }
          @media only screen and (max-width: 767px) {
            .how-page__growth__box02 > div ul {
              display: block;
              width: 100%; } }
          .how-page__growth__box02 > div ul li {
            margin-top: 24px;
            width: 50%; }
            @media only screen and (max-width: 767px) {
              .how-page__growth__box02 > div ul li {
                display: block;
                width: 100%; } }
            .how-page__growth__box02 > div ul li:nth-child(1) {
              padding-right: 24px;
              position: relative; }
              @media only screen and (max-width: 767px) {
                .how-page__growth__box02 > div ul li:nth-child(1) {
                  padding: 0; } }
              .how-page__growth__box02 > div ul li:nth-child(1):before {
                content: "";
                position: absolute;
                right: 0;
                top: 0;
                width: 1px;
                height: 100%;
                background: #d5d5d5; }
                @media only screen and (max-width: 767px) {
                  .how-page__growth__box02 > div ul li:nth-child(1):before {
                    content: none; } }
            .how-page__growth__box02 > div ul li:nth-child(2) {
              padding-left: 24px; }
              @media only screen and (max-width: 767px) {
                .how-page__growth__box02 > div ul li:nth-child(2) {
                  padding: 0;
                  margin-top: 16px;
                  padding-top: 16px;
                  position: relative; }
                  .how-page__growth__box02 > div ul li:nth-child(2):before {
                    content: "";
                    position: absolute;
                    left: -16px;
                    top: 0;
                    width: calc(100% + 32px);
                    height: 1px;
                    background: #d5d5d5; } }
            .how-page__growth__box02 > div ul li b, .how-page__growth__box02 > div ul li span {
              display: block; }
            .how-page__growth__box02 > div ul li b {
              text-align: center;
              font-size: 16px;
              font-style: normal;
              font-weight: 700;
              line-height: 150%;
              color: #32737C; }
              @media only screen and (max-width: 767px) {
                .how-page__growth__box02 > div ul li b {
                  text-align: left; } }
            .how-page__growth__box02 > div ul li span {
              font-size: 14px;
              font-style: normal;
              font-weight: 500;
              line-height: 150%;
              margin-top: 15px; }
              @media only screen and (max-width: 767px) {
                .how-page__growth__box02 > div ul li span {
                  margin-top: 8px; } }
  .how-page__development {
    background: linear-gradient(0deg, #fff 0%, #EAEDF1 39.06%);
    padding-bottom: 135px;
    overflow: hidden; }
    @media only screen and (max-width: 767px) {
      .how-page__development {
        padding-bottom: 40px; } }
    .how-page__development__row {
      position: relative; }
      .how-page__development__row > div {
        position: relative; }
        .how-page__development__row > div:nth-child(1) {
          z-index: 1; }
          .how-page__development__row > div:nth-child(1) p {
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 150%;
            margin-top: 40px;
            max-width: 346px; }
            @media only screen and (max-width: 767px) {
              .how-page__development__row > div:nth-child(1) p {
                margin-top: 0px; } }
          .how-page__development__row > div:nth-child(1) .button {
            margin-top: 64px;
            max-width: 491px;
            position: relative; }
            .how-page__development__row > div:nth-child(1) .button img {
              margin-right: -24px;
              position: relative;
              z-index: 1;
              display: block;
              width: calc(100% - 24px);
              margin: 0 0 0 auto; }
            .how-page__development__row > div:nth-child(1) .button a {
              padding: 48px 40px;
              display: -webkit-flex;
              display: flex;
              -webkit-flex-wrap: wrap;
              flex-wrap: wrap;
              -webkit-justify-content: space-between;
              justify-content: space-between;
              align-items: center;
              position: relative;
              border-radius: 4px;
              overflow: hidden; }
              @media only screen and (max-width: 767px) {
                .how-page__development__row > div:nth-child(1) .button a {
                  padding: 24px;
                  width: 311px;
                  z-index: 2;
                  margin-top: -32px; } }
              .how-page__development__row > div:nth-child(1) .button a:before {
                content: "";
                position: absolute;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                opacity: 0.9;
                background: var(--white-grad, linear-gradient(135deg, #FFF 0%, #E6EFF5 100%));
                z-index: 0; }
              .how-page__development__row > div:nth-child(1) .button a span, .how-page__development__row > div:nth-child(1) .button a svg {
                position: relative; }
              .how-page__development__row > div:nth-child(1) .button a span {
                display: block;
                font-size: 16px;
                font-style: normal;
                font-weight: 700;
                line-height: 150%; }
                @media only screen and (max-width: 767px) {
                  .how-page__development__row > div:nth-child(1) .button a span {
                    font-size: 14px;
                    width: 78%; } }
              .how-page__development__row > div:nth-child(1) .button a svg {
                width: 20px;
                height: 17px; }
        .how-page__development__row > div:nth-child(2) {
          position: absolute;
          left: 42%;
          top: -40px;
          height: 100%;
          width: 89%;
          z-index: 0; }
          @media only screen and (max-width: 767px) {
            .how-page__development__row > div:nth-child(2) {
              display: none; } }
          .how-page__development__row > div:nth-child(2) img {
            display: block; }

.kv {
  height: 100vh;
  position: relative;
  min-height: 900px; }
  .kv.loaded .kv__catch h1 span:nth-child(1):before {
    -webkit-animation: slidein 1s 0.6s;
    animation: slidein 1s 0.6s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both; }
  .kv.loaded .kv__catch h1 span:nth-child(1) em {
    transition: opacity .01s;
    transition-delay: 1s;
    opacity: 1; }
  .kv.loaded .kv__catch h1 span:nth-child(3):before {
    -webkit-animation: slidein 1.1s 0.7s;
    animation: slidein 1.1s 0.7s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both; }
  .kv.loaded .kv__catch h1 span:nth-child(3) em {
    transition: opacity .01s;
    transition-delay: 1.1s;
    opacity: 1; }
  .kv.loaded .kv__news-box__row > div:nth-child(1) a {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); }
    .kv.loaded .kv__news-box__row > div:nth-child(1) a:nth-child(1) {
      transition-delay: 1.3s; }
    .kv.loaded .kv__news-box__row > div:nth-child(1) a:nth-child(2) {
      transition-delay: 1.38s; }
    .kv.loaded .kv__news-box__row > div:nth-child(1) a:nth-child(3) {
      transition-delay: 1.46s; }
  .kv.loaded .kv__news-box__row > div:nth-child(2) a {
    opacity: 1;
    transition-delay: 1.8s; }
  @media only screen and (max-width: 767px) {
    .kv {
      padding-left: 24px;
      padding-top: 165px;
      padding-bottom: 41px;
      height: auto;
      min-height: 0; } }
  .kv__image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/top/main_pc.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0; }
  .kv__triangle--01 {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    width: 100%; }
    .kv__triangle--01 svg {
      display: block; }
  .kv__triangle--02 {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%; }
  .kv__triangle--03 {
    position: absolute;
    left: auto;
    right: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    text-align: right; }
    .kv__triangle--03 svg {
      width: 173px;
      height: auto; }
      @media only screen and (max-width: 767px) {
        .kv__triangle--03 svg {
          width: 132px; } }
  .kv__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%; }
  @media only screen and (min-width: 768px) {
    .kv__catch {
      position: absolute;
      left: 9%;
      top: 26%; } }
  .kv__catch h1 {
    color: #fff;
    font-size: 2.5vw;
    font-size: clamp(32px, 2.5vw, 48px);
    font-style: normal;
    font-weight: 700;
    line-height: normal; }
    @media only screen and (max-width: 767px) {
      .kv__catch h1 {
        text-shadow: 0px 0px 24px 0px rgba(2, 52, 56, 0.8);
        font-size: 30px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%; } }
    .kv__catch h1 span {
      position: relative;
      display: inline-block;
      overflow: hidden; }
      .kv__catch h1 span:before {
        content: "";
        width: 100%;
        height: 100%;
        background: #fff;
        position: absolute;
        left: 0;
        top: 0;
        transform: translateX(-102%); }
      .kv__catch h1 span em {
        position: relative;
        opacity: 0; }
  .kv__news-box {
    color: #fff; }
    @media only screen and (min-width: 768px) {
      .kv__news-box {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding-left: 9%; } }
    @media only screen and (max-width: 767px) {
      .kv__news-box {
        margin-top: 76px; } }
    .kv__news-box__row {
      width: 100%;
      margin-top: 24px; }
      @media only screen and (min-width: 768px) {
        .kv__news-box__row {
          display: -webkit-flex;
          display: flex;
          -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
          -webkit-justify-content: space-between;
          justify-content: space-between;
          align-items: flex-end;
          padding-bottom: 94px;
          justify-content: flex-start; } }
      @media only screen and (max-width: 767px) {
        .kv__news-box__row > div:nth-child(1) {
          margin-left: -24px;
          width: calc(100% + 24px);
          padding-left: 24px;
          overflow: scroll;
          padding-right: 24px;
          min-height: 254px; } }
      .kv__news-box__row > div:nth-child(1) > div {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        width: 632px; }
      .kv__news-box__row > div:nth-child(1) a {
        display: block;
        width: 31.6455696%;
        opacity: 0;
        -webkit-transform: translateY(30px);
        -moz-transform: translateY(30px);
        -ms-transform: translateY(30px);
        -o-transform: translateY(30px);
        transform: translateY(30px);
        -webkit-transition: opacity 0.7s, -webkit-transform 0.7s;
        -moz-transition: opacity 0.7s, -moz-transform 0.7s;
        -o-transition: opacity 0.7s, -o-transform 0.7s;
        transition: opacity 0.7s, transform 0.7s; }
        @media only screen and (min-width: 768px) {
          .kv__news-box__row > div:nth-child(1) a:hover figure > div:after {
            opacity: 1; }
          .kv__news-box__row > div:nth-child(1) a:hover figure > div > div {
            transform: scale(1.05); } }
        .kv__news-box__row > div:nth-child(1) a figure > div {
          overflow: hidden;
          display: block;
          position: relative;
          padding-top: 57.5%; }
          .kv__news-box__row > div:nth-child(1) a figure > div:after {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.2);
            opacity: 0;
            transition: opacity 0.3s; }
          .kv__news-box__row > div:nth-child(1) a figure > div > div {
            transition: transform .7s;
            transform: scale(1);
            background-size: cover;
            background-position: center;
            position: absolute;
            left: 0;
            top: 0;
            right: 0;
            bottom: 0;
            margin: auto; }
        .kv__news-box__row > div:nth-child(1) a figure figcaption {
          padding-top: 12px; }
          .kv__news-box__row > div:nth-child(1) a figure figcaption small {
            font-family: "Roboto", "Josefin Sans", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
            font-size: 12px;
            font-style: normal;
            font-weight: 300;
            line-height: normal;
            display: block; }
          .kv__news-box__row > div:nth-child(1) a figure figcaption p {
            font-size: 14px;
            font-style: normal;
            font-weight: 500;
            line-height: 130%;
            min-height: 72px;
            padding-top: 4px; }
          .kv__news-box__row > div:nth-child(1) a figure figcaption ul {
            font-size: 12px;
            font-style: normal;
            font-weight: 400;
            line-height: 1; }
            .kv__news-box__row > div:nth-child(1) a figure figcaption ul li {
              display: inline-block;
              vertical-align: middle;
              padding-right: 0px;
              padding-top: 4px; }
              .kv__news-box__row > div:nth-child(1) a figure figcaption ul li:after {
                content: "｜"; }
              .kv__news-box__row > div:nth-child(1) a figure figcaption ul li:last-child:after {
                content: none; }
      @media only screen and (min-width: 768px) {
        .kv__news-box__row > div:nth-child(2) {
          padding-left: 45px; } }
      @media only screen and (max-width: 767px) {
        .kv__news-box__row > div:nth-child(2) {
          padding-top: 32px; } }
      .kv__news-box__row > div:nth-child(2) a {
        width: 130px;
        display: block;
        border: 1px solid #fff;
        padding: 10px 0 8px;
        font-size: 0;
        text-align: center;
        border-radius: 2px;
        opacity: 0;
        -webkit-transition: opacity 0.7s;
        -moz-transition: opacity 0.7s;
        -o-transition: opacity 0.7s;
        transition: opacity 0.7s;
        background: transparent;
        position: relative;
        overflow: hidden; }
        .kv__news-box__row > div:nth-child(2) a:before {
          content: "";
          position: absolute;
          left: 0;
          top: 0;
          width: 100%;
          height: 100%;
          opacity: 0;
          background: rgba(255, 255, 255, 0.2);
          -webkit-transition: opacity 0.3s;
          -moz-transition: opacity 0.3s;
          -o-transition: opacity 0.3s;
          transition: opacity 0.3s; }
        @media only screen and (min-width: 768px) {
          .kv__news-box__row > div:nth-child(2) a:hover:before {
            opacity: 1; }
          .kv__news-box__row > div:nth-child(2) a:hover svg {
            left: 4px; } }
        .kv__news-box__row > div:nth-child(2) a span, .kv__news-box__row > div:nth-child(2) a img {
          display: inline-block;
          vertical-align: middle;
          position: relative;
          z-index: 1; }
        .kv__news-box__row > div:nth-child(2) a span {
          font-family: "Josefin Sans", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
          font-size: 14px;
          font-style: normal;
          font-weight: 400;
          line-height: normal;
          letter-spacing: -0.28px;
          transition: color .3s; }
        .kv__news-box__row > div:nth-child(2) a svg,
        .kv__news-box__row > div:nth-child(2) a img {
          width: 16px;
          height: 6px;
          margin-left: 16px;
          position: relative;
          z-index: 1; }
        .kv__news-box__row > div:nth-child(2) a svg {
          position: relative;
          top: 2px;
          left: 0;
          transition: left .3s; }
          .kv__news-box__row > div:nth-child(2) a svg path {
            transition: stroke .3s; }

.member-pops {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10000000; }
  .member-pops__overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #666;
    opacity: 0.7;
    z-index: 9999; }
  .member-pops__box {
    position: fixed;
    width: calc(100% - 48px);
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    z-index: 10000;
    display: none; }
    @media only screen and (max-width: 767px) {
      .member-pops__box {
        max-height: 578px;
        overflow: scroll; } }
    .member-pops__box__inner figure {
      position: relative; }
      .member-pops__box__inner figure > div > div {
        background-size: cover;
        background-position: center center;
        padding-top: 61.1620795%; }
        @media only screen and (max-width: 767px) {
          .member-pops__box__inner figure > div > div {
            background-size: cover;
            background-position: center top;
            background-repeat: no-repeat;
            padding-top: 81.162079%; } }
      .member-pops__box__inner figure figcaption {
        padding: 24px 16px 16px; }
        .member-pops__box__inner figure figcaption > strong {
          display: block; }
          .member-pops__box__inner figure figcaption > strong span, .member-pops__box__inner figure figcaption > strong small {
            display: inline-block;
            vertical-align: baseline; }
          .member-pops__box__inner figure figcaption > strong span {
            font-size: 20px;
            font-style: normal;
            font-weight: 700;
            line-height: 150%; }
          .member-pops__box__inner figure figcaption > strong small {
            font-size: 12px;
            font-style: normal;
            font-weight: 400;
            line-height: 130%;
            /* 15.6px */
            letter-spacing: 0.48px;
            color: #666;
            margin-left: 4px; }
        .member-pops__box__inner figure figcaption > em {
          display: block;
          font-size: 14px;
          font-style: normal;
          font-weight: 500;
          line-height: 130%;
          color: #0EA39E;
          margin-top: 8px; }
        .member-pops__box__inner figure figcaption p {
          font-size: 14px;
          font-style: normal;
          font-weight: 400;
          line-height: 150%;
          margin-top: 16px; }
        .member-pops__box__inner figure figcaption > div {
          margin-top: 32px; }
        .member-pops__box__inner figure figcaption ul {
          display: -webkit-flex;
          display: flex;
          -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
          -webkit-justify-content: space-between;
          justify-content: space-between;
          margin-top: 24px;
          padding-top: 12px;
          border-top: 1px solid #D0D6DB; }
          .member-pops__box__inner figure figcaption ul li a span {
            font-size: 14px;
            font-style: normal;
            font-weight: 500;
            line-height: 100%; }
    .member-pops__box__close {
      position: absolute;
      display: block;
      background: rgba(34, 34, 34, 0.5);
      border-radius: 50px;
      width: 32px;
      height: 32px;
      filter: drop-shadow(0px 8px 8px rgba(0, 0, 0, 0.1));
      -webkit-filter: drop-shadow(0px 8px 8px rgba(0, 0, 0, 0.1));
      right: 16px;
      top: 16px;
      cursor: pointer; }
      .member-pops__box__close:before, .member-pops__box__close:after {
        content: "";
        width: 16px;
        height: 1px;
        background: #fff;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        margin: auto;
        transform: rotate(45deg); }
      .member-pops__box__close:after {
        transform: rotate(-45deg); }

.news-page {
  margin-top: -222px;
  position: relative;
  z-index: 1;
  padding-bottom: 120px; }
  @media only screen and (max-width: 767px) {
    .news-page {
      margin-top: -258px; } }
  .news-page .inner {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between; }
  .news-page__aside {
    width: 200px;
    position: relative; }
    @media only screen and (min-width: 768px) {
      .news-page__aside {
        max-height: 700px !important; } }
    @media only screen and (max-width: 767px) {
      .news-page__aside {
        width: 100%; } }
    @media only screen and (min-width: 768px) {
      .news-page__aside > ul {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%; } }
    @media only screen and (max-width: 767px) {
      .news-page__aside > ul {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: space-between;
        justify-content: space-between; } }
    .news-page__aside > ul li {
      margin-top: 8px; }
      @media only screen and (max-width: 767px) {
        .news-page__aside > ul li {
          width: 46.4831804%;
          margin-top: 4px; } }
      .news-page__aside > ul li:first-child {
        margin-top: 0; }
      .news-page__aside > ul li:hover a, .news-page__aside > ul li.current a {
        color: #222;
        background: #F1F3F6; }
        .news-page__aside > ul li:hover a:before, .news-page__aside > ul li.current a:before {
          opacity: 1; }
      .news-page__aside > ul li a {
        display: block;
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        padding: 13px 16px;
        padding-left: 31px;
        position: relative;
        color: #666;
        transition: color .3s; }
        @media only screen and (max-width: 767px) {
          .news-page__aside > ul li a {
            padding: 12px;
            padding-left: 25px;
            font-size: 13px;
            font-style: normal;
            font-weight: 700; } }
        .news-page__aside > ul li a:before {
          content: "";
          width: 5px;
          height: 5px;
          border-radius: 5px;
          background: #0EA39E;
          position: absolute;
          left: 16px;
          top: 0;
          bottom: 0;
          margin: auto;
          opacity: 0;
          transition: opacity .3s; }
          @media only screen and (max-width: 767px) {
            .news-page__aside > ul li a:before {
              left: 12px; } }
  @media only screen and (min-width: 768px) {
    .news-page__contents {
      width: calc(100% - 200px);
      padding-left: 80px; } }
  .news-page__row {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between; }
    .news-page__row a {
      display: block;
      width: 47.7142857%;
      position: relative;
      padding-bottom: 28px;
      margin-top: 56px; }
      @media only screen and (max-width: 767px) {
        .news-page__row a {
          width: 100%;
          margin-top: 24px;
          padding-bottom: 24px; } }
      .news-page__row a:nth-child(1), .news-page__row a:nth-child(2) {
        margin-top: 0; }
        @media only screen and (max-width: 767px) {
          .news-page__row a:nth-child(1), .news-page__row a:nth-child(2) {
            margin-top: 24px; } }
      .news-page__row a:before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 1px;
        background: #E1E6EC; }
      .news-page__row a figure > div {
        overflow: hidden; }
        .news-page__row a figure > div > div {
          padding-top: 56.2874251%;
          background-size: cover;
          background-position: center center; }
      .news-page__row a figure figcaption {
        padding-top: 16px; }
        .news-page__row a figure figcaption small {
          display: block;
          font-family: "Roboto", "Josefin Sans", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
          font-size: 13px;
          font-style: normal;
          font-weight: 300;
          line-height: 1;
          letter-spacing: 0.39px;
          color: #666; }
        .news-page__row a figure figcaption strong {
          font-size: 16px;
          font-style: normal;
          font-weight: 500;
          line-height: 150%;
          display: block;
          margin-top: 7px; }
        .news-page__row a figure figcaption ul {
          font-size: 0;
          padding-top: 12px; }
          .news-page__row a figure figcaption ul li {
            margin-top: 5px;
            display: inline-block;
            vertical-align: middle;
            font-size: 12px;
            font-style: normal;
            font-weight: 400;
            line-height: 130%;
            /* 15.6px */
            letter-spacing: 0.48px; }
            .news-page__row a figure figcaption ul li:last-child:after {
              content: none; }
            .news-page__row a figure figcaption ul li:after {
              content: "│";
              display: inline-block;
              vertical-align: middle;
              font-size: 12px;
              font-style: normal;
              font-weight: 400;
              line-height: normal;
              letter-spacing: -0.24px; }
  .news-page__single {
    max-width: 860px;
    padding: 0 30px;
    margin: auto;
    width: 100%; }
    .news-page__single.static {
      max-width: 1040px;
      padding: 0;
      margin-top: 60px; }
      @media only screen and (max-width: 767px) {
        .news-page__single.static {
          margin-top: 130px; } }
    @media only screen and (max-width: 767px) {
      .news-page__single {
        padding: 0; } }
    .news-page__single__upper {
      position: relative;
      padding-bottom: 7px;
      border-bottom: 1px solid #D0D6DB; }
      .news-page__single__upper ul {
        font-size: 0; }
        @media only screen and (min-width: 768px) {
          .news-page__single__upper ul {
            padding-right: 130px; } }
        .news-page__single__upper ul li {
          display: inline-block;
          vertical-align: middle;
          font-size: 14px;
          font-style: normal;
          font-weight: 400;
          line-height: 130%;
          margin-top: 8px; }
          .news-page__single__upper ul li:last-child:after {
            content: none; }
          .news-page__single__upper ul li:after {
            content: "│";
            display: inline-block;
            vertical-align: middle;
            position: relative;
            top: -2px;
            margin-left: 2px;
            font-size: 12px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            letter-spacing: -0.24px; }
      .news-page__single__upper ol {
        font-size: 0; }
        @media only screen and (min-width: 768px) {
          .news-page__single__upper ol {
            position: absolute;
            right: 0;
            top: 0; } }
        @media only screen and (max-width: 767px) {
          .news-page__single__upper ol {
            text-align: right;
            margin-top: 8px; } }
        .news-page__single__upper ol li {
          display: inline-block;
          vertical-align: top;
          padding-left: 12px; }
          .news-page__single__upper ol li img {
            width: 28px;
            height: 28px; }
            @media only screen and (max-width: 767px) {
              .news-page__single__upper ol li img {
                width: 28px;
                height: 28px; } }
      .news-page__single__upper h1 {
        margin-top: 33px; }
        @media only screen and (max-width: 767px) {
          .news-page__single__upper h1 {
            margin-top: 24px; } }
        .news-page__single__upper h1 span {
          font-size: 32px;
          font-style: normal;
          font-weight: 700;
          line-height: 150%; }
          @media only screen and (max-width: 767px) {
            .news-page__single__upper h1 span {
              font-size: 22px;
              font-style: normal;
              font-weight: 700;
              line-height: 150%; } }
      .news-page__single__upper small {
        display: block;
        font-family: "Roboto", "Josefin Sans", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 300;
        line-height: normal;
        letter-spacing: 0.48px;
        color: #666;
        margin-top: 16px; }
    .news-page__single__content {
      padding-top: 40px;
      word-wrap: break-word; }
      .news-page__single__content--icatch img {
        display: block; }
      .news-page__single__content__body {
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 200%;
        padding-top: 40px;
        border-bottom: 1px solid #D0D6DB;
        padding-bottom: 56px; }
        @media only screen and (max-width: 767px) {
          .news-page__single__content__body {
            line-height: 180%; } }
        .news-page__single__content__body h1, .news-page__single__content__body h2, .news-page__single__content__body h3, .news-page__single__content__body h4, .news-page__single__content__body h5, .news-page__single__content__body h6 {
          margin-top: 56px;
          margin-bottom: 32px;
          position: relative;
          display: block;
          font-size: 24px;
          font-style: normal;
          font-weight: 700;
          line-height: 150%;
          padding-left: 16px; }
          .news-page__single__content__body h1:before, .news-page__single__content__body h2:before, .news-page__single__content__body h3:before, .news-page__single__content__body h4:before, .news-page__single__content__body h5:before, .news-page__single__content__body h6:before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            margin: auto;
            width: 3px;
            height: 90%;
            background: #0EA39E; }
        .news-page__single__content__body p {
          margin-bottom: 1.5em; }
        .news-page__single__content__body blockquote {
          font-size: 16px;
          border: none;
          line-height: 1.8;
          padding: 2em 5em;
          background-color: #f9f9f9;
          margin: 0 0 30px;
          padding-top: 24px; }
          @media only screen and (max-width: 767px) {
            .news-page__single__content__body blockquote {
              padding: 2em 1em;
              font-size: 14px; } }
        .news-page__single__content__body .wp-block-pullquote {
          padding: 0; }
        .news-page__single__content__body strong {
          font-size: 18px;
          font-style: normal;
          font-weight: 700;
          line-height: 150%;
          margin-top: 32px;
          margin-bottom: 12px; }
        .news-page__single__content__body img {
          display: block;
          margin-top: 32px; }
        .news-page__single__content__body figure img {
          display: block; }
        .news-page__single__content__body figure figcaption {
          padding-top: 12px;
          font-size: 12px;
          font-style: normal;
          font-weight: 400;
          line-height: 130%;
          /* 15.6px */
          letter-spacing: 0.48px;
          color: #666; }
        .news-page__single__content__body a {
          text-decoration: underline;
          color: #0EA39E; }
        .news-page__single__content__body ul li {
          margin: 8px 0;
          position: relative;
          padding-left: 24px; }
          .news-page__single__content__body ul li:before {
            content: "";
            position: absolute;
            left: 0;
            top: 0; }
        .news-page__single__content__body ol li {
          margin: 8px 0;
          padding-left: 24px;
          position: relative; }
    .news-page__single__share {
      text-align: center;
      padding-top: 26px; }
      .news-page__single__share ol li {
        display: inline-block;
        vertical-align: middle;
        margin: 0 5px; }
  .news-page__single-whole {
    margin-top: -268px; }
    @media only screen and (max-width: 767px) {
      .news-page__single-whole {
        margin-top: -308px; } }

.not-found {
  padding-bottom: 160px;
  background: #fff; }
  @media only screen and (max-width: 767px) {
    .not-found {
      padding-bottom: 120px; } }
  .not-found .sub-page-header {
    height: 512px; }
    @media only screen and (max-width: 767px) {
      .not-found .sub-page-header {
        height: 458px; } }

.product-header {
  position: relative;
  padding-top: 120px;
  z-index: 1; }
  @media only screen and (max-width: 767px) {
    .product-header {
      padding-top: 81px; } }
  .product-header > img {
    position: absolute;
    right: 0;
    top: 0;
    width: 88.28125%; }
    @media only screen and (max-width: 767px) {
      .product-header > img {
        width: 100%; } }
  .product-header .inner {
    position: relative; }
  .product-header__title.visible > em {
    opacity: 1;
    transition-delay: .1s; }
  .product-header__title.visible strong:before {
    width: 205px;
    transition-delay: .2s; }
    @media only screen and (max-width: 767px) {
      .product-header__title.visible strong:before {
        width: 126px; } }
  .product-header__title.visible strong span {
    opacity: 1;
    transition-delay: .2s; }
  .product-header__title.visible h1 span, .product-header__title.visible h1 em {
    opacity: 1;
    left: 0; }
  .product-header__title.visible h1 span {
    transition-delay: .7s; }
  .product-header__title.visible h1 em {
    transition-delay: 1s; }
  .product-header__title em, .product-header__title strong {
    display: block; }
  .product-header__title > em {
    font-family: "Josefin Sans", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    /* 100% */
    letter-spacing: -0.4px;
    opacity: 0;
    -webkit-transition: opacity 0.8s;
    -moz-transition: opacity 0.8s;
    -o-transition: opacity 0.8s;
    transition: opacity 0.8s; }
    @media only screen and (max-width: 767px) {
      .product-header__title > em {
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal; } }
  .product-header__title strong {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    margin-top: 27px;
    transition-delay: .2s;
    position: relative; }
    @media only screen and (max-width: 767px) {
      .product-header__title strong {
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        margin-top: 16px; } }
    .product-header__title strong:before {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 1px;
      background: #0B3B3F;
      bottom: -16px;
      transition: width .8s; }
      @media only screen and (max-width: 767px) {
        .product-header__title strong:before {
          width: 0;
          bottom: -15px; } }
    .product-header__title strong span {
      display: inline-block;
      position: relative;
      -webkit-transition: opacity 0.8s;
      -moz-transition: opacity 0.8s;
      -o-transition: opacity 0.8s;
      transition: opacity 0.8s;
      opacity: 0; }
  .product-header__title h1 {
    padding-top: 56px; }
    @media only screen and (max-width: 767px) {
      .product-header__title h1 {
        padding-top: 24px; } }
    .product-header__title h1 span, .product-header__title h1 em {
      display: block;
      opacity: 0;
      transition: opacity .8s, left .8s;
      position: relative;
      left: -50px; }
    .product-header__title h1 span {
      font-size: 54px;
      font-style: normal;
      font-weight: 700;
      line-height: 140%; }
      @media only screen and (max-width: 767px) {
        .product-header__title h1 span {
          text-shadow: 0px 8px 16px #EAEDF1;
          font-size: 26px;
          font-style: normal;
          font-weight: 700;
          line-height: 150%; } }
    .product-header__title h1 em {
      margin-top: 40px;
      color: #8B9FA1;
      leading-trim: both;
      text-edge: cap;
      font-family: "Josefin Sans", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
      font-size: 54px;
      font-style: normal;
      font-weight: 700;
      line-height: 120%; }
      @media only screen and (max-width: 767px) {
        .product-header__title h1 em {
          color: #8B9FA1;
          text-shadow: 0px 0px 17px rgba(255, 255, 255, 0.55);
          font-size: 32px;
          font-style: normal;
          font-weight: 700;
          line-height: 120%;
          /* 38.4px */
          letter-spacing: -0.96px;
          margin-top: 16px; } }
  .product-header__row {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding-top: 32px; }
    @media only screen and (max-width: 767px) {
      .product-header__row {
        padding-top: 40px; } }
    .product-header__row p {
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      line-height: 180%;
      width: 56.327%;
      transition-delay: 1.1s; }
      @media only screen and (min-width: 768px) {
        .product-header__row p.pb-pc {
          padding-bottom: 208px; } }
      @media only screen and (max-width: 767px) {
        .product-header__row p {
          width: 100%; } }
    .product-header__row > div {
      width: 30.205%;
      position: relative; }
      @media only screen and (min-width: 768px) {
        .product-header__row > div {
          transition-delay: 1.1s; } }
      .product-header__row > div.big {
        width: 35.205%; }
        @media only screen and (max-width: 767px) {
          .product-header__row > div.big {
            width: 100%; } }
      .product-header__row > div.big2 {
        width: 37.205%; }
        @media only screen and (max-width: 767px) {
          .product-header__row > div.big2 {
            width: 100%; } }
      @media only screen and (min-width: 768px) {
        .product-header__row > div.top ul {
          bottom: auto;
          top: 0; } }
      @media only screen and (max-width: 767px) {
        .product-header__row > div {
          width: 100%;
          margin-top: 32px; } }
      .product-header__row > div ul {
        width: 100%;
        background: #fff;
        padding: 26px 16px; }
        @media only screen and (min-width: 768px) {
          .product-header__row > div ul {
            position: absolute;
            right: 0;
            bottom: -20px; } }
        @media only screen and (max-width: 767px) {
          .product-header__row > div ul {
            width: 100%; } }
        .product-header__row > div ul li a {
          display: block;
          font-size: 14px;
          font-style: normal;
          font-weight: 500;
          line-height: 150%;
          position: relative;
          background-image: url(../images/icon/ico_dropdown_arrow.svg);
          background-position: top 17px right 16px;
          background-repeat: no-repeat;
          padding: 9px 16px;
          opacity: 1;
          transition: opacity 0.3s; }
          @media only screen and (min-width: 768px) {
            .product-header__row > div ul li a:hover {
              opacity: .7; } }
          .product-header__row > div ul li a span {
            display: block;
            padding-right: 18px; }
  .product-header__news {
    margin-top: 88px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    border-radius: 4px;
    overflow: hidden;
    color: #fff; }
    @media only screen and (max-width: 767px) {
      .product-header__news {
        margin-top: 40px; } }
    .product-header__news > div:nth-child(1) {
      width: 181px;
      background: #023438;
      padding: 32px 40px; }
      @media only screen and (max-width: 767px) {
        .product-header__news > div:nth-child(1) {
          width: 100%;
          padding: 0;
          display: -webkit-flex;
          display: flex;
          -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
          -webkit-justify-content: space-between;
          justify-content: space-between;
          padding: 32px 24px 24px; } }
      .product-header__news > div:nth-child(1) em {
        display: block;
        text-align: center;
        font-family: "Josefin Sans", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: normal; }
      .product-header__news > div:nth-child(1) a {
        margin-top: 40px;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        align-items: center;
        opacity: 1;
        transition: opacity 0.3s; }
        @media only screen and (max-width: 767px) {
          .product-header__news > div:nth-child(1) a {
            margin-top: 0; } }
        @media only screen and (min-width: 768px) {
          .product-header__news > div:nth-child(1) a:hover {
            opacity: .7; } }
        .product-header__news > div:nth-child(1) a span {
          font-family: "Josefin Sans", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
          font-size: 14px;
          font-style: normal;
          font-weight: 400;
          line-height: normal;
          letter-spacing: -0.28px;
          display: block; }
          @media only screen and (max-width: 767px) {
            .product-header__news > div:nth-child(1) a span {
              margin-right: 16px; } }
        .product-header__news > div:nth-child(1) a svg {
          display: block; }
    .product-header__news > div:nth-child(2) {
      background-color: #0B3B3F;
      width: calc(100% - 181px);
      padding: 26px 32px; }
      @media only screen and (max-width: 767px) {
        .product-header__news > div:nth-child(2) {
          width: 100%;
          padding: 32px 24px; } }
      @media only screen and (max-width: 767px) {
        .product-header__news > div:nth-child(2) a {
          display: block;
          margin-top: 24px; }
          .product-header__news > div:nth-child(2) a:nth-child(1) {
            margin-top: 0; } }
      .product-header__news > div:nth-child(2) ul {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        padding: 6px 0; }
        @media only screen and (max-width: 767px) {
          .product-header__news > div:nth-child(2) ul {
            padding: 0;
            display: block; } }
        .product-header__news > div:nth-child(2) ul li:nth-child(1) {
          width: 87px;
          font-family: "Roboto", "Josefin Sans", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
          font-size: 14px;
          font-style: normal;
          font-weight: 400;
          line-height: normal;
          padding-top: 2px; }
          @media only screen and (max-width: 767px) {
            .product-header__news > div:nth-child(2) ul li:nth-child(1) {
              width: 100%;
              padding: 0; } }
        .product-header__news > div:nth-child(2) ul li:nth-child(2) {
          width: calc(100% - 87px);
          text-overflow: ellipsis;
          font-size: 14px;
          font-style: normal;
          font-weight: 500;
          line-height: 130%; }
          @media only screen and (max-width: 767px) {
            .product-header__news > div:nth-child(2) ul li:nth-child(2) {
              width: 100%;
              padding: 0;
              margin-top: 16px; } }

.related-news {
  background: #EAEDF1;
  padding: 80px 0 120px; }
  .related-news .news-page__row {
    padding-top: 40px; }
    @media only screen and (max-width: 767px) {
      .related-news .news-page__row {
        padding-top: 0; } }
    .related-news .news-page__row > a:before {
      background-color: #D0D6DB; }
    @media only screen and (min-width: 768px) {
      .related-news .news-page__row > a {
        width: 31.6326531%;
        margin-top: 0; } }
  .related-news__button {
    text-align: center;
    padding-top: 40px; }
    .related-news__button a {
      padding-left: 56px;
      position: relative; }
      .related-news__button a:before {
        content: "";
        background-image: url(../images/icon/ico_back.svg);
        background-repeat: no-repeat;
        background-position: center;
        width: 24px;
        height: 8px;
        position: absolute;
        left: 16px;
        top: 0;
        bottom: 0;
        margin: auto;
        transition: left .3s; }
      .related-news__button a span {
        background: none;
        padding-right: 56px; }
      @media only screen and (min-width: 768px) {
        .related-news__button a:hover:before {
          left: 12px; } }

.sdgs {
  padding: 160px 0;
  position: relative;
  background: linear-gradient(138deg, #0B3B3F 0%, #76B597 100%); }
  @media only screen and (max-width: 767px) {
    .sdgs {
      padding-top: 56px;
      padding-bottom: 80px;
      background: linear-gradient(100deg, #0B3B3F -18%, #76B597 100%); } }
  .sdgs__bg {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/top/sdgs_bg.jpg);
    background-size: cover;
    background-position: center;
    mix-blend-mode: multiply; }
  .sdgs .inner {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 940px; }
  .sdgs__boxes {
    padding-top: 31px; }
  .sdgs__box {
    border-radius: 4px 4px 0px 0px;
    background: #0B3B3F;
    padding: 32px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin-top: 1px; }
    @media only screen and (max-width: 767px) {
      .sdgs__box {
        padding: 28px 24px 24px; } }
    .sdgs__box > div:nth-child(1) {
      width: 34.3137255%; }
      @media only screen and (max-width: 767px) {
        .sdgs__box > div:nth-child(1) {
          width: 100%; } }
      .sdgs__box > div:nth-child(1) > div {
        position: relative; }
        .sdgs__box > div:nth-child(1) > div strong {
          display: block;
          position: absolute;
          left: 0;
          top: 50%;
          transform: translateY(-50%);
          font-family: "Akshar", "Josefin Sans", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
          color: #447879;
          font-size: 48px;
          font-style: normal;
          font-weight: 500;
          line-height: normal; }
        .sdgs__box > div:nth-child(1) > div > span {
          display: block;
          padding-left: 66px; }
          .sdgs__box > div:nth-child(1) > div > span span, .sdgs__box > div:nth-child(1) > div > span em {
            display: block; }
          .sdgs__box > div:nth-child(1) > div > span span {
            font-size: 12px;
            font-style: normal;
            font-weight: 700;
            line-height: normal; }
          .sdgs__box > div:nth-child(1) > div > span em {
            font-size: 18px;
            font-style: normal;
            font-weight: 700;
            line-height: normal;
            font-family: "Josefin Sans", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
            line-height: 1;
            margin-top: 6px; }
      .sdgs__box > div:nth-child(1) p {
        padding-top: 16px;
        margin-top: 23px;
        border-top: 1px solid #447879;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%; }
    .sdgs__box > div:nth-child(2) {
      width: 56.955882%; }
      @media only screen and (max-width: 767px) {
        .sdgs__box > div:nth-child(2) {
          width: 100%;
          padding-top: 17px; } }
      .sdgs__box > div:nth-child(2) img {
        display: block;
        max-height: 110px; }

.solution__circle-bg {
  position: absolute;
  right: 770px;
  top: -73px;
  width: 1346px;
  height: 1320px; }
  .solution__circle-bg svg {
    display: none; }
  @media only screen and (max-width: 767px) {
    .solution__circle-bg {
      width: 820px;
      height: 820px;
      top: -200px;
      right: 73%;
      transform: rotate(5deg); }
      .solution__circle-bg svg {
        display: block;
        width: 100%;
        display: block;
        height: auto;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 1;
        transform: scale(-1, 1); } }
  .solution__circle-bg img {
    width: 100%;
    display: block;
    height: auto; }

.solution .inner:nth-child(2) {
  padding-bottom: 256px;
  position: relative; }
  @media only screen and (max-width: 767px) {
    .solution .inner:nth-child(2) {
      padding-bottom: 100px; } }

.solution__boxes {
  margin-top: 80px; }
  @media only screen and (max-width: 767px) {
    .solution__boxes {
      margin-top: 74px;
      margin-left: -24px;
      width: calc(100% + 48px); } }

.solution__box {
  margin: 0 0 0 auto; }
  @media only screen and (max-width: 767px) {
    .solution__box {
      padding-right: 24px; }
      .solution__box:nth-child(1) {
        width: 253px; }
        .solution__box:nth-child(1) > div > img {
          margin-top: 24px; }
      .solution__box:nth-child(2) {
        width: 247px; }
        .solution__box:nth-child(2) > div > strong > span {
          margin-top: 18px !important; }
        .solution__box:nth-child(2) > div > p {
          margin-top: 18px !important; }
      .solution__box:nth-child(3) {
        width: 253px; }
        .solution__box:nth-child(3) > div > strong > span {
          margin-top: 18px !important; }
        .solution__box:nth-child(3) > div > p {
          margin-top: 18px !important; }
        .solution__box:nth-child(3) > div:nth-child(3) img {
          width: 250px;
          max-width: 250px;
          margin: 0 0px 0 -30px; } }
  .solution__box strong {
    font-size: 0; }
    .solution__box strong em, .solution__box strong span {
      display: inline-block;
      vertical-align: middle; }
    .solution__box strong em {
      margin-right: 13px; }
      .solution__box strong em img {
        height: 30px;
        width: auto; }
    .solution__box strong span {
      font-size: 20px;
      font-style: normal;
      font-weight: 700;
      line-height: 150%; }
  .solution__box p {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; }
  .solution__box:nth-child(1) {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    max-width: 800px;
    align-items: center;
    position: relative; }
    @media only screen and (min-width: 768px) {
      .solution__box:nth-child(1).visible:before {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1); }
      .solution__box:nth-child(1).visible > span:before {
        width: 100%; }
      .solution__box:nth-child(1):before {
        content: "";
        position: absolute;
        left: -177px;
        top: 121px;
        width: 16px;
        height: 16px;
        border-radius: 16px;
        background: #31bb9c;
        background: linear-gradient(125deg, #31bb9c 0%, #03a8c3 100%);
        z-index: 1;
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        -webkit-transition: -webkit-transform 0.6s;
        -moz-transition: -moz-transform 0.6s;
        -o-transition: -o-transform 0.6s;
        transition: transform 0.6s; }
      .solution__box:nth-child(1) > span {
        position: absolute;
        left: -174px;
        top: 106px;
        z-index: 0;
        width: 158px;
        height: 1px;
        transform: rotate(-17.49deg); }
        .solution__box:nth-child(1) > span:before {
          content: "";
          position: absolute;
          left: 0;
          top: 0;
          width: 0%;
          height: 100%;
          background: #0EA39E;
          -webkit-transition: width 0.6s;
          -moz-transition: width 0.6s;
          -o-transition: width 0.6s;
          transition: width 0.6s;
          -webkit-transition-delay: 0.3s;
          -moz-transition-delay: 0.3s;
          -o-transition-delay: 0.3s;
          transition-delay: 0.3s; } }
    .solution__box:nth-child(1) > div:nth-child(2) p {
      margin-top: 25px; }
    .solution__box:nth-child(1) > div:nth-child(2) > div {
      margin-top: 24px; }
    .solution__box:nth-child(1) > div:nth-child(3) {
      width: 368px; }
  .solution__box:nth-child(2) {
    margin-top: 136px;
    max-width: 700px;
    position: relative; }
    .solution__box:nth-child(2).visible:before {
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      -ms-transform: scale(1);
      -o-transform: scale(1);
      transform: scale(1); }
    .solution__box:nth-child(2).visible > span:before {
      width: 100%; }
    @media only screen and (min-width: 768px) {
      .solution__box:nth-child(2):before {
        content: "";
        position: absolute;
        left: -105px;
        top: -37px;
        width: 40px;
        height: 40px;
        border-radius: 40px;
        background: #31bb9c;
        background: linear-gradient(125deg, #31bb9c 0%, #03a8c3 100%);
        z-index: 1;
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        -webkit-transition: -webkit-transform 0.6s;
        -moz-transition: -moz-transform 0.6s;
        -o-transition: -o-transform 0.6s;
        transition: transform 0.6s; }
      .solution__box:nth-child(2) > span {
        position: absolute;
        left: -81px;
        top: 0px;
        z-index: 0;
        width: 62px;
        height: 1px;
        transform: rotate(28.61deg); }
        .solution__box:nth-child(2) > span:before {
          content: "";
          position: absolute;
          left: 0;
          top: 0;
          width: 0%;
          height: 100%;
          background: #0EA39E;
          -webkit-transition: width 0.6s;
          -moz-transition: width 0.6s;
          -o-transition: width 0.6s;
          transition: width 0.6s;
          -webkit-transition-delay: 0.3s;
          -moz-transition-delay: 0.3s;
          -o-transition-delay: 0.3s;
          transition-delay: 0.3s; } }
    .solution__box:nth-child(2) p {
      margin-top: 24px; }
    .solution__box:nth-child(2) div {
      margin-top: 24px; }
      .solution__box:nth-child(2) div img {
        width: 100%; }
  .solution__box:nth-child(3) {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    max-width: 794px;
    align-items: center;
    margin-top: 136px;
    position: relative; }
    .solution__box:nth-child(3).visible:before {
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      -ms-transform: scale(1);
      -o-transform: scale(1);
      transform: scale(1); }
    .solution__box:nth-child(3).visible > span:before {
      width: 100%; }
    @media only screen and (min-width: 768px) {
      .solution__box:nth-child(3):before {
        content: "";
        position: absolute;
        left: -145px;
        top: -77px;
        width: 80px;
        height: 80px;
        border-radius: 80px;
        background: #31bb9c;
        background: linear-gradient(125deg, #31bb9c 0%, #03a8c3 100%);
        z-index: 1;
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        -webkit-transition: -webkit-transform 0.6s;
        -moz-transition: -moz-transform 0.6s;
        -o-transition: -o-transform 0.6s;
        transition: transform 0.6s; }
      .solution__box:nth-child(3) > span {
        position: absolute;
        left: -88px;
        top: 3px;
        z-index: 0;
        width: 60px;
        height: 1px;
        transform: rotate(42.27deg); }
        .solution__box:nth-child(3) > span:before {
          content: "";
          position: absolute;
          left: 0;
          top: 0;
          width: 0%;
          height: 100%;
          background: #0EA39E;
          -webkit-transition: width 0.6s;
          -moz-transition: width 0.6s;
          -o-transition: width 0.6s;
          transition: width 0.6s;
          -webkit-transition-delay: 0.3s;
          -moz-transition-delay: 0.3s;
          -o-transition-delay: 0.3s;
          transition-delay: 0.3s; } }
    @media only screen and (max-width: 767px) {
      .solution__box:nth-child(3) {
        display: block; } }
    .solution__box:nth-child(3) > div:nth-child(2) {
      width: 47.1032746%; }
      @media only screen and (max-width: 767px) {
        .solution__box:nth-child(3) > div:nth-child(2) {
          width: 100%; } }
      .solution__box:nth-child(3) > div:nth-child(2) p {
        margin-top: 25px; }
      .solution__box:nth-child(3) > div:nth-child(2) > div {
        margin-top: 24px; }
    .solution__box:nth-child(3) > div:nth-child(3) {
      width: 46.3476071%; }

.sub-page-header {
  height: 469px;
  position: relative;
  overflow: hidden;
  background: #EAEDF1; }
  @media only screen and (max-width: 767px) {
    .sub-page-header {
      background: linear-gradient(135deg, #FFF 50.52%, #F1F3F6 70.27%, #EAEDF1 100%);
      backdrop-filter: blur(5px);
      height: 402px; } }
  .sub-page-header:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFF 50.52%, #F1F3F6 70.27%, #EAEDF1 100%);
    backdrop-filter: blur(5px);
    z-index: 0; }
  .sub-page-header.add-green:after {
    content: "";
    border-radius: 78.28vw;
    opacity: 0.10000000149011612;
    background: var(--agrismilegreen, #0EA39E);
    filter: blur(100px);
    z-index: 0;
    position: absolute;
    top: 0;
    width: 57.34vw;
    height: 78.28vw;
    right: -12%;
    left: auto; }
    @media only screen and (max-width: 767px) {
      .sub-page-header.add-green:after {
        width: 82.4vw;
        height: 112.53vw; } }
  .sub-page-header > svg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    z-index: 1; }
  .sub-page-header > div {
    position: absolute;
    z-index: 2;
    width: 100%;
    top: 136px; }
    @media only screen and (max-width: 767px) {
      .sub-page-header > div {
        top: 96px; } }
    .sub-page-header > div h1 em {
      display: block;
      font-family: "Josefin Sans", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
      font-size: 20px;
      font-style: normal;
      font-weight: 700;
      line-height: 20px;
      letter-spacing: -0.4px; }
    .sub-page-header > div h1 small, .sub-page-header > div h1 strong {
      display: block; }
    .sub-page-header > div h1 small {
      font-family: "Josefin Sans", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
      font-size: 20px;
      font-style: normal;
      font-weight: 700;
      line-height: 20px;
      letter-spacing: -0.4px; }
      @media only screen and (max-width: 767px) {
        .sub-page-header > div h1 small {
          font-size: 16px;
          font-style: normal;
          font-weight: 700;
          line-height: 20px;
          /* 125% */
          letter-spacing: -0.32px; } }
    .sub-page-header > div h1 strong {
      margin-top: 24px; }
      @media only screen and (max-width: 767px) {
        .sub-page-header > div h1 strong {
          margin-top: 16px; } }
      .sub-page-header > div h1 strong span {
        font-size: 40px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        display: inline-block;
        position: relative; }
        @media only screen and (max-width: 767px) {
          .sub-page-header > div h1 strong span {
            font-size: 32px;
            font-style: normal;
            font-weight: 700;
            line-height: 150%; } }
        .sub-page-header > div h1 strong span:before {
          content: "";
          position: absolute;
          left: 0;
          bottom: -16px;
          width: 160px;
          height: 1px;
          background: #222; }
          @media only screen and (max-width: 767px) {
            .sub-page-header > div h1 strong span:before {
              width: 194px; } }
    .sub-page-header > div p {
      font-size: 18px;
      font-style: normal;
      font-weight: 500;
      line-height: 150%;
      max-width: 800px;
      margin-top: 64px; }
    .sub-page-header > div .button {
      margin-top: 48px; }

/**

 */
body.top-page:after {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 100000;
  background: #fff;
  pointer-events: none;
  -webkit-transition: all 1.2s;
  -moz-transition: all 1.2s;
  -o-transition: all 1.2s;
  transition: all 1.2s;
  -webkit-filter: blur(0px);
  -moz-filter: blur(0px);
  filter: blur(0px); }

body.top-page.loaded:after {
  -webkit-filter: blur(6px);
  -moz-filter: blur(6px);
  filter: blur(6px);
  opacity: 0;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1); }
