@charset "UTF-8";
/*-----------------
基本設定
------------------*/
html {
  scroll-behavior: smooth;
  overflow-y: scroll;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

main {
  position: relative;
}

body {
  font-size: 17px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  color: #3B3938;
  line-height: 1.76;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  background-color: #FFFFFF;
}
@media screen and (max-width: 1280px) {
  body {
    font-size: 15px;
  }
}

.inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 79.16%;
}

.inner--size-l {
  max-width: 1240px;
  margin: 0 auto;
  width: 86.11%;
}

.oneSide-margin {
  width: min(89.93%, 1440px + (100% - 1440px) / 2);
}
@media screen and (max-width: 768px) {
  .oneSide-margin {
    width: 89.333%;
    margin: 0 auto;
  }
}

.textCenter {
  text-align: center;
}

.border-dashed {
  background-image: linear-gradient(to right, #ADADAD 5px, transparent 5px);
  background-size: 10px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
}

.only-pc {
  display: block;
}

.pc-tab1280 {
  display: block;
}

.pc-tab1024 {
  display: block;
}

.tab1280 {
  display: none;
}

.tab1280-tab1024 {
  display: none;
}

.tab1280-sp {
  display: none;
}

.tab1024 {
  display: none;
}

.tab1024-sp {
  display: none;
}

.only-sp {
  display: none;
}

@media screen and (max-width: 1280px) {
  .only-pc {
    display: none;
  }
  .pc-tab1280 {
    display: block;
  }
  .pc-tab1024 {
    display: block;
  }
  .tab1280 {
    display: block;
  }
  .tab1280-tab1024 {
    display: block;
  }
  .tab1280-sp {
    display: block;
  }
  .tab1024 {
    display: none;
  }
  .tab1024-sp {
    display: none;
  }
  .only-sp {
    display: none;
  }
  .inner {
    width: 89.333%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1024px) {
  .only-pc {
    display: none;
  }
  .pc-tab1280 {
    display: none;
  }
  .pc-tab1024 {
    display: block;
  }
  .only-tab1280 {
    display: none;
  }
  .tab1280-tab1024 {
    display: block;
  }
  .tab1280-sp {
    display: block;
  }
  .only-tab1024 {
    display: block;
  }
  .tab1024-sp {
    display: block;
  }
  .only-sp {
    display: none;
  }
  .inner {
    width: 86.66%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .only-pc {
    display: none;
  }
  .pc-tab1280 {
    display: none;
  }
  .pc-tab1024 {
    display: none;
  }
  .only-tab1280 {
    display: none;
  }
  .tab1280-tab1024 {
    display: none;
  }
  .tab1280-sp {
    display: block;
  }
  .only-tab1024 {
    display: none;
  }
  .tab1024-sp {
    display: block;
  }
  .only-sp {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .inner {
    width: 89.333%;
  }
}
.bgWh {
  background-color: #FFFFFF;
}

/*==========================
ページ共通
==========================*/
/*====== 動き =====*/
.fadeUp {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fadeUp.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* ====== fadeUp + blur ====== */
.fadeBlur {
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.8s ease-out, filter 0.8s ease-out;
}

.fadeBlur.is-show {
  opacity: 1;
  filter: blur(0);
}

.l-center {
  margin-right: auto;
  margin-left: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.l-left {
  margin-left: 0;
  margin-right: auto;
}

.l-right {
  margin-right: 0;
  margin-left: auto;
}

/*================================
moreボタン
================================*/
.moreBtn {
  overflow: hidden;
  border-radius: 30px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
@media screen and (max-width: 768px) {
  .moreBtn {
    border-radius: 10px;
  }
  .moreBtn.sp-maxWidth {
    width: 100%;
  }
  .moreBtn.sp-maxWidth a {
    width: 100%;
  }
}
.moreBtn a {
  display: block;
  color: #8BC3EA;
  padding: 18px 76.5px;
  font-size: 13px;
  line-height: 1;
  font-family: "Jost", sans-serif;
  border-radius: 30px;
  border: 1px solid #8BC3EA;
  position: relative;
  text-transform: uppercase;
  overflow: hidden;
}
@media screen and (max-width: 1280px) {
  .moreBtn a {
    padding: 15px 50px;
  }
}
@media screen and (max-width: 768px) {
  .moreBtn a {
    border-radius: 10px;
  }
}
.moreBtn a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #8BC3EA;
  transform: scale(0, 1);
  transform-origin: left;
  transition: all 0.5s;
  top: 0;
  left: 0;
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .moreBtn a::after {
    border-radius: 10px;
  }
}
@media screen and (min-width: 1023.9px) {
  .moreBtn a:hover {
    color: #FFFFFF;
    transition: all 0.5s;
  }
  .moreBtn a:hover::after {
    transform: scale(1, 1);
    transition: all 0.5s;
  }
  .moreBtn a:hover .morBtn__arrow .mainArrow {
    opacity: 0;
    transition: all 0.5s;
  }
  .moreBtn a:hover .morBtn__arrow .hoverArrow {
    opacity: 1;
    transition: all 0.5s;
  }
}

.moreBtn--wh a {
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}
.moreBtn--wh a::after {
  background-color: #FFFFFF;
  z-index: 0;
}
@media screen and (min-width: 1023.9px) {
  .moreBtn--wh a:hover {
    color: #8BC3EA;
    transition: all 0.5s;
  }
}

.morBtn__arrow {
  position: absolute;
  width: 7.5px;
  height: 10px;
  top: 50%;
  right: 31.5px;
  transform: translateY(-50%);
  z-index: 2;
}
@media screen and (max-width: 1280px) {
  .morBtn__arrow {
    right: 20px;
  }
}
.morBtn__arrow .mainArrow {
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  opacity: 1;
  transition: all 0.5s;
}
.morBtn__arrow .hoverArrow {
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.5s;
}

.morBtn__txt {
  position: relative;
  z-index: 3;
}

.moreBtn--right {
  margin-left: auto;
  margin-right: 0;
}

.bl-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bl-flex__rowCenter {
  justify-content: center;
}

.bl-flex__leftAlignment {
  justify-content: flex-start;
}

.bl-flex__rightAlignment {
  justify-content: flex-end;
}

.bl-flex__topAlignment {
  align-items: flex-start;
}

.bl-flex__bottomAlignment {
  align-items: flex-start;
}

/*================================
見出し
================================*/
.bl-ttl {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.bl-ttl--left {
  margin-left: 0;
  margin-right: auto;
}

.bl-ttl--right {
  margin-left: auto;
  margin-right: 0;
}

.bl-ttl--center {
  margin-left: auto;
  margin-right: auto;
}

.bl-ttl__en {
  text-transform: uppercase;
  font-size: 20px;
  font-family: "Jost", sans-serif;
  letter-spacing: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .bl-ttl__en {
    font-size: 15px;
  }
}

.bl-ttl__ja {
  margin-top: 25px;
  font-size: 56px;
  font-weight: 700;
}
@media screen and (max-width: 1280px) {
  .bl-ttl__ja {
    font-size: 37px;
  }
}
@media screen and (max-width: 768px) {
  .bl-ttl__ja {
    font-size: 30px;
    margin-top: 0;
  }
}

.bl-ttl__underLine {
  position: absolute;
  bottom: 0;
  left: 0;
}

/*---------------------------
ページ共通
---------------------------*/
.underPage-fv {
  width: 100%;
  margin-top: 100px;
  aspect-ratio: 1/0.37;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .underPage-fv {
    margin-top: 70px;
  }
}
@media screen and (max-width: 768px) {
  .underPage-fv {
    aspect-ratio: 1/0.8;
    max-height: 700px;
  }
}

.underPage-fv__img {
  aspect-ratio: 1/0.37;
}
@media screen and (max-width: 768px) {
  .underPage-fv__img {
    aspect-ratio: 1/0.8;
    max-height: 700px;
  }
}

.bl-ttl--underPage {
  position: absolute;
  top: 50%;
  left: 6.99%;
  transform: translateY(-50%);
  color: #FFFFFF;
}

.bl-ttl__en__underPage {
  margin-top: 10px;
}

.bl-ttl__ja__underPage {
  font-size: clamp(27px, 3.81vw, 55px);
  margin-top: 0;
}

/*---------------------------
ヘッダー
---------------------------*/
.head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: fixed;
  z-index: 99;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  padding: 30px 3.68% 16px 2.77%;
  background-color: #FFFFFF;
}
@media screen and (max-width: 1024px) {
  .head {
    padding: 20px 3.68% 10px 2.77%;
    align-items: center;
  }
}

.head__topPage {
  -webkit-animation-name: headAppearAnime;
          animation-name: headAppearAnime;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  top: -100%;
}

@-webkit-keyframes headAppearAnime {
  0% {
    top: -100%;
  }
  100% {
    top: 0;
  }
}

@keyframes headAppearAnime {
  0% {
    top: -100%;
  }
  100% {
    top: 0;
  }
}
.head__logo {
  width: 92px;
}
@media screen and (max-width: 1024px) {
  .head__logo {
    width: 70px;
  }
}

.headNav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 50px;
}

.headNav-list__item {
  position: relative;
}
.headNav-list__item::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 32.5px;
  background-color: #8BC3EA;
  top: 50%;
  right: -25px;
  transform: translate(20%, -50%) rotate(32deg);
}
.headNav-list__item:last-of-type::after {
  display: none;
}

.headNav-list__ja {
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  margin: 0 auto;
}

.headNav-list__en {
  font-size: 10px;
  margin: 0 auto;
  text-align: center;
  color: #8BC3EA;
  font-family: "Jost", sans-serif;
}

.instagram-icon {
  position: absolute;
  width: 30px;
  top: 10px;
  right: 53px;
}

/*========= ハンバーガーメニュー ===============*/
.burger-nav {
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #FFFFFF;
  transition: all 0.3s;
  border-radius: 30px;
  border: 2px solid #8BC3EA;
  pointer-events: none;
}

.burger-nav__logo {
  position: absolute;
  top: 18px;
  left: calc(2.77% - 2px);
}

.burger-nav.panelactive {
  opacity: 1;
  z-index: 999;
  pointer-events: all;
}

.burger-nav.panelactive .burger-nav__listWrap {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.burger-nav .burger-nav__list {
  display: none;
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 89%;
}

.burger-nav.panelactive .burger-nav__list {
  display: block;
}

.burger-nav .burger-nav__item {
  text-align: center;
}

.burger-nav .burger-nav__item a {
  color: #3B3938;
  display: block;
  padding: 10px;
}

.headNav-list__instagram {
  width: 30px;
}

.burger-nav__address {
  margin-top: 30px;
}

.burger__address {
  line-height: 1.3;
}
.burger__address a {
  margin-top: 0;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: relative;
  z-index: 9999;
  top: 0;
  right: 0;
  cursor: pointer;
  width: 30px;
  height: 20px;
}

/*×に変化*/
.openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 0;
  height: 2px;
  background-color: #8BC3EA;
  width: 100%;
}

.openbtn1 span:nth-of-type(1) {
  top: 0;
}

.openbtn1 span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}

.openbtn1 span:nth-of-type(3) {
  bottom: 0;
}

.openbtn1.active span:nth-of-type(1) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 100%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 100%;
}

/*---------------------------
フッター
---------------------------*/
.foot {
  position: relative;
}

.foot {
  position: relative;
  background-color: #8BC3EA;
  padding: 231px 0 25px;
}
@media screen and (max-width: 1024px) {
  .foot {
    padding: 150px 0 25px;
  }
}

.upperFoot {
  min-width: 600px;
  margin: 0 auto;
  width: 59.722%;
  max-width: 960px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .upperFoot {
    min-width: 270px;
    flex-direction: column;
  }
}

.upperFoot-block {
  width: 50%;
  padding-top: 102px;
  padding-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .upperFoot-block {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  .upperFoot-block {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.upperFoot-block a:hover .upperFoot__arrow::after {
  transform: translate(-50%, -50%) scale(1.5);
  transition: all 0.7s;
}

.upperFoot-block__recruit {
  border-radius: 40px 0 0 40px;
  background-color: #6D97DB;
  border: 2px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
}
@media screen and (max-width: 768px) {
  .upperFoot-block__recruit {
    border-radius: 40px 40px 0 0;
    border-right: 2px solid #FFFFFF;
    border-bottom: 1px solid #FFFFFF;
  }
}

.upperFoot-block__contact {
  border-radius: 0 40px 40px 0;
  background-color: #3D94D0;
  border: 2px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
}
@media screen and (max-width: 768px) {
  .upperFoot-block__contact {
    border-radius: 0 0 40px 40px;
    border-left: 2px solid #FFFFFF;
    border-top: 1px solid #FFFFFF;
  }
}

.upperFoot-name {
  color: #FFFFFF;
}

.upperFoot-name__ja {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  line-height: 1.45;
}
@media screen and (max-width: 1024px) {
  .upperFoot-name__ja {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .upperFoot-name__ja {
    font-size: 10px;
  }
}

.upperFoot-name__en {
  text-align: center;
  font-family: "Jost", sans-serif;
  font-size: 55px;
  line-height: 1.43;
  text-transform: uppercase;
  letter-spacing: 0;
}
@media screen and (max-width: 1024px) {
  .upperFoot-name__en {
    font-size: 35px;
  }
}
@media screen and (max-width: 768px) {
  .upperFoot-name__en {
    font-size: 23px;
  }
}

.upperFoot__arrow {
  margin: 33px auto 0;
  background-color: #FFFFFF;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .upperFoot__arrow {
    margin: 20px auto 0;
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 768px) {
  .upperFoot__arrow {
    margin: 5px auto 0;
    width: 30px;
    height: 30px;
  }
}
.upperFoot__arrow img {
  width: 10px;
  display: block;
  height: 10.3px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.upperFoot__arrow::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.7s;
}

.foot-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.foot-content__side-l {
  width: calc(96.7% - 501px);
}
@media screen and (max-width: 1024px) {
  .foot-content__side-l {
    width: 100%;
  }
}

.foot-content__side-r {
  width: 501px;
}

.foot-logo-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 45px;
}

.foot__logo {
  width: 63px;
}

.foot__instagram a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  color: #FFFFFF;
  gap: 3px;
}

.foot__address {
  font-size: 11px;
  margin-top: 12px;
  color: #FFFFFF;
}

.foot-licenses {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  color: #FFFFFF;
}

.foot-licenses__ttl,
.foot-licenses__content {
  font-size: 11px;
  margin-top: 5px;
}

.foot-licenses__ttl {
  width: 51px;
}

.foot-licenses__content {
  width: calc(100% - 51px);
}

.footNav__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 26px;
  flex-wrap: wrap;
}

.footNav__item {
  position: relative;
}
.footNav__item:not(:nth-last-of-type(-n + 2))::after {
  content: "";
  position: absolute;
  right: -2px;
  width: 20px;
  height: 1px;
  background-color: #FFFFFF;
  top: calc(50% + 3px);
  transform: translate(100%, -50%) rotate(-45deg);
}
.footNav__item:last-of-type {
  width: 100%;
  text-align: right;
}
.footNav__item:last-of-type a {
  font-size: 15px;
  font-family: "Jost", sans-serif;
}
.footNav__item a {
  font-size: 13px;
  color: #FFFFFF;
  font-weight: 700;
}

.foot__copy {
  font-size: 12px;
  color: #FFFFFF;
  text-align: center;
  padding: 17px 0 0;
  border-top: 1px solid #FFFFFF;
  margin-top: 22px;
}

/*---------------------------
TOPページ
---------------------------*/
/*========= ローディング =========*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background: #FFFFFF;
  text-align: center;
  top: 0;
  left: 0;
}

#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-animation-name: splashLogoAnime;
  animation-name: splashLogoAnime;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  opacity: 0;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes splashLogoAnime {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes splashLogoAnime {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#splash_logo img {
  width: 130px;
}

@media screen and (max-width: 768px) {
  #splash_logo img {
    width: 100px;
  }
}
.bottom-fixed-wrap {
  width: 100%;
  position: relative;
}

.bottom-fixed-block {
  position: relative;
  width: 100%;
  will-change: transform;
}

.bottom-fixed-block.is-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

/*========= FV =========*/
.fv {
  width: 93.05%;
  height: 100vh;
  padding: 100px 0 0 auto;
  margin-left: auto;
  margin-right: 0;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .fv {
    padding-top: 71px;
  }
}

.fv-video {
  width: 100%;
  height: calc(100% - 130px);
  position: absolute;
  top: 100px;
  left: 0;
}
.fv-video video{
	object-fit: cover;
}
.video-wrap{
width: 100%;
height: 100%;
} 
@media screen and (max-width: 1024px) {
  .fv-video {
    height: calc(100% - 101px);
    top: 71px;
  }
}

.fv-video__item {
  width: 100%;
  height: 100%;
  display: block;
  image-rendering-width: 100%;
  image-rendering-height: 100%;
  image-rendering-display: block;
}

.fvTxt {
  position: absolute;
  top: 35.8%;
  left: 3.7%;
}

.fvTxt__img {
  height: 28.3%;
  width: auto;
  max-width: 46.6%;
}
@media screen and (max-width: 768px) {
  .fvTxt__img {
    height: 31.3%;
    width: auto;
    max-width: 75.6%;
  }
}

.fvTxt__img01,
.fvTxt__img02 {
  height: 50%;
  width: 100%;
}

/* 初期状態（全て非表示・右側を隠す） */
.fvTxt__img01,
.fvTxt__img02,
.fvTxt__txt {
  opacity: 0;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  transition: opacity 0.3s ease, -webkit-clip-path 1.5s ease;
  transition: clip-path 1.5s ease, opacity 0.3s ease;
  transition: clip-path 1.5s ease, opacity 0.3s ease, -webkit-clip-path 1.5s ease;
}

/* 表示トリガー */
.fvTxt.is-show .fvTxt__img01 {
  opacity: 1;
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  transition-delay: 0s;
}

.fvTxt.is-show .fvTxt__img02 {
  opacity: 1;
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

.fvTxt.is-show .fvTxt__txt {
  opacity: 1;
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

.fvTxt__img02 {
  transition-delay: 0.4s;
}

/* iOS対策（念のため） */
.fvTxt__img01,
.fvTxt__img02,
.fvTxt__txt {
  -webkit-clip-path: inset(0 100% 0 0);
}

.fvTxt__img02 {
  color: #FFFFFF;
  margin-top: 0.5em;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  transition: -webkit-clip-path 1.5s ease;
  transition: clip-path 1.5s ease;
  transition: clip-path 1.5s ease, -webkit-clip-path 1.5s ease;
  transition-delay: 0.4s;
}

.fvTxt__txt {
  color: #FFFFFF;
  margin-top: 0.5em;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  transition: -webkit-clip-path 2.5s ease;
  transition: clip-path 2.5s ease;
  transition: clip-path 2.5s ease, -webkit-clip-path 2.5s ease;
  transition-delay: 0.8s;
}

.fvTxt__en {
  font-family: "Jost", sans-serif;
  font-size: 20px;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .fvTxt__en {
    font-size: 17px;
    line-height: 1.2;
    width: 80%;
    margin-top: 20px;
  }
}

.fvTxt__ja {
  font-size: 15px;
  font-weight: 400;
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 768px) {
  .fvTxt__ja {
    font-weight: 500;
    margin-top: 10px;
  }
}
.fvTxt__ja::after {
  content: "";
  position: absolute;
  width: 32.6%;
  height: 1px;
  background-color: #FFFFFF;
  top: 50%;
  right: -12.5px;
  transform: translate(100%, -50%);
}

.playBtn {
  opacity: 0;
  -webkit-animation-name: playBtnAnime;
          animation-name: playBtnAnime;
  -webkit-animation-delay: 3.5s;
          animation-delay: 3.5s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.playBtn a {
  position: absolute;
  bottom: 28px;
  right: 3.47%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (min-width: 1023.9px) {
  .playBtn a:hover .playBtn__img img {
    scale: 1.1;
    transition: all 0.5s;
  }
}

@-webkit-keyframes playBtnAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes playBtnAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.playBtn__img {
  width: 65px;
  height: 65px;
  background-color: #8BC3EA;
  border-radius: 50%;
  padding: 16.6px 17.6px 20.6px 24.3px;
  position: relative;
  z-index: 1;
}
.playBtn__img img {
  scale: 1;
  transition: all 0.5s;
  width: 25px;
}

.playBtn__txt {
  color: #FFFFFF;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  padding: 8.5px 21px 8.5px 35px;
  background-color: #8BC3EA;
  border-radius: 30px;
  margin-left: -35px;
  position: relative;
  z-index: 0;
}

.underFv {
  position: relative;
  padding-top: 312px;
  padding-bottom: 205px;
  margin-top: -221px;
  background: linear-gradient(145deg, rgb(139, 195, 234) 0%, rgb(131, 173, 252) 100%);
}

.inner--underFv {
  max-width: unset;
}

.underFv-txt {
  color: #FFFFFF;
  width: 618px;
}
@media screen and (max-width: 768px) {
  .underFv-txt {
    width: 100%;
  }
}

.underFv-txt__size-l {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.45;
}
@media screen and (max-width: 1280px) {
  .underFv-txt__size-l {
    font-size: 30px;
  }
}
@media screen and (max-width: 768px) {
  .underFv-txt__size-l {
    font-size: 25px;
  }
}

.underFv__size-s {
  margin-top: 25px;
  line-height: 2;
}
@media screen and (max-width: 1280px) {
  .underFv__size-s {
    font-size: 15px;
  }
}

.slider {
  overflow: hidden;
  position: absolute;
  width: calc(82.4% - 618px);
  height: calc(100% - 221px);
  top: 191px;
  right: 4.4%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  max-width: 700px;
}
@media screen and (max-width: 1280px) {
  .slider {
    width: calc(82.4% - 492px);
  }
}
@media screen and (max-width: 1024px) {
  .slider {
    position: relative;
    top: unset;
    right: unset;
    width: 100vw;
    height: auto;
    aspect-ratio: 1/0.696;
    flex-direction: column;
    max-width: unset;
    max-height: 420px;
    margin-left: -6.67vw;
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .slider {
    margin-left: -5.3335vw;
  }
}

.slider__side-l,
.slider__side-r {
  display: flex;
  flex-direction: column;
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .slider__side-l,
.slider__side-r {
    flex-direction: row;
    width: 100%;
    height: 50%;
  }
}

.slider__item {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .slider__item {
    height: 100%;
    width: auto;
    aspect-ratio: 1/1;
  }
}

.slider__side-l {
  -webkit-animation: slideUp 20s linear infinite;
          animation: slideUp 20s linear infinite;
}
@media screen and (max-width: 1024px) {
  .slider__side-l {
    -webkit-animation: slideUp 15s linear infinite;
            animation: slideUp 15s linear infinite;
  }
}

.slider__side-r {
  -webkit-animation: slideDown 20s linear infinite;
          animation: slideDown 20s linear infinite;
}
@media screen and (max-width: 1024px) {
  .slider__side-r {
    -webkit-animation: slideDown 15s linear infinite;
            animation: slideDown 15s linear infinite;
  }
}

@-webkit-keyframes slideDown {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes slideDown {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}
@-webkit-keyframes slideUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes slideUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 1024px) {
  @-webkit-keyframes slideDown {
    0% {
      transform: translate(-50%, 0);
    }
    100% {
      transform: translate(0, 0);
    }
  }
  @keyframes slideDown {
    0% {
      transform: translate(-50%, 0);
    }
    100% {
      transform: translate(0, 0);
    }
  }
  @-webkit-keyframes slideUp {
    0% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(-50%, 0);
    }
  }
  @keyframes slideUp {
    0% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(-50%, 0);
    }
  }
}
.slider__item img {
  display: block;
  width: 100%;
  height: auto;
}

.bgWh-wrap {
  position: relative;
}

.bgWh-wrap__topImg {
  position: absolute;
  top: 1px;
  left: 0;
  transform: translateY(-100%);
  width: 100%;
  height: auto;
}
.bgWh-wrap__topImg img {
  max-height: 150px;
  width: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}

.bgWh {
  background-color: #FFFFFF;
}

.dome-logo {
  width: 192px;
  height: auto;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .dome-logo {
    width: 130px;
  }
}
.dome-logo img {
  margin-top: -17px;
}
@media screen and (max-width: 768px) {
  .dome-logo {
    padding-top: 30px;
  }
}

.dome-logo__txt {
  font-family: "Jost", sans-serif;
  text-align: center;
  font-size: 12px;
  line-height: 2;
  margin-top: 8px;
}
@media screen and (max-width: 1024px) {
  .dome-logo__txt {
    font-size: 10px;
    letter-spacing: 0.1em;
  }
}

.dome-txt {
  font-size: 25px;
  font-weight: 700;
  text-align: center;
  margin-top: 107px;
  letter-spacing: 0.078em;
  line-height: 1.44;
}
@media screen and (max-width: 768px) {
  .dome-txt {
    font-size: 20px;
    width: 80%;
    max-width: 305px;
    margin: 75px auto 0;
  }
}

/*========= BUSINESS =========*/
.top-business {
  margin-top: 195px;
}
@media screen and (max-width: 768px) {
  .top-business {
    margin-top: 100px;
  }
}

.bl-ttl__en__top-business {
  padding-bottom: 8px;
}

.bl-ttl__ja__top-business {
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .bl-ttl__ja__top-business {
    margin-top: 0;
  }
}

.bl-ttl__underLine__top-business {
  width: 114%;
}

.top-business__ttl-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .top-business__ttl-wrap {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .normalDocs--top-business {
    margin-top: 20px;
  }
}

.top-business__list {
  margin-top: 100px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  height: 547px;
}
@media screen and (max-width: 768px) {
  .top-business__list {
    flex-direction: column;
    gap: 120px;
    margin-top: 80px;
    height: auto;
    width: 100%;
  }
}

.top-business__item {
  width: 33.3333%;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-business__item {
    width: 95%;
    height: auto;
    aspect-ratio: 1/0.7;
    max-height: 270px;
    margin: 0 auto;
  }
}

.top-business__img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .top-business__img {
    width: 100%;
    aspect-ratio: 1/0.7;
  }
}

.top-business-columnTtl {
  position: absolute;
  top: -30px;
  right: 2.5%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: row-reverse;
}
.top-business-columnTtl .top-business-columnTtl__item:first-of-type {
  padding: 6px 4px 10px 0;
}
@media screen and (max-width: 768px) {
  .top-business-columnTtl .top-business-columnTtl__item:first-of-type {
    padding: 8px 8px 2px 8px;
  }
}
.top-business-columnTtl .top-business-columnTtl__item:last-of-type {
  padding: 6px 0 10px 4px;
}
@media screen and (max-width: 768px) {
  .top-business-columnTtl .top-business-columnTtl__item:last-of-type {
    padding: 2px 8px 8px 8px;
  }
}
@media screen and (max-width: 768px) {
  .top-business-columnTtl {
    top: -10px;
    right: unset;
    left: -15px;
    flex-direction: column;
  }
}

.top-business-columnTtl__item {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.5;
  background-color: #1B2C43;
  font-feature-settings: initial;
  color: #FFFFFF;
}
@media screen and (max-width: 1280px) {
  .top-business-columnTtl__item {
    font-size: 23px;
  }
}
@media screen and (max-width: 768px) {
  .top-business-columnTtl__item {
    font-size: 20px;
    writing-mode: unset;
  }
}

.top-business__explain-wrap {
  position: absolute;
  top: 264px;
  left: 6.77%;
}
@media screen and (max-width: 768px) {
  .top-business__explain-wrap {
    top: unset;
    left: 2.77%;
    bottom: 5%;
  }
}

.top-business-name {
  color: #FFFFFF;
}

.top-business-name__en {
  font-size: 15px;
  letter-spacing: 0;
}
@media screen and (max-width: 1024px) {
  .top-business-name__en {
    font-size: 12px;
  }
}

.top-business-name__ja {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 1280px) {
  .top-business-name__ja {
    font-size: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .top-business-name__ja {
    font-size: 25px;
  }
}

.top-business__explain-txt {
  font-size: 13px;
  color: #FFFFFF;
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  .top-business__explain-txt {
    margin-top: 15px;
    font-size: 12px;
  }
}

.top-business__gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.top-business__gradient--blue {
  background: linear-gradient(180deg, rgba(109, 151, 219, 0) 0%, rgba(109, 151, 219, 0) 20%, rgb(109, 151, 219) 100%);
}
@media screen and (max-width: 768px) {
  .top-business__gradient--blue {
    background: linear-gradient(180deg, rgba(109, 151, 219, 0) 0%, rgba(109, 151, 219, 0) 10%, rgb(109, 151, 219) 100%);
  }
}

.top-business__gradient--pale-blue {
  background: linear-gradient(180deg, rgba(109, 151, 219, 0) 0%, rgba(109, 151, 219, 0) 20%, rgb(139, 195, 234) 100%);
}
@media screen and (max-width: 768px) {
  .top-business__gradient--pale-blue {
    background: linear-gradient(180deg, rgba(109, 151, 219, 0) 0%, rgba(109, 151, 219, 0) 10%, rgb(139, 195, 234) 100%);
  }
}

.top-business__gradient--green {
  background: linear-gradient(180deg, rgba(109, 151, 219, 0) 0%, rgba(109, 151, 219, 0) 20%, rgb(22, 193, 173) 100%);
}
@media screen and (max-width: 768px) {
  .top-business__gradient--green {
    background: linear-gradient(180deg, rgba(109, 151, 219, 0) 0%, rgba(109, 151, 219, 0) 10%, rgb(22, 193, 173) 100%);
  }
}

.moreBtn--top-business {
  position: absolute;
  bottom: 30px;
  right: 5.5%;
}
@media screen and (max-width: 768px) {
  .moreBtn--top-business {
    left: 0;
    right: unset;
    bottom: -20px;
    transform: translateY(100%);
    width: 100%;
  }
  .moreBtn--top-business a {
    color: #8BC3EA;
    border: 1px solid #8BC3EA;
  }
  .moreBtn--top-business .mainArrow {
    opacity: 0;
  }
  .moreBtn--top-business .hoverArrow {
    opacity: 1;
  }
}

.top-about {
  margin-top: 100px;
  padding-bottom: 70px;
}

@media screen and (max-width: 768px) {
  .oneSide-margin--top-about {
    width: 100%;
  }
}
.top-about__mainImg {
  width: 100%;
}

.top-about-contentWrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 21px;
  margin-top: -42px;
}
@media screen and (max-width: 768px) {
  .top-about-contentWrap {
    margin-top: -20px;
  }
}

.top-about__side-l {
  width: calc(100% - 555px);
}
@media screen and (max-width: 1280px) {
  .top-about__side-l {
    width: calc(100% - 420px);
  }
}
@media screen and (max-width: 768px) {
  .top-about__side-l {
    margin-top: 20px;
    width: 100%;
  }
}

.top-about__side-r {
  width: 534px;
}
@media screen and (max-width: 1280px) {
  .top-about__side-r {
    width: 412px;
  }
}
@media screen and (max-width: 768px) {
  .top-about__side-r {
    width: 100%;
  }
}

.bl-ttl__en__top-about {
  text-align: right;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
}

.bl-ttl__underLine__top-about {
  width: 118%;
  left: 50%;
  transform: translateX(-50%);
}

.bl-ttl__ja__top-about {
  text-align: right;
}

.under-ttl--top-about {
  margin-top: 12px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .under-ttl--top-about {
    margin-top: 0;
  }
}

.under-ttl {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.078em;
  line-height: 1.45;
}

.normalDocs--top-about {
  margin-top: 48px;
  text-align: right;
  line-height: 1.47;
}
@media screen and (max-width: 1280px) {
  .normalDocs--top-about {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .normalDocs--top-about {
    text-align: left;
  }
}

.moreBtn--top-about {
  margin-top: 80px;
}
@media screen and (max-width: 1280px) {
  .moreBtn--top-about {
    margin-top: 50px;
  }
}

/*========= PHILOSOPHY =========*/
.top-philosophy {
  position: relative;
  padding: 112px 0 117px;
  background-color: #73B9E7;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .top-philosophy {
    padding: 60px 0 50px;
  }
}

.top-philosophy__bottom-img {
  width: 100%;
  position: absolute;
  bottom: 1px;
  left: 0;
  transform: translateY(100%);
}
.top-philosophy__bottom-img img {
  max-height: 150px;
  width: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}

.top-philosophy__ttl-img {
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  z-index: 0;
}

.inner--top-philosophy {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .bl-ttl--top-philosophy {
    width: 100%;
  }
}

.bl-ttl__en__top-philosophy {
  text-align: center;
  margin: 0 auto;
}

.bl-ttl__underLine__top-philosophy {
  width: 110%;
  left: 50%;
  transform: translateX(-50%);
}

.bl-ttl__ja__top-philosophy {
  font-size: 45px;
  text-align: center;
  margin: 10px auto 0;
}
@media screen and (max-width: 1280px) {
  .bl-ttl__ja__top-philosophy {
    font-size: 37px;
  }
}
@media screen and (max-width: 768px) {
  .bl-ttl__ja__top-philosophy {
    font-size: 25px;
    line-height: 1.5;
    margin-top: 30px;
  }
}

.top-philosophy-content__fixed {
  z-index: 3;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  line-height: 1;
  font-size: 20px;
  letter-spacing: 0.078em;
  color: #FFFFFF;
  border-radius: 36px;
  border: 2px solid #FFFFFF;
  padding: 15px 20px 15px 32px;
  background: linear-gradient(90deg, rgb(0, 196, 240) 0%, rgb(82, 166, 211) 100%);
}
@media screen and (max-width: 768px) {
  .top-philosophy-content__fixed {
    line-height: 1.5;
    font-size: 15px;
    border-radius: 36px;
    padding: 10px 15px 10px 22px;
  }
}

.top-philosophy__list {
  width: calc(100% - 40px);
  margin: 197px auto 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-philosophy__list {
    width: 100%;
    margin: 50px auto 0;
  }
}

.top-philosophy__item {
  position: -webkit-sticky;
  position: sticky;
  top: calc(8% + 100px);
  z-index: 1;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: calc(86.3vh - 100px);
  background-color: #FFFFFF;
  border-radius: 45px;
  padding: 4.89% 4% 6.78%;
	margin-bottom: 1px
}
.top-philosophy__item:not(:first-of-type) {
  margin-top: 180px;
}
.top-philosophy__item:nth-of-type(2) {
  margin-top: calc(-86.3vh + 125px);
}
@media screen and (max-width: 768px) {
  .top-philosophy__item:nth-of-type(2) {
    margin-top: calc(-86.3vh + 95px);
  }
}
@media screen and (max-width: 768px) {
  .top-philosophy__item {
    flex-direction: column;
    justify-content: center;
    padding: 4.89% 7% 6.78%;
  }
}

.top-philosophy__item--topTxt {
  display: block;
  padding: 0;
  background-color: unset;
  z-index: 3;
  top: calc(8% + 77px);
  height: calc(86.3vh - 100px);
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .top-philosophy__item--topTxt {
    top: calc(8% + 62px);
    height: calc(86.3vh - 60px);
  }
}

.philosophy-num-wrap {
  position: absolute;
  top: 3%;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .philosophy-num-wrap {
    z-index: 1;
  }
}

.philosophy-num {
  font-size: 152px;
  color: #6AA6CE;
  letter-spacing: 0;
  line-height: 0.75;
  font-weight: 900;
}
@media screen and (max-width: 1280px) {
  .philosophy-num {
    font-size: 120px;
  }
}
@media screen and (max-width: 768px) {
  .philosophy-num {
    font-size: 90px;
  }
}

.philosophy-numTtl {
  writing-mode: vertical-rl;
  font-feature-settings: initial;
  font-size: 21px;
  color: #6AA6CE;
  font-family: "Kanit", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 1280px) {
  .philosophy-numTtl {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .philosophy-numTtl {
    font-size: 15px;
  }
}

.philosophy-numBar {
  width: 15px;
  height: 112px;
  background-color: #6AA6CE;
}
@media screen and (max-width: 768px) {
  .philosophy-numBar {
    width: 8px;
    height: 90px;
  }
}

.top-philosophy__side-l {
  width: 43%;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .top-philosophy__side-l {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  .top-philosophy__side-l {
    width: 80%;
    max-width: 350px;
  }
}

.top-philosophy__side-r {
  width: 43%;
  padding-top: 8vh;
}
@media screen and (max-width: 1280px) {
  .top-philosophy__side-r {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .top-philosophy__side-r {
    width: 100%;
    padding-top: 30px;
  }
}

.top-philosophy__txtOnImg {
  position: absolute;
  width: 93.8%;
  bottom: -1%;
  left: -5%;
}

.top-philosophy__ttl {
  font-size: 41px;
  letter-spacing: 0;
  font-family: "Jost", sans-serif;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .top-philosophy__ttl {
    font-size: 35px;
    text-align: center;
  }
}

.top-philosophy__explain {
  font-size: 17px;
  margin-top: 13px;
}
@media screen and (max-width: 768px) {
  .top-philosophy__explain {
    font-size: 15px;
    text-align: center;
  }
}

.moreBtn--top-pholosophy {
  margin-top: 9vh;
}
@media screen and (max-width: 768px) {
  .moreBtn--top-pholosophy {
    margin: 50px auto 0;
  }
}

/*========= NEWS =========*/
.top-news {
  padding-top: 270px;
  background-color: #FFFFFF;
  padding-bottom: 319.5px;
  position: relative;
  z-index: 2;
  margin-top: -50px;
}
@media screen and (max-width: 768px) {
  .top-news {
    padding-top: 120px;
    padding-bottom: 150px;
  }
}

.bl-ttl--top-news {
  margin: 0 auto;
}

.bl-ttl__en__top-news {
  margin: 0 auto;
  text-align: center;
}

.bl-ttl__underLine__top-news {
  width: 117%;
  left: 50%;
  transform: translateX(-50%);
}

.bl-ttl__ja__top-news {
  text-align: center;
  margin: 0 auto;
}

.top-instagram {
  width: 848px;
  padding: 33px 29px;
  background-color: #FCFCFC;
  margin: 54px auto 0;
}
@media screen and (max-width: 1024px) {
  .top-instagram {
    width: 100%;
    max-width: 700px;
  }
}
@media screen and (max-width: 768px) {
  .top-instagram {
    padding: 10px;
  }
}

.instagram-images {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .instagram-images {
    gap: 10px;
  }
}

.instagram-images__item {
  width: calc(33% - 13.4px);
  aspect-ratio: 1/1;
}
@media screen and (max-width: 768px) {
  .instagram-images__item {
    width: calc(33% - 6.666px);
  }
}

/*---------------------------
ABOUTページ
---------------------------*/
.bl-ttl__underLine__pageAbout {
  width: 119.5%;
  left: 0;
}

/*=============代表挨拶=============*/
.message {
  position: relative;
  padding: 81px 0 117px;
}
@media screen and (max-width: 768px) {
  .message {
    padding: 50px 0 65px;
  }
}

.message-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.message-bg img {
  width: 100%;
  height: 100%;
  -o-object-position: bottom;
     object-position: bottom;
  -o-object-fit: fill;
     object-fit: fill;
}

.bl-ttl__en__message {
  margin: 0 auto;
  color: #FFFFFF;
}

.bl-ttl__underLine__message {
  width: 114%;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.bl-ttl__ja__message {
  text-align: center;
  color: #FFFFFF;
}

.message__content-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.19%;
  width: 82.54%;
  margin: 62px auto 0;
  min-width: 901px;
}
@media screen and (max-width: 1024px) {
  .message__content-wrap {
    min-width: unset;
    width: 100%;
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .message__content-wrap {
    margin-top: 30px;
  }
}

.message__content-side-l {
  width: 554px;
}
@media screen and (max-width: 1024px) {
  .message__content-side-l {
    width: 100%;
  }
}

.bl-subTtl--message {
  font-size: 25px;
  color: #2288C6;
  letter-spacing: 0.078em;
  line-height: 1.44;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .bl-subTtl--message {
    color: #FFFFFF;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .bl-subTtl--message {
    font-size: 17px;
  }
}

.normalDocs--message {
  color: #FFFFFF;
  margin-top: 21px;
  font-size: 15px;
}
@media screen and (max-width: 1024px) {
  .normalDocs--message {
    max-width: 500px;
    margin: 30px auto 0;
  }
}

.message__sign {
  margin-top: 13px;
  text-align: right;
  color: #FFFFFF;
  font-size: 15px;
}
@media screen and (max-width: 1024px) {
  .message__sign {
    max-width: 500px;
    margin: 30px auto 0;
  }
}

.message__content-side-r {
  width: calc(96.81% - 554px);
}
@media screen and (max-width: 1024px) {
  .message__content-side-r {
    width: 100%;
    max-width: 450px;
    margin: 30px auto;
  }
}

/*============会社概要===============*/
.company {
  padding: 77px 0 95px;
}
@media screen and (max-width: 768px) {
  .company {
    padding: 80px 0 95px;
  }
}

.bl-ttl__underLine__company {
  width: 108%;
  left: 50%;
  transform: translateX(-50%);
}

.company-table-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4.12%;
  width: 91.14%;
  margin: 57px auto 0;
}
@media screen and (max-width: 1024px) {
  .company-table-wrap {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .company-table-wrap .companyTable:last-of-type .companyTable__row:first-of-type {
    border-top: unset;
  }
}
@media screen and (max-width: 768px) {
  .company-table-wrap {
    margin-top: 50pxz;
  }
}

.companyTable {
  display: block;
  width: 47.94%;
}
@media screen and (max-width: 1024px) {
  .companyTable {
    width: 100%;
  }
}

.companyTable__body {
  display: block;
  width: 100%;
}
.companyTable__body .companyTable__row:first-of-type {
  border-top: 1px dashed #707070;
}

.companyTable__row {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 30px;
  border-bottom: 1px dashed #707070;
}
@media screen and (max-width: 768px) {
  .companyTable__row {
    flex-direction: column;
    gap: 0;
  }
}

.companyTable__head {
  padding: 39px 0 39px 9px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  width: 130px;
}
@media screen and (max-width: 768px) {
  .companyTable__head {
    padding: 20px 10px 5px;
    width: 100%;
  }
}

.companyTable__data {
  padding: 39px 0;
  font-size: 15px;
  letter-spacing: 0;
  line-height: 1.4;
	width: calc(100% - 160px);
}
@media screen and (max-width: 768px) {
  .companyTable__data {
    padding: 5px 10px 20px;
    width: 100%;
  }
}

/*=============沿革==============*/
.history {
  padding: 66px 0 176px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .history {
    padding: 50px 0 80px;
  }
}

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

.bl-ttl__underLine__history {
  width: 123%;
  left: 50%;
  transform: translate(-50%, 20%);
}

.history-list {
  margin: 45px auto 0;
  width: 979px;
}
@media screen and (max-width: 1280px) {
  .history-list {
    width: 100%;
  }
}

.history-list__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 19px 20px 19px 25px;
  background: linear-gradient(90deg, rgb(223, 240, 239) 0%, rgb(255, 255, 255) 100%);
  gap: 36px;
  border-radius: 13px;
}
.history-list__item:not(:first-of-type) {
  margin-top: 9px;
}
@media screen and (max-width: 1024px) {
  .history-list__item {
    gap: 32px;
  }
}
@media screen and (max-width: 768px) {
  .history-list__item {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
  }
}

.history-year {
  font-size: 39px;
  font-family: "Jost", sans-serif;
  line-height: 1;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .history-year {
    font-size: 32px;
  }
}

.history-content {
  font-size: 15px;
  line-height: 1;
}
@media screen and (max-width: 1280px) {
  .history-content {
    line-height: 1.46;
  }
}

/*==============実績=============*/
.bg-dustyBlue {
  background-color: #BBCDD9;
}

.works {
  position: relative;
  padding-top: 105px;
}

.works-topImg {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-28.85%);
  width: 24.3%;
  max-width: 400px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .works-topImg {
    width: 36.3%;
    max-width: 180px;
  }
}

.works-sign {
  position: absolute;
  top: 94px;
  width: 100%;
  left: 0;
  z-index: 1;
}

.bl-ttl--works {
  z-index: 2;
  position: relative;
}

.bl-ttl__underLine__works {
  width: 118%;
  left: 50%;
  transform: translateX(-50%);
}

.oneSide-margin--works {
  position: relative;
  z-index: 3;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3.1%;
  margin-top: 75px;
}
@media screen and (max-width: 768px) {
  .oneSide-margin--works {
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
  }
}

.works-img {
  width: 43.65%;
}
@media screen and (max-width: 768px) {
  .works-img {
    width: 100vw;
    aspect-ratio: 1/0.45;
  }
  .works-img img {
    aspect-ratio: 1/0.45;
  }
}

.works-content {
  width: 53.25%;
}
@media screen and (max-width: 768px) {
  .works-content {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .works-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
}

.works-list__item {
  position: relative;
  letter-spacing: 0;
  padding-left: 15px;
}
.works-list__item::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.worksTxt {
  margin-top: 45px;
}

/*=============アクセス==============*/
.access {
  margin-top: 80px;
  padding-bottom: 90px;
}

.oneSide-margin--access {
  margin-left: auto;
}

.access-content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.access-content__side-l {
  width: 330px;
}
@media screen and (max-width: 768px) {
  .access-content__side-l {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}

.bl-ttl__underLine__works {
  width: 115%;
  left: 50%;
  transform: translateX(-50%);
}

.access-detail-wrap {
  margin-top: 51px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 6px;
}
@media screen and (max-width: 768px) {
  .access-detail-wrap {
    width: 100%;
    margin-top: 30px;
  }
}

.access-detail {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.access-detail__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.access-detail__icon--addresss {
  width: 12px;
  height: auto;
  margin-right: 9px;
}

.access-detail__txt {
  font-size: 17px;
}

.access-detail__icon--tel {
  width: 14px;
  height: auto;
  margin-right: 8px;
}

.access-detail__icon--fax {
  width: 14px;
  height: auto;
  margin-right: 8px;
}

.access-content__side-r {
  width: calc(100% - 330px);
  aspect-ratio: 1/0.356;
  max-height: 390px;
}
@media screen and (max-width: 1024px) {
  .access-content__side-r {
    aspect-ratio: 1/0.5;
  }
}
@media screen and (max-width: 768px) {
  .access-content__side-r {
    width: 100vw;
    margin-top: 30px;
  }
}
.access-content__side-r iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/*=============グループ紹介==============*/
.bg-skyBlue {
  padding: 155px 0 228px;
  background-color: #0099FF;
  color: #FFFFFF;
}
@media screen and (max-width: 1024px) {
  .bg-skyBlue {
    padding-top: 80px;
  }
}

.bl-ttl__underLine--groupCompany {
  width: 113%;
  left: 50%;
  transform: translateX(-50%);
}

.bl-ttl__en--groupCompany {
  margin: 0 auto;
  text-align: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.groupCompany-list {
  margin-top: 93px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 3.1%;
}
@media screen and (max-width: 1024px) {
  .groupCompany-list {
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .groupCompany-list {
    gap: 30px;
    flex-direction: column;
  }
}

.groupCompany-list__item {
  width: 31.2666%;
  aspect-ratio: 1/0.95;
  border: 1.5px solid #FFFFFF;
  position: relative;
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .groupCompany-list__item {
    width: 100%;
    aspect-ratio: unset;
    padding-bottom: 30px;
  }
}

.groupCompany-head {
  font-size: clamp(10px, 0.83vw, 14px);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 2.5% 4.3%;
  border: 1.5px solid #FFFFFF;
  margin: -1.5px auto 0;
  font-family: "Jost", sans-serif;
  line-height: 1;
  letter-spacing: 0;
  border-radius: 0 0 10px 10px;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .groupCompany-head {
    font-size: 12px;
    padding: 5px 20px;
  }
}

.groupCompany-ttl {
  font-size: clamp(14px, 1.18vw, 20px);
  margin-top: 4.4%;
  position: relative;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  letter-spacing: 0;
  padding-bottom: 3.5%;
}
@media screen and (max-width: 768px) {
  .groupCompany-ttl {
    font-size: 17px;
    margin-top: 20px;
    padding-bottom: 20px;
  }
}

.groupCompany-ttl__speakBubble {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  transform: translateY(100%);
}

.groupCompany-icon {
  height: 22.4%;
  margin: 13.9% auto 0;
  width: auto;
}
.groupCompany-icon img {
  width: auto;
  height: 100%;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .groupCompany-icon {
    margin: 50px auto 0;
    width: 51px;
  }
  .groupCompany-icon img {
    width: 100%;
    height: auto;
  }
}

.groupCompany-num {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: 8.5%;
}
@media screen and (max-width: 768px) {
  .groupCompany-num {
    margin-top: 30px;
  }
}

.groupCompany-num__num {
  font-size: clamp(45px, 5.83vw, 98px);
  line-height: 0.7;
  font-weight: 300;
  font-family: "Jost", sans-serif;
}

.groupCompany-num__unit {
  font-size: clamp(20px, 1.7vw, 28px);
  letter-spacing: 0;
  line-height: 1;
}

.groupCompany-card {
  position: relative;
  border-radius: 45px;
  background-color: #FAFAFA;
  width: 992px;
  margin: -155px auto 0;
  padding: 68px 38.5px 44px;
}
@media screen and (max-width: 1280px) {
  .groupCompany-card {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .groupCompany-card {
    border-radius: 30px;
    padding: 45px 20px;
  }
}

.groupCompany-card__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5px 18px 15px;
  border-top: 1px dashed #707070;
}
.groupCompany-card__item:last-of-type {
  border-bottom: 1px dashed #707070;
}
@media screen and (max-width: 1024px) {
  .groupCompany-card__item {
    display: block;
  }
}

.groupCompany-name {
  width: 401px;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1.6;
}
@media screen and (max-width: 1280px) {
  .groupCompany-name {
    font-size: 18px;
    width: 342px;
  }
}
@media screen and (max-width: 1024px) {
  .groupCompany-name {
    width: 100%;
  }
}

.groupCompany-info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  line-height: 1.6;
  width: calc(100% - 437px);
  font-weight: 400;
}
@media screen and (max-width: 1280px) {
  .groupCompany-info {
    width: calc(100% - 378px);
  }
}
@media screen and (max-width: 1024px) {
  .groupCompany-info {
    width: 100%;
    margin-top: 10px;
  }
}

.groupCompany-info__block {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.groupCompany-info__block--address {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .groupCompany-info__block--address {
    align-items: flex-start;
  }
}

.groupCompany-info__icon {
  width: 14px;
  height: auto;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.groupCompany-info__icon--address {
  width: 12px;
  margin-right: 11px;
}
@media screen and (max-width: 768px) {
  .groupCompany-info__icon--address {
    margin-top: 6px;
  }
}

.groupCompany-info__txt span {
  font-family: "Jost", sans-serif;
}

.groupCompany-info__block--tel {
  margin-right: 25px;
}

.groupCompany-siteLink {
  margin: 25px auto 0;
  width: 100%;
  background-color: #FFFFFF;
  border-radius: 20px;
}
.groupCompany-siteLink a {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
  border-radius: 20px;
  padding: 26px 0;
}
@media screen and (max-width: 768px) {
  .groupCompany-siteLink a {
    padding: 12px 0 20px;
    gap: 10px;
    flex-direction: column;
  }
}

.groupCompany-siteLink__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 32.4px;
  width: 11px;
  height: auto;
  display: flex;
}
@media screen and (max-width: 768px) {
  .groupCompany-siteLink__arrow {
    right: 20px;
  }
}

.groupCompany-siteLink__img {
  width: 27.24%;
}
@media screen and (max-width: 768px) {
  .groupCompany-siteLink__img {
    width: 180px;
  }
}

.groupCompany-siteLink__txt {
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  font-family: "Jost", sans-serif;
}
@media screen and (max-width: 768px) {
  .groupCompany-siteLink__txt {
    font-size: 15px;
  }
}

/*=============グループ沿革==============*/
.groupHistory {
  margin-top: 94px;
}
@media screen and (max-width: 768px) {
  .groupHistory {
    margin-top: 80px;
  }
}

.bl-ttl__underLine__groupHistory {
  width: 113%;
  bottom: -5px;
}

.history-list__item--groupHistory {
  background: linear-gradient(90deg, rgb(129, 208, 203) 0%, rgb(152, 211, 255) 100%);
  color: #FFFFFF;
}
.history-list__item--groupHistory .history-year {
  line-height: 1.46;
}
.history-list__item--groupHistory .history-content {
  line-height: 1.46;
}

/*=============SDGs==============*/
.sdgs {
  padding: 85px 0 257px;
  position: relative;
  margin-top: 200px;
}
@media screen and (max-width: 1024px) {
  .sdgs {
    padding: 75px 0 180px;
    margin-top: 80px;
  }
}

.sdgs-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.sdgs-bg img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
}

.sdgs__content {
  width: 88.9%;
  margin: 0 auto;
}

.sdgs-ttl {
  width: 59.5%;
}
@media screen and (max-width: 768px) {
  .sdgs-ttl {
    width: 80%;
  }
}

.sdgs__list {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 2.5%;
  margin-top: 41px;
}
@media screen and (max-width: 580px) {
  .sdgs__list {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    width: 330px;
    margin: 40px auto;
  }
}

.sdgs__item {
  width: 14.79%;
  min-width: 120px;
  max-width: 200px;
}
@media screen and (max-width: 768px) {
  .sdgs__item {
    width: 14.79%;
    min-width: 100px;
    max-width: 150px;
  }
}

.sdgs__txt {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.087em;
  line-height: 1;
  color: #FFFFFF;
  margin-top: 21px;
}
@media screen and (max-width: 1024px) {
  .sdgs__txt {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .sdgs__txt {
    line-height: 1.7;
  }
}

/*============================
    BUSINESS
============================*/
.business {
  padding: 95px 0 385px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .business {
    padding: 80px 0 180px;
  }
}

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

.business__list {
  display: flex;
  flex-direction: column;
  gap: 164px;
}
@media screen and (max-width: 1024px) {
  .business__list {
    gap: 80px;
  }
}

.business__item {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .business__item {
    padding-top: 10px;
  }
}
.business__item:nth-of-type(odd) .oneSide-margin--business {
  margin-right: auto;
  margin-left: 0;
}
@media screen and (max-width: 1024px) {
  .business__item:nth-of-type(odd) .oneSide-margin--business {
    margin-left: auto;
  }
}
.business__item:nth-of-type(odd) .business__sideLine {
  right: 0;
}
.business__item:nth-of-type(odd) .business-img::after {
  right: 0;
  transform: translateX(100%);
}
.business__item:nth-of-type(odd) .business-img .business-num {
  right: 0;
  transform: translateX(100%);
}
.business__item:nth-of-type(even) .oneSide-margin--business {
  margin-right: 0;
  margin-left: auto;
  flex-direction: row-reverse;
}
@media screen and (max-width: 1024px) {
  .business__item:nth-of-type(even) .oneSide-margin--business {
    margin-right: auto;
  }
}
.business__item:nth-of-type(even) .business__sideLine {
  left: 0;
}
.business__item:nth-of-type(even) .business-img::after {
  left: 0;
  transform: translateX(-100%);
}
.business__item:nth-of-type(even) .business-img .business-num {
  left: 0;
  transform: translateX(-100%) rotate(180deg);
}

.oneSide-margin--business {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}
@media screen and (max-width: 1280px) {
  .oneSide-margin--business {
    gap: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .oneSide-margin--business {
    display: block;
    width: 89.333%;
  }
}

.business__sideLine {
  position: absolute;
  width: 6.38%;
  height: auto;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .business__sideLine {
    position: absolute;
    width: 100%;
    height: auto;
    top: 0;
    transform: translateY(-100%) rotate(180deg);
  }
}

.business-img {
  width: calc(100% - 640px);
  position: relative;
}
.business-img::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 100%;
  background-color: #73B9E7;
  top: 0;
}
@media screen and (max-width: 1280px) {
  .business-img {
    width: calc(100% - 500px);
  }
}
@media screen and (max-width: 1024px) {
  .business-img {
    width: 80%;
    max-width: 400px;
    margin: 30px auto 0;
  }
}

.business-num {
  writing-mode: vertical-lr;
  font-size: 15px;
  line-height: 1.5;
  color: #FFFFFF;
  background-color: #73B9E7;
  padding: 10px 5.5px;
  font-feature-settings: initial;
  position: absolute;
  top: 0;
  border-radius: 4px;
  font-family: "Jost", sans-serif;
}
@media screen and (max-width: 768px) {
  .business-num {
    font-size: 12px;
  }
}

.business-content {
  width: 571px;
}
@media screen and (max-width: 1280px) {
  .business-content {
    width: 450px;
  }
}
@media screen and (max-width: 1024px) {
  .business-content {
    width: 100%;
  }
}

.business-ttl {
  color: #5E9CC4;
}
@media screen and (max-width: 1024px) {
  .business-ttl {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
  }
}

.business-ttl__en {
  font-family: "Jost", sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .business-ttl__en {
    text-align: center;
  }
}

.business-ttl__ja {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (max-width: 1280px) {
  .business-ttl__ja {
    font-size: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .business-ttl__ja {
    text-align: center;
    font-size: 23px;
  }
}

.business-subTtl {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.078em;
  line-height: 1.44;
  margin-top: 12px;
}
@media screen and (max-width: 1280px) {
  .business-subTtl {
    font-size: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .business-subTtl {
    font-size: 18px;
    font-size: 18px;
    text-align: center;
    margin-top: 30px;
  }
}

.normalDocs--business {
  margin-top: 48.5px;
  font-size: 13px;
}
@media screen and (max-width: 1024px) {
  .normalDocs--business {
    max-width: 440px;
    margin: 30px auto 0;
  }
}

/*============================
    RECRUIT
============================*/
.recruit {
  padding: 102px 0 285px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .recruit {
    padding: 80px 0 180px;
  }
}
@media screen and (max-width: 768px) {
  .recruit {
    padding-bottom: 120px;
  }
}

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

.recruit__card {
  background-color: #F0F0F0;
  padding: 46px 0 68px;
  width: 82.89%;
  margin: 0 auto;
  min-width: 900px;
  border-radius: 37px;
}
@media screen and (max-width: 1024px) {
  .recruit__card {
    width: 100%;
    min-width: unset;
  }
}
@media screen and (max-width: 768px) {
  .recruit__card {
    padding: 30px 0 45px;
    border-radius: 25px;
  }
}

.recruit-ttl {
  font-family: "Jost", sans-serif;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.5;
  color: #5E9CC4;
}
@media screen and (max-width: 1024px) {
  .recruit-ttl {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
  }
}

.recruit-ttl__en {
  font-family: "Jost", sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: center;
}

.recruit-ttl__ja {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  margin-top: 5px;
}
@media screen and (max-width: 1280px) {
  .recruit-ttl__ja {
    font-size: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-ttl__ja {
    font-size: 23px;
  }
}

.recruitTable {
  margin: 50px auto 0;
  width: 87.4%;
}

.recruitTable__body {
  display: block;
  width: 100%;
}

.recruitTable__row {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px dashed #707070;
}
@media screen and (max-width: 768px) {
  .recruitTable__row {
    display: block;
    padding: 20px 15px;
  }
}
.recruitTable__row:first-of-type {
  border-top: 1px dashed #707070;
}

.recruitTabele__head {
  width: 181px;
  min-height: 90px;
  padding: 15px 0 15px 40px;
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .recruitTabele__head {
    width: 141px;
    min-height: 80px;
    padding: 10px 0 10px 30px;
  }
}
@media screen and (max-width: 768px) {
  .recruitTabele__head {
    padding: 0;
    min-height: unset;
    width: 100%;
  }
}
.recruitTabele__head::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 27px;
  width: 6px;
  height: 25px;
  background-color: #73B9E7;
}
@media screen and (max-width: 1024px) {
  .recruitTabele__head::before {
    left: 15px;
  }
}
@media screen and (max-width: 768px) {
  .recruitTabele__head::before {
    left: -10px;
    width: 5px;
    height: 20px;
  }
}

.recruitTable__data {
  min-height: 90px;
  width: calc(100% - 181px);
  font-size: 13px;
  line-height: 1.53;
  padding: 15px 40px 15px 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .recruitTable__data {
    min-height: 80px;
    width: calc(100% - 141px);
    padding: 10px 30px 10px 0;
  }
}
@media screen and (max-width: 768px) {
  .recruitTable__data {
    padding: 10px 0 0;
    width: 100%;
    min-height: unset;
  }
}

.recruit__txt {
  margin-top: 55px;
  text-align: center;
  font-size: 15px;
}

.recruitBtn {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 18px;
  margin: 30px auto 0;
  width: 87.4%;
}
@media screen and (max-width: 768px) {
  .recruitBtn {
    flex-direction: column;
    gap: 5px;
  }
}

.recruitBtn__item {
  width: calc(50% - 9px);
  color: #FFFFFF;
  aspect-ratio: 1/0.175;
}
@media screen and (max-width: 1024px) {
  .recruitBtn__item {
    aspect-ratio: 1/0.2;
  }
}
@media screen and (max-width: 768px) {
  .recruitBtn__item {
    width: 100%;
    aspect-ratio: 1/0.175;
  }
}
.recruitBtn__item a {
  width: 100%;
  display: flex;
  align-items: center;
  height: 100%;
  font-family: "Jost", sans-serif;
  font-size: 31px;
  letter-spacing: 0;
  line-height: 1;
  justify-content: center;
  text-transform: uppercase;
  position: relative;
  background-color: #5E9CC4;
  border-radius: 14px;
  border: 2px solid #FFFFFF;
}
@media screen and (max-width: 1024px) {
  .recruitBtn__item a {
    font-size: 28px;
  }
}
.recruitBtn__item a:hover .recruitBtn__arrow::after {
  transform: translate(-50%, -50%) scale(1.5);
  transition: all 0.7s;
}

.recruitBtn__arrow {
  position: absolute;
  top: 50%;
  right: 6.58%;
  transform: translateY(-50%);
  width: 6.93%;
  aspect-ratio: 1/1;
  background-color: #FFFFFF;
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .recruitBtn__arrow {
    width: 10%;
  }
}
.recruitBtn__arrow img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: auto;
  transform: translate(-50%, -50%);
}
.recruitBtn__arrow::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.7s;
}

.recruitBtn__item--tel a {
  padding-left: 12%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}
@media screen and (max-width: 1024px) {
  .recruitBtn__item--tel a {
    padding-left: 10%;
    gap: 8px;
  }
}

.recruitBtn__tel-icon {
  width: 28px;
  height: auto;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .recruitBtn__tel-icon {
    width: 20px;
  }
}

.recruitBtn__telNum {
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .recruitBtn__telNum {
    font-size: 23px;
  }
}

.recruitBtn__manager {
  position: absolute;
  font-size: 12px;
  bottom: 27%;
  right: 5%;
}
@media screen and (max-width: 1024px) {
  .recruitBtn__manager {
    right: 3%;
  }
}

.upperFoot-block--pageRecruit {
  border-radius: 40px;
}
@media screen and (max-width: 1024px) {
  .upperFoot-block--pageRecruit {
    border-radius: 20px;
  }
}

/*---------------------------
CONTACTページ
---------------------------*/
.contact {
  margin-top: 290px;
  margin-bottom: 325px;
  aspect-ratio: unset;
  max-height: unset;
}
@media screen and (max-width: 1280px) {
  .contact {
    margin-top: 130px;
    margin-bottom: 200px;
  }
}

.inner--contact {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 1280px) {
  .inner--contact {
    flex-direction: column;
    gap: 50px;
  }
}

.contact__side-l {
  width: 418px;
  margin-top: 45px;
}
@media screen and (max-width: 1280px) {
  .contact__side-l {
    width: 100%;
    margin-top: 0;
  }
}

.bl-ttl--contactPage {
  position: relative;
  top: unset;
  left: unset;
  transform: unset;
}
.bl-ttl--contactPage .bl-ttl__ja__underPage {
  color: #3B3938;
}
.bl-ttl--contactPage .bl-ttl__underPage {
  color: #3B3938;
}

.formExplain {
  font-size: 15px;
  margin-top: 75px;
}
@media screen and (max-width: 1280px) {
  .formExplain {
    margin-top: 50px;
    text-align: center;
  }
}

.contact__side-r {
  width: calc(100% - 448px);
}
@media screen and (max-width: 1280px) {
  .contact__side-r {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
  }
}

.contactForm {
  width: 100%;
  background: linear-gradient(135deg, rgb(145, 209, 248) 0%, rgb(119, 198, 255) 25%, rgb(74, 177, 196) 65%, rgb(0, 140, 181) 100%);
  border-radius: 26px;
  padding: 50px 2.5%;
}
@media screen and (max-width: 1280px) {
  .contactForm {
    padding: 50px 5%;
  }
}
@media screen and (max-width: 768px) {
  .contactForm {
    padding: 30px 25px;
  }
}

.formDl {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 30px;
}
@media screen and (max-width: 1280px) {
  .formDl {
    display: block;
  }
}
.formDl.formDl-flexStart {
  align-items: flex-start;
}
@media screen and (max-width: 1280px) {
  .formDl.formDl-flexStart {
    display: block;
  }
}

.formDt {
  width: 187px;
}
@media screen and (max-width: 1280px) {
  .formDt {
    width: 100%;
    justify-content: flex-start;
  }
}

.formTtl {
  font-size: 15px;
  letter-spacing: 0.075em;
  font-weight: 700;
  color: #FFFFFF;
  text-align: right;
  margin-top: 3.8px;
}
@media screen and (max-width: 1280px) {
  .formTtl {
    text-align: left;
  }
}

.formDd {
  width: calc(95% - 187px);
  margin-left: 20px;
}
@media screen and (max-width: 1280px) {
  .formDd {
    width: 100%;
    margin-left: 0;
    margin-top: 0;
  }
}

.radioBtn-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px;
}
@media screen and (max-width: 1280px) {
  .radioBtn-wrap {
    margin-top: 10px;
    gap: 12px;
  }
}

input[type=radio] {
  position: relative;
  width: 13px;
  height: 13px;
  background-color: #FFFFFF;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: baseline;
	margin-right: 5px;
}

input[type=radio]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 7.5px;
  height: 7.5px;
  background: #6D97DB;
  content: "";
}

.radioBtn {
  margin-right: 3%;
  color: #3B3938;
  font-size: 15px;
  color: #FFFFFF;
  line-height: 1.2;
  display: flex;
  align-items: baseline;
  gap: 8px;
	flex-wrap: wrap;
}
.radioBtn:last-of-type {
  margin-right: 0;
}
@media screen and (max-width: 1280px) {
  .radioBtn {
    font-size: 15px;
    display: flex;
    gap: 5px;
    width: 100%;
    align-items: baseline;
  }
}

@media screen and (max-width: 1280px) {
  .radioBtn-wrap__contactMethod {
    display: block;
  }
}
.formDl--radioBtn .formTtl {
  margin-top: 0;
}

input[type=text],
input[type=email],
textarea {
  padding: 5px 10px;
  background-color: #FFFFFF;
  border-radius: 4px;
  color: #3B3938;
  width: 100%;
  font-size: 15px;
}

textarea {
  height: 217px;
}
@media screen and (max-width: 768px) {
  textarea {
    height: 170px;
  }
}

input[type=text].postCode {
  width: 165px;
  margin-right: 18px;
}
@media screen and (max-width: 768px) {
  input[type=text].postCode {
    margin-right: 15px;
    width: 120px;
  }
}

.prefectures {
  padding: 13px 30px;
  background-color: #FFFFFF;
  border-radius: 30px;
  color: #3B3938;
  width: 165px;
}
@media screen and (max-width: 1280px) {
  .prefectures {
    padding: 5.3px 18px;
    font-size: 11px;
    width: 120px;
  }
}

.selectbox {
  position: relative;
}
.selectbox::after {
  content: "";
  position: absolute;
  width: 9.4px;
  height: 9.4px;
  border-bottom: 2px solid #9B9A9A;
  border-right: 2px solid #9B9A9A;
  top: 50%;
  right: 17.5px;
  pointer-events: none;
  transform: translateY(-50%) rotate(45deg);
}

.formAdress__upper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.restAddress {
  margin-top: 12px;
}

input[type=file] {
  color: #3B3938;
}

.fileTxt {
  margin-top: 11px;
  font-size: 12px;
  color: #3B3938;
}

.formDl__file {
  align-items: flex-start;
}

input[type=checkbox] {
  position: relative;
  width: 14px;
  height: 14px;
  border: 2px solid #FFFFFF;
  vertical-align: -2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=checkbox]:checked:before {
  position: absolute;
  top: 1px;
  left: 4px;
  transform: rotate(50deg);
  width: 4px;
  height: 8px;
  border-right: 2px solid #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
  content: "";
}

.privacy-wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px auto 30px;
  color: #FFFFFF;
  font-size: 15px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.form--policyLink {
  text-decoration: underline;
  color: #FFFFFF;
}

.submit {
  overflow: hidden;
  border-radius: 30px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .submit {
    border-radius: 10px;
    min-width: 180px;
    text-align: center;
  }
  .submit.sp-maxWidth {
    width: 100%;
  }
  .submit.sp-maxWidth a {
    width: 100%;
  }
}
.submit .submitBtn {
  display: block;
  color: #FFFFFF;
  font-size: 17px;
  line-height: 1;
  font-family: "Jost", sans-serif;
  border-radius: 30px;
  border: 1px solid #FFFFFF;
  position: relative;
  text-transform: uppercase;
  overflow: hidden;
  z-index: 2;
}

button, [type="button"], [type="reset"], [type="submit"]{
  padding: 18px 76.5px;
	display: block;
}
@media screen and (max-width: 1280px) {
	
	button, [type="button"], [type="reset"], [type="submit"]{
	  padding: 15px 50px;
		display: block;
	}
}
@media screen and (max-width: 768px) {
	
	button, [type="button"], [type="reset"], [type="submit"]{
	  padding: 15px 50px;
		border-radius: 10px;
	}
}
.submit .submitBtn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  transform: scale(0, 1);
  transform-origin: left;
  transition: all 0.5s;
  top: 0;
  left: 0;
  border-radius: 30px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .submit .submitBtn::after {
    border-radius: 10px;
  }
}
@media screen and (min-width: 1023.9px) {
  .submit .submitBtn:hover {
    color: #8BC3EA;
    transition: all 0.5s;
  }
  .submit .submitBtn:hover::after {
    transform: scale(1, 1);
    transition: all 0.5s;
  }
  .submit .submitBtn:hover .submitArrow .mainArrow {
    opacity: 0;
    transition: all 0.5s;
  }
  .submit .submitBtn:hover .submitArrow .hoverArrow {
    opacity: 1;
    transition: all 0.5s;
  }
}

.submitArrow {
  position: absolute;
  width: 7.5px;
  height: 10px;
  top: 50%;
  right: 31.5px;
  transform: translateY(-50%);
  z-index: 2;
}
@media screen and (max-width: 1280px) {
  .submitArrow {
    right: 20px;
  }
}
.submitArrow .mainArrow {
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  opacity: 1;
  transition: all 0.5s;
}
.submitArrow .hoverArrow {
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.5s;
}

.birtyday-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.birthday-input {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  margin-right: 10px;
  color: #FFFFFF;
}
@media screen and (max-width: 960px) {
  .birthday-input {
    margin-right: 8px;
  }
}

input[type=text].birthday {
  margin-right: 5px;
}
@media screen and (max-width: 960px) {
  input[type=text].birthday {
    margin-right: 13px;
  }
}

input[type=text].birthday-year {
  width: 125px;
}
@media screen and (max-width: 960px) {
  input[type=text].birthday-year {
    width: 88px;
  }
}

input[type=text].birthday-month,
input[type=text].birthday-date {
  width: 85px;
}
@media screen and (max-width: 960px) {
  input[type=text].birthday-month,
input[type=text].birthday-date {
    width: 56px;
  }
}

.inner--policy {
  background-color: #8BC3EA;
  border-radius: 30px;
  padding: 100px 0;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .inner--policy {
    padding: 30px 0;
    border-radius: 14px;
    margin-top: 50px;
  }
}

.policy-card {
  background-color: #FFFFFF;
  border-radius: 30px;
  width: 83%;
  margin: 0 auto;
  padding: 50px 3%;
}
@media screen and (max-width: 768px) {
  .policy-card {
    width: 90%;
    padding: 30px 20px;
    border-radius: 14px;
  }
}

.bl-ttl__underLine__policyPage {
  bottom: -7px;
}

label[for] {
  cursor: pointer;
  display: block;
  width: calc(100% - 20px);
}


/*=========================
thanksページ
==========================*/
.inner--thanks {
  display: block;
}

.contact__side-l.contact__side-l--thanks {
  width: 100%;
}

.bl-ttl__en.bl-ttl__en--thanks {
  margin-left: auto;
  margin-right: auto;
}

.formExplain--thanks {
  text-align: center;
}

.moreBtn--thanks {
  margin: 80px auto 0;
}
@media screen and (max-width: 768px) {
  .moreBtn--thanks {
    margin: 50px auto 0;
  }
}

.morBtn__txt--thanks {
  text-align: center;
}

/*===============================
404エラーページ
===============================*/
.error-page__content{
		padding: 150px 0 300px;
		margin-top: 80px;
		background-color: #fff;
		position: relative;
		z-index: 3;
		color: #3D94D0;
	}
	
	.error-page__ttl{
      font-size: 40px;
      font-weight: 700;
	}
	@media screen and (max-width: 768px) {
		.error-page__content{
		margin-top: 50px;
	}
	
		.error-page__ttl{
			font-size: 30px;
			font-weight: 700;
		}
	}

.wpcf7-spinner{
  display: none!important;
}

.submit-wrap{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

div.screen-reader-response{
  display: none;
}

.wpcf7-not-valid-tip{
font-size: 12px;
}

.confirm .formDd{
color: #fff;
}

.wpcf7 form .wpcf7-response-output{
text-align: center;
}

.formDt--content{
	position: relative;
}
.formDt--content .formTtl--content{
	position: absolute; 
	top: 0;
    right: 0;
}

::placeholder{
	color: #c8c8c8;
}

.textCounter{
color: #ffffff;
}
#sb_instagram.sbi_width_resp{
	height: max-content!important;
}
@media screen and (max-width: 768px) {
    #sb_instagram.sbi_tab_col_3 #sbi_images {
		gap: 5px!important;
}
}