@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.7;
  color: #333;
  overflow-x: hidden;
  position: relative;
  font-size: 3.5vw;
}
@media only screen and (min-width: 768px) {
  body {
    font-size: 1rem;
  }
}

/* fixedヘッダー対策（アンカー用） */
[id^=sec] {
  scroll-margin-top: 90px;
}

a:hover {
  text-decoration: none;
}

.sp {
  display: block;
}
@media only screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media only screen and (min-width: 768px) {
  .pc {
    display: block;
  }
}

.sp-br {
  display: block;
}
@media only screen and (min-width: 768px) {
  .sp-br {
    display: inline;
  }
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: #fff;
  z-index: 1000;
  transition: height 0.3s, box-shadow 0.3s;
}
.l-header.is-scrolled {
  height: 80px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.l-header.is-scrolled .head_form {
  height: 80px;
}
.l-header__inner {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-header__nav {
  /* SP：全画面メニュー */
  position: fixed;
  display: flex;
  inset: 0;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.3s;
  z-index: 900;
  /* ★ 追加（重要） */
  justify-content: center;
  align-items: center;
}
.l-header__nav.is-open {
  transform: translateX(0);
}
.l-header__nav {
  /* PC */
}
@media only screen and (min-width: 768px) {
  .l-header__nav {
    position: static;
    inset: auto;
    transform: none;
    background: transparent;
    justify-content: flex-start;
    align-items: center;
  }
}
.l-header__list {
  display: flex;
  /* SP */
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  /* PC */
}
@media only screen and (min-width: 768px) {
  .l-header__list {
    height: auto;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .l-header__list {
    gap: 40px;
  }
}
.l-header__list a {
  font-size: 4vw;
  position: relative;
  transition: 0.3s;
}
.l-header__list a:hover {
  color: #00bfd3;
}
@media only screen and (min-width: 768px) {
  .l-header__list a {
    font-size: 0.9rem;
  }
}
.l-header__list a.is-active {
  font-weight: bold;
}
.l-header__list a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #007aff;
}

.l-header__logo img {
  width: 160px;
}

.head_form {
  display: flex;
  height: 64px;
}
.head_form a {
  padding: 20px;
  font-weight: bold;
  color: #fff;
  background-color: #00bfd3;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 20px;
  line-height: 1;
  text-decoration: none;
}

.l-footer {
  position: relative;
  padding: 30px 0 5px;
  background: #000;
  color: #fff;
}
.l-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.l-footer .l-footer__logo {
  padding-top: 10px;
}
.l-footer .l-footer__logo img {
  max-width: 260px;
}
.l-footer .l-footer__logo2 img {
  max-width: 70px;
}
.l-footer ul {
  margin: 20px 0;
}
.l-footer ul li {
  display: inline-block;
  font-size: 0.8rem;
  padding: 5px 15px;
}
.l-footer .l-footer__copyright {
  font-size: 0.7rem;
}

.o-button {
  display: inline-block;
  padding: 12px 24px;
  background: #003255;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  transition: 0.3s;
  margin: 0 auto;
  font-weight: bold;
  letter-spacing: 0.2rem;
}
.o-button:hover {
  background: #00bfd3;
}

/* KVボタン */
.main-btn {
  width: 100%;
  z-index: 900;
  left: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  /* ===== 初期状態 ===== */
  opacity: 0;
  transform: translateY(0);
  /* ===== KV最下部 ===== */
}
.main-btn.is-intro {
  position: absolute;
  top: 30px;
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .main-btn.is-intro {
    top: 150px;
  }
}
.main-btn {
  /* ===== 追従 ===== */
}
.main-btn.is-fixed {
  position: fixed;
  bottom: 6px;
  opacity: 1;
}
.main-btn {
  /* ===== フッター手前で停止 ===== */
}
.main-btn.is-stop {
  position: absolute;
  bottom: 0;
}
.main-btn img {
  width: 100%;
  height: auto;
  display: block;
}
.main-btn a img {
  transition: 0.3s;
}
.main-btn a img:hover {
  opacity: 0.8;
}

/* ===== オプション内ボタン ===== */
.option_btn {
  width: 240px;
  margin: 20px auto;
  border: solid 1px #ccc;
  color: #666;
  padding: 12px;
  font-weight: 500;
  transition: 0.5s; /*0.5秒で変化*/
  display: inline-block;
  border-radius: 10px;
}
.option_btn:hover {
  background: #00bfd3;
  color: #fff;
  transition: 0.5s; /*0.5秒で変化*/
}

.c-hamburger {
  display: block;
  width: 32px;
  height: 24px;
  position: relative;
  background: none;
  cursor: pointer;
  padding: 0;
  border: none;
  z-index: 999;
}
@media only screen and (min-width: 768px) {
  .c-hamburger {
    display: none;
  }
}
.c-hamburger span {
  display: block; /* ← これが超重要 */
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #333;
  transition: 0.3s;
}
.c-hamburger span:nth-child(1) {
  top: 0;
}
.c-hamburger span:nth-child(2) {
  top: 11px;
}
.c-hamburger span:nth-child(3) {
  bottom: 0;
}
.c-hamburger.is-open span:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
}
.c-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.c-hamburger.is-open span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 11px;
}

.js-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.js-fade.is-show {
  opacity: 1;
  transform: translateY(0);
}

.c-pagetop {
  position: fixed;
  right: 0;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 12px;
  cursor: pointer;
  z-index: 9999;
  /* 初期状態（右下に隠す） */
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.c-pagetop.is-show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media only screen and (min-width: 768px) {
  .c-pagetop {
    right: 16px;
    bottom: 16px;
  }
}

.tab-wrap {
  max-width: 900px;
  margin: 0 auto;
}

/* =========================
   タブボタン
========================= */
.tab-buttons {
  display: block;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .tab-buttons {
    display: flex;
    gap: 10px;
  }
}
.tab-buttons .tab-btn {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  font-weight: bold;
  background: #fff;
  border: 2px solid #003255;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  text-align: center;
  /* モバイル：縦並び間隔 */
}
.tab-buttons .tab-btn:not(:last-child) {
  margin-bottom: 10px;
}
@media only screen and (min-width: 768px) {
  .tab-buttons .tab-btn:not(:last-child) {
    margin-bottom: 0;
  }
}
.tab-buttons .tab-btn.is-active {
  background: #003255;
  color: #fff;
}
.tab-buttons .tab-btn {
  /* hover（active 以外） */
}
.tab-buttons .tab-btn:not(.is-active):hover {
  background: #00bfd3;
  color: #fff;
}

/* =========================
   タブ内容
========================= */
.tab-contents .tab-content {
  display: none;
  padding: 20px;
  background: #fff;
}
.tab-contents .tab-content.is-active {
  display: block;
  animation: fadeIn 0.3s ease;
}
.tab-contents .tab-content h4 {
  font-size: 4.5vw;
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  .tab-contents .tab-content h4 {
    font-size: 1.2rem;
  }
}

/* =========================
   アニメーション
========================= */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.qa-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.qa-question {
  width: 100%;
  padding: 15px 20px 15px 10px;
  background: #f8f8f8;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  text-align: left;
  margin-bottom: 6px;
}

.qa-text {
  font-weight: bold;
}

.qa-dot {
  color: #00bfd3;
}

.qa-icon {
  position: relative;
  width: 20px;
  height: 20px;
}
.qa-icon::before, .qa-icon::after {
  content: "";
  position: absolute;
  background: #00bfd3;
  transition: 0.3s;
}
.qa-icon {
  /* 横棒 */
}
.qa-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
.qa-icon {
  /* 縦棒 */
}
.qa-icon::after {
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

/* 開いた状態（−になる） */
.qa-item.is-open .qa-icon::after {
  transform: translateX(-50%) scaleY(0);
}

.qa-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 20px;
  background: #fff;
  color: #003255;
}
.qa-answer h3 {
  font-size: 1.2rem;
  margin-top: 20px;
  font-weight: bold;
  border-bottom: 2px solid #003255;
}
.qa-answer p {
  margin: 0;
}
.qa-answer ul {
  padding: 10px 10px 10px 20px;
}
.qa-answer ul li {
  font-size: 0.9rem;
  list-style: disc;
}

.qa-item.is-open .qa-answer {
  max-height: 1200px;
  padding: 0 20px 20px 20px;
  margin-bottom: 10px;
}

/* =========================
   詳細ボタン
   ========================= */
.feature-toggle {
  position: relative;
  z-index: 3;
  display: block;
  width: 100%;
  padding: 10px 0;
  border: none;
  background: #00bfd3;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.feature-toggle:hover {
  opacity: 0.85;
}

/* =========================
   アコーディオン（ボタンの下）
   ========================= */
.feature-accordion {
  position: relative;
  z-index: 3;
  padding: 10px;
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

/* =========================
   開いた状態
   ========================= */
.feature-box.is-open .feature-accordion {
  max-height: 260px;
  opacity: 1;
}

.list-square {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.list-square li {
  position: relative;
  padding-left: 1.2rem;
  line-height: 1;
  font-size: 4vw;
  line-height: 1.6rem;
  margin-bottom: 1rem;
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  .list-square li {
    font-size: 1.1rem;
  }
}
.list-square li::before {
  content: "■";
  position: absolute;
  left: 0;
  top: 0;
  color: #00bfd3;
  font-size: 1.1rem;
}

/* =========================
   オプション部
   ========================= */
.option_wrap {
  background: #fff;
  border-radius: 12px;
  padding: 24px 12px 0;
}

/* ボタン */
.option_toggle {
  width: 100%;
  margin-top: 0;
  padding: 0;
  border: none;
  color: #003255;
  font-weight: 500;
  border-radius: 4px;
  font-size: 1rem;
  letter-spacing: 0.2rem;
  cursor: pointer;
  line-height: 1.4rem;
}
.option_toggle:hover {
  opacity: 0.85;
}
.option_toggle span {
  font-size: 130%;
  margin-left: 20px;
}

/* アコーディオン */
.option_accordion {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  padding: 10px;
  text-align: center;
}
.option_accordion h2 {
  font-size: 5vw;
  font-weight: bold;
  background-color: #e8f2fb;
  padding: 4px 0;
}
@media only screen and (min-width: 768px) {
  .option_accordion h2 {
    font-size: 1.2rem;
  }
}
.option_accordion h3 {
  text-align: left;
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 0;
  margin-top: 10px;
}
.option_accordion h3 small {
  font-size: 70%;
}
.option_accordion p {
  text-align: left;
  margin-bottom: 0;
}

/* 開いた状態 */
.option_wrap.is-open .option_accordion {
  max-height: 500px;
  opacity: 1;
  margin-top: 12px;
}

/* =========================
   料金アコーディオン
   ========================= */
/* =========================
   ボタン
   ========================= */
.price-trigger {
  position: relative;
  width: 100%;
  margin-bottom: 40px;
  max-width: 900px;
  padding: 12px 40px;
  background: #003255;
  border-radius: 10px;
  font-size: 1.4rem;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  color: #fff;
  letter-spacing: 0.2rem;
  /* 矢印 */
}
.price-trigger .price-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  width: 24px;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
.price-trigger.is-open .price-arrow {
  transform: translateY(-50%) rotate(180deg);
}

/* =========================
   アコーディオン本体
   ========================= */
.price-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.price-content.is-open {
  max-height: 2000px;
}

.p-kv {
  position: relative;
  overflow: hidden;
  height: 60vh;
  background-color: #000;
  z-index: 2;
  min-height: 580px;
}
@media only screen and (min-width: 768px) {
  .p-kv {
    height: 50vh;
    min-height: 680px;
  }
}
@media only screen and (min-width: 992px) {
  .p-kv {
    height: 70vh;
    min-height: 780px;
  }
}
.p-kv {
  /* ===== KV 内中央寄せ ===== */
}
.p-kv__inner {
  height: 100%;
  padding: 0 16px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 120px;
  text-align: center;
  color: #fff;
}
.p-kv__title {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.3;
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .p-kv__title {
    font-size: 40px;
  }
}
.p-kv__text {
  margin-top: 16px;
  font-size: 14px;
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .p-kv__text {
    font-size: 16px;
  }
}

.p-kv_back_c {
  position: absolute;
  top: 140px;
  left: 0;
  right: 0;
  z-index: 1;
  text-align: center;
}

/* 動画エリア */
.p-kv__movie {
  position: absolute;
  left: 0;
  top: 80px;
  width: 100%;
  height: 68vh;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .p-kv__movie {
    height: 85vh;
  }
}
.p-kv__movie video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 左 ▷ */
.triangle-left {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 200px;
  background: #00bfd3;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  z-index: 2;
}

/* 右 ◁ */
.triangle-right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 200px;
  background: #00bfd3;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  z-index: 2;
}

.p-section {
  padding: 40px 10px;
  color: #003255;
}
@media only screen and (min-width: 768px) {
  .p-section {
    padding: 60px;
  }
}
.p-section__inner {
  max-width: 94%;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .p-section__inner {
    max-width: 1100px;
  }
}
.p-section--01 {
  background: #fff;
  padding: 0 0 60px 0;
}
.p-section--02 {
  background-image: linear-gradient(90deg, #01b8d1, #0869bc);
}
.p-section--03 {
  background: #fff;
  padding-top: 20px;
}
.p-section--04 {
  background: #edf0f2;
}
.p-section .sec_tit {
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
}
.p-section .sec_tit img {
  height: 26px;
}
.p-section .sec_tit_sub {
  text-align: center;
  font-size: 0.9rem;
  font-weight: bold;
  margin: 10px 0 20px;
}
.p-section .sec_sub {
  text-align: center;
  font-size: 0.9rem;
}

/* ===== イントロ ===== */
.circle-content {
  position: relative;
  z-index: 2;
  background-color: #000;
  top: -100px;
}
.circle-content p {
  font-size: 0.8rem;
  color: #fff;
  text-align: left;
}

.top-circle {
  position: relative;
  background-image: linear-gradient(0deg, #0869bc, #00bfd3);
  margin: 0;
  padding: 220px 20px 20px;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .top-circle {
    padding: 320px 20px 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .top-circle {
    padding: 260px 280px 20px;
  }
}
.top-circle .p-section__inner {
  position: relative;
  z-index: 2;
}

.intro_block {
  margin-bottom: 40px;
}

.circle_01 {
  position: absolute;
  top: -80px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
}

.intro_back_l,
.intro_back_r {
  position: absolute;
  z-index: 1;
  display: none;
}
.intro_back_l img,
.intro_back_r img {
  opacity: 0.2;
}
@media only screen and (min-width: 768px) {
  .intro_back_l,
  .intro_back_r {
    display: block;
  }
}

.intro_back_l {
  top: 80px;
  left: 0;
}

.intro_back_r {
  top: 80px;
  right: 0;
}

.intro_02 img {
  margin: 0 auto;
}

/* ========== sec01 ========== */
#sec01 h2 img {
  max-width: 98%;
}
@media only screen and (min-width: 1200px) {
  #sec01 h2 img {
    max-width: 1500px;
  }
}

.p-sec01 {
  padding: 20px 0 60px;
  margin: 0 auto;
  max-width: 1500px;
  width: 100%;
}

.feature-box {
  display: flex;
  flex-direction: column;
  padding: 0.5px;
}

.feature-main {
  position: relative;
  aspect-ratio: 1/0.9;
  overflow: hidden;
}

/* 背景画像 */
.feature-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 下揃えテキスト */
.feature-text {
  position: absolute;
  inset: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* ボタン＋アコーディオン分の余白 */
  padding-bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
  color: #fff;
  z-index: 2;
}
.feature-text h3 {
  text-align: center;
  font-size: 7vw;
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  .feature-text h3 {
    font-size: 2.4rem;
  }
}

/* 三角ラベル */
.feature-label {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 64px;
  height: 64px;
  background: #00bfd3;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  padding: 8px;
  color: #fff;
  font-weight: bold;
  font-size: 1.4rem;
}

.otoku_wrap {
  color: #003255;
}
.otoku_wrap h1 {
  font-size: 8vw;
  line-height: 4rem;
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  .otoku_wrap h1 {
    font-size: 2.4rem;
  }
}
.otoku_wrap h1 .pricedown {
  font-size: 180%;
  background: linear-gradient(transparent 90%, #00bfd3 90%);
}
.otoku_wrap h2 {
  font-size: 1.8rem;
  line-height: 1rem;
  font-weight: bold;
}
.otoku_wrap h2 .pricedown2 {
  font-size: 120%;
  background: linear-gradient(transparent 90%, #00bfd3 90%);
}
.otoku_wrap h3 {
  font-weight: bold;
  font-size: 3.6rem;
  line-height: 4rem;
}
.otoku_wrap h4 {
  margin-bottom: 2rem;
  font-weight: bold;
  font-size: 1.2rem;
}
.otoku_wrap .otoku_box {
  max-width: 900px;
  width: 90%;
  border: 2px solid #000;
  margin: 0 auto;
  padding: 10px 10px 0;
  text-align: left;
  font-weight: bold;
  font-size: 4vw;
  line-height: 2rem;
}
@media only screen and (min-width: 768px) {
  .otoku_wrap .otoku_box {
    font-size: 1.2rem;
  }
}
.otoku_wrap .otoku_box h5 {
  margin-top: 1rem;
  line-height: 1.4rem;
  font-weight: bold;
  font-size: 1.6rem;
  text-align: center;
}
.otoku_wrap .otoku_box h5 small {
  font-size: 46%;
}
@media only screen and (min-width: 768px) {
  .otoku_wrap .otoku_box h5 {
    text-align: left;
  }
}

.qa-wrap {
  color: #003255;
}
.qa-wrap h2 {
  text-align: center;
  font-size: 4.5vw;
  font-weight: bold;
  padding: 10px 0;
  margin: 80px 0 20px;
  border-top: 2px solid #003255;
  border-bottom: 2px solid #003255;
}
@media only screen and (min-width: 768px) {
  .qa-wrap h2 {
    font-size: 1.8rem;
  }
}

/* ========== sec02 ========== */
#sec02 h4 {
  color: #fff;
}

/* ========== sec03 ========== */
.color-sub {
  color: #00bfd3;
}

.sec03_wrap {
  max-width: 900px;
  margin: 0 auto;
}
.sec03_wrap h2 {
  margin-top: 80px;
}
.sec03_wrap h3 {
  font-size: 4.5vw;
  text-align: center;
  font-weight: bold;
  margin: 20px 0 30px;
}
@media only screen and (min-width: 768px) {
  .sec03_wrap h3 {
    font-size: 1.2rem;
  }
}
.sec03_wrap p {
  margin-top: 40px;
}
.sec03_wrap .sec03_area_right,
.sec03_wrap .sec03_area_left {
  text-align: center;
  padding: 10px;
  font-weight: bold;
}
.sec03_wrap .sec03_area_right {
  background-color: #003255;
  color: #fff;
  border: 2px solid #003255;
  font-size: 120%;
}
.sec03_wrap .sec03_area_left {
  color: #003255;
  border: 2px solid #003255;
}

.sec03_bm {
  background-color: #f2f2f2;
  text-align: center;
  border-radius: 10px;
  padding: 10px 20px 20px;
  min-height: 224px;
}
.sec03_bm h2 {
  font-weight: bold;
  font-size: 1rem;
  margin: 0 0 10px 0;
}
.sec03_bm h3 img {
  max-height: 110px;
  padding: 10px 0;
}
@media only screen and (min-width: 768px) {
  .sec03_bm h3 img {
    padding: 20px 0;
  }
}
.sec03_bm p {
  margin: 0;
  text-align: left;
  line-height: 1.4rem;
  font-size: 0.9rem;
}

/* ========== sec04 ========== */
.kiyaku_list {
  max-width: 640px;
  margin: 40px auto;
}
.kiyaku_list li {
  font-size: 0.8rem;
  list-style: disc;
  color: #003255;
  margin-bottom: 0.5rem;
}
.kiyaku_list li a {
  color: #003255;
  transition: 0.3s;
}
.kiyaku_list li a:hover {
  color: #00bfd3;
}/*# sourceMappingURL=style.css.map */