/* ハンバーガーメニュー用スタイル */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  position: absolute;
  top: 1rem;
  right: 1rem;
  height: 2rem;
  width: 2rem;
  cursor: pointer;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  background: #333;
  height: 3px;
  width: 100%;
  border-radius: 2px;
  position: absolute;
  content: '';
}

.nav-toggle-label span {
  top: 50%;
  transform: translateY(-50%);
}

.nav-toggle-label span::before {
  top: -8px;
}

.nav-toggle-label span::after {
  top: 8px;
}

.nav {
  display: flex;
  gap: 1rem;
}

/* @media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 60px;
    right: 0;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    display: none;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  .nav a {
    margin: 0.5rem 0;
  }
  .nav-toggle-label {
    display: block;
  }
  .nav-toggle:checked + .nav-toggle-label + .nav {
    display: flex;
  }
} */

/* グラフのレスポンシブ対応 */
.sim-graph {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  display: block;
}


/* カード表示用スタイル */
.sim-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 1rem;
  margin: 1rem 0;
  transition: all 0.3s ease;
}

.sim-card h2 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.sim-summary p {
  margin: 0.3rem 0;
  font-size: 0.95rem;
}

.sim-summary button {
  margin-top: 0.5rem;
  padding: 0.4rem 0.8rem;
  background-color: #005bac;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
}

.sim-summary button:hover {
  background-color: #004080;
}

@media (max-width: 768px) {
  .sim-card {
    margin: 0.5rem;
    padding: 0.8rem;
  }
  .sim-summary p {
    font-size: 0.9rem;
  }
  .sim-summary button {
    width: 100%;
  }
}

.slide-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 90%;
  max-width: 500px;
  height: 100%;
  background-color: white;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.slide-panel.active {
  right: 0;
}

.slide-panel-header {
  padding: 1rem;
  background-color: #005bac;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.slide-panel-close {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
}

/* Global styles */
body {
  font-family: 'Noto Sans JP', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
}

/* レスポンシブ対応 */
@media screen and (max-width: 1200px) {
  body {
      font-family: 'Noto Sans JP', sans-serif;
      margin: 0;
      padding: 0;
      /*padding-top: 192px;*/
      color: #000;
  }
}

a {
  text-decoration: none;
  color: inherit;
}

.blue-link {
  text-decoration: underline;
  color: #0C305C;
}

.black-link {
  text-decoration: underline;
}

.orange {
  color: #FE6011;
}

.ttl {
  border-bottom: solid 1px #D6D6D6;
  font-size: 22px;
  font-weight: bold;
  padding-bottom: 6px;
  text-align: left;
  width: 80%;
  margin: auto;
  padding-top: 30px;
}

.num-list {
  width: 80%;
  margin: auto;
  text-align: left;
}

/* Header styles
.header {
  display: flex;
  position: fixed;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px 0px 20px;
  background: #fff;
  color: #333;
}

.header .logo img {
  height: 40px;
}

.nav a {
  margin: 10px;
  padding: 5px;
  color: #333;
  font-weight: bold;
  text-align: center;
}
*/
/* 固定メニュー */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  height: 60px;
  box-sizing: border-box; /* 幅の計算を正しく行う */
  overflow: hidden; /* 不要なはみ出しを防ぐ */
}

/* ロゴのスタイル */
.logo {
  flex-shrink: 0; /* ロゴが縮まないようにする */
}

.logo img {
  /* height: 40px; */
  width: 60%;
  max-width: 500px;
}

/* ナビゲーションメニュー */
.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap; /* はみ出し防止 */
  max-width: 100%; /* ナビゲーションがはみ出ないようにする */
}

/* ナビゲーションリンク */
.nav a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap; /* テキストが折り返されないように */
}

.nav img {
  height: 36px;
}

.nav .manyual-pdf {
  height: 20px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 1200px) {
  .header {
      flex-direction: column;
      height: auto;
      padding: 10px;
  }

  .nav {
      flex-direction: column;
      gap: 10px;
      margin-top: 10px;
      align-items: center; /* メニューを中央配置 */
  }

  .nav a {
      font-size: 14px;
  }
}
/* Contact section */
.contact-section {
  text-align: center;
  padding: 20px 20px;
  background-color: #E6F5FA;
}

.contact-section h1 {
  font-size: 24px;
  color: #fff;
  background: linear-gradient(to right, #3296FA, #28468C);
  padding: 10px;
  border-radius: 5px;
}

.contact-section p {
  padding: 5px;
  border-radius: 5px;
}

.contact-section-2 {
  text-align: center;
  padding: 20px 20px;
  background-color: #E6F5FA;
}

.contact-section-2 h1 {
  font-size: 24px;
  color: #fff;
  background: linear-gradient(to right, #3296FA, #28468C);
  padding: 10px;
  border-radius: 5px;
}

.contact-section-2 p {
  padding: 5px;
  border-radius: 5px;
}

.hotline-list {
  width: 82%;
  font-size: 14px;
  text-align: left;
}

.list-margin {
  margin-bottom: 12px;
}

/* Graph Contact section */
.contact-section-graph {
  text-align: center;
  padding: 20px 20px;
  /*background: linear-gradient(#FFF, #E4F2FD); */
}

.sub-contact-section {
  text-align: center;
  background-color: #fff;
}

.sub-contact-section h1 {
  font-size: 24px;
  color: #fff;
  background: linear-gradient(to right, #3296FA, #28468C);
  padding: 10px;
  margin-top: 10px;
}

.sub-contact-section p {
  margin-top: 10px;
  font-size: 16px;
  padding: 15px;
  border-radius: 5px;
}
.sub-contact-section p img {
  max-width: 500px;
  width: 100%;
  height: auto;
  display: block; /* 中央寄せや崩れ防止のため */
  margin: 0 auto 20px auto;
}

.sub-contact-section-text {
  width: 60%;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

.sub-contact-section-text-center {
  width: 60%;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.sub-contact-section-2 {
  text-align: center;
  background-color: #fff;
}

.sub-contact-section-2 h1 {
  font-size: 24px;
  color: #fff;
  background: linear-gradient(to right, #3296FA, #28468C);
  padding: 10px;
  margin-top: 10px;
}

.sub-contact-section-2 h2 {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.sub-contact-section-2 p {
  margin-top: 10px;
  font-size: 16px;
  padding: 15px;
  border-radius: 5px;
}

.sub-contact-section-2 hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 20px auto; 
  width: 62%;
}

.sub-contact-section-2-center {
  margin: 0 auto;
  font-size: 14px !important;
  width: 60%;
}


.notice {
  font-size: 12px;
}

.notice-orange {
  font-size: 12px;
  color: #FE6011;
}

.hotline {
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 80%;
  margin-right: auto;
  margin-left: auto;
}

.hotline h2 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
  font-weight: 900;
}

.hotline-info {
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 5px;
  background: #fff;
  width: 60%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 30px;
}

.hotline-info .phone-number {
  font-weight: bold;
  font-size: 24px;
}

.hotline-info .phone-number-line {
  font-size: 24px;
  margin-bottom: 0px;
  margin-top: 5px;
}

.hotline-div {
  padding: 10px;
}

.reception-time {
  margin-top: 0px;
}

.insection {
  padding-bottom: 30px;
}

/* CTA section */
.cta-section {
  text-align: center;
  padding: 36px;
  background: #3296FA;
  color: #fff;
}
.cta-section-h2 {
  margin-top: 0px;
}

.cta-button {
  display: inline-block;
  padding: 10px 20px;
  background: #FF6414;
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  position: relative;
}

.cta-button::after {
  content: '▶';
  margin-left: 10px;
}

.cta-button-no-arrow {
  display: inline-block;
  padding: 10px 60px;
  background: #FF6414;
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  position: relative;
}

/* Footer styles */
.footer {
  padding: 20px;
  background: #fff;
  margin: 0 auto;
  width: 1076px;
}

.footer .footer-info {
  font-size: 12px;
  margin-top: 0px;
  text-align: left;
  color:#ccc;
}

.footer-nav {
  text-align: left;
  margin-bottom: 10px;
}

.social-links {
  text-align: right;
}

.social-links img {
  height: 24px;
  margin: 0 5px;
}

.l-footerList {
  list-style: none;
  display: flex;
  justify-content: space-between;
  width: 400px;
  padding-left: 0px;
  margin-bottom: 0px;
}

.l-footerList__item {
  font-size: 14px;
  line-height: 3;
  position: relative;
}

.l-footerList__item::after {
  content: "";
  border-right: 1px solid #ADADAD;
  padding-right: 16px;
}

.l-footerList__item:last-of-type::after {
  content: none;
}

.l-footerLogo {
  margin-top: 24px;
  margin-bottom: 12px;
  width: 100px;
}

.l-footerLogo img {
  width: 100%;
}



/* TOP画面 */
.top-container {
  display: flex; /* Flexboxを適用 */
  width: 100%;
  margin-top: 10px;
}
.section-blue,
.section-light-blue {
  width: 50%; /* 幅を50%に設定 */
  display: flex;
  flex-direction: column; /* 縦方向のレイアウト */
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Blue Section Styles */
.section-blue {
  background-color: #28468C;
  color: white;
}

.section-blue-text {
  text-shadow: 1px 2px 2px black;
}
.section-blue .section-blue-content {
  max-width: 80%;
}

.section-blue h1 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  margin-top: 0px;
}

.section-blue h3 {
  margin-bottom: 0px;
  font-size: 1.8rem;
}
.section-blue ul {
  list-style: none;
  padding: 0;
  font-size: 1.4rem;
}

.section-blue ul li {
  margin-bottom: 10px;
}

.section-blue ul li span {
  font-weight: bold;
  color: #FFD63E;
  border-bottom: inset;
}

/* Orange Button */
.btn-orange {
  background-color: #FF6414;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 1rem;
}

.btn-orange::after {
  content: '▶';
  margin-left: 10px;
}

.btn-orange:hover {
  background-color: #e64a19;
}

/* Section 2: Light Blue Background */
.section-light-blue {
  background-color: #27468c;
  color: white;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 100%;
}

.step {
  background-color: white;
  color: #333;
  padding: 1rem;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .top-container {
      flex-direction: column; /* 横並びから縦並びに変更 */
      height: auto; /* 高さを自動調整 */
  }

  .section-blue,
  .section-light-blue {
      width: 100%; /* 幅を100%に変更 */
      padding: 1.5rem;
  }

  .section-blue h1 {
      font-size: 2.2rem;
  }

  .section-blue h3 {
      font-size: 1.5rem;
  }
}

/* Button Container */
.button-container {
  text-align: center;
}

/* Custom Button */
.custom-button {
  display: inline-block;
  background-color: #FF6414; /* オレンジ色 */
  color: white;
  text-decoration: none;
  padding: 0.8rem 3.5rem;
  font-size: 0.9rem;
  font-weight: bold;
  border-radius: 5px;
  position: relative;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

.custom-button:hover {
  background-color: #e64a19; /* ホバー時に少し濃い色 */
}

.custom-button .sub-text {
  display: block;
  font-size: 0.8rem;
  font-weight: normal;
}

.custom-button .arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
  font-size: 1.2rem;
}

.top-title {
  color: #28468C;
  font-size: 30px;
  font-weight: 900;
  margin-top: 30px;
  margin-bottom: 0px;
  text-align: center;
}

.top-section-container {
  display: flex; /* Flexboxを適用 */
  width: 100%;
  margin-top: 10px;
}
.section-text {
  width: 60%; /* 幅を50%に設定 */
  display: flex;
  flex-direction: column; /* 縦方向のレイアウト */
  justify-content: center;
  align-items: center;
  text-align: center;
}

.section-img {
  width: 40%; /* 幅を50%に設定 */
  display: flex;
  flex-direction: column; /* 縦方向のレイアウト */
  justify-content: center;
  align-items: center;
  text-align: center;
}

.section-img-content {
  width: 80%;
}

@media (max-width: 768px) {
  .top-section-container {
      flex-direction: column; /* 横並びから縦並びに変更 */
      height: auto; /* 高さを自動調整 */
  }

  .section-text,
  .section-img {
      width: 90%; /* 幅を100%に変更 */
      padding: 1.5rem;
  }

  .section-text h1 {
      font-size: 1.5rem;
  }
}

.step-container {
  display: flex;
  align-items: flex-start;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  max-width: 600px;
  gap: 1rem;
}

.step-number {
  background-color: #3296FA;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 2px 10px;
  text-align: center;
}

.step-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title {
  color: #4DA5F2;
  font-size: 20px;
  font-weight: bold;
  margin: 0px;
  text-align: left;
}

.step-description {
  color: #333333;
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 0px !important; 
  text-align: left;
}

.graph-titie {
  display: flex;
  justify-content: center;
}

.graph-titie-section1 {
  background-color: #666666;
  color: #fff;
  text-align: left;
  padding: 5px 5px 5px 15px;
  font-size: 18px;
  margin-bottom: 0px;
}

.graph-titie-section2 {
  background-color: #029BCC;
  color: #fff;
  text-align: left;
  padding: 5px 5px 5px 15px;
  font-size: 18px;
  margin-bottom: 0px;
}

.graph-titie-section3 {
  background-color: #FAD237;
  color: #333;
  text-align: left;
  padding: 5px 5px 5px 15px;
  font-size: 18px;
  margin-bottom: 0px;
}

.graph-titie-section4 {
  background-color: #FA8C0F;
  color: #fff;
  text-align: left;
  padding: 5px 5px 5px 15px;
  font-size: 18px;
  margin-bottom: 0px;
}

.graph-section {
  margin-bottom: 20px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 86%;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 20px;
}

.graph-section-inner {
  padding: 0px 60px;
}

/* Instructions */
.instructions h3 {
  margin-bottom: 0px;
  text-align: left;
  font-size: 18px;
}

.instructions ol {
  background-color: #F6F6F6;
  text-align: left;
  margin-top: 5px;
  padding-left: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 14px;
}

.instructions ol li {
  margin-bottom: 0.3rem;
}

/* Checkpoint */
.checkpoint {
  background-color: #FFFCF2;
  border: 1px solid #FE6011;
  margin: 5px 0 40px 0;
  border-radius: 10px;
  font-size: 14px;
  padding-left: 10px;
  padding-right: 10px;
  text-align: left;
}

.checkpoint-titile {
  color: #FF5733;
  margin-bottom: 0px;
  text-align: left;
  font-size: 18px;
}

.checkpoint .highlight {
  color: #FF5733;
  font-weight: bold;
}

/* Container */
.table-container {
  width: 100%;
  overflow-x: auto;
}

/* Table */
.cost-table {
  width: 100%;
  margin: 0px auto;
  background-color: #fff;
  border-collapse: separate;
  border-spacing: 5px 0;
}

.cost-table th, 
.cost-table td {
  border-collapse: separate;
  border-spacing: 8px 0;
  text-align: right;
  padding: 0.5rem;
  font-size: 14px;
  vertical-align: top;
}

/* Header Colors */
.main-header {
  background-color: #9B9B9B;
  color: white;
  border-radius: 10px 10px 0px 0px;
  text-align: center !important; 
  padding: 0.75em !important;
}

.main-header4 {
  background-color: #FE6011;
  color: white;
  border-radius: 10px 10px 0px 0px;
  text-align: center !important; 
  padding: 0.75em !important;
}

.sub-header {
  background-color: #595757;
  color: white;
  border-radius: 10px 10px 0px 0px;
  text-align: center !important; 
  padding: 0.75em !important;
}

.sub-header2 {
  background-color: #029BCC;
  color: white;
  border-radius: 10px 10px 0px 0px;
  text-align: center !important; 
  padding: 0.75em !important;
}

.other-header {
  background-color: #fff;
  color: black;
  border-radius: 10px 10px 0px 0px;
  border: 1px solid #000000;
  text-align: center !important; 
  padding: 0.75em !important;
}

.left-header {
  border-radius: 10px 10px 0px 0px;
  text-align: center !important; 
  padding: 0.75em !important;
}

.other-header-step4 {
  background-color: #fff;
  text-align: center !important; 
  padding: 0.75em !important;
  font-weight: 400 !important;
}

.left-header-step4 {
  border-radius: 10px 10px 0px 0px; 
  padding: 0.75em !important;
  font-size: 12px !important;
  font-weight: 400 !important;
}

.total-row {
  background-color: #fff;
  font-weight: bold;
}


.table-ttl{
  border-bottom: solid 1px #D6D6D6;
  font-weight: bold;
  padding-bottom: 6px;
  text-align: left;
  color:#595757;
  margin: auto;
  padding-top: 30px;
}

.table-notice-mini {
  font-size: 10px;
}

.tabel-border-solid {
  border-top: solid 1px #D6D6D6;
}

.tabel-border-dotted {
  border-top: dotted 1px #D6D6D6;
}

.table-caption {
  width: 19%;
}

.table-content {
  width: 27%;
}

.table-caption-step3 {
  width: 18%;
}

.table-content-step3 {
  width: 27%;
}

.table-content-sub-step3 {
  width: 14%;
}

.gray1-row {
  background-color: #F6F6F6;
}

.gray1-row_year {
  background-color: #F6F6F6;
  font-size: 20px;
   font-weight: bold;
   text-align: center;
}

.gray2-row {
  background-color: #F0F0F0;
}

.gray3-row {
  background-color: #9B9B9B;
  color: white;
}

.gray4-row {
  background-color: #595757;
  color: white;
}

.blue1-row {
  background-color: #E6F5FA;
}

.blue2-row {
  background-color: #CCEBF5;
}

.blue4-row {
  background-color: #029BCC;
  color: white;
}

.yellow1-row {
  background-color: #FFFCF2;
}
.yellow1-row_left {
  background-color: #FFFCF2;
  text-align: left !important;
}

.yellow4-row {
  background-color: #FE6011;
  color: white;
}

.sub-row {
  font-size: 10px !important;
}

.num-row {
  text-align: left !important;
  padding-left: 0px !important;
  margin-top: 0px;
}

/* Input Styles */
input[type="number"], input[type="text"] {
  width: 60%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  text-align: right;
  margin-right: 5px;
}

/* 前田追加 */
.text-row td {/* テキストの行 */
  background-color: #fff;
  font-weight: bold;
  text-align: left;
}

/* 年度のテキストボックス */
input.year{
width:60px;
text-align:right;
}

/* 文字入力のテキストボックス */
input.text-input{
text-align:left;
}

/* 前田追加ここまで */

div.isred {
  font-weight: bold;
  color: red;
  font-size:22px;
}
div.isblack {
  font-weight: bold;
  font-size:22px;
}

/* Required Mark */
.required {
  color: red;
  font-weight: bold;
  margin-right: 0.3rem;
  font-size: 12px;
}

.required-any {
  font-weight: bold;
  margin-right: 0.3rem;
  font-size: 14px;
}

/* Rates and Sub-values */
.rate {
  font-size: 0.9rem;
  color: #555;
}

.sub-value {
  font-weight: bold;
  color: #333;
}

/* Total Row */
.total-cell {
  font-weight: bold;
  padding: 0.75em !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cost-table th, .cost-table td {
      font-size: 1.8vw;
      padding: 0.5rem;
  }
  input[type="number"], input[type="text"] {
      font-size: 0.8rem;
  }
}

.accordion-detail {
  padding-top: 2px !important;
  padding-bottom: 2px !important;
}

.accordion-button-gray {
  display: inline-block;
  padding: 4px 10px;
  background: #999999;
  color: #fff;
  border-radius: 2px;
  font-size: 0.85rem;
  position: relative;
  margin-top: 5px;
  margin-bottom: 5px;
}

.accordion-button-orange_L {
  display: inline-block;
  padding: 4px 15px;
  background: #fff;
  color: #FA8C0F;
  border: solid 1px #FA8C0F;
  border-radius: 10px;
  font-size: 16px;
  position: relative;
  margin-top: 25px;
  margin-bottom: 5px;
}

.accordion-button-orange {
  display: inline-block;
  padding: 4px 10px;
  background: #FA8C0F;
  color: #fff;
  border-radius: 2px;
  font-size: 10px;
  position: relative;
  margin-top: 5px;
  margin-bottom: 5px;
}

.graph-button-gray {
  display: inline-block;
  padding: 4px 10px;
  background: #999999;
  color: #fff;
  border-radius: 2px;
  font-size: 16px;
  position: relative;
  margin-top: 15px;
  margin-bottom: 15px;
}

/* ？をマウスオーバーすると表示されるCSS　ここから */
.tooltip { /* 補足説明するテキストのスタイル */
  position: relative;
  cursor: pointer;
  padding: 0 3px;
  font-size: 0.9em;
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 60%;
  background: #9B9B9B;
  margin-left: 5px;
}
 
.description_right { /* ツールチップのスタイル */
  width: 250px; /* 横幅 */
  position: absolute;
  top: 100%;
  left: 80%; /* X軸の位置 */
  transform: translateY(-50%);
  padding: 8px;
  border-radius: 10px; /* 角の丸み */
  background-color: #666;
  /*20241215 澁谷変更 START
  font-size: 0.7em; */
  font-size:1em;
  /*20241215 澁谷変更 END */
  color: #fff;
  text-align: left;
  visibility: hidden; /* ツールチップを非表示に */
  opacity: 0; /* 不透明度を0％に */
  z-index: 1;
  transition: 0.5s all; /* マウスオーバー時のアニメーション速度 */
}

.description_left { /* ツールチップのスタイル */
  width: 250px; /* 横幅 */
  position: absolute;
  top: 80%;
  right: 80%; /* X軸の位置 */
  transform: translateY(-50%);
  padding: 8px;
  border-radius: 10px; /* 角の丸み */
  background-color: #666;
  /*20241215 澁谷変更 START
  font-size: 0.7em; */
  font-size:1em;
  /*20241215 澁谷変更 END */
  color: #fff;
  text-align: left;
  visibility: hidden; /* ツールチップを非表示に */
  opacity: 0; /* 不透明度を0％に */
  z-index: 1;
  transition: 0.5s all; /* マウスオーバー時のアニメーション速度 */
}


 
.tooltip:hover .description_right { /* マウスオーバー時のスタイル */
  left: 100%; /* X軸の位置 */
  visibility: visible; /* ツールチップを表示 */
  opacity: 1; /* 不透明度を100％に */
}

.tooltip:hover .description_left { /* マウスオーバー時のスタイル */
  right: 100%; /* X軸の位置 */
  visibility: visible; /* ツールチップを表示 */
  opacity: 1; /* 不透明度を100％に */
}

/* ？をマウスオーバーすると表示されるCSS　ここまで */

.button-under-graph {
  display: flex;
  justify-content: center;
}

button {
  border: 1px solid;
  border-radius: 8px;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  background-color: transparent;
  transition: background-color 0.3s, color 0.3s;
}
/* 保存するボタン */
.save-button {
  background-color: #FFF;
  border-color: #FF6600; /* オレンジ枠 */
  color: #FF6600; /* オレンジ文字 */
  font-weight: 700;
  width: 200px;
  margin: 0px 10px;
}

.save-button:hover {
  background-color: #FF6600;
  color: white;
}

/* クリアボタン */
.clear-button {
  background-color: #FFF;
  border-color: #595757; /* 黒枠 */
  color: #595757; /* 黒文字 */
  font-weight: 700;
  width: 200px;
  margin: 0px 10px;
}

.clear-button:hover {
  background-color: #595757;
  color: white;
}

.top-space {
  margin-top: 60px;
}

.accordion-button-icon {
  width: 13px;
  margin-left: 4px;
  vertical-align: middle;
  margin-right: -4px;
}

.sum-title {
  font-size: 14px;
  margin-top: 40px;
  margin-bottom: 10px;
  border-bottom: solid 1px #D6D6D6;
  text-align: left;
}

.sum-explanation-solid {
  font-size: 10px;
  margin-top: 0px;
  margin-bottom: 10px;
  border-bottom: solid 1px #D6D6D6;
  text-align: left;
  padding-bottom: 15px;
}

.sum-explanation-dotted {
  font-size: 10px;
  margin-top: 0px;
  margin-bottom: 10px;
  border-bottom: dotted 1px #D6D6D6;
  text-align: left;
  padding-bottom: 15px;
}

.sub-section-text {
  width: 80%;
  margin-top: 20px;
  margin-bottom: 30px;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

.sum-table {
  width: 100%;
  margin: 0px auto;
  background-color: #fff;
  border-collapse: separate;
  border-spacing: 0px 0;
}

.sum-input {
  margin-bottom: 5px;
  padding: 0.2rem !important;
  border: 1px solid #fff !important;
}

.print-button {
  background-color: #FFF;
  border-color: #595757;
  color: #595757;
  font-weight: 700;
  font-size: 16px;
  width: 200px;
  margin: 0px 10px;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
  border-bottom-left-radius: 7px;
  border-width: thin;
}

.print-button:hover {
  background-color: #595757;
  color: white;
}

.step4-text {
  background-color: #fff;
  width: 60%;
  margin: auto;
  text-align: right;
  padding-right: 5px;
  font-size: 12px;
  margin-bottom: 5px;
}

.chartarea {
  margin:auto;
  padding-top: 20px;
}

.chartarea-style {
  padding: 0px 20px;
}

.blacnk-link {
  color: #000;
  text-decoration:underline;
  font-weight: 600;
}

#pdf-container {
  background-color: white;
  width: 240mm;
  margin: 0 auto;
}

/* 通常時のスタイル */
.pdf-page {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
}

.pdf-output .pdf-page {
  width: 210mm;
  min-height: 297mm;
  transform: scale(0.7);
  transform-origin: top left;
  padding: 10mm;
  margin-bottom: 0;
  /*page-break-inside: avoid;*/
  page-break-after: always;
}

.pdf-output .no-break {
  page-break-inside: avoid;
  min-height: auto;
}

.pdf-output .pdf-page, .pdf-output .no-break {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

@media print {
  html, body {
    margin: 0;
    padding: 0;
    background: white;
  }

  .pdf-page {
      width: 210mm;  /* A4サイズを指定 */
      min-height: 297mm;
      padding: 0mm;
      page-break-after: always; /* 改ページの必須指定（これが重要） */
      box-sizing: border-box;
    }
  
    /* 最後のページの余計な空白を除去するための調整 */
    .pdf-page:last-child {
      page-break-after: auto;
    }

    .pdf-output .pdf-page, .pdf-output .no-break {
      padding-top: 0 !important;
      padding-bottom: 0 !important;
      margin-top: 0 !important;
      margin-bottom: 0 !important;
  }
}
/* ========== スマホ中央フロート・パネル＆入力調整 ========== */
@media (max-width: 768px) {
  /* パネルを中央モーダルに変更 */
  .slide-panel {
    position: fixed;
    left: 50% !important;
    top: 50% !important;
    right: auto !important;
    bottom: auto;
    transform: translate(-50%, -50%);
    width: 96vw !important;
    max-width: 480px;
    height: 92vh !important;
    max-height: 680px;
    border-radius: 16px;
    z-index: 1200;
    background: #fff;
    box-shadow: 0 8px 32px rgba(0,0,0,0.24);
    overflow-y: auto;
    display: block !important;
    padding: 0;
    margin: 0;
  }
  .slide-panel-header {
    border-radius: 16px 16px 0 0;
    padding: 0.9rem 1.2rem 0.7rem 1.2rem;
    font-size: 1.1rem;
    background: #005bac;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .slide-panel-close {
    font-size: 2rem;
    padding: 0 0.6rem;
    background: transparent;
    border: none;
    color: #fff;
  }
  /* オーバーレイ */
  .slide-panel-overlay {
    display: block;
    position: fixed;
    z-index: 1199;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.35);
    width: 100vw; height: 100vh;
  }
  /* bodyのスクロールロック */
  body.modal-open {
    overflow: hidden;
    height: 100vh;
    position: fixed;
    width: 100vw;
  }
  /* 入力フォームの調整 */
  .input-table td, .input-table th {
    font-size: 1rem;
    padding: 0.65rem 0.3rem;
    word-break: break-word;
  }
  .input-table .required {
    font-size: 0.9rem;
    margin-right: 0.2rem;
  }
  .input-table .rate,
  .input-table .table-notice-mini {
    font-size: 0.86rem;
  }
  /* カードやテーブルも調整 */
  .sim-card {
    margin: 0.7rem 0.1rem;
    padding: 1.2rem 0.7rem;
    font-size: 1.02rem;
    border-radius: 12px;
  }
  .responsive-table th, .responsive-table td {
    font-size: 0.93rem;
    padding: 0.5rem 0.2rem;
    word-break: break-all;
  }
  /* sectionのタイトル等 */
  h2, h3, .slide-panel-header h3 {
    font-size: 1.16rem !important;
    margin: 0.6rem 0 0.5rem 0;
    line-height: 1.3;
  }
}

/* PC時のオーバーレイ非表示 */
@media (min-width: 769px) {
  .slide-panel-overlay {
    display: none !important;
  }
}

/* --- スマホ中央フロートパネル＆フォーム最適化 --- */
@media (max-width: 768px) {
  /* パネル本体を中央モーダル化 */
  .slide-panel {
    position: fixed !important;
    left: 50% !important;
    top: 50% !important;
    right: auto !important;
    bottom: auto !important;
    transform: translate(-50%, -50%) !important;
    width: 98vw !important;
    max-width: 440px !important;
    height: 92vh !important;
    max-height: 680px !important;
    border-radius: 18px !important;
    z-index: 1201 !important;
    background: #fff !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.26) !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
    overflow-y: auto !important;
    transition: all 0.3s;
    border: none;
  }
  .slide-panel-header {
    border-radius: 18px 18px 0 0;
    padding: 1rem 1.1rem 0.7rem 1.1rem;
    font-size: 1.12rem;
    background: #005bac;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .slide-panel-close {
    font-size: 2.1rem;
    padding: 0 0.5rem;
    background: transparent;
    border: none;
    color: #fff;
  }
  /* オーバーレイ */
  .slide-panel-overlay {
    display: block;
    position: fixed;
    z-index: 1200;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.36);
    width: 100vw; height: 100vh;
  }
  body.modal-open {
    overflow: hidden;
    height: 100vh;
    position: fixed;
    width: 100vw;
  }
  /* 入力テーブル幅・タイトル等 */
  .input-table,
  .input-table tr,
  .input-table td {
    width: 100% !important;
    box-sizing: border-box;
    font-size: 1.06rem;
  }
  .input-table .required {
    font-size: 0.95rem;
    margin-right: 0.16rem;
  }
  .input-table td, .input-table th {
    font-size: 1.06rem;
    padding: 0.62rem 0.3rem;
    word-break: break-word;
  }
  .input-table .rate,
  .input-table .table-notice-mini {
    font-size: 0.89rem;
  }
  /* 2段表示回避・余白確保 */
  .input-table label, .input-table span, .input-table .tooltip {
    font-size: 0.8rem;
    line-height: 1.4;
  }
  /* sectionやtableの余白・見やすさ向上 */
  .sim-card {
    margin: 0.7rem 0.2rem;
    padding: 1.2rem 0.5rem;
    font-size: 1.04rem;
    border-radius: 12px;
  }
  .responsive-table th, .responsive-table td {
    font-size: 0.98rem;
    padding: 0.53rem 0.22rem;
    word-break: break-all;
  }
  /* テーブルタイトルや説明 */
  h2, h3, .slide-panel-header h3 {
    font-size: 1.18rem !important;
    margin: 0.65rem 0 0.5rem 0;
    line-height: 1.35;
    font-weight: bold;
  }
}
@media (min-width: 769px) {
  .slide-panel-overlay { display: none !important; }
}

/* --- すべての画面サイズで中央モーダル化 --- */
.slide-panel {
  position: fixed !important;
  left: 50% !important;
  top: 50% !important;
  right: auto !important;
  bottom: auto !important;
  transform: translate(-50%, -50%) !important;
  width: 98vw !important;
  max-width: 440px !important;
  height: 92vh !important;
  max-height: 680px !important;
  border-radius: 18px !important;
  z-index: 1201 !important;
  background: #fff !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.26) !important;
  padding: 0 !important;
  margin: 0 !important;
  display: block !important;
  overflow-y: auto !important;
  transition: all 0.3s;
  border: none;
}
.slide-panel-header {
  border-radius: 18px 18px 0 0;
  padding: 1rem 5% 0.7rem 5%;
  font-size: 1.12rem;
  background: #005bac;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 86%;
  position: fixed;
  transform: translate(-50%,0);
  top: 20px;
  left: 50%;
  z-index: 9999;
}
.slide-panel-close {
  font-size: 2.1rem;
  margin-left: 0.5rem;
  padding: 0 0.5rem;
  background: transparent;
  border: none;
  color: #fff;
}
/* オーバーレイ（必ず表示） */
.slide-panel-overlay {
  display: block !important;
  position: fixed;
  z-index: 1200;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.36);
  width: 100vw; height: 100vh;
}
/* パネル表示中はスクロールロック */
body.modal-open {
  overflow: hidden !important;
  height: 100vh !important;
  position: fixed !important;
  width: 100vw !important;
}
/* 入力テーブル等も常に見やすく */
.input-table,
.input-table tr,
.input-table td {
  width: 100% !important;
  box-sizing: border-box;
  font-size: 1.06rem;
}
.input-table input[type="text"],
.input-table input[type="number"] {
  width: 66%;
  min-width: 100px;
  font-size: 1.07rem;
  padding: 0.7rem 0.6rem;
  margin: 0.16rem 0;
  border-radius: 8px;
  border: 1px solid #bbb;
  box-sizing: border-box;
  background: #fafbfc;
}
.input-table .required {
  font-size: 0.8rem;
  margin-right: 0.16rem;
}
.input-table td, .input-table th {
  font-size: 1.06rem;
  padding: 0.62rem 0.3rem;
  word-break: break-word;
}
.input-table .rate,
.input-table .table-notice-mini {
  font-size: 0.89rem;
}
h2, h3, .slide-panel-header h3 {
  font-size: 5vw;
  margin: 0.65rem 1rem 0.5rem 0;
  line-height: 1.35;
  font-weight: bold;
}
.slide-panel {
  position: fixed !important;
  left: 50% !important;
  top: 10vh !important;
  transform: translate(-50%, 0) !important;
  width: 96vw !important;
  max-width: 440px !important;
  min-width: 280px;
  height: 74vh !important;
  max-height: 680px !important;
  border-radius: 0 0 18px 18px !important;
  z-index: 1201 !important;
  background: #fff !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.26) !important;
  padding: 0 !important;
  margin: 0 !important;
  display: block !important;
  overflow-y: auto !important;
  transition: all 0.3s;
  border: none;
}

/* タブレットサイズ */
@media (min-width: 600px) and (max-width: 999px) {
  .slide-panel {
    width: 92vw !important;
    max-width: 600px !important;
  }
}

/* PCサイズ */
@media (min-width: 1000px) {
  .slide-panel {
    width: 70vw !important;
    max-width: 680px !important;
  }
}

/* モーダル内の表の幅も可変 */
.slide-panel .input-table,
.slide-panel .responsive-table {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  table-layout: auto;
  word-break: break-all;
}

.slide-panel .input-table td,
.slide-panel .input-table th,
.slide-panel .responsive-table td,
.slide-panel .responsive-table th {
  width: auto !important;
  max-width: 10vw !important;
  box-sizing: border-box;
  padding: 0.62rem 0.3rem;
  font-size: 0.85rem;
  word-break: break-word;
}

html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

.footer {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.responsive-table {
  width: 100%;
  table-layout: auto;
  word-break: break-word;
}

.slide-panel:not(.active) {
  display: none;
}

/* 表全体のスタイル強化 */
.styled-price-table {
  border-collapse: collapse;
  width: 100%;
  background: #fff;
  font-size: 0.95rem;
  margin-top: 1rem;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08);
}

.styled-price-table th,
.styled-price-table td {
  padding: 0.6rem 0.8rem;
  border-bottom: 1px solid #e0e0e0;
}

.styled-price-table td.amount-cell {
  font-weight: bold;
  text-align: right;
}

/* 備考行のスタイル */
.note-row td {
  background-color: #f9f9f9;
  font-size: 0.85rem;
  color: #444;
  padding: 0.5rem 0.8rem;
  border-top: 1px dashed #ccc;
}

/* 強調行の色調整（既存のクラス利用） */
.blue1-row {
  background-color: #e6f5fa;
}
.yellow1-row {
  background-color: #fffcef;
}
.gray1-row {
  background-color: #f6f6f6;
}

.fade-enter-active, .fade-leave-active {
  transition: all 0.4s ease;
}
.fade-enter-from, .fade-leave-to {
  opacity: 0;
  max-height: 0;
}

.Rate {
  width:20% !important;
    min-width: 80px !important;;
}


/*20250621 yasuda addition*/
.pc {
    display: block;
}
.sp {
    display: none;
}
.tb {
    display: none;
}
main {
  margin: 0;
}
h1 {
  background: linear-gradient(90deg, #3296FA, #28468C);
  margin: 0;
  padding: 0.8rem 0 1rem;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  line-height: 1;
  color: #fff;
}
.section-blue-text h1 {
  background: none;
}

.stamp-right {
    position: absolute;
    bottom: -3rem;
    right: 10vw;
    width: 300px;
    margin-left: auto;
    display: block;
}
.logo {
  position: fixed;
  left: 1vw;
  top: 0.8%;
}
.logo img {
  width: 230px;
}
.logo p {
  position: relative;
  top: -0.4rem;
  display: inline-block;
  margin: 0;
  padding: 0 0.2rem 0.1rem 0.2rem;
  background-color: #000;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
}
.section-blue-text h3 {
  font-size: 1.4rem !important;
  text-align: left;
}
.section-light-blue {
  position: relative;
}
.section-light-blue .steps {
  margin-top: 10%;
  width: 80%;
}
.stamp-right {
  position: absolute;
  bottom: 8rem;
  right: 10vw;
  width: 300px;
  margin-left: auto;
  display: block;
}
.stamp-right img {
  width: 100%;
}
.button-container {
  margin-top: 5%;
}
h2.top-title {
  font-size: 3vw;
}
h3.step-title {
  font-size: 2vw;
}
.img_step {
  display: block;
  width: 80%;
  margin: 20px auto;
}
.slide-panel-header {
  width: 70vw !important;
  max-width: 680px !important;
  height: 8vh;
  padding: 0;
}
.slide-panel-header h3 {
  font-size: 2rem;
}
h2.table-ttl {
  font-size: 2rem;
}
/* ------------------------ */
.contact-section-btn {
  width: 100%;
  background-color: #3296FA;
  padding: 30px 0;
}
.contact-section-btn a {
  position: relative;
  display: block;
  background-color: #FF6414;
  color: #fff;
  width: 40%;
  margin: 0 auto;
  padding: 1rem 0;
  font-size: 21px;
  font-weight: 600;
  text-align: center;
  line-height: 1;
  border-radius: 10px;
}
.contact-section-btn a::after {
  content: "▶";
  position: absolute;
  transform: translate(0,-50%);
  top: 50%;
  right: 0.8rem;
}
/* ------------------------ */
h3.checkpoint-titile {
  font-size: 1.6rem;
}
.graph-titie-section1, .graph-titie-section2, .graph-titie-section3, .graph-titie-section4 {
  font-size: 2rem;
}
.instructions h3 {
  font-size: 1.6rem;
}
.sim-card h2 {
  font-size: 2rem;
}
/* ------------------------ */
.contact-section-4 {
  text-align: center;
}
.contact-section-4 .top-title {
  color: #333;
  text-decoration: underline;
}
.contact-section-4 .steps2 {
  width: 80%;
  max-width: 640px;
  margin: 0 auto 20px auto;
}
.contact-section-4 .steps2 img {
  width: 100%;
}
/* ------------------------ */
.btn_step01 {
  background-color: #666666 !important;
}
.btn_step02 {
  background-color: #009BCC !important;
}
.btn_step03 {
  background-color: #FAD237 !important;
}
.btn_step04 {
  background-color: #FF6414 !important;
}
/* ------------------------ */

@media (max-width: 1200px) and (min-width: 768px) {
    body {
        padding-top: 8vh;
    }
    .pc {
        display: none !important;
    }
    .sp {
        display: none !important;
    }
    .tb {
        display: block !important;
    }
    
    main {
      margin: 0;
    }
    .header {
        height: 8vh;
    }
    .logo {
        position: fixed;
        left: 5vw;
        top: 1.8vh;
    }
    .logo p {
      position: relative;
      top: -0.5rem;
      display: inline-block;
      margin: 0;
      padding: 0 0.2rem 0.1rem 0.2rem;
      background-color: #000;
      color: #fff;
      font-size: 0.8rem;
      font-weight: 600;
    }
    /* ------------------------ */
    nav {
        position: fixed;
        top: -115vh;
        width: 100%;
        height: 100vh;
        background-color: #27468c;
        margin: 0 !important;
        padding-top: 15vh;
        -webkit-transition-duration: 0.5s;
        -moz-transition-duration: 0.5s;
        -ms-transition-duration: 0.5s;
        -o-transition-duration: 0.5s;
        transition-duration: 0.5s;
    }
    nav.active {
        top: 0;
    }
    nav a {
        color: #fff !important;
        font-size: 1.2rem !important;
        line-height: 2.2;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    /* ------------------------ */
    .hamburger {
        display: block;
        position: fixed;
        right: 5vw;
        z-index: 999;
        width: 8%;
        height: 6%;
        cursor: pointer;
    }
    .hamburger .nav_line {
        display: block;
        position: absolute;
        transform: translate(-50%,-50%) rotate(0deg);
        left: 50%;
        width: 80%;
        height: 3px;
        background-color: #28468C;
        -webkit-transition-duration: 0.35s;
        -moz-transition-duration: 0.35s;
        -ms-transition-duration: 0.35s;
        -o-transition-duration: 0.35s;
        transition-duration: 0.35s;
    }
    .hamburger .nav_line:nth-child(1) {
        top: 30%;
    }
    .hamburger .nav_line:nth-child(2) {
        top: 50%;
    }
    .hamburger .nav_line:nth-child(3) {
        top: 70%;
    }
    .hamburger.active .nav_line {
        transform: translate(-50%,-50%) rotate(45deg);
        top: 50%;
        background-color: #fff;
    }
    .hamburger.active .nav_line:nth-child(3) {
        transform: translate(-50%,-50%) rotate(-45deg);
    }
    /* ------------------------ */
    .mobile_note {
        padding: 10px 0;
        background-color: #000;
        color: #fff;
        text-align: center;
    }
    .mobile_note p {
        margin: 0;
        line-height: 1.8;
    }
    .mobile_note p:nth-child(1) {
        font-size: 18px;
        font-weight: 600;
    }
    .mobile_note p:nth-child(2) {
        font-size: 14px;
        font-weight: 400;
    }
    /* ------------------------ */
    .mobile_link {
        width: 90%;
        margin: 0;
        padding: 10px 5%;
        background-color: #E6F5FA;
    }
    .mobile_link p {
        font-size: 14px;
        text-align: center;
    }
    .mobile_link p span {
        display: block;
        font-size: 21px;
        font-weight: 600;
        line-height: 1;
        margin: 0 0 10px 0;
    }
    .mobile_link b {
        font-weight: 600;
    }
    .mobile_link img {
        width: 100%;
    }
    /* ------------------------ */
    .top-container {
        margin-top: 0;
    }
    /* ------------------------ */
    .top-section-container {
      width: 90%;
      margin: 10px auto 0 auto;
    }
    .step-title {
      font-size: 2.4vw !important;
    }
    /* ------------------------ */
    .section-blue {
        padding: 1.5rem 0 0 0;
    }
    .section-light-blue {
        position: relative;
        padding: 0 0 1.5rem 0;
    }
    .section-blue .section-blue-content {
        max-width: 90%;
    }
    .section-blue h3 {
        text-align: left;
        font-size: 1.0rem !important;
    }
    .section-blue h1 {
        text-align: left;
        font-size: 2.1rem;
    }
    .section-blue ul {
        font-size: 1.2rem;
    }
    .num-list {
        width: 100%;
        margin-left: 0;
    }
    .section-blue ul li span {
        border-color: #FFD63E;
    }
    .section-light-blue img {
        display: block;
        width: 90%;
        margin: 0 auto;
        padding: 0;
    }
    .stamp-right {
        position: absolute;
        margin-left: auto;
        display: block;
        bottom: 9.5rem;
        right: 5vw;
        width: 20vw;
    }
    .button-container {
      width: 80%;
    }
    .custom-button {
      width: 60%;
      margin-top: 50px;
      margin-bottom: 0;
      font-size: 1.6rem;
    }
    /* ------------------------ */
    .top-title {
        margin-top: 20px;
    }
    /* ------------------------ */
    .contact-section b {
      color: #FF6414;
    }
    .sub-contact-section p {
        width: 90%;
        margin: 0 auto;
        text-align: left;
        line-height: 1.6;
    }
    .contact-section p {
        font-size: 14px;
        margin-bottom: 0;
    }
    .section-text {
      padding-bottom: 0;
    }
    .section-img {
      padding-top: 0;
    }
    /* ------------------------ */
    .contact-section-btn {
      width: 100%;
      background-color: #3296FA;
      padding: 30px 0;
    }
    .contact-section-btn a {
      position: relative;
      display: block;
      background-color: #FF6414;
      color: #fff;
      width: 70%;
      margin: 0 auto;
      padding: 1rem 0;
      font-size: 21px;
      font-weight: 600;
      text-align: center;
      line-height: 1;
      border-radius: 10px;
    }
    .contact-section-btn a::after {
      content: "▶";
      position: absolute;
      transform: translate(0,-50%);
      top: 50%;
      right: 0.8rem;
    }
    /* ------------------------ */
    .hotline {
        margin: 0;
        padding: 0;
        width: 100%;
    }
    .step-container {
        padding: 0;
        width: 100%;
    }
    /* ------------------------ */
    h3.checkpoint-titile {
      font-size: 2vw !important;
    }
    .graph-titie-section1, .graph-titie-section2, .graph-titie-section3, .graph-titie-section4 {
      font-size: 3vw !important;
    }
    .instructions h3 {
      font-size: 2vw !important;
    }
    .sim-card h2 {
      font-size: 3vw !important;
    }
    /* ------------------------ */
    .step-description-sp {
      text-align: left;
    }
    /* ------------------------ */
    .contact-section-4 {
      text-align: center;
    }
    .contact-section-4 .top-title {
      color: #333;
      text-decoration: underline;
    }
    .contact-section-4 .steps2 {
      width: 80%;
      margin: 0 auto 20px auto;
    }
    .contact-section-4 .steps2 img {
      width: 100%;
    }
    .slide-panel {
      top: 6.5vh !important;
    }
    h2.table-ttl {
      font-size: 3vw !important;
    }
    /* ------------------------ */
    .footer {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-end;
        padding: 0 0 20px 0;
        width: 90%;
        margin: 0 auto;
    }
    .l-footerList {
        width: 50%;
    }
    .footer .footer-info {
        font-size: 10px;
    }
    /* ------------------------ */
    h1 {
      background: linear-gradient(90deg, #3296FA, #28468C);
      margin: 0;
      padding: 0.8rem 0 1rem;
      font-size: 16px;
      font-weight: 800;
      text-align: center;
      line-height: 1;
      color: #fff;
    }
    .section-blue-text h1 {
      background: none;
    }
    .img_step {
      display: block;
      width: 80%;
      margin: 20px auto;
    }
    
    /* ------------------------ */
    .contact-section-graph .button-container {
      width: 100%;
    }
    .contact-section-graph .custom-button {
      width: 80%;
      margin: 20px auto 0 auto;
      padding: 0.8rem 0;
      font-size: 16px;
    }

    .sub-contact-section .accordion-detail {
      width: 90%;
      margin: 0 auto;
    }
    
}

@media (max-width: 767px) {
    body {
        padding-top: 8vh;
    }
    .pc {
        display: none !important;
    }
    .sp {
        display: block !important;
    }
    .tb {
        display: block !important;
    }
    /* ------------------------ */
    nav {
        position: fixed;
        top: -115vh;
        width: 100%;
        height: 100vh;
        background-color: #27468c;
        margin: 0 !important;
        padding-top: 15vh;
        -webkit-transition-duration: 0.5s;
        -moz-transition-duration: 0.5s;
        -ms-transition-duration: 0.5s;
        -o-transition-duration: 0.5s;
        transition-duration: 0.5s;
    }
    nav.active {
        top: 0;
    }
    nav a {
        color: #fff !important;
        font-size: 1.2rem !important;
        line-height: 2.2;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    /* ------------------------ */
    
    .hamburger .nav_line {
        display: block;
        position: absolute;
        transform: translate(-50%,-50%) rotate(0deg);
        left: 50%;
        width: 80%;
        height: 3px;
        background-color: #28468C;
        -webkit-transition-duration: 0.35s;
        -moz-transition-duration: 0.35s;
        -ms-transition-duration: 0.35s;
        -o-transition-duration: 0.35s;
        transition-duration: 0.35s;
    }
    .hamburger .nav_line:nth-child(1) {
        top: 30%;
    }
    .hamburger .nav_line:nth-child(2) {
        top: 50%;
    }
    .hamburger .nav_line:nth-child(3) {
        top: 70%;
    }
    .hamburger.active .nav_line {
        transform: translate(-50%,-50%) rotate(45deg);
        top: 50%;
        background-color: #fff;
    }
    .hamburger.active .nav_line:nth-child(3) {
        transform: translate(-50%,-50%) rotate(-45deg);
    }
    /* ------------------------ */
    .mobile_note {
        padding: 10px 0;
        background-color: #000;
        color: #fff;
        text-align: center;
    }
    .mobile_note p {
        margin: 0;
        line-height: 1.8;
    }
    .mobile_note p:nth-child(1) {
        font-size: 18px;
        font-weight: 600;
    }
    .mobile_note p:nth-child(2) {
        font-size: 14px;
        font-weight: 400;
    }
    /* ------------------------ */
    .mobile_link {
        width: 90%;
        margin: 0;
        padding: 10px 5%;
        background-color: #E6F5FA;
    }
    .mobile_link p {
        font-size: 14px;
        text-align: center;
    }
    .mobile_link p span {
        display: block;
        font-size: 21px;
        font-weight: 600;
        line-height: 1;
        margin: 0 0 10px 0;
    }
    .mobile_link b {
        font-weight: 600;
    }
    .mobile_link img {
        width: 100%;
    }
    /* ------------------------ */
    .top-container {
        margin-top: 0;
    }
    /* ------------------------ */
    .section-blue {
        padding: 1.5rem 0 0 0;
    }
    .section-light-blue {
        position: relative;
        padding: 0 0 1.5rem 0;
    }
    .section-blue .section-blue-content {
        max-width: 90%;
    }
    .section-blue h3 {
        text-align: left;
        font-size: 1.0rem !important;
    }
    .section-blue h1 {
        text-align: left;
        font-size: 8.0vw;
    }
    .section-blue ul {
        font-size: 1.2rem;
    }
    .num-list {
        width: 100%;
        margin-left: 0;
    }
    .section-blue ul li span {
        border-color: #FFD63E;
    }
    .section-light-blue img {
        display: block;
        width: 90%;
        margin: 0 auto;
        padding: 0;
    }
    .stamp-right {
        position: absolute;
        margin-left: auto;
        display: block;
        bottom: 9.5rem;
        right: 5vw;
        width: 50vw;
    }
    .button-container {
      width: 80%;
    }
    .custom-button {
      width: 60%;
      margin-top: 50px;
      margin-bottom: 0;
      font-size: 1.6rem;
    }
    /* ------------------------ */
    .top-title {
        margin-top: 20px;
    }
    /* ------------------------ */
    .contact-section b {
      color: #FF6414;
    }
    .sub-contact-section p {
        width: 90%;
        margin: 0 auto;
        text-align: left;
        line-height: 1.6;
    }
    .contact-section p {
        font-size: 14px;
        margin-bottom: 0;
    }
    .section-text {
      padding-bottom: 0;
    }
    .section-img {
      padding-top: 0;
    }
    /* ------------------------ */
    .contact-section-btn {
      width: 100%;
      background-color: #3296FA;
      padding: 30px 0;
    }
    .contact-section-btn a {
      position: relative;
      display: block;
      background-color: #FF6414;
      color: #fff;
      width: 70%;
      margin: 0 auto;
      padding: 1rem 0;
      font-size: 21px;
      font-weight: 600;
      text-align: center;
      line-height: 1;
      border-radius: 10px;
    }
    .contact-section-btn a::after {
      content: "▶";
      position: absolute;
      transform: translate(0,-50%);
      top: 50%;
      right: 0.8rem;
    }
    /* ------------------------ */
    .hotline {
        margin: 0;
        padding: 0;
        width: 100%;
    }
    .step-container {
        padding: 0;
        width: 100%;
    }
    /* ------------------------ */
    .step-description-sp {
      text-align: left;
    }
    
    /* ------------------------ */
    .contact-section-4 {
      text-align: center;
    }
    .contact-section-4 .top-title {
      color: #333;
      text-decoration: underline;
    }
    .contact-section-4 .steps2 {
      width: 80%;
      margin: 0 auto 20px auto;
    }
    .contact-section-4 .steps2 img {
      width: 100%;
    }
    /* ------------------------ */
    .footer {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-end;
        padding: 0 0 20px 0;
        width: 90%;
        margin: 0 auto;
    }
    .l-footerList {
        width: 50%;
    }
    .footer .footer-info {
        font-size: 10px;
    }
    /* ------------------------ */
    h1 {
      background: linear-gradient(90deg, #3296FA, #28468C);
      margin: 0;
      padding: 0.8rem 0 1rem;
      font-size: 16px;
      font-weight: 800;
      text-align: center;
      line-height: 1;
      color: #fff;
    }
    .section-blue-text h1 {
      background: none;
    }
    .img_step {
      display: block;
      width: 100%;
      margin: 20px 0;
    }
    /* ------------------------ */
    .contact-section-graph .button-container {
      width: 100%;
    }
    .contact-section-graph .custom-button {
      width: 80%;
      margin: 20px auto 0 auto;
      padding: 0.8rem 0;
      font-size: 16px;
    }

    .sub-contact-section .accordion-detail {
      width: 90%;
      margin: 0 auto;
    }
    
}


body {
    padding-top: 50px;
}
@media (max-width: 599px) {
  .slide-panel-header {
    width: 96vw !important;
    height: 60px;
    max-width: 440px !important;
    min-width: 280px;
  }
  .slide-panel-header h3 {
    font-size: 18px !important;
  }
  .slide-panel {
    top: 80px !important;
  }
  /*------------------------------------*/
  .header {
    height: 58px;
  }
  .logo {
    position: fixed;
    left: 5vw;
    top: 10px;
  }
  .logo img {
    width: 210px;
  }
  .logo p {
    position: relative;
    top: -0.4rem;
    display: inline-block;
    margin: 0;
    padding: 0 0.2rem 0.1rem 0.2rem;
    background-color: #000;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
  }
  /*------------------------------------*/
  .hamburger {
    display: block;
    position: fixed;
    top: 7px;
    right: 5vw;
    z-index: 999;
    width: 45px;
    height: 45px;
    cursor: pointer;
  }
}
@media (min-width: 600px) and (max-width: 667px) {
  .slide-panel-header {
    width: 92vw !important;
    height: 60px;
    max-width: 600px !important;
    padding: 0;
  }
  .slide-panel-header h3 {
    font-size: 24px !important;
  }
  .slide-panel {
    top: 80px !important;
  }
  /*------------------------------------*/
  .header {
    height: 58px;
  }
  .logo {
    top: 10px;
  }
  .logo img {
    width: 210px;
  }
  .logo p {
    position: relative;
    top: -0.4rem;
    display: inline-block;
    margin: 0;
    padding: 0 0.2rem 0.1rem 0.2rem;
    background-color: #000;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
  }
  /*------------------------------------*/
  .hamburger {
    display: block;
    position: fixed;
    top: 7px;
    right: 5vw;
    z-index: 999;
    width: 45px;
    height: 45px;
    cursor: pointer;
  }
}
@media (min-width: 668px) and (max-width: 766px) {
  .slide-panel-header {
    width: 92vw !important;
    height: 60px;
    max-width: 600px !important;
    padding: 0;
  }
  .slide-panel-header h3 {
    font-size: 24px !important;
  }
  .slide-panel {
    top: 80px !important;
  }
  /*------------------------------------*/
  .header {
    height: 58px;
  }
  .logo {
    top: 10px;
  }
  .logo img {
    width: 210px;
  }
  .logo p {
    position: relative;
    top: -0.4rem;
    display: inline-block;
    margin: 0;
    padding: 0 0.2rem 0.1rem 0.2rem;
    background-color: #000;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
  }
  /*------------------------------------*/
  .hamburger {
    display: block;
    position: fixed;
    top: 7px;
    right: 5vw;
    z-index: 999;
    width: 45px;
    height: 45px;
    cursor: pointer;
  }
}
 @media (min-width: 767px) and (max-width: 896px) {
  .slide-panel-header {
    width: 92vw !important;
    height: 60px;
    max-width: 600px !important;
    padding: 0;
  }
  .slide-panel-header h3 {
    font-size: 24px !important;
  }
  .slide-panel {
    top: 80px !important;
  }
  /*------------------------------------*/
  .header {
    height: 58px;
  }
  .logo {
    position: fixed;
    left: 5vw;
    top: 10px;
  }
  .logo img {
    width: 210px;
  }
  .logo p {
    position: relative;
    top: -0.4rem;
    display: inline-block;
    margin: 0;
    padding: 0 0.2rem 0.1rem 0.2rem;
    background-color: #000;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
  }
  /*------------------------------------*/
  .hamburger {
    display: block;
    position: fixed;
    top: 7px;
    right: 5vw;
    z-index: 999;
    width: 45px;
    height: 45px;
    cursor: pointer;
  }
}
@media (min-width: 897px) and (max-width: 914px) {
  .slide-panel-header {
    width: 92vw !important;
    height: 60px;
    max-width: 600px !important;
    padding: 0;
  }
  .slide-panel-header h3 {
    font-size: 24px !important;
  }
  .slide-panel {
    top: 80px !important;
  }
  /*------------------------------------*/
  .header {
    height: 58px;
  }
  .logo {
    top: 10px;
  }
  .logo img {
    width: 210px;
  }
  .logo p {
    position: relative;
    top: -0.4rem;
    display: inline-block;
    margin: 0;
    padding: 0 0.2rem 0.1rem 0.2rem;
    background-color: #000;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
  }
  /*------------------------------------*/
  .hamburger {
    display: block;
    position: fixed;
    top: 7px;
    right: 5vw;
    z-index: 999;
    width: 45px;
    height: 45px;
    cursor: pointer;
  }
}
@media (min-width: 915px) and (max-width: 931px) {
  .slide-panel-header {
    width: 92vw !important;
    height: 60px;
    max-width: 600px !important;
    padding: 0;
  }
  .slide-panel-header h3 {
    font-size: 24px !important;
  }
  .slide-panel {
    top: 80px !important;
  }
  /*------------------------------------*/
  .header {
    height: 58px;
  }
  .logo {
    top: 10px;
  }
  .logo img {
    width: 210px;
  }
  .logo p {
    position: relative;
    top: -0.4rem;
    display: inline-block;
    margin: 0;
    padding: 0 0.2rem 0.1rem 0.2rem;
    background-color: #000;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
  }
  /*------------------------------------*/
  .hamburger {
    display: block;
    position: fixed;
    top: 7px;
    right: 5vw;
    z-index: 999;
    width: 45px;
    height: 45px;
    cursor: pointer;
  }
}
@media (min-width: 932px) and (max-width: 1000px) {
  .slide-panel-header {
    width: 92vw !important;
    height: 60px;
    max-width: 600px !important;
    padding: 0;
  }
  .slide-panel-header h3 {
    font-size: 24px !important;
  }
  .slide-panel {
    top: 80px !important;
  }
  /*------------------------------------*/
  .header {
    height: 58px;
  }
  .logo {
    top: 10px;
  }
  .logo img {
    width: 210px;
  }
  .logo p {
    position: relative;
    top: -0.4rem;
    display: inline-block;
    margin: 0;
    padding: 0 0.2rem 0.1rem 0.2rem;
    background-color: #000;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
  }
  /*------------------------------------*/
  .hamburger {
    display: block;
    position: fixed;
    top: 7px;
    right: 5vw;
    z-index: 999;
    width: 45px;
    height: 45px;
    cursor: pointer;
  }
}
@media (min-width: 1001px) and (max-width: 1023px) {
  .slide-panel-header {
    width: 70vw !important;
    max-width: 680px !important;
    height: 60px;
    padding: 0;
  }
  .slide-panel-header h3 {
    font-size: 24px !important;
  }
  .slide-panel {
    top: 80px !important;
  }
  /*------------------------------------*/
  .header {
    height: 58px;
  }
  .logo {
    top: 10px;
  }
  .logo img {
    width: 210px;
  }
  .logo p {
    position: relative;
    top: -0.4rem;
    display: inline-block;
    margin: 0;
    padding: 0 0.2rem 0.1rem 0.2rem;
    background-color: #000;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
  }
  /*------------------------------------*/
  .hamburger {
    display: block;
    position: fixed;
    top: 7px;
    right: 5vw;
    z-index: 999;
    width: 45px;
    height: 45px;
    cursor: pointer;
  }
}
@media (min-width: 1024px) and (max-width: 1200px) {
  .slide-panel-header {
    width: 70vw !important;
    max-width: 680px !important;
    height: 60px;
    padding: 0;
  }
  .slide-panel-header h3 {
    font-size: 24px !important;
  }
  .slide-panel {
    top: 80px !important;
  }
  /*------------------------------------*/
  .header {
    height: 58px;
  }
  .logo {
    top: 10px;
  }
  .logo img {
    width: 210px;
  }
  .logo p {
    position: relative;
    top: -0.4rem;
    display: inline-block;
    margin: 0;
    padding: 0 0.2rem 0.1rem 0.2rem;
    background-color: #000;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
  }
  /*------------------------------------*/
  .hamburger {
    display: block;
    position: fixed;
    top: 7px;
    right: 5vw;
    z-index: 999;
    width: 45px;
    height: 45px;
    cursor: pointer;
  }
}