/*-----------------------------------------------------
大見出し
-------------------------------------------------------*/

/* 中見出し
------------------------------------------------*/

/* 小見出し/コメント */

/* 1400px以下 */
@media only screen and (max-width: 1399px) {}

/* 1200px以下 */
@media only screen and (max-width: 1199px) {}

/* タブレット以下 */
@media only screen and (max-width: 991px) {}

/* スマホ */
@media only screen and (max-width: 767px) {}

/*-----------------------------------------------------
共通
-------------------------------------------------------*/

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

a:hover {
  opacity: 0.7;
}


/* font・背景
------------------------------------------------*/
.text-bold {
  font-weight: bold;
}

.text-bold02 {
  font-weight: 900;
}

.text-indent {
  padding-left: 1em;
  text-indent: -1em;
}

.text-orange {
  color: #ff6c00;
}

.text-white {
  color: #fff;
}

.text-grey {
  color: #4d4e51;
}

.text-navy {
  color: #00294d;
}

.text-beige {
  color: #9b8000;
}

.text-grey {
  color: #333333;
}

.bg-blue {
  background-color: #e8edf2;
}

.bg-white {
  background-color: #fff !important;
}

/* Bootstrap上書き
------------------------------------------------*/

.btn-primary {
  min-height: 3em;
  line-height: 3em;
  border-radius: 20px;
  background-color: #fff;
  border: double 3px #14a83b;
  color: #14a83b;
}

.btn-primary:hover {
  background-color: #14a83b;
  border: double 3px #14a83b;
  color: #fff;
}

.btn-success {
  background: #FFC600;
  color: #333;
  border-color: #FFC600;
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
  color: #333;
  pointer-events: none;
  background-color: #FFC600;
  border-color: #FFC600;
  opacity: var(--bs-btn-disabled-opacity);
}

.btn-c {
  position: relative;
  padding: 1.5rem 1rem;
  color: #333;
  border-radius: 100vh;
  background: #ffc600;
  -webkit-box-shadow: 0 5px 0 #493f1d;
  box-shadow: 0 5px 0 #493f1d;
  transition: all 0.3s;
  font-weight: bold;
  font-size: 1.5rem;
}

.btn-c i {
  margin-right: 1rem;
}

.btn-c:hover {
  -webkit-transform: translate(0, 3px);
  transform: translate(0, 3px);
  color: #fff;
  background: #fbd857;
  -webkit-box-shadow: 0 2px 0 #008661;
  box-shadow: 0 2px 0 #c7a019;
}

.btn-b {
  position: relative;
  padding: 1.5rem 1rem;
  color: #333;
  border-radius: 100vh;
  background: #ffc600;
  -webkit-box-shadow: 0 5px 0 #493f1d;
  box-shadow: 0 5px 0 #493f1d;
  transition: all 0.3s;
  font-weight: bold;
  font-size: 1.5rem;
  width: 100%;
}

.btn-b i {
  margin-right: 1rem;
}

.btn-b:hover {
  -webkit-transform: translate(0, 3px);
  transform: translate(0, 3px);
  color: #fff;
  background: #fbd857;
  -webkit-box-shadow: 0 2px 0 #008661;
  box-shadow: 0 2px 0 #c7a019;
}

@media only screen and (max-width: 991px) {
  .btn-b {
    padding: 1.5rem 0.5rem;
    font-size: 1.2rem;
  }
}



/*-----------------------------------------------------
 汎用タイトル
------------------------------------------------*/
.ttl {
  display: inline-block;
  position: relative;
  color: #00294d;
  display: flex;
  justify-content: center;
}

.ttl:before {
  content: '';
  display: inline-block;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #9b8000;
}

.ttl_box {
  padding-bottom: 3rem;
}


/*-----------------------------------------------------
 header
------------------------------------------------*/

.h_logo {
  padding: 0.5em;
}

/* LINEでオンライン診療のCTA */
.menu-contact-icon a {
  display: flex !important;
  /* テーマのCSSに負けないように強制 */
  flex-direction: column;
  align-items: center;
  /* 左右の中央揃え */
  justify-content: center;
  /* 上下の中央揃え */
  text-align: center;
  /* テキストの中央揃え */
  width: 100%;
  /* リンクの幅を緑の枠いっぱいに広げる */
  padding-left: 0 !important;
  /* テーマの左余白を打ち消す */
  padding-right: 0 !important;
  /* テーマの右余白を打ち消す */
}

/* 画像をアイコンとして表示する */
.menu-contact-icon a::before {
  content: "";
  display: block;
  width: 50px;
  /* 画像の横幅（必要に応じて調整） */
  height: 50px;
  /* 画像の高さ（必要に応じて調整） */
  background-image: url('../images/h_line_icon.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 auto 5px auto;
  /* 上0、左右自動（中央寄せ）、下5pxの余白 */
}

@media only screen and (max-width: 1199px) {
  .h_logo {
    width: 80%;
  }
}

@media only screen and (max-width: 991px) {
  .h_logo {
    width: 60%;
  }
}

@media only screen and (max-width: 767px) {
  .h_logo {
    width: 60%;
    padding: 0.2em;
  }
}

.navbar {
  padding: 0;
}

#Header .container-fluid {
  padding: 0;
  align-items: normal;
  background-color: rgb(255 255 255 / 40%);
}

.navbar-expand-lg .offcanvas-h100,
.navbar-expand-lg .offcanvas-h100 .offcanvas-body,
.menu-header-menu-container {
  height: 7rem !important;
  margin-left: auto;
}

.navbar-nav {
  height: 7rem !important;
}

@media only screen and (max-width: 767px) {

  .navbar-expand-lg .offcanvas-h100,
  .navbar-expand-lg .offcanvas-h100 .offcanvas-body,
  .menu-header-menu-container {
    height: 100% !important;
    margin-left: 0;
  }
}

.navbar-nav {
  align-items: center;
}

.menu-item {
  margin: 0.5rem 1.5rem;
}

.menu-item a {
  color: #333;
  font-size: 1.25rem;
  font-weight: 700;
}

@media only screen and (max-width: 1399px) {
  .menu-item a {
    font-size: 1.25rem;
  }
}

@media only screen and (max-width: 1200px) {
  .menu-item a {
    font-size: 1.0rem;
  }
}

.navbar-nav .current-menu-item a {
  color: #5bb2ff !important;
}

.navbar-nav .menu-item-contact a {
  color: #fff !important;
}

.header__contents {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 100%;
  z-index: 2;
}

@media only screen and (max-width: 991px) {
  .h_textbox {
    text-align: center;
  }
}

/* 1200px以下 */
@media only screen and (max-width: 1399px) {
  .nav-item {
    margin: 0 0.5rem;
  }
}

.menu-item-contact {
  display: table;
  width: 16rem;
  height: 100%;
  margin: 0;
}

.menu-item-contact a {
  display: table-cell;
  height: 100%;
  background: #06c755;
  color: #fff;
  text-align: center;
  vertical-align: middle;
}

@media only screen and (max-width: 767px) {
  .menu-item-contact a {
    padding: 1rem 0;
  }
  .navbar-nav .current-menu-item a {
    color: #ffe95b !important;
}
  .offcanvas {
    background-color: #96b7dff7 !important;
}}

/* =========================================
   ドロップダウンメニュー（サブメニュー）の設定
========================================= */

/* ▼ PC版（画面幅992px以上）のドロップダウン設定 ▼ */
@media (min-width: 992px) {
  /* 親項目を基準点にする */
  .navbar-nav .menu-item-has-children {
    position: relative;
  }
  
  /* サブメニューの基本設定（最初は隠す） */
  .navbar-nav .sub-menu {
    display: none;
    position: absolute;
    top: 100%; /* 親項目のすぐ下 */
    left: 50%;
    transform: translateX(-50%); /* メニューを中央揃えに */
    min-width: 260px; /* サブメニューの横幅 */
    background-color: #ffffffa2;
    padding: 0; /* ★ここを 0 に変更しました（大枠の余白をなくす） */
    margin: 0;
    list-style: none;
    z-index: 1000;
    border-radius: 8px;
    overflow: hidden; /* ★追加：ホバー時の色が角丸からはみ出ないようにする */
  }

  /* 念のため li タグの余白もリセット */
  .navbar-nav .sub-menu li {
    padding: 0;
    margin: 0;
  }

  /* 親項目にマウスを乗せたらサブメニューを表示する */
  .navbar-nav .menu-item-has-children:hover .sub-menu {
    display: block;
  }
  
  /* サブメニュー内のリンク文字の装飾 */
  .navbar-nav .sub-menu a {
    display: block;
    /* ★文字の周りの余白はここで調整します。0.2remだと文字が詰まりすぎるため、少しだけ広げました。お好みで「0.5rem」などに調整してください */
    padding: 10px 15px; 
    color: #00294d !important; /* サイトのメインカラー（紺色） */
    font-size: 15px !important; /* メインメニューより少し小さく */
    font-weight: bold;
    text-decoration: none;
    line-height: 1.5;
    white-space: normal !important; /* メニュー名の<br>タグを有効にするため必須 */
    transition: background-color 0.2s;
  }

  /* サブメニューにマウスを乗せた時の背景色 */
  .navbar-nav .sub-menu a:hover {
    background-color: #87c3ff8e; /* サイトで使われている薄い青色 */
    opacity: 1; /* 共通の a:hover の透明化を打ち消す */
  }
}

/* ▼ スマホ版（Offcanvasメニュー内）の階層表示設定 ▼ */
@media (max-width: 991px) {
  /* メニュー全体を中央揃えに強制する */
  .navbar-nav {
    width: 100%;
    text-align: center; 
    padding-top: 1rem;
  }

  /* 親メニュー項目（HOME〜ABOUTなど）の調整 */
  .navbar-nav .menu-item {
    margin: 0.2rem 0; /* 左右の変な余白を消して中央に揃える */
    width: 100%;
  }
  
  .navbar-nav .menu-item > a {
    display: inline-block;
    padding: 10px 0;
  }

  /* サブメニューの枠組み（薄いグレーの背景で囲う） */
  .navbar-nav .sub-menu {
    list-style: none;
    padding: 15px 10px; /* 内側の余白 */
    margin: 0 auto 20px auto; /* 中央寄せ＆下の余白 */
    width: 95%; /* 横幅を少し狭める */
    background-color: #f2f7fa80; /* うっすらとした青みグレーの背景 */
    border-radius: 12px; /* 角を丸くする */
  }
  
  /* サブメニュー内のリンク文字 */
  .navbar-nav .sub-menu a {
    display: block;
    padding: 10px 0;
    color: #444444 !important; /* 親メニューより少しだけ薄い色に */
    font-size: 14px !important; /* 親メニューより少し小さく */
    font-weight: normal;
    line-height: 1.6;
    white-space: normal !important;
    border-bottom: 1px dashed #d1e2ec; /* 項目間に点線を引いて見やすく */
  }

  /* サブメニューの一番下の点線は消す */
  .navbar-nav .sub-menu li:last-child a {
    border-bottom: none;
    padding-bottom: 0;
  }
  
  /* サブメニューの一番上の余白調整 */
  .navbar-nav .sub-menu li:first-child a {
    padding-top: 0;
  }

  /* LINEボタンの親要素の調整（画面端にベタッとくっつかないようにする） */
  .navbar-nav .menu-item-contact {
    margin: 2rem auto 0 auto !important; /* 上に余白をあけつつ中央寄せ */
    width: 90%; /* 横幅を少し狭める */
    max-width: 320px; /* 大きくなりすぎないように制限 */
  }
}

/*-----------------------------------------------------
 TOP以外header
------------------------------------------------*/

.keyvisual {
  position: relative;
  height: 350px;
  min-height: 350px;
  background: url(../images/header_bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 9;
}

.keyvisual .menu-item a {
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .keyvisual .menu-item a {
    color: #333;
  }

  .keyvisual .menu-item-contact a {
    color: #fff;
  }
}

.keyvisual .navbar-nav .current-menu-item a {
  color: #00294d;
  ;
}

.keyvisual .navbar-nav .menu-item-contact.current-menu-item a {
  color: #fff;
}

.h_text {
  margin-bottom: 0;
    line-height: 1.15;
    font-size: 1.8rem;
    font-weight: bold;
    color: #00294d;
}
.h_text02{
  font-size: 3.5rem;
  margin-top: -0.5rem;
}


@media only screen and (max-width: 991px) {
  .keyvisual {
  height: 250px;
  min-height: 250px;
}
  .h_text {
    color: #00294d;
    font-size: 2rem;
  }
}

@media only screen and (max-width: 767px) {
  .h_text {
    font-size: 1.5rem;
  }
  .h_text02{
  font-size: 3rem;
}
}

/*-----------------------------------------------------
CTA
-------------------------------------------------------*/
.cta {
  position: relative;
  padding: 5rem 0;
  background-image: url(../images/cta_bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* --- コンテナの幅調整 --- */
.cta-box {
  max-width: 900px;
  margin: 0 auto;
}

/* --- 上部：紺色の吹き出し帯 --- */
.cta-header {
  background-color: #00294d;
  padding: 1rem;
  position: relative;
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

.cta-header::after {
  content: "";
  position: absolute;
  bottom: -1.45rem;
  left: 50%;
  transform: translateX(-50%);
  border-width: 1.5rem 2rem 0 2rem;
  border-style: solid;
  border-color: #00294d transparent transparent transparent;
  z-index: 2;
}

/* --- 下部：グレーのコンテンツエリア --- */
.cta-body {
  background-color: #ffffffab;
  padding: 2rem 1rem;
}

.cta-item {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* --- 価格表記エリア --- */
.cta-price-wrap {
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin-bottom: 1.5rem;
}

.cta-label {
  font-size: 1.6rem;
  margin-right: 0.5rem;
}

.cta-number {
  font-size: 6.5rem;
  line-height: 0.9;
  background: linear-gradient(to bottom, #fff7c7 0%, #d4af37 40%, #b8860b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(4px 4px 1px rgba(0, 0, 0, 0.4));
  margin-right: 0.25rem;
  letter-spacing: -2px;
}

.cta-yen {
  font-size: 2.5rem;
  font-weight: bold;
  background: linear-gradient(to bottom, #fff7c7 0%, #d4af37 40%, #b8860b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(4px 4px 1px rgba(0, 0, 0, 0.4));
}

.cta-tax {
  font-size: 1.2rem;
  margin-left: 0.5;
}

/* --- LINEボタン --- */
.btn-line-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #06c755;
  color: #fff !important;
  font-size: 2rem;
  font-weight: bold;
  padding: 15px 80px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  letter-spacing: 0.1em;
}

.btn-line-cta i {
  font-size: 2.5rem;
  margin-right: 15px;
}

.btn-line-cta:hover {
  background-color: #05b04b;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 1399px) {
  .cta {
    padding: 20px 0;
  }

  .cta-box {
    max-width: 850px;
  }
}

@media screen and (max-width: 1199px) {
  .cta {
    padding: 20px 0;
  }

  .cta-box {
    max-width: 700px;
  }

  .cta-header {
    font-size: 1.2rem;
    line-height: 1.5;
  }

  .cta-body {
    padding: 1.5rem 1rem;
  }

  .cta-item {
    font-size: 1.8rem;
  }

  .cta-number {
    font-size: 5rem;
  }
}

@media screen and (max-width: 991px) {
  .cta {
    padding: 20px 0;
  }

  .cta-header {
    padding: 0.5rem;
    font-size: 1rem;
  }

  .cta-body {
    padding: 1.5rem 0.5rem;
  }

  .cta-item {
    font-size: 1.4rem;
  }

  .cta-price-wrap {
    margin-bottom: 1rem;
  }

  .cta-number {
    font-size: 4rem;
  }

  .cta-box {
    max-width: 500px;
  }

  .btn-line-cta {
    font-size: 1.5rem;
    padding: 15px 45px;
  }
}

@media screen and (max-width: 767px) {
  .cta {
    padding: 40px 15px;
  }

  .cta-header {
    font-size: 1.1rem;
    padding: 15px;
  }

  .cta-header::after {
    border-width: 15px 20px 0 20px;
    bottom: -15px;
  }

  .cta-body {
    padding: 20px 10px 20px;
  }

  .cta-item {
    font-size: 1.15rem;
    margin-bottom: 0;
  }

  .cta-price-wrap {
    margin-bottom: 25px;
    align-items: flex-end;
  }

  .cta-label {
    font-size: 1rem;
    margin-right: 0.5rem;
    line-height: 1.1;
  }

  .cta-number {
    font-size: 3.5rem;
  }

  .cta-yen {
    font-size: 1.8rem;
  }

  .cta-tax {
    font-size: 1rem;
    margin-left: 0.25rem;
  }

  .btn-line-cta {
    font-size: 1.2rem;
    padding: 15px 20px;
  }

  .btn-line-cta img {
    width: 2rem;
  }
}

/*-----------------------------------------------------
 main
------------------------------------------------*/
.main-content {
  padding: 5rem 0 0;
}

.main-content p {
  color: #00294d;
}

@media only screen and (max-width: 992px) {
  .main-content {
    padding: 5rem 0 0;
  }
}

/*-----------------------------------------------------
 Footer
------------------------------------------------*/

#Footer {
  background-color: #152e39;
  color: #fff;
  padding: 3em 0;
}

#Footer .navbar-nav {
  display: block;
}

#Footer li {
  display: inline;
  padding: 0em 1em;
  padding-left: 0;
  font-size: 1.25rem;
  white-space: nowrap;
}

@media only screen and (max-width: 1200px) {
  #Footer li {
    font-size: 1.12rem;
  }
}

@media only screen and (max-width: 991px) {
  #Footer li {
    font-size: 1.0rem;
  }
}
@media only screen and (max-width: 767px) {
  #Footer img {
    width: 9rem;
  }
}
#Footer .menu-item {
  margin: 0;
  line-height: 0.5em;
}

#Footer .menu-item a {
  color: #fff;
  font-weight: normal;
}

/*-----------------------------------------------------
トップページ
-------------------------------------------------------*/

/* Header(FV)
------------------------------------------------*/
#Header {
  position: relative;
  height: 850px;
  min-height: 850px;
  overflow: hidden;
  background: url(../images/fv_bg.png);
  background-position: bottom;
  background-size: cover;
}

@media only screen and (max-width: 1399px) {
  #Header {
    height: 700px;
    min-height: 700px;
  }
}

@media only screen and (max-width: 1199px) {
  #Header {
    height: 600px;
    min-height: 600px;
  }
}

@media only screen and (max-width: 991px) {
  #Header {
    height: 480px;
    min-height: 480px;
  }
}

@media only screen and (max-width: 767px) {

  /* 既存の #Header の設定をスマホ画像用にリセット */
  #Header {
    background: none !important;
    /* スマホでは背景画像を消す */
    height: auto !important;
    /* 高さを100svhから画像の高さ(auto)に変更 */
    min-height: 0 !important;
  }

  .header__contents {
    position: relative;
    top: 5rem;
    left: auto;
    transform: none;
  }

  .header__contents .container {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
  }
}

/* FV内部のデザイン
------------------------------------------------*/
.fv_inner {
  position: relative;
  z-index: 2;
  padding-top: 0;
  /* 全体の縦位置。ヘッダーの高さに合わせて調整してください */
}

/* --- 上部エリア（タイトル類） --- */
.fv_top_area {
  margin-bottom: 2rem;
  padding-left: 8rem;
}

.fv_badge {
  display: inline-block;
  background-color: #00294d;
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
  padding: 0.3rem 1rem;
  border-radius: 50vw;
  margin-bottom: 0.5rem;
  width: 30rem;
  text-align: center;
}

.fv_main_title {
  color: #00294d;
  font-size: 4.5rem;
  font-weight: bold;
  margin-bottom: 0;
  line-height: 1.2;
  letter-spacing: 0.1em;
}

/* --- 下部エリア（2カラム：左iPhone / 右テキスト） --- */
.fv_bottom_area {
  display: flex;
  align-items: flex-start;
  /* 上で揃える */
  gap: 2rem;
  /* iPhoneと右側の文字の隙間 */
  padding-left: 10%;
}

/* --- iPhone画像エリア（左側） --- */
.fv_iphone_box {
  width: 16rem;
  /* iPhoneの大きさを固定 */
  /*  flex-shrink: 0; 画面が狭くなってもiPhoneを縮ませない */
}

.fv_iphone_img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.25));
}

/* --- テキストエリア（右側） --- */
.fv_text_box {
  padding-top: 15px;
  /* iPhoneの上端とのバランス調整 */
}

.fv_sub_title {
  color: #002b5c;
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

/* --- 価格表記 --- */
.fv_price_box {
  display: flex;
  align-items: flex-end;
  /* 下ラインで揃える */
  margin-bottom: 2rem;
}

.fv_price_label {
  background-color: #002b5c;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  width: 5rem;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-right: 15px;
  margin-bottom: 0;
}

.fv_price_number {
  font-size: 6.5rem;
  font-weight: bold;
  line-height: 0.9;
  /* 金色のグラデーション */
  background: linear-gradient(to bottom, #fff7c7 0%, #d4af37 40%, #b8860b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(4px 4px 1px rgba(0, 0, 0, 1));
  margin-right: 5px;
  letter-spacing: -2px;
  /* 数字の間隔を詰める */
}

.fv_price_unit {
  color: #00294d;
  font-weight: bold;
  line-height: 1.1;
}

.fv_tax {
  font-size: 1.2rem;
}

.fv_yen {
  font-size: 2.5rem;
  background: linear-gradient(to bottom, #fff7c7 0%, #d4af37 40%, #b8860b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(4px 4px 1px rgba(0, 0, 0, 1));
}

/* --- 3つの丸い要素 --- */
.fv_circles {
  display: flex;
  gap: 15px;
}

.fv_circle {
  width: 10rem;
  height: 10rem;
  background-color: rgba(255, 255, 255, 0.95);
  border: 2px solid #d4af37;
  /* フチを少し細く修正 */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
  color: #00294d;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  line-height: 1.3;
}

/* --- レスポンシブ調整 --- */
@media only screen and (max-width: 1399px) {
  .fv_inner {
    padding-top: 2vh;
  }

  .fv_top_area {
    margin-bottom: 1.5rem;
  }

  .fv_badge {
    font-size: 1.8rem;
    margin-bottom: 0.25rem;
    width: 25rem;
  }

  .fv_main_title {
    font-size: 3.5rem;
  }

  .fv_iphone_box {
    width: 11rem;
  }

  .fv_text_box {
    padding-top: 0;
  }

  .fv_sub_title {
    font-size: 3rem;
  }

  .fv_price_box {
    margin-bottom: 1rem;
  }

  .fv_circles {
    justify-content: center;
  }

  .fv_circle {
    width: 8rem;
    height: 8rem;
    font-size: 1rem;
  }
}

@media only screen and (max-width: 1199px) {
  .fv_inner {
    padding-top: 0rem;
  }

  .fv_top_area {
    margin-bottom: 1rem;
  }

  .fv_badge {
    font-size: 1.5rem;
    width: 23rem;
  }

  .fv_main_title {
    font-size: 2.8rem;
  }

  .fv_iphone_box {
    width: 10rem;
  }

  .fv_text_box {
    padding-top: 0;
  }

  .fv_sub_title {
    font-size: 3rem;
  }

  .fv_price_label {
    margin-bottom: -0.6rem;
  }

  .fv_price_box {
    margin-bottom: 1rem;
  }

  .fv_price_number {
    font-size: 5.5rem;
  }

  .fv_circles {
    justify-content: center;
  }

  .fv_circle {
    width: 7rem;
    height: 7rem;
    font-size: 1rem;
  }
}

@media only screen and (max-width: 991px) {
  .fv_inner {
    padding-top: 1vh;
  }

  .fv_top_area {
    margin-bottom: 0.5rem;
    padding-left: 0;
  }

  .fv_badge {
    font-size: 1.25rem;
    width: 20rem;
  }

  .fv_main_title {
    font-size: 2.5rem;
  }
  .fv_iphone_img {
    filter: none;
  }

  .fv_bottom_area {
    gap: 1rem;
    padding-left: 0;
  }

  .fv_iphone_box {
    width: 9rem;
  }

  .fv_text_box {
    padding-top: 0;
  }

  .fv_sub_title {
    font-size: 2.5rem;
    margin-bottom: -0.5rem;
  }

  .fv_price_label {
    font-size: 1.25rem;
    width: 4rem;
    height: 4rem;
    margin-bottom: -0.4rem;
    margin-right: 0.25rem;
  }

  .fv_price_box {
    margin-bottom: 1rem;
  }

  .fv_price_number {
    font-size: 5rem;
  }

  .fv_tax {
    font-size: 1rem;
  }

  .fv_circles {
    justify-content: center;
  }

  .fv_circle {
    width: 6.5rem;
    height: 6.5rem;
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 767px) {
  .fv_sp_only {
    width: 100%;
    margin-top: -2rem;
    padding-bottom: 5rem;

  }

  .fv_sp_img {
    width: 100%;
    height: auto;
    display: block;
  }
}

/* ユアクリとは
------------------------------------------------*/
.top_about {
  background-image: url(../images/top_about_bg.png);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  padding: 50px 0;
  min-height: 400px;
  display: flex;
  align-items: center;

}

.top_about_content {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.top_about_box {
  width: 55%;
}

/* --- テキスト --- */
.top_about_ttl {
  font-size: 3rem;
  letter-spacing: 0.3rem;
  display: flex;
  align-items: center;
}

.top_about_txt {
  line-height: 1.8;
  font-size: 1.8rem;
}

.top_about_txt_big {
  font-size: 2.3rem;
}

.top_about_txt_bg {
  background-color: #9b8000;
  color: #fff;
  border-radius: 50vw;
  padding: 0.25rem 1rem;
  margin: 0 0.3rem;
}

/* --- レスポンシブ調整 --- */
@media screen and (max-width: 1199px) {
  .top_about_logo {
    width: 12rem;
  }

  .top_about_ttl {
    font-size: 2.5rem;
  }

  .top_about_txt {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 991px) {
  .top_about {
    min-height: 350px;
  }

  .top_about_box {
    width: 65%;

  }

  .top_about_txt_big {
    font-size: 2.0rem;
  }

  .top_about_txt {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 767px) {
  .top_about {
    background-position: -16.5rem 1rem;
    padding: 6rem 0 2rem;
    min-height: 350px;
    align-items: flex-start;
  }

  .top_about_content {
    justify-content: center;
  }

  .top_about_box {
    width: 100%;
    background-color: #ffffffa6;
    border-radius: 15px;
    padding: 0.5rem;
  }

  .top_about_logo {
    width: 8rem;
  }

  .top_about_ttl {
    font-size: 1.25rem;
    justify-content: center;
    letter-spacing: 0.1rem;
  }

  .top_about_txt_big {
    font-size: 1.8rem;
  }

  .top_about_txt {
    font-size: 1.2rem;
  }

  .top_about_txt_bg {
    padding: 0.25rem 0.5rem;
    margin: 0 0.2rem;
  }
}

@media screen and (max-width: 575px) {
  .top_about {
    background-position: -16.5rem 1rem;
    padding: 9rem 0 2rem;
    min-height: 400px;
    align-items: flex-start;
  }

  .top_about_content {
    justify-content: center;
  }

  .top_about_box {
    width: 86%;
    background-color: #ffffffa6;
    border-radius: 15px;
    padding: 0.5rem;
  }

  .top_about_logo {
    width: 8rem;
  }

  .top_about_ttl {
    font-size: 1.25rem;
    justify-content: center;
    letter-spacing: 0.1rem;
  }

  .top_about_txt_big {
    font-size: 1.3rem;
  }

  .top_about_txt {
    font-size: 1rem;
  }

  .top_about_txt_bg {
    padding: 0.25rem 0.5rem;
    margin: 0 0.2rem;
  }
}

/* ユアクリオンライン診療サービス内容
------------------------------------------------*/
.top_service{
  padding: 5rem 0;
}
.top_service_content {
  display: flex;
  justify-content: center;
  gap: 15px;
  max-width: 1000px;
  margin: 0.5rem auto 0;
}

/* 各カードのベース設定 */
.top_service-card {
  position: relative;
  flex: 1;
  /* 幅を均等にする */
  border-radius: 15px;
  padding: 2.5rem 1rem 1.5rem;
  /* 上部はバッジがあるため広めに設定 */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* 交互の背景色設定 */
.top_service-card.color-dark {
  background-color: #7CA0C7;
}

.top_service-card.color-light {
  background-color: #92BBE0;
}

/* 丸い数字バッジの設定 */
.top_service-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  /* カードの上辺中央に半分はみ出させる */
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 4px solid #ffffff;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* バッジの背景色を親カードに合わせる */
.top_service-card.color-dark .top_service-number {
  background-color: #7CA0C7;
}

.top_service-card.color-light .top_service-number {
  background-color: #92BBE0;
}

/* 画像エリアの設定 */
.top_service-image {
  width: 100%;
  margin-bottom: 20px;
}

/* テキストエリアの設定 */
.top_service-txt {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.3;
  margin-top: auto;
  margin-bottom: auto;
}

/* --- レスポンシブ調整 --- */
@media screen and (max-width: 991px) {
  .top_service-card {
    padding: 2.5rem 0.5rem 1.5rem;
  }

  .top_service-txt {
    font-size: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .top_service{
  padding: 3rem 0;
}
  .top_service_content {
    flex-direction: column;
    align-items: center;
    gap: 2.25rem;
    margin-top: 2rem;
  }

  .top_service-card {
    padding: 1.5rem 0.5rem 1rem;
  }

  .top_service-image {
    width: 30%;
    margin-bottom: 0px;
  }

  .top_service-card {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
  }

  .top_service-txt {
    width: 60%;
    font-size: 1.25rem;
  }
}

/* ユアクリの3つの特徴
------------------------------------------------*/
.top_point{
  padding: 5rem 0;
}
.top_point_content {
  padding: 3rem;
  border-radius: 30px;
}

@media screen and (max-width: 991px) {
  .top_point_ttl {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .top_point{
  padding: 3rem 0;
}
  .top_point_content {
    padding: 1.5rem;
  }
}

/* あなたの知りたい内容からご覧ください
------------------------------------------------*/
.top_contents{
  padding: 5rem 0;
}
.top_contents_ttl {
  display: flex;
  justify-content: center;
  position: relative;
  max-width: 60rem;
  margin-bottom: 2rem;
  padding: 1rem;
  border-radius: 50vw;
  background-color: #00294d;
}

.top_contents_ttl::before {
  position: absolute;
  bottom: -15px;
  width: 30px;
  height: 15px;
  background-color: #00294d;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: '';
}

/*ホバー時の動き*/
.custom-card-link {
  display: block;
  text-decoration: none;
  height: 100%;
  transition: transform 0.2s ease-in-out;
}

.custom-card-link:hover {
  transform: translateY(-3px);
  /* ホバー時に少し浮くエフェクト */
}

/* ゴールドのグラデーション枠線 */
.gold-border {
  /* 金属風のグラデーションを設定 */
  background: linear-gradient(135deg, #d4af37 0%, #fff2b5 25%, #d4af37 50%, #fff2b5 75%, #d4af37 100%);
  padding: 4px;
  /* 枠の太さ */
  height: 100%;
}

/* 内側のコンテンツエリア */
.inner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 2rem;
  height: 100%;
}

/* 背景色のバリエーション（画像に合わせて交互に設定） */
.bg-light-blue {
  background-color: #dbe6f2;
}

.bg-light-cyan {
  background-color: #cbe6ee;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.card-subtitle {
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0;
}

/* 右側の丸い矢印アイコン */
.play-icon-circle {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
  /* 影をつける */
  position: relative;
  margin-left: 1rem;
}

/* CSSで三角形を作成して中央に配置 */
.play-icon-circle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  /* 中央寄せの微調整 */
  border-style: solid;
  border-width: 9px 0 9px 14px;
  border-color: transparent transparent transparent #b5d1e8;
  /* 矢印の水色 */
}
@media only screen and (max-width: 991px){
  .card-title {
    font-size: 1.4rem;
}
}
@media (max-width: 767px) {
  .top_contents{
  padding: 3rem 0;
}
  .top_contents_ttl {
    font-size: 1.5rem;
  }

  .inner-content {
    padding: 1.25rem 1.5rem;
  }

  .card-title {
    font-size: 1.25rem;
  }

  .card-subtitle {
    font-size: 0.85rem;
  }

  .play-icon-circle {
    width: 40px;
    height: 40px;
  }

  .play-icon-circle::after {
    border-width: 7px 0 7px 11px;
  }
}

/* オンラインで完結！処方までの流れ
------------------------------------------------*/
.top_step{
  padding: 5rem 0;
}
.top_step_text {
  font-size: 1.3rem;
}

.top_step_content {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 991px){
  .top_step_text {
  font-size: 1.2rem;
}

}
@media (max-width: 767px) {
  .top_step{
  padding: 3rem 0;
}
  .top_step_content {
    flex-direction: column;
  }

  .top_step_content img {
    width: 12rem;
  }

  .top_step_text {
    font-size: 1.5rem;
  }
}

/*-----------------------------------------------------
SERVICE
-------------------------------------------------------*/

/* そもそもマンジャロのオンライン診療とはどいうもの？
------------------------------------------------*/
.service_about{
  background-image: url(../images/service_about.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 2rem 0;
}
.service_about_ttlbox{
  padding-bottom: 2rem;
}
.service_about_ttl{
  font-size: 2rem;
}
.service_about_text_big{
  font-size: 2rem;
  font-weight: bold;
}
.service_about_text{
  font-size: 1.2rem;
  color: #444 !important;
  font-weight: 500;
  line-height: 2;
}
@media (max-width: 1199px){
.service_about_ttlbox{
  padding-bottom: 1rem;
}
.service_about_ttl{
  font-size: 1.8rem;
}
.service_about_text_big{
  font-size: 1.8rem;
}
.service_about_text{
  line-height: 1.8;
}
}
@media (max-width: 991px){
.service_about_ttlbox{
  padding-bottom: 0.5rem;
}
.service_about_ttl{
  font-size: 1.5rem;
}
.service_about_text_big{
  font-size: 1.5rem;
}
.service_about_text{
  font-size: 1rem;
}
}
@media (max-width: 767px){
  .service_about_ttlbox{
  padding-bottom: 0;
}
  .service_about_ttl{
  font-size: 1.3rem;
  padding-bottom: 1rem;
}
.service_about_text_big{
  font-size: 1.2rem;
}
.service_about_text{
  font-size: 1rem;
  line-height: 1.5;
}
}

/* ユアクリオンライン診療サービス内容
------------------------------------------------*/
.service_step{
  padding: 5rem 0;
}
.service_step_ttl{
	font-size:1.2rem;
}
.service_step_text {
  font-size: 1.2rem;
}
.service_step_content img {
    width: 12rem;
  }
.service_step_content {
  display: flex;
  justify-content: center;
  width: 100%;
}
.service_step-card{
  width: 21%;
  margin: 0 1rem;
}
@media (max-width: 991px){
  .service_step-card{
  width: 25%;
  margin: 0 0.2rem;
}
.service_step_text {
  font-size: 1rem;
}
.service_step-card p{
  font-size: 0.9rem;
}
}
@media (max-width: 767px) {
  .service_step{
  padding: 3rem 0;
}
  .service_step_content {
    flex-direction: column;
  }
.service_step-card{
  width: 100%;
  margin: 0.5rem 0;
}
  .service_step_content img {
    width: 10rem;
  }
  .service_step_text {
    font-size: 1.2rem;
    margin-bottom: 0;
  }
  .service_step-card p{
  font-size: 1rem;
  width: 15rem;
}
}

/* ユアクリが選ばれる理由
------------------------------------------------*/
.service_reason{
  background: linear-gradient(180deg, #e8edf2 50%, #ffffff 50%);
  padding: 5rem 0;
}
.service_reason_box{
  padding: 2rem 0;
}
.service_reason_ttl{
  padding-bottom: 1rem;
}
.service_reason_box p,.service_reason_box li{
  font-size: 1.2rem;
}
@media (max-width: 991px){
  .service_reason_box{
    align-items: center;
  }
  .service_reason_textbox{
    width: 70%;
    margin: 0 auto;
  }
}
@media (max-width: 767px){
  .service_reason{
  padding: 3rem 0;
}
  .service_reason .ttl_box{
    padding-bottom: 0;

  }
  .service_reason_box{
    align-items: center;
  }
  .service_reason_textbox{
    width: 100%;
  }
  .service_reason_box p,.service_reason_box li{
  font-size: 1rem;
}
}

/* なぜオンラインでも安心なのか？
------------------------------------------------*/
.service_anshin{
  background-color: #ddf7ff;
  padding: 5rem 0rem;
}
.service_anshin_ttl{
  font-size: 1.5rem;
}
.service_anshin_content {
  display: flex;
  justify-content: center;
  width: 100%;
}
.service_anshin-card{
  padding: 1rem 0;
  width: 33.33%;
  margin: 0 1rem;
}
.service_anshin_text{
  font-size: 1.4rem;
}
.service_anshin-card p{
  padding: 0 1rem;
  font-size: 1.1rem;
}
@media (max-width: 991px) {
.service_anshin-card{
  margin: 0 0.25rem;
}
.service_anshin_text{
  font-size: 1.2rem;
}}
@media (max-width: 767px) {
  .service_anshin{
  padding: 3rem 0rem;
}
  .service_anshin_ttl{
  font-size: 1.2rem;
}
  .service_anshin_content {
    flex-direction: column;
  }
  .service_anshin-card{
  padding: 1rem 0;
  width: 100%;
  margin: 1rem 0;
}
.service_anshin_text{
  font-size: 1.4rem;
}
}

/* 通院との違い
------------------------------------------------*/
.service_hikaku{
  padding: 5rem 0;
}
.service_hikaku_text{
  font-size: 2.4rem;
}
@media (max-width: 991px){
  .service_hikaku_text{
  font-size: 2rem;
}}
@media (max-width: 767px){
  .service_hikaku{
  padding: 3rem 0;
}
  .service_hikaku_text{
  font-size: 1.4rem;
}}

/* こんな方に選ばれています
------------------------------------------------*/
.service_point{
  padding: 5rem 0;
}
  .service_point-box {
    padding: 1rem;
  }

  .service_point-list {
    display: grid;
    /* PC表示: 1行に4個並べる */
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .service_point-item {
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: 2px solid transparent;
    background: 
      linear-gradient(#ffffff, #ffffff) padding-box,
      linear-gradient(135deg, #fbeeb1 0%, #d59f33 100%) border-box;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0.5rem;
  }

  .service_point p {
    margin: 0;
    font-weight: 700;
    line-height: 1.6;
    font-size: 1.5rem;
  }
  @media (max-width: 991px) {
    .service_point-list {
    gap: 0.5rem;
  }
    .service_point p {
    font-size: 1.2rem;
  }
  }
  @media (max-width: 767px) {
    .service_point{
  padding: 3rem 0;
}
    .service_point-list {
      grid-template-columns: repeat(2, 1fr);
      gap: 0.7rem; 
    }

    .service_point-item p {
      font-size: 1rem;
      line-height: 1.5;
    }
  }


/* ご利用前に知っておきたいこと
------------------------------------------------*/
.service_announce{
  padding: 5rem 0;
}
.service_announce_box{
  background-color: #fff;
  border: 8px solid #2d6291;
  border-radius: 30px;
  padding: 1rem 4rem;
}

.service_announce_box li{
  font-size: 1.2rem;
  line-height: 2;
  font-weight: 500;
}
.service_announce_text{
  font-size: 2rem;
  padding-top: 1rem;
}
.service_announce_text02{
  font-size: 1.2rem;
}
.service_announce_box .text-indent {
    padding-left: 1em;
    text-indent: -0.6em;
}
@media only screen and (max-width: 991px){
.service_announce_text{
  font-size: 1.8rem;
  padding-top: 1rem;
}
}
@media only screen and (max-width: 767px){
  .service_announce{
  padding: 3rem 0;
}
  .service_announce_box{
  padding: 1rem;

}
.service_announce_box li{
  font-size: 1rem;
}
.service_announce_text{
  font-size: 1.1rem;
  padding-top: 1rem;
}
.service_announce_text02{
  font-size: 1rem;
}
}

/*-----------------------------------------------------
PRICE
-------------------------------------------------------*/
/* マンジャロ料金について
------------------------------------------------*/
.price_about{
  background-image: url(../images/price_about.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 5rem 0;
}
.price_about_ttlbox{
  padding-bottom: 2rem;
}
.price_about_ttl{
  font-size: 2rem;
}
.price_about_text_big{
  font-size: 1.5rem;
}
.price_about_text{
  font-size: 1.2rem;
  color: #444 !important;
  font-weight: 500;
  line-height: 2;
}
@media (max-width: 1199px){
  .price_about{
    padding: 3rem 0;
  }
.price_about_ttlbox{
  padding-bottom: 1rem;
}
.price_about_ttl{
  font-size: 1.8rem;
}
.price_about_text_big{
  font-size: 1.8rem;
}
.price_about_text{
  line-height: 1.8;
}
}
@media (max-width: 991px){
.price_about{
    padding: 2rem 0;
  }
.price_about_ttlbox{
  padding-bottom: 0.5rem;
}
.price_about_ttl{
  font-size: 1.5rem;
}
.price_about_text_big{
  font-size: 1.5rem;
}
.price_about_text{
  font-size: 1rem;
}
}
@media (max-width: 767px){
  .price_about{
  padding: 3rem 0;
}
  .price_about_ttlbox{
  padding-bottom: 0;
}
  .price_about_ttl{
  font-size: 1.3rem;
}
.price_about_text_big{
  font-size: 1.2rem;
}
.price_about_text{
  font-size: 1rem;
  line-height: 1.5;
}
}
/* 料金一覧
------------------------------------------------*/
.price{
  padding: 5rem 0;
}
.price_table{
  width: 60%;
}
.price_th{
  background-color: #2d6291;
  border: 2px solid #fff;
  font-size: 2rem;
  width: 40%;
  padding: 0.5rem;
}
.price_td{
  background-color: #fff;
  border: 2px solid #2d6291;
  font-size: 3rem;
}
.price_text_yen{
  font-size: 1.5rem;
}
.price_table02{
  width: 80%;
}
.price_th02{
  background-color: #2d6291;
  border: 2px solid #fff;
  font-size: 1.5rem;
  width: 40%;
  padding: 0.5rem;
  height: 4.5rem;
}
.price_td02{
  background-color: #fff;
  border: 2px solid #2d6291;
  font-size: 1.5rem;
  pa
}
@media (max-width: 991px){
.price_table{
  width: 80%
}
.price_table02{
  width: 100%;
}}
@media (max-width: 767px){
  .price{
  padding: 3rem 0;
}
.price_table{
  width: 100%;
}
.price_th{
  font-size: 1.5rem;
}
.price_td{
  font-size: 2.5rem;
}
.price_table02{
  width: 100%;
}
.price_th02{
  font-size: 1rem;
  height: auto;
  padding: 0;
  width: 30%;
}
.price_td02{
  line-height: 1.2;
  font-size: 1rem;
  padding: 1rem 0;
  width: 30%;
}
.price_table02 .price_td{
  font-size: 1.65rem;
}
.price_table02 .price_text_yen{
  font-size: 1rem;
}
}

/* 他クリニックとの比較
------------------------------------------------*/
.price_hikaku{
  padding: 5rem 0;
}
/* テーブルを囲むラッパー（スマホなどで横スクロールさせる用） */
.price_hikaku_table-wrapper {
  width: 100%;
  overflow-x: auto;
  padding: 10px;
}

/* テーブル本体の基本設定 */
.price_hikaku-table {
  width: 100%;
  min-width: 600px;
  max-width: 1000px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0;
  text-align: center;
  font-size: 1.2rem;
}

/* ヘッダー（1行目）のスタイル */
thead th {
  padding: 1rem;
  font-size: 1.35rem;
}

/* 左上の空白セル（枠線・背景なし） */
.empty-cell {
  border: none;
  background-color: transparent;
}

/* ユアクリプラン ヘッダー */
.price_hikaku-table thead th.th-yourcli {
  background-color: #2d6291;
  border-radius: 12px 0 0 0;
}

/* 一般プラン ヘッダー */
.price_hikaku-table thead th.th-normal {
  background-color: #8b8b8b;
  border-radius: 0 12px 0 0;
}

/*  データ行（2行目以降）のスタイル */
.price_hikaku-table tbody th,
.price_hikaku-table tbody td {
  padding: 20px 10px;
  border-bottom: 1px solid #dcdcdc;
  /* 下の枠線 */
  border-right: 1px solid #dcdcdc;
  /* 右の枠線 */
  vertical-align: middle;
  line-height: 1.6;
}

/* データ行の一番上だけに上枠線をつける */
.price_hikaku-table tbody tr:first-child th,
.price_hikaku-table tbody tr:first-child td {
  border-top: 1px solid #dcdcdc;
}

/* 左端の見出し列 */
.price_hikaku-table tbody th {
  background-color: #f2f2f2;
  border-left: 1px solid #dcdcdc;
  width: 22%;
}

/* ユアクリプラン列の背景色 */
.price_hikaku-table tbody td.col-yourcli {
  background-color: #dcf7ff;
  width: 39%;
}

/* 一般プラン列の背景色 */
.price_hikaku-table tbody td.col-normal {
  background-color: #ffffff;
  width: 39%;
}

/* 数字の強調スタイル*/
.text-highlight {
  font-size: 2.2rem;
  font-family: Arial, sans-serif;
  padding: 0 4px;
}

@media only screen and (max-width: 767px) {
  .price_hikaku{
  padding: 3rem 0;
}
  .simulation_ttl {
    font-size: 1.25rem;
  }

  .simulation_ttl_big {
    font-size: 1.8rem;
  }

  .simulation_sub {
    font-size: 1rem;
  }

  .simulation_sub_big {
    font-size: 1.25rem;
  }

  .simulation_text {
    max-width: 40rem;
    margin-bottom: 3rem;
    padding: 0.5rem 1rem;
    font-size: 1rem;
  }

  .price_hikaku_table-wrapper {
    padding: 0;
  }

  .price_hikaku-table {
    min-width: 100%;
    font-size: 0.8rem;
  }

  .price_hikaku-table thead th {
    padding: 10px 4px;
    font-size: 1rem;
  }

  .price_hikaku-table tbody th,
  .price_hikaku-table tbody td {
    padding: 10px 0;
    line-height: 1.4;
  }

  .price_hikaku-table tbody th {
    width: 20%;
  }

  .price_hikaku-table tbody td.col-yourcli,
  .price_hikaku-table tbody td.col-normal {
    width: 40%;
  }

  .text-highlight {
    font-size: 1.6rem;
  }
}

/* お支払い方法
------------------------------------------------*/
.price_pay{
  padding: 5rem 0;
}
@media only screen and (max-width: 767px){
.price_pay{
  padding: 3rem 0;
}}

/* ご利用前にご確認ください
------------------------------------------------*/
.price_announce{
  padding: 5rem 0;
}
.price_announce_box{
  background-color: #fff;
  border: 8px solid #2d6291;
  border-radius: 30px;
  padding: 1rem 4rem;

}
.price_announce_box li,.price_announce_box p{
  font-size: 1.5rem;
  line-height: 2;
  font-weight: 500;
}
.price_announce_box .text-indent {
    padding-left: 1em;
    text-indent: -0.6em;
}
@media only screen and (max-width: 767px){
  .price_announce{
  padding: 3rem 0;
}
  .price_announce_box{
  padding: 1rem;

}
.price_announce_box li,.price_announce_box p{
  font-size: 1rem;
}
}

/*-----------------------------------------------------
FAQ
-------------------------------------------------------*/
.faq{
  padding: 0 0 5rem;
}
.qa-box {
  background-color: #c0e5f0;
  padding: 2rem 4rem;
}

.q-color {
  font-size: 2rem;
  font-weight: bold;
  color: #044a61;
  margin-right: 0.5em;
}

.a-color {
  font-size: 1.8rem;
  font-weight: bold;
  color: #d4629d;
  margin-right: 0.5em;
}

.q_text {
  color: #333;
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 0;
}

.a_text {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
}

.bullet-text01 {
  padding-left: 1em;
  text-indent: -2.5em;
  display: block;
}

.bullet-text02 {
  padding-left: 1.5em;
  text-indent: -1.65em;
  display: block;
}

.accordion-button {
  background-color: #c0e5f0 !important;
  border-radius: 0 !important;
  border-bottom: 2px solid #828282;
  padding-bottom: 0.5em;
  margin-bottom: 1.5em;
}

.accordion {
  --bs-accordion-border-color: none;
  --bs-accordion-btn-focus-border-color: none;
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-active-bg: none;
  --bs-accordion-btn-padding-y: 1.5rem;
}

.accordion-body {
  padding-bottom: 1.5rem;
  background-color: #eeeeee;
}
.accordion-item{
  background-color: #c0e5f0;;
}
.accordion-flush .accordion-item .accordion-button,
.accordion-flush .accordion-item .accordion-button.collapsed {
  border-radius: 20px;
}

.accordion-flush .accordion-item {
  border-radius: 20px;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23008f80'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23008f80'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

@media only screen and (max-width: 991px) {
  .q-color {
    font-size: 1.8rem;
  }

  .a-color {
    font-size: 1.3rem;
  }

  .q_text {
    font-size: 0.9rem;
  }

  .a_text {
    font-size: 0.9rem;
    color: #333;
  }

  .accordion-header {
    padding-left: 0.5em;
  }

  .accordion {
    --bs-accordion-body-padding-x: 1.8rem;
  }
}
@media only screen and (max-width: 767px){
  .faq{
  padding: 0 0 3rem;
}
  .qa-box {
  background-color: #c0e5f0;
  padding: 1rem;
}
}
/*-----------------------------------------------------
ABOUT
-------------------------------------------------------*/
.about {
  padding: 0rem 0rem 5rem;
}
/*ホバー時の動き*/
.about .custom-card-link {
  display: block;
  text-decoration: none;
  height: 100%;
  transition: transform 0.2s ease-in-out;
}

.about .custom-card-link:hover {
  transform: translateY(-3px);
  /* ホバー時に少し浮くエフェクト */
}

/* ゴールドのグラデーション枠線 */
.about .gold-border {
  /* 金属風のグラデーションを設定 */
  background: linear-gradient(135deg, #d4af37 0%, #fff2b5 25%, #d4af37 50%, #fff2b5 75%, #d4af37 100%);
  padding: 4px;
  /* 枠の太さ */
  height: 100%;
}

/* 内側のコンテンツエリア */
.about .inner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 2rem;
  height: 100%;
}

/* 背景色のバリエーション（画像に合わせて交互に設定） */
.about .bg-light-blue {
  background-color: #dbe6f2;
}

.about .bg-light-cyan {
  background-color: #cbe6ee;
}

.about .card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.about .card-subtitle {
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0;
}

/* 右側の丸い矢印アイコン */
.about .play-icon-circle {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
  /* 影をつける */
  position: relative;
  margin-left: 1rem;
}

/* CSSで三角形を作成して中央に配置 */
.about .play-icon-circle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  /* 中央寄せの微調整 */
  border-style: solid;
  border-width: 9px 0 9px 14px;
  border-color: transparent transparent transparent #b5d1e8;
  /* 矢印の水色 */
}
@media only screen and (max-width: 991px){
  .about .card-title {
  font-size: 1.4rem;
}
}
@media (max-width: 767px) {
  .about {
  padding: 0rem 0rem 3rem;
}
  .about .top_contents_ttl {
    font-size: 1.5rem;
  }

  .about .inner-content {
    padding: 1.25rem 1.5rem;
  }

  .about .card-title {
    font-size: 1.25rem;
  }

  .about .card-subtitle {
    font-size: 0.85rem;
  }

  .about .play-icon-circle {
    width: 40px;
    height: 40px;
  }

  .about .play-icon-circle::after {
    border-width: 7px 0 7px 11px;
  }
}



/*-----------------------------------------------------
プライバシーポリシー
-------------------------------------------------------*/
#privacy-policy02{
  padding: 5rem 0;
}
.privacy-policy p{
  color: #212529 !important;
}
.privacy-policy li{
  padding-left: 1rem;
  text-indent: -1rem;
}
.privacy-ttl {
  display: inline-block;
  padding-bottom: 0.2em;
  font-size: 1.5rem;
}
.privacy-policy th{
	background-color:#9cd1e3;
	padding: 0.5rem;
    text-align: center;
	border: 1px solid;
}
.privacy-policy td{
    text-align: center;
	border: 1px solid;
	padding:0.5rem;
}
.privacy-policy td a{
    color:#0d6efd;
}

@media screen and (max-width: 991px) {
  /* テーブルの基本構造をリセット */
  .privacy-policy table,
  .privacy-policy thead,
  .privacy-policy tbody,
  .privacy-policy tr,
  .privacy-policy th,
  .privacy-policy td {
    display: block;
    width: 100%;
  }

  /* PC用のヘッダー行は非表示 */
  .privacy-policy thead {
    display: none;
  }

  /* 1つのサービスをカードのように見せる */
  .privacy-policy tr {
    margin-bottom: 1.5rem;
    border: 2px solid #9cd1e3;
    border-radius: 8px; /* 角丸でおしゃれに */
    overflow: hidden;
  }

  /* セルのデザイン調整 */
  .privacy-policy td {
    text-align: left; /* スマホでは左寄せが見やすい */
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 10px;
    position: relative;
  }
  .privacy-policy td:last-child {
    border-bottom: none;
  }

  /* data-label属性を使ってスマホ用の見出しを生成 */
  .privacy-policy td::before {
    content: attr(data-label);
    display: block;
    background-color: #9cd1e3;
    font-weight: bold;
    font-size: 0.85rem;
    padding: 4px 8px;
    margin: -10px -10px 8px -10px; /* paddingを打ち消して上部に帯を作る */
  }

  /* リンク同士の余白調整 */
  .privacy-policy td a {
    display: inline-block;
    margin-bottom: 4px;
  }
}
@media screen and (max-width: 767px){
#privacy-policy02{
  padding: 3rem 0;
}}

.slick-slide {
  margin: 0 0.5rem;
}

.slick-slide img {
  width: 100%;
  height: 25vw;
  object-fit: cover;
}

/*-----------------------------------------------------
利用規約
-------------------------------------------------------*/
.kiyaku{
  padding-bottom: 5rem;
}
.kiyaku p{
  color: #212529 !important;
}
.kiyaku h3{
  padding: 1rem 0 0.5rem;
}
.kiyaku li{
  padding-left: 1rem;
  text-indent: -1rem;
  padding-bottom: 0.25rem;
}
@media screen and (max-width: 767px){
.kiyaku{
  padding-bottom: 3rem;
}}

/*-----------------------------------------------------
利用規約
-------------------------------------------------------*/
.legal-notice{
  padding-bottom: 5rem;
}

.legal-notice p{
  color: #212529 !important;
}
.legal-notice li{
  padding-left: 1rem;
  text-indent: -1rem;
}
.legal-notice-ttl {
  display: inline-block;
  padding-bottom: 0.2em;
  font-size: 1.5rem;
}
/* =========================================
   トップへ戻るボタンの固定（余白解消）
========================================= */
.scroll-up {
  position: fixed;
  /* 画面に固定して浮かせる（フッター下の場所を取らなくなる） */
  bottom: 30px;
  /* 画面下からの距離 */
  right: 30px;
  /* 画面右からの距離 */
  z-index: 999;
  /* 一番手前に表示 */
}

/* ボタンのデザイン（必要に応じて調整してください） */
.scroll-up a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #00294da1;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.5rem;
  transition: all 0.3s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.scroll-up a:hover {
  background-color: #4f92a9;
  color: #fff;
  transform: translateY(-3px);
}