@charset "UTF-8";
/* ------------------------
  scss cmn set
------------------------ */
/* ------------------------
  commnon
------------------------ */
.pc {
  display: none;
}
@media screen and (min-width: 560px) {
  .pc {
    display: block;
  }
}

.sp {
  display: block;
}
@media screen and (min-width: 560px) {
  .sp {
    display: none;
  }
}

.ws-nowrap {
  white-space: nowrap;
}

.link {
  color: #1a0dab;
  border-bottom: 1px solid #1a0dab;
}

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

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

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

h2 {
  line-height: 1.4;
}

.heading-wrap {
  margin: 0 0 6rem;
}

.heading-defo {
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(3rem, 8vw, 6rem);
  color: #17618B;
}

.heading-1 {
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0;
  text-indent: 0.04em;
  font-size: clamp(3rem, 7vw, 6.8rem);
  color: #17618B;
}

.heading-2 {
  font-family: "Hind Madurai", sans-serif;
  text-align: center;
  text-indent: 0.04em;
  position: relative;
  z-index: 1;
}

.heading-2-body {
  display: inline-block;
  padding: 0 2.4rem;
  color: #2682AF;
  background: #fff;
}

.heading-2::before {
  content: "";
  width: 100%;
  border-bottom: 2px dotted #17618B;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: -1;
}

.heading-2-main {
  font-size: clamp(3rem, 8.8vw, 8rem);
  line-height: 1.2;
}

.heading-2-main span {
  font-weight: 800;
  color: #17618B;
}

.heading-2-sub {
  font-size: 2.4rem;
}

.heading-2-main,
.heading-2-sub {
  display: block;
}

.heading-sub-text {
  color: #17618B;
}

.btn-1-body {
  display: inline-flex;
  align-items: center;
  padding: 4px 1rem;
  font-size: 14px;
  color: #17618B;
  border: 1px solid #17618B;
  border-radius: 4px;
}

.btn-1 img {
  width: 14px;
  margin-left: 8px;
}

@media screen and (min-width: 560px) {
  .btn-1-body {
    font-size: 1.6rem;
  }
  .btn-1 img {
    width: auto;
  }
}
/* ------------------------
  body + fonts
------------------------ */
body {
  font-family: "Noto Sans JP", "Yu Gothic", "游ゴシック", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 1.5rem;
  line-height: 1.75;
  letter-spacing: 0.04em;
  color: #777777;
}
@media screen and (min-width: 560px) {
  body {
    font-size: 1.6rem;
  }
}

.ff-1 {
  font-family: "Hind Madurai", sans-serif;
}

.ff-2 {
  font-family: "Zen Old Mincho", serif;
}

.fw-light {
  font-weight: 300;
}

.fw-regular {
  font-weight: 400;
}

.fw-medium {
  font-weight: 500;
}

.fw-semibold {
  font-weight: 600;
}

.fw-bold {
  font-weight: 700;
}

/* ------------------------
  header
------------------------ */
.header {
  width: 100%;
  background: #fff;
  box-shadow: 0px 4px 3px -5px #777777;
  position: fixed;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 4vw;
}
@media screen and (min-width: 560px) {
  .header-inner {
    padding: 0 4vw;
  }
}

.header-right {
  display: flex;
  align-items: center;
}

.header-right .btn-1 {
  margin-right: 6.8rem;
  margin-right: min(4vw, 68px);
}

.header-logo {
  max-width: 120px;
}
@media screen and (min-width: 560px) {
  .header-logo {
    max-width: 200px;
  }
}
@media screen and (min-width: 768px) {
  .header-logo {
    max-width: 320px;
  }
}

/* menuボタン */
.-w-menu-btn {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 9;
  cursor: pointer;
}

.-w-menu-btn-body {
  width: 46px;
  text-align: center;
}

.-w-menu-btn-s-block-area {
  display: flex;
  flex-wrap: wrap;
  margin: -6px 0 0 -6px;
}

.-w-menu-btn-s-block {
  display: block;
  width: 20px;
  height: 20px;
  margin: 6px 0 0 6px;
  background-color: #17618B;
}

.header-menu {
  display: none;
  width: 90%;
  background: #fff;
  border-radius: 8px;
}
@media screen and (min-width: 768px) {
  .header-menu {
    width: 50%;
    max-width: 500px;
  }
}

.header-menu-list {
  text-align: center;
}

.header-menu-list__col a {
  display: block;
  padding: 1rem 0;
  color: #17618B;
}

.header-menu-list__col:not(:first-child) {
  border-top: 4px dotted #ccc;
}

.header-menu.active {
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 11;
}

.-w-bg {
  width: 100%;
  height: 100vh;
  background: rgba(23, 97, 139, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: -10;
  opacity: 0;
  transition: 0.2s;
  pointer-events: none;
}

.-w-bg.active {
  opacity: 1;
  z-index: 10;
  pointer-events: inherit;
}

/* ------------------------
  main , section
------------------------ */
.section-1 {
  max-width: 1240px;
  margin: 10rem auto 0;
  padding: 0 2.4%;
}
@media screen and (min-width: 560px) {
  .section-1 {
    margin: 14rem auto 0;
  }
}

.full-width {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}

/* ------------------------
  mv 下層
------------------------ */
.mv-sub-inner {
  margin: 6.6rem 0 0;
  padding: 6rem 0;
  background: #f5f5f5;
}
@media screen and (min-width: 768px) {
  .mv-sub-inner {
    margin: 10.6rem 0 0;
    padding: 6rem 0;
  }
}

/* ------------------------
  footer
------------------------ */
.footer {
  color: #fff;
  background-color: #17618B;
}

.copyright {
  margin: 8rem 0 0;
  padding: 1rem 0;
  text-align: center;
  color: #fff;
  background: #17618B;
}

/* --------------------------
  プライバシーポリシー
---------------------------*/
.-p-privacy .section-1 {
  margin: 6rem auto 0;
}

.privacy-wrap {
  max-width: 980px;
  margin: 6rem auto 0;
  color: #333;
}

.list-privacy {
  margin-top: 6rem;
}

.list-privacy-col:not(:first-child) {
  margin: 4rem 0 0;
}

.list-privacy-title {
  margin: 0 0 4px;
  font-weight: 700;
  color: #17618B;
}

.list-privacy-company {
  display: inline-block;
  margin: 10px 0 0;
  padding: 8px 10px;
  background-color: #f5f5f5;
  border: 1px solid #d3d3d3;
}

/* --------------------------
  page-top
---------------------------*/
.page-top {
  position: fixed;
  right: 1rem;
  bottom: 20px;
  z-index: 10;
  cursor: pointer;
}

.btn-top-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #fff;
  background-color: #17618B;
  border: solid 2px #fff;
  border-radius: 50%;
}

.btn-top-inner i {
  font-size: 2rem;
}

/* js連動 */
.js-btn-top {
  transition: opacity 1s;
  visibility: hidden;
  opacity: 0;
}

.js-btn-top.is-fadein {
  visibility: visible;
  opacity: 1;
}

/* ------------------------
  フェードイン用
------------------------- */
.animateElement {
  opacity: 0;
  visibility: hidden;
  transition: 1.6s;
  transform: translateY(150px);
}

.animated {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}/*# sourceMappingURL=animation.css.map */