@charset "UTF-8";
/* site common */
:root {
  --color-blue_01: #1DDDD3;
  --color-blue_02: #2D5993;
  --color-blue_03: #38659F;
  --color-gray_light1: #F2F2F2;
}

body {
  margin: 0;
  padding: 0;
  text-autospace: normal;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  /* google fonts */
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

/* google fonts */
.font-geologica {
  font-family: "Geologica", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "slnt" 0, "CRSV" 0, "SHRP" 0;
}

.font-montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.font-albert-sans {
  font-family: "Albert Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

img {
  max-width: 100%;
  height: auto;
}

a img.alpha {
  transition: all 0.5s ease-out;
}
a:hover img.alpha {
  opacity: 0.8;
}

/* text link */
a.text-link {
  text-decoration: none;
}

a.text-link:hover {
  text-decoration: underline;
}

/* tel link */
@media screen and (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
  }
}
/* short cut */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.display-inlineblock {
  display: inline-block;
}

@media screen and (min-width: 769px) {
  .pc-inlineblock {
    display: inline-block;
  }
}
@media screen and (min-width: 960px) {
  .pc-block960 {
    display: block;
  }
}
.overflow-hidden {
  overflow: hidden;
}

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

/* text color */
.color-blue_01 {
  color: var(--color-blue_01);
}

.color-blue_02 {
  color: var(--color-blue_02);
}

.color-blue_03 {
  color: var(--color-blue_03);
}

/* js fadein, common.js */
.js-fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  /* 表示後 */
}
.js-fadein.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.js-fadein {
  /* モーション軽減設定 */
}
@media (prefers-reduced-motion: reduce) {
  .js-fadein {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* js fadein-from-right, common.js */
/*
.js-fadein-from-right {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;

  /* 表示後 */
/*
  &.is-visible {
    opacity: 1;
    transform: translateX(0);
  }

  /* モーション軽減設定 */
/*
  @media (prefers-reduced-motion: reduce) {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* js fadein-from-left, common.js */
/*
.js-fadein-from-left {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;

  /* 表示後 */
/*
  &.is-visible {
    opacity: 1;
    transform: translateX(0);
  }

  /* モーション軽減設定 */
/*
  @media (prefers-reduced-motion: reduce) {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
*/
/* scroll js mask-bg, common.js */
.js-mask-bg {
  /*
  アニメーション用にspanで囲ってクラス指定（colorに汎用性を持たせるため）
  opacityかますとafterもopacityになるのでダメ
  color: transparent;はアクセシビリティ問題なし
  transition: [プロパティ] [時間] [遅延]
  opacity	透明度をアニメーション対象にする
  0ms	アニメーション時間（0ミリ秒）
  450ms	遅延時間（0.45秒後に開始）
  */
  color: transparent;
  display: inline-block;
  transition: color 0ms 600ms;
  overflow: hidden;
  position: relative;
}
.js-mask-bg::after {
  background: linear-gradient(to left, #68FFE1, #0093DD);
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  /* 初期位置 */
  transform: translateX(-101%);
}
.js-mask-bg {
  /* 動作後 */
}
.js-mask-bg.is-visible {
  color: inherit;
}
.js-mask-bg.is-visible::after {
  animation: mask-bg 1.2s cubic-bezier(0.8, 0, 0.17, 1);
}
@keyframes mask-bg {
  0% {
    transform: translateX(-101%);
  }
  50% {
    transform: translateX(0);
  }
  60% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(101%);
  }
}
.js-mask-bg {
  /* モーション軽減設定 */
}
@media (prefers-reduced-motion: reduce) {
  .js-mask-bg {
    color: inherit;
  }
}

/* kv animation config,
top, 下層　共通css, kv-boxにつく。
colorではなく opacityを変えるので、maskの子要素のopacityを変える必要あり。
*/
.js-kv-animate {
  /* top bg, 下層kv img */
}
.js-kv-animate .bg-box,
.js-kv-animate .img-box,
.js-kv-animate .icon-box {
  opacity: 0;
  transition: opacity 0.8s ease;
}
.js-kv-animate.is-img-show .bg-box, .js-kv-animate.is-img-show .img-box, .js-kv-animate.is-img-show .icon-box {
  opacity: 1;
}
.js-kv-animate {
  /* ===== マスク共通 ===== */
}
.js-kv-animate .kv-mask {
  position: relative;
  overflow: hidden;
}
.js-kv-animate {
  /* 初期状態：中身だけ非表示 */
}
.js-kv-animate .kv-mask > * {
  opacity: 0;
  transition: opacity 0ms 600ms;
}
.js-kv-animate {
  /* top,下層kv fix */
}
.js-kv-animate.top-kv-box .text p.kv-mask, .js-kv-animate.kasou-kv-box .pagetitle.kv-mask {
  display: inline-block;
}
.js-kv-animate.top-kv-box picture.kv-mask {
  display: block;
}
.js-kv-animate {
  /* マスク自体 */
}
.js-kv-animate .kv-mask::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, #68FFE1, #0093DD);
  transform: translateX(-100%);
}
.js-kv-animate {
  /* マスク1発火 */
}
.js-kv-animate.is-mask1-start .js-kv-mask1.kv-mask::after {
  animation: kvMask 1.2s cubic-bezier(0.8, 0, 0.17, 1);
}
.js-kv-animate {
  /* マスク2発火 */
}
.js-kv-animate.is-mask2-start .js-kv-mask2.kv-mask::after {
  animation: kvMask 1.2s cubic-bezier(0.8, 0, 0.17, 1);
}
.js-kv-animate {
  /* マスク通過後表示1 */
}
.js-kv-animate.is-mask1-start .js-kv-mask1.kv-mask > * {
  opacity: 1;
}
.js-kv-animate {
  /* マスク通過後表示2 */
}
.js-kv-animate.is-mask2-start .js-kv-mask2.kv-mask > * {
  opacity: 1;
}
@keyframes kvMask {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

/* main contents */
.mw1440px {
  max-width: 1440px;
  margin: 0 auto;
}

.mw1000px {
  max-width: 1000px;
  margin: 0 auto;
}

.pd4per {
  padding: 0 4%;
}

/* heading */
.container .heading-ae {
  font-weight: bold;
  margin-bottom: clamp(24px, 4vw, 72px);
}
.container .heading-ae > *:not(p) {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: var(--color-blue_01);
  font-weight: bold;
  font-size: clamp(20px, 13vw, 80px);
  line-height: 1;
  margin: 0 0 0.2em;
}
@media screen and (min-width: 769px) {
  .container .heading-ae > *:not(p) {
    font-size: clamp(40px, 9vw, 84px);
    /* topページとの兼ね合い注意 */
  }
}
.container .heading-ae p.sub {
  color: var(--color-blue_03);
  letter-spacing: 0.1em;
}

.container .heading-b > * {
  font-size: clamp(24px, 6vw, 40px);
  margin-top: 0;
  /* margin 調整は各所行う */
  margin-bottom: clamp(48px, 10vw, 120px);
}

/* sec text */
.container .sec-text-box {
  line-height: 2;
}
.container .sec-text-box p {
  margin: 0;
}
.container .sec-text-box p + p {
  margin-top: 1.5em;
}

/* common cta button */
.common-cta-button {
  padding: 56px 4%;
}
.common-cta-button a {
  text-decoration: none;
  display: block;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding-top: min(20vw, 6em);
  padding-left: min(9vw, 3em);
  padding-right: min(9vw, 3em);
  padding-bottom: min(9vw, 3em);
  /* clip-pathにdrop-shadow, <offset-x> <offset-y> ぼかし値 色 */
  filter: drop-shadow(3px 6px 5px rgba(130, 155, 174, 0.7));
  position: relative;
  z-index: 1;
}
.common-cta-button {
  /* contact text */
}
.common-cta-button a::before {
  content: " ";
  width: 58%;
  height: min(10vw, 3em);
  max-width: 216px;
  display: block;
  position: absolute;
  top: min(9vw, 3em);
  left: min(9vw, 3em);
  z-index: 0;
  background-image: url(../img/common_cta_text_contact.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.common-cta-button a::after {
  /* bg block */
  border-radius: 10px;
  background-color: var(--color-blue_02);
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.common-cta-button a:hover .arrow {
  transform: translateX(4px) translateY(-50%);
}
.common-cta-button {
  /* 横棒 */
}
.common-cta-button .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5%;
  z-index: 0;
  display: inline-block;
  width: 3em;
  height: 2px;
  background: #fff;
  transition: transform 0.2s ease;
}
.common-cta-button {
  /* 斜め線 */
}
.common-cta-button .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 100%;
  width: 1em;
  height: 2px;
  background: #fff;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: right center;
}
@media screen and (min-width: 769px) {
  .common-cta-button a {
    padding: 6em 6em 3em;
  }
  .common-cta-button a::before {
    left: 6em;
  }
  .common-cta-button {
    /* 横棒 */
  }
  .common-cta-button .arrow {
    right: 6em;
  }
}

/* global-header */
.global-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 4%;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}
@media screen and (min-width: 769px) {
  .global-header {
    padding: 0;
  }
}
.global-header .global-header-inner {
  display: flex;
  justify-content: space-between;
  height: 50px;
}
@media screen and (min-width: 769px) {
  .global-header .global-header-inner {
    height: 100px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 10px 0 30px;
    width: 100%;
  }
}
.global-header {
  /* logo */
}
.global-header .logo-box {
  max-width: 104px;
  display: flex;
}
@media screen and (min-width: 769px) {
  .global-header .logo-box {
    max-width: 168px;
  }
}
.global-header .logo-box a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.global-header {
  /* global nav */
}
.global-header .global-nav {
  position: relative;
  font-family: "Geologica", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "slnt" 0, "CRSV" 0, "SHRP" 0;
}
@media screen and (min-width: 769px) {
  .global-header .global-nav {
    flex-basis: 100%;
    display: flex;
  }
}
.global-header .global-nav {
  /* hamburger menu */
}
.global-header .global-nav .menu-icon {
  width: 40px;
  height: 30px;
  position: fixed;
  top: 12px;
  right: 16px;
  cursor: pointer;
  z-index: 3;
  display: inline-block;
}
.global-header .global-nav .menu-icon span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: #333;
  border-radius: 2px;
  transition: 0.4s;
}
.global-header .global-nav span:nth-child(2) {
  width: 32px;
}
.global-header .global-nav span:nth-child(3) {
  width: 24px;
}
.global-header .global-nav {
  /* ハンバーガーがXに変形 */
}
.global-header .global-nav #menu-toggle:checked + .menu-icon span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  width: 40px;
}
.global-header .global-nav #menu-toggle:checked + .menu-icon span:nth-child(2) {
  opacity: 0;
}
.global-header .global-nav #menu-toggle:checked + .menu-icon span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  width: 40px;
}
.global-header .global-nav {
  /* オーバーレイ背景 */
}
.global-header .global-nav .overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
  z-index: 1;
}
.global-header .global-nav #menu-toggle:checked ~ .overlay {
  opacity: 1;
  pointer-events: auto;
}
.global-header .global-nav {
  /* メニュー本体（右から出す） */
}
.global-header .global-nav .menu {
  position: fixed;
  top: 0;
  right: -375px;
  max-width: 375px;
  width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
  transition: right 0.4s ease;
  z-index: 2;
  overflow-y: auto;
}
.global-header .global-nav #menu-toggle:checked ~ .menu {
  right: 0;
}
.global-header .global-nav {
  /* nav list */
  /* sp icon */
}
.global-header .global-nav .nav-wrap-box {
  position: relative;
  z-index: 1;
  margin: 50px 0 0;
  padding: 0;
}
.global-header .global-nav .nav-wrap-box::before {
  content: "";
  position: relative;
  width: 100%;
  padding-top: 26.6666666667%;
  z-index: 0;
  display: block;
  left: 0;
  top: 0;
  background-image: url(../img/gnav_sp_icon01.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
}
@media screen and (min-width: 769px) {
  .global-header .global-nav .nav-wrap-box {
    margin: 0;
    padding: 10px 0;
    display: flex;
    justify-content: flex-end;
  }
  .global-header .global-nav .nav-wrap-box::before {
    background: none;
    display: none;
  }
}
.global-header .global-nav ul {
  font-weight: bold;
  list-style: none;
  margin: max(-2em, -8vw) 16px 0;
  padding: calc(2em + 10px) 0 20px;
  background-color: var(--color-gray_light1);
  border-radius: 20px;
}
.global-header .global-nav ul li {
  font-size: min(5vw, 24px);
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 11em;
}
.global-header .global-nav ul li a {
  color: var(--color-blue_03);
  background-color: var(--color-gray_light1);
  display: block;
  padding: 0.5em 1em;
  text-decoration: none;
  /* sp arrow icon */
  position: relative;
  z-index: 1;
  /* 横棒 */
}
.global-header .global-nav ul li a::before {
  content: "";
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  right: 5%;
  z-index: 0;
  display: block;
  width: 2em;
  height: 1px;
  background: var(--color-blue_03);
  transition: all 0.2s ease;
}
.global-header .global-nav ul li a {
  /* 斜め線 */
}
.global-header .global-nav ul li a::after {
  content: "";
  position: absolute;
  right: 5%;
  top: 55%;
  width: 0.5em;
  height: 1px;
  background: var(--color-blue_03);
  transform: translateY(-50%) rotate(45deg);
  transform-origin: right center;
  transition: all 0.2s ease;
}
.global-header .global-nav ul li a:hover::before, .global-header .global-nav ul li a:hover::after {
  right: calc(5% - 4px);
}
.global-header .global-nav {
  /* contact button */
}
.global-header .global-nav .contact {
  margin: 64px 16px 0;
}
.global-header .global-nav .contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  margin-top: 0.5em;
  padding: 1em;
  background-color: var(--color-blue_01);
  color: #fff;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.global-header .global-nav .contact a:hover {
  background-color: #fff;
  color: var(--color-blue_01);
  border-color: var(--color-blue_01);
}
@media screen and (min-width: 769px) {
  .global-header .global-nav {
    /* pc時 global-nav */
  }
  .global-header .global-nav .menu-icon,
  .global-header .global-nav .overlay {
    display: none;
  }
  .global-header .global-nav .menu {
    flex-basis: 100%;
    position: inherit;
    right: inherit;
    box-shadow: none;
    max-width: none;
    display: flex;
    justify-content: flex-end;
    /* pc nav list */
  }
  .global-header .global-nav .menu ul {
    /* sp reset */
    background-color: inherit;
    border-radius: 0;
    /* pc */
    flex-basis: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
  }
  .global-header .global-nav .menu ul li {
    /* sp reset */
    font-size: 1em;
    margin: 0;
    max-width: none;
    /* pc*/
    display: flex;
    flex-shrink: 0;
  }
  .global-header .global-nav .menu ul li a {
    /* sp reset */
    background-color: inherit;
    /* pc */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* 見た目の「等間隔」を padding で作る */
    padding-inline: clamp(12px, 1.9vw, 25px);
    flex-shrink: 0;
  }
  .global-header .global-nav .menu ul li a:hover {
    text-decoration: underline;
  }
  .global-header .global-nav .menu ul li a::before, .global-header .global-nav .menu ul li a::after {
    /* sp reset */
    border: none;
    display: none;
  }
  .global-header .global-nav .menu {
    /* contact button */
  }
  .global-header .global-nav .menu .contact {
    margin-top: 0;
    margin-right: 0;
    margin-left: clamp(12px, 1.9vw, 30px);
    display: flex;
  }
  .global-header .global-nav .menu .contact a {
    /* sp reset */
    font-size: 1em;
    /* pc */
    white-space: nowrap;
    margin-top: 0;
    padding-inline: clamp(16px, 2.8vw, 40px);
    /*
    margin-left: 25px;
    padding: 0 40px;
    */
  }
}

/* pc sticky header */
.header-sticky-container {
  /* topページのPC時だけグローバルヘッダの位置が違うため。
  pc時、position: sticky;
  sp時、position: fixed;
  */
}
@media screen and (min-width: 769px) {
  .header-sticky-container .header-sticky-item {
    position: sticky;
    z-index: 1000;
    top: 0;
  }
  .header-sticky-container .header-sticky-item .global-header {
    position: inherit;
  }
}

/* global-footer */
.global-footer .bg-box {
  line-height: 2;
  background-color: var(--color-gray_light1);
  color: var(--color-blue_02);
  border-radius: 30px 30px 0 0;
  padding-top: 64px;
  color: var(--color-blue_02);
}
@media screen and (min-width: 769px) {
  .global-footer .bg-box {
    border-radius: 50px 50px 0 0;
  }
}
.global-footer .bg-box a {
  color: var(--color-blue_02);
}
.global-footer .logo-box {
  max-width: 200px;
  margin-bottom: 50px;
}
@media screen and (min-width: 769px) {
  .global-footer .logo-box {
    max-width: 256px;
  }
}
.global-footer .pc-flex-box .address-box {
  margin-bottom: 2em;
}
.global-footer .pc-flex-box .item-box + .item-box {
  margin-top: 3em;
}
.global-footer .pc-flex-box .link-list-box {
  font-weight: bold;
}
.global-footer .pc-flex-box .link-list-box ul {
  margin: 0;
  padding: 0;
}
.global-footer .pc-flex-box .link-list-box ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.global-footer .pc-flex-box .link-list-box ul li::before {
  content: "・";
  display: inline-block;
  width: 1em;
  text-align: center;
}
.global-footer .pc-flex-box .link-list-box ul li + li {
  margin-top: 1em;
}
@media screen and (min-width: 769px) {
  .global-footer .pc-flex-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .global-footer .pc-flex-box .item-box + .item-box {
    margin-top: 0;
  }
  .global-footer .pc-flex-box .item-box {
    flex-basis: 30.6666666667%;
  }
  .global-footer .pc-flex-box .item-box:nth-child(3) {
    margin-right: 0;
  }
  .global-footer .pc-flex-box .item-box:last-child {
    margin-left: auto;
    margin-right: 0;
    flex-basis: 100%;
  }
  .global-footer .pc-flex-box .link-list-box {
    text-align: right;
  }
}
@media screen and (min-width: 1400px) {
  .global-footer .pc-flex-box .item-box {
    flex-basis: auto;
  }
  .global-footer .pc-flex-box .item-box:last-child {
    flex-basis: auto;
    margin-left: initial;
  }
  .global-footer .pc-flex-box .item-box:nth-child(3) {
    margin-right: 4%;
  }
}
.global-footer .copyright-box {
  padding: 2em 0 1em;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .global-footer .copyright-box {
    text-align: right;
  }
}

/* kasou common kv */
.kasou-kv-box {
  padding-top: 50px;
  /* main img transform anime */
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .kasou-kv-box {
    padding-top: 0;
  }
}
.kasou-kv-box .content-box {
  position: relative;
  z-index: 1;
}
.kasou-kv-box .content-box .flex-box .text-box {
  padding-left: 5%;
  position: relative;
  z-index: 1;
}
.kasou-kv-box .content-box .flex-box .text-box .imgtext {
  margin-bottom: clamp(12px, 2.5vw, 40px);
}
.kasou-kv-box .content-box .flex-box .text-box .pagetitle {
  color: var(--color-blue_03);
  font-size: clamp(12px, 3vw, 18px);
  letter-spacing: 0.1em;
  font-weight: bold;
}
.kasou-kv-box .content-box .flex-box .img-box {
  padding-left: 20%;
  text-align: right;
  position: relative;
  z-index: -1;
}
.kasou-kv-box .content-box .flex-box .img-box img {
  display: inline-block;
}
@media screen and (min-width: 769px) {
  .kasou-kv-box .content-box .flex-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .kasou-kv-box .content-box .flex-box .text-box {
    flex-basis: 32.5%;
  }
  .kasou-kv-box .content-box .flex-box .img-box {
    padding-left: 0;
    flex-basis: 64%;
  }
}
.kasou-kv-box .content-box .icon-box {
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  /*
  padding-top: calc((283/1440) * 100%);
  */
}/*# sourceMappingURL=common.css.map */