@charset "UTF-8";
/* CSS Document */





/*❎カード部分*/

.card-arch{
  width: min(1400px, 92%);
  margin: 40px auto;
}

.card-arch ul{
  display: flex;
  flex-wrap: wrap;
  gap: 24px;            /* カード同士のすき間 */
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: flex-start;
  justify-content: center; /* 3枚を中央寄せ */
}

.card-arch li{
  /* まずはPCで3列想定 */
  flex: 1 1 32%;
  max-width: 420px;     /* 画像の実サイズ上限がある場合の保険 */
}

/* 画像は親(li)の幅にフィットさせる */
.card-arch img{
  width: 100%;
  height: auto;
  display: block;
  max-width: none;      /* 500px制限を解除してはみ出し防止 */
}

/* タブレット相当：2列 */
@media (max-width: 900px){
  .card-arch li{
    flex: 1 1 48%;
    max-width: none;
  }
}

/* スマホ相当：1列（ユーザー既定の700pxを採用） */
@media (max-width: 700px){
  .card-arch li{
    flex: 1 1 100%;
  }
}





/*❎妊娠がわかったら〜*/
.section-02{
	width: 100%;
	margin: 50px auto;
	background-color: #fff;
	padding: 80px 0;
}

.section02-text{
	width: 60%;
	margin: 0 auto;
}
.section02-text h2{
	font-size: 1.4rem;
	color: #8fbc8f;
}
.section02-text span{
	font-size: 1rem;
	color: #f4a460;
}
.section02-text ul{
	padding-left: 30px;
	font-weight: bold;
	color: #333;
}
.section02-text p{
	margin-top: 20px;
	font-size: 1rem;
}
.section02-text h3{
	font-size: 1.5rem;
	color: #fa8072;
}

@media screen and (max-width: 1100px) {
.section02-text{
	width: 80%;
	margin: 0 auto;
}
}



/*❎こんな悩みはありませんか？*/

.worry {
  width: min(1500px, 80%);
  margin: 60px auto;
  background: transparent;
  /* text-align を無くすことで他要素は左寄せのまま */
}

.worry h1{
  display: table;                 /* ← 中央寄せしたい要素を“表”に */
  margin: 0 auto 30px;            /* ← 要素自体を中央へ */
  color: #20b2aa;
  font-weight: bold;
  font-size: 2rem;
  padding-bottom: 5px;            /* 文字と線の間 */
  border-bottom: 3px solid #20b2aa; /* 文字幅ぶんだけ線 */
}

.worry span{
	color: #ff8c00;
	font-weight: bold;
}



/* グリッド本体 */
.worry > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;   /* 2列 */
  gap: 24px;
  align-items: start;
  grid-auto-rows: auto;             /* 行高さは内容に応じる */
}

/* ───────── PC/タブレット固定配置 ───────── */
@media (min-width: 701px) {
  /* 左列：上から4枚 */
  #secret   { grid-column: 1; grid-row: 1; }
  #money    { grid-column: 1; grid-row: 2; }
  #abortion { grid-column: 1; grid-row: 3; }
  #late     { grid-column: 1; grid-row: 4; }

  /* 右列：#home は縦3行だけ（短縮）*/
  #home  { grid-column: 2; grid-row: 1 / span 3; }

  /* 右列の下に #raise */
  #raise { grid-column: 2; grid-row: 4; }

  /* 最下段：#rape は横2列ぶち抜き（行番号も調整）*/
  #rape.wide { grid-column: 1 / -1; grid-row: 5; }
}


/* スマホ：1列に戻す＋固定配置を解除 */
@media (max-width: 1300px) {
  .worry > ul {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .worry > ul > li {
    grid-column: auto !important;
    grid-row: auto !important;
  }
}

/* カード共通見た目 */
.worry li {
  background: #FEF1D7;
  border: 8px solid #736357;
  border-radius: 18px;
  padding: 18px 18px 14px;
  overflow: hidden;
  cursor: default;
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 130px;
  height: 100%;
}

.worry li h2 {
  font-size: 1.3rem;
  line-height: 1.6;
  margin: 0 0 10px;
  text-align:left;
	background-color: #20b2aa;
	color: #fff;
	padding: 10px 15px;
	border-radius: 15px;
}
.worry li p,
.worry li .coral-cole {
  margin-top: 10px;
}
.worry li a {
  color: #1a73e8;
  text-decoration: underline;
  word-break: break-word;
}

/*スライドショー*/

.home-media {
  width: 100%;
}

/* 枠：写真は枠からはみ出さない */
.home-slider {
  position: relative;
  width: 100%;
  overflow: hidden;               /* ← はみ出し防止 */
  border-radius: 15px;            /* 角丸（必要なければ削除） */
}

/* スライドの帯 */
.home-slider .home-slides {
  display: flex;                  /* 横並び */
  margin: 0;
  padding: 0;
  list-style: none;
  transition: transform 400ms ease;  /* 横スライドのアニメ */
  will-change: transform;
}

/* 各スライド(幅100%固定) */
.home-slider .home-slides > li {
  flex: 0 0 100%;
  max-width: 100%;
  border: none;
  background: transparent;
}

/* 画像は横幅いっぱい・比率保持（上下余白はOK） */
.home-slider .home-slides img {
  display: block;
  width: 100%;
  height: auto;                   /* 比率維持、トリミングしない */
  border-radius: 15px;            /* 親と揃える */
}

/* ===== ナビゲーションボタン（背景つき：白背景＋黒矢印） ===== */
.home-slider .home-prev,
.home-slider .home-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95); /* 白背景 */
  color: #111;                            /* 黒矢印 */
  font-size: 24px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

/* 左右位置 */
.home-slider .home-prev { left: 10px; }
.home-slider .home-next { right: 10px; }

/* ホバー・フォーカス */
.home-slider .home-prev:hover,
.home-slider .home-next:hover,
.home-slider .home-prev:focus-visible,
.home-slider .home-next:focus-visible {
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

/* 押下感 */
.home-slider .home-prev:active,
.home-slider .home-next:active {
  transform: translateY(-50%) scale(0.96);
}

/* ===== スライド下キャプション ===== */
.home-slider .home-caption {
  margin: 10px auto;
  font-size: 1.2rem;
  line-height: 1.7;
  color: #333;
  text-align: left;          /* ユーザー要望：左寄せ */
  width: 90%;

}


/* スマホで邪魔にならないよう少し透明度 */
@media (max-width: 480px) {
  .home-slider .home-prev,
  .home-slider .home-next {
    opacity: 0.9;
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
}

/* キーボード操作向け（視認性） */
.home-slider .home-prev:focus-visible,
.home-slider .home-next:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
}

/* 連打抑制で一時的に無効化する場合の見た目（JSで付与） */
.home-slider .is-disabled {
  pointer-events: none;
  opacity: 0.6;
}

/* ユーザーが reduce-motion 指定の場合の配慮 */
@media (prefers-reduced-motion: reduce) {
  .home-slider .home-slides {
    transition: none;
  }
  .home-slider .home-prev,
  .home-slider .home-next {
    transition: none;
  }
}

/*レイプされた…*/

.coral-cole a {
  text-decoration: underline;      /* 既定は下線あり＝可読性 */
  color: #006666;                  /* 濃いティールで見やすく */
  font-weight: 600;
  background: transparent;
  padding: 0;
  border-radius: 0;
  display: inline;                 /* 通常のテキストリンクとして振る舞う */
}

/* ==== ボタン化する2リンクだけを指定（背景つき・白文字） ==== */

/* コーラルコール（1つ目） */
.coral-cole a[href*="coralcall"] {
  display: inline-block;
  text-decoration: none;
  padding: 10px 14px;
  margin: 6px 0;
  border-radius: 8px;
  font-weight: 700;
  background-color: #008080;
  color: #fff;               /* ← 白文字はここだけ */
}
.coral-cole a[href*="coralcall"]:hover {
  background-color: #006666;
}

/* ワンストップ支援センター（2つ目） */
.coral-cole a[href*="seibouryoku"] {
  display: inline-block;
  text-decoration: none;
  padding: 10px 14px;
  margin: 6px 0;
  border-radius: 8px;
  font-weight: 700;
  background-color: #008080; /* ティール */
  color: #fff;               /* ← 白文字はここだけ */
}
.coral-cole a[href*="seibouryoku"]:hover {
  background-color: #006666;
}

/* ==== 電話リンクは必ず読みやすく（色を強制） ==== */
.coral-cole a[href^="tel:"] {
  color: #006666 !important;       /* 白に上書きされないように */
  text-decoration: underline !important;
  background: transparent !important;
  padding: 0 0 0 15px !important;
line-height: 2rem;
  border-radius: 0 !important;
  display: inline !important;
}
.coral-cole a[href^="tel:"]:hover {
  color: #004c4c !important;
}





/*❎お問い合わせについて*/
.contact {
  margin: 100px auto 0;
}

.contact ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  list-style: none;
  justify-content: center;
}

.contact li {
	
  background-color: #fff;
  padding: 20px 25px;
  border-radius: 20px;
  text-align: center;
  width: 30%;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
  transition: box-shadow .25s ease, transform .25s ease, background-color .25s ease;
}

.contact a {
  display: block;         /* li全体をクリック可能にする */
  width: 100%;
  height: 100%;
  text-align: center;
  text-decoration: none;
  color: #996633;
  font-size: 1.3rem;
  font-weight: 600;
  transition: transform .25s ease, opacity .25s ease;
}

.contact img {
  width: 100px;
  height: 100px;
  transition: transform .25s ease;
}

.contact p {
  margin-top: 10px;
  transition: opacity .25s ease, transform .25s ease;
}

.contact span {
  font-size: 1.1rem;
  transition: opacity .25s ease, transform .25s ease;
}

/* ホバー・フォーカス時の動き */
.contact li:hover,
.contact li:has(a:focus-visible) {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
	background-color: #fff3b8;
}

.contact li:hover a,
.contact li:has(a:focus-visible) a {
  transform: translateY(-1px);
}

.contact li:hover img,
.contact li:has(a:focus-visible) img {
  transform: scale(1.05);
}

.contact li:hover p,
.contact li:has(a:focus-visible) p {
  opacity: .95;
}

.contact li:hover span,
.contact li:has(a:focus-visible) span {
  opacity: 1;
}

/* キーボード操作でのフォーカス枠 */
.contact a:focus-visible {
  outline: 3px solid #c9b79f;
  outline-offset: 4px;
  border-radius: 16px;
}

/* タップ（スマホ）時の押し込み感 */
.contact a:active {
  transform: translateY(0);
}

.contact li:active {
  transform: translateY(-1px) scale(.997);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .10);
}

/* 画面幅が狭い時のレスポンシブ対応 */
@media screen and (max-width: 1250px) {
  .contact {
    display: block;
  }
  .contact li {
    width: 80%;
  }
}

/* 動きを控えめにしたいユーザー設定対応 */
@media (prefers-reduced-motion: reduce) {
  .contact li,
  .contact a,
  .contact img,
  .contact p,
  .contact span {
    transition: none;
  }
}

/*相談無料・秘密厳守・匿名OK*/
.contact-text{
	
	margin: 20px auto 100px;
}
.contact-text ul{
	display:flex;
	gap:30px;
	flex-wrap: wrap;
	list-style: none;
	text-align: center;
	justify-content: center;
}
.contact-text li{
	width: 30%;
padding: 15px 20px;
	border-radius: 15px;
	font-size: 1.2rem;
	font-weight: 600;
	color: #663300;
	min-width: 300px;
}
.contact-text li:nth-child(1) {
	background-color: #d4f5c9; /* 薄い緑系 */
 
}

.contact-text li:nth-child(2) {
   background-color: #f9caca; /* 薄い赤系 */
}

.contact-text li:nth-child(3) {
  
	background-color: #cce5ff; /* 薄い青系 */
}



/*❎一般Q&Aセクション*/

.qa-general-section {
  margin: 10px auto 150px;
  width: min(1200px, 90%);
  background-color: #FEF1D7;  
  border-radius: 18px;
  padding: 60px;
  border: solid 8px #736357;  
  font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  max-width: 1100px;
}

.qa-title{
	width: 200px;
	margin: 0 auto;
	display: block;
}

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

.qa-general-item {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px dashed #736357;  /* 各Q&A区切り線 */
}

.qa-general-item:last-child {
  border-bottom: none;
}

.qa-general-question {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 0 10px;
  color:#d2691e;  
}

.qa-general-answer p {
  font-size: 1.2rem;
  line-height: 2.2rem;
  margin: 0;
  color: #333;
}

/******************************
  レスポンシブ対応
******************************/
@media (max-width: 700px) {
  .qa-general-section {
    padding: 30px 20px;
  }
  .qa-general-section h1 {
    font-size: 1.6rem;
    margin-bottom: 28px;
  }
  .qa-general-question {
    font-size: 1.2rem;
  }
  .qa-general-answer p {
    font-size: 1rem;
    line-height: 1.8rem;
  }
}




/*❎にんしんQ&Aセクション*/
.section-03 .qa {
  width: min(900px, 92%);
  margin: 0 auto 100px;
  text-align: left; /* 左寄せ */
}

.section-03 .qa h1 {
  font-size: 1.8rem;
  margin: 0 0 20px;
	text-align: center;
	  font-family: "M PLUS Rounded 1c", "Kosugi Maru",
               "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro",
               "Yu Gothic", "游ゴシック体", "Meiryo", sans-serif;
	color: #5F8D11;
}

/* リスト基本 */
.section-03 .qa-list {
  list-style: none;
  margin: 0;
  padding: 0;
  
}



/* 質問ボタン */
.section-03 .qa-question {
  display: block;
  width: 100%;
  padding: 16px 40px 16px ;
  font: inherit;
  line-height: 1.6;
  background: none;
	background-color: #EAF4D8;
  border: none;
  text-align: left;
  cursor: pointer;
  position: relative;
	border-radius:20px;
	
}

.section-03 .qa-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
  font-size: 1.4rem;
	padding-right: 40px;
}

.section-03 .qa-question[aria-expanded="true"]::after {
  content: "−";
}

/* フォーカス見やすく */
.section-03 .qa-question:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* 回答（アコーディオン本体） */
.section-03 .qa-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s ease;
  will-change: max-height;
	
}

@media (prefers-reduced-motion: reduce) {
  .section-03 .qa-answer { transition: none; }
}

/* 回答内テキスト */
.qa-answer{
	width: 94%;
	margin: 5px auto;
}
.section-03 .qa-answer p {
  margin: 0 0 1em;
}
.section-03 .qa-answer span {
  color: #E77C00;
	font-weight: bold;
}
.section-03 .qa-answer h3,
.section-03 .qa-answer h4 {
  font-size: 1.05rem;
  margin: 1em 0 .4em;
}

.section-03 .qa-answer .qa-note {
  font-size: .95rem;
  opacity: .9;
}

.section-03 .qa-answer .qa-ol {
  padding-left: 1.2em;
  margin: .5em 0 1em;
}

@media screen and (max-width: 700px) {
  .section-03 .qa h1 { font-size: 1.5rem; }
  .section-03 .qa-question { padding: 14px 38px 14px 0; }
}