@charset "UTF-8";
header {
  background-color: #F4F4F1;
  padding: 35px 0 25px 0;
  position: relative;
  z-index: 3;
}
@media (max-width: 767.98px) {
  header {
    padding: 10px 0;
  }
}
header a:hover {
  color: #333;
}
header img.logo {
  max-width: 100%;
}
@media (max-width: 767.98px) {
  header img.logo {
    width: 200px;
  }
}
@media screen and (max-width: 1400px) {
  header nav {
    display: none;
  }
}
header nav .en {
  font-size: 20px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  display: block;
  letter-spacing: 0.08em;
}
header nav .header-nav-link {
  color: #333;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 0;
  transition: color 0.3s ease;
  position: relative;
}
header nav .header-nav-link:hover {
  color: #0EB2BC;
}
header nav .header-nav-link.active {
  color: #0EB2BC;
}
header nav .header-nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #0EB2BC;
}
header .primary-btn {
  width: 234px;
}
header a.contact_btn {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #cf1225;
  color: #ffffff;
  font-family: "Jost", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  width: 100px;
  aspect-ratio: 1/1;
}
header a.contact_btn i {
  display: block;
}
header a.access_btn {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #fa4138;
  color: #ffffff;
  font-family: "Jost", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  width: 100px;
  aspect-ratio: 1/1;
}
header a.access_btn i {
  display: block;
}

footer {
  width: 100%;
  position: relative;
  z-index: 0;
  background-color: #F4F4F1;
}
@media (max-width: 767.98px) {
  footer {
    padding-bottom: 100px;
  }
}
footer::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 100%;
  left: 0;
  width: 100%;
  aspect-ratio: 300/67;
  transform: rotate(0) translateY(0);
  background-image: url("../images/wave/wave_bg_footer.svg");
  background-color: #fff;
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}
footer .footer-info {
  margin-bottom: 50px;
  padding-right: 20px;
}
@media (max-width: 991.98px) {
  footer .footer-info {
    margin-bottom: 0;
    padding: 0 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
footer .footer-info .footer-logo {
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  footer .footer-info .footer-logo {
    width: 240px;
  }
}
footer .footer-info .footer-address {
  padding-left: 1em;
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  font-weight: 500;
}
@media (max-width: 767.98px) {
  footer .footer-info .footer-address {
    font-size: 14px;
  }
}
footer .footer-info .footer-hours {
  color: #555;
  margin-top: 5px;
  margin-bottom: 0;
}
footer .footer-info .footer-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 25px;
}
@media (max-width: 767.98px) {
  footer .footer-info .footer-navigation {
    display: none !important;
  }
}
footer .footer-info .footer-navigation .footer-nav-link {
  text-decoration: none;
  color: #555;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}
footer .footer-info .footer-navigation .footer-nav-link i {
  font-size: 12px;
  color: #0056b3;
}
footer .footer-info .footer-navigation .footer-nav-link:hover {
  color: #0EB2BC;
  text-decoration: underline;
}
@media (max-width: 767.98px) {
  footer .footer-info .footer-navigation .footer-nav-link {
    font-size: 14px;
  }
}
@media (max-width: 991.98px) {
  footer .store-info .col-12 {
    margin-bottom: 20px;
  }
}
footer .footer-copyright {
  background-color: transparent;
  padding: 20px 0;
  margin-top: 30px;
  border-top: none;
}
footer .footer-copyright p {
  font-size: 12px;
  color: #666;
  margin: 0;
}

.footer_bnr {
  position: fixed;
  bottom: 1em;
  left: 1em;
}

.contact-box {
  transform: scale(0.8);
  transform-origin: right bottom;
  position: fixed;
  z-index: 1000;
  right: 1em;
  bottom: 1em;
  width: 360px;
  background: #fff;
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
@media (max-width: 575.98px) {
  .contact-box {
    padding: 25px 20px;
    width: 100%;
    transform-origin: left bottom;
    right: auto;
    left: 0.5em;
    bottom: 0.5em;
    transform: scale(1);
  }
}
.contact-box .contact-box-close {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 30px;
  height: 30px;
  transform: translate(-50%, -50%);
  border: none;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
  color: #333;
  font-size: 18px;
}
.contact-box .contact-box-close:hover {
  background: rgba(0, 0, 0, 0.2);
}
.contact-box .contact-box-close:focus {
  outline: 2px solid #333;
  outline-offset: 2px;
}
.contact-box .contact-box-illustration {
  position: absolute;
  top: -60px;
  right: -20px;
  z-index: 2;
}
@media (max-width: 767.98px) {
  .contact-box .contact-box-illustration {
    top: -40px;
    right: 0;
    width: 100px;
  }
}
.contact-box .box-header {
  margin-bottom: 10px;
  background-color: #f5f5f5;
  padding: 10px;
  border-radius: 10px;
  position: relative;
  text-align: center;
}
.contact-box .box-header::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 10px 10px 0;
  border-style: solid;
  border-color: #f5f5f5 transparent transparent transparent;
}
.contact-box .box-header .box-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 5px;
}
.contact-box .contact-tel {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
  letter-spacing: 1px;
  text-align: center;
}
@media (max-width: 767.98px) {
  .contact-box .contact-tel {
    font-size: 20px;
  }
}
.contact-box .contact-hours {
  font-size: 16px;
  color: #666;
  margin: 0;
  text-align: center;
}
.contact-box .contact-box-content {
  margin-top: 30px;
}
.contact-box .contact-box-content .primary-btn {
  width: 300px;
  padding: 20px 0 !important;
}

.contact-sp-box {
  transform-origin: left bottom;
  position: fixed;
  z-index: 1000;
  right: 50px;
  bottom: 0.5em;
}
.contact-sp-box .contact-box-content {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.contact-sp-box .contact-box-content .contact-box-illustration {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  transform: translateX(45%) translateY(-30%) scale(0.7);
  transform-origin: right bottom;
}
.contact-sp-box .primary-btn {
  width: auto;
  white-space: nowrap;
  padding: 20px 40px !important;
}

.sub-cover {
  position: relative;
  z-index: 0;
  background-color: #f4f4f1;
  margin-bottom: 100px;
}
.sub-cover::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  aspect-ratio: 300/40;
  transform: rotate(0) translateY(-5px);
  background-image: url("../images/wave/wave_sub_cover.svg");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}
.sub-cover::after {
  content: "";
  position: absolute;
  top: 30%;
  right: 10%;
  width: 640px;
  aspect-ratio: 640/140;
  transform: rotate(0) translateY(-5px);
  background-image: url("../images/top/news_illust.webp");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  z-index: 0;
}
@media (max-width: 991.98px) {
  .sub-cover::after {
    width: 50%;
    top: 75%;
    right: 10px;
  }
}
.sub-cover .container {
  position: relative;
  z-index: 2;
}
.sub-cover .section-title {
  margin-bottom: 0;
}
.sub-cover .ja {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

/*===========================================================*/
/*機能編 4-2-4　背景色が伸びる（左から右）　 */
/*===========================================================*/
/*========= ローディング画面のためのCSS ===============*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  text-align: center;
}

#splash-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  padding: 20px;
}

/*========= 画面遷移のためのCSS ===============*/
/*画面遷移アニメーション*/
.splashbg {
  display: none;
}

body.appear .splashbg {
  display: block;
  content: "";
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  transform: scaleX(0);
  background-color: #333333;
  /*伸びる背景色の設定*/
  animation-name: PageAnime;
  animation-duration: 0.6s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes PageAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/*画面遷移の後現れるコンテンツ設定*/
#main_content {
  opacity: 0;
}

/*bodyにappearクラスがついたら出現*/
body.appear #main_content {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-delay: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.scroll_down_area {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.scroll_down {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.scroll_down span.text {
  font-size: 12px;
  color: #CF1225;
  opacity: 0.8;
  line-height: 1;
  white-space: nowrap;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .scroll_down span.text {
    color: #ffffff;
  }
}
.scroll_down span.line {
  position: relative;
  display: inline-block;
  width: 2px;
  height: 100px;
}
.scroll_down span.line:before,
.scroll_down span.line:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}
.scroll_down span.line:before {
  background: #fff;
}
.scroll_down span.line:after {
  background: #e59aa2;
}
@media screen and (max-width: 767px) {
  .scroll_down span.line:after {
    background: #ccc;
  }
}

#type01 span.line:after {
  animation: sdl01 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes sdl01 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
/*==================================================
　5-2-6 3本線が回転して×に
===================================*/
/*========= ボタン ===============*/
#humberger {
  position: fixed;
  width: 50px;
  height: 50px;
  z-index: 2000;
  top: 15px;
  right: 15px;
  cursor: pointer;
  display: none;
}
@media screen and (max-width: 1400px) {
  #humberger {
    display: block;
  }
}

/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn6 {
  position: relative;
  /*ボタン内側の基点となるためrelativeを指定*/
  cursor: pointer;
  width: 50px;
  height: 50px;
}

/*ボタン内側*/
.openbtn6 span {
  display: inline-block;
  transition: all 0.4s;
  /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #333;
}

.openbtn6 span:nth-of-type(1) {
  top: 15px;
  width: 45%;
}

.openbtn6 span:nth-of-type(2) {
  top: 23px;
  width: 35%;
}

.openbtn6 span:nth-of-type(3) {
  top: 31px;
  width: 20%;
}

/*activeクラスが付与されると線が回転して×になる*/
.openbtn6.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-135deg);
  width: 30%;
}

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

.openbtn6.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(135deg);
  width: 30%;
}

/*========= メニュー画面 ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 1010;
  /*ナビのスタート位置と形状*/
  top: 0;
  left: 0;
  /*ナビの高さ*/
  background: #F4F4F1;
  /*動き*/
  font-weight: 600;
  font-size: 20px;
  /* メニューリンクのタップ/ホバー時のフィードバック */
}
#g-nav .nav-en {
  font-family: "Jost", sans-serif;
  font-weight: normal;
  font-size: 14px;
  padding-right: 10px;
  letter-spacing: 0.08em;
}
#g-nav .contact-btn {
  display: block;
  color: #ffffff;
  font-weight: 600;
  background: #3b7eb6;
  letter-spacing: 0.08em;
  padding: 15px 0;
}
#g-nav a.nav-item {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}
#g-nav a.nav-item:active {
  background-color: rgba(0, 0, 0, 0.1);
  opacity: 0.8;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  left: 0;
}

/*==================================================
  　メインテキストアニメーション  
===================================*/
.animated-text-cover,
.animated-text {
  display: inline-block;
  opacity: 0;
}
.animated-text-cover.active, .animated-text-cover.active::after,
.animated-text.active,
.animated-text.active::after {
  animation-delay: var(--animation-delay, 2s);
  animation-iteration-count: var(--iterations, 1);
  animation-duration: var(--duration, 800ms);
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.animated-text-cover.active,
.animated-text.active {
  opacity: 1;
  --animation-delay: var(--delay, 0);
  --animation-duration: var(--duration, 800ms);
  --animation-iterations: var(--iterations, 1);
  position: relative;
  animation-name: clip-text;
  cursor: default;
}
.animated-text-cover.active::after,
.animated-text.active::after {
  content: "";
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f0f3f6;
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
  animation-name: text-revealer;
}
.animated-text-cover.a-white.active::after,
.animated-text.a-white.active::after {
  background-color: #f0f3f6;
}
.animated-text-cover.a-transparent.active::after,
.animated-text.a-transparent.active::after {
  background-color: #f0f3f6;
}

@keyframes clip-text {
  from {
    opacity: 0;
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  to {
    opacity: 1;
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
@keyframes text-revealer {
  0%, 50% {
    transform-origin: 0 50%;
  }
  60%, 100% {
    transform-origin: 100% 50%;
  }
  60% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
/*==================================================
印象編 4 最低限おぼえておきたい動き
===================================*/
/*背景色が伸びて出現（左から）*/
.animatedBgLR {
  position: relative;
  display: inline-block;
  height: 100%;
}

.animatedBgLR.active::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #f0f3f6;
  border-radius: 30px;
}

@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/*中の要素*/
.animatedBgLR > * {
  opacity: 0;
}

.animatedBgLR.active > * {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.page-top {
  position: fixed;
  bottom: 1em;
  left: 1em;
  z-index: 1000;
}

.breadcrumb {
  background-color: #f4f4f1;
}

.section-title {
  font-size: 72px;
  font-weight: bold;
  color: #3b7eb6;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
  text-shadow: 3px 6px 0px #efeae3;
}
@media (max-width: 991.98px) {
  .section-title {
    font-size: 36px;
  }
}
@media (max-width: 767.98px) {
  .section-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

.primary-btn {
  background: #3c78b5;
  color: #fff;
  padding: 20px 0;
  text-align: center;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(60, 120, 181, 0.3);
  transition: all 0.3s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.primary-btn:hover {
  color: #fff;
  background-color: #2a5a8a;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(60, 120, 181, 0.4);
}

.section-btn {
  display: inline-block;
  padding: 0.8em 5em;
  border: 2px solid #3b7eb6;
  border-radius: 30px;
  color: #3b7eb6;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(60, 120, 181, 0.3);
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
  transition: all 0.3s ease;
}
.section-btn:hover {
  background-color: #0EB2BC;
  color: #fff;
}
@media (max-width: 767.98px) {
  .section-btn {
    padding: 12px 35px;
    font-size: 14px;
  }
}

/* .block-content 直下の要素にサイト幅を指定 */
.block-content > * {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* .block-content 直下の .alignwide の場合 */
.block-content > .alignwide {
  max-width: 1400px;
}

/* .block-content 直下の .alignfull の場合 */
.block-content > .alignfull {
  max-width: 100%;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

body {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", serif;
  color: #424242;
}

a {
  text-decoration: none;
  color: #212529;
}

.en {
  font-family: "Montserrat", sans-serif;
}/*# sourceMappingURL=common.css.map */