@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Roboto:wght@400;700&display=swap');

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  height: 100%;
  font-size: 62.5%;
}

body {
  font-family: 'Noto Sans JP',
  'Roboto',
  sans-serif;
  width: 100%;
  height: 100%;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
  margin: 0 auto;
  background: #fff;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

a:link,
a:visited {
  color: #1e9dd4;
  text-decoration: none;
}

a:hover {
  color: #157ba8;
  /* 少し濃くしてホバー感出す */
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

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

.loader {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fdfdfd;
  position: fixed;
  inset: 0;
  z-index: 9999;
}

body.appear .splashbg {
  display: block;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: #333;
  transform: scaleY(0);
  animation: PageAnime 1.2s ease-in-out forwards;
  z-index: 999;
}

body.appear #page {
  animation: PageAnimeAppear 1s ease forwards;
  animation-delay: 0.8s;
  opacity: 0;
}

/* ヘッダー */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  transition: 0.3s;
  z-index: 2000;
}

#l-header {
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(30px);
}

#l-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0px 20px;
}

#logo {
  flex-shrink: 0;
}

#logo img {
  height: 50px;
}

#header_nav {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.globalNav {
  display: flex;
  gap: 50px;
  align-items: center;
}

.globalNav li {
  flex: 0 1 auto;
  text-align: center;
}

.globalNav li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.2;
  text-align: center;
  color: #111;
}

.globalNav li a span {
  font-size: 1.2rem;
  font-weight: 500;
  color: #1e9dd4;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 2px;
}

#header_top {
  display: flex;
  align-items: center;
  gap: 20px;
}
.support {
  display: flex;
  flex-direction: column;
  align-items: left;
  margin: auto;
  border: 1px solid rgb(152, 152, 152);
  padding: 6px;
}
.support p {
  line-height: 0.1;
}
.support_title {
  font-size: 1.2rem;
  font-weight: 600;
}
.support_time {
  font-size: 1rem;
  letter-spacing: -0.03em;
}
.support_day {
  font-size: 1rem;
  letter-spacing: -0.03em;
}
.header-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}
.contact-tel a {
  font-size: 2rem;
  font-weight: bold;
  color: #1e9dd4;
  text-decoration: none;
}
.mypage-btn {
  background: #ff7f50;
  color: #fff !important;
  padding: 12px 18px;
  border-radius: 20px;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s;
}
.mypage-btn:hover {
  background: #e65500;
}
#header_nav ul li a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #1e9dd4;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  transition: width 0.2s ease-in;
}
#header_nav * {
  transition: 0.3s;
}

/* ヘッダー */
@media (max-width: 890px) {
  #l-header .inner {
    padding: 8px 10px;
  }
  #logo img {
    height: 45px;
    margin-left: 10px;
  }
  #header_top {
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }
  .header-contact {
    flex-direction: column;
    align-items: flex-end;
  }
  .mypage-btn {
    margin-bottom: 5px;
  }
  .globalNav {
    display: none;
  }
  #header_top {
    display: none;
  }
}

@media (max-width: 1150px) {
  .mypage-btn {
    padding: 8px 16px;
    font-size: 1.4rem;
  }
  .contact-tel a {
    font-size: 1.6rem;
  }
  .globalNav {
    gap: 20px;
  }
}
@media (max-width: 1050px) {
  .support {
    display: none;
  }
  .tab-pc {
    display: none;
  }
  .tab-sp {
    display: block;
  }
}

/* 汎用クラス */
.tcenter {
  text-align: center;
}

.pc {
  display: block;
}

#contentwrap {
  width: 100%;
}

.single {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 0;
}

.mtitle {
  font-weight: 700;
  line-height: 1.4;
  margin: 0 auto 40px;
  position: relative;
  text-align: center;
  letter-spacing: 0.2em;
}

.mtitle .eng {
  font-size: 1.5rem;
  color: #1e9dd4;
  position: relative;
  z-index: 2;
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: 0.2rem;
}

.mtitle .ja {
  font-size: 3.6rem;
  color: #343338;
  position: relative;
  z-index: 2;
}

h2 {
  font-size: 1.6rem;
  color: #1e9dd4;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
}

h3 {
  font-size: 24px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  unicode-bidi: isolate;
}


/* メインビジュアル */
#mainView {
  position: relative;
  width: 100%;
  margin: 0 auto;
  margin-top: 92px;
}
.main-pc {
  width: 100%;
  height: auto;
  display: block;
}
.phone {
  display: none;
}

/* 汎用背景・色クラス */
.bg-eee {
  background-color: #f7f7f7;
  width: 100%;
}

.bg-orange {
  background-color: #ffb300;
}

/* ステップリスト */
/* -------- ステップアイテム -------- */
.step-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
  position: relative;
}

.step-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 60px;
}

.step-item p {
  line-height: 1.5;
}

.step-item::before {
  counter-increment: step;
  /* ← 自動で 1, 2, 3, ... に増える */
  content: counter(step);
  /* ← 表示する内容 */
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  background-color: #1e9dd4;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  z-index: 2;
}

.step-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 17px;
  width: 2px;
  height: calc(100% + 60px);
  background-color: #1e9dd460;
  z-index: 1;
}

.step-item:last-child::after {
  display: none;
}

/* -------- ステップカード -------- */
.step-card {
  display: flex;
  width: 90%;
  margin: 0 auto;
  padding: 40px 60px;
  background: #fff;
  border: 1px solid #1e9dd4;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(30, 157, 212, 0.1);
  box-sizing: border-box;
  flex-direction: column;
}



/* -------- タブメニュー -------- */
.tab-menu {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: -1px;
  flex-wrap: wrap;
}

.tab {
  width: 40%;
  text-align: center;
  padding: 20px;
  font-size: 18px;
  font-weight: bold;
  border-top: 1px solid #d6d6d6;
  border-left: 1px solid #d6d6d6;
  border-right: 1px solid #d6d6d6;
  border-bottom: 1px solid #1e9dd4;
  background: #f0f0f0;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
  color: #777;
  transition: all 0.3s;
}

.tab.active {
  background: #fff;
  border-color: #1e9dd4;
  border-bottom: 1px solid #fff;
  color: #1e9dd4;
  z-index: 2;
  position: relative;
}

@media screen and (max-width: 768px) {
  .tab-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    padding: 0 16px;
    margin-bottom: 20px;
  }

  .tab {
    width: 100%;
    max-width: 300px;
    box-sizing: border-box;
    font-size: 16px;
    padding: 12px 16px;
    background: #f8f8f8;
    border: 1px solid #ccc;
    border-radius: 8px;
    color: #1e9dd4;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
  }

  .tab.active {
    background-color: #1e9dd4;
    color: #fff;
    border-color: #1e9dd4;
  }
}

/* -------- タブの中身 -------- */
.tab-contents {
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid #1e9dd4;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 30px;
  background: #fff;
  position: relative;
  z-index: 1;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

@media screen and (max-width: 480px) {
  .step-item {
    padding-left: 48px;
    /* 丸のサイズ + 12px程度 */
  }

  .step-item::before {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    left: 0;
  }

  .step-item::after {
    left: 15px;
    top: 0;
    height: calc(100% + 60px);
    /* ← 通常と同じ長さを維持 */
  }

  .step-item p {
    font-size: 13px;
  }

  .step-item h3 {
    font-size: 18px;
  }

  .step-card {
    padding: 16px;
  }
}





/* パート4 */

/* ハンバーガーメニュー */
#humberger {
  display: none;
}

#drawernav .mypage-btn {
  display: inline-block;
  margin: 10px auto;
  text-align: center;
}

.drawer-mypage-wrapper {
  text-align: center;
}

.icon-bar {
  height: 2px;
  background: #fff;
  display: block;
  margin-bottom: 6px;
}

#drawernav {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  z-index: 9999;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

#drawernav.open {
  transform: translateX(0);
  opacity: 1;
}

#drawernav ul li a {
  color: #222;
  font-size: 12px;
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  border-bottom: 1px solid #eed01a;
  background: #fff;
}

#drawernav img {
  display: block;
  width: 70%;
  padding-bottom: 20px;
  margin: 0 auto;
}

#close-drawer {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fff;
  color: #1e9dd4;
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 32px;
  cursor: pointer;
  z-index: 1000;
}

#close-drawer:hover {
  color: rgba(37, 187, 251, 0.3);
}

/* ドロワー背景（オーバーレイ） */
#overlay {
  z-index: -1;
  opacity: 0;
  background: #fff;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  transition: all 400ms cubic-bezier(1, 0, 0, 1);
}

/* 戻るボタン */
#page-top {
  position: fixed;
  bottom: 20px;
  right: 0;
  z-index: 1000;
}

#page-top a {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  background: #1e9dd4;
  color: #fff;
  border-radius: 30px 0 0 30px;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease;
}

#page-top a:hover {
  background: #157ba8;
}

/* フッター全体のスタイル */
footer {
  background-color: #333;
  /* ダークグレーの背景色 */
  padding: 30px 0;
  text-align: center;
  font-size: 15px;
  color: #fff;
  /* 文字色を白に変更 */
}

/* フッターメニューのスタイル */
#fmenu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  /* メニュー全体を中央揃え */
}

#fmenu li {
  display: inline-block;
  /* 横並びに表示 */
  margin: 0 15px;
  position: relative;
  /* 縦棒を配置するために必要 */
}

#fmenu li:not(:last-child):after {
  content: "|";
  /* 縦棒を追加 */
  position: absolute;
  top: 50%;
  /* 縦棒を真ん中に配置 */
  transform: translateY(-50%);
  /* 真ん中に正確に配置 */
  left: 100%;
  /* メニューアイテムの右端に縦棒を配置 */
  margin-left: 15px;
  /* 縦棒と項目との間隔を調整 */
  color: #ddd;
  /* 縦棒の色 */
}

#fmenu a {
  text-decoration: none;
  color: #ddd;
  /* メニューリンクの色を薄いグレーに変更 */
  font-weight: bold;
  line-height: 40px;
  /* メニュー項目の高さに合わせて中央に配置 */
}

#fmenu a:hover {
  color: #ff9900;
  /* ホバー時にオレンジ色 */
}


/* 会社HPと重要事項説明書リンクのスタイル */
.extra-links {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.extra-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.extra-links li {
  display: inline-block;
  margin: 10px 20px;
}

.extra-links a {
  text-decoration: none;
  color: #ddd;
  /* リンクの色を薄いグレー */
  font-weight: normal;
  font-size: 16px;
  /* フォントサイズを少し大きく */
}

.extra-links a i {
  margin-right: 8px;
  /* アイコンとテキストの間隔 */
}

.extra-links a:hover {
  color: #ff9900;
  /* ホバー時にオレンジ色 */
}
.link-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 15px;
  gap: 20px;
  align-items: stretch;
}

.link-row a {
  flex: 1 1 300px;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-decoration: none;
  color: #fff;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.link-row a i {
  margin-right: 5px;
}

/* スマホ幅の調整 */
@media (max-width: 700px) {
  .link-row {
    flex-direction: column;
  }

  .link-row a {
    flex: none;
    /* flex指定を解除 */
    width: 100%;
    padding: 10px 15px;
    /* スマホでは余白も少し狭める */
  }
}

.logo-f img {
  height: 60px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* コピーライトのスタイル */
.copyright {
  margin-top: 20px;
  font-size: 13px;
  color: #aaa;
  /* コピーライトの文字色をさらに薄く */
}

@media (max-width: 1200px) {

  .single,
  .single0,
  .single1 {
    width: 95%;
    margin: 0 auto;
    padding: 25px 0;
  }
}

@media (max-width: 890px) {

  #header_nav {
    display: none;
  }

  footer {
    margin: 0;
  }

  #fmenu {
    display: none;
  }

  #logo img {
    height: 50px;
    /* 少し大きめに */
    margin-left: 15px;
    /* 左寄りすぎを防ぐ */
  }

  .logo-f img {
    width: 40%;
  }

  #humberger {
    display: block;
    position: fixed;
    top: 5px;
    right: 5px;
    width: 50px;
    height: 45px;
    border-radius: 3px;
    padding: 15px 15px 0;
    cursor: pointer;
    background: #1e9dd4;
    z-index: 99999;
    color: #fff;
    margin-right: 10px;
    margin-top: 10px;
  }

  .drawer-opened #humberger :nth-child(1) {
    transform: translate(0, 8px) rotate(45deg);
  }

  .drawer-opened #humberger :nth-child(2) {
    transform: translate(-20px, 0);
    opacity: 0;
  }

  .drawer-opened #humberger :nth-child(3) {
    transform: translate(0, -8px) rotate(-45deg);
  }

  .drawer-opened #humberger .icon-bar {
    background: #eed01a;
  }

  .drawer-opened #overlay {
    opacity: 0.5;
    left: -240px;
    position: fixed;
    z-index: 9999999;
    width: 100%;
    height: 100%;
  }

  #mainView {
    margin-top: 80px;
  }

}

@media (max-width: 890px) {
  .item-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
  }

  .item-list .item2,
  .item-list .item2-1,
  .item-list .item3 {
    width: 98%;
    margin: 1%;
    margin-top: 1.5em;
  }

  .phone {
    display: block;
  }

  .main-pc {
    display: none;
  }

  .mtitle {
    margin: 0 auto 20px;
  }

  .mtitle .ja {
    font-size: 2rem;
  }

  .mtitle .eng {
    font-size: 1.5rem;
  }

  .tab {
    padding: 10px;
    font-size: 14px;
  }

  #l-header .inner {
    padding: 0;
    height: 80px;
  }

  #l-header .inner #logo img {
    width: auto;
    height: 45px;
    margin-left: 15px;
  }

  #sp_navi ul {
    display: table;
    width: 100%;
  }
}

@media (max-width: 639px) {
  .heading04:before {
    margin-right: 15px;
  }
}

/* 各テーブルの帯タイトル */
.table-title {
  background-color: #1e9dd4;
  /* 基本カラー */
  padding: 10px 15px;
  margin-bottom: 40px;
}

.table-title h3 {
  color: white;
  /* 白い文字 */
  font-size: 20px;
  margin: 0;
  /* マージンをリセット */
  text-transform: uppercase;
  /* 大文字 */
}

/* テーブル全体のスタイル */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

table th,
table td {
  padding: 12px 15px;
  text-align: center;
  /* 中央揃え */
  border: 2px solid #ddd;
}

table th {
  background-color: #f2f2f2;
  /* 基本カラー */
  color: #555;
  /* 白い文字 */
  font-weight: bold;
  font-size: 16px;
}

table th span{
  font-size: 10px;
}

table td {
  font-size: 14px;
  background-color: #fff;
}

.payment-table {
  width: 100%;
  table-layout: fixed;
  /* 各列幅を均等にする */
  border-collapse: collapse;
}

.table-wrapper {
  overflow-x: auto;
  width: 100%;
  margin-bottom: 24px;
}

.payment-table {
  width: 100%;
  min-width: 580px;
  /* スマホでも横スクロールしやすく */
  table-layout: fixed;
  border-collapse: collapse;
  border: 1px solid #ccc;
}

.payment-table th,
.payment-table td {
  width: 50%;
  padding: 12px;
  border: 1px solid #ccc;
  text-align: center;
  background-color: #fff;
}

.payment-table th {
  background-color: #cceff9;
  font-weight: bold;
}

/* 価格関連のクラス */
.ex-tax {
  font-size: 2em;
  /* 価格を強調 */
  font-weight: bold;
}

.tax-inclusive {
  display: inline-block;
  color: #777;
  /* 控えめな色 */
  margin-top: 8px;
}

/* メモ部分 */
.note {
  text-align: center;
  font-size: 12px;
  color: #777;
  margin-top: 20px;
  margin-bottom: 40px;
}

/* 支払い方法セルのスタイル */
.payment-type {
  font-weight: 400;
  /* 太字 */
  font-size: 1.4rem;
  /* フォントサイズ */
}



/* オプション */

.items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 常に横2つ */
  gap: 20px;
  padding: 20px;
}

@media screen and (max-width: 600px) {
  .items {
    grid-template-columns: 1fr;
    /* スマホで1列に */
  }
}

.item {
  background-color: #f2f2f2;
  border-radius: 16px;
  /* aspect-ratio: 1 / 1; */
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.text-wrapper {
  background-color: #cceff9;
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.item-title {
  font-size: 16px;
  color: #333;
  margin: 0;
  line-height: 1.4;
}

.image-wrapper img {
  width: 40%;
  height: auto;
  max-height: none;
  margin: 0 auto 12px;
  object-fit: contain;
}

.option-price {
  font-size: 20px;
  color: #1e9dd4;
  font-weight: bold;
  margin-bottom: 8px;
}

.description-wrapper p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
  margin: 0;
}



/* テーブル値段 */
.highlight {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.1em;
  /* 下半分に重なるように微調整 */
  width: 100%;
  height: 0.3em;
  /* 下線の太さ */
  background-color: yellow;
  z-index: -1;
  /* テキストの後ろに配置 */
}

.discount-label {
  display: inline-block;
  font-size: 0.9em;
  color: #666;
  /* 薄めの色で補足的に */
  margin-bottom: 8px;
  color: #1e9dd4;
}

.price-wrapper {
  display: flex;
  align-items: center;
  /* 縦方向の中央揃え */
  justify-content: center;
  /* 横方向の中央揃え ← これが今回のポイント！ */
  gap: 12px;
  text-align: center;
}

.before-price,
.after-price {
  font-size: 0.9em;
  text-align: left;
}

.before-price .ex-tax {
  text-decoration: line-through;
  color: #999;
}

.arrow {
  font-size: 1.2em;
  line-height: 2em;
  color: #333;
}


/* about */
.about p {
    line-height: 2;
    color:#2C3E50;
}


/* マップ */


.map-legend-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.map-image {
  width: 40%;
  height: auto;
  display: block;
}

.legend {
  list-style: none;
  padding: 0;
  margin: 0;
}

.legend li {
  display: flex;
  align-items: center;
  font-size: 16px;
  margin-bottom: 12px;
}

.legend-color {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  border-radius: 4px;
}

.legend-color.east {
  background-color: #1e90ff;
  /* 青 */
}

.legend-color.west {
  background-color: #ff6347;
  /* 赤 */
}


.map-text {
  position: relative;
  display: inline-block;
  margin: 40px auto;
  padding: 10px 40px;
  /* background-color: #f5f5f5; */
  text-align: center;
  font-size: 24px;
  /* font-weight: bold; */
  border-radius: 4px;
  color: #333;

  /* 中央揃え */
  left: 50%;
  transform: translateX(-50%);
}

.map-text::before,
.map-text::after {
  content: '';
  position: absolute;
  top: 75%;
  width: 39px;
  height: 3px;
  background-color: #333;
}

.map-text::before {
  left: -20px;
  transform: rotate(45deg);
  /* ←上下反転に修正 */
  transform-origin: right center;
}

.map-text::after {
  right: -20px;
  transform: rotate(-45deg);
  /* ←上下反転に修正 */
  transform-origin: left center;
}



/* U-Linkひかりとは */





/* GPT提案部分 */
.features-pc {
  display: flex;
  gap: 5%;
  justify-content: center;
  /* カードを中央寄せに */
  flex-wrap: wrap;
  margin: 60px 0;
}

.features-pc a {
  position: relative;
  display: block;
  width: 24%;
  min-width: 200px;
  padding: 20px 20px 20px;
  /* ← ここを調整（上: 20px） */
  border: 1px solid #ccc;
  border-radius: 12px;
  background-color: #f9f9f9;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s;
}


.features-pc a:hover {
  background-color: #eef8fb;
}

.features-pc a>p:first-child {
  position: absolute;
  top: -20px;
  left: -20px;
  background-color: #1e9dd4;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-weight: bold;
  text-align: center;
  line-height: 60px;
  margin: 0;
  z-index: 1;
}

.features-pc a div {
  text-align: center;
  /* 中央揃え */
}

.features-pc a div p:first-child {
  position: relative;
  display: inline-block;
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 10px;
  text-align: center;
  background: linear-gradient(to bottom, transparent 60%, rgba(30, 157, 212, 0.25) 50%);
  background-size: 100% 90%;
  background-repeat: no-repeat;
  /* color: #000; */
    padding: 0 0.5em;
    /* ← 背景を広げるための内側余白 */
}


.features-pc a div p:last-child {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.features-sp {
  display: none;
}

@media (max-width: 1080px) {
  .features-pc {
    display: none;
  }
  .features-sp {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
  }
  

  .feature-row {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }


  .header-line {
    display: flex;
    justify-content: center;
    /* ← 横方向中央揃え */
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
  }

  .circle-number {
    width: 40px;
    height: 40px;
    background-color: #1e9dd4;
  color: #fff !important;
  /* ← 強制的に白にする */
    border-radius: 50%;
    font-weight: bold;
    text-align: center;
    line-height: 40px;
    font-size: 18px;
    margin: 0;
    flex-shrink: 0;
  }

  .feature-title {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    color: #333;
      background: linear-gradient(to bottom, transparent 60%, rgba(30, 157, 212, 0.25) 50%);
      background-size: 100% 90%;
      background-repeat: no-repeat;
  }

  .feature-text {
    font-size: 15px;
    color: #444;
    line-height: 1.3;
    margin: 0;
    display: flex;
    justify-content: center;
    /* ← 横方向中央揃え */
    align-items: center;

  }



}
.feature-heading span {
  color: #333;
  padding: 10px 30px;
  border-bottom: 3px dashed #555;
  font-size: 20px;
  text-align: center;
}

.two-column {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.two-column .column {
  flex: 1;
}

.two-column .right img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.two-column .left p {
  font-size: 32px;
  line-height: 1.8;
  color: #333;
  margin: 0;
  font-weight: bold;
  padding: 40px 0;
}

.about-notice {
  display: block;
  font-size: 12px;
  padding: 20px;
  line-height: 1.5;
  background-color: #f7f7f7;
}

.about-title {
  display: inline-block;
  font-weight: bold;
  color: #444;
  padding: 2px;
}

@media screen and (max-width: 900px) {
  .two-column {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .two-column .left p {
  font-size: clamp(12px, 5vw, 40px);
  padding-bottom: 0;
  }

  .two-column .right img {
    max-width: 100%;
    margin-top: 20px;
  }

  .two-column .left span {
    font-size: 12px;
    display: inline-block;
    margin-top: 12px;
    color: #666;
  }
}

.hajime-title {
  color: #ff9900;
  font-size: 20px;
}

.hajime-text {
  font-size: 15px;
  line-height: 1.4;
}


.customer-contact {
  text-align: center;
  border: 1px solid #ccc;
  padding-bottom: 13px;
  margin-top: 50px;
}

.customer-contact p {
  color: #1e9dd4;
  font-size: 13px;
}
