@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Figtree:wght@300..900&family=Noto+Sans+JP:wght@100..900&display=swap");
*,
*:before,
*:after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  transition: 1s;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #333333;
  overflow-x: hidden;
}

.en {
  font-family: "Figtree", sans-serif;
}

.main--mb {
  margin-bottom: 150px;
}
@media screen and (max-width: 960px) {
  .main--mb {
    margin-bottom: 100px;
  }
}

/*@media(min-width: 768px){
  a[href^="tel:"]{
    pointer-events: none;
  }
}*/
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

@media screen and (min-width: 961px) {
  .disp_sp {
    display: none !important;
    visibility: hidden !important;
  }
}
@media screen and (max-width: 960px) {
  .disp_pc {
    display: none !important;
    visibility: hidden !important;
  }
}
.scrollanime {
  /*ここで全体のアニメーション秒数を設定*/
  transition: all ease 1.5s;
  /*出現前は全て透明に*/
  opacity: 0;
}

.js-top1scroll .scrollanime {
  transition-delay: .5s;
}

/*classに応じて出現前の位置や大きさを設定*/
.toUp {
  transform: translateY(50px);
}

.toDown {
  transform: translateY(-50px);
}

.toLeft {
  transform: translateX(50px);
}

.toRight {
  transform: translateX(-50px);
}

.toBig {
  transform: scale(0.8);
}

/*画面に入った後は元の位置や大きさに戻る*/
.fadeIn.scrollanime {
  opacity: 1;
}

.fadeIn.toUp {
  transform: translateY(0);
}

.fadeIn.toDown {
  transform: translateY(0);
}

.fadeIn.toLeft {
  transform: translateX(0);
}

.fadeIn.toRight {
  transform: translateX(0);
}

.fadeIn.toBig {
  transform: scale(1);
}

.textAnime {
  overflow: hidden;
}

.textAnime span {
  display: inline-block;
  transition: all ease .5s;
}

.txtToTop span {
  transform: translateY(100%);
}

.txtToBottom span {
  transform: translateY(-100%);
}

.txtToRight span {
  transform: scaleX(0);
  transform-origin: left;
}

.txtColor span {
  color: #E0E0E0;
}

.txtRotateX span {
  opacity: 0;
  transform: rotateY(360deg);
}

.txtRotateY span {
  opacity: 0;
  transform: rotateX(360deg);
}

.fadeIn.txtToTop span {
  transform: translateY(0);
}

.fadeIn.txtToBottom span {
  transform: translateY(0);
}

.fadeIn.txtToRight span {
  transform: scaleX(1);
}

.fadeIn.txtColor span {
  color: #333333;
}

.fadeIn.txtRotateX span {
  opacity: 1;
  transform: rotateY(0);
}

.fadeIn.txtRotateY span {
  opacity: 1;
  transform: rotateX(0);
}

.wrap01 {
  width: 1200px;
  max-width: 90%;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 960px) {
  .wrap01 {
    width: 600px;
  }
}

.wrap02 {
  width: 960px;
  max-width: 90%;
  margin: 0 auto;
  position: relative;
}

.wrap-r {
  max-width: calc(100% - (50% - (1200px/2)));
  width: calc(100% - 5%);
  margin-right: 0;
  margin-left: auto;
}

.wrap-l {
  max-width: calc(100% - (50% - (1200px/2)));
  width: calc(100% - 5%);
  margin-right: auto;
  margin-left: 0;
}

a {
  transition: all ease .3s;
}
a:hover {
  opacity: 0.7;
}

.js-top1scroll {
  width: 100vw;
  min-height: 100svh;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .js-top1scroll {
    padding: 50px 0;
  }
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  padding-top: 26px;
  z-index: 100;
}
@media screen and (max-width: 1400px) {
  .header {
    padding-top: 10px;
  }
}
@media screen and (max-width: 500px) {
  .header {
    padding-top: 0;
  }
}
.header:before {
  display: block;
  content: "";
  position: absolute;
  top: 26px;
  left: 0;
  right: 0;
  margin: auto;
  width: 95%;
  height: 80px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.7);
  z-index: -1;
}
@media screen and (max-width: 1400px) {
  .header:before {
    display: none;
  }
}
.header__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  width: 95%;
  height: 80px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 1400px) {
  .header__inner {
    padding: 0;
  }
}
.header__logo {
  margin-right: auto;
  margin-left: 0;
  width: 140px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1400px) {
  .header__logo {
    width: 120px;
  }
}
@media screen and (max-width: 500px) {
  .header__logo {
    width: 90px;
  }
}
.header__logo__a {
  display: block;
}
@media screen and (max-width: 1400px) {
  .header__nav {
    transform: rotateY(0) translateY(-100%);
    position: absolute;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(41, 76, 122, 0.5);
    backdrop-filter: blur(4px);
    color: #fff;
    transition: transform ease 1s;
  }
  .header__nav.active {
    transform: scaleY(1) translateY(0);
  }
  .header__nav__wrap {
    padding: 80px 5%;
    width: 500px;
    max-width: 90%;
    margin: 15vh auto;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.8);
  }
}
.header__nav__lists {
  display: flex;
  align-items: center;
  column-gap: 40px;
}
@media screen and (max-width: 1400px) {
  .header__nav__lists {
    flex-direction: column;
    grid-row-gap: 40px;
  }
}
.header__navLink {
  color: #294C7A;
  font-size: 15px;
  transition: all ease .3s;
}
.header__navLink:hover {
  opacity: 1;
  color: #799CAB;
}
@media screen and (max-width: 1400px) {
  .header__navLink {
    font-weight: 500;
  }
}
.header__navLink.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 500;
  width: 200px;
  height: 60px;
  border-radius: 10px;
  background-color: #294C7A;
  column-gap: 10px;
  overflow: hidden;
}
.header__navLink.cta:hover {
  opacity: 1;
}
.header__navLink.cta:hover .btnIcon {
  width: 12px;
  height: 12px;
}

.btnIcon {
  display: block;
  width: 6px;
  height: 6px;
  background-color: #799CAB;
  border-radius: 10px;
  margin-top: 3px;
  position: relative;
  transition: all ease .3s;
}
.btnIcon__circle {
  display: block;
  transform: scale(0);
  width: 100%;
  height: 100%;
  opacity: 0;
  background: radial-gradient(#799CAB, rgba(175, 231, 255, 0));
  border-radius: 30px;
  animation: ctaCircle 1.5s infinite ease .1s both;
}

@keyframes ctaCircle {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(8);
    opacity: 0;
  }
}
.menu_toggle {
  top: 0;
  right: 0;
  bottom: 0;
  width: 60px;
  height: 60px;
  display: flex;
  flex-direction: column;
  grid-row-gap: 5px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  position: relative;
}
.menu_toggle:before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  tab-size: 0;
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.7);
  border-radius: 100px;
}
@media screen and (min-width: 1401px) {
  .menu_toggle {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .menu_toggle {
    width: 50px;
    height: 50px;
  }
}
.menu_toggle__line {
  background-color: #294C7A;
  display: block;
  width: 20px;
  height: 1px;
  transform-origin: center;
  transition: all ease .5s;
  position: relative;
}
@media screen and (max-width: 500px) {
  .menu_toggle__line {
    width: 15px;
  }
}
.menu_toggle__line--1.active {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(45deg);
}
.menu_toggle__line--2.active {
  opacity: 0;
  width: 0;
}
.menu_toggle__line--3.active {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transform: rotate(-45deg);
}

.footer {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: center/cover url("/assets/img/common/bg-footCta.jpg") no-repeat;
  position: relative;
}
.footer:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.7;
  z-index: 0;
}
.footer--top {
  background: none;
}
.footer--top:before {
  display: none;
}
.footer__ctaBlk {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-grow: 1;
  min-height: 50vh;
  padding: 30px 0;
}
.footer .ttl01__jp {
  font-size: 15px;
}
.footer__mainCta {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 500px;
  max-width: 100%;
  height: 80px;
  border-radius: 10px;
  background-color: #294C7A;
  color: #fff;
  font-weight: 500;
  margin: 50px auto 0;
  letter-spacing: 0.1em;
  column-gap: 12px;
  overflow: hidden;
}
.footer__mainCta:hover {
  opacity: 1;
}
.footer__mainCta:hover .btnIcon {
  width: 12px;
  height: 12px;
}
@media screen and (max-width: 767px) {
  .footer__mainCta {
    width: 280px;
    height: 60px;
    font-size: 14px;
  }
}
.footer__btmBlk {
  position: relative;
  z-index: 10;
  background-color: rgba(41, 76, 122, 0.9);
  color: #fff;
  padding: 60px 0;
}
@media screen and (max-width: 960px) {
  .footer__btmBlk {
    padding: 40px 0;
  }
}
.footer__btmBlk .wrap01 {
  width: 1400px;
}
.footer__contents {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer__contents {
    flex-direction: column-reverse;
  }
}
.footer__right {
  flex-shrink: 0;
}
.footer__links {
  display: flex;
  column-gap: 20px;
  flex-wrap: wrap;
  grid-row-gap: 20px;
  justify-content: flex-end;
  font-size: 14px;
}
@media screen and (max-width: 960px) {
  .footer__links {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .footer__links {
    justify-content: flex-start;
    grid-row-gap: 15px;
    margin-bottom: 40px;
    max-width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .footer__links {
    width: 300px;
  }
}
.footer__logo {
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    margin-bottom: 5px;
    width: 100px;
  }
}
.footer__area {
  font-size: 12px;
  margin-bottom: 20px;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .footer__area {
    font-size: 10px;
  }
}
.footer__companyName {
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .footer__companyName {
    font-size: 11px;
  }
}
.footer__companyAddress {
  font-size: 14px;
  font-weight: 300;
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  line-height: 1.6;
}
@media screen and (max-width: 960px) {
  .footer__companyAddress {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .footer__companyAddress {
    font-size: 11px;
    column-gap: 5px;
  }
}
.footer__sub {
  display: flex;
  column-gap: 20px;
  justify-content: flex-end;
  margin-top: -19px;
}
@media screen and (max-width: 767px) {
  .footer__sub {
    margin-top: 20px;
    justify-content: flex-start;
  }
}
.footer__privacy {
  font-size: 12px;
}
@media screen and (max-width: 960px) {
  .footer__privacy {
    font-size: 10px;
  }
}
.footer__copy {
  font-weight: 200;
  font-size: 12px;
}
@media screen and (max-width: 960px) {
  .footer__copy {
    font-size: 10px;
  }
}

.ttl01__en {
  color: #799CAB;
  font-size: 70px;
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .ttl01__en {
    font-size: 52px;
  }
}
.ttl01__jp {
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-top: 9px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .ttl01__jp {
    font-size: 20px;
  }
}

.ttl02 {
  text-align: center;
}
.ttl02__jp {
  font-size: 32px;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
@media screen and (max-width: 960px) {
  .ttl02__jp {
    font-size: 23px;
    margin-bottom: 14px;
  }
}
.ttl02__en {
  color: #799CAB;
  font-size: 26px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 960px) {
  .ttl02__en {
    font-size: 16px;
  }
}

.link01 {
  width: 260px;
  height: 60px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #294C7A;
  font-size: 13px;
  column-gap: 10px;
  overflow: hidden;
}
.link01:hover {
  opacity: 1;
}
.link01:hover .btnIcon {
  width: 12px;
  height: 12px;
}
@media screen and (max-width: 767px) {
  .link01 {
    font-size: 12px;
    width: 170px;
    height: 50px;
  }
}

.pageTitle {
  padding-top: 200px;
  padding-bottom: 140px;
  text-align: center;
  color: #fff;
  background: center/cover url("/assets/img/top/bg-main.jpg") no-repeat;
  position: relative;
  z-index: 1;
}
.pageTitle:before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #294C7A;
  opacity: 0.65;
  z-index: -1;
}
@media screen and (max-width: 1400px) {
  .pageTitle {
    padding-top: 160px;
  }
}
@media screen and (max-width: 960px) {
  .pageTitle {
    padding-top: 100px;
    padding-bottom: 70px;
  }
}
.pageTitle--services {
  background-image: url("/assets/img/services/bg-fv.jpg");
}
.pageTitle--about {
  background-image: url("/assets/img/about/bg-fv.jpg");
}
.pageTitle--faq {
  background-image: url("/assets/img/faq/bg-fv.jpg");
}
.pageTitle--contact {
  background-image: url("/assets/img/common/bg-footCta.jpg");
}
.pageTitle__jp {
  font-size: 26px;
  letter-spacing: 0.1em;
  font-weight: bold;
}
@media screen and (max-width: 960px) {
  .pageTitle__jp {
    font-size: 20px;
  }
}
.pageTitle__en {
  font-size: 70px;
  letter-spacing: 0.02em;
  font-weight: 300;
}
@media screen and (max-width: 960px) {
  .pageTitle__en {
    font-size: 50px;
  }
}
.pageTitle__txt {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin-top: 50px;
}
@media screen and (max-width: 960px) {
  .pageTitle__txt {
    font-size: 12px;
    margin-top: 40px;
  }
}

.topBg {
  position: fixed;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}
.topBg__img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  transition: all 1.5s ease;
  transition-delay: .3s;
  opacity: 0;
}
.topBg__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: topBg infinite alternate linear 10s;
}
.topBg__img.is-current {
  opacity: 1;
}
.topBg__layer {
  display: block;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  background-color: #294C7A;
  opacity: 0.4;
  width: 100%;
  height: 100%;
  transition: all ease 1s;
  transition-delay: .3s;
}
.topBg__layer.light {
  opacity: 0.6;
  background-color: #fff;
}
.topBg__layer.light02 {
  opacity: 0.8;
  background-color: #fff;
}
.topBg__layer.green {
  opacity: 0.6;
  background-color: #799CAB;
}

@keyframes topBg {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.page-home .header {
  transition-delay: .5s;
}
@media screen and (min-width: 1401px) {
  .page-home .header:before {
    opacity: 0;
    transition: all ease .6s;
  }
  .page-home .header__nav__item:not(:nth-child(5)) {
    opacity: 0;
  }
  .page-home .header.is-visible:before {
    opacity: 1;
  }
  .page-home .header.is-visible .header__nav__item:not(:nth-child(5)) {
    opacity: 1;
  }
}

.topFv {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}
.topFv .scrollanime {
  transition-delay: 0s;
}
.topFv__ttl {
  font-size: 32px;
  line-height: 1.8;
  margin-bottom: 60px;
  font-weight: 600;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .topFv__ttl {
    font-size: 24px;
  }
}
.topFv__txt {
  font-size: 18px;
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .topFv__txt {
    font-size: 14px;
  }
}

.topService {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.topService__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 30px;
}
@media screen and (max-width: 767px) {
  .topService__flex {
    flex-direction: column;
  }
}
.topService__txt {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 50px;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .topService__txt {
    margin-top: 40px;
    margin-bottom: 50px;
    font-size: 13px;
  }
}

.topNews {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.topNews__items {
  width: 700px;
  max-width: 100%;
  color: #fff;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .topNews__items {
    margin-top: 40px;
  }
}
.topNews__ttlBlk {
  display: block;
  padding: 25px 0;
  border-bottom: solid 1px #fff;
  display: flex;
  align-items: center;
  column-gap: 50px;
  cursor: pointer;
  position: relative;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .topNews__ttlBlk {
    flex-direction: column;
    align-items: flex-start;
    grid-row-gap: 10px;
    font-size: 14px;
    padding: 15px 0;
  }
}
.topNews__ttlBlk:after {
  display: block;
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  transition: all ease .6s;
  background-color: #294C7A;
}
.topNews__ttlBlk:hover:after {
  width: 100%;
}
.topNews time {
  font-weight: 300;
  font-size: 14px;
}
.topNews h3 {
  font-weight: 400;
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .topNews h3 {
    font-size: 14px;
  }
}
.topNews__modal {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all ease .3s;
}
.topNews__modal.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.topNews__bg {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(121, 156, 171, 0.6);
  backdrop-filter: blur(4px);
  transition: all ease .3s;
}
.topNews__txtBlk {
  width: 860px;
  max-width: 90%;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.8);
  color: #294C7A;
  font-size: 15px;
  line-height: 1.8;
  padding: 60px 5%;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .topNews__txtBlk {
    font-size: 14px;
  }
}
.topNews__txtBlk a {
  display: inline-block;
  border-bottom: solid 1px #294C7A;
}
.topNews__txtBlk a:hover {
  border-color: transparent;
}
.topNews__close {
  position: absolute;
  top: -40px;
  right: -50px;
  color: #fff;
  font-weight: bold;
  font-size: 32px;
  cursor: pointer;
  transition: all ease .3s;
}
@media screen and (max-width: 1100px) {
  .topNews__close {
    font-size: 26px;
    top: -50px;
    right: 0;
  }
}
.topNews__close:hover {
  opacity: 0.7;
}

.serviceIntro {
  margin-top: 135px;
}
@media screen and (max-width: 960px) {
  .serviceIntro {
    margin-top: 80px;
  }
}

.serviceCardList {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 40px;
}
.serviceCardList--2clm {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 960px) {
  .serviceCardList {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 20px;
    margin-top: 40px;
  }
}

.serviceCard {
  border-radius: 10px;
  border: solid 1px #799CAB;
  padding: 40px 6%;
  position: relative;
}
.serviceCard--large {
  border-color: #294C7A;
  background-color: #FFFDFF;
  border-width: 2px;
}
@media screen and (max-width: 960px) {
  .serviceCard {
    padding: 30px 6%;
  }
}
.serviceCard__ttl {
  font-size: min(1.8vw, 20px);
  font-weight: 500;
  margin-bottom: 5px;
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.serviceCard__ttl--large {
  font-size: 22px;
}
@media screen and (max-width: 960px) {
  .serviceCard__ttl {
    font-size: 16px;
    text-align: left;
  }
}
.serviceCard__en {
  font-size: 14px;
  font-weight: 600;
  color: #799CAB;
  text-align: center;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 960px) {
  .serviceCard__en {
    text-align: left;
    margin-bottom: 20px;
  }
}
.serviceCard__ico {
  text-align: center;
  margin: 14px auto;
}
@media screen and (max-width: 960px) {
  .serviceCard__ico {
    position: absolute;
    top: 11px;
    right: 20px;
    width: 60px;
    margin: 0;
  }
}
.serviceCard__txt {
  font-size: 14px;
  line-height: 1.6;
}
.serviceCard__txt--large {
  font-size: 16px;
}
@media screen and (max-width: 960px) {
  .serviceCard__txt {
    font-size: 13px;
  }
}

.serviceSec {
  margin-top: 135px;
}
@media screen and (max-width: 960px) {
  .serviceSec {
    margin-top: 80px;
  }
}

.serviceOther {
  margin-top: 135px;
}
@media screen and (max-width: 960px) {
  .serviceOther {
    margin-top: 80px;
  }
}
.serviceOther__txt {
  text-align: center;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin-top: 60px;
}
@media screen and (max-width: 960px) {
  .serviceOther__txt {
    font-size: 14px;
    margin-top: 40px;
    text-align: left;
  }
}

.aboutSec__blk {
  margin-top: 135px;
  display: flex;
  column-gap: min(4vw, 50px);
}
.aboutSec__blk--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 960px) {
  .aboutSec__blk {
    flex-direction: column;
    margin-top: 80px;
  }
}
.aboutSec__txtBlk {
  flex-shrink: 0;
  width: 770px;
  max-width: 70%;
}
@media screen and (max-width: 960px) {
  .aboutSec__txtBlk {
    max-width: 100%;
  }
}
.aboutSec__ttl {
  display: inline-block;
  padding-right: 20px;
  padding-bottom: 50px;
  background-color: #fff;
  border-radius: 10px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 960px) {
  .aboutSec__ttl {
    padding-bottom: 30px;
  }
}
.aboutSec__en {
  color: #799CAB;
  font-weight: 300;
  font-size: 64px;
  letter-spacing: 0.02em;
  margin-bottom: 9px;
  line-height: 1.15;
}
@media screen and (max-width: 960px) {
  .aboutSec__en {
    font-size: 30px;
  }
}
.aboutSec__jp {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 960px) {
  .aboutSec__jp {
    font-size: 18px;
  }
}
.aboutSec__txtWrap {
  margin-top: -30px;
  padding: 70px 5% 40px;
  font-size: 15px;
  line-height: 1.8;
  background-color: rgba(121, 156, 171, 0.08);
  margin-left: min(4vw, 80px);
}
@media screen and (max-width: 960px) {
  .aboutSec__txtWrap {
    padding: 50px 5%;
    font-size: 13px;
  }
}
@media screen and (max-width: 960px) {
  .aboutSec__img {
    margin-right: 8vw;
    margin-top: -20px;
  }
}

.ugkTxtSlider {
  margin-top: 135px;
  color: rgba(41, 76, 122, 0.08);
  letter-spacing: 0.02em;
  font-size: 10vw;
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .ugkTxtSlider {
    margin-top: 80px;
  }
}
.ugkTxtSlider__inner {
  width: fit-content;
  animation: imgSlider 30s linear infinite;
}
@keyframes imgSlider {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.aboutCompany {
  background-color: rgba(121, 156, 171, 0.08);
  padding: 135px 0;
}
@media screen and (max-width: 960px) {
  .aboutCompany {
    padding: 80px 0;
  }
}
.aboutCompany .wrap01 {
  width: 800px;
}
@media screen and (max-width: 960px) {
  .aboutCompany .wrap01 {
    width: 600px;
  }
}
.aboutCompany__ttl {
  font-size: 24px;
  margin-bottom: 40px;
  letter-spacing: 0.1em;
  font-weight: bold;
  color: #294C7A;
}
@media screen and (max-width: 960px) {
  .aboutCompany__ttl {
    font-size: 20px;
    margin-bottom: 10px;
    text-align: center;
  }
}
.aboutCompany__dl {
  padding: 20px 0;
  border-bottom: solid 2px rgba(121, 156, 171, 0.2);
  display: flex;
  column-gap: 20px;
  font-size: 15px;
  line-height: 1.6;
}
@media screen and (max-width: 960px) {
  .aboutCompany__dl {
    flex-direction: column;
    grid-row-gap: 5px;
    border-width: 1px;
    padding: 15px 0;
  }
}
.aboutCompany__dt {
  min-width: 13em;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .aboutCompany__dt {
    font-weight: 500;
  }
}
.aboutCompany__dd {
  font-size: 13px;
}

.faqAnchors {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin: 135px auto 0;
}
@media screen and (max-width: 1100px) {
  .faqAnchors {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
  }
}
@media screen and (max-width: 960px) {
  .faqAnchors {
    margin-top: 80px;
    gap: 15px;
    font-size: 14px;
  }
}

.faqAnchor__link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #294C7A;
  border-radius: 10px;
  padding: 19px 10px;
}
@media screen and (max-width: 960px) {
  .faqAnchor__link {
    padding: 15px 10px;
  }
}

.faqSec {
  margin-top: 120px;
}
@media screen and (max-width: 960px) {
  .faqSec {
    margin-top: 80px;
  }
}
.faqSec .wrap01 {
  width: 800px;
}
@media screen and (max-width: 960px) {
  .faqSec .wrap01 {
    width: 600px;
  }
}
.faqSec__ttl {
  text-align: center;
  color: #fff;
  background-color: #799CAB;
  padding: 19px 10px;
  margin-bottom: 40px;
  font-size: 18px;
}
@media screen and (max-width: 960px) {
  .faqSec__ttl {
    font-size: 16px;
    padding: 18px 10px;
    margin-bottom: 20px;
  }
}
.faqSec__item {
  border-bottom: solid 1px rgba(41, 76, 122, 0.6);
  line-height: 1.6;
}
.faqSec__item[open] .faqSec__a {
  opacity: 1;
}
.faqSec__item[open] .faqSec__qBlk:after {
  content: "－";
}
.faqSec__qBlk {
  display: flex;
  align-items: center;
  column-gap: 32px;
  cursor: pointer;
  padding: 40px 0 30px;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .faqSec__qBlk {
    column-gap: 20px;
    padding: 30px 0 20px;
  }
}
.faqSec__qBlk summary::-webkit-details-marker {
  display: none;
}
.faqSec__qBlk:after {
  display: block;
  content: "＋";
  font-weight: bold;
  color: #799CAB;
}
.faqSec__q {
  flex-grow: 1;
}
@media screen and (max-width: 960px) {
  .faqSec__q {
    font-size: 14px;
  }
}
.faqSec__iconQ {
  color: #799CAB;
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .faqSec__iconQ {
    font-size: 22px;
  }
}
.faqSec__aBlk {
  padding-bottom: 40px;
  padding-left: 58px;
}
@media screen and (max-width: 960px) {
  .faqSec__aBlk {
    padding-left: 38px;
    padding-bottom: 30px;
  }
}
.faqSec__a {
  opacity: 0;
  transition: all ease .3s .1s;
  font-size: 15px;
}
@media screen and (max-width: 960px) {
  .faqSec__a {
    font-size: 13px;
  }
}
.faqSec__btmTxt {
  text-align: center;
  margin-top: 135px;
  font-size: 18px;
  color: #294C7A;
  font-weight: 500;
  line-height: 1.7;
}
@media screen and (max-width: 960px) {
  .faqSec__btmTxt {
    font-size: 16px;
    margin-top: 80px;
  }
}

.contactSec {
  margin-top: 100px;
}
@media screen and (max-width: 960px) {
  .contactSec {
    margin-top: 50px;
  }
}
.contactSec .wrap01 {
  width: 600px;
}

.form {
  line-height: 1.6;
}
.form__label {
  display: block;
  margin-bottom: 1em;
}
.form input[type="email"], .form input[type="text"], .form input[type="url"], .form input[type="tel"], .form textarea {
  font-size: 16px;
  padding: 5px 10px;
  width: 100%;
  display: block;
  border: none;
  background-color: #fff;
  border-radius: 6px;
  border: solid 1px #799CAB;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
.form input[type="email"]:focus, .form input[type="text"]:focus, .form input[type="url"]:focus, .form input[type="tel"]:focus, .form textarea:focus {
  outline: none;
}
.form input[type="email"]::placeholder, .form input[type="text"]::placeholder, .form input[type="url"]::placeholder, .form input[type="tel"]::placeholder, .form textarea::placeholder {
  font-size: 14px;
  color: #DADFE6;
}
.form input[type="email"], .form input[type="text"], .form input[type="url"], .form input[type="tel"] {
  width: auto;
  flex-grow: 1;
}
@media screen and (max-width: 960px) {
  .form input[type="email"], .form input[type="text"], .form input[type="url"], .form input[type="tel"] {
    width: 100%;
  }
}
.form button[type="submit"] {
  appearance: none;
  -webkit-appearance: none;
  border: none;
}
.form__checkBlk, .form__radioBlk {
  display: flex;
  column-gap: 20px;
}
@media screen and (max-width: 960px) {
  .form__checkBlk, .form__radioBlk {
    flex-wrap: wrap;
    grid-row-gap: 6px;
    padding-bottom: 10px;
  }
}
.form__checkBlk label, .form__radioBlk label {
  font-size: 15px;
}
.form__item {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  padding: 25px 0;
  border-bottom: solid 1px rgba(121, 156, 171, 0.2);
  align-items: center;
}
.form__item--column {
  align-items: flex-start;
  flex-direction: column;
  grid-row-gap: 15px;
}
@media screen and (max-width: 960px) {
  .form__item {
    border: none;
    padding: 10px 0;
    flex-direction: column;
    grid-row-gap: 10px;
    align-items: flex-start;
  }
}
.form__item--privacy {
  justify-content: center;
  border-bottom: none;
  margin-top: 20px;
}
@media screen and (max-width: 960px) {
  .form__item--privacy {
    align-items: center;
    margin-top: 10px;
  }
}
.form__item--privacy a {
  display: inline-block;
  border-bottom: solid 1px #294C7A;
  color: #294C7A;
  line-height: 1.2;
}
.form__item--privacy a:hover {
  border-color: transparent;
}
.form__ttl {
  min-width: 11em;
  flex-shrink: 0;
  font-size: 15px;
  font-weight: 500;
}
.form__req {
  font-size: 12px;
  color: #D43B3B;
  vertical-align: top;
}
.form__submit {
  width: 260px;
  height: 60px;
  background-color: #799CAB;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.12em;
  margin: 20px auto 0;
  display: block;
  border-radius: 10px;
  cursor: pointer;
  transition: all ease .3s;
}
.form__submit:hover {
  background-color: #294C7A;
}
.form__error {
  padding: 30px 5%;
  border-radius: 10px;
  background-color: #FFF2F2;
  border: solid 2px #D43B3B;
  color: #D43B3B;
  font-size: 14px;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .form__error {
    padding: 20px 5%;
    font-size: 12px;
    margin-bottom: 20px;
  }
}
.form__errorList {
  margin-left: 1em;
  list-style: disc;
  display: flex;
  flex-direction: column;
  grid-row-gap: 5px;
  line-height: 1.5;
}

.thanksSec {
  margin-top: 135px;
}
@media screen and (max-width: 960px) {
  .thanksSec {
    margin-top: 80px;
  }
}
.thanksSec__txtBlk {
  margin: 0 auto;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .thanksSec__txtBlk {
    font-size: 14px;
    text-align: left;
  }
}

.page-privacy-policy .pageTitle__en {
  line-height: 1.4;
  font-size: 60px;
}
@media screen and (max-width: 960px) {
  .page-privacy-policy .pageTitle__en {
    font-size: 40px;
  }
}

.privacySec {
  margin-top: 135px;
  line-height: 1.7;
}
@media screen and (max-width: 960px) {
  .privacySec {
    margin-top: 80px;
    font-size: 14px;
  }
}
.privacySec p {
  margin-top: 0.2em;
}
.privacySec p:first-of-type {
  margin-top: 1.5em;
}
.privacySec ul {
  list-style: disc;
  margin-left: 1.5em;
  margin-top: 1.5em;
}
.privacySec h2 {
  font-size: 1.1em;
  margin-top: 2em;
  font-weight: bold;
}

.fcWhite {
  color: #fff;
}

.fcBlue {
  color: #294C7A;
}

.taCenter {
  text-align: center;
}
