@charset "UTF-8";
/* 設定用 */
/*10px*/
/*12px*/
/*14px*/
/*16px*/
/*18px*/
/*20px*/
/*24px*/
/*40px*/
/*48px*/
/* 全体 */
/* Reset CSS - 2021.09
---------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, ruby, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, form, fieldset, legend, label, header, footer, hgroup, menu, nav, main, article, section, aside, details, figure, figcaption, canvas, embed, output, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: bottom;
}

header, footer, hgroup, menu, nav, main, article, section, aside, details, figure, figcaption {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

hr {
  display: none;
}

address, em {
  font-style: normal;
}

table {
  border-collapse: collapse;
}

img {
  vertical-align: bottom;
}

/* Fonts
---------------------------------------------------*/
body {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
}

/* clearfix
---------------------------------------------------*/
.clearfix::after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}

* {
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
}

body {
  color: #333333;
  position: relative;
  line-height: 1.8;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-seri;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(0.875rem, 0.816rem + 0.29vw, 1rem); /*14-16px*/
  font-feature-settings: "palt";
  background-color: #FFFFFF;
}

a {
  transition: all 0.5s;
}

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

.sp-block {
  display: none;
}

.section__container {
  background-color: #FFFFFF;
  padding: 100px 0 150px;
}

.wrapper {
  width: min(100%, 1080px);
  padding: 0 40px;
  margin: 0 auto;
  position: relative;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .sp-block {
    display: block;
  }
  .sp-none {
    display: none;
  }
  .section__container {
    padding: 80px 0 100px;
  }
  .wrapper {
    width: 100%;
    padding: 0 20px;
  }
}
/* Module */
.header__container {
  position: relative;
}

.header__title {
  font-size: 0.625rem;
  line-height: 1.8;
  padding-left: 30px;
  padding: 10px 0 5px 30px;
}

.header__logo {
  min-width: 170px;
  width: 12%;
  padding-left: 30px;
}
.header__logo a {
  display: block;
}

body.body-fixd {
  width: 100%;
  height: 100%;
  position: fixed;
}
body.body-fixd::after {
  content: "";
  background: rgba(0, 86, 119, 0.8);
  height: 100vh;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.gloval__nav {
  font-weight: 600;
  transform: translateX(100%);
  visibility: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 1s;
  z-index: 995;
  margin: 0;
  min-width: 100%;
  background: #FFFFFF;
  box-shadow: -10px 0px 30px 0px rgba(0, 0, 0, 0.3);
  padding: 10% 0 0 60px;
}
.gloval__nav.open {
  visibility: inherit;
  transition: all 1s;
  transform: translateX(65%);
}

.nav__item {
  margin-bottom: 2rem;
}
.nav__item a {
  color: #333333;
  text-decoration: none;
  position: relative;
}
.nav__item a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #DAC556;
  bottom: -3px; /*アンダーラインがaタグの下端から現れる*/
  transform: scale(0, 1); /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  transition: transform 0.3s; /*変形の時間*/
}
.nav__item a:hover::after {
  transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}

.menu {
  position: fixed;
  top: 15px;
  right: 30px;
  border: 1px solid #333333;
  background-color: #FFFFFF;
  border-radius: 100px;
  z-index: 100;
  display: flex;
  align-items: center;
  padding-left: 15px;
  gap: 10px;
  z-index: 998;
  cursor: pointer;
}
.menu p {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

#toggle {
  position: relative;
  width: 40px;
  height: 35px;
  border: none;
  background: transparent;
  cursor: pointer;
}

/*ボタン内側*/
#toggle span {
  display: block;
  transition: all 0.4s;
  position: absolute;
  left: 3px;
  height: 1px;
  background: #333333;
  width: 50%;
}

#toggle span:nth-of-type(1) {
  top: 12px;
}

#toggle span:nth-of-type(2) {
  top: 17px;
}

#toggle span:nth-of-type(3) {
  top: 22px;
}

/*activeクラスが付与されると線が回転して×に*/
#toggle.active span:nth-of-type(1) {
  top: 12px;
  left: 3px;
  transform: translateY(6px) rotate(-45deg);
  width: 50%;
  background: #333333;
}

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

#toggle.active span:nth-of-type(3) {
  top: 24px;
  left: 3px;
  transform: translateY(-6px) rotate(45deg);
  width: 50%;
  background: #333333;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .header__title {
    background-color: #005677;
    color: #FFFFFF;
    width: 100%;
    text-align: center;
    font-size: 0.625rem;
    line-height: 0;
    min-height: 20px;
  }
  .header__logo {
    width: 190px;
    padding: 8px 0 5px 10px;
  }
  .header__logo a {
    display: block;
  }
  .menu {
    top: 30px;
    right: 10px;
  }
  .gloval__nav {
    padding: 120px 0 0 30px;
  }
  .gloval__nav.open {
    transform: translateX(20%);
  }
}
/*===========================
TOPと下層、PCとスマホで出し分け
===========================*/
/* 下層ページ（トップページ以外）のスタイル */
.header__title, .header__logo {
  display: block;
}

/* トップページ（PCのみ非表示、スマホでは表示） */
@media only screen and (min-width: 768px) {
  .header__top-only {
    display: none; /* PCでは非表示 */
  }
}
@media only screen and (max-width: 767px) {
  .header__top-only {
    display: block; /* スマホでは表示 */
  }
}
.footer__container {
  background-color: #FFFFFF;
  padding: 60px 0 10px;
}
.footer__container .wrapper {
  display: flex;
  flex-wrap: wrap;
}
.footer__container .footer__logo {
  width: 50%;
}
.footer__container .footerLogo__title {
  font-size: 0.75rem;
  margin-bottom: 15px;
  font-weight: 500;
  padding-left: 1rem;
}
.footer__container .footerLogo__link {
  display: block;
  max-width: 300px;
}
.footer__container .addredd__list {
  width: 50%;
  font-size: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem);
}
.footer__container .addredd__item:first-child {
  margin-bottom: 1rem;
}
.footer__container .copyright {
  margin-top: 100px;
  width: 100%;
  font-size: 0.625rem;
  text-align: right;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .footer__container .wrapper {
    flex-direction: column;
    padding: 0 30px;
  }
  .footer__container .footer__logo {
    width: 100%;
    margin-bottom: 30px;
  }
  .footer__container .footerLogo__title {
    margin-bottom: 10px;
    padding-left: 0;
  }
  .footer__container .footerLogo__link {
    max-width: 220px;
  }
  .footer__container .addredd__list {
    width: 100%;
  }
}
.footerContact__container {
  background-image: url(../../img/common/contact-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 80px 0;
}

.footerContact__btn {
  width: min(100%, 800px);
  margin: 0 auto;
  background-color: #005677;
  border: 2px solid #FFFFFF;
  display: flex;
  border-radius: 10px;
  padding: 50px;
  color: #FFFFFF;
  position: relative;
  text-decoration: none;
  font-weight: 600;
  transition: box-shadow 0.5s ease;
}
.footerContact__btn::before {
  content: "";
  width: 50px;
  height: 40px;
  background-image: url(../../img/common/icon-mail.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: block;
  margin-right: 20px;
}
.footerContact__btn::after {
  content: "";
  width: 80px;
  height: 80px;
  background-image: url(../../img/common/icon-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
}
.footerContact__btn:hover {
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.5);
}

.footerContact__title {
  font-size: clamp(1.25rem, 1.068rem + 0.91vw, 1.75rem);
  display: block;
  line-height: 1;
}

.footerContact__text {
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  margin-top: 20px;
  display: block;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .footerContact__container {
    padding: 3ch 0;
  }
  .footerContact__btn {
    width: calc(100% - 40px);
    flex-direction: column;
    padding: 20px 30px 30px;
  }
  .footerContact__btn::before {
    width: 40px;
    height: 30px;
    margin: 0 auto 15px;
  }
  .footerContact__btn::after {
    width: 55px;
    height: 55px;
    top: initial;
    right: 20px;
    bottom: 20px;
    transform: initial;
  }
  .footerContact__text {
    margin-top: 10px;
  }
}
.sub__kv .page__title {
  font-size: clamp(1.5rem, 1.227rem + 1.36vw, 2.25rem);
  font-weight: 700;
  display: flex;
  justify-content: center;
  letter-spacing: 0.2em;
  margin-bottom: 80px;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .sub__kv .page__title {
    padding-top: 40px;
    margin-bottom: 30px;
  }
}
.sec__title {
  font-size: clamp(1.5rem, 1.318rem + 0.91vw, 2rem);
  display: flex;
  flex-direction: column;
  letter-spacing: 0.15em;
}
.sec__title-service {
  font-size: clamp(1.375rem, 1.239rem + 0.68vw, 1.75rem);
}
.sec__title-center {
  align-items: center;
}

.title__description {
  text-align: center;
}

.btn {
  background-color: #005677;
  color: #FFFFFF;
  text-decoration: none;
  display: inline-block;
  border-radius: 50px;
  text-align: center;
  font-weight: 500;
  padding: 0.75rem 2rem;
  min-width: 260px;
  position: relative;
}
.btn::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1px solid #FFFFFF;
  border-top: 1px solid #FFFFFF;
  display: inline-block;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
}
.btn:hover {
  background-color: #004159;
}

.btn__wrapper-center {
  text-align: center;
}

.floating-area {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 10;
  display: none;
}
.floating-area .floating-bnr {
  display: block;
  width: 220px;
  position: relative;
}
.floating-area .floating-bnr a {
  display: block;
}
.floating-area .floating-bnr .close_btn {
  position: absolute;
  top: -15px;
  right: -10px;
  line-height: 30px;
  color: #FFFFFF;
  font-size: 20px;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  background-color: #cccccc;
  text-align: center;
  cursor: pointer;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .floating-area {
    right: 20px;
    bottom: 20px;
  }
  .floating-area .floating-bnr {
    width: 160px;
  }
  .close_btn {
    top: -15px;
    right: -10px;
    line-height: 20px;
    font-size: 14px;
    width: 20px;
    height: 20px;
  }
}
.parallax {
  width: 100%;
  height: 400px;
  position: sticky;
  top: 0;
  left: 0;
  z-index: -1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.parallax01 {
  background-image: url(../../img/top/paralax01.webp);
}

.parallax02 {
  background-image: url(../../img/top/paralax02.webp);
}

.parallax03 {
  background-image: url(../../img/about/paralax03.webp);
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .parallax {
    height: 200px;
  }
}
.breadcrumbs {
  background-color: #FFFFFF;
  display: flex;
  font-size: clamp(0.625rem, 0.58rem + 0.23vw, 0.75rem);
}
.breadcrumbs li:not(:last-child) {
  margin-right: 1em;
}
.breadcrumbs a {
  color: #005677;
  text-decoration: none;
}

.modal-open {
  cursor: pointer;
}

.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  padding: 40px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
  z-index: 999;
  color: #333333;
  font-size: 0.876rem;
}
.modal-container h6 {
  font-size: 1.25rem;
  border-bottom: 1px solid #005677;
  color: #005677;
  margin-bottom: 1rem;
}

.modal-container:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.modal-container.active {
  opacity: 1;
  visibility: visible;
}

.modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 90%;
  max-width: 800px;
}

.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 24px;
  color: #FFFFFF;
  cursor: pointer;
}

.modal-wrapper {
  background-color: #FFFFFF;
  text-align: left;
  padding: 30px;
  height: 90vh;
  overflow-y: scroll;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .modal-container {
    padding: 40px 0;
  }
  .modal-wrapper {
    padding: 10px;
  }
}/*# sourceMappingURL=style.css.map */