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

/* =========================
   Header
========================= */
.site-header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.header-logo img {
  height: 48px;
}

/* =========================
   Contact Button（共通）
========================= */
.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* サイズ感は適宜調整してください */
  padding: 16px 48px; 
  /* 左: 青緑系 / 右: 緑系 のグラデーション */
  background: linear-gradient(90deg, #00979b 0%, #00a650 100%);
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 9999px; /* カプセル型 */
  text-decoration: none;
  line-height: 1;
  transition: opacity 0.3s;
  border: none;
}

/* hover */
.contact-btn:hover {
  opacity: 0.85;
}

/* 右矢印 */
/*.contact-btn::after {
  content: "▶";
  font-size: 12px;
  margin-left: 10px;
}
*/

/* =========================
   Header (Mobile)
========================= */
@media (max-width: 767px) {
 .contact-btn {
    padding: 12px 24px;
    font-size: 14px;
    width: auto;
    height: auto;
    box-shadow: none;
  }

  /* 元のコードにあったメールアイコンの擬似要素を無効化 */
  .contact-btn::before,
  .contact-btn::after {
    display: none;
  }
  
  .contact-text {
    display: inline; /* テキストを表示 */
  }
}


/* =========================
   Main Visual
========================= */
.main {
  width: 100%;
  background: #ffffff;
}

.main-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding:20px;
}

/* メイン画像 */
.main-visual img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  display: block;
}

/* タブレット */
@media (max-width: 1023px) {
  .main-inner {
    padding: 32px 16px;
  }

  .main-visual img {
    border-radius: 20px;
  }
}

/* スマホ */
@media (max-width: 767px) {
  .main-inner {
    padding: 24px 16px;
  }

  .main-visual img {
    border-radius: 16px;
  }
}

/* =========================
  footer
========================= */

.footer {
  background-color: #008f86; /* デザイン準拠 */
  padding: 56px 20px;
  color: #fff;
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* 上部説明文 */
.footer__lead {
  font-size: 14px;
  margin-bottom: 12px;
}

/* 会社名 */
.footer__company {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* 電話・受付時間 */
.footer__info {
  font-size: 14px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.footer__time {
  display: inline-block;
  margin-left: 8px;
}

/* コピーライト */
.footer__copyright {
  font-size: 12px;
  opacity: 0.9;
}

/* =========================
  Responsive
========================= */

@media screen and (max-width: 767px) {
  .footer {
    padding: 48px 16px;
  }

  .footer__company {
    font-size: 20px;
  }

  .footer__info {
    font-size: 13px;
  }

  .footer__time {
    display: block; /* SPでは改行 */
    margin-left: 0;
    margin-top: 4px;
  }
}


/* =========================
   タイトル（共通）
========================= */
.sec-title {
position: relative;
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.4;
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro",
               "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-weight: 700;	
}

/* =========================
  Tittle(共通)
========================= */
.sec-title .title-main {
  font-size: 32px;
  color: #00928b;
  font-weight: bold;
}

.sec-title .title-sub {
  font-size: 24px;
  color: #f5a623;
  font-weight: bold;
  margin-top: 8px;
}
/* アンダーライン */
.sec-title::after {
  content: "";
  display: block;
  width: 140px;
  height: 3px;
  background-color: #00928b;
  margin: 16px auto 0;
  border-radius: 2px;
}


/* =========================
   sec01
========================= */
.sec01 {
  background: url("../images/bg-sec01.png") no-repeat center bottom / cover;
  padding: 20px 0 20px;
}

.sec01-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 想い：2カラム */
.sec01-thoughts {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-bottom: 80px;
}

.sec01-card {
  max-width: 480px;
}

.sec01-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* メッセージ */
.sec01-message {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.sec01-message-img img {
  width: 200px;
  height: auto;
}

/* テキスト（デザイン色） */
.sec01-message-text {
  font-size: 16px;
  line-height: 1.9;
  color: #009688; /* デザイン準拠のグリーン */
  font-weight: bold;
}

/* =========================
   Tablet
========================= */
@media (max-width: 1023px) {
  .sec01 {
    padding: 80px 0 100px;
  }

 .sec-title .title-main {
    font-size: 24px;
  }

  .sec-title .title-sub {
    font-size: 20px;
  }

  .sec01-thoughts {
    gap: 24px;
  }
}

/* =========================
   sec01-Mobile
========================= */
@media (max-width: 767px) {
  .sec01 {
    padding: 60px 0 80px;
  }

  .sec01-title {
    margin-bottom: 40px;
  }

  .sec01-title .title-main {
    font-size: 22px;
  }

  .sec01-title .title-sub {
    font-size: 18px;
  }

  .sec01-title::after {
    width: 140px;
  }
  /* 縦並び */
  .sec01-thoughts {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 60px;
  }

  .sec01-message {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .sec01-message-img img {
    width: 160px;
  }

  .sec01-message-text {
    font-size: 15px;
  }
}

/* =========================
   sec02 背景
========================= */
.bg-sec02 {
  background-color: #ffffff;
  background-image: url("../images/bg-sec02.jpg");
  background-repeat: repeat;
  background-position: bottom center;
  padding: 80px 20px;
}

/* =========================
   sec02 inner
========================= */
.sec02-inner {
  max-width: 960px;
  margin: 0 auto;
  background-color: #ffffff;
  background-image: url("../images/bg-sec02-bottom.png");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain; /* デザイン通り比率保持 */
  border-radius: 20px;
  padding: 60px 40px 0px;
  text-align: center;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);	
}


/* =========================
   テキスト
========================= */
.sec02-text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
	font-weight: bold;
}

.sec02-text--emphasis span {
  color: #ff6b4a;
  font-weight: bold;
}

.sec02-text--orange {
  color: #ff6b4a;
  font-weight: bold;
  margin-top: 32px;
}

/* =========================
   矢印
========================= */
.sec02-arrow {
  margin: 24px 0;
	text-align: center;
}

.sec02-arrow img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto
}

/* =========================
   医師・車・看護師（1枚画像）
========================= */
.sec02-support {
  margin: 48px auto;
  text-align: center;
}

.sec02-support img {
  max-width: 100%;
  height: auto;
}

/* =========================
   下部テキスト
========================= */
.sec02-note {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.sec02-note span {
  color: #ff6b4a;
  font-weight: bold;
}

/* =========================
   想い
========================= */
.sec02-dream {
  margin-top: 32px;
  text-align: center;
}

.sec02-dream img {
  max-width: 100%;
  height: auto;
 display: block;
  margin: 0 auto	
	
}

/* =========================
   レスポンシブ
========================= */
@media screen and (max-width: 767px) {
  .sec02-inner {
    padding: 40px 20px 0px;
  }

  .sec02-title .title-sub {
    font-size: 22px;
  }

  .sec02-support {
    flex-direction: column;
    gap: 16px;
  }

  .support-item img,
  .support-car img {
    max-width: 240px;
  }
}

/* =========================
  sec03
========================= */

.sec03 {
  background-color: #fffce4;
  padding: 80px 20px 180px;
  position: relative;
}

.bg-sec03-bottom {
  background-image: url("../images/bg-sec03-bottom.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
}

.sec03__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.sec03__header {
  text-align: center;
  margin-bottom: 56px;
}

.sec03__title {
  font-size: 28px;
  font-weight: 700;
  color: #000;
}

.sec03__title .is-accent {
  color: #e60012;
  position: relative;
	font-size:1.35em;
}

.sec03__title .is-accent::after {
  content: "";
  display: block;
  width: 140px;
  height: 3px;
  background-color: #e60012;
  margin: 8px auto 0; /* 上8px／左右autoで中央寄せ */
}



/* list */

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.feature-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px;
  border-radius: 18px;
}

.feature-item--green {
  background-color: #e9f7f2;
  border: 2px solid #8fd3c1;
}

.feature-item--yellow {
  background-color: #fff6a8;
  border: 2px solid #f0cf4a;
}

.feature-item--orange {
  background-color: #ffd59b;
  border: 2px solid #f2a23a;
}

.feature-item__body {
  width: 70%;
}

.feature-item__heading {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
	color:#e60012;
}

.feature-item__badge {
  background-color: #e60012;
  color: #fff;
  font-size: 16px;
  padding: 4px 14px;
  border-radius: 999px;
}

.feature-item__text {
  font-size: 16px;
  line-height: 1.75;
  color: #000;
}

.feature-item__image {
  width: 20%;
  text-align: right;
}

.feature-item__image img {
  max-width: 100%;
  height: auto;
}


/* =========================
  Responsive（sec03）
========================= */

@media screen and (max-width: 1023px) {
  .sec03 {
    padding-bottom: 140px;
    background-size: cover;
  }

	.feature-item {
    flex-direction: column;
		align-items: center;
  }

  .feature-item__body,
  .feature-item__image {
    width: 100%;
  }

  .feature-item__image {
    margin-top: 24px;
    text-align: center;
  }
.feature-item__image img {
    display: block;  
    margin: 0 auto; 
  }	

  .sec-feature {
    padding-bottom: 140px;
    background-size: cover;
  }
}

@media screen and (max-width: 767px) {
  .sec03 {
    padding: 64px 16px 120px;
  }

  .sec03__title {
    font-size: 22px;
  }

  .sec-feature {
    padding: 64px 16px 120px;
  }

  .sec-feature__title {
    font-size: 22px;
  }

  .feature-item {
    padding: 24px;
  }

  .feature-item__heading {
    font-size: 18px;
    flex-wrap: wrap;
  }

  .feature-item__text {
    font-size: 15px;
  }
}

/* =========================
  sec04
========================= */
.sec04 {
  background-color: #e8f5ef;
  padding: 80px 20px;
}

.sec04__inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* 上部メッセージ */
.sec04__message { position: relative; text-align: center; margin-bottom: 64px; }

.sec04__message-text {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6;
  color: #1f5a3a;
  display: inline-block;
  padding: 32px 48px;
  position: relative;

  /* 4か所カギかっこ */
  background:
    /* 左上 */
    linear-gradient(#1f5a3a, #1f5a3a) left top / 24px 2px no-repeat,
    linear-gradient(#1f5a3a, #1f5a3a) left top / 2px 24px no-repeat,

    /* 右上 */
    linear-gradient(#1f5a3a, #1f5a3a) right top / 24px 2px no-repeat,
    linear-gradient(#1f5a3a, #1f5a3a) right top / 2px 24px no-repeat,

    /* 左下 */
    linear-gradient(#1f5a3a, #1f5a3a) left bottom / 24px 2px no-repeat,
    linear-gradient(#1f5a3a, #1f5a3a) left bottom / 2px 24px no-repeat,

    /* 右下 */
    linear-gradient(#1f5a3a, #1f5a3a) right bottom / 24px 2px no-repeat,
    linear-gradient(#1f5a3a, #1f5a3a) right bottom / 2px 24px no-repeat;
}


/* content */

.sec04__content {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  margin-bottom: 80px;
}

/* profile */

.sec04__profile {
  width: 30%;
  text-align: center;
}

.sec04__profile-image img {
  max-width: 100%;
  border-radius: 50%;
}

.sec04__profile-role {
  font-size: 14px;
  margin-top: 16px;
}

.sec04__profile-name {
  font-size: 20px;
  font-weight: 700;
  margin-top: 4px;
margin-bottom: 0;
}

.sec04__profile-kana {
  font-size: 14px;
  margin-top: 2px;
}

/* card */

.sec04__card {
  width: 70%;
  background-color: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.sec04__card p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.sec04__card-line {
  border: none;
  border-top: 3px dotted #ccc;
  margin: 24px 0;
}

.sec04__career {
  font-size: 13px;
  color: #555;
}

/* gallery */

.sec04__gallery {
text-align: center;
}


/* =========================
  Responsive
========================= */

@media screen and (max-width: 1023px) {
  .sec04__content {
    flex-direction: column;
  }

  .sec04__profile,
  .sec04__card {
    width: 100%;
  }

  .sec04__profile-image img {
    display: block;
    margin: 0 auto;
  }
}	
	
  .sec04__gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .sec04 {
    padding: 64px 16px;
  }

  .sec04__message-text {
    font-size: 22px;
    padding: 20px 24px;
  }
	
  .sec04__gallery {
    grid-template-columns: 1fr;
  }
}

/* =========================
  sec05
========================= */

.sec05 {
  background-image: url("../images/bg-sec02.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 20px;
}

.sec05__inner {
  max-width: 1100px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 24px;
  padding: 64px 40px 80px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

/* title */

.sec05__header {
  text-align: center;
  margin-bottom: 48px;
}

.sec05__title {
  font-size: 26px;
  font-weight: 700;
  color: #0b7d6e;
  position: relative;
}

.sec05__title::after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  background-color: #0b7d6e;
  margin: 12px auto 0;
}

/* plans */

.sec05__plans {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
}

.sec05__plan {
  background-color: #fffbc4;
  border-radius: 16px;
  padding: 24px 32px;
  width: 260px;
  text-align: center;
}

.sec05__plan-term {
  font-size: 16px;
  margin-bottom: 8px;
	font-weight: bold;
}

.sec05__plan-price {
  font-size: 22px;
  font-weight: 700;
  color: #f15a24;
	margin:0;
}

.sec05__plan-price span {
  font-size: 36px;
}

.sec05__plan-note {
  font-size: 14px;
  margin-top: 4px;
}

/* plan images */

.sec05__plan-images {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 56px;
}

.sec05__plan-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

.sec05__plan-image figcaption {
  text-align: center;
  font-size: 14px;
  margin-top: 8px;
}

/* bottom image */

.sec05__bottom {
  text-align: center;
}

.sec05__bottom img {
  max-width: 100%;
  height: auto;
}

/* =========================
  Responsive
========================= */

@media screen and (max-width: 1023px) {
/*  .sec05__plans {
    flex-direction: column;
    align-items: center;
  }
*/
  .sec05__plan-images {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 767px) {
  .sec05 {
    padding: 64px 16px;
  }

  .sec05__inner {
    padding: 48px 20px 64px;
  }

  .sec05__title {
    font-size: 22px;
  }

  .sec05__plan {
    width: 100%;
    max-width: 320px;
  }
.sec05__plans {
    flex-direction: column;
    align-items: center;
  }	
	
}

/* =========================
  sec-contact
========================= */

.sec-contact {
  background-color: #008f86;
  padding: 80px 20px;
}

.sec-contact__inner {
  max-width: 900px;
  margin: 0 auto;
}

.sec-contact__header {
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}

.sec-contact__title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

.sec-contact__lead {
  font-size: 14px;
}

/* box */

.sec-contact__box {
  background-color: #fff;
  border-radius: 24px;
  padding: 48px 40px 56px;
}

/* LINE */

.sec-contact__line {
  text-align: center;
  margin-bottom: 32px;
}

.sec-contact__line-link {
  display: inline-block;
}

.sec-contact__line-link img {
  display: block; 
  margin: 0 auto; 
  max-width: 100%;
  height: auto;
}

.sec-contact__line-note {
  font-size: 13px;
  margin-top: 12px;
}

/* divider */

.sec-contact__divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 32px 0;
}

/* form */

.sec-contact__form-title {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}

.sec-contact__form-lead {
  text-align: center;
  font-size: 14px;
  margin-bottom: 32px;
}

.form-item {
  margin-bottom: 20px;
}

.form-item label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

.is-required {
  background-color: #e60012;
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
}

.is-optional {
  background-color: #aaa;
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
}

.form-item input,
.form-item textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.form-submit {
  text-align: center;
  margin-top: 32px;
}

.form-submit button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.form-submit img {
  max-width: 100%;
  height: auto;
}

/* =========================
  Responsive
========================= */

@media screen and (max-width: 767px) {
  .sec-contact {
    padding: 64px 16px;
  }

  .sec-contact__box {
    padding: 40px 20px 48px;
  }

  .sec-contact__title {
    font-size: 22px;
  }

  .sec-contact__form-title {
    font-size: 20px;
  }
}

/* =========================
  Form
========================= */

/* お問い合わせ内容（テキストエリア） */
textarea {
  width: 100%!important;
  min-height: 180px;
  padding: 14px 16px;
  font-size: 16px;
  line-height: 1.7;
  border: 1px solid #dcdcdc;
  border-radius: 12px;
  background-color: #fafafa;
  box-sizing: border-box;
  resize: vertical;
}


/* フォーカス時 */
textarea:focus {
  outline: none;
  border-color: #009688; /* 送信ボタンと合わせたグリーン */
  background-color: #ffffff;
}

/* 送信ボタン 画像ホバー */
.form-submit button img {
  transition: opacity 0.3s ease;
}

.form-submit button:hover img {
  opacity: 0.7;
}