@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;
}

.posi-relative {
  position: relative;
}

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;
}

.bg-1 {
  position: relative;
}

.bg-1::before {
  content: "";
  display: block;
  width: 68%;
  height: 100%;
  background: url(../img/cmn/bg-1.png) no-repeat center top/contain;
  position: absolute;
  right: 0;
  top: 4%;
}

.bg-1.bg-1--bottom::before {
  background: url(../img/cmn/bg-1.png) no-repeat center bottom/contain;
  top: auto;
  bottom: 0;
}

.bg-1--fix::before {
  background-attachment: fixed;
  background-position: center right;
}

.bg-2 {
  position: relative;
  background: #fff;
}

.bg-2-body {
  padding-top: 12rem;
  padding-bottom: 16rem;
}
@media screen and (min-width: 560px) {
  .bg-2-body {
    padding-bottom: 32rem;
  }
}

.bg-2-top,
.bg-2-bottom {
  width: 100%;
  position: absolute;
  left: 0;
  z-index: 0;
}

.bg-2-top {
  top: 0;
}

.bg-2-bottom {
  bottom: 0;
}

.btn-2 {
  height: 66px;
}

.btn-2--2 {
  height: 120px;
}

.btn-2-body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  background: rgb(67, 139, 36);
  background: linear-gradient(180deg, rgb(67, 139, 36) 8%, rgb(31, 47, 4) 100%);
  border: 1px solid #333;
  border-radius: 10px;
  cursor: pointer;
}

.btn-2--reset .btn-2-body {
  background: rgb(98, 98, 98);
  background: linear-gradient(180deg, rgb(98, 98, 98) 8%, rgb(20, 20, 20) 100%);
}

.btn-2 span {
  margin-top: 6px;
  font-size: 12px;
  font-weight: normal;
}

/* ------------------------
  cmn
------------------------- */
.summary {
  margin-bottom: 6rem;
  text-align: center;
}

.summary span {
  display: inline-block;
  min-width: 260px;
  font-weight: 800;
  font-size: 2.4rem;
  color: #fff;
  background-color: #17618B;
  border-radius: 10vw;
}

/* ------------------------
  mv
------------------------- */
.mv {
  position: relative;
  z-index: 1;
}

.mv-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.mv-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 30vw 2.4% 34vw;
}
@media screen and (min-width: 560px) {
  .mv-inner {
    padding: 14.8rem 2.4% 34vw;
  }
}
@media screen and (min-width: 768px) {
  .mv-inner {
    padding: 18rem 2.4% 34vw;
  }
}
@media screen and (min-width: 1024px) {
  .mv-inner {
    padding: 19.2rem 0 34vw;
  }
}

.mv-heading {
  font-size: clamp(2.4rem, 12vw, 12rem);
  line-height: 1;
  color: #2682AF;
}

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

.mv-text-wrap {
  margin: 0 0 0;
  line-height: 1;
  color: #17618B;
}

.mv-text-1 {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1;
}
@media screen and (min-width: 560px) {
  .mv-text-1 {
    font-size: 4.6rem;
  }
}

.mv-text-2 {
  display: inline-block;
  margin: 2.4rem 0 1.8rem;
  padding: 0 0 2.4rem;
  font-size: 2rem;
  border-bottom: 14px solid #17618B;
}

.mv-text-3 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1.5;
}

.mv-bottom-text {
  margin: 6.8rem 0 0;
}

@media screen and (min-width: 560px) {
  .mv-text-wrap {
    margin: 0 0 0 1vw;
  }
  .mv-text-2 {
    margin: 2.4rem 0 1.4rem;
  }
}
@media screen and (min-width: 1024px) {
  .mv-text-wrap {
    margin: 0 0 0 20rem;
  }
}
/* ------------------------
  vision
------------------------- */
.-s-vision.section-1 {
  margin-top: 6rem;
}

.vision-wrap {
  text-align: center;
}

.vision-text {
  margin: 6rem 0 0;
  font-size: 2rem;
  line-height: 2;
}

.vision-img {
  margin-top: 10.8rem;
}

/* ------------------------
  service
------------------------- */
.content:not(:first-child) {
  margin-top: clamp(6.8rem, 8.8vw, 16.8rem);
}

.card {
  display: flex;
  flex-wrap: wrap;
  max-width: 80%;
  margin: -3% auto 0;
  padding-top: 6rem;
  text-align: center;
  color: #2682AF;
}
@media screen and (min-width: 560px) {
  .card {
    max-width: inherit;
  }
}

.card.card--1 {
  justify-content: center;
  margin: 0 auto;
}

.card-col {
  width: 100%;
  margin: 3% 0 0;
  padding: 2rem 2rem;
  background-color: #fff;
  border: 1px solid #17618B;
  border-radius: 8px;
  position: relative;
}

.card--1 .card-col {
  margin: 0;
}

.card-title {
  font-family: "Hind Madurai", sans-serif;
  font-size: clamp(2.4rem, 6.8vw, 4rem);
  line-height: 1.2;
  letter-spacing: 0;
}

.card-title span {
  color: #17618B;
  font-weight: 800;
}

.card-img {
  height: 100px;
  margin: 20px auto;
}
@media screen and (min-width: 560px) {
  .card-img {
    height: 200px;
  }
}

.card-img--s {
  max-width: 60%;
}

.card-img--m {
  max-width: 78%;
}

.card-price-cost {
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin: 14px 0 14px;
  font-size: 2rem;
}

.card-price-cost span {
  margin: 0 4px 0 0;
  font-family: "Hind Madurai", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
}

.card-price-cost.--2 {
  font-weight: 800;
}

.card-price-cost.--2 span {
  margin: 0 0 0 10px;
}

.card-price-coming {
  margin: 0 0 20px;
}

@media screen and (min-width: 560px) {
  .card {
    margin: -3% 0 0 -3%;
  }
  .card-col {
    width: 30%;
    margin: 3% 0 0 3%;
    padding: 4.8rem 2rem;
  }
}
/* ------------------------
  company
------------------------- */
.table {
  max-width: 980px;
  margin: 0 auto;
}

.table-col {
  font-size: 1.8rem;
  color: #17618B;
  border-top: 4px solid #2682AF;
}

.table-col:last-child {
  border-bottom: 4px solid #2682AF;
}

.table-title {
  font-weight: 700;
  letter-spacing: 0.06em;
}

.table-text {
  flex: 1;
}

.table-title {
  color: #fff;
  background: #17618B;
}

.table-title,
.table-text {
  padding: 4vw 10px;
}

@media screen and (min-width: 560px) {
  .table-col {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #2682AF;
  }
  .table-col:last-child {
    border-bottom: 1px solid #2682AF;
  }
  .table-title {
    display: flex;
    align-items: center;
    min-width: 120px;
    margin: 0 4.8rem 0 0;
    color: inherit;
    background: inherit;
  }
  .table-title,
  .table-text {
    padding: 2.4rem 0;
  }
}
/* ------------------------
  contact
------------------------- */
.-s-contact .heading-sub-text {
  margin: 2rem 0 0;
}

.form-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.form {
  margin-top: 32px;
  border: 1px solid #fff;
  border-radius: 6px;
  overflow: hidden;
}

.form-col:not(:first-child) {
  border-top: 1px solid #fff;
}

.form-col-l {
  display: flex;
  align-items: center;
  font-weight: 800;
  color: #17618B;
  background-color: #E9F0F8;
}

.form-col-r {
  flex: 1;
  align-items: center;
  background-color: #fff;
}

.form--check .form-col-r {
  background: #f5f5f5;
}

.form-col-l,
.form-col-r {
  padding: 16px;
}

@media screen and (min-width: 560px) {
  .form-col {
    display: flex;
    flex-wrap: wrap;
  }
  .form-col-l {
    width: 260px;
  }
}
.form-privacy {
  margin: 40px 0 0;
  text-align: center;
  font-size: 14px;
  position: relative;
}

.form-privacy-check {
  margin-top: 20px;
  font-size: 16px;
}

.form-privacy-check label,
.form-privacy-check input {
  cursor: pointer;
}

.required {
  display: block;
  padding: 2px 6px;
  font-size: 13px;
  line-height: 1.5;
  color: #fff;
  background-color: #D30000;
  border-radius: 6px;
}

.form-col-l span {
  width: 40px;
  margin: 0 6px 0 0;
  text-align: center;
}

.form-btn-area {
  width: 100%;
  max-width: 480px;
  margin: 40px auto 0;
  display: flex;
  position: relative;
}

.form-btn-area--1 {
  justify-content: center;
}

.form-btn-area--2 {
  justify-content: space-between;
}

.form-btn-area--ma-1 {
  margin-top: 6.8rem;
}

.form-btn-area-col {
  width: 48%;
}

.form-col input[type=text],
.form-col textarea {
  padding: 16px 10px;
  font-size: 16px;
  background: #fff;
  border: 1px solid #17618B;
  border-radius: 4px;
  position: relative;
  z-index: 2;
}

.form-col input[type=text],
.form-col select {
  width: 100%;
}

.form-col textarea {
  width: 100%;
  height: 100%;
  min-height: 180px;
}

.form-thanks {
  max-width: 780px;
  margin: 0 auto;
  padding: 4rem 2vw;
  text-align: center;
  border: 1px solid #707070;
}/*# sourceMappingURL=top.css.map */