@charset "UTF-8";
body {
  font-family: 'Inter', sans-serif;
}
li {
  list-style: none;
}

a {
  text-decoration: none;
}

.marker_b {
  background-color: #076FAA;
  display: inline-block;
  padding: 10px 5px;
}

.marker_nb {
  background-color: #193772;
}

.color_y {
  color: #FFE100;
}

.backcolor_b {
  background-color: #076FAA;
}

.backcolor_nb {
  background-color: #193772;
}

.mb_br {
  display: none;
}
@media (width < 769px) {
  .mb_br {
    display: block;
  }
}

/*スライドイン・アニメーション*/
/* 初期状態：非表示 + 左からズレてる */
.slide-in {
  opacity: 0;
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.slide-up {
  opacity: 0;
  transform: translateY(-50px);
}

.slide-left {
  opacity: 0;
  transform: translateX(-50px);
}

.slide-right {
  opacity: 0;
  transform: translateX(50px);
}

/* スライドインを有効にするクラス */
.slide-in.visible {
  opacity: 1;
  transform: translateX(0);
}

/*----------ボタンホバーアニメーション----------*/
/*----------ヘッダー----------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
}
@media (width < 1101px) {
  header {
    top: 0;
  }
}

.slide_nav {
  height: 100px;
}
@media (width < 431px) {
  .slide_nav {
    height: auto;
  }
}

.slide_nav_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 5%;
}
@media (width < 1101px) {
  .slide_nav_wrapper {
    padding-left: 15px;
  }
}
@media (width < 431px) {
  .slide_nav_wrapper {
    padding-left: 5px;
  }
}

.header__container {
  display: flex;
  justify-content: right;
  align-items: center;
  width: 80%;
}

.mb_menu {
  display: none;
}
@media (width < 1101px) {
  .mb_menu {
    display: block;
  }
}

.header_logo {
  width: 12%;
}
.header_logo img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (width < 1101px) {
  .header_logo {
    width: 20%;
    padding-top: 5px;
  }
}
@media (width < 769px) {
  .header_logo {
    width: 30%;
    padding-top: 5px;
  }
}

/* ===============================================
ハンバーガーボタンのスタイリング
=============================================== */
.header_contact_btn {
  background-color: #076FAA;
  width: 200px;
  transition: all 0.4s;
}
@media (width < 1101px) {
  .header_contact_btn {
    width: 120px;
  }
}
@media (width < 431px) {
  .header_contact_btn {
    width: 100px;
  }
}
.header_contact_btn a {
  color: #fff;
  font-weight: bold;
  display: inline-block;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 100px;
  font-size: 20px;
}
@media (width < 1101px) {
  .header_contact_btn a {
    font-size: 18px;
  }
}
@media (width < 769px) {
  .header_contact_btn a {
    line-height: 80px;
    font-size: 16px;
  }
}
@media (width < 431px) {
  .header_contact_btn a {
    line-height: 70px;
    font-size: 14px;
  }
}

.header_contact_btn:hover {
  background-color: #0090E2;
}

.hamburger {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 100px;
  margin: 0;
  cursor: pointer;
  z-index: 550;
  background-color: #193772;
  transition: 0.5s all;
}
@media (width < 1101px) {
  .hamburger {
    width: 120px;
    height: 100px;
  }
}
@media (width < 769px) {
  .hamburger {
    height: 80px;
  }
}
@media (width < 431px) {
  .hamburger {
    width: 100px;
    height: 70px;
  }
}

.hamburger:hover {
  background-color: #076FAA;
}

.hamburger span,
.hamburger span::after,
.hamburger span::before {
  position: absolute;
  display: block;
  content: "";
  width: 50px;
  height: 3px;
  background-color: #ffffff;
  transition: all 0.5s;
}
@media (width < 1281px) {
  .hamburger span,
.hamburger span::after,
.hamburger span::before {
    width: 30px;
  }
}

.hamburger span::before {
  top: -10px;
}

.hamburger span::after {
  bottom: -10px;
}

.hamburger.open span {
  background-color: transparent;
}

.hamburger.open span::before {
  top: 0;
  transform: rotate(45deg);
}

.hamburger.open span::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* ===============================================
メニューのスタイリング
=============================================== */
.nav {
  position: fixed;
  width: 60%;
  height: 100vh;
  top: 0;
  right: -120%;
  background-color: #28394E;
  opacity: 0.9;
  padding: 100px 0;
  transition: all 0.5s;
  z-index: 500;
}
@media (width < 431px) {
  .nav {
    width: 100%;
	padding: 50px 0 100px 0;
  }
}

.nav__list {
  display: block;
}
.nav__list li {
  padding-left: 5%;
}

.nav__item a {
  display: block;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  padding: 20px 0 20px 50px;
  text-transform: uppercase;
}

.nav__item a:hover {
  color: #0f5474;
  background-color: #fff;
  width: 60%;
}
@media (width < 1101px) {
  .nav__item a:hover {
    width: 80%;
  }
}
@media (width < 769px) {
  .nav__item a:hover {
    width: 100%;
  }
}

.nav.open {
  right: 0;
}

/* ===============================================
ファーストビュー
=============================================== */
#particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; /* 背景にする */
}

.fv {
  padding-bottom: 13%;
  background-color: #E8F1F3;
  position: relative;
}
@media (width < 1101px) {
  .fv {
    padding-bottom: 20%;
  }
}
@media (width < 769px) {
  .fv {
    padding-bottom: 37%;
  }
}
@media (width < 431px) {
  .fv {
    padding-bottom: 40%;
  }
}

.fv_inner {
  position: relative;
  z-index: 1;
  max-width: 1101px;
  margin: 0 auto;
}
@media (width < 1101px) {
  .fv_inner {
    max-width: 768px;
  }
}
@media (width < 769px) {
  .fv_inner {
    max-width: 430px;
  }
}
@media (width < 431px) {
  .fv_inner {
    max-width: 400px;
  }
}

.fv_wrapper {
  position: relative;
  z-index: 50;
}

.fv_backimg {
  background-image: url(img/fv-img.webp);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 10% 0 10% 0;
  position: relative;
  overflow: hidden;
}
@media (width < 1281px) {
  .fv_backimg {
    padding: 15% 0 10% 0;
  }
}
@media (width < 1101px) {
  .fv_backimg {
    padding: 20% 0 10% 0;
  }
}
@media (width < 769px) {
  .fv_backimg {
    padding: 30% 0 10% 0;
  }
}
@media (width < 431px) {
  .fv_backimg {
    padding: 35% 0 10% 0;
	background-position: center;
  }
}

.fv_title {
  color: #fff;
  text-align: center;
}
.fv_title h1 {
  font-size: 55px;
  letter-spacing: 0.5rem;
}
@media (width < 1101px) {
  .fv_title h1 {
    font-size: 45px;
  }
}
@media (width < 769px) {
  .fv_title h1 {
    font-size: 30px;
  }
}
.fv_title p {
  font-size: 20px;
  line-height: 3rem;
}
@media (width < 769px) {
  .fv_title p {
    font-size: 13px;
    line-height: 2rem;
    padding: 15px 0 0 0;
  }
}
@media (width < 431px) {
  .fv_title p {
    font-size: 12px;
  }
}
.fv_title h2 {
  font-size: 25px;
  margin: 15px 0 5% 0;
}
@media (width < 1101px) {
  .fv_title h2 {
    font-size: 20px;
  }
}
@media (width < 769px) {
  .fv_title h2 {
    font-size: 18px;
  }
}
@media (width < 431px) {
  .fv_title h2 {
    font-size: 16px;
  }
}

.fv_contents {
  background-color: #fff;
  box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
  text-align: center;
  padding: 3% 0 10px 0;
  width: 1100px;
  margin: 0 auto;
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media (width < 1441px) {
  .fv_contents {
    padding: 2% 0 10px 0;
  }
}
@media (width < 1281px) {
  .fv_contents {
    width: 850px;
  }
}
@media (width < 1101px) {
  .fv_contents {
    width: 550px;
  }
}
@media (width < 769px) {
  .fv_contents {
    width: 400px;
  }
}
@media (width < 431px) {
  .fv_contents {
    width: 360px;
  }
}
.fv_contents h2 {
  color: #838383;
}
@media (width < 1281px) {
  .fv_contents h2 {
    font-size: 20px;
  }
}
@media (width < 1101px) {
  .fv_contents h2 {
    font-size: 18px;
  }
}
@media (width < 769px) {
  .fv_contents h2 {
    font-size: 16px;
  }
}
@media (width < 431px) {
  .fv_contents h2 {
    font-size: 14px;
  }
}
.fv_contents .pic {
  font-size: 12px;
  color: #B6B3C5;
  padding: 0 5px 10px 0;
  text-align: right;
}
@media (width < 769px) {
  .fv_contents .pic {
    font-size: 10px;
  }
}

.fv_data_child {
  padding: 0 7%;
}
@media (width < 1101px) {
  .fv_data_child {
    padding: 0 5%;
  }
}
@media (width < 769px) {
  .fv_data_child {
    padding: 0 3%;
  }
}

.fv_data_child + .fv_data_child {
  border-left: solid 1px #838383;
}

.fv_data {
  display: flex;
  justify-content: center;
  padding: 3% 7%;
}
@media (width < 769px) {
  .fv_data {
    padding: 3% 0%;
  }
}
@media (width < 431px) {
  .fv_data {
    padding: 5% 0% 3% 0;
  }
}
.fv_data h3 {
  color: #838383;
  font-size: 25px;
}
@media (width < 1281px) {
  .fv_data h3 {
    font-size: 20px;
  }
}
@media (width < 1101px) {
  .fv_data h3 {
    font-size: 16px;
  }
}
@media (width < 769px) {
  .fv_data h3 {
    font-size: 14px;
  }
}
@media (width < 769px) {
  .fv_data h3 {
    font-size: 13px;
  }
}
.fv_data .ratio {
  display: inline-block;
  font-size: 70px;
  font-weight: bold;
  background: linear-gradient(180deg, #3CA7DD 35%, #0F4A8C 65%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (width < 1281px) {
  .fv_data .ratio {
    font-size: 60px;
  }
}
@media (width < 1101px) {
  .fv_data .ratio {
    font-size: 50px;
  }
}
@media (width < 769px) {
  .fv_data .ratio {
    font-size: 45px;
  }
}
@media (width < 431px) {
  .fv_data .ratio {
    font-size: 40px;
  }
}

/* ===============================================
お悩み
=============================================== */
.problem {
  background-color: #E8F1F3;
  padding: 7% 0;
  overflow-x: hidden;
}

.problem_inner {
  max-width: 1000px;
  margin: 0 auto;
}
@media (width < 1101px) {
  .problem_inner {
    max-width: 768px;
  }
}
@media (width < 769px) {
  .problem_inner {
    width: 95%;
  }
}

.problem_title h2 {
  color: #00193B;
  font-size: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (width < 769px) {
  .problem_title h2 {
    font-size: 25px;
  }
}
.problem_title h2::before {
  content: "PROBLEM";
  color: #D2E4EC;
  position: absolute;
  z-index: -1;
  font-size: 100px;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  letter-spacing: 0.5rem;
}
@media (width < 769px) {
  .problem_title h2::before {
    font-size: 50px;
  }
}
@media (width < 431px) {
  .problem_title h2::before {
    font-size: 45px;
  }
}

.problem_contents {
  padding: 10% 0;
  position: relative;
}

.problem_contents_child {
  background-color: #076FAA;
  padding: 10%;
  border-radius: 15px;
}
@media (width < 1281px) {
  .problem_contents_child {
    padding: 7% 10%;
  }
}
@media (width < 769px) {
  .problem_contents_child {
    padding: 10% 2%;
  }
}
@media (width < 769px) {
  .problem_contents_child {
    padding: 10% 2%;
  }
}
.problem_contents_child p {
  display: flex;
  align-items: center;
  font-size: 25px;
  color: #fff;
  border-bottom: dashed 2px #fff;
  padding: 20px 0 20px 10px;
}
@media (width < 1101px) {
  .problem_contents_child p {
    font-size: 20px;
  }
}
@media (width < 769px) {
  .problem_contents_child p {
    font-size: 16px;
    padding: 20px 0 20px 10px;
  }
}
@media (width < 431px) {
  .problem_contents_child p {
    font-size: 14px;
    padding: 20px 0 20px 10px;
  }
}
.problem_contents_child img {
  width: 37px;
  height: 37px;
  margin-right: 10px;
}
@media (width < 1101px) {
  .problem_contents_child img {
    width: 35px;
    height: 35px;
  }
}
@media (width < 769px) {
  .problem_contents_child img {
    width: 25px;
    height: 25px;
  }
}
@media (width < 431px) {
  .problem_contents_child img {
    width: 20px;
    height: 20px;
  }
}

.problem_contents_img {
  position: absolute;
  left: 80%;
  bottom: 0;
  width: 35%;
}
@media (width < 1441px) {
  .problem_contents_img {
    width: 30%;
    left: 80%;
  }
}
@media (width < 1281px) {
  .problem_contents_img {
    width: 30%;
    left: 77%;
  }
}
@media (width < 769px) {
  .problem_contents_img {
    display: none;
  }
}
.problem_contents_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.custom-shape-divider-top-1631532852 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-top-1631532852 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100px;
}
@media (width < 431px) {
  .custom-shape-divider-top-1631532852 svg {
    height: 50px;
  }
}

.custom-shape-divider-top-1631532852 .shape-fill {
  fill: #E8F1F3;
}

.divider {
  position: relative;
}

.custom-shape-divider2-top-1631532852 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider2-top-1631532852 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100px;
}
@media (width < 431px) {
  .custom-shape-divider2-top-1631532852 svg {
    height: 50px;
  }
}

.custom-shape-divider2-top-1631532852 .shape-fill {
  fill: #ffffff;
}

.divider2 {
  position: relative;
}

/* ===============================================
４つの理由
=============================================== */
.reason {
  padding: 15% 0;
  overflow: hidden;
}
@media (width < 1441px) {
  .reason {
    padding: 20% 0 15% 0;
  }
}
@media (width < 769px) {
  .reason {
    padding: 30% 0 15% 0;
  }
}

.reason_inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media (width < 1281px) {
  .reason_inner {
    padding: 0 3%;
  }
}

.reason_title h2 {
  color: #00193B;
  font-size: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (width < 769px) {
  .reason_title h2 {
    font-size: 25px;
  }
}
.reason_title h2::before {
  content: "REASON";
  color: #D2E4EC;
  position: absolute;
  z-index: -1;
  font-size: 100px;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  letter-spacing: 0.5rem;
}
@media (width < 769px) {
  .reason_title h2::before {
    font-size: 50px;
  }
}
@media (width < 431px) {
  .reason_title h2::before {
    font-size: 45px;
  }
}

.reason_contents_child {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10%;
}
@media (width < 769px) {
  .reason_contents_child {
    display: block;
  }
}

.reason_contents_img {
  width: 40%;
}
@media (width < 769px) {
  .reason_contents_img {
    display: none;
  }
}
.reason_contents_img img {
  width: 340px;
  height: 340px;
}
@media (width < 1101px) {
  .reason_contents_img img {
    width: 300px;
    height: 300px;
  }
}

.reason_contents_box {
  background-color: #E8F1F3;
  padding: 5%;
  box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
}

.reason_contents_title {
  display: flex;
  align-items: center;
  color: #fff;
  padding: 10px 0 10px 20px;
}
.reason_contents_title p {
  font-size: 60px;
  margin-right: 15px;
  font-weight: bold;
}
@media (width < 769px) {
  .reason_contents_title p {
    font-size: 30px;
  }
}
.reason_contents_title h2 {
  font-size: 25px;
}
@media (width < 769px) {
  .reason_contents_title h2 {
    font-size: 18px;
  }
}

.reason_contents_text p {
  font-size: 18px;
  line-height: 2.5rem;
  padding-top: 3%;
}
@media (width < 769px) {
  .reason_contents_text p {
    font-size: 16px;
    line-height: 2rem;
  }
}

/*----------背景画像----------*/
/*右側*/
.backimg_first, .backimg_second {
  position: relative;
}

.backimg_first::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  width: 364px;
  height: 364px;
  background-image: url(img/science-R.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0;
}

.backimg_second::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: inline-block;
  width: 364px;
  height: 364px;
  background-image: url(img/science-R.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0;
}

/*左側*/
.backimg_first::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 0;
  display: inline-block;
  width: 364px;
  height: 364px;
  background-image: url(img/science-L.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0;
}

.backimg_second::before {
  content: "";
  position: absolute;
  top: 60%;
  left: 0;
  display: inline-block;
  width: 364px;
  height: 364px;
  background-image: url(img/science-L.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0;
}

/*右側・親*/
.backimg_right_bottom {
  position: relative;
}

.backimg_right_bottom::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0%;
  display: inline-block;
  width: 364px;
  height: 364px;
  background-image: url(img/science-R.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0;
}

/* ===============================================
実績紹介
=============================================== */
/* ===============================================
コンサルタント紹介
=============================================== */
.consultant {
  background-image: url(img/backimg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.consultant_inner {
  padding: 10% 0 7% 0;
}
@media (width < 1101px) {
  .consultant_inner {
    padding: 15% 0 5% 0;
  }
}

.consultant_title h2 {
  color: #ffffff;
  font-size: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (width < 769px) {
  .consultant_title h2 {
    font-size: 25px;
  }
}
.consultant_title h2::before {
  content: "CONSULTANT";
  color: #6784AB;
  position: absolute;
  z-index: -1;
  font-size: 100px;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  letter-spacing: 0.5rem;
}
@media (width < 769px) {
  .consultant_title h2::before {
    font-size: 50px;
  }
}
@media (width < 431px) {
  .consultant_title h2::before {
    font-size: 45px;
  }
}

.consultant_wrapper {
  display: flex;
  justify-content: center;
  padding: 5% 2%;
}
@media (width < 1281px) {
  .consultant_wrapper {
    padding: 7% 2% 5% 2%;
  }
}
@media (width < 1101px) {
  .consultant_wrapper {
    display: block;
    padding: 5% 2%;
  }
}

.consultant_member {
  background-color: #fff;
  width: 40%;
  padding: 15px 30px 3% 30px;
  margin: 0 15px;
}
@media (width < 1281px) {
  .consultant_member {
    width: 45%;
  }
}
@media (width < 1101px) {
  .consultant_member {
    width: 90%;
    margin: 5% auto;
    padding: 15px 30px 10% 30px;
  }
}
@media (width < 431px) {
  .consultant_member {
    padding: 15px 5% 7% 5%;
  }
}

.consultant_name {
  display: flex;
  align-items: center;
  padding: 3% 0;
}
@media (width < 431px) {
  .consultant_name {
    display: block;
  }
}
.consultant_name h2 {
  margin-left: 5%;
}
@media (width < 431px) {
  .consultant_name h2 {
    text-align: center;
    margin: 3% 0 0 0;
  }
}
@media (width < 431px) {
  .consultant_name img {
    width: 60%;
    margin: 0 auto;
    display: block;
  }
}

.consultant_text {
  line-height: 2.5rem;
}
@media (width < 431px) {
  .consultant_text {
    font-size: 14px;
    line-height: 2rem;
  }
}

/* ===============================================
コンサルティングの流れ
=============================================== */
.consulting {
  padding: 15% 0;
  background-color: #F4F8FA;
}

.consulting_inne {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media (width < 1281px) {
  .consulting_inne {
    padding: 0 3%;
  }
}

.consulting_title h2 {
  color: #00193B;
  font-size: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (width < 769px) {
  .consulting_title h2 {
    font-size: 25px;
  }
}
.consulting_title h2::before {
  content: "CONSULTING";
  color: #D2E4EC;
  position: absolute;
  z-index: -1;
  font-size: 100px;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  letter-spacing: 0.5rem;
}
@media (width < 769px) {
  .consulting_title h2::before {
    font-size: 50px;
  }
}
@media (width < 431px) {
  .consulting_title h2::before {
    font-size: 45px;
  }
}

.consulting_child {
  display: flex;
  align-items: center;
  border-radius: 10px;
  color: #fff;
  padding: 3% 7%;
  margin-top: 10%;
}
@media (width < 769px) {
  .consulting_child {
    margin-top: 20%;
    display: block;
  }
}
@media (width < 431px) {
  .consulting_child {
    padding: 7%;
  }
}

.consulting_text {
  padding-right: 5%;
}
.consulting_text h2 {
  font-size: 35px;
}
@media (width < 1101px) {
  .consulting_text h2 {
    font-size: 27px;
  }
}
@media (width < 769px) {
  .consulting_text h2 {
    font-size: 20px;
  }
}
.consulting_text p {
  line-height: 2.5rem;
  font-size: 18px;
  padding-top: 10px;
}
@media (width < 769px) {
  .consulting_text p {
    font-size: 16px;
  }
}

.consulting_img {
  width: 50%;
  margin: 0 auto;
  padding: 3% 0;
}
@media (width < 769px) {
  .consulting_img {
    width: 80%;
  }
}
.consulting_img img {
  width: 350px;
  height: 300px;
  margin: 0 auto;
  display: block;
}
@media (width < 769px) {
  .consulting_img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/*コンサルティング・ナンバー*/
.number_card01 {
  position: relative;
}

.number_card01::after {
  content: "STEP01";
  position: absolute;
  top: -10%;
  left: 0;
  display: inline-block;
  -webkit-clip-path: polygon(25% 0, 100% 0%, 100% 100%, 0 100%, 0% 50%);
          clip-path: polygon(25% 0, 100% 0%, 100% 100%, 0 100%, 0% 50%);
  padding: 10px 5%;
  background-color: #076FAA;
  font-size: 20px;
  letter-spacing: 0.5rem;
  z-index: 1;
}
@media (width < 769px) {
  .number_card01::after {
    top: -6%;
  }
}
@media (width < 431px) {
  .number_card01::after {
    top: -6%;
    font-size: 16px;
    padding: 10px 5% 10px 10%;
  }
}

.number_card02 {
  position: relative;
}

.number_card02::after {
  content: "STEP02";
  position: absolute;
  top: -10%;
  left: 20%;
  display: inline-block;
  -webkit-clip-path: polygon(25% 0, 100% 0%, 100% 100%, 0 100%, 0% 50%);
          clip-path: polygon(25% 0, 100% 0%, 100% 100%, 0 100%, 0% 50%);
  padding: 10px 5%;
  background-color: #193772;
  font-size: 20px;
  letter-spacing: 0.5rem;
  z-index: 1;
}
@media (width < 769px) {
  .number_card02::after {
    top: -6%;
  }
}
@media (width < 431px) {
  .number_card02::after {
    top: -6%;
    font-size: 16px;
    padding: 10px 5% 10px 10%;
  }
}

.number_card03 {
  position: relative;
}

.number_card03::after {
  content: "STEP03";
  position: absolute;
  top: -10%;
  left: 40%;
  display: inline-block;
  -webkit-clip-path: polygon(25% 0, 100% 0%, 100% 100%, 0 100%, 0% 50%);
          clip-path: polygon(25% 0, 100% 0%, 100% 100%, 0 100%, 0% 50%);
  padding: 10px 5%;
  background-color: #076FAA;
  font-size: 20px;
  letter-spacing: 0.5rem;
  z-index: 1;
}
@media (width < 769px) {
  .number_card03::after {
    top: -6%;
  }
}
@media (width < 431px) {
  .number_card03::after {
    top: -6%;
    font-size: 16px;
    padding: 10px 5% 10px 10%;
  }
}

.number_card04 {
  position: relative;
}

.number_card04::after {
  content: "STEP04";
  position: absolute;
  top: -10%;
  left: 79%;
  display: inline-block;
  -webkit-clip-path: polygon(25% 0, 100% 0%, 100% 100%, 0 100%, 0% 50%);
          clip-path: polygon(25% 0, 100% 0%, 100% 100%, 0 100%, 0% 50%);
  padding: 10px 5%;
  background-color: #193772;
  font-size: 20px;
  letter-spacing: 0.5rem;
  z-index: 1;
}
@media (width < 1281px) {
  .number_card04::after {
    left: 77%;
  }
}
@media (width < 1101px) {
  .number_card04::after {
    left: 72%;
  }
}
@media (width < 769px) {
  .number_card04::after {
    top: -6%;
    left: 60%;
  }
}
@media (width < 431px) {
  .number_card04::after {
    top: -6%;
    left: 55%;
    font-size: 16px;
    padding: 10px 5% 10px 10%;
  }
}

/* ===============================================
お問い合わせ後の流れ
=============================================== */
.flow {
  padding: 10% 0;
}
@media (width < 769px) {
  .flow {
    padding: 15% 0;
  }
}

.flow_inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 3%;
}

.flow_title h2 {
  color: #000000;
  font-size: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (width < 769px) {
  .flow_title h2 {
    font-size: 25px;
  }
}
.flow_title h2::before {
  content: "FLOW";
  color: #D2E4EC;
  position: absolute;
  z-index: -1;
  font-size: 100px;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  letter-spacing: 0.5rem;
}
@media (width < 769px) {
  .flow_title h2::before {
    font-size: 50px;
  }
}
@media (width < 431px) {
  .flow_title h2::before {
    font-size: 45px;
  }
}

.flow_contents_box {
  background-color: #F4F8FA;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  padding: 5% 7%;
  margin: 10% 0 5% 0;
}
@media (width < 1281px) {
  .flow_contents_box {
    padding: 5% 10%;
  }
}
@media (width < 769px) {
  .flow_contents_box {
    padding: 5% 3%;
  }
}

.flow_contents_child {
  background-color: #fff;
  border: solid 1px #D9D9D9;
  border-radius: 0 15px 15px 15px;
  width: calc((100% - 30px) / 3);
}
@media (width < 1101px) {
  .flow_contents_child {
    width: calc((100% - 30px) / 2);
  }
}
@media (width < 431px) {
  .flow_contents_child {
    width: 80%;
    margin: 0 auto;
  }
}
.flow_contents_child h3 {
  color: #00193B;
  text-align: center;
  font-size: 25px;
}
@media (width < 769px) {
  .flow_contents_child h3 {
    font-size: 20px;
  }
}
.flow_contents_child h4 {
  color: #003376;
  padding: 0 10% 15% 10%;
  line-height: 2rem;
}
@media (width < 769px) {
  .flow_contents_child h4 {
    font-size: 16px;
  }
}
@media (width < 431px) {
  .flow_contents_child h4 {
    padding: 5% 10% 15% 10%;
    font-size: 14px;
    line-height: 1.5rem;
  }
}

.flow_contents_number {
  background-color: #076FAA;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  width: 50px;
  height: 50px;
  border-radius: 0 50px 50px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow_contents_img {
  width: 150px;
  height: 125px;
  margin: 10% auto;
}
@media (width < 431px) {
  .flow_contents_img {
    margin: 3% auto;
    width: 100px;
    height: 83px;
  }
}
.flow_contents_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ===============================================
よくある質問
=============================================== */
.faq {
  padding: 15% 0 10% 0;
  background-color: #E8F1F3;
}
@media (width < 1281px) {
  .faq {
    padding: 20% 0 10% 0;
  }
}
@media (width < 1101px) {
  .faq {
    padding: 25% 0 10% 0;
  }
}
@media (width < 769px) {
  .faq {
    padding: 30% 0 10% 0;
  }
}

.faq_inner {
  max-width: 1100px;
  margin: 0 auto;
}

.faq_title h2 {
  color: #000000;
  font-size: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (width < 769px) {
  .faq_title h2 {
    font-size: 25px;
  }
}
.faq_title h2::before {
  content: "FAQ";
  color: #D2E4EC;
  position: absolute;
  z-index: -1;
  font-size: 100px;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  letter-spacing: 0.5rem;
}
@media (width < 769px) {
  .faq_title h2::before {
    font-size: 50px;
  }
}
@media (width < 431px) {
  .faq_title h2::before {
    font-size: 45px;
  }
}

.faq_wrapper {
  padding: 5% 0;
}
@media (width < 1281px) {
  .faq_wrapper {
    padding: 5% 7%;
  }
}

/*----------アコーディオンメニュー----------*/
.details {
  margin-top: 2%;
}
@media (width < 431px) {
  .details {
    margin-top: 5%;
  }
}

.details-summary {
  position: relative;
  display: block;
  font-size: 20px;
  background-color: #D2E4EC;
  padding: 3%;
}
@media (width < 1101px) {
  .details-summary {
    font-size: 18px;
  }
}
@media (width < 769px) {
  .details-summary {
    font-size: 14px;
    font-weight: bold;
  }
}
@media (width < 431px) {
  .details-summary {
    padding: 5% 3%;
  }
}
.details-summary:hover {
  cursor: pointer;
  opacity: 0.8;
}

.faq_btn {
  position: absolute;
  top: 37%;
  right: 10%;
  width: 15px;
  height: 15px;
  transform-origin: center center;
  transition-duration: 0.2s;
}
.faq_btn:before, .faq_btn:after {
  content: "";
  background-color: #076FAA;
  border-radius: 10px;
  width: 18px;
  height: 4px;
  position: absolute;
  top: 7px;
  left: 0;
  transform-origin: center center;
}
.faq_btn:before {
  width: 4px;
  height: 18px;
  top: 0;
  left: 7px;
}

.details-summary.is-active .faq_btn {
  transform: rotate(-180deg);
}
.details-summary.is-active .faq_btn::before {
  content: none;
}

.details-content {
  background-color: #fff;
  padding: 3% 3% 3% 5%;
  font-size: 18px;
}
@media (width < 1101px) {
  .details-content {
    font-size: 16px;
  }
}
@media (width < 769px) {
  .details-content {
    font-size: 14px;
  }
}

.details-summary::-webkit-details-marker {
  display: none;
}

/* ===============================================
お問い合わせバナー
=============================================== */
.contact_announs {
  background-image: url(img/backimg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  text-align: center;
  padding: 5% 0;
}
@media (width < 431px) {
  .contact_announs {
    padding: 15% 0;
  }
}
.contact_announs h2 {
  font-size: 35px;
}
@media (width < 769px) {
  .contact_announs h2 {
    font-size: 25px;
  }
}
@media (width < 431px) {
  .contact_announs h2 {
    font-size: 20px;
  }
}
.contact_announs p {
  font-size: 20px;
  padding: 5% 0;
}
@media (width < 769px) {
  .contact_announs p {
    font-size: 18px;
  }
}
@media (width < 431px) {
  .contact_announs p {
    font-size: 14px;
  }
}

.contact_announs_inner {
  max-width: 769px;
  margin: 0 auto;
}
@media (width < 769px) {
  .contact_announs_inner {
    width: 90%;
  }
}

/*コンタクトボタン・アニメーション*/
.contactform_btn {
  font-size: 25px;
  width: 70%;
  margin: 0 auto;
}
@media (width < 769px) {
  .contactform_btn {
    font-size: 20px;
  }
}
@media (width < 431px) {
  .contactform_btn {
    font-size: 16px;
  }
}

.contactform_btn_link {
  background-color: #076FAA;
  color: #fff;
  display: inline-block;
  width: 100%;
  padding: 5% 0;
  cursor: pointer;
  transition: all 0.4s;
}

.contactform_btn_link:hover {
  box-shadow: 0 16px 20px -8px rgba(0, 0, 0, 0.4);
}

/* ===============================================
フッター
=============================================== */
footer {
  background-color: #353A40;
  padding: 7% 0 15px 0;
}

.footer_logo {
  width: 15%;
  margin: 0 auto;
}
@media (width < 769px) {
  .footer_logo {
    width: 30%;
    padding: 5% 0 10% 0;
  }
}
.footer_logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer_inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer_inner p {
  color: #fff;
  text-align: center;
}
@media (width < 769px) {
  .footer_inner p {
    font-size: 12px;
  }
}

.footer_nav {
  padding: 5% 5% 10% 5%;
}
@media (width < 1281px) {
  .footer_nav {
    padding: 5% 7% 10% 7%;
  }
}
@media (width < 1101px) {
  .footer_nav {
    padding: 5% 10% 10% 10%;
  }
}
@media (width < 769px) {
  .footer_nav {
    display: none;
  }
}
.footer_nav ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer_nav a {
  color: #fff;
}

/* ===============================================
個別ページ・会社概要
=============================================== */
.company_fv {
  background-image: url(img/fv-company.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.company_fv_inner, .company_vision_inner {
  max-width: 1100px;
  margin: 0 auto;
}
@media (width < 1281px) {
  .company_fv_inner, .company_vision_inner {
    padding: 0 3%;
  }
}
@media (width < 1101px) {
  .company_fv_inner, .company_vision_inner {
    padding: 0 5%;
  }
}

.company_fv_title {
  text-align: center;
  padding: 17% 0;
  color: #fff;
}
@media (width < 1441px) {
  .company_fv_title {
    padding: 15% 0;
  }
}
@media (width < 769px) {
  .company_fv_title {
    padding: 20% 0 15% 0;
  }
}
@media (width < 431px) {
  .company_fv_title {
    padding: 30% 0 20% 0;
  }
}
.company_fv_title h1 {
  font-size: 60px;
  letter-spacing: 0.5rem;
}
@media (width < 769px) {
  .company_fv_title h1 {
    font-size: 40px;
  }
}
@media (width < 431px) {
  .company_fv_title h1 {
    font-size: 30px;
  }
}
.company_fv_title p {
  font-size: 25px;
}
@media (width < 769px) {
  .company_fv_title p {
    font-size: 20px;
  }
}
@media (width < 431px) {
  .company_fv_title p {
    font-size: 16px;
  }
}

.company_vision {
  position: relative;
  padding: 10% 0;
  background-color: #E8F1F3;
}
@media (width < 1441px) {
  .company_vision {
    padding: 15% 0;
  }
}

/*背景・装飾*/
.company_vision::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 0;
  display: inline-block;
  width: 364px;
  height: 364px;
  background-image: url(img/science-R.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0;
}
@media (width < 431px) {
  .company_vision::after {
    width: 250px;
    height: 250px;
  }
}

/*左側*/
.company_vision::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  width: 364px;
  height: 364px;
  background-image: url(img/science-L.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0;
}
@media (width < 431px) {
  .company_vision::before {
    width: 250px;
    height: 250px;
    top: 65%;
  }
}

.company_vision_title h2 {
  color: #00193B;
  font-size: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (width < 769px) {
  .company_vision_title h2 {
    font-size: 25px;
  }
}
.company_vision_title h2::before {
  content: "OUR VISION";
  color: #D2E4EC;
  position: absolute;
  z-index: -1;
  font-size: 100px;
  width: 100%;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  letter-spacing: 0.5rem;
}
@media (width < 1281px) {
  .company_vision_title h2::before {
    font-size: 80px;
  }
}
@media (width < 769px) {
  .company_vision_title h2::before {
    font-size: 50px;
  }
}
@media (width < 431px) {
  .company_vision_title h2::before {
    font-size: 45px;
  }
}

.company_vision_box {
  padding-top: 10%;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
  color: #00193B;
}
.company_vision_box h3 {
  font-size: 30px;
  text-align: center;
  letter-spacing: 0.1rem;
  font-weight: normal;
}
@media (width < 1441px) {
  .company_vision_box h3 {
    font-size: 25px;
  }
}
@media (width < 769px) {
  .company_vision_box h3 {
    font-size: 20px;
  }
}
@media (width < 769px) {
  .company_vision_box h3 {
    line-height: 2rem;
  }
}

.company_vision_text {
  padding-top: 5%;
  font-size: 20px;
  line-height: 3.5rem;
}
@media (width < 1441px) {
  .company_vision_text {
    font-size: 16px;
  }
}
@media (width < 769px) {
  .company_vision_text {
    line-height: 2rem;
  }
}

/*----------代表挨拶----------*/
.company_founder {
  background-color: #E8F1F3;
  padding: 2% 0 7% 0;
}
@media (width < 769px) {
  .company_founder {
    padding: 10% 0 7% 0;
  }
}

.company_founder_inner {
  max-width: 1280px;
  margin: 0 auto;
}
@media (width < 1281px) {
  .company_founder_inner {
    padding: 0 5%;
  }
}
@media (width < 1101px) {
  .company_founder_inner {
    padding: 0 3%;
  }
}

.company_founder_title h2 {
  color: #00193B;
  font-size: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (width < 769px) {
  .company_founder_title h2 {
    font-size: 25px;
  }
}
.company_founder_title h2::before {
  content: "FOUNDER";
  color: #D2E4EC;
  position: absolute;
  z-index: -1;
  font-size: 100px;
  width: 100%;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  letter-spacing: 0.5rem;
}
@media (width < 1281px) {
  .company_founder_title h2::before {
    font-size: 80px;
  }
}
@media (width < 769px) {
  .company_founder_title h2::before {
    font-size: 50px;
  }
}
@media (width < 431px) {
  .company_founder_title h2::before {
    font-size: 45px;
  }
}

.company_founder_box {
  background-color: #fff;
  box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
  padding: 7% 7% 5% 7%;
  margin: 8% 0;
  color: #00193B;
  border-radius: 10px;
}
@media (width < 431px) {
  .company_founder_box {
    padding: 7% 7% 10% 7%;
  }
}
.company_founder_box h3 {
  font-size: 30px;
}
@media (width < 1441px) {
  .company_founder_box h3 {
    font-size: 25px;
  }
}
@media (width < 769px) {
  .company_founder_box h3 {
    font-size: 20px;
  }
}

.company_founder_text {
  padding-top: 3%;
  font-size: 18px;
  line-height: 3rem;
}
@media (width < 769px) {
  .company_founder_text {
    font-size: 16px;
    line-height: 2rem;
    padding-top: 5%;
  }
}

.company_founder_name {
  text-align: right;
  padding-top: 3%;
}
.company_founder_name h4 {
  font-size: 16px;
  font-weight: normal;
}
.company_founder_name p {
  font-size: 25px;
}
@media (width < 431px) {
  .company_founder_name p {
    font-size: 20px;
  }
}

/*----------会社概要----------*/
.company_overview {
  padding: 10% 0 5% 0;
}
@media (width < 431px) {
  .company_overview {
    padding: 20% 0 5% 0;
  }
}

.company_overview_inner {
  max-width: 1280px;
  margin: 0 auto;
}
@media (width < 1281px) {
  .company_overview_inner {
    padding: 0 3%;
  }
}

.company_overview_title h2 {
  color: #00193B;
  font-size: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (width < 769px) {
  .company_overview_title h2 {
    font-size: 25px;
  }
}
.company_overview_title h2::before {
  content: "OVERVIEW";
  color: #D2E4EC;
  position: absolute;
  z-index: -1;
  font-size: 100px;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  letter-spacing: 0.5rem;
}
@media (width < 769px) {
  .company_overview_title h2::before {
    font-size: 50px;
  }
}
@media (width < 431px) {
  .company_overview_title h2::before {
    font-size: 45px;
  }
}

.company_overview_contents {
  padding: 5% 0;
}
@media (width < 431px) {
  .company_overview_contents {
    padding: 10% 0 15% 0;
  }
}

.company_overview_contents table {
  border-collapse: collapse; /* セル枠を重ねて表示 */
  width: 80%;
  margin: 0 auto;
  font-size: 20px;
}
@media (width < 1281px) {
  .company_overview_contents table {
    font-size: 16px;
  }
}
@media (width < 431px) {
  .company_overview_contents table {
    width: 100%;
  }
}

.company_overview_contents tr {
  border-bottom: solid 1px #D9D9D9;
}

.company_overview_contents td {
  padding: 2% 0;
}
@media (width < 431px) {
  .company_overview_contents td {
    font-size: 12px;
  }
}

.company_overview_contents .contents_more {
  padding-left: 5%;
}

.company_overview_contents .contents_title {
  padding-left: 15px;
}

/* ===============================================
個別ページ・お問い合わせ
=============================================== */
.page_contact_fv {
  background-image: url(img/fv-contact.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.page_contact_fv_inner {
  max-width: 1100px;
  margin: 0 auto;
}
@media (width < 1281px) {
  .page_contact_fv_inner {
    padding: 0 3%;
  }
}

.page_contact_fv_title {
  text-align: center;
  padding: 17% 0;
  color: #fff;
}
@media (width < 1441px) {
  .page_contact_fv_title {
    padding: 15% 0;
  }
}
@media (width < 769px) {
  .page_contact_fv_title {
    padding: 20% 0 15% 0;
  }
}
@media (width < 431px) {
  .page_contact_fv_title {
    padding: 30% 0 20% 0;
  }
}
.page_contact_fv_title h1 {
  font-size: 60px;
  letter-spacing: 0.5rem;
}
@media (width < 769px) {
  .page_contact_fv_title h1 {
    font-size: 40px;
  }
}
@media (width < 431px) {
  .page_contact_fv_title h1 {
    font-size: 30px;
  }
}
.page_contact_fv_title p {
  font-size: 25px;
}
@media (width < 769px) {
  .page_contact_fv_title p {
    font-size: 20px;
  }
}
@media (width < 431px) {
  .page_contact_fv_title p {
    font-size: 16px;
  }
}

.page_contact_main {
  padding: 10% 0;
  background-color: #E8F1F3;
}
@media (width < 431px) {
  .page_contact_main {
    padding: 15% 0;
  }
}

.page_contact_main_inner {
  max-width: 1100px;
  margin: 0 auto;
}
@media (width < 1281px) {
  .page_contact_main_inner {
    padding: 0 3%;
  }
}

.page_contact_main_title h2 {
  color: #00193B;
  font-size: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (width < 769px) {
  .page_contact_main_title h2 {
    font-size: 25px;
  }
}
@media (width < 431px) {
  .page_contact_main_title h2 {
    font-size: 20px;
  }
}
.page_contact_main_title h2::before {
  content: "CONTACT FORM";
  color: #D2E4EC;
  position: absolute;
  z-index: -1;
  font-size: 100px;
  width: 100%;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  letter-spacing: 0.5rem;
}
@media (width < 1281px) {
  .page_contact_main_title h2::before {
    font-size: 80px;
  }
}
@media (width < 769px) {
  .page_contact_main_title h2::before {
    font-size: 40px;
  }
}
@media (width < 431px) {
  .page_contact_main_title h2::before {
    font-size: 30px;
  }
}

.page_contact_main_text {
  text-align: center;
  padding: 5% 0;
  line-height: 2rem;
}
@media (width < 769px) {
  .page_contact_main_text {
    font-size: 13px;
  }
}

.page_contact_main_box {
  background-color: #fff;
  padding: 10% 5%;
  border-radius: 10px;
  box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
}
@media (width < 431px) {
  .page_contact_main_box {
    padding: 10% 5% 15% 5%;
  }
}
.page_contact_main_box dl {
  padding: 3% 0;
  border-top: solid 1px #00193B;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media (width < 769px) {
  .page_contact_main_box dl {
    display: block;
  }
}
.page_contact_main_box dt {
  width: 40%; /* ラベル部分の幅 */
  padding-left: 1rem;
}
@media (width < 769px) {
  .page_contact_main_box dt {
    width: 100%;
    padding: 0 0 3% 0;
  }
}
.page_contact_main_box dd {
  width: 60%; /* 入力フィールドの幅 */
  border: solid 1px #00193B;
}
@media (width < 769px) {
  .page_contact_main_box dd {
    width: 100%;
  }
}
.page_contact_main_box .required {
  display: inline-block;
  margin-left: 8px;
  padding: 5px 15px;
  background-color: #00193B;
  color: #fff;
  font-size: 12px;
  border-radius: 4px;
  vertical-align: middle;
}
.page_contact_main_box .input {
  width: 100%;
  padding: 2% 1rem;
}
.page_contact_main_box .dropdown{
  padding: 2% 1rem;
}
.page_contact_main_box textarea {
  width: 100%;
  padding: 2% 1rem 10% 1rem;
  resize: none;
}

.pparea_btnbox {
  padding: 5% 0 20px 0;
}

.pp_checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-size: 14px;
}

.pp_checkbox input[type=checkbox] {
  width: 16px;
  height: 16px;
}
.pp_checkbox a{
	color: #076FAA;
}

/*コンタクトボタン・アニメーション*/
.page_contact_formbtnarea {
  width: 30%;
  margin: 0 auto;
  text-align: center;
}
@media (width < 769px) {
  .page_contact_formbtnarea {
    font-size: 20px;
    width: 50%;
  }
}

.page_contact_formbtn {
  font-size: 20px;
  color: #00193B;
  border: solid 1px #00193B;
  display: inline-block;
  width: 100%;
  padding: 5% 0;
  cursor: pointer;
  transition: all 0.4s;
}
@media (width < 431px) {
  .page_contact_formbtn {
    font-size: 16px;
    padding: 7% 0;
  }
}

.page_contact_formbtn:hover {
  border-radius: 15px;
}

/* ===============================================
個別ページ・プライバシーポリシー
=============================================== */
/* .privacypolicy_fv {
  background-image: url("https://startup-solution.net/wp-content/themes/wp-SuSLcc/img/fv-privacypolicy.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
 */
.privacypolicy_fv_inner {
  max-width: 1100px;
  margin: 0 auto;
}
@media (width < 1281px) {
  .privacypolicy_fv_inner {
    padding: 0 3%;
  }
}

.privacypolicy_fv_title {
  text-align: center;
  padding: 17% 0;
  color: #fff;
}
@media (width < 1441px) {
  .privacypolicy_fv_title {
    padding: 15% 0;
  }
}
@media (width < 769px) {
  .privacypolicy_fv_title {
    padding: 20% 0 15% 0;
  }
}
@media (width < 431px) {
  .privacypolicy_fv_title {
    padding: 30% 0 20% 0;
  }
}
.privacypolicy_fv_title h1 {
  font-size: 60px;
  letter-spacing: 0.5rem;
}
@media (width < 769px) {
  .privacypolicy_fv_title h1 {
    font-size: 40px;
  }
}
@media (width < 431px) {
  .privacypolicy_fv_title h1 {
    font-size: 30px;
  }
}
.privacypolicy_fv_title p {
  font-size: 25px;
}
@media (width < 769px) {
  .privacypolicy_fv_title p {
    font-size: 20px;
  }
}
@media (width < 431px) {
  .privacypolicy_fv_title p {
    font-size: 16px;
  }
}

.privacypolicy_contents {
  padding: 10% 0;
  background-color: #E8F1F3;
}
@media (width < 431px) {
  .privacypolicy_contents {
    padding: 15% 0;
  }
}

.privacypolicy_contents_inner {
  max-width: 1100px;
  margin: 0 auto;
}
@media (width < 1281px) {
  .privacypolicy_contents_inner {
    padding: 0 3%;
  }
}

.privacypolicy_contents_title h2 {
  color: #00193B;
  font-size: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (width < 769px) {
  .privacypolicy_contents_title h2 {
    font-size: 25px;
  }
}
@media (width < 431px) {
  .privacypolicy_contents_title h2 {
    font-size: 20px;
  }
}
.privacypolicy_contents_title h2::before {
  content: "PRIVACY POLICY";
  color: #D2E4EC;
  position: absolute;
  z-index: -1;
  font-size: 100px;
  width: 100%;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  letter-spacing: 0.5rem;
}
@media (width < 1281px) {
  .privacypolicy_contents_title h2::before {
    font-size: 80px;
  }
}
@media (width < 769px) {
  .privacypolicy_contents_title h2::before {
    font-size: 40px;
  }
}
@media (width < 431px) {
  .privacypolicy_contents_title h2::before {
    font-size: 30px;
  }
}

.privacypolicy_contents_box {
  background-color: #fff;
  padding: 5%;
  margin-top: 5%;
  border-radius: 10px;
  box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
}
@media (width < 769px) {
  .privacypolicy_contents_box {
    font-size: 14px;
  }
}

.consultant_name2 {
  display: flex;
  align-items: center;
  padding: 3% 0;
}
@media (width < 431px) {
  .consultant_name {
    display: block;
  }
}

@media (width < 431px) {
  .consultant_name2 h2 {
    text-align: center;
    margin: 3% 0 0 0;
  }
}
/* @media (width < 431px) {
  .consultant_name img {
    width: 60%;
    margin: 0 auto;
    display: block;
  }
} */

.consultant_text .consultant_subtext{
	color: #7B7B7B;
}


/*# sourceMappingURL=style.css.map */