@charset "UTF-8";

/* CSS Document */
/*-------------------------------------------------------------------------------------
PC用レイアウト（768px以上スクリーン）
----------------------------------------------------------------------------------------*/
/*--------------------------------------------------
共通設定(PC)
-----------------------------------------------------*/
/*body全体の初期スタイル調整*/
body {
  font-size: 62.5%;
  /*emの計算をしやすくするための定番設定*/
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-weight: normal;
  color: #000;
}

/*リンク文字の設定*/
a {
  text-decoration: underline;
}

a:link,
a:visited {
  color: #FF9888;
}

a:hover,
a:active {
  color: #fa3517;
}

/*ブラウザのCSSをリセット*/
p {
  margin: 0 !important;
  padding: 0 !important;
}

/*セクションエリアの共通設定*/
section {
  clear: both;
}

/*ボタンホバー設定(半透明)*/
.btn:hover {
  opacity: 0.7;
}


/*--------------------------------------------------
見出しタグ設定（PC）
-----------------------------------------------------*/
h2 {
  margin: 0em;
  font-size: 2em;
  font-weight: bold;
  text-align: center;
}

h3 {
  margin: 0em;
  padding: 0.3em 0.6em;
  font-size: 1.6em;
  font-weight: bold;
  border-left: 8px solid #10559A;
  border-bottom: 1px dotted #10559A;
}

h4 {
  margin: 0.5em 0em;
  padding: 0.3em 0.6em;
  font-size: 1.4em;
  border: 1px solid #ccc;
  font-weight: bold;
}

h5 {
  margin: 0.5em 0em;
  padding: 0.1em;
  font-size: 1.2em;
  font-weight: bold;
  border-bottom: 1px dotted #ccc;
}

/*--------------------------------------------------
全体レイアウト／背景設定（PC）
-----------------------------------------------------*/
/*全体エリア（全体背景を設定するにはここ）*/
.main {
  background-image: url("../images/bg_all.jpg");
  background-size: 100% auto;
  background-repeat: repeat;
  background-position: top center;
}

/*記事(ボディ)エリア*/
.article {
  background-color: #fff;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  font-size: 2em;
  /*=16px*/
}

/*記事(ボディ)エリアの行間*/
.article p {
  line-height: 1.6;
}

/*カラム全体の幅を変更する*/
.article,
.top_image_in {
  width: 700px;
  margin: 0 auto;
  /*真ん中に要素を置きたいときに使う*/
}

/*--------------------------------------------------
上部固定ヘッダー（共通）
--------------------------------------------------*/
.header {
  background-color: #fff;
  border-bottom: 1px solid #dadada;
  position: sticky;
  top: 0;
  z-index: 5000;
}

/* 中央カラム：スマホは100%、PCは最大700px */
.header_inr {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  box-sizing: border-box;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 1em;
  gap: 12px;
}

/* a/imgの“ズレ要因”を共通で潰す */
.header_logo a,
.header_mail a {
  display: flex;
  align-items: center;
  line-height: 0;
}

.header_logo img,
.header_mail img {
  display: block;
  width: auto;
  height: auto;
}

/* PCの見た目サイズ */
.header_logo img {
  height: 60px;
}

.header_mail img {
  height: 60px;
}



/*---------------------------------------------------
メイン部分(ボディ) ※ここに案件独自のcssを記述していく
-----------------------------------------------------*/
/* ===========================
   3つの特徴（Point共通）
=========================== */
.tokucho_title {
  display: block;
  width: 100%;
  height: auto;
}

/* 背景：ここは“柄だけ”担当 */
.tokucho_bg {
  background-image: url("../images/bg_3tokucho.jpg");
  background-size: 100% auto;
  background-repeat: repeat;
  background-position: top center;
}

/* 写真：左端ベタ（余白を作らない） */
.tokucho_img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  /* 念のため */
  padding: 1.8em 1em 0 0;
}

.tokucho_img_right {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  /* 念のため */
  padding: 1.8em 0 0 1em;
}

/* 本文：中央カラム（余白はここで作る） */
.tokucho_inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 2em 0 2.3em;
  /* 本文の左右余白はここ */
  box-sizing: border-box;
}

.tokucho_text {
  margin: 0;
  line-height: 1.8;
  color: #292929;
}

.text-accent {
  color: #fc664f;
  /* 好きな色 */
  font-weight: 600;
  /* 少し強調したい時 */
}

.bg_koe {
  background-image: url("../images/bg_koe.jpg");
  background-size: 100%;
  background-repeat: repeat;
  padding: 2em 1em;

  text-align: center;
}

.box_koe {
  background-color: #fff;
  border-radius: 12px;
  /* 角丸 */
  padding: 2em;
  margin: 2em 0.5em;
  font-weight: nomal;
  color: #464646;
}

.box_koe_inr {
  margin: 0.8em 0 0 0;
  font-weight: nomal;
  color: #292929;
  text-align: left;
}

.marker {
  background: linear-gradient(transparent 60%, #fffb95 10%);
  padding: 0 2px;
}

/*--------------------------------------------------
CTAエリア
-----------------------------------------------------*/
/* CTA セクション（背景エリア） */
.cta-area {
  background-image: url("../images/bg_CTA.jpg");
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
  padding:3.3em 1em 0.8em 1em;
  text-align: center;

  /* 中央寄せ */
}

.cta-btn {
  display: inline-block;
  /* 中央寄せしやすい */
  max-width: 720px;
  /* でかくなりすぎ防止（好みで） */
  width: 100%;
}

.cta-btn img {
  display: block;
  width: 100%;
  height: auto;
}


/*--------------------------------------------------
QAエリア
-----------------------------------------------------*/
.faq {
  background-image: url("../images/bg_qa.jpg");
  width: 100%;
  /* 画面幅いっぱい */
  padding: 0.5em;
  /* 内側余白 */
}

.faq-title {
  display: block;
  /* 画像をブロック要素に */
  margin: 1em auto 1.2em;
  /* 中央寄せ＋下に余白 */
  height: auto;
  /* 縦横比を維持 */
}


.faq details {
  background: #fff;
  border-radius: 0.63em;
  /* 10px → 0.63em */
  margin: 0 1em 1.3em 1em;
  padding: 1.25em;
  /* 16px 20px → 1.00em 1.25em */
  border: 0.15em solid #25b499;
  /* 1.8px → 0.11em */
  box-shadow: 0 0.25em 0.63em rgba(0, 0, 0, 0.04);
  /* 4px 10px → 0.25em 0.63em */

  interpolate-size: allow-keywords;
  transition: height 0.35s ease;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: #464646;
  list-style: none;
  position: relative;
  padding-right: 1.88em;
  /* 30px → 1.88em */
}

.faq summary span {
  color: #25b499;
  /* Qのブランドグリーン */
  font-weight: 700;
  margin-right: 0.38em;
  /* 6px → 0.38em */
}

/* ＋アイコン（緑） */
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  /* 枠の高さの中央に配置 */
  transform: translateY(-50%);
  /* 中央基準にずらす */
  transition: transform 0.30s ease;
  color: #25b499;
}


/* open時：＋ -> × */
.faq details[open] summary::after {
  transform: rotate(45deg);
  top: 1%;
}

/* A部分 */
.faq .answer {
  margin-top: 0.75em;
  /* 12px → 0.75em */
  line-height: 1.7;
  color: #555;
  padding-left: 1.13em;
  /* 18px → 1.13em */
  border-left: 0.19em solid #48d4bb;
  /* 3px → 0.19em */
}

/* 公式HPリンク */
.official-link {
  padding: 0em 0em 0.5em 0em;
  text-align: center;
}

.official-btn {
  font-size: 15px;
  color: #555;
  text-decoration: underline;
}

/* フッター */
.footer {
  background-color: #f7f7f7;
  padding: 32px 16px 24px;
  text-align: center;
  font-size: 13px;
  color: #666;
}

.footer .privacy-link {
  display: inline-block;
  margin-bottom: 8px;
  color: #666;
  text-decoration: underline;
}

.footer .copyright {
  margin: 0;
  font-size: 12px;
  color: #888;
}