@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #eeeeee;
  background-image: linear-gradient(90deg, rgb(238, 238, 238), rgba(252, 239, 232, 0.8) 50%, rgba(229, 231, 231, 0.8));
}

.page-wrap {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #021039;
  letter-spacing: 0.06em;
  font-feature-settings: "palt";
  line-height: 1;
  max-width: 1920px;
  margin: 0 auto;
}

h2 {
  line-height: 1;
}

a {
  text-decoration: none;
  transition: 1.5s;
  color: inherit;
}

.sp {
  display: none !important;
}

.inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

img {
  vertical-align: bottom;
  height: auto;
  display: block;
}

@media screen and (min-width: 769px) {
  a:hover {
    opacity: 0.65;
  }
}
@media screen and (max-width: 768px) {
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
  body {
    min-width: 100% !important;
  }
  .inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 16px;
  }
}
/*===============================
header 
==================================*/
.header {
  background: transparent;
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
.header__inner {
  padding: 0 40px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
}
.header.is-show {
  background: rgba(238, 238, 238, 0.9);
  opacity: 1;
  color: #333;
}

/* ヘッダーのロゴ部分 */
.header__title {
  width: 140px;
}
.header__title img {
  display: block;
  width: 100%;
  max-width: 137px;
  height: 100%;
}

/* ヘッダーのナビ部分 */
.header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  background: rgba(238, 238, 238, 0.95);
  display: flex;
}

.nav__items {
  margin: auto;
}

.nav-items__item {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
}

/* ナビのリンク */
.nav-items__item a {
  color: #000000;
  width: 100%;
  display: block;
  text-align: center;
  margin-bottom: 24px;
}

.nav-items__item:last-child a {
  margin-bottom: 0;
}

.nav-items__item-contact a {
  background: #00479d;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: auto;
  width: 163px;
  padding: 12px 0;
  color: #ffffff;
  font-size: 16px;
  transition: 0.3s ease-in-out;
}

.nav-items__item-contact a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 1.2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.nav-items__item a {
  font-size: 16px;
}

@media screen and (max-width: 865px) {
  .nav-items__item a {
    font-size: 14px;
  }
  .nav-items__item-contact a {
    font-size: 14px;
  }
}
@media screen and (min-width: 769px) {
  .header__nav {
    position: static;
    transform: initial;
    background-color: inherit;
    height: inherit;
    display: flex;
    justify-content: end;
    width: 56%;
  }
  .header__title:hover {
    opacity: 0.8;
  }
  .nav__items {
    margin: initial;
    width: 100%;
    display: flex;
    align-items: center;
    height: initial;
    justify-content: space-between;
  }
  .nav-items__item:before {
    position: absolute;
    content: "";
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #000000;
    opacity: 0;
    transition: 1.5s;
  }
  .nav-items__item:hover:before {
    opacity: 1;
    transition: 1.5s;
  }
  .nav-items__item a {
    margin-bottom: 0;
  }
  .nav-items__item-contact a:hover {
    opacity: 0.8;
  }
  .nav-items__item-contact a:hover:after {
    right: 0.8rem;
  }
  .hamburger {
    display: none;
  }
}
/* ハンバーガーメニュー */
.header__hamburger {
  width: 36px;
  height: 100%;
}

.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
  cursor: pointer;
}

/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 2px;
  background-color: #333;
  position: relative;
  transition: ease 0.4s;
  display: block;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 8px 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}

/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
}

@media screen and (max-width: 768px) {
  .header {
    height: 10.667vw;
  }
  .header__inner {
    padding: 0 16px;
    max-width: 100%;
  }
  .header.is-show {
    background: rgba(238, 238, 238, 0.9);
    opacity: 1;
    color: #333;
  }
  .header__title {
    width: 26.133vw;
  }
  /* ナビのリンク */
  .nav-items__item a {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 48px;
    padding: 1rem 0;
    border-bottom: #bbbaba solid 1px;
  }
  .nav-items__item-contact {
    font-size: 18px;
  }
}
/*==================================
cnt05 cnt footer
=====================================*/
.footer {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 12.8vw 0 10.667vw;
  }
}

.cnt05 {
  background: url(../img/common/footer_bg.jpg) no-repeat center/cover;
}
.cnt05 .cnt05_wrap {
  justify-content: center;
  color: aliceblue;
}
.cnt05_logo {
  width: 100%;
  max-width: 246px;
  margin-right: 12.6%;
}
.cnt05_logo img {
  width: 100%;
  max-width: 246px;
}
.cnt05_logo a {
  display: inline-block;
  width: 100%;
}
.cnt05_list {
  font-size: 14px;
  color: #ffffff;
  width: 48%;
}
.cnt05_list-lists {
  margin-bottom: 20px;
}
.cnt05_list-term {
  width: 100%;
  max-width: 73px;
}
.cnt05_list-desc {
  width: 100%;
  max-width: 340px;
  line-height: 1.6;
}
.cnt05 .ft {
  color: #fff;
  font-size: 18px;
  padding: 40px 0 0;
  line-height: 1.2;
  margin-bottom: 0;
}
.cnt05 .ft small {
  color: #fff;
  display: block;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .cnt05 {
    background: url(../img/common/footer_bg_sp.png) no-repeat center/cover;
  }
  .cnt05 .cnt05_wrap {
    display: block;
  }
  .cnt05 .cnt05_logo {
    max-width: 26.133vw;
    margin-bottom: 5.333vw;
  }
  .cnt05 .cnt05_list {
    width: 100%;
  }
  .cnt05 .ft {
    font-size: 18px;
    padding: 2.667vw 0 0;
  }
}

.page-top {
  /*==================================
  ページ内リンクリンク
  ===================================*/
  /*==================================
  main
  ===================================*/
  /*==================================
  cnt01
  ===================================*/
  /*==================================
  cnt02
  ===================================*/
  /*==================================
  cnt03
  ===================================*/
  /*==================================
  cnt04
  ===================================*/
}
.page-top #service, .page-top #strength, .page-top #about, .page-top #contact {
  padding-top: 140px;
  margin-top: -140px;
}
@media screen and (max-width: 768px) {
  .page-top #service, .page-top #strength, .page-top #about, .page-top #contact {
    padding-top: 24vw;
    margin-top: -24vw;
  }
}
.page-top #top_mv {
  position: relative;
  max-height: 100vh;
}
.page-top #top_mv .main_wrap_inner {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}
.page-top #top_mv .main_wrap_inner .gradient {
  position: absolute;
  width: 100%;
  max-width: 896px;
  top: 350px;
  right: 0;
  left: 197px;
  z-index: 6;
}
.page-top #top_mv .main_wrap_inner .gradient__title {
  animation: AnimationTitle 5s ease infinite;
  background: linear-gradient(320deg, #00479d, #0d5dbe, #2a71b3, #0d5dbe, #00479d);
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: 90px;
  line-height: 1.56;
  letter-spacing: 0.06em;
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: bold;
}
@media screen and (min-width: 769px) and (max-width: 1920px) {
  .page-top #top_mv .main_wrap_inner .gradient {
    top: 18.229vw;
  }
}
@media screen and (max-width: 1920px) {
  .page-top #top_mv .main_wrap_inner .gradient {
    left: 10.26vw;
  }
}
@media screen and (max-width: 1100px) {
  .page-top #top_mv .main_wrap_inner .gradient {
    max-width: 648px;
    left: 335px;
    left: 30.455vw;
  }
  .page-top #top_mv .main_wrap_inner .gradient__title {
    font-size: 65px;
  }
}
@media screen and (max-width: 985px) {
  .page-top #top_mv .main_wrap_inner .gradient {
    top: 21.229vw;
  }
  .page-top #top_mv .main_wrap_inner .gradient__title {
    font-size: 6.599vw;
  }
}
@media screen and (max-width: 930px) {
  .page-top #top_mv .main_wrap_inner .gradient {
    max-width: 612px;
  }
}
@media screen and (max-width: 890px) {
  .page-top #top_mv .main_wrap_inner .gradient {
    max-width: 584px;
  }
}
@media screen and (max-width: 840px) {
  .page-top #top_mv .main_wrap_inner .gradient {
    max-width: 551px;
  }
}
@media screen and (max-width: 790px) {
  .page-top #top_mv .main_wrap_inner .gradient {
    max-width: 519px;
  }
}
@keyframes AnimationTitle {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@media screen and (max-width: 768px) {
  .page-top #top_mv .main_wrap_inner {
    max-width: 100%;
    padding: 0 16px;
  }
  .page-top #top_mv .main_wrap_inner .gradient {
    position: absolute;
    width: 100%;
    max-width: 78vw;
    top: 341px;
    right: 0;
    left: 0;
    margin: 0 16px 0 auto;
  }
  .page-top #top_mv .main_wrap_inner .gradient__title {
    font-size: 12.8vw;
  }
}
.page-top #top_mv .mv_bg {
  height: 100%;
  max-height: 100vh;
}
.page-top #top_mv .mv_bg img {
  position: absolute;
  top: 0;
  height: 100%;
  max-height: 100vh;
  aspect-ratio: 16/9;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .page-top #top_mv .mv_bg {
    height: 100vh;
    max-height: 168vw;
  }
  .page-top #top_mv .mv_bg img {
    width: 100%;
    height: 100vh;
    max-height: 168vw;
    aspect-ratio: 25/42;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.page-top #top_mv .video {
  margin-left: 189px;
  max-height: 100vh;
}
.page-top #top_mv .video video {
  width: 100%;
  max-width: 950px;
  max-height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1920px) {
  .page-top #top_mv .video {
    margin-left: 9.844vw;
    max-width: 49.479vw;
  }
  .page-top #top_mv .video video {
    width: 100%;
    max-width: 49.479vw;
  }
}
@media screen and (max-width: 768px) {
  .page-top #top_mv .video {
    margin-left: 0;
    max-width: 100%;
  }
  .page-top #top_mv .video video {
    position: absolute;
    bottom: 0;
    max-width: 100vw;
    height: 168vw;
    max-height: 100vh;
    aspect-ratio: 25/42;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.page-top .cnt01 {
  background: #ffffff;
}
.page-top .cnt01 .mb {
  margin-bottom: 35px;
}
.page-top .cnt01 .cnt01_box {
  margin-bottom: 60px;
}
.page-top .cnt01 .cnt-img {
  width: 59.3%;
}
.page-top .cnt01 .cnt-img img {
  width: 557px;
}
.page-top .cnt01 .cnt-txt {
  width: calc(40.7% - 25px);
  line-height: 1.62;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .page-top .cnt01 .mb {
    margin-bottom: 8.533vw;
  }
  .page-top .cnt01 .cnt01_box {
    margin-bottom: 8.533vw;
  }
  .page-top .cnt01 .cnt01_box_wrap {
    flex-direction: column;
  }
  .page-top .cnt01 .cnt01_box-sp {
    margin-bottom: 0;
  }
  .page-top .cnt01 .cnt-img {
    order: 1;
    width: 100%;
    max-width: 343px;
    margin-bottom: 5.333vw;
  }
  .page-top .cnt01 .cnt-img img {
    width: 100%;
    max-width: 343px;
  }
  .page-top .cnt01 .cnt-txt {
    order: 2;
    width: 100%;
    padding: 0 14px;
  }
}
.page-top .cnt02_box-img {
  width: 50%;
}
.page-top .cnt02_box-txt {
  width: 50%;
  background: #f7f7f7;
  padding: 40px;
  border-radius: 10px;
}
.page-top .cnt02_box-txt-txt {
  line-height: 1.62;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .page-top .cnt02 .h4_ttl {
    padding: 0 30px;
  }
  .page-top .cnt02_box {
    flex-direction: column;
  }
  .page-top .cnt02_box-img {
    order: 1;
    width: 76%;
    margin: 0 auto 7.2vw;
  }
  .page-top .cnt02_box-txt {
    order: 2;
    width: 100%;
    font-size: 3.733vw;
    padding: 3.467vw 7.467vw;
  }
}
.page-top .cnt03 {
  background: url(../img/top/cnt03_bg.png) no-repeat top/contain;
  height: 2000px;
}
.page-top .cnt03 .inner {
  padding: 0 30px;
}
.page-top .cnt03_box01 {
  margin-bottom: 176px;
  background-image: linear-gradient(90deg, rgb(238, 238, 238), rgba(252, 239, 232, 0.8) 50%, rgba(229, 231, 231, 0.8));
  border-radius: 10px;
  padding: 40px 38px;
  width: 100%;
  max-width: 940px;
}
.page-top .cnt03_box01_ttl {
  width: 100%;
  max-width: 269px;
  padding: 18px 0;
  background: #00479d;
  font-size: 36px;
  color: #ffffff;
  letter-spacing: 0.06em;
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  text-align: center;
  margin-bottom: 30px;
}
.page-top .cnt03_box01_txt {
  font-size: 36px;
  font-weight: bold;
  color: #021039;
  line-height: 1.55;
  letter-spacing: 0.1em;
  margin-bottom: 36px;
}
.page-top .cnt03_box01_white-txt {
  color: #021039;
  line-height: 1.8;
}
.page-top .cnt03_box02_wrap {
  position: relative;
}
.page-top .cnt03_box02_wrap .ph07-img {
  width: 100%;
  max-width: 440px;
}
.page-top .cnt03_box02_wrap_detail {
  position: absolute;
  width: 100%;
  max-width: 410px;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 90%;
  margin-top: -36px;
  padding: 26px 24px 40px;
  background: #ffffff;
  border-radius: 10px;
  height: 500px;
}
.page-top .cnt03_box02_wrap_detail-name {
  font-size: 40px;
  letter-spacing: 0.1em;
  color: #021039;
  margin-bottom: 26px;
  font-weight: 500;
}
.page-top .cnt03_box02_wrap_detail-name .post {
  display: block;
  font-size: 24px;
  color: #00479d;
  margin-bottom: 16px;
}
.page-top .cnt03_box02_wrap_detail-name .name {
  display: block;
  font-size: 20px;
  margin-top: 15px;
}
.page-top .cnt03_box02_wrap_detail-txt {
  line-height: 1.6;
  text-align: justify;
}
@media screen and (max-width: 964px) {
  .page-top .cnt03_box02_wrap {
    width: 46.4%;
  }
  .page-top .cnt03_box02_wrap_detail {
    height: 554px;
  }
}
@media screen and (max-width: 800px) {
  .page-top .cnt03_box02_wrap_detail-name {
    font-size: 34px;
    margin-bottom: 20px;
  }
  .page-top .cnt03_box02_wrap_detail-name .post {
    font-size: 22px;
    margin-bottom: 12px;
  }
  .page-top .cnt03_box02_wrap_detail-name .name {
    font-size: 14x;
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .page-top .cnt03 {
    background: url(../img/top/cnt03_bg_sp.png) no-repeat top/contain;
    height: 4648px;
    height: 640.467vw;
  }
  .page-top .cnt03 .inner {
    padding: 0 30px;
  }
  .page-top .cnt03_box01 {
    margin-bottom: 25.933vw;
    background: none;
    padding: 0;
    max-width: 100%;
  }
  .page-top .cnt03_box01_ttl {
    width: 100%;
    max-width: 37.067vw;
    font-size: 5.333vw;
    padding: 2.133vw 0;
    margin-bottom: 3.2vw;
  }
  .page-top .cnt03_box01_txt {
    font-size: 6.4vw;
    margin-bottom: 5.6vw;
    line-height: 1.875;
    color: #ffffff;
  }
  .page-top .cnt03_box01_white-txt {
    color: #ffffff;
  }
  .page-top .cnt03_box02_sp {
    position: relative;
  }
  .page-top .cnt03_box02 {
    display: block;
  }
  .page-top .cnt03_box02_wrap {
    position: relative;
    width: 100%;
  }
  .page-top .cnt03_box02_wrap .ph07-img {
    max-width: 100%;
  }
  .page-top .cnt03_box02_wrap_detail {
    max-width: 100%;
    top: 90%;
    padding: 26px 16px;
    padding: 8vw 16px 6.4vw;
    height: 114.867vw;
  }
  .page-top .cnt03_box02_wrap_detail-name {
    font-size: 8.533vw;
    margin-bottom: 5.333vw;
  }
  .page-top .cnt03_box02_wrap_detail-name .post {
    font-size: 5.333vw;
    margin-bottom: 4vw;
  }
  .page-top .cnt03_box02_wrap_detail-name .name {
    font-size: 4.8vw;
    margin-top: 3.333vw;
  }
  .page-top .cnt03_box02_wrap_detail-txt {
    font-size: 3.733vw;
    font-size: 3.733vw;
  }
  .page-top .cnt03_box02_wrap_sp {
    position: absolute;
    top: 277%;
    width: 100%;
  }
}
.page-top .cnt04 {
  background: #ffffff;
}
.page-top .cnt04 #page-contact {
  /*==================================
  contact_wrap
  =====================================*/
}
.page-top .cnt04 #page-contact input:focus {
  outline: none;
}
.page-top .cnt04 #page-contact .textarea:focus {
  outline: none;
  width: 100%;
}
.page-top .cnt04 #page-contact .contact_wrap {
  /*==================================
  .button_wrap
  =====================================*/
}
.page-top .cnt04 #page-contact .contact_wrap table {
  margin-bottom: 30px;
}
.page-top .cnt04 #page-contact .contact_wrap table tr {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.page-top .cnt04 #page-contact .contact_wrap table tr th {
  width: 36%;
  max-width: 256px;
  vertical-align: middle;
  font-weight: bold;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
}
.page-top .cnt04 #page-contact .contact_wrap table tr th span.form_ttl {
  display: block;
}
.page-top .cnt04 #page-contact .contact_wrap table tr th span.red {
  display: block;
  font-size: 12px;
  background: #d81b22;
  padding: 5px 8px;
  margin-right: 0;
  color: #fff;
  border-radius: 3px;
}
@media screen and (max-width: 768px) {
  .page-top .cnt04 #page-contact .contact_wrap table tr th {
    max-width: 188px;
  }
}
.page-top .cnt04 #page-contact .contact_wrap table tr td {
  width: 62%;
}
.page-top .cnt04 #page-contact .contact_wrap table tr td input {
  border-radius: 0;
  padding: 0 10px;
  font-size: 16px;
}
.page-top .cnt04 #page-contact .contact_wrap table tr td .textarea {
  font-size: 16px;
  width: 100%;
  height: 50px;
  border: none;
  background: #fff;
  border: #999999 1px solid;
  margin-bottom: 20px;
}
.page-top .cnt04 #page-contact .contact_wrap table tr td .textarea_contact_note {
  width: 100%;
  height: 280px;
  border: #999999 1px solid;
  vertical-align: top;
  padding: 10px;
}
.page-top .cnt04 #page-contact .contact_wrap .button_wrap {
  width: 186px;
  margin: 0 auto;
}
.page-top .cnt04 #page-contact .contact_wrap .button_wrap input[type=submit] {
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  font-size: 16px;
  font-weight: bold;
  width: 186px;
  margin: 0 auto;
  letter-spacing: 0.1em;
  color: #000000;
  border: none;
  outline: 0;
  cursor: pointer;
  background-color: #fff;
  border: #000000 solid 1px;
  padding: 16px 0;
  transition: 0.3s;
  line-height: 1;
}
@media screen and (min-width: 769px) {
  .page-top .cnt04 #page-contact {
    /*==================================
    button_wrap hoverはPCのみ
    =====================================*/
  }
  .page-top .cnt04 #page-contact .contact_wrap input[type=submit]:hover {
    background: #00479d;
    border: #00479d solid 1px;
    color: #ffffff !important;
    opacity: 1;
    text-decoration: none !important;
  }
}
@media screen and (max-width: 768px) {
  .page-top .cnt04 #page-contact {
    /*==================================
    contact_wrap
    =====================================*/
  }
  .page-top .cnt04 #page-contact .contact_wrap {
    margin-bottom: 25px;
    /*==================================
    .button_wrap
    =====================================*/
  }
  .page-top .cnt04 #page-contact .contact_wrap table tr {
    display: block;
  }
  .page-top .cnt04 #page-contact .contact_wrap table tr th {
    width: 100%;
    margin-bottom: 14px;
  }
  .page-top .cnt04 #page-contact .contact_wrap table tr td {
    display: block;
    width: 100%;
  }
  .page-top .cnt04 #page-contact .contact_wrap table tr td .textarea {
    width: 100%;
    height: 50px;
    margin-bottom: 20px;
  }
  .page-top .cnt04 #page-contact .contact_wrap table tr .contact_note {
    padding-top: 20px;
  }
  .page-top .cnt04 #page-contact .contact_wrap .button_wrap {
    width: 100%;
  }
  .page-top .cnt04 #page-contact .contact_wrap .button_wrap input[type=submit] {
    padding: 17px 0;
    width: 184px;
    color: #fff !important;
    background: #00479d;
    border: #00479d solid 1px;
  }
}

.page-pages {
  /*text animetions*/
}
.page-pages .mb60 {
  margin-bottom: 60px !important;
}
.page-pages .mb70 {
  margin-bottom: 70px;
}
.page-pages .mb96 {
  margin-bottom: 96px;
}
.page-pages .cnt {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .page-pages .mb60 {
    margin-bottom: 8vw;
  }
  .page-pages .mb70 {
    margin-bottom: 10.667vw;
  }
  .page-pages .mb96 {
    margin-bottom: 13.333vw;
  }
  .page-pages .cnt {
    padding: 13.333vw 0;
  }
}
.page-pages .h2_ttl {
  font-size: 100px;
  color: #00479d;
  background: linear-gradient(90deg, #00479d 0%, #00479d 40%, #81cae2 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin-bottom: 60px;
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
}
.page-pages .h2_ttl02 {
  font-size: 100px;
  color: rgba(241, 240, 239, 0.8);
  text-align: center;
  margin-bottom: 60px;
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .page-pages .h2_ttl {
    font-size: 11.733vw;
    margin-bottom: 10.667vw;
  }
  .page-pages .h2_ttl02 {
    font-size: 11.733vw;
    margin-bottom: 10.667vw;
  }
}
.page-pages .ttl-line, .page-pages .ttl-line02 {
  align-items: center; /* 横線を上下中央 */
  display: flex; /* 文字と横線を横並び */
  justify-content: space-between;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 36px;
}
.page-pages .ttl-line::before {
  background-color: #80869a; /* 横線の色 */
  content: "";
  height: 2px; /* 横線の高さ */
  width: 48.5%; /* 横線の長さ */
}
.page-pages .ttl-line::before {
  margin-right: 15px; /* 文字との余白 */
}
.page-pages .ttl-line::after {
  margin-left: 15px; /* 文字との余白 */
}
.page-pages .ttl-line02::after {
  background-color: #80869a; /* 横線の色 */
  content: "";
  height: 2px; /* 横線の高さ */
  width: 48.5%; /* 横線の長さ */
}
@media screen and (max-width: 910px) {
  .page-pages .ttl-line::before {
    width: 37.5%; /* 横線の長さ */
  }
  .page-pages .ttl-line02::after {
    width: 42.5%; /* 横線の長さ */
  }
}
@media screen and (max-width: 768px) {
  .page-pages .ttl-line, .page-pages .ttl-line02 {
    font-size: 5.333vw;
    margin-bottom: 5.333vw;
  }
  .page-pages .ttl-line::before {
    background-color: #80869a; /* 横線の色 */
    content: "";
    height: 2px; /* 横線の高さ */
    width: 18.5%; /* 横線の長さ */
  }
  .page-pages .ttl-line::before {
    margin-right: 15px; /* 文字との余白 */
    margin-right: 2vw;
  }
  .page-pages .ttl-line::after {
    margin-left: 15px; /* 文字との余白 */
    margin-right: 2vw;
  }
  .page-pages .ttl-line02::after {
    background-color: #80869a; /* 横線の色 */
    content: "";
    height: 2px; /* 横線の高さ */
    width: 24.5%; /* 横線の長さ */
  }
}
.page-pages .cnt-note {
  line-height: 1.62;
  margin-bottom: 60px;
}
.page-pages .h3_ttl {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .page-pages .cnt-note {
    font-size: 3.733vw;
    margin-bottom: 9.333vw;
  }
  .page-pages .h3_ttl {
    font-size: 7.467vw;
    margin-bottom: 8vw;
  }
}
.page-pages .h4_ttl {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 27px;
  line-height: 1.2;
}
.page-pages .h4_ttl-01 {
  display: block;
  font-size: 20px;
  text-align: center;
  color: #ffffff;
  background: #3996d0;
  width: 100%;
  max-width: 110px;
  padding: 8px 0;
  margin-bottom: 32px;
}
.page-pages .white-txt {
  font-size: 18px;
  color: #ffffff;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .page-pages .h4_ttl {
    font-size: 5.333vw;
    margin-bottom: 8vw;
  }
  .page-pages .h4_ttl-01 {
    font-size: 3.733vw;
    max-width: 20vw;
    padding: 1.733vw 0;
    margin-bottom: 4vw;
  }
  .page-pages .white-txt {
    font-size: 4.267vw;
  }
}
@keyframes showTextFromBottom {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0px);
  }
}
.page-pages .anime-up.displayed span {
  animation: showText 1s backwards;
  display: inline-block;
}
.page-pages .anime-up.displayed > span {
  overflow: hidden;
}
.page-pages .anime-up.displayed > span > span {
  animation: showTextFromBottom 0.5s backwards;
}

#page-confirm {
  margin: 120px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  /*==================================
  contact_wrap
  =====================================*/
}
#page-confirm .contact_wrap {
  padding: 80px 0 120px;
  /*==================================
  privacy-policy_btn
  =====================================*/
}
#page-confirm .contact_wrap-txt {
  line-height: 1.6;
  margin-bottom: 60px;
}
#page-confirm .contact_wrap table {
  width: 100%;
  margin-bottom: 30px;
}
#page-confirm .contact_wrap table tr {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 32px;
}
#page-confirm .contact_wrap table tr th {
  width: 36%;
  max-width: 256px;
  vertical-align: middle;
  font-weight: bold;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
}
#page-confirm .contact_wrap table tr th span.form_ttl {
  display: block;
}
#page-confirm .contact_wrap table tr th span.red {
  display: block;
  font-size: 12px;
  background: #d81b22;
  padding: 5px 8px;
  margin-right: 0;
  color: #fff;
  border-radius: 3px;
}
#page-confirm .contact_wrap table tr td {
  width: 62%;
  line-height: 2;
  word-break: break-all;
}
@media screen and (max-width: 768px) {
  #page-confirm .contact_wrap table tr th {
    max-width: 188px;
  }
}
#page-confirm .contact_wrap table tr td {
  width: 62%;
}
#page-confirm .contact_wrap table tr td input {
  border-radius: 0;
  padding: 0 10px;
  font-size: 16px;
}
#page-confirm .contact_wrap table tr td .textarea {
  font-size: 16px;
  width: 100%;
  height: 50px;
  border: none;
  background: #fff;
  border: #999999 1px solid;
  margin-bottom: 20px;
}
#page-confirm .contact_wrap table tr td .textarea_contact_note {
  width: 100%;
  height: 280px;
  border: #999999 1px solid;
  vertical-align: top;
  padding: 10px;
}
#page-confirm .contact_wrap .button_wrap {
  width: 100%;
  max-width: 450px;
  margin: 60px auto 0;
  text-align: center;
  outline: none;
}
#page-confirm .contact_wrap .button_wrap input[type=button] {
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  font-size: 16px;
  font-weight: bold;
  width: 186px;
  margin: 0 auto;
  letter-spacing: 0.1em;
  color: #000000;
  border: none;
  outline: 0;
  cursor: pointer;
  background-color: #fff;
  border: #000000 solid 1px;
  padding: 16px 0;
  transition: 0.3s;
  line-height: 1;
}
#page-confirm .contact_wrap .button_wrap a#btn_send {
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  font-size: 16px;
  font-weight: bold;
  width: 186px;
  margin: 0 auto;
  letter-spacing: 0.1em;
  color: #000000;
  border: none;
  outline: 0;
  cursor: pointer;
  background-color: #fff;
  border: #000000 solid 1px;
  padding: 16px 0;
  transition: 0.3s;
  line-height: 1;
  transition: 0;
}
@media screen and (min-width: 769px) {
  #page-confirm {
    /*==================================
    button_wrap hoverはPCのみ
    =====================================*/
  }
  #page-confirm .contact_wrap input[type=button]:hover {
    opacity: 0.6;
    text-decoration: none !important;
  }
  #page-confirm .contact_wrap a#btn_send:hover {
    background: #00479d;
    border: #00479d solid 1px;
    color: #ffffff !important;
    opacity: 1;
    text-decoration: none !important;
  }
}
@media screen and (max-width: 768px) {
  #page-confirm {
    margin: 16vw 0 0;
    /*==================================
    contact_wrap
    =====================================*/
  }
  #page-confirm .sp {
    display: block !important;
  }
  #page-confirm .pc {
    display: none !important;
  }
  #page-confirm body {
    min-width: 100% !important;
  }
  #page-confirm .contact_wrap {
    padding: 10.667vw 0 16vw;
    /*==================================
    button_wrap
    =====================================*/
  }
  #page-confirm .contact_wrap table tr {
    display: block;
  }
  #page-confirm .contact_wrap table tr th {
    width: 100%;
    margin-bottom: 14px;
  }
  #page-confirm .contact_wrap table tr td {
    display: block;
    width: 100%;
  }
  #page-confirm .contact_wrap table tr td .textarea {
    width: 100%;
    height: 50px;
    margin-bottom: 20px;
  }
  #page-confirm .contact_wrap table tr .contact_note {
    padding-top: 20px;
  }
  #page-confirm .contact_wrap .button_wrap {
    width: 100%;
    max-width: 190px;
  }
  #page-confirm .contact_wrap .button_wrap input[type=button] {
    outline: 0;
    width: 184px;
    padding: 17px 0;
    margin: 0 auto 8.667vw;
    order: 2;
    color: #000000;
    background-color: #fff;
    border: #000000 solid 1px;
  }
  #page-confirm .contact_wrap .button_wrap input[type=submit] {
    outline: 0;
    width: 184px;
    padding: 17px 0;
    margin: 0 auto 8.667vw;
    order: 1;
    color: #fff;
    background: #00479d;
    border: #00479d solid 1px;
  }
}

#page-thanks {
  margin: 120px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  /*==================================
  article_contact
  =====================================*/
}
#page-thanks .article_contact {
  padding: 80px 0 120px;
}
#page-thanks .article_contact .thanks-txt01 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 60px;
  line-height: 1.6;
}
#page-thanks .article_contact .thanks-txt02 {
  margin-bottom: 60px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #page-thanks {
    margin: 16vw 0 0;
    /*==================================
    article_contact
    =====================================*/
  }
  #page-thanks .article_contact {
    padding: 10.667vw 0 16vw;
  }
  #page-thanks .article_contact .thanks-txt01 {
    font-size: 24px;
    margin-bottom: 8vw;
  }
  #page-thanks .article_contact .thanks-txt02 {
    font-size: 16px;
    margin-bottom: 8vw;
  }
}

.flex {
  display: flex;
}

.flex_around {
  justify-content: space-around;
}

.flex_between {
  justify-content: space-between;
}

.flex_wrap {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.flex_center {
  align-items: center;
}

.flex_top {
  align-items: flex-start;
}

.flex_bottom {
  align-items: flex-end;
}

.flex_start {
  justify-content: flex-start;
}

.flex_end {
  justify-content: flex-end;
}/*# sourceMappingURL=style.css.map */