@charset "UTF-8";
html,
body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong,
sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas,
details, figcaption, figure, footer, header, hgroup, menu, nav, section,
summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}

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

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* --------------------------------------------
 * 　メディアクエリ
 * -------------------------------------------- */
/* --------------------------------------------
 * 　ホバー
 * -------------------------------------------- */
/* --------------------------------------------
 * 　セクションのパディング
 * -------------------------------------------- */
/* --------------------------------------------
 * 　シャドウ
 * -------------------------------------------- */
/* --------------------------------------------
 * 　アニメーション
 * -------------------------------------------- */
html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  height: 100vh;
  color: #222;
  line-height: 1.8;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", sans-serif;
}
body * {
  box-sizing: border-box;
}
body *::after, body *::before {
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 0.9375rem;
  }
}

#wrapper {
  margin-bottom: auto;
}

p {
  margin-bottom: 1.5em;
}
p:last-child {
  margin-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

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

ul {
  list-style: none;
}

a {
  color: #333;
  text-decoration: none;
}
@media (hover: hover) {
  a:hover {
    text-decoration: underline;
  }
}

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

.only_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .only_sp {
    display: block;
  }
}

/* --------------------------------------------
 * 　基本ブロック幅
 * -------------------------------------------- */
.blContainer {
  width: 92%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

.blContainer1020 {
  width: 92%;
  max-width: 1020px;
  margin-right: auto;
  margin-left: auto;
}

.blContainer880 {
  width: 92%;
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
}

.blContainer720 {
  width: 92%;
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}

/* --------------------------------------------
 * 　パンくず
 * -------------------------------------------- */
.breadcrumb {
  font-size: 13px;
  color: #666666;
  margin-top: 5px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    margin-bottom: 50px;
  }
}

/* --------------------------------------------
 * 　上に戻るボタン
 * -------------------------------------------- */
#goTop {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 10px;
  z-index: 9000;
  background: rgba(255, 255, 255, 0.8);
  padding: 15px 15px 12px;
  transition: all ease 0.3s;
}
#goTop.visible {
  display: block;
  -webkit-animation: gotopVisible 0.3s ease forwards;
          animation: gotopVisible 0.3s ease forwards;
}
@-webkit-keyframes gotopVisible {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes gotopVisible {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  #goTop {
    bottom: 10px;
    padding: 10px 10px 8px;
    max-width: 75px;
  }
}

/* --------------------------------------------
 * 　アニメーション
 * -------------------------------------------- */
@-webkit-keyframes fuwafuwa {
  0%, 100% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(10px);
  }
}
@keyframes fuwafuwa {
  0%, 100% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(10px);
  }
}
/* --------------------------------------------
 * 　見出し
 * -------------------------------------------- */
.secHeading {
  font-weight: bold;
}
.secHeading__main {
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 5px;
  color: #00579C;
  word-break: normal;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 1024px) {
  .secHeading__main {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .secHeading__main {
    font-size: 2rem;
  }
}
.secHeading__sub {
  font-size: 1.125rem;
}
@media screen and (max-width: 1024px) {
  .secHeading__sub {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .secHeading__sub {
    font-size: 0.9375rem;
  }
}

.secHeading_center {
  text-align: center;
}

.secHeading_white .secHeading__main {
  color: #fff;
}

.simpleHeading {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .simpleHeading {
    font-size: 2rem;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  .simpleHeading {
    font-size: 1.75rem;
    margin-bottom: 18px;
  }
}

.simpleHeading_center {
  text-align: center;
}

/* --------------------------------------------
 * 　サブページ見出し
 * -------------------------------------------- */
.subPageHeader {
  color: #fff;
  padding: 125px 0 80px;
  position: relative;
  overflow: hidden;
}
.subPageHeader::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url("../img/subPageHeaderBg.png") no-repeat right bottom, #00579C;
  transform: scale(1.15);
}
@media screen and (max-width: 1024px) {
  .subPageHeader {
    padding: 80px 0 45px;
    background: url("../img/subPageHeaderBg.png") no-repeat right -140px center, #00579C;
  }
}
@media screen and (max-width: 767px) {
  .subPageHeader {
    padding: 80px 0 35px;
  }
}
.subPageHeader__title {
  font-family: "Roboto", sans-serif;
  font-size: 4.1875rem;
  font-weight: 900;
  line-height: 1.2;
}
@media screen and (max-width: 1024px) {
  .subPageHeader__title {
    font-size: 2.625rem;
  }
}
.subPageHeader__subTitle {
  font-size: 1.0625rem;
}
@media screen and (max-width: 1024px) {
  .subPageHeader__subTitle {
    font-size: 0.9375rem;
  }
}

/* --------------------------------------------
 * 　ボタン
 * -------------------------------------------- */
.button {
  color: #128DC8;
  font-size: 14px;
  position: relative;
  padding: 15px 30px 15px 20px;
  position: relative;
  z-index: 2;
}
.button::before {
  content: "";
  width: 53px;
  height: 53px;
  background: #CCE9F7;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: -1;
  transition: all ease 0.2s;
}
.button::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 0;
  bottom: 13px;
  height: 9px;
  background: url("../img/button_arrow.svg") no-repeat;
}
@media (hover: hover) {
  .button:hover {
    text-decoration: none;
  }
  .button:hover::before {
    transform: translate(calc(100% + 20px), -50%);
  }
}

.buttonSqure {
  font-family: "Roboto", sans-serif;
  display: inline-block;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  border: 1px solid #00579C;
  padding: 0.95em 3em 0.8em 2.75em;
  position: relative;
  transition: all ease 0.3s;
}
@media screen and (max-width: 1024px) {
  .buttonSqure {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .buttonSqure {
    font-size: 2rem;
  }
}
.buttonSqure::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  width: 50px;
  height: 8px;
  background: url("../img/buttonSqure_arrow.svg") no-repeat center;
  transition: all ease 0.3s;
}
@media (hover: hover) {
  .buttonSqure:hover {
    background: #CCE9F7;
    text-decoration: none;
  }
  .buttonSqure:hover::after {
    right: 10px;
  }
}

.buttonCircleArrow {
  font-size: 1.625rem;
  font-weight: 500;
  display: inline-block;
  position: relative;
  padding-left: 33px;
  color: #00579C;
}
@media screen and (max-width: 1024px) {
  .buttonCircleArrow {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 767px) {
  .buttonCircleArrow {
    font-size: 1.125rem;
    padding-left: 26px;
  }
}
@media (hover: hover) {
  .buttonCircleArrow:hover {
    text-decoration: none;
  }
}
.buttonCircleArrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(calc(-50% + 2px));
  width: 26px;
  height: 26px;
  background: #222;
  -webkit-mask: url("../img/icon/icon-circleArrow-right.svg") no-repeat center/contain;
          mask: url("../img/icon/icon-circleArrow-right.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .buttonCircleArrow::before {
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
  }
}
.buttonCircleArrow_white {
  color: #fff;
}
.buttonCircleArrow_white::before {
  background: #fff;
}

/* --------------------------------------------
 * 　表組み
 * -------------------------------------------- */
.tableSimple__header {
  padding: 15px 15px 12px;
  border: 1px solid #ccc;
  font-weight: bold;
}
.tableSimple__data {
  padding: 15px 15px 12px;
  border: 1px solid #ccc;
  font-weight: normal;
}

/* --------------------------------------------
 * 　記事デザイン
 * -------------------------------------------- */
.article__heading {
  margin-bottom: 25px;
}
.article h1 {
  font-size: 1.625rem;
  font-weight: bold;
  color: #00579C;
}
@media screen and (max-width: 767px) {
  .article h1 {
    font-size: 1.4375rem;
  }
}
.article h2 {
  font-size: 1.5rem;
  margin: 45px 0 25px;
  border-bottom: 3px solid #00579C;
}
@media screen and (max-width: 767px) {
  .article h2 {
    font-size: 1.375rem;
  }
}
.article h3 {
  font-size: 1.25rem;
  margin: 40px 0 20px;
  border-left: 5px solid #00579C;
  padding: 3px 0 2px 10px;
}
@media screen and (max-width: 767px) {
  .article h3 {
    font-size: 1.125rem;
  }
}
.article h4 {
  margin: 25px 0 10px;
  border-bottom: 1px solid #ddd;
}
.article p {
  margin: 0 0 15px;
}
.article a {
  text-decoration: underline;
  color: #00579C;
}
@media (hover: hover) {
  .article a:hover {
    text-decoration: none;
  }
}
.article table {
  width: 100%;
  margin: 20px 0 20px;
}
.article table td {
  padding: 5px 5px 2px;
  border: 1px solid #ddd;
}
.article ul, .article ol {
  margin: 20px 0 20px;
}
.article ul li {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 7px;
}
.article ol li {
  list-style: decimal;
  margin-left: 25px;
  margin-bottom: 7px;
}
.article figure {
  margin: 20px 0 20px;
}
.article figure figcaption {
  font-size: 13px;
  font-style: italic;
  color: #888;
  text-align: center;
  margin-top: 0;
}
.article blockquote {
  background: #F0F4F5;
  padding: 30px 30px 25px;
}
.article blockquote p:last-child {
  margin-bottom: 0;
}
.article img {
  margin: 20px 0 20px;
}
.article .wp-caption {
  font-size: 13px;
  color: #555;
}

/* --------------------------------------------
 * 　ページネーション
 * -------------------------------------------- */
.navigation.pagination {
  margin-top: 45px;
  text-align: center;
}
.navigation.pagination .nav-links .prev {
  border: none !important;
}
.navigation.pagination .nav-links .next {
  border: none !important;
}
.navigation.pagination .nav-links .current {
  padding: 8px 11px;
  background: #00579C;
  border: 1px solid #00579C;
  border-radius: 3px;
  color: #ffffff;
}
.navigation.pagination .nav-links a {
  padding: 8px 11px;
  border: 1px solid #00579C;
  border-radius: 3px;
}
@media (hover: hover) {
  .navigation.pagination .nav-links a:hover {
    background: #00579C;
    border: 1px solid #00579C;
    color: #ffffff;
    text-decoration: none;
  }
}

/*  
Theme Name:コースタルリンク
Version:2022.11
Author:
*/
/* --------------------------------------------
 * 　ヘッダー
 * -------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 9999;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  padding: 16px 30px 18px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 0 0 10px 10px;
  width: 92%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .header {
    width: calc(100% - 40px);
    position: absolute;
    left: 20px;
    transform: none;
    padding: 14px 16px 18px;
  }
}
.header__logo {
  flex: 0 1 180px;
  margin-right: auto;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .header__logo {
    flex: 0 1 150px;
  }
}
.header__menuWrapper {
  flex: 0 0 auto;
  margin-left: 45px;
}
@media screen and (max-width: 767px) {
  .header__menuWrapper {
    display: none;
  }
}
.header__spMenuWrapper {
  transform: translateX(-100vw);
  transition: all ease 0.1s;
  position: fixed;
  z-index: 8888;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  padding: 15px 3% 40px;
  overflow: auto;
}
.header__menuTop {
  flex: 0 1 auto;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 5px;
}
@media screen and (max-width: 1200px) {
  .header__menuTop {
    margin-left: 0;
  }
}
.header__menuBottom {
  flex: 0 1 auto;
  margin-left: 30px;
}
@media screen and (max-width: 1200px) {
  .header__menuBottom {
    margin-left: 0;
  }
}

.hamburger {
  display: none;
  width: 60px;
  height: 52px;
  position: fixed;
  top: 3px;
  right: 20px;
  z-index: 10000;
}
@media screen and (max-width: 767px) {
  .hamburger {
    display: block;
  }
}
.hamburger span {
  content: "";
  position: absolute;
  top: 50%;
  left: 9px;
  transform: translateY(-50%);
  width: 42px;
  height: 3px;
  border-radius: 2px;
  background: #00579C;
}
.hamburger span::before {
  content: "";
  width: 100%;
  height: 3px;
  background: #00579C;
  border-radius: 2px;
  position: absolute;
  top: 10px;
}
.hamburger span::after {
  content: "";
  width: 100%;
  height: 3px;
  background: #00579C;
  border-radius: 2px;
  position: absolute;
  bottom: 10px;
}

#menuOpen:checked ~ .hamburger span {
  background: transparent;
}
#menuOpen:checked ~ .hamburger span::before {
  transform: rotate(45deg);
  top: 0;
}
#menuOpen:checked ~ .hamburger span::after {
  transform: rotate(-45deg);
  bottom: 0;
}

#menuOpen {
  position: absolute;
  top: -300px;
}

#menuOpen:checked ~ .header__spMenuWrapper {
  display: none;
  transform: translateX(0);
}
@media screen and (max-width: 767px) {
  #menuOpen:checked ~ .header__spMenuWrapper {
    display: block;
  }
}

#menuOpen:focus-visible ~ .hamburger {
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.3);
}

.mainMenu__list {
  display: flex;
  gap: 20px;
  align-items: center;
}
.mainMenu__link {
  font-weight: 500;
  font-size: 0.9375rem;
}
@media (hover: hover) {
  .mainMenu__link:hover {
    text-decoration: none;
  }
}

.subMenu__list {
  display: flex;
  gap: 20px;
  align-items: center;
}
.subMenu__link {
  font-weight: 500;
  font-size: 0.9375rem;
}
@media (hover: hover) {
  .subMenu__link:hover {
    text-decoration: none;
  }
}
.subMenu__link.iconContact {
  padding-left: 20px;
  position: relative;
}
.subMenu__link.iconContact::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background: #222;
  -webkit-mask: url("../img/icon/icon-speechBubble.svg") no-repeat center/contain;
          mask: url("../img/icon/icon-speechBubble.svg") no-repeat center/contain;
}

.languageSwitcher {
  display: flex;
  gap: 5px;
}

.languageButton {
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.18);
  font-family: "Noto Sans JP";
  font-size: 0.75rem;
  font-weight: 400;
  padding: 0.1em 0.8em 0.15em;
}
@media (hover: hover) {
  .languageButton:hover {
    text-decoration: none;
    color: #fff;
    background: #00579C;
    cursor: pointer;
  }
}
.languageButton._active {
  color: #fff;
  background: #00579C;
}

.spMainMenu__list {
  margin-top: 20px;
  margin-bottom: 40px;
  padding: 0 20px;
}
.spMainMenu__item {
  font-size: 1.125rem;
  padding: 22px 0 5px;
  border-bottom: 1px dotted #C8D3E2;
}
.spMainMenu__link {
  display: block;
  font-weight: bold;
  color: #00579C;
}
.spMainMenu__language {
  display: flex;
  gap: 10px;
  justify-content: center;
}

/* --------------------------------------------
 * 　キービジュアル
 * -------------------------------------------- */
.keyVisual {
  padding-top: 175px;
  padding-bottom: 140px;
  overflow: hidden;
  position: relative;
  background: transparent;
}
.keyVisual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: url("../img/keyVisual_bg.jpg") no-repeat bottom center/cover;
  opacity: 0;
  -webkit-animation: fadeIn 1.5s ease-out 0.2s forwards;
          animation: fadeIn 1.5s ease-out 0.2s forwards;
}
@media screen and (max-width: 767px) {
  .keyVisual::before {
    background: url("../img/keyVisual_bg_sp.jpg") no-repeat bottom center/cover;
  }
}
@media screen and (max-width: 767px) {
  .keyVisual {
    padding-top: 130px;
    padding-bottom: 85px;
  }
}
.keyVisual__textArea {
  display: flex;
  align-items: center;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .keyVisual__textArea {
    display: block;
  }
}
.keyVisual__copy {
  flex: 1 1 50%;
  font-weight: 700;
  text-align: center;
  transform: translateY(-60%);
  padding-right: 20px;
  padding-left: 20px;
  container-name: container_keyVisual;
  container-type: inline-size;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 1024px) {
  .keyVisual__copy {
    padding-right: 10px;
    padding-left: 10px;
    transform: translateY(0);
    padding-left: calc(10px + 1em);
    margin-bottom: 50px;
  }
}
.keyVisual__copyLine1 {
  font-size: clamp(1.5rem, 5.5cqi, 2rem);
  letter-spacing: 0.4em;
  padding-left: 0.5em;
  opacity: 0;
  transform: translateY(30px);
  -webkit-animation: fadeInUp 1.2s ease-out 0.5s forwards;
          animation: fadeInUp 1.2s ease-out 0.5s forwards;
}
.keyVisual__copyLine1_en {
  letter-spacing: 0;
}
.keyVisual__copyLine2 {
  font-size: clamp(1.5rem, 5.5cqi, 2rem);
  letter-spacing: 0.15em;
  opacity: 0;
  transform: translateY(30px);
  -webkit-animation: fadeInUp 1.2s ease-out 0.9s forwards;
          animation: fadeInUp 1.2s ease-out 0.9s forwards;
}
.keyVisual__copyLine2_en {
  letter-spacing: 0;
}
.keyVisual__messsage {
  flex: 1 1 50%;
  font-size: 1.1875rem;
  font-weight: 500;
  line-height: 2.4;
}
@media screen and (max-width: 1024px) {
  .keyVisual__messsage {
    text-align: center;
    font-size: 0.875rem;
    line-height: 2.2;
  }
}
.keyVisual__messsage p {
  opacity: 0;
  transform: translateY(20px);
  -webkit-animation: fadeInUp 1.2s ease-out forwards;
          animation: fadeInUp 1.2s ease-out forwards;
}
.keyVisual__messsage p:nth-child(1) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.keyVisual__messsage p:nth-child(2) {
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}
.keyVisual__messsage p:nth-child(3) {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}
.keyVisual__messsage p:nth-child(4) {
  -webkit-animation-delay: 1.9s;
          animation-delay: 1.9s;
}
.keyVisual__messsage p:nth-child(5) {
  -webkit-animation-delay: 2.2s;
          animation-delay: 2.2s;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* --------------------------------------------
 * 　FT What We Do / Mission
 * -------------------------------------------- */
.lyBlock {
  display: flex;
}
@media screen and (max-width: 767px) {
  .lyBlock {
    display: block;
  }
}
.lyBlock__heading {
  margin-bottom: 40px;
}
.lyBlock__textArea {
  flex: 1 1 550px;
  margin-right: 90px;
}
@media screen and (max-width: 1024px) {
  .lyBlock__textArea {
    font-size: 1.75rem;
    flex: 1 1 605px;
    margin-right: 35px;
  }
}
.lyBlock__imgArea {
  flex: 1 1 560px;
  padding-right: 30px;
}
@media screen and (max-width: 1024px) {
  .lyBlock__imgArea {
    padding-right: 0;
    margin-top: 30px;
  }
}
.lyBlock__title {
  font-size: 2.125rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 25px;
}
@media screen and (max-width: 1024px) {
  .lyBlock__title {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .lyBlock__title {
    font-size: 1.5rem;
  }
}
.lyBlock__titleSmall {
  font-size: 0.9375rem;
}
.lyBlock__detail {
  font-size: 0.9375rem;
  font-weight: 500;
}

.lyBlock_reverse {
  flex-direction: row-reverse;
}
.lyBlock_reverse .lyBlock__textArea {
  margin-right: 0;
  margin-left: 90px;
}
@media screen and (max-width: 1200px) {
  .lyBlock_reverse .lyBlock__textArea {
    margin-left: 35px;
  }
}
.lyBlock_reverse .lyBlock__imgArea {
  padding-right: 0;
  padding-left: 50px;
}
@media screen and (max-width: 1200px) {
  .lyBlock_reverse .lyBlock__imgArea {
    padding-left: 10px;
  }
}

.wwd {
  padding-top: 120px;
  padding-bottom: 120px;
  background: url("../img/bg-graph-paper.jpg");
}
@media screen and (max-width: 767px) {
  .wwd {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

.wwa {
  display: flex;
  background: linear-gradient(180deg, rgba(55, 121, 171, 0.9) 0%, rgba(37, 84, 145, 0.9) 100%);
}
@media screen and (max-width: 767px) {
  .wwa {
    display: block;
  }
}
.wwa__inner {
  display: flex;
  align-items: center;
  gap: 35px;
  width: 92%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .wwa__inner {
    width: 96%;
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .wwa__inner {
    display: block;
    width: 100%;
    margin-left: 0;
    padding-left: 4%;
    padding-right: 4%;
  }
}
.wwa .secHeading__main {
  color: #fff;
}
.wwa__textArea {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  line-height: 2.2;
  padding-top: 115px;
  padding-bottom: 115px;
}
@media screen and (max-width: 1024px) {
  .wwa__textArea {
    padding-top: 85px;
    padding-bottom: 85px;
  }
}
@media screen and (max-width: 767px) {
  .wwa__textArea {
    padding-top: 70px;
    padding-bottom: 20px;
  }
}
.wwa__imgArea {
  flex: 1 1 calc(50% - 35px);
  height: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.wwa__heading {
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .wwa__heading {
    margin-bottom: 35px;
  }
}
.wwa__title {
  font-size: 1.875rem;
  margin-bottom: 30px;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .wwa__title {
    font-size: 1.5rem;
  }
}
.wwa__detail {
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .wwa__detail {
    font-size: 0.9375rem;
  }
  .wwa__detail br {
    display: none;
  }
}
.wwa__button {
  margin-top: 24px;
}
.wwa__platformBgImg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.5;
  -webkit-animation: platformBgImg 10s linear forwards;
          animation: platformBgImg 10s linear forwards;
}
@-webkit-keyframes platformBgImg {
  0% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes platformBgImg {
  0% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
.wwa__platformImg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* --------------------------------------------
 * 　FT Service
 * -------------------------------------------- */
.service {
  padding-top: 90px;
  padding-bottom: 90px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .service {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.service::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 30%;
  background: #EEF2F5;
}
.service__inner {
  width: 1320px;
  max-width: 92%;
  margin-right: auto;
  margin-left: auto;
  padding: 60px;
  background: url("../img/service_img_bg.jpg") no-repeat center/cover;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .service__inner {
    padding: 50px 45px;
  }
}
@media screen and (max-width: 767px) {
  .service__inner {
    padding: 30px;
    max-width: 96%;
    margin-right: 0;
  }
}
.service__heading {
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .service__heading {
    margin-bottom: 20px;
  }
}
.service__title {
  display: inline-block;
  padding: 0.1em 0.2em;
  background: #fff;
  color: #00579C;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .service__title {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .service__title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
}
.service__description {
  font-weight: 500;
  line-height: 2;
  margin-bottom: 40px;
  max-width: 550px;
}
@media screen and (max-width: 767px) {
  .service__description {
    margin-bottom: 25px;
  }
}
.service__buttons {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

/* --------------------------------------------
 * 　FT News　Recruit
 * -------------------------------------------- */
.newsRecruitWrapper {
  padding-top: 160px;
  padding-bottom: 90px;
  display: flex;
  margin-left: calc(50% - 600px);
}
@media screen and (max-width: 767px) {
  .newsRecruitWrapper {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 1240px) {
  .newsRecruitWrapper {
    margin-left: 3%;
  }
}
@media screen and (max-width: 767px) {
  .newsRecruitWrapper {
    display: block;
    margin-left: 0;
    padding-bottom: 0;
  }
}

.newsListWrapper {
  flex: 1 1 600px;
  margin-right: 50px;
  padding-bottom: 50px;
}
@media screen and (max-width: 1200px) {
  .newsListWrapper {
    flex: 1 1 50%;
    margin-right: 30px;
  }
}
@media screen and (max-width: 767px) {
  .newsListWrapper {
    margin-right: 0;
    padding-right: 4%;
    padding-left: 4%;
  }
}
.newsListWrapper__head {
  display: flex;
  align-items: center;
}
.newsListWrapper__heading {
  flex: 1 1 auto;
  margin-right: auto;
}
.newsListWrapper__toList {
  flex: 0 1 auto;
  color: #128DC8;
  border-bottom: 1px solid #128DC8;
}
@media (hover: hover) {
  .newsListWrapper__toList:hover {
    text-decoration: none;
  }
}

.recruitInvestors {
  flex: 1 1 calc(100% - 650px);
  background: #F0F4F5;
  padding: 55px;
  margin-top: -40px;
}
@media screen and (max-width: 1200px) {
  .recruitInvestors {
    flex: 1 1 50%;
  }
}
@media screen and (max-width: 767px) {
  .recruitInvestors {
    background: #F0F4F5;
    margin-top: 0;
    box-shadow: none;
    padding-left: 0;
    padding-right: 0;
  }
}
.recruitInvestors__inner {
  height: 100%;
  padding-right: 4%;
  padding-left: 4%;
}

.forInvestors {
  margin-bottom: 65px;
}
.forInvestors__heading {
  margin-bottom: 15px;
}
.forInvestors__button {
  align-self: flex-start;
}

.recruit__heading {
  margin-bottom: 30px;
}
.recruit__title {
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: auto;
}
@media screen and (max-width: 1200px) {
  .recruit__title br {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .recruit__title {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .recruit__title {
    font-size: 1.5rem;
  }
}
.recruit__button {
  margin-top: 30px;
  align-self: flex-start;
}

.newsList__item {
  border-bottom: 1px dotted #707070;
  font-size: 0.9375rem;
}
.newsList__link {
  display: flex;
  padding: 20px 0 10px;
}
@media (hover: hover) {
  .newsList__link:hover {
    text-decoration: none;
  }
}
@media screen and (max-width: 767px) {
  .newsList__link {
    display: block;
    padding: 13px 0 6px;
  }
}
.newsList a.newsList__link .newsList__title {
  color: #128DC8;
}
@media (hover: hover) {
  .newsList a.newsList__link:hover .newsList__title {
    text-decoration: underline;
  }
}
.newsList__date {
  flex: 0 0 120px;
}
.newsList__title {
  flex: 1 1 100%;
}

/* --------------------------------------------
 * 　フッター
 * -------------------------------------------- */
@media screen and (max-width: 767px) {
  .home .footer {
    margin-top: 0;
  }
}

.footer {
  color: #fff;
  background: #1F3A54;
  padding: 60px 0 10px;
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: 50px;
  }
}
.footer__top {
  margin-bottom: 90px;
  display: flex;
}
@media screen and (max-width: 767px) {
  .footer__top {
    display: block;
    margin-bottom: 65px;
  }
}
.footer__logoArea {
  flex: 0 1 auto;
  margin-right: 140px;
}
@media screen and (max-width: 1200px) {
  .footer__logoArea {
    margin-right: 120px;
  }
}
@media screen and (max-width: 1024px) {
  .footer__logoArea {
    margin-right: 30px;
  }
}
@media screen and (max-width: 767px) {
  .footer__logoArea {
    margin-right: 0;
    margin-bottom: 50px;
  }
}
.footer__logo {
  margin-bottom: 15px;
  width: 65%;
}
.footer__companyName {
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 9px;
}
@media screen and (max-width: 767px) {
  .footer__companyName {
    font-size: 0.9375rem;
  }
}
.footer__address {
  font-size: 0.8125rem;
  line-height: 1.5;
}
.footer__menuArea {
  flex: 0 1 auto;
  margin-right: auto;
  display: flex;
}
@media screen and (max-width: 767px) {
  .footer__menuArea {
    display: block;
  }
}
.footer__menu {
  flex: 0 1 auto;
  margin-right: 120px;
  margin-bottom: -25px;
}
.footer__menu:last-child {
  margin-right: 0;
}
@media screen and (max-width: 1200px) {
  .footer__menu {
    margin-right: 100px;
  }
}
@media screen and (max-width: 1024px) {
  .footer__menu {
    margin-right: 25px;
  }
}
@media screen and (max-width: 767px) {
  .footer__menu {
    margin-right: 0;
    margin-bottom: 0;
  }
}
.footer__menuItem {
  margin-bottom: 25px;
}
.footer__menuLink {
  display: flex;
  align-items: flex-end;
  color: #fff;
}
@media (hover: hover) {
  .footer__menuLink:hover {
    text-decoration: none;
  }
  .footer__menuLink:hover .footer__menuMain {
    text-decoration: underline;
  }
}
.footer__menuMain {
  font-size: 1.25rem;
  margin-right: 13px;
  line-height: 1;
  font-weight: 300;
}
@media screen and (max-width: 1024px) {
  .footer__menuMain {
    font-size: 1rem;
  }
}
.footer__menuSub {
  font-size: 0.75rem;
  color: #6d8394;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}
@media screen and (max-width: 1024px) {
  .footer__menuSub {
    font-size: 0.6875rem;
  }
}
.footer__others {
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 1200px) {
  .footer__others {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .footer__others {
    margin-top: 60px;
  }
}
.footer__langArea {
  flex: 0 1 auto;
  margin-left: 20px;
}
.footer__langArea a {
  color: #fff;
}
@media (hover: hover) {
  .footer__langArea:hover {
    cursor: pointer;
  }
}
@media screen and (max-width: 767px) {
  .footer__langArea {
    margin-left: 0;
    margin-top: 20px;
  }
}
.footer__bottom {
  display: flex;
  align-items: center;
}
.footer__privacy {
  margin-right: auto;
  color: #fff;
  font-size: 0.875rem;
}
.footer__copyRight {
  font-size: 0.875rem;
}

.snsList {
  display: flex;
  gap: 15px;
}

/* --------------------------------------------
 * 　サブ　Service
 * -------------------------------------------- */
.serviceIntro__heading {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .serviceIntro__heading {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .serviceIntro__heading {
    font-size: 1.5rem;
  }
}
.serviceIntro__line {
  display: block;
  width: 87px;
  height: 4px;
  background: #00579C;
  margin: 30px 0 35px;
}
.serviceIntro__descripiton {
  max-width: 720px;
  margin-bottom: 30px !important;
}
.serviceIntro__img {
  margin-left: calc(50% - 600px);
}
@media screen and (max-width: 1240px) {
  .serviceIntro__img {
    margin-left: 4%;
  }
}
.serviceIntro__img img {
  width: 100%;
}

.aboutProduct {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .aboutProduct {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.aboutProduct__sectHeading {
  text-align: center;
  position: relative;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .aboutProduct__sectHeading {
    margin-bottom: 60px;
  }
}
.aboutProduct__sectHeading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: -1;
  height: 1px;
  background: #00579C;
}
.aboutProduct__sectHeadingInner {
  background: #fff;
  padding-right: 40px;
  padding-left: 40px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .aboutProduct__sectHeadingInner {
    padding-right: 20px;
    padding-left: 20px;
    max-width: 270px;
  }
}
.aboutProduct__subHeading {
  font-size: 1.0625rem;
  margin-bottom: 3px;
  color: #00579C;
}
@media screen and (max-width: 767px) {
  .aboutProduct__subHeading {
    font-size: 0.9375rem;
  }
}
.aboutProduct__article {
  display: flex;
  align-items: center;
  margin-bottom: 55px;
}
@media screen and (max-width: 767px) {
  .aboutProduct__article {
    display: block;
    margin-bottom: 35px;
  }
}
.aboutProduct__header {
  flex: 1 1 410px;
  margin-right: 60px;
  font-size: 2.125rem;
  font-weight: 500;
  line-height: 1.5;
  padding-left: 30px;
  position: relative;
}
.aboutProduct__header::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 147px;
  height: calc(100% + 50px);
  border-radius: 30px;
  background: #F0F4F5;
  z-index: -1;
  transform: translateY(-50%);
  -webkit-animation: fuwafuwaAboutProduct 8s infinite alternate ease-in-out;
          animation: fuwafuwaAboutProduct 8s infinite alternate ease-in-out;
}
@-webkit-keyframes fuwafuwaAboutProduct {
  0%, 100% {
    transform: translateY(-55%);
  }
  50% {
    transform: translateY(-45%);
  }
}
@keyframes fuwafuwaAboutProduct {
  0%, 100% {
    transform: translateY(-55%);
  }
  50% {
    transform: translateY(-45%);
  }
}
@media screen and (max-width: 1200px) {
  .aboutProduct__header br {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .aboutProduct__header {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .aboutProduct__header {
    font-size: 1.5rem;
    margin-right: 0;
    margin-bottom: 50px;
  }
  .aboutProduct__header br {
    display: block;
  }
}
.aboutProduct__body {
  flex: 1 1 730px;
}
.aboutProduct__title {
  font-size: 1.375rem;
  font-weight: bold;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .aboutProduct__title {
    font-size: 1.125rem;
  }
}
.aboutProduct__img img {
  width: 100%;
}

.app {
  padding-top: 0;
  padding-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .app {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.app__heading {
  margin-bottom: 55px;
}
@media screen and (max-width: 767px) {
  .app__heading {
    text-align: center;
    margin-bottom: 25px;
  }
}
.app__list {
  display: flex;
}
@media screen and (max-width: 767px) {
  .app__list {
    display: block;
  }
}
.app__item {
  flex: 1 1 33.33333%;
  padding-right: 25px;
  padding-left: 25px;
  text-align: center;
  border-right: 1px dotted #C3C3C3;
}
.app__item:last-child {
  border-right: none;
}
@media screen and (max-width: 767px) {
  .app__item {
    border-right: none;
    border-bottom: 1px dotted #C3C3C3;
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
  .app__item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
.app__img {
  margin-bottom: 30px;
}
.app__term {
  margin-bottom: 15px;
}

.businessCase {
  padding-top: 0;
  padding-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .businessCase {
    padding-top: 50px;
    padding-bottom: 30px;
  }
}
.businessCase__heading {
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .businessCase__heading {
    text-align: center;
  }
}
.businessCase__block {
  background: #F1F6F7;
}

.caseBlock__header {
  display: flex;
  align-items: center;
  padding: 30px 0;
  position: relative;
}
.caseBlock__header::after {
  content: "";
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  border-right: 50px solid transparent;
  border-left: 50px solid transparent;
  border-top: 32px solid #F1F6F7;
}
@media screen and (max-width: 767px) {
  .caseBlock__header {
    display: block;
  }
}
.caseBlock__numberWrapper {
  display: flex;
  align-items: flex-end;
  flex: 0 0 auto;
  margin-right: 110px;
}
@media screen and (max-width: 1024px) {
  .caseBlock__numberWrapper {
    margin-right: 65px;
  }
}
.caseBlock__numberText {
  font-size: 1.0625rem;
  transform: translateY(-10px);
  margin-right: 5px;
}
.caseBlock__number {
  font-size: 7.5rem;
  font-weight: bold;
  line-height: 1;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 1024px) {
  .caseBlock__number {
    font-size: 5.75rem;
  }
}
@media screen and (max-width: 767px) {
  .caseBlock__number {
    font-size: 4.375rem;
  }
}
.caseBlock__headerText {
  flex: 1 1 auto;
}
.caseBlock__heading {
  font-size: 1.75rem;
  color: #00579C;
  border-bottom: 4px solid #00579C;
  margin-bottom: 15px;
  line-height: 1.4;
  padding-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .caseBlock__heading {
    font-size: 1.5rem;
  }
}
.caseBlock__body {
  background: #fff;
  padding: 55px 0;
}
.caseBlock__bodyInner {
  display: flex;
}
@media screen and (max-width: 767px) {
  .caseBlock__bodyInner {
    display: block;
  }
}
.caseBlock__before {
  flex: 1 1 50%;
  border-radius: 10px 0 0 10px;
  background: #F0F0F0;
  padding: 35px;
}
@media screen and (max-width: 767px) {
  .caseBlock__before {
    border-radius: 10px 10px 0 0;
    padding: 25px;
  }
}
.caseBlock__after {
  flex: 1 1 50%;
  border-radius: 0 10px 10px 0;
  background: #CCE9F7;
  padding: 35px;
}
@media screen and (max-width: 767px) {
  .caseBlock__after {
    border-radius: 0 0 10px 10px;
    padding: 25px;
  }
}
.caseBlock__after .caseBlock__title {
  color: #00579C;
}
.caseBlock__after .caseBlock__title::after {
  background: #00579C;
}
.caseBlock__title {
  font-family: "Roboto", sans-serif;
  font-size: 2.25rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}
.caseBlock__title::after {
  content: "";
  width: 38px;
  height: 3px;
  background: #888888;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .caseBlock__title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}
.caseBlock__item {
  display: flex;
  font-size: 1.125rem;
  line-height: 1.5;
  border-bottom: 1px dotted #707070;
  padding: 20px 0 6px;
}
.caseBlock__item::before {
  content: "";
  display: block;
  width: 19px;
  height: 19px;
  min-width: 19px;
  border-radius: 50%;
  border: 4px solid #128DC8;
  background: #fff;
  margin-right: 8px;
  transform: translateY(6px);
}

.toContact {
  text-align: center;
}

/* --------------------------------------------
 * 　投資家の皆様へ
 * -------------------------------------------- */
.documentRequest {
  background: #f8f8f8;
  padding: 20px;
  margin-bottom: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .documentRequest {
    display: block;
    text-align: center;
  }
}
.documentRequest__text {
  font-size: 0.9375rem;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .documentRequest__text {
    margin-bottom: 15px;
  }
}
.documentRequest__btn {
  flex: 0 0 auto;
}

.docRequestBtn {
  display: inline-block;
  background: #128DC8;
  color: #fff;
  padding: 1.2em 2em 1em;
  border-radius: 3px;
  border: 1px solid #128DC8;
  transition: all ease 0.15s;
  line-height: 1.4;
  text-align: center;
}
.docRequestBtn__subText {
  font-size: 0.875rem;
}
.docRequestBtn__mainText {
  font-size: 1.125rem;
  font-weight: bold;
}
@media (hover: hover) {
  .docRequestBtn:hover {
    background: #fff;
    color: #128DC8;
    text-decoration: none;
  }
}

.investorsLead {
  display: flex;
  margin-left: calc(50% - 600px);
  margin-bottom: 80px;
}
@media screen and (max-width: 1240px) {
  .investorsLead {
    margin-left: 4%;
  }
}
@media screen and (max-width: 767px) {
  .investorsLead {
    display: block;
    margin-right: 4%;
  }
}
.investorsLead__textArea {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .investorsLead__textArea {
    display: block;
  }
}
.investorsLead__subTitle {
  font-size: 1.75rem;
  margin-bottom: 10px;
}
.investorsLead__mainTitle {
  font-size: 2.25rem;
  color: #fff;
  background: #333;
  padding: 0.1em 0.3em;
  margin-bottom: 30px;
  white-space: nowrap;
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  .investorsLead__mainTitle {
    font-size: 1.825rem;
  }
}
@media screen and (max-width: 767px) {
  .investorsLead__mainTitle {
    font-size: 1.375rem;
  }
}
.investorsLead__mainTitle_en {
  white-space: unset;
}
.investorsLead__text {
  max-width: 455px;
}
@media screen and (max-width: 1024px) {
  .investorsLead__text {
    max-width: 370px;
  }
}
@media screen and (max-width: 767px) {
  .investorsLead__text {
    max-width: 100%;
    margin-bottom: 20px !important;
  }
}
.investorsLead__text_en {
  padding-right: 80px;
  width: 600px;
  max-width: 600px;
}
@media screen and (max-width: 1024px) {
  .investorsLead__text_en {
    max-width: 420px;
  }
}
@media screen and (max-width: 767px) {
  .investorsLead__text_en {
    max-width: 100%;
    padding-right: 0;
    margin-bottom: 20px !important;
  }
}
.investorsLead__imgArea {
  flex: 1 1 100%;
  position: relative;
  left: -50px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .investorsLead__imgArea {
    left: 0;
  }
}
.investorsLead__imgArea img {
  width: calc(100% + 50px);
  max-width: calc(100% + 50px);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .investorsLead__imgArea img {
    width: 104.347826087%;
    max-width: calc(100% + 50px);
  }
}

.problem {
  padding-top: 70px;
  padding-bottom: 30px;
  background: #F0F4F5;
}
.problem__heading {
  margin-bottom: 50px;
}
.problem__textArea {
  display: flex;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .problem__textArea {
    display: block;
    margin-bottom: 50px;
  }
}
.problem__head {
  flex: 1 1 460px;
  margin-right: 80px;
}
@media screen and (max-width: 1024px) {
  .problem__head {
    margin-right: 40px;
  }
}
@media screen and (max-width: 767px) {
  .problem__head {
    margin-right: 0;
  }
}
.problem__title {
  margin-bottom: 20px;
}
.problem__titleHeading {
  background: #00579C;
  color: #fff;
  font-size: 1.625rem;
  padding: 0.15em 0.4em;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .problem__titleHeading {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .problem__titleHeading {
    font-size: 1.3125rem;
  }
}
.problem__titleContent {
  flex: 1 1 auto;
  font-size: 1.5rem;
  background: #fff;
  padding: 0.15em 0.4em;
}
@media screen and (max-width: 1024px) {
  .problem__titleContent {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 767px) {
  .problem__titleContent {
    font-size: 1.25rem;
  }
}
.problem__titleContent_en {
  line-height: 1.4;
  font-size: 1.5rem;
  white-space: unset;
}
@media screen and (max-width: 767px) {
  .problem__titleContent_en {
    font-size: 1.25rem;
  }
}
.problem__titleBottom {
  margin-bottom: 20px !important;
}
.problem__body {
  flex: 1 1 660px;
}
.problem__item {
  font-size: 1.5rem;
  line-height: 1.4;
  padding: 13px 2px 8px;
  border-bottom: 1px dotted #707070;
  display: flex;
}
@media screen and (max-width: 767px) {
  .problem__item {
    font-size: 1.125rem;
  }
}
.problem__item:first-child {
  padding-top: 0;
}
.problem__item::before {
  content: "";
  width: 17px;
  height: 17px;
  min-width: 17px;
  margin-right: 7px;
  border-radius: 50%;
  background: #128DC8;
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .problem__item::before {
    margin-top: 4px;
  }
}
.problem__imgArea {
  text-align: center;
}

.problemBottomArrow {
  overflow: hidden;
}
.problemBottomArrow::after {
  content: "";
  display: block;
  border-right: 50vw solid transparent;
  border-left: 50vw solid transparent;
  border-top: 5vw solid #F0F4F5;
}

.seeData {
  padding-top: 70px;
  padding-bottom: 50px;
}
.seeData__block {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .seeData__block {
    display: block;
  }
}
.seeData__textArea {
  margin-right: 70px;
  max-width: 50%;
}
@media screen and (max-width: 1024px) {
  .seeData__textArea {
    margin-right: 50px;
  }
}
@media screen and (max-width: 767px) {
  .seeData__textArea {
    margin-right: 0;
    margin-bottom: 30px;
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .seeData__imgArea {
    text-align: center;
  }
}
.seeData__bubble {
  text-align: center;
  margin-bottom: 24px;
}
.seeData__bubble span {
  color: #fff;
  font-size: 2.125rem;
  background: #00579C;
  display: inline-block;
  line-height: 1;
  padding: 0.5em 0.5em 0.4em;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .seeData__bubble span {
    font-size: 1.85rem;
  }
}
@media screen and (max-width: 767px) {
  .seeData__bubble span {
    font-size: 1.5625rem;
  }
}
.seeData__bubble span::after {
  position: absolute;
  bottom: -10px;
  left: calc(50% - 5px);
  content: "";
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 10px solid #00579C;
}
.seeData__title {
  font-size: 2.3125rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 25px;
}
@media screen and (max-width: 1024px) {
  .seeData__title {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .seeData__title {
    font-size: 1.625rem;
  }
}
.seeData__numberWrapper {
  margin-bottom: 5px;
}
.seeData__numberTitle {
  text-align: center;
  font-size: 1.625rem;
}
@media screen and (max-width: 1024px) {
  .seeData__numberTitle {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .seeData__numberTitle {
    font-size: 1.375rem;
  }
}
.seeData__numberTitle span {
  color: #00579C;
  border-bottom: 2px solid #00579C;
  display: inline-block;
  line-height: 1.4;
}
.seeData__number {
  font-family: "Roboto", sans-serif;
  font-size: 7.5rem;
  font-weight: 900;
  color: #00579C;
  text-align: center;
  line-height: 1.2;
}
@media screen and (max-width: 1024px) {
  .seeData__number {
    font-size: 5.875rem;
  }
}
@media screen and (max-width: 767px) {
  .seeData__number {
    font-size: 5rem;
  }
}
.seeData__number span {
  font-size: 3.4375rem;
}
@media screen and (max-width: 1024px) {
  .seeData__number span {
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 767px) {
  .seeData__number span {
    font-size: 2rem;
  }
}
.seeData__iconImg {
  text-align: center;
}
.seeData__summary {
  text-align: center;
  font-weight: bold;
}
.seeData__summaryTop {
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .seeData__summaryTop {
    font-size: 1.125rem;
  }
}
.seeData__summaryBottom {
  font-size: 1.4375rem;
}
@media screen and (max-width: 767px) {
  .seeData__summaryBottom {
    font-size: 1.375rem;
  }
}
.seeData__summaryBottom strong {
  color: #00579C;
}
.seeData__close {
  text-align: center;
}
.seeData__close span {
  line-height: 1.6;
  font-size: 2.375rem;
  font-weight: bold;
  color: #00579C;
  background: linear-gradient(transparent 70%, #FFD831 70%);
}
@media screen and (max-width: 767px) {
  .seeData__close span {
    font-size: 1.625rem;
  }
  .seeData__close span br {
    display: none;
  }
}

.solution {
  padding-bottom: 80px;
  background: #CCE9F7;
}
.solution__heading {
  margin-bottom: 45px;
}
.solution__topArrow {
  overflow: hidden;
  margin-bottom: 70px;
}
.solution__topArrow::before {
  content: "";
  display: block;
  border-right: 50vw solid transparent;
  border-left: 50vw solid transparent;
  border-top: 5vw solid #fff;
}
.solution__title {
  font-size: 2.375rem;
  text-align: center;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 35px;
}
@media screen and (max-width: 1024px) {
  .solution__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .solution__title {
    font-size: 1.375rem;
  }
}
.solution__titleImg {
  vertical-align: unset;
  margin-right: 5px;
}
@media screen and (max-width: 1024px) {
  .solution__titleImg {
    height: 0.875em;
  }
}
.solution__img {
  text-align: center;
}

.patent {
  padding-top: 70px;
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .patent {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.patent__blockWrapper {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .patent__blockWrapper {
    display: block;
  }
}
.patent__block {
  display: flex;
  align-items: center;
  flex: 1 1 calc(50% - 20px);
  font-size: 1.3125rem;
  font-weight: bold;
  background: #F0F4F5;
  padding: 1.8em 1.8em 1.6em;
  border-radius: 10px;
}
.patent__block:nth-child(even) {
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .patent__block {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .patent__block {
    font-size: 1rem;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .patent__block:last-child {
    margin-bottom: 0;
  }
}

.oversea {
  display: flex;
  align-items: center;
  margin-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .oversea {
    display: block;
    margin-bottom: 50px;
  }
}
.oversea__textArea {
  flex: 1 1 465px;
  margin-right: 50px;
}
@media screen and (max-width: 767px) {
  .oversea__textArea {
    margin-right: 0;
  }
}
.oversea__imgArea {
  flex: 1 1 685px;
}
@media screen and (max-width: 767px) {
  .oversea__content {
    margin-bottom: 15px !important;
  }
}

.think {
  padding-top: 90px;
  padding-bottom: 90px;
  background: #F0F4F5;
  margin-bottom: -70px;
}
@media screen and (max-width: 767px) {
  .think {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .think__heading {
    margin-bottom: 40px;
  }
}
.think__greetingBlock {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .think__greetingBlock {
    display: block;
  }
}
.think__textArea {
  flex: 1 1 690px;
  margin-right: 110px;
}
@media screen and (max-width: 1024px) {
  .think__textArea {
    margin-right: 70px;
  }
}
@media screen and (max-width: 767px) {
  .think__textArea {
    margin-right: 0;
    margin-bottom: 40px;
  }
}
.think__imgArea {
  flex: 1 1 400px;
}
@media screen and (max-width: 767px) {
  .think__imgArea {
    max-width: 340px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 575px) {
  .think__imgArea {
    max-width: 240px;
  }
}
.think__title {
  font-size: 1.5625rem;
  font-weight: bold;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .think__title {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  .think__title {
    font-size: 1.3125rem;
    margin-bottom: 20px;
  }
}
.think__name {
  text-align: right;
}

/* --------------------------------------------
 * 　会社案内
 * -------------------------------------------- */
.vision__inner {
  position: relative;
}
.vision__heading {
  margin-bottom: 15px;
}
.vision__headingBottom {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .vision__headingBottom {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .vision__headingBottom {
    font-size: 1.375rem;
  }
}
.vision__content {
  margin-bottom: 65px;
}
@media screen and (max-width: 767px) {
  .vision__content br {
    display: none;
  }
}
.vision__img {
  text-align: center;
}
.vision__deco {
  background: #BCD4D9;
  opacity: 0.2;
  border-radius: 30px;
  position: absolute;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .vision__deco {
    border-radius: 15px;
  }
}

.vision__deco_v1 {
  width: 143px;
  height: 78px;
  top: 65px;
  left: -30px;
  -webkit-animation: fuwafuwa 5s 0s infinite alternate ease-in-out both;
          animation: fuwafuwa 5s 0s infinite alternate ease-in-out both;
}
@media screen and (max-width: 767px) {
  .vision__deco_v1 {
    left: -120px;
    height: 40px;
  }
}

.vision__deco_v2 {
  width: 82px;
  height: 173px;
  top: 30px;
  left: 50px;
  -webkit-animation: fuwafuwa 6s 0.5s infinite alternate ease-in-out both;
          animation: fuwafuwa 6s 0.5s infinite alternate ease-in-out both;
}
@media screen and (max-width: 767px) {
  .vision__deco_v2 {
    width: 50px;
    height: 120px;
    top: 50px;
    left: 10px;
  }
}

.vision__deco_v3 {
  width: 81px;
  height: 98px;
  top: 220px;
  left: 180px;
  -webkit-animation: fuwafuwa 4.5s 0s infinite alternate ease-in-out both;
          animation: fuwafuwa 4.5s 0s infinite alternate ease-in-out both;
}
@media screen and (max-width: 767px) {
  .vision__deco_v3 {
    display: none;
  }
}

.vision__deco_v4 {
  width: 81px;
  height: 81px;
  top: -15px;
  right: 200px;
  -webkit-animation: fuwafuwa 5.5s 0s infinite alternate ease-in-out both;
          animation: fuwafuwa 5.5s 0s infinite alternate ease-in-out both;
}
@media screen and (max-width: 767px) {
  .vision__deco_v4 {
    width: 60px;
    height: 60px;
    right: 10px;
  }
}

.vision__deco_v5 {
  width: 147px;
  height: 174px;
  top: 90px;
  right: 0px;
  -webkit-animation: fuwafuwa 7s 0s infinite alternate ease-in-out both;
          animation: fuwafuwa 7s 0s infinite alternate ease-in-out both;
}
@media screen and (max-width: 767px) {
  .vision__deco_v5 {
    display: none;
  }
}

.vision__deco_v6 {
  width: 172px;
  height: 85px;
  top: 220px;
  right: 80px;
  -webkit-animation: fuwafuwa 6.5s 0s infinite alternate ease-in-out both;
          animation: fuwafuwa 6.5s 0s infinite alternate ease-in-out both;
}
@media screen and (max-width: 767px) {
  .vision__deco_v6 {
    display: none;
  }
}

.message {
  padding-top: 0;
  padding-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .message {
    padding-top: 0;
    padding-bottom: 50px;
  }
}
.message__heading {
  margin-bottom: 40px;
}
.message__greeting {
  display: flex;
}
@media screen and (max-width: 767px) {
  .message__greeting {
    display: block;
  }
}
.message__textArea {
  flex: 1 1 610px;
  margin-right: 70px;
}
@media screen and (max-width: 1024px) {
  .message__textArea {
    flex: 1 1 670px;
    margin-right: 40px;
  }
}
@media screen and (max-width: 767px) {
  .message__textArea {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.message__imgArea {
  flex: 1 1.5 520px;
}
@media screen and (max-width: 767px) {
  .message__imgArea {
    text-align: center;
  }
}
.message__name {
  text-align: right;
}
.message__name_en {
  font-size: 0.875rem;
}

.member {
  padding-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .member {
    padding-bottom: 50px;
  }
}
.member__heading {
  margin-bottom: 35px;
}

.memberList {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}
.memberList__item {
  flex: 0 1 280px;
}
@media screen and (max-width: 1024px) {
  .memberList__item {
    flex: 0 1 calc((100% - 52px) / 3);
  }
}
@media screen and (max-width: 575px) {
  .memberList__item {
    flex: 0 1 100%;
  }
}

.memberItem__img {
  margin-bottom: 10px;
}
@media screen and (max-width: 575px) {
  .memberItem__img {
    max-width: 280px;
    margin-right: auto;
    margin-left: auto;
  }
}
.memberItem__img img {
  width: 100%;
}
.memberItem__text {
  text-align: center;
}
.memberItem__role {
  margin-bottom: 2px;
  font-size: 0.8125rem;
}
.memberItem__kana {
  font-size: 0.75rem;
  color: #777;
}

.companyInfo__inner {
  display: flex;
}
@media screen and (max-width: 767px) {
  .companyInfo__inner {
    display: block;
  }
}
.companyInfo__heading {
  flex: 0 1 auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .companyInfo__heading {
    margin-bottom: 15px;
  }
}
.companyInfo__table {
  flex: 0 1 720px;
  margin-left: 40px;
}
@media screen and (max-width: 767px) {
  .companyInfo__table {
    margin-left: 0;
  }
}

.table__header {
  font-weight: bold;
  font-size: 1.125rem;
  text-align: left;
  white-space: nowrap;
  width: 120px;
  border-bottom: 1px solid #aaa;
  padding: 20px 0 15px;
}
@media screen and (max-width: 767px) {
  .table__header {
    font-size: 0.9375rem;
    width: 90px;
  }
}
.table__header_en {
  font-size: 0.9375rem;
  width: 140px;
}
.table__data {
  font-size: 1.0625rem;
  width: calc(100% - 120px);
  border-bottom: 1px solid #aaa;
  padding: 20px 0 15px;
}
@media screen and (max-width: 767px) {
  .table__data {
    font-size: 0.9375rem;
  }
}

/* --------------------------------------------
 * 　採用
 * -------------------------------------------- */
.recruitLead {
  margin-left: calc(50% - 600px);
}
@media screen and (max-width: 1240px) {
  .recruitLead {
    margin-left: 4%;
  }
}
@media screen and (max-width: 767px) {
  .recruitLead {
    margin-right: 4%;
  }
}
.recruitLead__block {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .recruitLead__block {
    flex-direction: column;
  }
}
.recruitLead__textArea {
  flex: 1 1 490px;
  margin-right: 60px;
}
@media screen and (max-width: 1200px) {
  .recruitLead__textArea {
    flex: 1 1 55%;
    margin-right: 40px;
  }
}
@media screen and (max-width: 767px) {
  .recruitLead__textArea {
    margin-right: 0;
    display: contents;
  }
}
.recruitLead__imgArea {
  flex: 1 1 calc(100% - 550px);
}
.recruitLead__imgArea img {
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .recruitLead__imgArea {
    flex: 1 1 45%;
  }
}
@media screen and (max-width: 767px) {
  .recruitLead__imgArea {
    margin-bottom: 35px;
  }
}
.recruitLead__heading {
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 30px;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .recruitLead__heading {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .recruitLead__heading br {
    display: none;
  }
}
.recruitLead__leadText {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .recruitLead__leadText {
    margin-bottom: 20px;
  }
}
.recruitLead__button {
  display: block;
  background: #00579C;
  border: 1px solid #00579C;
  color: #fff;
  width: 100%;
  max-width: 305px;
  font-size: 1.6875rem;
  text-align: center;
  padding: 0.65em 0.5em 0.57em;
  transition: all ease 0.3s;
}
@media (hover: hover) {
  .recruitLead__button:hover {
    background: #fff;
    color: #00579C;
    text-decoration: none;
  }
}
@media screen and (max-width: 767px) {
  .recruitLead__button {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .recruitLead__button {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 767px) {
  .recruitLead__button {
    order: 4;
  }
}
.recruitLead__note {
  font-size: 0.75rem;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .recruitLead__note {
    order: 5;
  }
}

/* --------------------------------------------
 * 　お問い合わせ
 * -------------------------------------------- */
.contact {
  background: #e6f2f8;
  padding: 60px 80px;
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  .contact {
    padding: 30px 24px;
  }
}
.contact__lead {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .contact__lead br {
    display: none;
  }
}

/* --------------------------------------------
 * 　フォーム：テーブル部分
 * -------------------------------------------- */
.formTable {
  width: 100%;
  font-size: 16px;
}
.formTable__head {
  width: 25%;
  padding: 11px 0.5em 0 0;
  font-weight: normal;
  text-align: left;
  line-height: 1.4;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .formTable__head {
    display: block;
    width: 100%;
  }
}
.formTable__head_pt0 {
  padding-top: 0;
}
.formTable__headInner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .formTable__headInner {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .formTable__headItem {
    margin-right: 0.75em;
  }
}
.formTable__validate {
  font-size: 0.75em;
  flex: 0 0 auto;
}
.formTable__validate_required {
  display: inline-block;
  color: #fff;
  background: #ff4300;
  padding: 0.5em 0.3em 0.4em;
  margin-left: 5px;
  border-radius: 2px;
  line-height: 1;
}
.formTable__validate_any {
  display: inline-block;
  color: #fff;
  background: #a1d5c3;
  padding: 0.5em 0.3em 0.4em;
  margin-left: 5px;
  border-radius: 2px;
  line-height: 1;
}
.formTable__data {
  width: 75%;
  vertical-align: middle;
  padding: 11px 0.5em 0 0;
}
@media screen and (max-width: 767px) {
  .formTable__data {
    display: block;
    width: 100%;
  }
}
.formTable input, .formTable textarea, .formTable select {
  background: #fff;
  border: none;
  outline: none;
}
.formTable input, .formTable select {
  width: 100%;
  min-height: 45px;
  padding: 5px 5px 3px;
  border-radius: 3px;
  border: none;
  font-size: 16px;
}
.formTable textarea {
  width: 100%;
  height: 150px;
  padding: 5px 5px 3px;
  border-radius: 3px;
  font-size: 16px;
}
.formTable__dataBirth {
  display: flex;
}
.formTable__dataBirthYear {
  margin-right: 10px;
  display: flex;
  align-items: center;
}
.formTable__dataBirthYear select {
  width: 160px;
  margin-right: 5px;
}
.formTable__dataBirthMonth {
  margin-right: 10px;
  display: flex;
  align-items: center;
}
.formTable__dataBirthMonth select {
  width: 80px;
  margin-right: 5px;
}
.formTable__dataBirthDate {
  display: flex;
  align-items: center;
}
.formTable__dataBirthDate select {
  width: 80px;
  margin-right: 5px;
}

.acceptance {
  margin-top: 20px;
  text-align: center;
}
.acceptance__lead {
  margin-bottom: 12px;
  font-size: 0.75rem;
}
.acceptance__link {
  color: #fff;
  text-decoration: underline;
}
.acceptance label {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.875rem;
}
.acceptance input {
  width: 20px;
  height: 20px;
  margin-top: -1px;
}
.acceptance input:focus {
  outline: none;
}
.acceptance span {
  display: inline-block;
  vertical-align: middle;
}
.acceptance a {
  text-decoration: underline;
  color: #00579C;
}

.label_any {
  background: #7db978;
}

input[type=checkbox] {
  width: 20px;
  height: 20px;
}

.contactSubmit {
  background: #00579C;
  color: #fff;
  padding: 1em 1em 0.85em;
}

.contactButton {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
.contactButton > * {
  margin-right: 20px;
}
.contactButton > *:last-child {
  margin-right: 0;
}
.contactButton__submit {
  font-size: 1.125rem;
  background: #00579C;
  color: #fff;
  padding: 1em 1.5em 0.85em;
  min-width: 180px;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media (hover: hover) {
  .contactButton__submit:hover {
    cursor: pointer;
  }
}
.contactButton__back {
  font-size: 1.125rem;
  background: #555;
  color: #fff;
  padding: 1em 1em 0.85em;
  min-width: 180px;
  border: none;
}
@media (hover: hover) {
  .contactButton__back:hover {
    cursor: pointer;
  }
}

/* --------------------------------------------
 * 　MWWPForm
 * -------------------------------------------- */
.mw_wp_form_complete {
  text-align: center;
}

.mw_wp_form_confirm .acceptance {
  display: none;
}

.mw_wp_form_send_error {
  text-align: center;
}

/* --------------------------------------------
 * 　個人情報保護方針
 * -------------------------------------------- */
.terms__header {
  margin-bottom: 50px;
}
.terms__lead {
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 3px solid #ddd;
  font-size: 0.9375rem;
}
.terms__declaration {
  margin-bottom: 50px;
  font-size: 0.9375rem;
}
.terms__heading {
  text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  margin-bottom: 50px;
}
.terms__list {
  list-style: none;
}
.terms__item {
  margin-bottom: 40px;
  font-weight: bold;
}
.terms__listChild {
  margin-left: 40px;
  font-weight: normal;
}
.terms__itemChild {
  margin-bottom: 5px;
}
.terms__listChildDepth2 {
  margin-left: 40px;
  counter-reset: counter;
}
.terms__itemChildDepth2 {
  counter-increment: counter;
}
.terms__itemChildDepth2::marker {
  content: "(" counter(counter) ")";
}
.terms__insertBulletList {
  list-style: disc;
  margin-left: 40px;
}
.terms li._noNumber {
  list-style: none;
  margin-left: -20px;
}
.terms__link {
  color: #288fb5;
}
.terms__date {
  font-size: 0.875rem;
}
.terms .tableSimple {
  font-size: 0.875rem;
}
.terms .tableSimple a {
  color: #128DC8;
  word-break: break-all;
}
.terms .tableSimple__header {
  font-weight: normal;
  white-space: nowrap;
  padding: 8px 8px 5px;
}
@media screen and (max-width: 767px) {
  .terms .tableSimple__header {
    white-space: unset;
    width: 120px;
    min-width: 120px;
  }
}
.terms .tableSimple__header_en {
  white-space: unset;
}
.terms .tableSimple__data {
  padding: 8px 8px 5px;
}
@media screen and (max-width: 767px) {
  .terms .tableSimple__data {
    width: calc(100% - 120px);
  }
}

/* --------------------------------------------
 * 　404
 * -------------------------------------------- */
.page404 {
  padding-top: 25vh;
  padding-bottom: 10vh;
  text-align: center;
}
.page404__heading {
  font-family: "Roboto", sans-serif;
  font-size: 4.5rem;
  font-weight: 900;
  color: #CCE9F7;
}
.page404__link {
  text-decoration: underline;
  color: #00579C;
  margin-top: 20px;
  display: inline-block;
}
.page404__text_en {
  font-size: 0.875rem;
}
/*# sourceMappingURL=style.css.map */