@charset "UTF-8";
li {
  list-style: none;
}

a {
  text-decoration: none;
}

body {
  font-family: "Inter", sans-serif;
}

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

a {
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.6;
}

/*----------フェード----------*/
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

.slide_nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 5% 25px 0;
}
@media (width < 1101px) {
  .slide_nav {
    padding: 10px 5% 10px 0;
  }
}

.pc_header {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background-color: transparent;
  border-bottom: solid 3px #00388B;
  transition: background-color 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

/* スクロール後 */
header.scrolled {
  background-color: #fff;
  border-bottom: none; /* 下線消す */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

header a {
  color: #00388B;
  font-size: 18px;
}

.header_logo {
  width: 240px;
  height: 30px;
  margin-left: 5%;
}
@media (width < 431px) {
  .header_logo {
    width: 160px;
    height: 20px;
  }
}
.header_logo img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.header__container {
  display: none;
}
@media (width < 1101px) {
  .header__container {
    display: flex;
    align-items: center;
    justify-content: right;
    padding: 0 3%;
  }
}

@media (width < 1101px) {
  .pc_nav {
    display: none;
  }
}
.pc_nav ul {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.pc_nav li + li {
  margin-left: 25px;
}

/* ===============================================
ハンバーガーボタン
=============================================== */
.hamburger {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 80px;
  margin: 0;
  cursor: pointer;
  position: relative;
  z-index: 550;
  transition: 0.5s all;
}

@media (width < 769px) {
  .hamburger {
    width: 120px;
    height: 80px;
  }
}
@media (width < 431px) {
  .hamburger {
    width: 80px;
    height: 70px;
  }
}
/* =============================
三本線 共通
============================= */
.hamburger span,
.hamburger span::before,
.hamburger span::after {
  position: absolute;
  display: block;
  content: "";
  height: 2px;
  background-color: #00388B;
  transition: all 0.5s;
  right: 0;
}

/* 上 */
.hamburger span::before {
  width: 26px;
  top: -10px;
}

/* 真ん中 */
.hamburger span {
  width: 38px;
}

/* 下 */
.hamburger span::after {
  width: 52px;
  bottom: -10px;
}

/* =============================
open状態
============================= */
.hamburger.open span {
  background-color: transparent;
}

/* ×をきれいに見せるため width を統一 */
.hamburger.open span::before,
.hamburger.open span::after {
  width: 38px;
}

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

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

/* =============================
CLOSEテキスト
============================= */
.hamburger::before {
  content: "";
  position: absolute;
  right: 60px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #00388B;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* open時だけ表示 */
.hamburger.open::before {
  content: "CLOSE";
  opacity: 1;
}

/* ===============================================
メニューのスタイリング
=============================================== */
.hamburger_nav {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  right: -120%;
  background-color: rgba(176, 201, 225, 0.9);
  transition: all 0.5s;
  z-index: 500;
}
@media (width < 1101px) {
  .hamburger_nav {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 30% 0 20% 5%;
  }
}
@media (width < 1101px) {
  .hamburger_nav li + li {
    margin-top: 30px;
  }
}

.hamburger_nav.open {
  right: 0;
}

/* ===============================================
ファーストビュー
=============================================== */
.fv_hero {
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.fv_hero::after {
  content: "";
  background-image: url(img/fv-bg.webp);
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.fv_wrapper {
  padding: 15% 5% 200px 7%;
  position: relative;
  z-index: 2;
}
@media (width < 1441px) {
  .fv_wrapper {
    padding: 15% 0% 200px 5%;
  }
}
@media (width < 431px) {
  .fv_wrapper {
    padding: 35% 0 50px 3%;
  }
}

.fv_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
@media (width < 1101px) {
  .fv_inner {
    display: block;
    padding: 5% 15% 0 7%;
  }
}
@media (width < 769px) {
  .fv_inner {
    padding: 15% 15% 0 7%;
  }
}
@media (width < 431px) {
  .fv_inner {
    padding: 0;
  }
}

.fv_title h1 {
  color: #00388B;
  font-size: 45px;
  font-weight: 500;
  letter-spacing: 0.2rem;
}
@media (width < 1281px) {
  .fv_title h1 {
    font-size: 35px;
    letter-spacing: 0.1rem;
  }
}
@media (width < 1101px) {
  .fv_title h1 {
    font-size: 30px;
  }
}
.fv_title p {
  font-size: 18px;
  margin-top: 15px;
}
@media (width < 1281px) {
  .fv_title p {
    font-size: 16px;
  }
}
@media (width < 431px) {
  .fv_title p {
    line-height: 2rem;
  }
}

.fv-img {
  width: 660px;
  height: 385px;
}
@media (width < 1441px) {
  .fv-img {
    width: 600px;
    height: 350px;
  }
}
@media (width < 1281px) {
  .fv-img {
    width: 580px;
    height: 340px;
  }
}
@media (width < 1101px) {
  .fv-img {
    width: 450px;
    height: 260px;
    margin-left: auto;
    margin-top: 5%;
  }
}
@media (width < 431px) {
  .fv-img {
    margin-top: 10%;
    width: 345px;
    height: 200px;
  }
}
.fv-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.y_marker {
  background-color: #FFFF60;
}

.fv-layer {
  width: 100%;
  height: 500px;
  margin-top: 10%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media (width < 1101px) {
  .fv-layer {
    height: 500px;
  }
}
@media (width < 431px) {
  .fv-layer {
    height: 100px;
  }
}
.fv-layer img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.cta_btn_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
  margin: 5% 10% 0 0;
}
@media (width < 1281px) {
  .cta_btn_inner {
    gap: 50px;
    margin: 5% 5% 0 0;
  }
}
@media (width < 1101px) {
  .cta_btn_inner {
    display: none;
  }
}

.cta_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 50px;
  letter-spacing: 0.3rem;
}
.cta_btn img {
  width: 30px;
  height: 30px;
  margin-right: 5px;
}

.blue_btn {
  background-color: #00BEE9;
  color: #000000;
}

.black_btn {
  background-color: #323232;
  color: #fff;
}

/* ===============================================
アバウト
=============================================== */
.about {
  padding: 0 0 10% 0;
  background-color: #0062A9;
}
@media (width < 1101px) {
  .about {
    padding: 5% 0 10% 0;
  }
}
@media (width < 769px) {
  .about {
    padding: 10% 0 15% 0;
  }
}
@media (width < 431px) {
  .about {
    padding: 15% 0 15% 0;
  }
}

.about_main_title {
  text-align: center;
  font-size: 30px;
  color: #fff;
  letter-spacing: 0.3rem;
  font-weight: 500;
}
@media (width < 769px) {
  .about_main_title {
    font-size: 25px;
  }
}
@media (width < 431px) {
  .about_main_title {
    font-size: 20px;
  }
}

.about_sub_title {
  color: #00BEE9;
  text-align: center;
  display: block;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1rem;
}
@media (width < 769px) {
  .about_sub_title {
    font-size: 16px;
  }
}
@media (width < 431px) {
  .about_sub_title {
    font-size: 14px;
  }
}

.about_wrapper {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  margin-top: 5%;
}
@media (width < 1281px) {
  .about_wrapper {
    padding: 0 5%;
  }
}
@media (width < 769px) {
  .about_wrapper {
    margin-top: 10%;
    display: block;
  }
}

.about_item {
  width: 550px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (width < 769px) {
  .about_item {
    width: 100%;
  }
}

@media (width < 769px) {
  .about_item + .about_item {
    margin-top: 10%;
  }
}

.about_number {
  color: #fff;
  font-size: 40px;
  font-weight: 500;
}
@media (width < 769px) {
  .about_number {
    font-size: 30px;
    text-align: center;
    margin-bottom: 10px;
  }
}

.about_box {
  background-color: #89ADD2;
  padding: 10%;
  flex: 1;
}
.about_box h3 {
  color: #fff;
  font-size: 25px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 5%;
  letter-spacing: 0.2rem;
}
@media (width < 1281px) {
  .about_box h3 {
    font-size: 20px;
  }
}
.about_box .y_text {
  color: #FFFF60;
  font-size: 30px;
}
@media (width < 1281px) {
  .about_box .y_text {
    font-size: 25px;
  }
}
.about_box p {
  color: #fff;
  font-weight: 400;
  font-size: 16px;
}
@media (width < 431px) {
  .about_box p {
    line-height: 2rem;
  }
}

@media (width < 1281px) {
  .b_br {
    display: none;
  }
}

/* ===============================================
アンサー
=============================================== */
.answer {
  padding: 5% 0 3% 0;
}
@media (width < 769px) {
  .answer {
    padding: 10% 0 10% 0;
  }
}

.answer_main_title {
  text-align: center;
  font-size: 30px;
  color: #00388B;
  letter-spacing: 0.3rem;
  font-weight: 500;
}
@media (width < 769px) {
  .answer_main_title {
    font-size: 25px;
  }
}
@media (width < 431px) {
  .answer_main_title {
    font-size: 20px;
  }
}

.answer_sub_title {
  color: #7F9BC4;
  text-align: center;
  display: block;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1rem;
}
@media (width < 769px) {
  .answer_sub_title {
    font-size: 16px;
  }
}
@media (width < 431px) {
  .answer_sub_title {
    font-size: 14px;
  }
}

.answer_wrapper {
  background-color: #B0C9E1;
  padding-bottom: 5%;
}

.answer_inner {
  padding: 7% 0 0 0;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
@media (width < 1281px) {
  .answer_inner {
    padding: 15% 5% 0 5%;
  }
}
@media (width < 769px) {
  .answer_inner {
    display: block;
    padding: 20% 5% 0 5%;
  }
}

.answer-layer {
  width: 100%;
  height: 130px;
}
@media (width < 769px) {
  .answer-layer {
    height: 70px;
  }
}
.answer-layer img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.answer_item {
  width: 550px;
  display: flex;
  flex-direction: column;
}
@media (width < 769px) {
  .answer_item {
    width: 100%;
  }
}

@media (width < 769px) {
  .answer_item + .answer_item {
    margin-top: 10%;
  }
}

.answer_number {
  font-size: 40px;
  font-weight: 500;
  color: #FFFF60;
}
@media (width < 769px) {
  .answer_number {
    font-size: 30px;
    text-align: center;
    margin-bottom: 10px;
  }
}

.answer_box {
  background-color: #ffffff;
  padding: 10%;
  flex: 1;
}
.answer_box h3 {
  color: #00388B;
  font-size: 25px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 5%;
  border-bottom: solid 2px #00388B;
  padding-bottom: 15px;
  letter-spacing: 0.2rem;
}
@media (width < 1281px) {
  .answer_box h3 {
    font-size: 20px;
  }
}
.answer_box p {
  font-weight: 400;
  font-size: 16px;
  line-height: 2rem;
}

/*----セクション区切り-----*/
.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: #ffffff;
}

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

/* ===============================================
プラン
=============================================== */
.plans {
  padding-bottom: 10%;
}

.plans_main_title {
  text-align: center;
  font-size: 30px;
  color: #00388B;
  letter-spacing: 0.3rem;
  font-weight: 500;
  margin: 5% 0;
}
@media (width < 769px) {
  .plans_main_title {
    font-size: 25px;
  }
}
@media (width < 431px) {
  .plans_main_title {
    font-size: 20px;
  }
}

.plans_sub_title {
  color: #7F9BC4;
  text-align: center;
  display: block;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1rem;
}
@media (width < 769px) {
  .plans_sub_title {
    font-size: 16px;
  }
}
@media (width < 431px) {
  .plans_sub_title {
    font-size: 14px;
  }
}

.course {
  max-width: 1100px;
  margin: auto;
}
@media (width < 1101px) {
  .course {
    width: 100%;
    padding: 0 5%;
  }
}

.course_table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.course_table th,
.course_table td {
  border-bottom: 1px solid #ffffff;
}

/* ヘッダー */
.course_head th:first-child {
  width: 220px;
  background: #0062A9;
}
@media (width < 431px) {
  .course_head th:first-child {
    width: 100px;
  }
}

.course_head th:last-child {
  background: #C5D7E9;
  font-size: 24px;
  font-weight: 600;
  padding: 22px;
  text-align: center;
}
@media (width < 769px) {
  .course_head th:last-child {
    font-size: 20px;
  }
}
@media (width < 431px) {
  .course_head th:last-child {
    font-size: 18px;
  }
}

/* 左 */
.course_num {
  background: #0062A9;
  color: white;
  text-align: center;
  padding: 18px;
  font-weight: 500;
}
@media (width < 431px) {
  .course_num {
    padding: 10px;
  }
}

/* 右 */
.course_text {
  background: #C5D7E9;
  text-align: center;
  padding: 18px;
  color: #1E4D8F;
}

/* ===============================================
FAQ
=============================================== */
.faq {
  padding: 5% 0 10% 0;
  background-color: #0062A9;
}

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

.faq_main_title {
  font-size: 30px;
  color: #fff;
  letter-spacing: 0.3rem;
  font-weight: 500;
  margin: 5% 0;
}
@media (width < 769px) {
  .faq_main_title {
    font-size: 25px;
  }
}
@media (width < 431px) {
  .faq_main_title {
    font-size: 20px;
  }
}

.faq_sub_title {
  display: block;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1rem;
}
@media (width < 769px) {
  .faq_sub_title {
    font-size: 16px;
  }
}
@media (width < 431px) {
  .faq_sub_title {
    font-size: 14px;
  }
}

.faq-item + .faq-item {
  margin-top: 15px;
}

.faq-question {
  display: flex;
  align-items: center;
  background-color: #fff;
  width: 100%;
  padding: 20px 5%;
}

.faq-answer {
  height: 0;
  overflow: hidden;
}

.faq-answer-inner {
  padding: 30px 0 30px 8.5%;
  background: #f0fbff;
}

.q {
  color: #00BEE9;
  font-size: 30px;
  font-weight: bold;
  margin-right: 15px;
}
@media (width < 431px) {
  .q {
    font-size: 20px;
  }
}

/* アニメーション関連 */
.faq-answer {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: height 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease, transform 0.45s ease;
}

/* 開いた状態 */
.faq-item.active .faq-answer {
  opacity: 1;
  transform: translateY(0);
}

/* アイコン関連 */
.icon {
  width: 20px;
  height: 20px;
  position: relative;
  margin-left: auto;
}

.icon span {
  position: absolute;
  background: #0ea5c6;
  transition: 0.4s;
}

/* 横線 */
.icon span:nth-child(1) {
  width: 20px;
  height: 2px;
  top: 9px;
  left: 0;
}

/* 縦線 */
.icon span:nth-child(2) {
  width: 2px;
  height: 20px;
  top: 0;
  left: 10px;
}

/* 開いたら縦線消す */
.faq-item.active .icon span:nth-child(2) {
  transform: scaleY(0);
}

.Q_text {
  display: block;
  text-align: left;
}

/* ===============================================
流れ
=============================================== */
.flow {
  padding: 5% 0 10% 0;
}
@media (width < 769px) {
  .flow {
    padding: 10% 0 15% 0;
  }
}

.flow_wrapper {
  max-width: 1440px;
  margin: 0 auto;
}
@media (width < 1441px) {
  .flow_wrapper {
    padding: 0 5%;
  }
}
@media (width < 769px) {
  .flow_wrapper {
    padding: 0 10%;
  }
}

.flow_main_title {
  font-size: 30px;
  color: #323232;
  letter-spacing: 0.3rem;
  font-weight: 500;
  margin: 5% 0 7% 0;
  position: relative;
  text-align: center;
}
@media (width < 769px) {
  .flow_main_title {
    font-size: 25px;
  }
}
@media (width < 431px) {
  .flow_main_title {
    font-size: 20px;
  }
}

.flow_sub_title {
  display: block;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1rem;
  color: #00BEE9;
}
@media (width < 769px) {
  .flow_sub_title {
    font-size: 16px;
  }
}
@media (width < 431px) {
  .flow_sub_title {
    font-size: 14px;
  }
}

.flow_main_title::after {
  content: "";
  position: absolute;
  height: 2px;
  background-color: #C5C5C5;
  width: 40%;
  display: block;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (width < 1281px) {
  .flow_main_title::after {
    width: 35%;
  }
}
@media (width < 1101px) {
  .flow_main_title::after {
    width: 30%;
  }
}
@media (width < 769px) {
  .flow_main_title::after {
    width: 25%;
  }
}
@media (width < 431px) {
  .flow_main_title::after {
    width: 18%;
  }
}

.flow_main_title::before {
  content: "";
  position: absolute;
  height: 2px;
  background-color: #C5C5C5;
  width: 40%;
  display: block;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (width < 1281px) {
  .flow_main_title::before {
    width: 35%;
  }
}
@media (width < 1101px) {
  .flow_main_title::before {
    width: 30%;
  }
}
@media (width < 769px) {
  .flow_main_title::before {
    width: 25%;
  }
}
@media (width < 431px) {
  .flow_main_title::before {
    width: 18%;
  }
}

.flow_inner {
  max-width: 768px;
  margin: 0 auto;
}
@media (width < 769px) {
  .flow_inner {
    margin-top: 10%;
  }
}

.flow_item {
  display: flex;
  align-items: center;
}
@media (width < 431px) {
  .flow_item {
    display: block;
  }
}

.flow_step {
  color: #00BEE9;
  border-right: solid 2px #C5C5C5;
  padding: 0 10% 0 0;
}
@media (width < 431px) {
  .flow_step {
    border-right: none;
    border-bottom: solid 2px #C5C5C5;
    padding: 0 0 15px 0;
  }
}
.flow_step p {
  font-size: 20px;
}
@media (width < 431px) {
  .flow_step p {
    font-size: 16px;
  }
}
.flow_step .flow_numebr {
  font-size: 45px;
  display: block;
  line-height: 2.5rem;
}

.flow_link {
  color: #00BEE9;
  border-bottom: solid 1px #00BEE9;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin-left: auto;
  margin-top: 5px;
}

.flow_contents {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 10%;
}
@media (width < 431px) {
  .flow_contents {
    padding-left: 0;
    padding-top: 5%;
  }
}
.flow_contents h3 {
  font-size: 25px;
  font-weight: 500;
  display: flex;
  align-items: center;
}
@media (width < 769px) {
  .flow_contents h3 {
    font-size: 20px;
  }
}
.flow_contents img {
  width: 40px;
  height: 40px;
  margin-left: 15px;
}
@media (width < 769px) {
  .flow_contents img {
    width: 30px;
    height: 30px;
  }
}
.flow_contents p {
  font-size: 18px;
  color: #323232;
  margin-top: 10px;
}
@media (width < 769px) {
  .flow_contents p {
    font-size: 16px;
  }
}
@media (width < 431px) {
  .flow_contents p {
    line-height: 2rem;
  }
}

.plygon {
  margin: 5% 0;
  width: 35px;
  height: 26px;
}
@media (width < 431px) {
  .plygon {
    margin: 10% 0;
  }
}
.plygon img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

/* ===============================================
会社概要
=============================================== */
.company {
  background-color: #F5F5F5;
  padding: 0 0 7% 0;
}
@media (width < 769px) {
  .company {
    padding: 0 0 10% 0;
  }
}

.company_wrapper {
  padding: 7% 10% 0 15%;
  display: flex;
}
@media (width < 1281px) {
  .company_wrapper {
    padding: 7% 10% 0 10%;
  }
}
@media (width < 1101px) {
  .company_wrapper {
    padding: 7% 10% 0 7%;
  }
}
@media (width < 769px) {
  .company_wrapper {
    padding: 7% 5% 0 5%;
    display: block;
  }
}

.company_img {
  height: 50vh;
  width: 100%;
  background-image: url(img/company.webp);
  background-position: center;
  background-size: cover;
}
@media (width < 431px) {
  .company_img {
    height: 40vh;
  }
}

.company_main_title {
  font-size: 35px;
  color: #00388B;
  letter-spacing: 0.3rem;
  font-weight: 500;
}
@media (width < 769px) {
  .company_main_title {
    font-size: 25px;
  }
}
@media (width < 431px) {
  .company_main_title {
    font-size: 20px;
  }
}

.company_sub_title {
  display: block;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1rem;
  color: #989898;
}
@media (width < 769px) {
  .company_sub_title {
    font-size: 16px;
  }
}
@media (width < 431px) {
  .company_sub_title {
    font-size: 14px;
  }
}

.company_inner {
  width: 70%;
  margin-left: auto;
}
@media (width < 769px) {
  .company_inner {
    width: 100%;
  }
}

.company_list {
  margin-top: 7%;
}

.company_row {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #ccc;
}

.company_row dt {
  color: #0b3d91;
  font-weight: 600;
  width: 100px;
  font-size: 18px;
}
@media (width < 769px) {
  .company_row dt {
    font-size: 16px;
  }
}

.company_row dd {
  flex: 1;
  margin: 0;
  color: #0b3d91;
  line-height: 1.8;
  font-size: 18px;
}
@media (width < 769px) {
  .company_row dd {
    font-size: 16px;
  }
}

.company_row a {
  color: #0b3d91;
  text-decoration: underline;
}

/* ===============================================
フォームボタン
=============================================== */
.form {
  padding: 3% 0;
}
@media (width < 431px) {
  .form {
    padding: 5% 0;
  }
}

.form_wrapper {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
@media (width < 1281px) {
  .form_wrapper {
    padding: 0 5%;
  }
}
@media (width < 1101px) {
  .form_wrapper {
    padding: 0 3%;
    display: block;
  }
}

.form_box {
  position: relative;
  border-radius: 40px;
}

@media (width < 1101px) {
  .form_box + .form_box {
    margin-top: 5%;
  }
}

.form_box_inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}
.form_box_inner h2 {
  font-size: 16px;
  font-weight: 400;
}
.form_box_inner p {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.2rem;
}
@media (width < 769px) {
  .form_box_inner p {
    font-size: 25px;
  }
}

.form_img1 {
  background-image: url(img/contact.webp);
  background-size: cover;
  background-position: center;
  width: 620px;
  height: 326px;
}
@media (width < 1281px) {
  .form_img1 {
    width: 500px;
    height: 260px;
  }
}
@media (width < 1101px) {
  .form_img1 {
    width: 100%;
  }
}

.form_img2 {
  background-image: url(img/request.webp);
  background-size: cover;
  background-position: center;
  width: 620px;
  height: 326px;
}
@media (width < 1281px) {
  .form_img2 {
    width: 500px;
    height: 260px;
  }
}
@media (width < 1101px) {
  .form_img2 {
    width: 100%;
  }
}

.form_btn {
  color: #fff;
  background-color: #00388B;
  width: 300px;
  height: 50px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10%;
}

/* ===============================================
フッター
=============================================== */
footer {
  background-color: #00388B;
  padding: 2% 0 40px 0;
}
@media (width < 1101px) {
  footer {
    padding: 7% 0 10px 0;
  }
}
@media (width < 431px) {
  footer {
    padding: 13% 0 10px 0;
  }
}

.footer_wrapper {
  padding: 0 10%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (width < 1101px) {
  .footer_wrapper {
    justify-content: center;
  }
}

@media (width < 1101px) {
  .footer_nav {
    display: none;
  }
}
.footer_nav li + li {
  margin-top: 20px;
}
.footer_nav a {
  color: #fff;
}
.footer_nav .footer_btn {
  color: #00388B;
  background-color: #FFFF60;
  width: 110px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.copyright {
  color: #fff;
  font-size: 14px;
  font-weight: 200;
}
@media (width < 1101px) {
  .copyright {
    margin-top: 15%;
  }
}
/*# sourceMappingURL=style.css.map */