@charset "UTF-8";
@keyframes bottom_to_top {
  0% {
    transform: translate3d(0, 3vw, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.bottom_to_top {
  opacity: 0;
  transform: translate3d(0, 50px, 0) scaleY(1);
  transform-origin: top;
}

.bottom_to_top.active {
  animation: bottom_to_top 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s forwards;
}

@keyframes bottom_to_top {
  0% {
    opacity: 0;
    transform: translate3d(0, 50px, 0) scaleY(1);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scaleY(1);
  }
}
.bottom_to_tops > * {
  opacity: 0;
}

.bottom_to_tops.active > * {
  animation: bottom_to_top 0.6s cubic-bezier(0.4, 0.26, 0.15, 0.99) forwards;
}
.bottom_to_tops.active > *:nth-child(2) {
  animation-delay: 0.1s;
}
.bottom_to_tops.active > *:nth-child(3) {
  animation-delay: 0.2s;
}
.bottom_to_tops.active > *:nth-child(4) {
  animation-delay: 0.3s;
}
.bottom_to_tops.active > *:nth-child(5) {
  animation-delay: 0.4s;
}
.bottom_to_tops.active > *:nth-child(6) {
  animation-delay: 0.5s;
}
.bottom_to_tops.active > *:nth-child(7) {
  animation-delay: 0.6s;
}
.bottom_to_tops.active > *:nth-child(8) {
  animation-delay: 0.7s;
}
.bottom_to_tops.active > *:nth-child(9) {
  animation-delay: 0.8s;
}
.bottom_to_tops.active > *:nth-child(10) {
  animation-delay: 0.9s;
}

@keyframes left_to_right {
  0% {
    transform: translate3d(-3vw, 0, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.left_to_right {
  opacity: 0;
}

.left_to_right.active {
  animation: left_to_right 0.6s cubic-bezier(0.4, 0.26, 0.15, 0.99) forwards;
}

@keyframes right_to_left {
  0% {
    transform: translate3d(3vw, 0, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.left_to_rights > * {
  opacity: 0;
}

.left_to_rights.active > * {
  animation: left_to_right 0.6s cubic-bezier(0.4, 0.26, 0.15, 0.99) forwards;
}
.left_to_rights.active > *:nth-child(2) {
  animation-delay: 0.1s;
}
.left_to_rights.active > *:nth-child(3) {
  animation-delay: 0.2s;
}
.left_to_rights.active > *:nth-child(4) {
  animation-delay: 0.3s;
}
.left_to_rights.active > *:nth-child(5) {
  animation-delay: 0.4s;
}
.left_to_rights.active > *:nth-child(6) {
  animation-delay: 0.5s;
}
.left_to_rights.active > *:nth-child(7) {
  animation-delay: 0.6s;
}
.left_to_rights.active > *:nth-child(8) {
  animation-delay: 0.7s;
}
.left_to_rights.active > *:nth-child(9) {
  animation-delay: 0.8s;
}
.left_to_rights.active > *:nth-child(10) {
  animation-delay: 0.9s;
}

.right_to_left {
  opacity: 0;
}

.right_to_left.active {
  animation: right_to_left 0.6s cubic-bezier(0.4, 0.26, 0.15, 0.99) forwards;
}

@keyframes top_to_bottom {
  0% {
    transform: translate3d(0, -3vw, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.right_to_lefts > * {
  opacity: 0;
}

.right_to_lefts.active > * {
  animation: right_to_left 0.6s cubic-bezier(0.4, 0.26, 0.15, 0.99) forwards;
}
.right_to_lefts.active > *:nth-child(2) {
  animation-delay: 0.1s;
}
.right_to_lefts.active > *:nth-child(3) {
  animation-delay: 0.2s;
}
.right_to_lefts.active > *:nth-child(4) {
  animation-delay: 0.3s;
}
.right_to_lefts.active > *:nth-child(5) {
  animation-delay: 0.4s;
}
.right_to_lefts.active > *:nth-child(6) {
  animation-delay: 0.5s;
}
.right_to_lefts.active > *:nth-child(7) {
  animation-delay: 0.6s;
}
.right_to_lefts.active > *:nth-child(8) {
  animation-delay: 0.7s;
}
.right_to_lefts.active > *:nth-child(9) {
  animation-delay: 0.8s;
}
.right_to_lefts.active > *:nth-child(10) {
  animation-delay: 0.9s;
}

.top_to_bottom {
  opacity: 0;
}

.top_to_bottom.active {
  animation: top_to_bottom 0.6s cubic-bezier(0.4, 0.26, 0.15, 0.99) forwards;
}

.bg_black_amin {
  overflow: hidden;
  position: relative;
}

.bg_black_amin:after {
  background: #a0a0a0;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transform: translateX(-100%);
  transition: all 0.8s 0s ease;
  width: 100%;
  z-index: 1;
}

.bg_black_amin img {
  opacity: 0;
  transition: all 0.8s 0s ease;
}

.bg_black_amin.active img {
  opacity: 1;
  transition: all 0.5s 0.3s ease;
}

.bg_black_amin.active:after {
  transform: translateX(100%);
}

.show_text {
  position: relative;
  transition: clip-path 2s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.show_text.active {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  transition-delay: 0.3s;
}

.role_to {
  opacity: 0;
  transform: rotate(10deg);
  transition: all 0.8s 0s ease;
}

.role_to.active {
  opacity: 1;
  transform: rotate(0deg);
}

.big_to {
  opacity: 0;
  transform: scale(1.1);
  transition: all 0.8s 0s ease;
}
.big_to.active {
  opacity: 1;
  transform: scale(1);
}

.fadeIn {
  opacity: 0;
  transition: all 0.8s 0s ease;
  transition-delay: 0.3s;
}
.fadeIn.active {
  opacity: 1;
}

.showvis span:nth-child(1):after {
  top: 48%;
}

.showvis span:nth-child(2):after {
  top: 80%;
}

.showvis span:nth-child(3):after {
  top: 54%;
}

.showvis span:nth-child(1):before {
  top: -5px;
  left: -5px;
}

.showvis span:nth-child(2):before {
  top: -3px;
  left: 1px;
}

.showvis span:nth-child(3):before {
  top: 2px;
  left: -2px;
}

.showvis.showvisDelay span:nth-child(1):before {
  top: 20px;
}

.showvis.active span:nth-child(1):after {
  animation: leftin 0.5s ease 0.2s forwards;
}

.showvis.active span:nth-child(2):after {
  animation: leftin 0.5s ease 0.4s forwards;
}

.showvis.active span:after {
  animation: leftin 0.5s ease 0s forwards;
}

.showvis.active span:before {
  animation: chikachika 0.1s ease 0.7s infinite, chikachika2 0.1s ease 1.2s forwards;
}

.showvis.active span {
  animation: fadeIn 1s ease 0.7s forwards;
}

.showvis.showvisDelay.active span:after {
  animation: leftin 0.4s ease 0.2s forwards;
}

.showvis.showvisDelay.active span:before {
  animation: chikachika 0.1s ease 0.8s infinite, chikachika2 0.1s ease 1.4s forwards;
}

.showvis.showvisDelay.active span {
  animation: fadeIn 1s ease 0.9s forwards;
}

@keyframes fadeIn {
  from {
    color: transparent !important;
    text-shadow: 0px 0px 3px #fff, 0px 0px 5px #fff, 0px 0px 8px #fff, 0px 0px 10px #fff, 0px 0px 15px #fff, 0px 0px 20px #fff;
  }
  to {
    text-shadow: none;
    color: #fff !important;
  }
}
@keyframes chikachika {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 0;
  }
}
@keyframes chikachika2 {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 0;
    transform: scaleX(0);
  }
}
@keyframes leftin {
  0% {
    transform: translateX(1000px) scale(1);
  }
  40% {
    opacity: 1;
    transform: scale(1);
  }
  70% {
    transform: scale(1);
  }
  90% {
    transform: scale(20);
  }
  100% {
    transform: translateX(0px) scale(20);
    opacity: 0;
  }
}
.to_big {
  opacity: 0;
}

.to_big.active {
  animation: to_big 0.5s ease-out forwards;
  transform-origin: 50% 50%;
  opacity: 0;
}

@keyframes to_big {
  0% {
    transform: scale(0.4, 0.4);
    opacity: 0;
  }
  40% {
    transform: scale(1.2, 1.2);
    opacity: 1;
  }
  60% {
    transform: scale(1, 1);
  }
  80% {
    transform: scale(1.1, 1.1);
  }
  100% {
    transform: scale(1, 1);
    opacity: 1;
  }
}
@keyframes bounce {
  0% {
    transform: translateY(0) scale(1); /* 通常の位置とサイズ */
  }
  30% {
    transform: translateY(-30px) scale(1.03); /* 少し上にジャンプして大きくなる */
  }
  50% {
    transform: translateY(0) scale(0.9); /* 元の位置に戻りつつ縮む */
  }
  70% {
    transform: translateY(-10px) scale(1.01); /* 小さくジャンプして大きくなる */
  }
  100% {
    transform: translateY(0) scale(1); /* 元のサイズと位置に戻る */
  }
}
@keyframes purine {
  10% {
    /* 上から落ちてくる */
    transform: translateY(0);
  }
  15% {
    /* 落ちてきた衝撃で縦に少しつぶれる */
    transform: scale(1.1, 0.9);
  }
  20% {
    /* 落ちてきた衝撃で縦にさらに少しつぶれる */
    transform: scale(1.1, 0.8);
  }
  30% {
    /* 縦につぶれながらもつぶれた反動で少し横に伸びる */
    transform: scale(1.15, 0.7);
  }
  45% {
    /* 縦につぶれた反動で横に伸びる */
    transform: scale(1.2, 0.5);
  }
  50% {
    /* つぶれた反動で一気に縦に伸びる */
    transform: scale(0.85, 1.15);
  }
  60% {
    /* 伸びた反動で縦につぶれる */
    transform: scale(1.1, 0.9);
  }
  70% {
    /* つぶれた反動で縦に少し伸びる */
    transform: scale(0.95, 1.08);
  }
  90% {
    /* 伸びた反動でほんの少し縦につぶれる */
    transform: scale(0.98, 1.02);
  }
  100% {
    /* 通常のサイズになる */
    transform: scale(1, 1);
  }
}
html, body {
  padding: 0;
  margin: 0;
  font-family: "Shippori Mincho", serif;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 1.7;
  font-size: 0.835vw;
  color: #323232;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6vw;
}

main {
  font-weight: 500;
  overflow: hidden;
  position: relative;
}

@media screen and (max-width: 1920px) {
  html, body {
    font-size: 0.835vw;
  }
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

p, figure {
  margin: 0;
}

ul, ol {
  margin: 0 auto;
}

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

.wrap {
  margin: 0 auto;
  padding: 0 7vw;
  max-width: 87.5rem;
}

.wrap_s {
  margin: 0 auto;
  padding: 0 7vw;
  max-width: 75rem;
}

.mplus {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
}

.rwd_show {
  display: none;
}

@media screen and (max-width: 880px) {
  .wrap {
    padding: 0 9vw;
  }
  html {
    scroll-padding-top: 0;
    font-size: 16px;
  }
  .rwd_show {
    display: inline;
  }
  .rwd_hide {
    display: none;
  }
}
.site_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  box-sizing: border-box;
  padding: 0 2.5vw;
  padding-right: 1vw;
  z-index: 100;
}
.site_header h1 {
  flex: 0 1 9.375rem;
  width: 9.375rem;
  position: absolute;
  top: 0;
  left: 2.5vw;
}
.site_header h1 a {
  display: flex;
  align-items: center;
}
.site_header .site_nav .site_nav_in_sp {
  display: none;
}
.site_header .site_nav .bt {
  display: none;
}
.site_header .site_nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  font-weight: 500;
}
.site_header .site_nav ul li {
  position: relative;
}
.site_header .site_nav ul li a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 2.5rem 1.5rem;
  font-size: 1.25rem;
  transition: all ease 0.3s;
  position: relative;
  z-index: 2;
}
.site_header .site_nav ul li:after {
  content: "";
  width: 3em;
  height: 3em;
  display: block;
  position: absolute;
  background-color: #85DDDA;
  border-radius: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
  transition: all ease 0.3s;
  transform: scale(0);
  opacity: 0;
}
.site_header .site_nav ul li.current:after {
  opacity: 1;
  transform: scale(1);
}
.site_header .site_nav ul li:hover:after {
  opacity: 0.5;
  transform: scale(1);
}
.site_header .sp_button {
  position: absolute;
  right: 2.5vw;
  top: 2.5vw;
  background-color: transparent;
  border: 0;
  display: none;
  width: 9.335vw;
  height: 9.335vw;
  border: 1px solid #0ABAB5;
  border-radius: 100%;
  background-color: #fff;
  padding: 0;
  margin: 0;
}
.site_header .sp_button span {
  display: block;
  position: relative;
  width: 70%;
  height: 1px;
  margin: 0 auto;
  background-color: #0ABAB5;
  transition: all ease 0.3s;
}
.site_header .sp_button span:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #0ABAB5;
  top: -1.5vw;
  left: 0;
  position: absolute;
  transition: all ease 0.3s;
}
.site_header .sp_button span:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #0ABAB5;
  bottom: -1.5vw;
  left: 0;
  position: absolute;
  transition: all ease 0.3s;
}
.site_header .sp_button.active span {
  background-color: transparent;
}
.site_header .sp_button.active span:before {
  top: 0;
  transform: rotate(30deg);
}
.site_header .sp_button.active span:after {
  bottom: 0;
  transform: rotate(-30deg);
}

@media screen and (max-width: 880px) {
  .site_header .site_nav {
    overflow-y: scroll;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(10, 186, 181, 0.9019607843);
    padding: 0 13vw;
    opacity: 0;
    transform: translate3d(100%, 0, 0);
    visibility: hidden;
    transition: all ease 0.3s;
    padding-top: 22vw;
    padding-bottom: 10vw;
    box-sizing: border-box;
  }
  .site_header .site_nav ul {
    flex-direction: column;
  }
  .site_header .site_nav ul li a {
    padding: 0.55em 1.4em;
    position: relative;
    font-size: 5vw;
  }
  .site_header .site_nav ul li a:before {
    content: "";
    width: 1.3em;
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: 0%;
    top: 50%;
  }
  .site_header .site_nav .site_nav_in li:last-child {
    display: none;
  }
  .site_header .site_nav .site_nav_in_sp {
    margin-top: 9vw;
    display: block;
  }
  .site_header .site_nav .site_nav_in_sp li a {
    font-size: 4.3vw;
    padding: 0.4em 1.4em;
  }
  .site_header .site_nav .bt {
    display: block;
    background-color: #fff;
    color: #313131;
    font-size: 610%;
    padding: 0.2em 1.5em 0.3em 1.5em;
    width: 8em;
    margin-top: 7vw;
  }
  .site_header .site_nav .bt:after {
    background-image: url(../img/pointer_right_black.svg);
  }
  .site_header {
    width: 100%;
    display: block;
    padding: 0;
  }
  .site_header .sp_button {
    display: block;
  }
  .site_header.active .site_nav {
    visibility: visible;
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  .site_header h1 {
    left: 4vw;
    width: 20vw;
  }
  .site_header .site_nav ul li.current:after {
    opacity: 0;
  }
}
.sb {
  padding: 7.5rem 0;
  position: relative;
}
.sb .sbh {
  margin-bottom: 2.5rem;
}
.sb .sbh h2 {
  font-weight: 900;
  font-size: 4.25rem;
  line-height: 1;
}
.sb .sbh .ja {
  margin-top: 0.5rem;
  font-size: 0.875rem;
}
.sb .sbflex {
  display: flex;
}

.mv {
  position: relative;
}
.mv:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #323232;
  opacity: 0.5;
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
}
.mv .texts {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  margin: auto;
  z-index: 3;
  color: #fff;
  text-align: center;
  width: 100%;
  height: 100%;
}
.mv .texts p {
  font-size: 2.125rem;
  line-height: 1.6;
  font-weight: 500;
  text-shadow: 0 0 0.2em #000, 0 0 0.2em #000;
}
@media screen and (max-width: 880px) {
  .mv {
    height: 146.8vw;
  }
  .mv .texts {
    display: block;
  }
  .mv .texts p {
    margin: 0 auto;
    margin-top: 37vw;
    writing-mode: vertical-rl;
    font-size: 591%;
    text-align: left;
    line-height: 2.3;
  }
}
.site_footer .wrap {
  display: flex;
  justify-content: space-between;
  padding-bottom: 2em;
}
.site_footer .wrap .logo_f {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.2rem;
  gap: 2rem;
}
.site_footer .wrap .logo_f address {
  margin-top: 0.7em;
  font-size: 112.5%;
  font-style: normal;
}
.site_footer .wrap .logo_f h2 {
  font-weight: 500;
}
.site_footer .wrap .logo_f > figure {
  width: 9.375rem;
}
.site_footer .wrap .f_right nav {
  padding-top: 3em;
}
.site_footer .wrap .f_right nav ul {
  display: flex;
  gap: 1em;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
  gap: 2em;
}
.site_footer .wrap .f_right nav ul li a {
  text-decoration: none;
  color: #000;
  font-size: 1.125rem;
}
.site_footer .wrap .f_right nav ul li a:hover {
  text-decoration: underline;
}
.site_footer .copy {
  background-color: #0ABAB5;
  color: #fff;
  padding: 1em;
  text-align: center;
}

@media screen and (max-width: 880px) {
  .site_footer .wrap {
    display: block;
    padding-bottom: 8em;
  }
  .site_footer .wrap .logo_f {
    flex: 1;
    justify-content: flex-start;
    gap: 1rem;
  }
  .site_footer .wrap .logo_f h2 {
    font-size: 440%;
  }
  .site_footer .wrap .logo_f address {
    margin-top: 0em;
    font-size: 410%;
    line-height: 1.3;
  }
  .site_footer .wrap .logo_f {
    margin-bottom: 9em;
  }
  .site_footer .bt {
    font-size: 700%;
    padding: 0.2em 1.5em 0.3em 1.5em;
    width: 6em;
    margin-left: auto;
    margin-right: auto;
  }
  .site_footer .copy {
    padding: 0.3em;
    font-size: 370%;
  }
  .site_footer .wrap .logo_f > figure {
    width: 20vw;
  }
  .site_footer .wrap .f_right nav {
    display: none;
  }
}
.bt {
  background-color: #0ABAB5;
  color: #fff;
  font-size: 1.5rem;
  border-radius: 100em;
  display: flex;
  justify-content: center;
  align-content: center;
  text-decoration: none;
  padding: 0.3em 0.4em 0.4em 0.4em;
  padding-left: 2em;
  display: block;
  position: relative;
  text-align: left;
}
.bt:after {
  content: "";
  display: block;
  width: 0.4375rem;
  background-image: url(../img/pointer_right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  right: 1em;
  height: 100%;
  top: 0;
  transition: all ease 0.3s;
}
.bt {
  transition: all ease 0.3s;
}
.bt:hover {
  background-color: rgba(10, 186, 181, 0.5019607843);
}
.bt:hover:after {
  transform: translate3d(2px, 0, 0);
}
.bt.btW {
  background-color: transparent;
  border: 1px solid #fff;
}

@media screen and (max-width: 880px) {
  .bt {
    font-size: 400%;
    padding: 0.4em 1.5em 0.5em 1.5em;
  }
}
.content_nav {
  background-image: url(../img/nav_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 6em;
}
.content_nav ul {
  position: relative;
  z-index: 2;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
.content_nav ul li {
  box-sizing: border-box;
  flex: 1;
  border-right: 1px solid #989898;
}
.content_nav ul li a {
  text-decoration: none;
  display: block;
  height: 21.875rem;
  padding: 1em 2em;
  box-sizing: border-box;
  position: relative;
}
.content_nav ul li a .en {
  font-size: 262.5%;
  color: #0ABAB5;
  font-weight: 600;
}
.content_nav ul li a .ja {
  color: #fff;
  font-size: 125%;
}
.content_nav ul li a .bt {
  font-size: 100%;
  font-family: inherit;
  position: absolute;
  right: 1em;
  bottom: 1.5em;
  width: 11.5em;
  z-index: 2;
  cursor: pointer;
  transition: all ease 0.3s;
}
.content_nav ul li a {
  background-color: rgba(50, 50, 50, 0.7019607843);
  transition: all ease 0.3s;
}
.content_nav ul li a:hover {
  background-color: rgba(50, 50, 50, 0.3019607843);
}
.content_nav ul li a:hover .bt {
  background-color: rgba(0, 0, 0, 0.3);
}
.content_nav ul li a:hover .bt:after {
  transform: translate3d(2px, 0, 0);
}
.content_nav ul li:last-child li {
  border-right: 0;
}

@media screen and (max-width: 880px) {
  .content_nav ul {
    flex-wrap: wrap;
    gap: 1px;
  }
  .content_nav ul li {
    flex: 0 1 calc((100% - 1px) / 2);
  }
  .content_nav ul li a {
    height: 40vw;
    padding: 5em 5em;
  }
  .content_nav ul li a .en {
    font-size: 720%;
    line-height: 1;
    margin-bottom: 0.1em;
  }
  .content_nav ul li a .ja {
    font-size: 425%;
  }
  .content_nav ul li a .bt {
    right: auto;
    bottom: 1.4em;
    font-size: 380%;
  }
  .content_nav {
    margin-bottom: 11em;
    background-image: url(../img/sp/nav_bg.png);
  }
}
.sbCatch .wrap .sbCatch_in {
  margin: 0 auto;
  max-width: 63vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.sbCatch .wrap .sbCatch_in > div {
  padding-left: 5vw;
}
.sbCatch .wrap .sbCatch_in > div > div {
  position: relative;
  z-index: 3;
}
.sbCatch .wrap .en {
  color: #CEF1F0;
  font-size: 237.5%;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-left: -5vw;
  margin-bottom: -1.5em;
  font-weight: 500;
}
.sbCatch .wrap h2 {
  font-size: 150%;
  margin-bottom: 1em;
}
.sbCatch .wrap figure {
  width: 31.25rem;
  border-radius: 0.375rem;
  overflow: hidden;
  position: relative;
}
.sbCatch .wrap figure img {
  position: relative;
  z-index: 1;
}
.sbCatch .wrap figure:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #323232;
  opacity: 0.3;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.sbCatch .wrap .text {
  font-size: 112.5%;
  line-height: 2;
  margin-bottom: 4em;
}
.sbCatch .wrap .bt {
  font-size: 100%;
  width: 9em;
}

@media screen and (max-width: 880px) {
  .sbCatch .wrap .sbCatch_in {
    flex-direction: column-reverse;
    max-width: none;
    align-items: normal;
  }
  .sbCatch {
    padding-top: 3em;
    padding-bottom: 16em;
  }
  .sbCatch .wrap .sbCatch_in > div {
    padding-left: 3vw;
    z-index: 3;
  }
  .sbCatch .wrap figure {
    left: 34.5vw;
    width: 54.6vw;
  }
  .sbCatch .wrap .en {
    font-size: 550.5%;
    margin-left: -8vw;
    line-height: 1.4;
    margin-top: -24vw;
    margin-bottom: 0.3em;
  }
  .sbCatch .wrap .text {
    font-size: 440%;
    margin-bottom: 1.5em;
    line-height: 1.8;
  }
  .sbCatch .wrap h2 {
    font-size: 530%;
  }
  .sbCatch .wrap .bt {
    font-size: 400%;
    padding: 0.4em 1.5em 0.5em 1.5em;
    width: 8em;
  }
}
/*.unders*/
.under .site_header .site_nav ul li a {
  color: #323232;
}
.under h1 {
  flex: 0 1 9.375rem;
}

@media screen and (max-width: 880px) {
  .under .site_header .site_nav ul li a {
    color: #fff;
  }
}
.sbPhilosophy {
  padding-top: 12em;
  padding-bottom: 0;
}
.sbPhilosophy .sbPhilosophy_in {
  align-items: flex-start;
  display: flex;
  flex-direction: row-reverse;
  gap: 7vw;
}
.sbPhilosophy .sbPhilosophy_in .sbh {
  flex: 0 1 30%;
  position: relative;
}
.sbPhilosophy .sbPhilosophy_in .sbh .en {
  position: absolute;
  top: 0;
  transform: rotate(90deg);
  left: 90%;
  color: #DAF5F4;
  font-size: 1000%;
  transform-origin: top left;
  z-index: 1;
  letter-spacing: -0.04em;
}
.sbPhilosophy .sbPhilosophy_in .sbh .ja {
  writing-mode: vertical-rl;
  font-size: 265%;
  font-weight: 600;
  line-height: 1.9;
  z-index: 2;
  position: relative;
  margin-left: -0.3em;
}
.sbPhilosophy .sbPhilosophy_in .sbh h2 {
  width: 100%;
  font-size: 137.5%;
  margin-bottom: 2em;
  margin-top: 3.5em;
  position: relative;
  padding-left: 1.5em;
  margin-left: 0.3em;
}
.sbPhilosophy .sbPhilosophy_in .sbh h2:after {
  content: "";
  width: 1em;
  height: 1px;
  background-color: #323232;
  position: absolute;
  left: 0%;
  top: 50%;
}
.sbPhilosophy .sbPhilosophy_in > figure {
  flex: 1;
  position: relative;
  margin-left: -19%;
}
.sbPhilosophy .sbPhilosophy_in > figure:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #323232;
  opacity: 0.3;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  border-radius: 0 0.375rem 0.375rem 0;
}
.sbPhilosophy .sbPhilosophy_in > figure img {
  border-radius: 0 0.375rem 0.375rem 0;
  width: 100%;
}

@media screen and (max-width: 880px) {
  .sbPhilosophy {
    padding-top: 17.5em;
  }
  .sbPhilosophy .sbPhilosophy_in {
    flex-direction: column-reverse;
  }
  .sbPhilosophy .sbPhilosophy_in > figure {
    margin-left: -9vw;
    margin-right: -9vw;
  }
  .sbPhilosophy .sbPhilosophy_in .sbh .en {
    top: -68vw;
    transform: rotate(90deg);
    left: auto;
    right: -128vw;
    line-height: 1;
    color: #DAF5F4;
    font-size: 2500%;
    transform-origin: top left;
  }
  .sbPhilosophy .sbPhilosophy_in .sbh {
    z-index: 3;
  }
  .sbPhilosophy .sbPhilosophy_in .sbh h2 {
    margin-top: -17vw;
    color: #fff;
    font-size: 520%;
  }
  .sbPhilosophy .sbPhilosophy_in .sbh h2:after {
    background-color: #fff;
  }
  .sbPhilosophy .sbPhilosophy_in .sbh .ja {
    writing-mode: unset;
    font-size: 680%;
    margin-top: 1.7em;
    line-height: 1.8;
    margin-top: 12vw;
  }
}
.sbMessage {
  padding-top: 0;
  padding-bottom: 3em;
}
.sbMessage .sbMessage_in {
  display: flex;
  align-items: flex-start;
}
.sbMessage .sbMessage_in .sbh {
  padding-left: 15%;
  flex: 0 1 55.5%;
  position: relative;
}
.sbMessage .sbMessage_in .sbh .en {
  position: absolute;
  top: -1.6em;
  left: 0%;
  color: #DAF5F4;
  font-size: 1000%;
  z-index: 1;
  letter-spacing: -0.04em;
}
.sbMessage .sbMessage_in .sbh .ja {
  font-size: 112.5%;
  font-weight: 500;
  z-index: 2;
  position: relative;
  margin-left: -0.3em;
  margin-top: 0;
  line-height: 2.2;
}
.sbMessage .sbMessage_in .sbh .ja span {
  color: #0ABAB5;
}
.sbMessage .sbMessage_in .sbh .ja i {
  font-size: 150%;
  margin-left: 1em;
  font-style: normal;
}
.sbMessage .sbMessage_in .sbh h2 {
  width: 100%;
  font-size: 137.5%;
  position: absolute;
  font-weight: 500;
  padding-left: 1.5em;
  left: 0;
  top: 0.4em;
}
.sbMessage .sbMessage_in .sbh h2:after {
  content: "";
  width: 1em;
  height: 1px;
  background-color: #323232;
  position: absolute;
  left: 0%;
  top: 50%;
}
.sbMessage .sbMessage_in figure {
  margin-top: 1em;
  position: relative;
  flex: 1;
  margin-right: -16.5rem;
  margin-top: -16em;
}
.sbMessage .sbMessage_in figure img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 0.375rem 0 0 0.375rem;
}

@media screen and (max-width: 880px) {
  .sbMessage .sbMessage_in {
    flex-direction: column-reverse;
  }
  .sbMessage {
    padding-top: 0;
    margin-top: 7em;
  }
  .sbMessage .sbMessage_in figure {
    margin-right: auto;
    width: 53.5vw;
    margin-left: 14vw;
  }
  .sbMessage .sbMessage_in .sbh {
    padding-left: 0;
    flex: 0 1 100%;
    width: 100%;
    z-index: 3;
  }
  .sbMessage .sbMessage_in .sbh .en {
    font-size: 2500%;
    top: -1.2em;
  }
  .sbMessage .sbMessage_in .sbh h2 {
    font-size: 520%;
    margin-top: 7vw;
    margin-bottom: 1.7em;
    position: unset;
    position: relative;
  }
  .sbMessage .sbMessage_in .sbh .ja {
    font-size: 490%;
    letter-spacing: -0.1em;
    line-height: 1.8;
  }
}
.sbPartners {
  padding-top: 1em;
  background-color: #CEF1F0;
  padding-bottom: 6em;
}
.sbPartners .sbh {
  text-align: center;
}
.sbPartners .sbh .en {
  font-size: 562.5%;
  color: #9DE3E1;
  letter-spacing: -0.02em;
  margin-bottom: -0.1em;
}
.sbPartners .sbh h2 {
  font-size: 137.5%;
  display: inline-block;
  margin-bottom: 2em;
  position: relative;
  font-weight: 500;
  padding-left: 1.5em;
}
.sbPartners .sbh h2:after {
  content: "";
  width: 1em;
  height: 1px;
  background-color: #323232;
  position: absolute;
  left: 0%;
  top: 50%;
}
.sbPartners .sbh .ja {
  font-size: 112.5%;
  font-weight: 500;
  margin-bottom: 2em;
}
.sbPartners ul {
  display: flex;
  gap: 3em;
  list-style: none;
  padding: 0;
  margin: 0;
}
.sbPartners ul li {
  display: flex;
  flex: 1;
}
.sbPartners ul li:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.sbPartners ul li {
  position: relative;
}
.sbPartners ul li > * {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  text-align: center;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.sbPartners ul li > * figure {
  background-color: #fff;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0.375rem;
}
.sbPartners ul li > * figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 880px) {
  .sbPartners {
    padding-top: 5em;
  }
  .sbPartners .sbh .en {
    font-size: 1500%;
    margin-bottom: 0.1em;
  }
  .sbPartners .sbh h2 {
    font-size: 520%;
    margin-bottom: 1.5em;
  }
  .sbPartners .sbh .ja {
    font-size: 490%;
    letter-spacing: -0.1em;
    line-height: 1.7;
    text-align: left;
    margin-bottom: 1.63em;
  }
  .sbPartners ul {
    flex-wrap: wrap;
    gap: 8em;
  }
  .sbPartners ul li {
    flex: 0 1 calc((100% - 8em) / 2);
  }
}
.sbAbout {
  padding-top: 1em;
}
.sbAbout .sbh {
  text-align: center;
  margin-bottom: 1em;
  flex: 0 1 100%;
}
.sbAbout .sbh .en {
  font-size: 562.5%;
  color: #9DE3E1;
  letter-spacing: -0.02em;
  margin-bottom: -0.1em;
}
.sbAbout .sbh h2 {
  font-size: 137.5%;
  display: inline-block;
  margin-bottom: 2em;
  position: relative;
  font-weight: 500;
  padding-left: 1.5em;
}
.sbAbout .sbh h2:after {
  content: "";
  width: 1em;
  height: 1px;
  background-color: #323232;
  position: absolute;
  left: 0%;
  top: 50%;
}
.sbAbout .sbAbout_in {
  max-width: 62rem;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
}
.sbAbout .sbAbout_in > figure {
  border-radius: 0.375rem;
  overflow: hidden;
  flex: 1;
  position: relative;
}
.sbAbout .sbAbout_in > figure:before {
  content: "";
  display: block;
  width: 160%;
  height: 100%;
  background-color: #323232;
  opacity: 0.3;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  border-radius: 0.375rem;
}
.sbAbout .sbAbout_in dl {
  flex: 0 1 50%;
  font-size: 112.5%;
  font-weight: 500;
  display: block;
  margin: 0;
  padding: 0;
}
.sbAbout .sbAbout_in dl dd {
  margin: 0;
  padding: 0;
  margin-bottom: 1em;
}
.sbAbout .sbAbout_in dl dd:last-child {
  margin-bottom: 0;
}
.sbAbout .sbAbout_in dl dt {
  margin: 0;
  padding: 0;
  color: #0ABAB5;
  font-weight: 500;
  margin-bottom: 0.5em;
}
.sbAbout .sbAbout_in ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sbAbout .sbAbout_in ul li:before {
  content: "・";
}

@media screen and (max-width: 880px) {
  .sbAbout {
    padding-top: 8em;
  }
  .sbAbout .sbh {
    order: 2;
    position: relative;
    z-index: 3;
    flex: 0 1 100%;
    width: 100%;
    margin-bottom: 0;
  }
  .sbAbout .sbh h2 {
    font-size: 520%;
    margin-bottom: 1.5em;
  }
  .sbAbout .sbh .en {
    font-size: 1500%;
    margin-top: -16vw;
    text-align: center;
    color: #DAF4F3;
    margin-bottom: -0.2em;
  }
  .sbAbout .sbAbout_in {
    flex-direction: column;
    align-items: flex-start;
    max-width: none;
    width: 100%;
  }
  .sbAbout .sbAbout_in > figure {
    width: 53vw;
    margin-left: auto;
    margin-right: auto;
    order: 1;
  }
  .sbAbout .sbAbout_in dl {
    flex: 1;
    font-size: 470%;
    order: 3;
  }
  .sbAbout .sbAbout_in dl dt {
    line-height: 1;
    margin-bottom: 0.4em;
  }
}
.sbPage {
  padding-top: 10rem;
}
.sbPage .sbh {
  border-bottom: 1px solid #DAF5F4;
}
.sbPage .sbh .en {
  font-size: 562.5%;
  color: #9DE3E1;
  letter-spacing: -0.02em;
  margin-bottom: -0.4em;
}
.sbPage .sbh h2 {
  font-size: 137.5%;
  display: inline-block;
  margin-bottom: 1.6em;
  position: relative;
  padding-left: 1.5em;
}
.sbPage .sbh h2:after {
  content: "";
  width: 1em;
  height: 1px;
  background-color: #323232;
  position: absolute;
  left: 0%;
  top: 50%;
}

@media screen and (max-width: 880px) {
  .sbPage .sbh .en {
    font-size: 1560%;
    color: #DAF4F3;
    line-height: 1;
    margin-bottom: 0.1em;
  }
  .sbPage .sbh h2 {
    font-size: 520%;
    margin-bottom: 1.2em;
  }
  .sbPage {
    padding-top: 11.5rem;
  }
}
.sbPageContact {
  margin-bottom: 7em;
  border-bottom: 1px solid #0ABAB5;
}
.sbPageContact .sbc > p {
  text-align: center;
  font-weight: 500;
  font-size: 112.5%;
  margin-bottom: 3em;
}
.sbPageContact .sbc form {
  max-width: 50rem;
  margin: 0 auto;
}
.sbPageContact .sbc form label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.sbPageContact .sbc form .contactform_line {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1em;
  position: relative;
}
.sbPageContact .sbc form .contactform_line > p {
  font-weight: 500;
  font-size: 125%;
  flex: 0 1 13em;
  padding-top: 0.5em;
}
.sbPageContact .sbc form .contactform_line > p.req:after {
  content: "必須";
  color: #DC2828;
  margin-left: 3em;
  position: absolute;
  right: 1em;
  top: 0.5em;
}
.sbPageContact .sbc form .contactform_line > div {
  flex: 1;
}
.sbPageContact .sbc form .contactform_line > div input[type=text],
.sbPageContact .sbc form .contactform_line > div input[type=email],
.sbPageContact .sbc form .contactform_line > div textarea {
  border-radius: 0.375rem;
  border: 1px solid #0ABAB5;
  padding: 0.9em 1em;
  font-size: 112.5%;
  font-family: inherit;
  width: 100%;
  box-sizing: border-box;
}
.sbPageContact .sbc form .contactform_line > div textarea {
  height: 14em;
}
.sbPageContact .sbc form .contactform_line.contactform_lineAddress .postcode {
  margin-bottom: 0.9em;
  display: flex;
  align-items: center;
}
.sbPageContact .sbc form .contactform_line.contactform_lineAddress .postcode i {
  font-style: normal;
  font-size: 137.5%;
}
.sbPageContact .sbc form .contactform_line.contactform_lineAddress .postcode input {
  font-size: 112.5%;
  width: 13em;
}
.sbPageContact .sbc form .contactform_line.contactform_lineChecks > div {
  font-weight: 500;
  padding-top: 0.7em;
  padding-bottom: 0.7em;
}
.sbPageContact .sbc form .contactform_line.contactform_lineChecks > div p label {
  cursor: pointer;
}
.sbPageContact .sbc form .contactform_line.contactform_lineChecks > div p {
  font-size: 112.5%;
}
.sbPageContact .sbc form .contactform_line.contactform_lineChecks > div p input {
  width: 1.2em;
  height: 1.2em;
  margin-right: 0.5em;
}
.sbPageContact .sbc form .confirm {
  text-align: center;
  font-size: 112.5%;
  padding-top: 1em;
  padding-bottom: 2em;
  line-height: 2;
  font-weight: 500;
}
.sbPageContact .sbc form .confirm a {
  color: inherit;
}
.sbPageContact .sbc form .confirm label {
  justify-content: center;
}
.sbPageContact .sbc form .confirm input {
  width: 1.2em;
  height: 1.2em;
  margin-right: 0.5em;
  margin-top: 0.3em;
}
.sbPageContact .sbc form .buttons {
  display: flex;
  padding-left: 16em;
}
.sbPageContact .sbc form .buttons .submit {
  cursor: pointer;
  background-color: #0ABAB5;
  color: #fff;
  font-size: 1.5rem;
  border-radius: 100em;
  display: flex;
  justify-content: center;
  align-content: center;
  text-decoration: none;
  padding: 0.3em 0.4em 0.4em 0.4em;
  padding-left: 1.5em;
  width: 12em;
  border: 0;
  display: block;
  position: relative;
  text-align: left;
  font-family: inherit;
}
.sbPageContact .sbc form .buttons .submit:after {
  content: "";
  display: block;
  width: 0.4375rem;
  background-image: url(../img/pointer_right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  right: 1em;
  height: 100%;
  top: 0;
  transition: all ease 0.3s;
}
.sbPageContact .sbc form .buttons .submit {
  transition: all ease 0.3s;
}
.sbPageContact .sbc form .buttons .submit:hover {
  background-color: rgba(10, 186, 181, 0.5019607843);
}
.sbPageContact .sbc form .buttons .submit:hover:after {
  transform: translate3d(2px, 0, 0);
}

@media screen and (max-width: 880px) {
  .sbPageContact .sbc > p {
    text-align: left;
    font-size: 490%;
    margin-bottom: 1.3em;
    letter-spacing: -0.09em;
  }
  .sbPageContact .sbc form .contactform_line {
    flex-direction: column;
    margin-bottom: 5em;
  }
  .sbPageContact .sbc form .contactform_line > p {
    font-size: 525%;
    flex: 1;
    padding-top: 0em;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 0.3em;
    position: relative;
  }
  .sbPageContact .sbc form .contactform_line > p:after {
    position: absolute;
    top: 0;
    right: 0;
  }
  .sbPageContact .sbc form .contactform_line > div {
    width: 100%;
  }
  .sbPageContact .sbc form .contactform_line > div input[type=text], .sbPageContact .sbc form .contactform_line > div input[type=email], .sbPageContact .sbc form .contactform_line > div textarea {
    padding: 0.77em 1em;
    font-size: 420%;
  }
  .sbPageContact .sbc form .contactform_line.contactform_lineAddress .postcode input {
    padding: 0.77em 1em;
    font-size: 420%;
    width: 11em;
  }
  .sbPageContact .sbc form .contactform_line.contactform_lineAddress .postcode i {
    margin-right: 1em;
    font-size: 420%;
  }
  .sbPageContact .sbc form .contactform_line.contactform_lineAddress .postcode {
    margin-bottom: 3em;
  }
  .sbPageContact .sbc form .contactform_line.contactform_lineChecks {
    padding-top: 3em;
  }
  .sbPageContact .sbc form .contactform_line.contactform_lineChecks > p {
    flex: 1;
    width: 100%;
  }
  .sbPageContact .sbc form .contactform_line.contactform_lineChecks > div p {
    font-size: 500%;
  }
  .sbPageContact .sbc form .contactform_line.contactform_lineChecks > div p input {
    width: 2.5em;
    height: 2.5em;
  }
  .sbPageContact .sbc form .confirm {
    font-size: 440%;
    padding-top: 0em;
    text-align: left;
  }
  .sbPageContact .sbc form .confirm input {
    width: 2.5em;
    height: 2.5em;
  }
  .sbPageContact .sbc form .confirm label {
    justify-content: flex-start;
  }
  .sbPageContact .sbc form .buttons {
    padding-left: 0;
    justify-content: center;
  }
  .sbPageContact .sbc form .buttons .submit {
    font-size: 700%;
    padding: 0.2em 0.2em 0.3em 0.2em;
    padding-left: 1em;
    width: 9em;
  }
}
.sbPagePrivacy .sbc {
  max-width: 50rem;
  margin: 0 auto;
  font-weight: 500;
}
.sbPagePrivacy .sbc p {
  font-size: 112.5%;
}
.sbPagePrivacy .sbc h3 {
  font-size: 112.5%;
  color: #0ABAB5;
  margin-top: 2em;
}
.sbPagePrivacy .sbc h3:first-child {
  margin-top: 0;
}
.sbPagePrivacy .sbc h3 {
  margin-bottom: 0.5em;
}
.sbPagePrivacy .sbc ul {
  font-size: 112.5%;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-left: 1em;
}
.sbPagePrivacy .sbc ul li:before {
  content: "・";
  margin-left: -1em;
}
.sbPagePrivacy .sbc ol {
  font-size: 112.5%;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-left: 2em;
  counter-reset: num;
}
.sbPagePrivacy .sbc ol li {
  counter-increment: num;
}
.sbPagePrivacy .sbc ol li:before {
  content: counter(num) "、";
  margin-left: -2em;
}

@media screen and (max-width: 880px) {
  .sbPagePrivacy .sbc h3 {
    font-size: 450%;
  }
  .sbPagePrivacy .sbc p {
    font-size: 450%;
  }
  .sbPagePrivacy .sbc ul {
    font-size: 450%;
  }
  .sbPagePrivacy .sbc ol {
    font-size: 450%;
  }
}
.wpcf7-list-item {
  margin: 0;
}

@media screen and (max-width: 800px) {
  .wpcf7 form .wpcf7-response-output {
    font-size: 16px;
    line-height: 1.7;
    padding: 14px 16px;
  }
  .wpcf7-not-valid-tip {
    font-size: 15px;
    line-height: 1.5;
    margin-top: 6px;
  }
}
.sbVision {
  padding-top: 0;
  margin-top: -9em;
  padding-bottom: 14em;
}
.sbVision .sbVision_in .sbh {
  position: relative;
  padding-left: 15%;
}
.sbVision .sbVision_in .sbh .en {
  position: absolute;
  top: -1.6em;
  left: 0%;
  color: #DAF5F4;
  font-size: 1000%;
  z-index: 1;
  letter-spacing: -0.04em;
}
.sbVision .sbVision_in .sbh .ja {
  font-size: 112.5%;
  font-weight: 500;
  z-index: 2;
  position: relative;
  margin-left: -0.3em;
  margin-top: 0;
  line-height: 2.2;
}
.sbVision .sbVision_in .sbh h2 {
  width: 100%;
  font-size: 137.5%;
  position: absolute;
  font-weight: 500;
  padding-left: 1.5em;
  left: 0;
  top: 0.4em;
}
.sbVision .sbVision_in .sbh h2:after {
  content: "";
  width: 1em;
  height: 1px;
  background-color: #323232;
  position: absolute;
  left: 0%;
  top: 50%;
}

.contactform_line .wpcf7-list-item {
  display: block;
}

@media screen and (max-width: 880px) {
  .sbVision .sbVision_in .sbh .en {
    font-size: 2500%;
    top: -1.4em;
    width: 100%;
    text-align: center;
  }
  .sbVision {
    margin-top: 32em;
  }
  .sbVision .sbVision_in {
    flex-direction: column-reverse;
  }
  .sbVision .sbVision_in .sbh h2 {
    font-size: 520%;
    margin-top: 7vw;
    margin-bottom: 1.7em;
    position: unset;
    position: relative;
  }
  .sbVision .sbVision_in .sbh .ja {
    font-size: 490%;
    letter-spacing: -0.1em;
    line-height: 1.8;
  }
  .sbVision .sbVision_in .sbh {
    padding-left: 0;
    flex: 0 1 100%;
    width: 100%;
    z-index: 3;
  }
}