@charset "utf-8";

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

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

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

/* 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) {}

/*-----------------------------------------------------
共通
-------------------------------------------------------*/
section {
  padding: 8rem 0;
}

a {
  text-decoration-line: none;
}

@media only screen and (max-width: 767px) {
  section {
    padding: 5rem 0;
  }
}

/*-----------------------------------------------------
フォント
-------------------------------------------------------*/
.text-bold {
  font-weight: bold;
}

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

.text-blue {
  color: #006f6e;
}

.text-white {
  color: #fff;
}

.text-brown {
  color: #4e3c31;
}

.text-gray {
  color: #424140;
}

.text-red {
  color: #ff000c;
}

.text-orange {
  color: #ff6c00;
}

.text-yellow {
  color: #fbd500;
}

.text-pink {
  color: #c61a87;
}


/*-----------------------------------------------------
タイトル
-------------------------------------------------------*/
.ttl_box {
  border-bottom: 3px solid #684614;
  padding-bottom: 2rem;
  margin-bottom: 3rem;
}

.ttl {
  position: relative;
  color: #464344;
  z-index: 1;
  padding-left: 10rem;
  font-size: 2.25rem;
}

.ttl::before {
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  left: 0;
  z-index: -1;
  color: #dddddd;
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
  content: attr(data-word);
  pointer-events: none;
}

@media only screen and (max-width: 767px) {
  .ttl_box {
    border-bottom: 3px solid #684614;
    padding-bottom: 1rem;
    margin-bottom: 3rem;
  }

  .ttl {
    position: relative;
    padding-left: 2rem;
    font-size: 1.5rem;
  }

  .ttl::before {
    font-size: 3.2rem;
  }
}

/*-----------------------------------------------------
header
-------------------------------------------------------*/
#Header {
  background-color: rgba(196, 171, 94, 0.55);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

#Header p {
  margin-bottom: 0;
}

.h-logo {
  max-width: 20rem;
  padding-left: 3em;
}

@media only screen and (max-width: 1199px) {
  .h-logo {
    max-width: 15rem;
    padding-left: 1em;
    padding-right: 1em;
  }
}

@media only screen and (max-width: 991px) {
  .h-logo {
    max-width: 12rem;
    padding-left: 0.5em;
  }
}

@media only screen and (max-width: 767px) {
  .h-logo_sp {
    max-width: 100%;
  }
}

/*-----------------------------------------------------
FV
-------------------------------------------------------*/
.fv {
  background-color: #f8f8f8;
  padding: 0;
  margin: 0;
  font-family: 'Noto Serif JP', 'Noto Serif CJK JP', serif;
}

@media only screen and (max-width: 767px) {
  .fv .container {
    max-width: 767px;
  }
}

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

.cta-box {
  max-width: 650px;
  width: 100%;
}

.cta_text {
  font-size: 1.5rem;
}

.cta-label-wrap {
  margin-bottom: -15px;
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.cta-label {
  display: inline-block;
  background-color: #000;
  font-size: 1.4rem;
  padding: 0.5rem 3.5rem;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0% 100%);
  letter-spacing: 0.1em;
}

.cta-btn {
  background-color: #f3ece4;
  border: 4px solid #ffffff;
  border-radius: 100px;
  color: #333;
  font-size: 2.2rem;
  padding: 1.2rem 0;
  width: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.transition-scale:hover .cta-btn {
  transform: scale(1.02);
  opacity: 0.9;
}

.cta-note {
  font-size: 0.85rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 767px) {
  .cta {
    padding: 2.5rem 0;
  }

  .cta-label {
    font-size: 1.1rem;
    padding: 0.4rem 2rem;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
  }

  .cta-btn {
    font-size: 1.6rem;
    padding: 1rem 0;
    border: 4px solid #ffffff;
  }

  .cta-note {
    font-size: 0.75rem;
  }
}

/*-----------------------------------------------------
お客様の声
-------------------------------------------------------*/
.voice ul {
  padding-inline-start: 0;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.slide-items img {
  width: 90%;
}

.slick-prev {
  left: -50px !important;
  z-index: 2;
}

.slick-next {
  right: -15px !important;
  z-index: 3;
}

.slick-prev:before,
.slick-next:before {
  color: #fff !important;
  /*ボタンの色*/
  opacity: 0.75 !important;
  /*ボタンの不透明度*/
  font-size: 20px !important;
  /*ボタンのサイズ*/
  background: #828282;
  border-radius: 50%;
  font-weight: bold;
  padding: 0.5em 0.8em;
}

.slick-dots li button:before {
  font-size: 25px !important;
  /*ドットのサイズ*/
  padding-top: 15px;
}

.slick-dots {
  left: 50%;
  transform: translateX(-50%);
}

.slick-arrow:before {
  content: "" !important;
  width: 35px !important;
  height: 35px !important;
  position: absolute;
  top: 0;
  left: 0;
}

.slick-next:before {
  background: url(../images/slick-next.png) !important;
  background-size: contain !important;
}

.slick-prev:before {
  background: url(../images/slick-prev.png) !important;
  background-size: contain !important;
}

@media (max-width:767px) {
  .slide-items img {
    width: 100%;
  }

  .slick-prev {
    left: -35px !important;
    z-index: 2;
  }

  .slick-next {
    right: -22px !important;
    z-index: 3;
  }

  .slick-prev:before,
  .slick-next:before {
    color: #fff !important;
    /*ボタンの色*/
    opacity: 0.75 !important;
    /*ボタンの不透明度*/
    font-size: 10px !important;
    /*ボタンのサイズ*/
    background: #828282;
    border-radius: 50%;
    font-weight: bold;
    padding: 0.5em 0.8em;
  }

  .slick-dots li {
    width: 15px !important;
  }

  .slick-dots li button:before {
    font-size: 15px !important;
    /*ドットのサイズ*/
    padding-top: 15px;
  }

  .slick-dots {
    left: 50%;
    transform: translateX(-50%);
  }
}


/*-----------------------------------------------------
お悩み
-------------------------------------------------------*/
.nayami_mainttl {
  position: relative;
  padding: 0.5em 0;
  border-top: solid 3px #4e3c31;
  border-bottom: solid 3px #4e3c31;
  display: inline-block;
  width: 70%;
  background-color: #fff;
  margin-bottom: 2.5rem;
}

.nayami_mainttl::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -17px;
  transform: translateX(-50%) rotate(45deg);
  width: 30px;
  height: 30px;
  border-right: solid 3px #4e3c31;
  border-bottom: solid 3px #4e3c31;
  background-color: #fff;
}

.nayami_box {
  padding: 2.5rem 1.5rem;
}

.nayami_box_ttl {
  font-size: 1.25rem;
  border-radius: 50vw;
  padding: 0.5rem 2rem;
  white-space: nowrap;
}

/* 各カラー設定 */
.nayami_box_pink {
  background-color: #e79cc3;
}

.nayami_box_purple {
  background-color: #9283bf;
}

.nayami_box_green {
  background-color: #90ab94;
}

/* 背景画像の配置とホバーエフェクト */
.nayami-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.nayami-bg img {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.nayami_box:hover .nayami-bg img {
  transform: scale(1.05);
  /* 少し拡大 */
  filter: brightness(2.5);
  /* 明るくする */
}

.text_overlay {
  pointer-events: none;
}

/* --- レスポンシブ対応 --- */

/* PCサイズ(768px以上)の時だけ、左に2pxの白線を入れる */
@media screen and (min-width: 768px) {
  .nayami-list>li:not(:first-child) .nayami-border {
    border-left: 2px solid #fff;
  }
}

/* タブレット・スマホ(991px以下) */
@media screen and (max-width: 991px) {
  .nayami_box_ttl {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    white-space: normal;
  }
}

/* スマホ(767px以下)のレイアウト */
@media screen and (max-width: 767px) {
  .nayami_mainttl {
    font-size: 1.3rem;
    width: 90%;
    padding: 1rem 0;
  }

  .nayami_box {
    padding: 1.5rem 1rem 2.5rem 1rem;
  }
}

/*-----------------------------------------------------
CASE
-------------------------------------------------------*/
.case_01 {
  background-color: #fff3fa;
}

.case_text_pink {
  color: #762a5a;
}

.case_02 {
  background-color: #f4f1ff;
}

.case_text_purple {
  color: #5840b9;
}

.case_03 {
  background-color: #f1fff0;
}

.case_text_green {
  color: #306a2d;
}

/* ------------------------ 共通タイトル ------------------------ */
.case_subttl {
  border-radius: 50vw;
  font-size: 1.5rem;
  display: inline-block;
  padding: 0.25rem 1rem;
  width: 50%;
}

.case_ttl {
  padding: 2rem 0;
  position: relative;
  width: 70%;
}

.case_ttl::before,
.case_ttl::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 8px;
  border-style: solid;
  border-color: transparent;
  border-width: 2px 0;
  border-image: linear-gradient(to right, #a68900, #f2d49e, #756900) 1;
}

.case_ttl::before {
  top: 0;
}

.case_ttl::after {
  bottom: 0;
}

/* --- 各タイトル --- */
.case_ttl_pink {
  background-color: #a8588b;
}

.case_ttl_purple {
  background-color: #635697;
}

.case_ttl_green {
  background-color: #558053;
}

@media screen and (max-width: 767px) {
  .case_subttl {
    font-size: 1rem;
  }

  .case_ttl {
    width: 100%;
    font-size: 1.2rem;
    padding: 1.5rem 0;
  }
}

/* ------------------------ 共通プロフィール ------------------------ */
.case_profile {
  border-radius: 1.25rem;
  overflow: hidden;
  max-width: 900px;
}

.case_profbox {
  background-color: #fff;
  padding: 1rem;
}

.case_prof_ttl {
  border-bottom: 2px solid;
  font-family: 'Noto Serif JP', serif;
  position: relative;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.case_prof_ttl::after {
  content: attr(data-word);
  position: absolute;
  bottom: -2rem;
  left: 0;
  z-index: 0;
  font-size: 1.5rem;
  pointer-events: none;
}

.case_proftext_box {
  padding: 1rem;
}

.case_proftext {
  padding-left: 1rem;
  text-indent: -1rem;
  color: #424140;
  padding: 0.25rem 0;
}

/* --- 各プロフィール（まなみさん） --- */
.case_prof_ttl_pink {
  border-color: #a8588b;
  color: #a8588b;
}

.case_prof_ttl_pink::after {
  color: #e4bed6;
}

.case_pink {
  color: #a8588b;
}

/* --- 各プロフィール（ようこさん） --- */
.case_prof_ttl_purple {
  border-color: #635697;
  color: #635697;
}

.case_prof_ttl_purple::after {
  color: #8a7cc0;
}

.case_purple {
  color: #635697;
}

/* --- 各プロフィール（みきさん） --- */
.case_prof_ttl_green {
  border-color: #558053;
  color: #558053;
}

.case_prof_ttl_green.a-colorfter {
  color: #80a77e;
}

.case_green {
  color: #558053;
}


@media screen and (max-width: 991px) {
  .case_profile {
    border-radius: 0;
  }
}

@media screen and (max-width: 767px) {
  .case_profbox {
    padding: 1rem;
  }

  .case_prof_ttl {
    font-size: 1.2rem;
  }

  .case_prof_ttl::after {
    font-size: 1.2rem;
    bottom: -1.5rem;
  }

  .case_proftext {
    padding: 0.1rem 0;
    margin-bottom: 0;
    font-size: 0.85rem;
  }

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

/* ------------------------ 共通悩み ------------------------ */
.case_nayami {
  border-radius: 15px;
  border: 2px dotted;
  margin-top: 3rem;
  max-width: 900px;
}

.case_nayami_ttl {
  border-radius: 50vw;
  font-size: 1rem;
  padding: 0.25rem 1rem;
  width: 15rem;
  margin-top: -1rem;
}

.case_nayami_text {
  font-size: 1.25rem;
}

/* --- 各悩み --- */
.case_nayami_pink {
  background-color: #fde0f0;
  border-color: #a8588b;
}

.case_nayami_ttl_pink {
  background-color: #a8588b;
}

.case_nayami_purple {
  background-color: #e5deff;
  border-color: #635697;
}

.case_nayami_ttl_purple {
  background-color: #635697;
}

.case_nayami_green {
  background-color: #c3edc1;
  border-color: #558053;
}

.case_nayami_ttl_green {
  background-color: #558053;
}

@media screen and (max-width: 767px) {
  .case_nayami_text {
    font-size: 1rem;
  }
}

/* ------------------------ 共通解決 ------------------------ */
.case_goal {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.case_goal_ttl {
  font-size: 2.25rem;
  padding: 3rem 0 1.5rem;

}

.case_goal_text {
  padding-left: 20%;
  margin-top: -3rem;
  padding-bottom: 5rem;
  width: 80%;
}

/* --- 各解決 --- */
.case_goal_pink {
  background-image: url(../images/case_goal_bg01.png);
}

.case_goal_purple {
  background-image: url(../images/case_goal_bg02.png);
}

.case_goal_green {
  background-image: url(../images/case_goal_bg03.png);
}

@media screen and (max-width: 1199px) {
  .case_goal_text {
    padding-left: 15%;
    width: 60%;
  }
}

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

  .case_goal_text {
    width: 75%;
    padding-left: 10%;
  }

  .case_goal_tri {
    width: 20%;
  }
}

@media screen and (max-width: 767px) {
  .case_goal {
    background-position: 55%;
  }

  .case_goal_ttl {
    font-size: 1.25rem;
    padding: 3rem 0 1rem;
  }

  .case_goal_text {
    margin-top: -2rem;
    padding-bottom: 2rem;
    width: 85%;
  }

  .case_goal_tri {
    width: 20%;
  }
}

/* ------------------------ 共通ポイント ------------------------ */
.cese_point_ttl {
  border-bottom: 3px solid;
  display: inline-block;
  width: 30rem;
  margin-bottom: 2rem;
}

.cese_point_num {
  font-size: 3rem;
}

.point_card {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}

.point_card_header {
  border-radius: 12px 12px 0 0;
  font-size: 1.25rem;
}

.point_card_body {
  border-radius: 0 0 12px 12px;
}

.point_card_title {
  font-size: 1.15rem;
}

/* 中のテキスト */
.point_card_text {
  font-size: 0.95rem;
  line-height: 1.8;
  text-align: left;
}

/* --- 各ポイント --- */
.cese_point_ttl_pink {
  border-color: #a8588b;
}

.point_card_header_pink {
  background-color: #3e3139;
}

.point_card_ttl_pink {
  color: #a8588b;
  border-bottom: 2px solid #a8588b;
}

.cese_point_ttl_purple {
  border-color: #635697;
}

.point_card_header_purple {
  background-color: #2e2a41;
}

.point_card_ttl_purple {
  color: #635697;
  border-bottom: 2px solid #635697;
}

.cese_point_ttl_green {
  border-color: #558053;
}

.point_card_header_green {
  background-color: #022a00;
}

.point_card_ttl_green {
  color: #558053;
  border-bottom: 2px solid #558053;
}

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

  .point_card_body {
    padding: 1rem !important;
  }
}

@media screen and (max-width: 767px) {
  .cese_point_ttl {
    width: 18rem;
    margin-bottom: 2rem;
  }

  .point_card {
    box-shadow: none;
  }

  .point_card_ttl {
    font-size: 1.1rem;
  }

  .point_card_body {
    padding: 1rem !important;
    margin-bottom: 1rem;
  }
}

/*-----------------------------------------------------
ロードマップ
-------------------------------------------------------*/
.roadmap_subttl {
  font-size: 1.5rem;
}

.roadmap_textbox {
  padding: 2rem 0;
}

.roadmap_day {
  background-color: #d7cebf;
  border-radius: 50vw;
  padding: 0.15rem 2rem;
  font-size: 1.5rem;
}

.roadmap_ttl {
  font-size: 1.5rem;
}

@media screen and (max-width: 991px) {
  .roadmap_textbox {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 0 2rem;
  }
}

@media screen and (max-width: 767px) {
  .roadmap_img {
    width: 80%;
  }

  .roadmap_ttlbox {
    padding-bottom: 0.25rem !important;
  }

  .roadmap_day {
    font-size: 1.2rem;
  }

  .roadmap_ttl {
    font-size: 1.2rem;
  }

  .roadmap_text {
    width: 80%;
  }

}

/*-----------------------------------------------------
9つのサポート体制
-------------------------------------------------------*/
.support {
  background-color: #faf7f3;
}

.support_ttl {
  display: flex;
  justify-content: center;
  align-items: baseline;
  position: relative;
  max-width: 40rem;
  margin-bottom: 3rem;
  padding: 0.5rem 1rem;
  border-radius: 50vw;
  background-color: #4e3c31;
  color: #333333;
}

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

.support_ttl_big {
  font-size: 2.5rem;
}

.support_list {
  flex-wrap: wrap;
}

.support_content {
  width: 33.3333333%;
}

@media only screen and (max-width: 767px) {
  .support_ttl {
    max-width: 20rem;
    margin-bottom: 2rem;
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
  }

  .support_ttl_big {
    font-size: 1.5rem;
  }

  .support_content {
    width: 100%;
    padding: 0.5rem 0 !important;
  }
}

/*-----------------------------------------------------
収支シミュレーション
-------------------------------------------------------*/
.simulation_ttl {
  font-family: 'Noto Serif JP', serif;
  font-size: 2rem;
}

.simulation_ttl_big {
  font-size: 2.5rem;
}

.simulation_sub {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.5rem;
}

.simulation_sub_big {
  font-size: 2rem;
}

.simulation_text {
  display: flex;
  justify-content: center;
  align-items: baseline;
  position: relative;
  max-width: 40rem;
  margin-bottom: 3rem;
  padding: 0.5rem 1rem;
  border-radius: 50vw;
  background-color: #ccc085;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.2rem;
}


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

/* テーブルを囲むラッパー（スマホなどで横スクロールさせる用） */
.table-wrapper {
  width: 100%;
  overflow-x: auto;
  padding: 10px;
}

/* テーブル本体の基本設定 */
.plan-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;
}

/* 技術者プラン ヘッダー */
.plan-table thead th.th-tech {
  background-color: #d0ba7e;
  border-radius: 12px 0 0 0;
}

/* オーナープラン ヘッダー */
.plan-table thead th.th-owner {
  background-color: #d18491;
  border-radius: 0 12px 0 0;
}

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

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

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

/* 技術者プラン列の背景色 */
.plan-table tbody td.col-tech {
  background-color: #fcfaf1;
  width: 39%;
}

/* オーナープラン列の背景色 */
.plan-table tbody td.col-owner {
  background-color: #fcf2f4;
  width: 39%;
}

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

@media only screen and (max-width: 767px) {
  .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;
  }

  .table-wrapper {
    padding: 0;
  }

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

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

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

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

  .plan-table tbody td.col-tech,
  .plan-table tbody td.col-owner {
    width: 40%;
  }

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

/*-----------------------------------------------------
タイパとコスパの圧倒的な差
-------------------------------------------------------*/
.comparison {
  background-color: #faf7f3;
}

.comparison_ttl {
  font-family: 'Noto Serif JP', serif;
  font-size: 2rem;
}

.comparison_ttl_big {
  font-size: 2.5rem;
}

.comparison_sub {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.5rem;
}

.comparison_sub_big {
  font-size: 2rem;
}

.comparison_text {
  display: flex;
  justify-content: center;
  align-items: baseline;
  position: relative;
  max-width: 40rem;
  margin-bottom: 3rem;
  padding: 0.5rem 1rem;
  border-radius: 50vw;
  background-color: #ccc085;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.2rem;
}


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

@media only screen and (max-width: 767px) {
  .comparison_ttl {
    font-size: 1.25rem;
  }

  .comparison_ttl_big {
    font-size: 1.8rem;
  }

  .comparison_sub {
    font-size: 1rem;
  }

  .comparison_sub_big {
    font-size: 1.25rem;
  }

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

/*-----------------------------------------------------
入校までの流れ
-------------------------------------------------------*/
.step_subttl {
  font-size: 1.5rem;
  padding-bottom: 2rem;
}

.step_box {
  background-color: #fff9ed;
  border-radius: 20px;
  padding: 1.5rem 2rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 70%;
}

.step_num {
  background-color: #d48a95;
  border-radius: 50vw;
  padding: 0.15rem 1rem;
  font-size: 1.2rem;
  width: 15rem;
  margin-bottom: 0.3rem;
}

.step_boxttl {
  font-size: 1.5rem;
}

@media only screen and (max-width: 991px) {
  .step_box {
    padding: 1rem;
    width: 100%;
  }

  .step_num {
    font-size: 1rem;
    width: 12rem;
  }

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

@media only screen and (max-width: 767px) {
  .step_subttl {
    font-size: 1.1rem;
    padding-bottom: 1rem;
  }

  .step_box {
    padding: 1rem;
    width: 100%;
  }

  .step_num {
    font-size: 1rem;
    width: 15rem;
  }

  .step_boxttl {
    font-size: 1.2rem;
  }
}


/*-----------------------------------------------------
よくある質問
-------------------------------------------------------*/
.question {
  background-color: #ccc085;
}

.question .ttl {
  color: #333;
}

.question .ttl::before {
  color: #fff;
}

.qa-box {
  background-color: #fff;
  padding: 2em;
}

.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: #fff !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-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;
  }
}


/*-----------------------------------------------------
footer
-------------------------------------------------------*/
#Footer {
  color: #fff;
  background-color: #ccc085;
  padding: 3em 2em 7em;
}


/*-----------------------------------------------------
 追従 
-------------------------------------------------------*/
.fix-navi {
  position: fixed;
  z-index: 9999;
  top: 5rem;
  right: 0;
  width: 5rem;
  transition: opacity 0.3s ease;/
}

.fix-navi:hover {
  opacity: 0.6;
  /* 半透明 */
}

@media only screen and (max-width: 767px) {
  .scroll-up {
    bottom: 125px;
  }

  .fix-navi_sp {
    position: fixed;
    z-index: 9999;
    background-color: #614614;
    padding: 0.5rem 0;
    bottom: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.3s ease;
    font-family: 'Noto Serif JP', serif;
  }

  .fix-navi_sp:hover {
    opacity: 0.6;
    /* 半透明 */
  }

  .fix_text {
    font-size: 1.8rem;
  }
}