:root {
  --jp-font-set: "Noto Sans JP", sans-serif;
  --en-font-set: "Poppins", sans-serif;
}

/* Base */
html {
  font-size: 62.5%;
}

body {
  width: 100%;
  background-color: #EEF2F3;
  color: #222;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, sans-serif;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: .15em;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overflow-y: scroll;
  overscroll-behavior-y: none;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  height: auto;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--jp-font-set);
  margin: 0;
  line-height: 1.6;
}

p {
  margin: 0;
}

em {
  font-weight: bold;
  font-style: normal;
}

/* Lists */
ul,
ol,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

ul {
  text-align: left;
}

ul li {
  list-style: none;
}

ol {
  counter-reset: item;
  list-style-type: none;
  text-align: left;
  line-height: 1.6;
}

ol li {
  padding-left: 1.7em;
  position: relative;
  margin-bottom: .6em;
}

ol li::before {
  counter-increment: item;
  content: counter(item) ".";
  position: absolute;
  left: 0;
  top: 1em;
  -webkit-transform: translateY(-1em);
  transform: translateY(-1em);
}

figure {
  margin: 0;
}


/* Tables */
table {
  border: none;
  border-spacing: 0;
}

th,
td {
  vertical-align: top;
  text-align: left;
}

/* Links */
a {
  outline: none;
}

a:link {
  text-decoration: none;
}

/* =================================================================
		#common
================================================================= */

.wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.main {
  font-size: 1.7rem;
  position: relative;
  z-index: 100;
}

.pct {
  margin: 0;

  img {
    width: 100%;
  }

}

.term {
  display: inline-block;
}

.slideUp {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(10px);

  &.is-show {
    opacity: 1;
    transform: translateY(0);
    transition: .5s .4s;
    filter: blur(0);
  }

}

.section {
  width: 100%;
  margin-bottom: 180px;
  padding: 0 3vw;
  position: relative;
}

.section__container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .section {
    margin-bottom: 100px;
    padding: 0 24px;
  }

  .section__container {
    max-width: 100%;
  }
}

/* section__headingのスタイル */
.section__heading {
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  line-height: 1.2;
}

.section__heading-en {
  font-family: var(--en-font-set);
  font-size: 9.9rem;
  font-weight: normal;
  margin-right: 24px;
  transition: font-size .2s;
}

.section__heading-ja {
  font-size: 2.4rem;
}

@media screen and (max-width: 768px) {
  .section__heading {
    margin-bottom: 32px;
    flex-direction: column;
    align-items: flex-start;
  }

  .section__heading-en {
    font-size: 6rem;
    margin-right: 0;
  }

  .section__heading-ja {
    font-size: 1.7rem;
  }
}

@media screen and (max-width: 380px) {


  .section__heading-en {
    font-size: 5rem;
  }

}


.section__summary {
  font-size: 1.8rem;
  margin-bottom: 48px;

  p {
    margin-bottom: 1em;
  }

}

.btn--apply {
  text-align: center;
}

.btn__link {
  display: block;
  background-color: #2a2a2a;
  color: #fff;
  margin: 0 auto;
  padding: .7em 2em .8em;
  border-radius: 999px;
  text-align: center;
  font-size: 1.9rem;
  font-weight: bold;
  width: 100%;
  max-width: 400px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;

  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
  }

  @media (hover: hover) {
    &:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);

      &::before {
        left: 100%;
      }
    }
  }

  .btn--white & {
    background-color: #fff;
    color: #222;
    border: 2px solid #222;

    &:hover {
      background-color: #222;
      color: #fff;
    }
  }
}

/* スマートフォン向けレスポンシブ対応 */
@media screen and (max-width: 768px) {
  .sec {
    padding: 0 30px;
    margin-bottom: 120px;
  }

  .sec-color {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .container {
    max-width: 100%;
  }

  .main {
    font-size: 1.5rem;
  }

  .section__summary {
    font-size: 1.6rem;
    margin-bottom: 36px;
  }

  .btn__link {
    font-size: 1.6rem;
    padding: .8em 1.5em .9em;
    max-width: 320px;
  }
}


/* PC表示用クラス */
.pc {
  display: block;
}

/* スマートフォン表示用クラス */
.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9992;
  width: 100%;
  padding: 18px 3vw;
}

.site-header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1600px;
  margin: 0 auto;
}

.site-header__logo {
  margin: 0;
}

.site-header__logo-link {
  display: flex;
  align-items: center;
}

.site-header__logo-img {
  height: 45px;
  width: auto;
  display: block;

  path,
  rect {
    transition: .3s;
  }
}

/* 暗い背景時に色変更 */
.dark {

  .logo-mirai {
    fill: #1F2C5C;
  }

  .btn-menu-mb {
    border-color: #56555b;
  }

  .nav-toggle {
    span {
      background-color: #44424d;
    }
  }

}

.open {

  .logo-mirai {
    fill: #1F2C5C;
    transition: .2s .2s;
  }

}

/* スマートフォン対応 */
@media screen and (max-width: 768px) {
  .site-header {
    padding: 16px 12px;
  }

  .site-header__container {
    max-width: 100%;
  }

  .site-header__logo-img {
    height: 32px;
  }
}


/** ナビゲーション */
.site-header__nav {
  margin-left: auto;
  background-color: #fff;
  padding: 14px 32px;
  border-radius: 10px;
}

.site-header__nav-list {
  display: flex;
  gap: 28px;
}

.site-header__nav-item {}

.site-header__nav-link {
  color: #333;
  font-size: 1.5rem;
  font-family: var(--en-font-set);
  transition: color 0.2s;
  position: relative;
}

@media (hover: hover) {

  .site-header__nav-link:hover,
  .site-header__nav-link:focus {
    color: #ff7f32;
  }
}

@media screen and (max-width: 768px) {
  .site-header__nav {
    display: none;
  }

}

/* =================================================================
  		 #mobile navigation
  ================================================================= */
/* mobile menu button */

.btn-menu-mb,
.spnav-menu {
  display: none;
}

@media screen and (max-width: 768px) {

  .btn-menu-mb {
    display: block;
    width: 48px;
    height: 48px;
    border: 0.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    z-index: 9998;
    position: fixed;
    right: 12px;
    top: 10px;
    box-sizing: border-box;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;

    .scrolled & {
      background-color: rgba(255, 255, 255, 0.2);
    }

    .open & {

      border-color: #56555b;

    }

  }

  /* mobile menu */

  .spnav-menu {
    display: block;
    visibility: hidden;
    background: #F9E600;
    width: 100%;
    height: 100%;
    padding-top: 16px;
    font-size: 1.4rem;
    line-height: 1.4;
    color: #101010;
    position: fixed;
    left: 100%;
    top: 0;
    z-index: 9991;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    transition: 0.3s ease-in;

    a {
      display: block;
      color: #333;
      position: relative;
    }
  }

  .spnav-menu-list {
    width: 80%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    li {
      font-size: 2.8rem;
      font-family: var(--en-font-set);
      margin-bottom: 1em;
    }

  }

  /* .spnav-menu スライドアニメーション */
  .open .spnav-menu {
    visibility: visible;
    left: 0;
    transition: 0.4s ease-out;
  }

  body.open {
    position: fixed;
    top: 0px;
  }

}

.nav-toggle {
  width: 16px;
  height: 11px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  div {
    position: relative;
  }

  span {
    display: block;
    background-color: #ffffff;
    position: absolute;
    height: 1px;
    width: 100%;
    left: 0;
    transition: .35s ease-in-out;

    &:nth-child(1) {
      top: 0;
    }

    &:nth-child(2) {
      top: 5px;
    }

    &:nth-child(3) {
      top: 10px;
    }

  }

}

.open .nav-toggle span {
  background-color: #44424d;

  &:nth-child(1) {
    top: 6px;
    transform: rotate(315deg);
  }

  &:nth-child(2) {
    width: 0;
    left: 50%;
  }

  &:nth-child(3) {
    top: 6px;
    transform: rotate(-315deg);
  }

  transition: 0.3s;
}



/* hero */

.fv {
  padding: 32px 4vw 0;
  position: relative;
}

.fv-bg {
  background: #3259AC url(../img/hero_bg.png) center top / cover no-repeat;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  filter: url(#grain);

  &:before {
    content: "";
    display: block;
    background: linear-gradient(180deg, #62c4b400 0%, #62c4b4d6 50%, #EEF2F3 85%);
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 230px;
  }
}

.filter-grain {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* .fv-visual {
  width: 100%;
  height: 100%;
} */

.hero {
  max-width: 1600px;
  margin: 0 auto 260px;
  height: 96vh;
  padding-top: 5vh;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__container {
  width: 100%;
}

.hero__catch {
  color: #fff;
}

.hero__catch--ja {
  line-height: 1.3;
  letter-spacing: 0.17em;
  margin-bottom: 14px;
  transition: font-size .2s;
  font-size: 9.2rem;

  @media only screen and (max-width: 1600px) {
    font-size: 8.4rem;
  }
}

.hero__catch--en {
  font-size: 2.8rem;
  font-family: var(--en-font-set);
  margin-bottom: 8vh;
  padding-left: 8px;
  transition: font-size .2s;

  @media only screen and (max-width: 1600px) {
    font-size: 2.3rem;
  }
}

.hero__lead {
  font-size: 2.1rem;
  font-weight: bold;
  color: #fff;
  font-family: var(--jp-font-set);
  line-height: 2.1;
  letter-spacing: .15em;
  padding-left: 6px;

  @media only screen and (max-width: 1600px) {
    font-size: 1.9rem;
  }
}

.hero-mark {
  width: 50%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;

  img {
    width: 85%;
  }
}

.hero__logo {
  position: absolute;
  right: -5%;
  top: 94%;
  opacity: .78;
}

@media only screen and (max-width: 768px) {
  .fv {
    padding: 68px 20px 0;
  }

  .hero {
    flex-direction: column;
    margin: 0 auto 190px;
    height: auto;
    padding-top: 0;
    align-items: flex-start;
  }

  .hero__container {
    width: 100%;
    margin: -40px 0 48px;
    order: 2;
    z-index: 1;
  }

  .hero__catch--ja {
    font-size: 13vw;
    margin-bottom: 10px;
  }

  .hero__catch--en {
    font-size: 1.6rem;
    margin-bottom: 40px;
    padding-left: 0;
  }

  .hero__lead {
    font-size: 1.5rem;
    padding-left: 0;
  }

  .hero-mark {
    position: static;
    width: 100%;
    transform: none;
    margin: 0 0 0 auto;
    order: 1;
  }

  .hero-mark img {
    width: 100%;
    transform: translateX(14%);
  }

  .hero__logo {
    right: -1%;
    top: 89%;
    width: 92%;
  }
}

/* Topics */

.topics {
  padding: 0 3vw;
  position: relative;
  z-index: 2;
}

.topics__title {
  font-size: 2.6rem;
  font-family: var(--en-font-set);
  margin-bottom: 24px;
  color: #fff;
}

.topics__container {
  max-width: 1200px;
  margin: 0 auto;
}

.topics__list {
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.topics__item {
  flex: 1 1 0;
  background: #fff;
  border-radius: 12px;
  padding: 34px 38px 48px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  box-shadow: 0 1px 9px 0 rgba(0, 0, 0, .05);
  position: relative;
}

.topics__date {
  font-size: 1.5rem;
  color: #888;
  margin-bottom: 28px;
  display: block;
}

.topics__link {
  color: #333;
  transition: color 0.2s;

  &:after {
    content: "";
    display: inline-block;
    width: 1.2em;
    aspect-ratio: 1;
    background: url(../img/ico_external.svg) no-repeat center/contain;
    position: absolute;
    right: 20px;
    bottom: 20px;
  }

}

.topics__title-text {
  color: #333;
  font-size: 1.6rem;
  font-weight: bold;
  word-break: break-word;

  a {
    color: rgb(42, 32, 187);

    @media (hover: hover) and (pointer: fine) {
      &:hover {
        text-decoration: underline;
      }
    }

  }

}

/* スマートフォン対応 */
@media screen and (max-width: 768px) {
  .topics {
    padding: 0 16px;
  }

  .topics__title {
    font-size: 2rem;
    margin-bottom: 16px;
  }

  .topics__container {
    max-width: 100%;
    padding: 0;
  }

  .topics__list {
    flex-direction: column;
    gap: 16px;
  }

  .topics__item {
    padding: 20px 24px 28px;
    border-radius: 10px;
    min-width: 0;
  }

  .topics__date {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }

  .topics__link:after {
    right: 14px;
    bottom: 14px;
    width: 1em;
  }

  .topics__title-text {
    font-size: 1.5rem;
  }
}


/* Products */

.products__grid {
  padding-top: 210px;
}

.product-card {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 14vh;

  &:nth-child(1) .product-card__image,
  &:nth-child(3) .product-card__image {
    order: 2;
  }

  &:nth-child(1) .product-card__content,
  &:nth-child(3) .product-card__content {
    order: 1;
  }

  &:nth-child(1) .product-card__image:before {
    right: -3%;
    top: 10%;
  }

  &:nth-child(2) .product-card__image:before {
    width: 90px;
    left: 37%;
    top: -28px;
  }

  &:nth-child(3) .product-card__image:before {
    left: 10%;
    top: 12%;
  }

}

.product-card__image {
  width: 50.5%;
  line-height: 0;
  position: relative;

  img {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
  }

  &:before {
    content: "";
    background: url(../img/butterfly_shine.png) left top / 100% auto no-repeat;
    width: 112px;
    aspect-ratio: 53 / 42;
    position: absolute;
    z-index: 1;
  }

}

.product-card__content {
  width: 44%;
}

.product-card__label {
  font-size: 1.7rem;
  font-family: var(--en-font-set);
  line-height: 1.2;
  margin-bottom: .3em;
}

.product-card__title {
  font-size: 3.2rem;
  margin-bottom: .75em;
}

.product-card__description {
  font-size: 1.7rem;
  line-height: 2;
}

/* スマートフォン対応 */
@media screen and (max-width: 768px) {
  .products__grid {
    padding-top: 100px;
  }

  .product-card {
    display: block;
    margin-bottom: 64px;
  }

  .product-card__image {
    width: 100%;
    margin-bottom: 20px;
  }

  .product-card__content {
    width: 100%;
  }

  .product-card__label {
    font-size: 1.3rem;
  }

  .product-card__title {
    font-size: 2.3em;
  }

  .product-card__description {
    font-size: 1.5rem;
  }

  .product-card {

    &:nth-child(1) .product-card__image:before {
      width: 68px;
    }

    &:nth-child(2) .product-card__image:before {
      width: 60px;
    }

    &:nth-child(3) .product-card__image:before {
      width: 68px;
    }

  }

}


/* feature */

.feature__grid {
  display: flex;
  gap: 76px;
  justify-content: space-between;
}

.feature-card {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 0;
}

.feature-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.feature-card__image {
  width: 86px;
  margin: 0;
}

.feature-card__image img {
  width: 100%;
}

.feature-card__title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.feature-card__badge {
  display: inline-block;
  background: #EA9000;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  border-radius: 99px;
  padding: 6px 20px;
  line-height: 1.2;
  position: absolute;
  right: -56px;
  top: -41px;
  z-index: 2;

  &:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 30%;
    border-style: solid;
    border-width: 10px 10px 0 0;
    border-color: #ea9000 transparent transparent;
    translate: calc(-50% - 0.4px) 100%;
    transform: skew(-25deg);
    transform-origin: top;
  }

}

.feature-card__title {
  font-size: 2.1rem;
  line-height: 1.5;
}

.feature-card__title-highlight {
  font-size: 1.4em;
  position: relative;

  &:before {
    content: "";
    display: block;
    background: url(../img/ico_up.svg) left top / 100% auto no-repeat;
    width: 55px;
    aspect-ratio: 0.9 / 1;
    position: absolute;
    left: calc(100% - 6px);
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
  }

}

.feature-card__description {
  font-size: 1.6rem;
  line-height: 2;
  font-weight: bold;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .feature__grid {
    flex-direction: column;
    gap: 60px;
  }

  .feature-card {
    width: 100%;
  }

  .feature-card__header {
    gap: 18px;
  }

  .feature-card__image {
    width: 70px;
  }

  .feature-card__badge {
    font-size: 1.4rem;
    padding: 4px 16px;
    right: -53px;
    top: -32px;
  }

  .feature-card__title {
    font-size: 1.7rem;
  }

  .feature-card__title-highlight:before {
    width: 32px;
    left: calc(100% - 2px);
  }

  .feature-card__description {
    font-size: 1.5rem;
    line-height: 1.7;
  }
}

@media screen and (max-width: 380px) {
  .feature-card__badge {
    right: -44px;
  }
}

.flowergarden {
  background: url(../img/bg_yellow_top.jpg) center top 8% / 100% auto no-repeat, linear-gradient(180deg, #EEF2F3 0%, #EEF2F3 8%, #F9E600 9%, #F9E600 85.1%, rgba(249, 230, 0, 0) 98.08%);
  padding: 160px 0 400px;
  position: relative;
  overflow: hidden;

  .section {
    position: relative;
    z-index: 1;
  }

  &:before {
    content: "";
    background: url(../img/bg_yellow_bottom.png) center top / auto 100%;
    width: 100%;
    aspect-ratio: 4 / 1;
    position: absolute;
    left: 0;
    bottom: -3%;
    z-index: 1;
  }
}

@media screen and (max-width: 768px) {
  .flowergarden {
    padding: 98px 0 160px;
    background: url(../img/bg_yellow_top.jpg) center top 9% / 100% auto no-repeat, linear-gradient(180deg, #EEF2F3 0%, #EEF2F3 9%, #F9E600 10%, #F9E600 93%, rgba(249, 230, 0, 0) 100%);
  }

  .flowergarden:before {
    width: 130%;
    aspect-ratio: 2 / 1;
    bottom: -4%;
  }
}


.flowergarden-bg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.flowergarden-bg__flower {
  position: absolute;
}

.flowergarden-bg__flower--01 {
  right: -5%;
  top: 9%;
}

.flowergarden-bg__flower--02 {
  left: -10%;
  top: 31%;
  opacity: .7;
}

.flowergarden-bg__flower--03 {
  right: -13%;
  top: 65%;
  opacity: .7;
}

.flowergarden-bg__flower--04 {
  left: -16%;
  top: 62%;
  opacity: .75;
}

.flowergarden-bg__flower--05 {
  left: -8%;
  bottom: -3%;
  opacity: .7;
}

@media screen and (max-width: 768px) {

  .flowergarden-bg__flower {
    position: absolute;
  }

  .flowergarden-bg__flower--01 {
    width: 92%;
    right: -5%;
    top: 9%;
  }

  .flowergarden-bg__flower--02 {
    width: 113%;
    left: -17%;
    top: 41%;
  }

  .flowergarden-bg__flower--03 {
    width: 128%;
    right: -15%;
    top: 68%;
  }

  .flowergarden-bg__flower--04 {
    width: 84%;
    left: -28%;
    top: 82%;
  }

  .flowergarden-bg__flower--05 {
    width: 98%;
    left: -8%;
    bottom: 0;
  }

}


/* cycle */

.learning-cycle {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}

.learning-cycle__diagram {
  width: 56%;
  order: 2;

  img {
    width: 100%;
  }
}

.learning-cycle__description {
  width: 40%;
  font-size: 1.6rem;
  order: 1;

  p {
    margin-bottom: 1.4em;
  }
}

.learning-cycle__features {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: feature-num;
  margin-top: 28px;

  & li {
    position: relative;
    padding-left: 1.9em;
    margin-bottom: 1em;
    font-size: 1.8rem;

    &::before {
      counter-increment: feature-num;
      content: counter(feature-num) ".";
      position: absolute;
      left: 0;
      top: .082em;
      font-family: var(--en-font-set);
      font-size: 1.4em;
      font-weight: bold;
      color: #dd6224;
      line-height: 1;
      transform: none;
    }
  }
}

/* スマートフォン対応 */
@media screen and (max-width: 768px) {
  .learning-cycle {
    flex-direction: column;
    align-items: flex-start;
  }

  .learning-cycle__diagram {
    width: calc(100% + 38px);
    order: 1;
    margin: 0 -24px 32px -14px;
  }

  .learning-cycle__description {
    width: 100%;
    font-size: 1.5rem;
    order: 2;
  }

  .learning-cycle__features li {
    font-size: 1.6rem;

    strong {
      display: block;
    }

  }
}



/* Company */

.company-profile {
  margin-bottom: 14vh;
}

.company-profile__vision {
  font-size: 4.2rem;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 80px;

  em {
    color: #ED852B;
  }
}

.company-profile__details {}

.company-profile__list {
  font-size: 1.7rem;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}

.company-profile__term,
.company-profile__desc {
  padding-bottom: 40px;
  border-bottom: 1px solid #D0D0D0;
  margin-bottom: 40px;
}

.company-profile__term {
  font-weight: bold;
  width: 20%;
}

.company-profile__desc {
  width: 80%;
}

/* スマートフォン対応 */
@media screen and (max-width: 768px) {
  .company-profile {
    margin-bottom: 7vh;
  }

  .company-profile__vision {
    font-size: 2.4rem;
    margin-bottom: 36px;
  }

  .company-profile__list {
    font-size: 1.6rem;
    flex-direction: column;
    gap: 0;
  }

  .company-profile__term,
  .company-profile__desc {
    width: 100%;
  }

  .company-profile__term {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 4px;
  }

  .company-profile__desc {
    padding-bottom: 18px;
    margin-bottom: 18px;
  }
}




/* team */

.team__heading {
  font-size: 2.5rem;
  color: #1F2C5C;
  max-width: 1200px;
  margin: 0 auto 48px;
}

.team-member {
  max-width: 1200px;
  margin: 0 auto 12vh;
  display: flex;
  justify-content: space-between;
  gap: 48px;
}

.team-member__figure {
  width: 35.4%;
  overflow: hidden;
  border-radius: 12px;
  line-height: 0;
  flex-shrink: 0;
  order: 2;
}

.team-member__image {
  width: 100%;
}

.team-member__info {
  display: flex;
  justify-content: space-between;
  width: 100%;
  order: 1;
}

.team-member__header {
  width: 40%;
}

.team-member__role {
  color: #777777;
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: .5em;
  position: relative;
  width: fit-content;
}

.team-member__role:after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1px;
  background-color: #939393;
  position: absolute;
  left: 110%;
  top: 50%;
}

.team-member__name {
  font-size: 2.7rem;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: .4em;
}

.team-member__position {
  font-size: 1.5rem;
}

.team-member__affiliation {
  display: inline-block;
}

.team-member__bio {
  width: 59%;
  font-size: 1.5rem;
}

.team-member__note {
  font-size: 1.5rem;
}

/* スマートフォン対応 */
@media screen and (max-width: 768px) {

  .team {
    margin-bottom: 100px;
  }

  .team__heading {
    font-size: 1.9rem;
    margin-bottom: 32px;
  }

  .team-member {
    display: block;
    margin-bottom: 48px;
  }

  .team-member__figure {
    width: 100%;
    margin-bottom: 24px;
    order: 1;
  }

  .team-member__info {
    flex-direction: column;
    width: 100%;
    order: 2;
    gap: 12px;
  }

  .team-member__header {
    width: 100%;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }

  .team-member__role {
    font-size: 1.6rem;
    margin: 0 32px 0 0;
  }

  .team-member__name {
    font-size: 2.1rem;
    margin-bottom: 0;
  }

  .team-member__position {
    width: 100%;
    font-size: 1.4rem;
    margin-top: 6px;
  }

  .team-member__bio {
    width: 100%;
    font-size: 1.4rem;
  }

  .team-member__note {
    font-size: 1.2rem;
  }
}





/* Contact box */

.contact-box {
  background-color: #fff;
  max-width: 600px;
  margin: 200px auto 0;
  border-radius: 12px;
  padding: 0 40px 48px 40px;
  text-align: center;
  font-family: var(--en-font-set);
  line-height: 1.2;
}

.contact-box__title {
  display: inline-block;
  font-size: 8.4rem;
  margin: -40px 0 32px;
}

.contact-box__email {
  font-size: 2.6rem;
  font-weight: normal;
}

.contact-box__email-link {
  color: #222;

  @media (hover: hover) {

    &:hover,
    &:focus {
      color: #ff7f32;
    }
  }

}

/* スマートフォン対応 */
@media screen and (max-width: 768px) {
  .contact-box {
    max-width: 84%;
    margin: 80px auto 0;
    padding: 0 16px 40px 16px;
  }

  .contact-box__title {
    font-size: 3.8rem;
    margin: -16px 0 20px;
  }

  .contact-box__email {
    font-size: 1.5rem;

    a {
      padding: .3em;
    }

  }
}


/* Footer */

.site-footer {
  background-color: #464646;
  margin-top: 120px;
  padding: 48px 3vw;
}

.site-footer__copyright {
  font-family: var(--en-font-set);
  color: #c6c6c6;
  font-size: 1.5rem;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .site-footer {
    margin-top: 90px;
    padding: 40px 24px;
  }

  .site-footer__inner {
    text-align: center;
  }

  .site-footer__copyright {
    font-size: 1.2rem;
  }
}