@charset "UTF-8";
/*==================================
      レスポンシブ設定 マップ型変数breakpointsを定義
      =================================*/
/*==================================
      # 色、フォントファミリー
      =================================*/
/*==================================
      common(一般) - 全体に共通するスタイル
      =================================*/
@media screen and (max-width: 1000px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 1001px) {
  .is-sp {
    display: none !important;
  }
}
body {
  font-size: 16px;
  color: rgb(49, 49, 49);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7;
  background: #fff;
  letter-spacing: 2px;
  padding-top: 56px;
}
@media screen and (max-width: 1000px) {
  body {
    padding-top: 0;
  }
}

body,
html {
  overflow-x: hidden;
}
@media screen and (max-width: 1000px) {
  body,
  html {
    max-width: 500px;
    margin: 0 auto;
    -webkit-box-shadow: 0 3px 6px rgba(62, 62, 62, 0.5);
            box-shadow: 0 3px 6px rgba(62, 62, 62, 0.5);
  }
}

#contact {
  position: relative;
  top: -50px;
}
@media screen and (max-width: 1000px) {
  #contact {
    top: 0;
  }
}

.header-inner {
  margin: 0 auto;
  padding: 0 0 0 40px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 1000px) {
  .header-inner {
    padding: 0 0 0 16px;
  }
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 1000px) {
  .inner {
    padding: 0 16px;
  }
}

img {
  width: 100%;
  vertical-align: bottom;
}

a {
  font-family: "Noto Sans JP", sans-serif;
}

::-webkit-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::-moz-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

:-ms-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::-ms-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::placeholder {
  color: rgba(62, 62, 62, 0.5);
}

input[type=text],
input[type=tel],
input[type=email],
input[type=submit],
select,
textarea {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid rgb(185, 185, 185);
  background: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 4px;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  width: 100%;
  padding: 10px;
  margin: 0;
  outline: none;
}

.header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
}
@media screen and (max-width: 1000px) {
  .header {
    position: absolute;
    background: transparent;
    max-width: 500px;
    margin: 0 auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.header .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header .flex .logo {
  padding: 10px 0;
  font-size: 20px;
}
@media screen and (max-width: 1000px) {
  .header .flex .logo {
    font-size: 14px;
    color: #fff;
  }
}
@media screen and (max-width: 1000px) {
  .header .flex .btn {
    display: none;
  }
}
.header .flex .btn a {
  font-size: 20px;
  font-weight: 700;
  background: rgb(49, 49, 49);
  padding: 10px 50px;
  display: block;
  text-align: center;
  color: #fff;
  border: 1px solid rgb(49, 49, 49);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .flex .btn a:hover {
  color: rgb(49, 49, 49);
  background: #fff;
}

.mv {
  background: url(../img/fv_bg.jpg) no-repeat center center/cover;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .mv {
    background: radial-gradient(circle, rgb(95, 126, 176) 0%, rgb(50, 80, 130) 100%);
  }
}
.mv .contents {
  text-align: center;
  padding: 12vw 0;
  position: relative;
  left: 20%;
}
@media screen and (max-width: 1000px) {
  .mv .contents {
    left: 0;
    padding: 80px 0 30px;
  }
}
.mv .contents .title {
  display: inline-block;
  color: #fff;
  font-size: 45px;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  line-height: 1;
  margin-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .mv .contents .title {
    margin-bottom: 20px;
    font-size: 31px;
  }
}
@media screen and (max-width: 370px) {
  .mv .contents .title {
    font-size: 28px;
  }
}
.mv .contents .title span {
  display: inline-block;
  line-height: 1;
  padding: 10px;
  border-right: 2px solid #fff;
  width: 70px;
}
@media screen and (max-width: 1000px) {
  .mv .contents .title span {
    width: initial;
    padding: 7px;
  }
}
.mv .contents .text1 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  .mv .contents .text1 {
    font-size: 15px;
  }
}
.mv .contents .text2 {
  font-size: 38px;
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
  text-shadow: 0 3px 6px rgba(62, 62, 62, 0.5);
  margin-bottom: 50px;
}
@media screen and (max-width: 1000px) {
  .mv .contents .text2 {
    font-size: 20px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 370px) {
  .mv .contents .text2 {
    font-size: 16px;
  }
}
.mv .contents .text2 span {
  font-size: 120%;
  color: rgb(227, 253, 93);
}

.cta-btn {
  text-align: center;
}
.cta-btn a {
  background: #fff;
  display: block;
  max-width: 440px;
  margin: 0 auto;
  padding: 10px 0;
  border: 3px solid rgb(186, 201, 227);
  color: rgb(50, 80, 130);
  font-weight: 700;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  -webkit-box-shadow: 0 2px 6px rgba(6, 23, 52, 0.35);
          box-shadow: 0 2px 6px rgba(6, 23, 52, 0.35);
}
@media screen and (max-width: 1000px) {
  .cta-btn a {
    max-width: 340px;
    padding: 5px 0;
  }
}
.cta-btn a:hover {
  opacity: 0.6;
}
.cta-btn a .heading {
  font-size: 18px;
  line-height: 1.3;
}
@media screen and (max-width: 1000px) {
  .cta-btn a .heading {
    font-size: 14px;
  }
}
@media screen and (max-width: 370px) {
  .cta-btn a .heading {
    font-size: 12px;
  }
}
.cta-btn a .bottom {
  font-size: 27px;
  line-height: 1.5;
}
@media screen and (max-width: 1000px) {
  .cta-btn a .bottom {
    font-size: 21px;
  }
}
@media screen and (max-width: 370px) {
  .cta-btn a .bottom {
    font-size: 18px;
  }
}
.cta-btn a .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cta-btn a .flex .left span {
  font-size: 120%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, rgb(227, 253, 93)));
  background: linear-gradient(transparent 70%, rgb(227, 253, 93) 70%);
}
@media screen and (max-width: 1000px) {
  .cta-btn a .flex .left span {
    font-size: 130%;
  }
}
.cta-btn a .flex .arrow {
  width: 35px;
  margin-left: 30px;
}
@media screen and (max-width: 1000px) {
  .cta-btn a .flex .arrow {
    width: 28px;
    margin-left: 10px;
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media screen and (max-width: 370px) {
  .cta-btn a .flex .arrow {
    width: 20px;
  }
}

.mv-bottom {
  position: relative;
}
.mv-bottom .contents {
  position: absolute;
  bottom: 10%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 1000px) {
  .section-title {
    margin-bottom: 30px;
  }
}
.section-title .en {
  font-size: 32px;
  font-family: "Source Serif 4", serif;
  color: rgba(202, 179, 123, 0.7);
}
.section-title .ja {
  font-size: 36px;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
}
@media screen and (max-width: 1000px) {
  .section-title .ja {
    font-size: 20px;
  }
}
@media screen and (max-width: 370px) {
  .section-title .ja {
    font-size: 17px;
  }
}

.section {
  padding: 100px 0;
}
@media screen and (max-width: 1000px) {
  .section {
    padding: 50px 0;
  }
}

.sec1 {
  background: #F6F6F6;
}
.sec1 .box .heading {
  margin-bottom: -20px;
}
.sec1 .box .bottom {
  position: relative;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(50, 80, 130, 0) 0%, rgb(50, 80, 130) 10px);
  padding: 0 16px;
  padding-bottom: 50px;
}
@media screen and (max-width: 1000px) {
  .sec1 .box .bottom {
    padding-bottom: 20px;
  }
}
.sec1 .box ul {
  max-width: 622px;
  margin: 0 auto;
}
.sec1 .box ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
  background: #fff;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px 20px;
  line-height: 1.5;
}
@media screen and (max-width: 1000px) {
  .sec1 .box ul li {
    padding: 15px;
  }
}
.sec1 .box ul li span {
  color: rgb(50, 80, 130);
  font-weight: 700;
}
.sec1 .box ul li:last-child {
  margin-bottom: 0;
}
.sec1 .box ul li .check {
  width: 29px;
}
@media screen and (max-width: 1000px) {
  .sec1 .box ul li .check {
    width: 23px;
  }
}
.sec1 .box ul li .text {
  width: calc(100% - 35px);
  font-size: 20px;
}
@media screen and (max-width: 1000px) {
  .sec1 .box ul li .text {
    width: calc(100% - 28px);
    font-size: 16px;
  }
}
.sec1 .sankaku {
  max-width: 450px;
  margin: 0 auto;
}

.sec2 {
  color: #fff;
  background: #F6F6F6;
}
.sec2 .heading {
  padding-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .sec2 .heading {
    padding-bottom: 10px;
  }
}
.sec2 .heading ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 850px;
  margin: 0 auto;
}
.sec2 .heading ul li {
  background: rgb(164, 164, 164);
  padding: 30px;
  font-size: 20px;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .sec2 .heading ul li {
    font-size: 13.5px;
    width: 47%;
    padding: 10px 10px;
    text-align: center;
    line-height: 1.3;
  }
}
@media screen and (max-width: 370px) {
  .sec2 .heading ul li {
    font-size: 12px;
  }
}
.sec2 .heading ul li .icon1 {
  position: absolute;
  width: 30px;
  top: 80%;
  left: 70%;
}
@media screen and (max-width: 1000px) {
  .sec2 .heading ul li .icon1 {
    left: 50%;
  }
}
.sec2 .heading ul li .icon2 {
  position: absolute;
  width: 30px;
  top: 80%;
  right: 70%;
}
@media screen and (max-width: 1000px) {
  .sec2 .heading ul li .icon2 {
    right: 50%;
  }
}
.sec2 .bottom {
  padding: 60px 0;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  background: -webkit-gradient(linear, left top, right top, from(rgb(2, 24, 41)), to(rgb(7, 84, 143)));
  background: linear-gradient(to right, rgb(2, 24, 41) 0%, rgb(7, 84, 143) 100%);
  font-size: 26px;
  font-weight: 300;
}
@media screen and (max-width: 1000px) {
  .sec2 .bottom {
    padding: 30px 0;
  }
}
@media screen and (max-width: 1000px) {
  .sec2 .bottom {
    font-size: 16px;
  }
}
.sec2 .bottom span {
  font-size: 32px;
  font-weight: 600;
  text-shadow: 0 0 10px rgb(186, 201, 227);
}
@media screen and (max-width: 1000px) {
  .sec2 .bottom span {
    font-size: 18px;
  }
}

.sec3 {
  background: #F6F6F6;
}
.sec3 .inner {
  padding: 0;
}
.sec3 ul li {
  margin-bottom: 60px;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .sec3 ul li {
    margin-bottom: 40px;
  }
}
.sec3 ul li:last-child {
  margin-bottom: 0;
}
.sec3 ul li .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1000px) {
  .sec3 ul li .flex {
    display: block;
  }
}
.sec3 ul li .flex .img {
  width: 42%;
  z-index: 2;
  padding-left: 10px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .sec3 ul li .flex .img {
    width: 100%;
    padding: 0 16px !important;
    margin-bottom: 10px;
  }
}
.sec3 ul li .flex .contents {
  width: 58%;
}
@media screen and (max-width: 1000px) {
  .sec3 ul li .flex .contents {
    width: 100%;
  }
}
.sec3 ul li .flex .contents h3 {
  font-size: 20px;
  font-weight: 700;
  color: rgb(50, 80, 130);
  padding: 0 30px;
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .sec3 ul li .flex .contents h3 {
    padding: 0 16px;
  }
}
.sec3 ul li .flex .contents h4 {
  font-size: 16px;
  font-weight: 700;
  padding: 15px 30px;
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .sec3 ul li .flex .contents h4 {
    padding: 15px 16px;
  }
}
.sec3 ul li .flex .contents p {
  font-size: 16px;
  padding: 15px 30px;
  background: #fff;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .sec3 ul li .flex .contents p {
    padding: 15px 16px;
  }
}
.sec3 ul li .flex .contents p::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  .sec3 ul li .flex .contents p::before {
    display: none;
  }
}
.sec3 ul li:nth-child(2n) .flex {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.sec3 ul li:nth-child(2n) .flex .contents p::before {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.sec3 ul li:nth-child(2n) .img {
  padding-right: 10px;
  padding-left: 0;
}

.footer {
  background: rgb(2, 24, 41);
  padding: 60px 0;
}
.footer .copyright {
  font-size: 14px;
  text-align: center;
  color: #fff;
}

.sec4 {
  background: #F6F6F6;
}
.sec4 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 1000px) {
  .sec4 ul {
    display: block;
  }
}
.sec4 ul li {
  text-align: center;
}
@media screen and (min-width: 1001px) {
  .sec4 ul li {
    width: calc(50% - 5px);
    margin-right: 10px;
  }
  .sec4 ul li:nth-child(2n) {
    margin-right: 0;
  }
  .sec4 ul li:nth-child(n+3) {
    margin-top: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .sec4 ul li {
    width: 100%;
    margin-bottom: 30px;
  }
  .sec4 ul li:last-child {
    margin-bottom: 0;
  }
}
.sec4 ul li .heading {
  text-align: right;
  line-height: 1;
  font-family: "Source Serif 4", serif;
  font-size: 20px;
  color: rgb(202, 179, 123);
  margin-bottom: -5px;
}
.sec4 ul li .heading span {
  font-size: 150%;
}
.sec4 ul li .bottom {
  background: rgb(234, 242, 255);
  border-top: 1px solid rgb(202, 179, 123);
  padding: 30px 20px;
}
@media screen and (max-width: 1000px) {
  .sec4 ul li .bottom {
    padding: 30px 15px;
  }
}
.sec4 ul li h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media screen and (max-width: 1000px) {
  .sec4 ul li h3 {
    font-size: 18px;
  }
}
@media screen and (max-width: 1000px) {
  .sec4 ul li p {
    font-size: 16px;
  }
}
@media screen and (min-width: 1001px) {
  .sec4 ul li:nth-child(2) .heading {
    color: rgb(50, 80, 130);
  }
  .sec4 ul li:nth-child(2) .bottom {
    border-top: 1px solid rgb(50, 80, 130);
  }
  .sec4 ul li:nth-child(3) .heading {
    color: rgb(50, 80, 130);
  }
  .sec4 ul li:nth-child(3) .bottom {
    border-top: 1px solid rgb(50, 80, 130);
  }
}
@media screen and (max-width: 1000px) {
  .sec4 ul li:nth-child(2n) .heading {
    color: rgb(50, 80, 130);
  }
  .sec4 ul li:nth-child(2n) .bottom {
    border-top: 1px solid rgb(50, 80, 130);
  }
}

.about {
  background: #F6F6F6;
}
@media screen and (max-width: 1000px) {
  .about .inner2 {
    padding: 0;
  }
}
.about .heading-bg {
  background: linear-gradient(to bottom, #F6F6F6 0px, #F6F6F6 300px, rgb(50, 80, 130) 300px, rgb(50, 80, 130) 100%);
  padding-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .about .heading-bg {
    background: #F6F6F6;
  }
}
.about .white-box {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  color: rgb(50, 80, 130);
  padding: 30px 20px;
  font-size: 20px;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  margin-top: -100px;
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .about .white-box {
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 370px) {
  .about .white-box {
    font-size: 14px;
  }
}
.about ul {
  max-width: 670px;
  margin: 0 auto;
  padding-left: 30px;
}
@media screen and (max-width: 1000px) {
  .about ul {
    background: rgb(50, 80, 130);
    padding: 30px 20px;
    padding-left: 40px;
  }
}
.about ul li {
  font-size: 16px;
  list-style: outside;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .about ul li {
    font-size: 14px;
  }
}
@media screen and (max-width: 370px) {
  .about ul li {
    font-size: 13px;
  }
}
.about .middle {
  margin-top: 80px;
  font-size: 20px;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .about .middle {
    font-size: 16px;
    margin-top: 0;
  }
}
.about .bottom {
  max-width: 920px;
  margin: 0 auto;
  margin-top: 80px;
}
@media screen and (max-width: 1000px) {
  .about .bottom {
    margin-top: 30px;
  }
}
.about .bottom h3 {
  color: rgb(50, 80, 130);
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 10px;
}
@media screen and (max-width: 1000px) {
  .about .bottom h3 {
    font-size: 16px;
  }
}
.about .bottom .row {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid rgb(49, 49, 49);
}
@media screen and (max-width: 1000px) {
  .about .bottom .row {
    font-size: 14px;
  }
}
.about .bottom .row:last-child {
  border-bottom: 1px solid rgb(49, 49, 49);
}
.about .bottom .row .dt {
  width: 200px;
}
@media screen and (max-width: 1000px) {
  .about .bottom .row .dt {
    width: 100px;
  }
}
.about .bottom .row .dd {
  width: calc(100% - 200px);
}
@media screen and (max-width: 1000px) {
  .about .bottom .row .dd {
    width: calc(100% - 100px);
  }
}

.cta {
  background: -webkit-gradient(linear, left top, right top, from(rgb(2, 24, 41)), to(rgb(7, 84, 143)));
  background: linear-gradient(to right, rgb(2, 24, 41) 0%, rgb(7, 84, 143) 100%);
  position: relative;
}
.cta .inner {
  padding: 0;
}
.cta .bg {
  position: absolute;
  content: "";
  width: 52%;
  height: 100%;
  top: 0;
  left: 50%;
  z-index: 1;
}
@media screen and (max-width: 1320px) {
  .cta .bg {
    width: 68%;
  }
}
.cta .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cta .area {
  max-width: 920px;
  margin: 0 auto;
  padding: 60px 0;
}
@media screen and (max-width: 1000px) {
  .cta .area {
    padding: 30px 0;
  }
}
.cta .area .contents {
  max-width: 500px;
  position: relative;
  z-index: 2;
}
.cta .cta-title {
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .cta .cta-title {
    padding: 0 20px;
  }
}
.cta .cta-title .wrap {
  display: inline-block;
  border-bottom: 1px solid #fff;
  font-size: 24px;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1000px) {
  .cta .cta-title .wrap {
    font-size: 20px;
  }
}
@media screen and (max-width: 370px) {
  .cta .cta-title .wrap {
    font-size: 18px;
  }
}
.cta .img {
  margin-bottom: 20px;
}
.cta p {
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .cta p {
    font-size: 18px;
    margin-bottom: 20px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 1000px) {
  .cta .cta-btn {
    padding: 0 20px;
  }
}

.voice {
  background: linear-gradient(to bottom, #F6F6F6 0px, #F6F6F6 190px, #fff 190px, #fff 100%);
}
@media screen and (max-width: 1000px) {
  .voice {
    background: linear-gradient(to bottom, #F6F6F6 0px, #F6F6F6 120px, #fff 120px, #fff 100%);
  }
}
.voice ul {
  max-width: 920px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.voice ul li {
  width: 32.5%;
  background: url(../img/voice1.png) no-repeat top center/cover;
  padding: 30px 15px;
  -webkit-box-shadow: 0 3px 6px rgba(49, 49, 49, 0.3);
          box-shadow: 0 3px 6px rgba(49, 49, 49, 0.3);
  border: 1px solid rgb(164, 164, 164);
}
.voice ul li:nth-child(2n) {
  background: url(../img/voice2.png) no-repeat top center/cover;
}
@media screen and (min-width: 1001px) {
  .voice ul li:nth-child(n+4) {
    margin-top: 40px;
  }
  .voice ul li:nth-child(2) {
    position: relative;
    top: 50px;
  }
  .voice ul li:nth-child(5) {
    position: relative;
    top: 50px;
  }
  .voice ul li:nth-child(8) {
    position: relative;
    top: 50px;
  }
}
@media screen and (max-width: 1000px) {
  .voice ul li {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    margin-bottom: 30px;
    padding: 30px 0;
  }
  .voice ul li:last-child {
    margin-bottom: 0;
  }
}
.voice ul li H3 {
  font-size: 20px;
  font-weight: 400;
  font-family: "Source Serif 4", serif;
  text-align: center;
  color: rgba(49, 49, 49, 0.7);
  margin-bottom: 20px;
}
.voice ul li p {
  font-size: 18px;
  text-align: center;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 1000px) {
  .voice ul li p {
    font-size: 16px;
  }
}

.flow {
  background: #F6F6F6;
  text-align: center;
}
@media screen and (max-width: 1320px) {
  .flow .pc {
    display: none;
  }
}
@media screen and (min-width: 1321px) {
  .flow .tab {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  .flow .tab {
    display: none;
  }
}
.flow .sp {
  max-width: 260px;
  margin: 0 auto;
}
@media screen and (min-width: 1001px) {
  .flow .sp {
    display: none;
  }
}

.cta2 {
  background: url(../img/cta2.jpg) no-repeat center center/cover;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .cta2 {
    background: #fff;
  }
  .cta2 .inner {
    padding: 0;
  }
}
.cta2 .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(50, 80, 130, 0.7);
}
@media screen and (max-width: 1000px) {
  .cta2 .bg {
    display: none;
  }
}
.cta2 .box {
  position: relative;
  z-index: 1;
  background: #fff;
  -webkit-box-shadow: 10px 10px 25px rgba(11, 32, 66, 0.85);
          box-shadow: 10px 10px 25px rgba(11, 32, 66, 0.85);
  padding: 50px 30px;
}
@media screen and (max-width: 1000px) {
  .cta2 .box {
    padding: 0px 20px;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.cta2 .box h2 {
  font-size: 32px;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .cta2 .box h2 {
    font-size: 20px;
  }
}
.cta2 .box p {
  font-weight: 300;
  text-align: center;
  font-size: 20px;
  margin-bottom: 35px;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 1000px) {
  .cta2 .box p {
    font-size: 16px;
  }
}
@media screen and (max-width: 370px) {
  .cta2 .box p {
    font-size: 14px;
  }
}

.qa {
  background: #F6F6F6;
}
.qa ul li {
  background: #fff;
  padding: 15px 25px;
  margin-bottom: 30px;
}
.qa ul li:last-child {
  margin-bottom: 0;
}
.qa ul li .heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .qa ul li .heading {
    padding-bottom: 10px;
  }
}
.qa ul li .heading .icon {
  font-size: 40px;
  font-family: "Source Serif 4", serif;
  color: rgb(50, 80, 130);
  width: 60px;
}
@media screen and (max-width: 1000px) {
  .qa ul li .heading .icon {
    font-size: 30px;
    width: 40px;
  }
}
.qa ul li .heading p {
  font-size: 20px;
  font-weight: 600;
  color: rgb(50, 80, 130);
  font-family: "Noto Serif JP", serif;
  width: calc(100% - 60px);
}
@media screen and (max-width: 1000px) {
  .qa ul li .heading p {
    font-size: 16px;
    width: calc(100% - 40px);
  }
}
.qa ul li .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid rgb(50, 80, 130);
}
@media screen and (max-width: 1000px) {
  .qa ul li .bottom {
    padding-top: 10px;
  }
}
.qa ul li .bottom .icon {
  font-size: 40px;
  font-family: "Source Serif 4", serif;
  color: rgb(202, 179, 123);
  width: 60px;
}
@media screen and (max-width: 1000px) {
  .qa ul li .bottom .icon {
    font-size: 30px;
    width: 40px;
  }
}
.qa ul li .bottom p {
  font-size: 16px;
  font-weight: 300;
  font-family: "Noto Serif JP", serif;
  width: calc(100% - 60px);
}
@media screen and (max-width: 1000px) {
  .qa ul li .bottom p {
    font-size: 14px;
    width: calc(100% - 40px);
  }
}

html {
  scroll-behavior: smooth;
}

.obi {
  font-size: 32px;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  background: rgb(50, 80, 130);
  color: #fff;
  padding: 30px 0;
  line-height: 1.5;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .obi {
    padding: 15px 0;
    font-size: 20px;
  }
}
.obi .img {
  max-width: 200px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 95%;
}
@media screen and (max-width: 1000px) {
  .obi .img {
    max-width: 150px;
  }
}
.obi .img img {
  vertical-align: top;
}

.contact {
  background: #F6F6F6;
}
.contact .section-title .ja {
  font-size: 32px;
  color: rgb(49, 49, 49);
}
@media screen and (max-width: 1000px) {
  .contact .section-title .ja {
    font-size: 20px;
  }
}
.contact .date {
  max-width: 200px;
  position: relative;
}
.contact .date .kalender {
  position: absolute;
  top: 45%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 25px;
}
.contact .time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact .time select {
  width: 200px;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}
.contact .time p {
  margin: 0 10px;
}
.contact .c-form {
  max-width: 640px;
  margin: 0 auto;
  font-size: 16px;
}
@media screen and (max-width: 1000px) {
  .contact .c-form {
    font-size: 14px;
  }
}
.contact dl {
  margin-bottom: 30px;
}
.contact dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 5px;
}
.contact dt .require {
  background: rgb(255, 0, 0);
  color: #fff;
  font-size: 14px;
  padding: 2px 10px;
  margin-left: 20px;
  border-radius: 6px;
}
@media screen and (max-width: 1000px) {
  .contact dt .require {
    font-size: 13px;
  }
}
.contact dt .any {
  background: rgb(50, 80, 130);
  color: #fff;
  font-size: 14px;
  padding: 2px 10px;
  margin-left: 20px;
  border-radius: 6px;
}
@media screen and (max-width: 1000px) {
  .contact dt .any {
    font-size: 13px;
  }
}
.contact .dd1 {
  max-width: 200px;
}
.contact .dd1 select {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}
.contact .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.contact .flex p {
  display: inline-block;
  margin-left: 5px;
}
.contact .schedule__sec-ttl {
  color: rgb(50, 80, 130);
  font-weight: 500;
}
.contact textarea {
  height: 150px;
  resize: none;
}
.contact .c-form__privacy-content-scroll {
  height: 200px;
  padding: 20px;
  background: #fff;
  overflow-y: scroll;
  border: 1px solid #dddddd;
  margin-bottom: 40px;
}
.contact .c-form__privacy-txt01 {
  text-align: center;
  margin-bottom: 40px;
}
.contact .c-form__privacy-txt01 label {
  margin-left: 10px;
}
.contact .c-form__privacy-txt01 span {
  position: relative;
}
.contact .c-form__privacy-txt01 span::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -30px;
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid rgb(50, 80, 130);
}
.contact .c-form__privacy-txt01 span::after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  left: -29px;
  content: "";
  width: 20px;
  height: 5px;
  border-left: 4px solid rgb(50, 80, 130);
  border-bottom: 4px solid rgb(50, 80, 130);
  opacity: 0;
}
.contact .c-form__privacy-txt01 input {
  position: absolute;
  left: -1000%;
}
.contact .c-form__privacy-txt01 input[type=checkbox]:checked + span::after {
  opacity: 1;
}
.contact .c-form__submit {
  text-align: center;
}
.contact .c-form__submit input {
  cursor: pointer;
  background: rgb(2, 24, 41);
  border: 1px solid rgb(2, 24, 41);
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  padding: 20px 0;
  max-width: 290px;
  margin: 0 auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.contact .c-form__submit input:hover {
  background: #fff;
  color: rgb(2, 24, 41);
}
@media screen and (max-width: 1000px) {
  .contact .c-form__submit input {
    font-size: 16px;
  }
}

.totop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none;
  z-index: 1999;
  width: 60px;
}
@media screen and (max-width: 1000px) {
  .totop {
    bottom: 15px;
    right: 20px;
  }
}
.totop a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.totop a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1000px) {
  .totop {
    width: 47px;
  }
}

@media screen and (max-width: 1000px) {
  .contact .time {
    display: block;
  }
  .contact .time p {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    display: inline-block;
    margin: 5px 0;
  }
}
@media screen and (max-width: 1000px) {
  .thanks {
    margin-top: 30px;
  }
}
.thanks .btn {
  margin-top: 60px;
  text-align: center;
}
.thanks a {
  text-decoration: underline;
  font-size: 20px;
  text-align: center;
  color-interpolation-filters: rgb(50, 80, 130);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.thanks a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1000px) {
  .thanks a {
    font-size: 16px;
  }
}

.schedule__sec-box {
  margin-top: 7px;
}

.contact .schedule__sec-ttl {
  margin-top: 15px;
}

.c-contact__inner-content {
  max-width: 800px;
  margin: 0 auto;
}

.c-form__submit2 input {
  cursor: pointer;
  background: rgb(2, 24, 41);
  border: 1px solid rgb(2, 24, 41);
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  padding: 20px 0;
  max-width: 290px;
  margin: 0 auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-form__submit2 input:hover {
  background: #fff;
  color: rgb(2, 24, 41);
}
@media screen and (max-width: 1000px) {
  .c-form__submit2 input {
    font-size: 16px;
  }
}

.back-btn {
  text-align: center;
}

.back-btn input {
  cursor: pointer;
  background: #fff;
  color: rgb(50, 80, 130);
  font-weight: 700;
  font-size: 20px;
  padding: 20px 0;
  max-width: 290px;
  margin: 0 auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  color: #fff;
  display: block;
  width: 100%;
}
.back-btn input:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1000px) {
  .back-btn input {
    font-size: 16px;
  }
}

.c-form__submit2 {
  text-align: center;
}

@media screen and (min-width: 1001px) {
  table.formTable th {
    white-space: nowrap;
  }
}
.mv3 {
  position: relative;
}
@media screen and (max-width: 1000px) {
  .mv3 {
    height: 500px;
  }
  .mv3 .bg {
    height: 100%;
    width: auto;
  }
}
.mv3 .contents {
  position: absolute;
  z-index: 2;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 50%;
  width: 35%;
}
@media screen and (max-width: 1000px) {
  .mv3 .contents {
    width: 72%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.mv3 .person-mv {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 3%;
  width: 40%;
}
@media screen and (max-width: 1000px) {
  .mv3 .person-mv {
    left: -69%;
  }
}
.mv3 .person-mv img {
  width: auto;
  height: 100%;
}
.mv3 .c-2 a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mv3 .c-2 a:hover {
  opacity: 0.6;
}