@charset "UTF-8";

/* font */
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@400;500;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&display=swap');

/* 共通 */
body {
  font-family: "M PLUS 1p", sans-serif;
}

body.is-locked {
  overflow: hidden;
}

:root {
  --drop-shadow: 4px 4px 6px rgba(0, 0, 0, 0.2);
  --color-main: #4da3d9;
  --color-main2: #7fc8e8;
  --color-main3: #b7e4f8;
  --bubble-bg: #e9f6fb;
  --shadow: 4px 4px 6px rgba(0, 0, 0, 0.20);
}
/*
.container-1320 {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}
*/
/*横スクロール防止*/
html, body {
  overflow-x: hidden;
}

.whyus {
  width: 100%;
}

/* 横幅を1320px以内にして中央寄せ */
.container-1320 {
  max-width: 1320px;
  margin: 0 auto;        /* ← 横中央 */
  padding: 0 16px;
  box-sizing: border-box;
}

.whyus-inner {
  display: flex;
  align-items: center;
  gap: 10px; /* left と right の余白 */
  /* 追加 */
 /* width: calc(629.29px + 46.71px + 638px);*/
  margin: 0 auto;
}

/* 左側 */
.whyus-left {
  width: 629.29px;
  height: 416px;
  display: flex;
  align-items: center;
  padding: 0 24px; /* 任意：文字の余白 */
  box-sizing: border-box;
}

/* 右側 */
.whyus-right {
  width: 638px;
  height: 419px;
}



.whyus-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  /* 左側のみ角丸 */
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
}

.why-item-climb {
  display: flex;
  align-items: center;
  gap: 31px;
  width: 100%;
  margin: 0 auto;
}

.why-item-climb + .why-item-climb {
  margin-top: 32px;
}

/* 左 */
.why-item-climb__content {
  width: 645px;
  height: 322px;
}

/* 右 */
.why-item-climb__image {
  width: 638px;
  height: 419px;
  filter: drop-shadow(6px 6px 0 rgba(78, 183, 120, 1));
}

.why-item-climb__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50px;
}

.why-item-climb__title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.why-item-climb__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #4eb788;
  flex-shrink: 0;
}

.why-item-climb__icon--pc {
  content: url(../img/icon-pc.svg);
  width: 29.72px;
  height: auto;
}

.why-item-climb__heading {
  font-size: 24px;
  color: #4eb778;
}

.why-item-climb__text {
  margin-top: 16px;
  line-height: 2;
}

.why-item-climb__list {
  line-height: 2;
  list-style-type: none;
}

/* =========================
   レスポンシブ（768px以下）
========================= */
@media screen and (max-width: 768px) {

  /* ---------- Why Us セクション ---------- */
  .whyus-inner {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    gap: 24px;
    padding: 0 16px;
  }

  .whyus-left,
  .whyus-right {
    width: 100%;
    height: auto;
  }

  .whyus-left {
    padding: 0;
  }

  .whyus-left p {
    line-height: 1.9;
  }

  .whyus-right img {
    border-radius: 24px;
  }

  /* ---------- セクション見出し ---------- */
  .section-heading-climb {
    text-align: center;
    margin: 48px 0 32px;
  }

  .section-heading__en {
    font-size: 14px;
  }

  .section-heading__jp {
    font-size: 22px;
  }

  /* ---------- 作業内容ブロック ---------- */
  .why-item-climb {
    flex-direction: column-reverse;
    width: 100%;
    max-width: 100%;
    gap: 24px;
    padding: 0 16px;
  }

  .why-item-climb__content {
    width: 100%;
    height: auto;
  }

  .why-item-climb__image {
    width: 100%;
    height: auto;
    /*filter: drop-shadow(4px 4px 0 rgba(78, 183, 120, 1));*/
    box-shadow: none;
    filter: none;
  }

  .why-item-climb__image img {
    height: auto;
    border-radius: 24px;
  }

  .why-item-climb__heading {
    font-size: 14px;
  }

  .why-item-climb__text,
  .why-item-climb__list {
    font-size: 12px;
  }
}

.contact-message {
  width: 100%;
  padding: 40px 16px;          /* 高さは padding で確保 */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.contact-message h3 {
  color: #4eb778;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}

.contact-message p {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  max-width: 900px;            /* 横に広がりすぎない */
  text-align: left;
}

/* スマホ */
@media screen and (max-width: 768px) {
  .contact-message {
    padding: 32px 16px;
  }

  .contact-message h3 {
    font-size: 16px;
    line-height: 1.6;
  }

  .contact-message p {
    font-size: 12px;
    line-height: 1.8;
  }
}

.tel-box {
  display: inline-block;
}

.tel-box__inner {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 14px 24px;
  border: 3px solid #4eb778;
  border-radius: 999px;       /* カプセル型 */
}

/* 電話アイコン */
.tel-box__icon {
  width: 28px;
  height: 28px;
  color: #4eb778;
}

.tel-box__icon img {
  width: 100%;
  height: 100%;
  display: block;
}

/* テキスト */
.tel-box__text {
  display: flex;
  flex-direction: column;
}

.tel-box__number {
  margin: 0;
  color: #4eb778;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.tel-box__time {
  margin: 0;
  color: #4eb778;
  font-size: 14px;
  line-height: 1.2;
}

@media screen and (max-width: 768px) {
  .tel-box__inner {
    padding: 12px 20px;
    gap: 10px;
  }

  .tel-box__number {
    font-size: 18px;
  }

  .tel-box__time {
    font-size: 12px;
  }
}

.mail-box {
  display: inline-block;
}

.mail-box__inner {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 14px 24px;
  border: 3px solid #4eb778;
  border-radius: 999px;       /* カプセル型 */
}

/* 電話アイコン */
.mail-box__icon {
  width: 28px;
  height: 28px;
  color: #4eb778;
}

.mail-box__icon img {
  width: 100%;
  height: 100%;
  display: block;
}

/* テキスト */
.mail-box__text {
  display: flex;
  flex-direction: column;
}

.mail-box__number {
  margin: 0;
  color: #4eb778;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.mail-box__time {
  margin: 0;
  color: #4eb778;
  font-size: 14px;
  line-height: 1.2;
}

@media screen and (max-width: 768px) {
  .mail-box__inner {
    padding: 12px 20px;
    gap: 10px;
  }

  .mail-box__number {
    font-size: 18px;
  }

  .mail-box__time {
    font-size: 12px;
  }
}

.tel-box__inner,
.mail-box__inner {
  min-height: 78px;          /* ← 高さを揃える */
  display: flex;
  align-items: center;       /* 縦中央揃え */
}

.cta-center {
  display: flex;
  justify-content: center;   /* 横中央 */
  gap: 30px;                 /* 2つのボタンの余白 */
}

@media screen and (max-width: 768px) {
  .cta-center {
    flex-direction: column;
    gap: 30px;
  }
}


/* ===============================
  2つのコンテンツを横並びにする
=============================== */
.target-wrap {
  display: flex;
  justify-content: center; /* ページ中央 */
  gap: 30px;               /* コンテンツ間の余白 */
}

/* ===============================
  共通ボックスデザイン
=============================== */
.target {
  width: 580px;
  height: 228px;

  padding: 32px 40px;
  box-sizing: border-box;

  background: #f3faec;
  border: 1px solid #E5E7EB;
  border-radius: 20px;

  /* 右下＋下の影 */
    box-shadow:
    4px 4px 0 rgba(0, 0, 0, 0.05),   /* 右下（控えめな縁影） */
    0 12px 20px rgba(0, 0, 0, 0.15); /* 下（メインの影） */
}

/* ===============================
  タイトル
=============================== */
.target__title {
  margin: 0 0 24px;
  text-align: center;

  color: #4EB778;
  font-size: 22px;
  font-weight: 700;
}

/* ===============================
  リスト共通
=============================== */
.target__list {
  margin: 0;
  padding: 0;
}

/* リスト文字 */
.target__list li {
  font-size: 14px;
  line-height: 2;
  color: #000;
}

/* ===============================
  ご利用対象者（左側）
=============================== */
.target:not(.target--time) .target__list {
  list-style: disc;
  padding-left: 20px; /* デフォルトの読みやすい余白 */
}

/* ===============================
  ご利用時間（右側）
=============================== */
.target--time .target__list {
  list-style: none;  /* ・を消す */
  padding: 0 0 0 70px;        /* 左右余白 */
}

/* ===============================
  スマホ対応
=============================== */
@media screen and (max-width: 768px) {
  .target-wrap {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 30px;
  }

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

  .target__title {
    font-size: 20px;
  }

  .target__list li {
    font-size: 14px;
  }
}

/* ===== 全体レイアウト ===== */
.voice-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1320px;
  margin: 0 auto;
}

/* 3段目中央 */
.voice-card--center {
  grid-column: 1 / -1;
  justify-self: center;
}

/* ===== カード ===== */
/*.voice-card {
  background: #fff;
  border: 3px solid #3ac18b;
  border-radius: 18px;
  padding: 24px 28px;
  display: flex;
  gap: 24px;
  max-width: 640px;
  box-shadow:
    6px 6px 0 rgba(0,0,0,0.08),
    0 6px 12px rgba(0,0,0,0.12);
}*/

.voice-card {
  box-sizing: border-box;
  background: #fff;
  border: 3px solid #4eb778;
  border-radius: 18px;
  padding: 24px 28px;
  display: flex;
  gap: 24px;
  max-width: 645px;

  /* 右・下だけの薄い緑影 */
  box-shadow: 
    6px 6px 12px rgba(78, 183, 120, 0.25);
}


/* ===== 左側 ===== */
.voice-left {
  flex: 0 0 140px;
  text-align: center;
}

.voice-left img {
  width: 100px;
  height: 100px;
}

.badge {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 16px;
  background: #4eb778;
  color: #fff;
  font-weight: bold;
  border-radius: 999px;
  font-size: 16px;
}

/* ===== 右側 ===== */
.voice-right h4 {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: bold;
}

.voice-right p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.8;
}

/* ===== レスポンシブ ===== */
@media (max-width: 768px) {
  .voice-list {
    grid-template-columns: 1fr;
  }

  .voice-card--center {
    grid-column: auto;
  }

  .voice-card {
    flex-direction: column;
    align-items: center;
    text-align: left;
    width: 100%;
    max-width:100%;
  }

  .voice-left {
    flex: none;
  }
}

/* 2つのまとまりを横並び */
.map-info-wrap {
  display: flex;
  justify-content: center; /* 横中央 */
  gap: 30px;               /* 2つの間隔 */

  
  margin-bottom: 64px; /* ← フッターとの余白 */
}

/* 各まとまり */
.map-info-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}


.map-frame {
  width: 645px;
  height: 445px;
  border-radius: 16px 16px 0 0; /* 左上・右上だけ */
  overflow: hidden;           /* これが重要 */
    /* 右側だけ影 */
  box-shadow: 6px 0 12px rgba(0, 0, 0, 0.18);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.info-box {
  width: 645px;
  background: #fff;
  padding: 24px;

  /* 下だけ角丸 */
  border-radius: 0 0 16px 16px;

  /* 右＋下に影 */
  box-shadow: 6px 6px 14px rgba(0, 0, 0, 0.18);
}

.info-climb-box {
  width: 645px;
  background: #fff;
  padding: 24px;

  /* 下だけ角丸 */
  border-radius: 0 0 16px 16px;

  /* 右＋下に影 */
  box-shadow: 6px 6px 14px rgba(0, 0, 0, 0.18);
}

.info-box p,
.info-climb-box p {
  margin: 0;
  line-height: 1.7;
  font-size: 16px;
}

.info-box h4 {
  text-align: center;     /* 横中央 */
  color: #3583a9;         /* 指定カラー */
  line-height: 1.33;      /* 行間 */
  margin: 0 0 12px;       /* 下に少し余白（任意） */
  font-weight: 600;       /* 見出しらしく（任意） */
  font-size: 24px;
  margin-top: 8px;
  text-decoration: none;
}

.info-climb-box h4 {
  text-align: center;     /* 横中央 */
  color: #4eb778;         /* 指定カラー */
  line-height: 1.33;      /* 行間 */
  margin: 0 0 12px;       /* 下に少し余白（任意） */
  font-weight: 600;       /* 見出しらしく（任意） */
  font-size: 24px;
  margin-top: 8px;
  text-decoration: none;
}

.address {
  display: flex;
  align-items: flex-start; /* 1行目の先頭に合わせる */
  gap: 8px;

  line-height: 1.7;
  font-size: 15px;
  color: #333;
  margin: 0;
}

.address img {
  width: 16px;
  height: auto;
  margin-top: 2px; /* 文字位置の微調整 */
  flex-shrink: 0;  /* 折り返し時に潰れない */
}

/* =========================
   共通：最大幅で管理
========================= */
.map-frame,
.info-box,
.info-climb-box {
  width: 100%;
  max-width: 645px;
}

/* =========================
   iframe 高さ調整（比率維持）
========================= */
.map-frame {
  height: auto;
  aspect-ratio: 645 / 445; /* 既存サイズ比率 */
}

/* =========================
   map-info-wrap レスポンシブ
========================= */

/* タブレット以下 */
@media screen and (max-width: 1024px) {
  .map-info-wrap {
    flex-wrap: wrap;
    gap: 40px;
    padding: 0 16px;
    box-sizing: border-box;
  }

  .map-info-group {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    padding: 0; /* ← ここ重要 */
  }
}

/* =========================
   スマホ時：縦並びにする
========================= 
@media screen and (max-width: 768px) {
  .map-info-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 0 16px;
    box-sizing: border-box;
  }

  .map-info-group {
    width: 100%;
    max-width: 100%;
  }
}
*/

@media screen and (max-width: 768px) {
  .map-info-wrap {
    padding: 0 16px;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .map-frame,
  .info-box,
  .info-climb-box {
    width: 100%;
    max-width: 100%;
  }

  .map-frame iframe {
    display: block;
  }
}


/* 小さめスマホ */
@media screen and (max-width: 480px) {
  .map-info-wrap {
    padding: 0 12px;
  }

  .info-box,
  .info-climb-box {
    padding: 16px;
  }
}








