/*
Theme Name: 街のデジタル塾 スマイル
Theme URI:
Author:
Author URI:
Description: シニアのためのデジタル教室「スマイル」カスタムテーマ
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: smile
*/

/* ============================================================
   街のデジタル塾 スマイル — LP Stylesheet
   高齢者向け：大きめ文字・高コントラスト・広いタップ領域
============================================================ */

/* ---- Reset & Base ---------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:      #F7941D;
  --orange-dark: #e07d08;
  --orange-light:#FFF3E0;
  --green-line:  #06C755;
  --green-dark:  #05a847;
  --blue:        #4a90d9;
  --text:        #333333;
  --text-sub:    #666666;
  --bg-light:    #FFFBF5;
  --bg-gray:     #F5F5F5;
  --white:       #FFFFFF;
  --border:      #E0E0E0;
  --radius:      12px;
  --shadow:      0 4px 16px rgba(0,0,0,.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text);
  background: var(--white);
  -webkit-text-size-adjust: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Sections -------------------------------------------- */
section { padding: 72px 0; }

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.section-header--center { justify-content: center; flex-direction: column; text-align: center; gap: 8px; }

.section-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text);
  position: relative;
  padding-left: 18px;
}
.section-title::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 80%;
  background: var(--orange);
  border-radius: 3px;
}
.section-header--center .section-title { padding-left: 0; }
.section-header--center .section-title::before { display: none; }
.section-title--white { color: var(--white); }
.section-subtitle--white { color: rgba(255,255,255,.9); font-size: 1.05rem; }

.section-more {
  font-size: 0.95rem;
  color: var(--orange);
  border: 2px solid var(--orange);
  padding: 6px 18px;
  border-radius: 20px;
  white-space: nowrap;
  transition: all .2s;
}
.section-more:hover { background: var(--orange); color: white; }

/* ============================================================
   HEADER
============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.10);
}
.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.header__logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}
.header__logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.header__logo-sub  { font-size: 0.7rem; color: var(--text-sub); }
.header__logo-main { font-size: 1.3rem; font-weight: 900; color: var(--orange); }

.header__nav { margin-left: auto; }
.header__nav-list { display: flex; gap: 0; }
.header__nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 14px;
  font-size: 0.82rem;
  color: var(--text-sub);
  border-bottom: 3px solid transparent;
  transition: all .2s;
  white-space: nowrap;
}
.header__nav-link:hover,
.header__nav-link.active { color: var(--orange); border-bottom-color: var(--orange); }
.header__nav-icon { font-size: 1.1rem; }

.header__tel { text-align: right; flex-shrink: 0; }
.header__tel-label { font-size: 0.72rem; color: var(--text-sub); line-height: 1.4; }
.header__tel-number {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--orange);
  display: block;
  line-height: 1.2;
}
.header__tel-hours { font-size: 0.68rem; color: var(--text-sub); line-height: 1.4; }

.btn-tel-header {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: white;
  font-size: 1rem;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 8px;
  white-space: nowrap;
  transition: background .2s;
  flex-shrink: 0;
}
.btn-tel-header:hover { background: var(--orange-dark); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 28px; height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1100;
}
.nav-overlay.show { display: block; }

.mobile-nav {
  position: fixed;
  top: 0; right: -300px;
  width: 280px; height: 100%;
  background: white;
  z-index: 1200;
  transition: right .3s ease;
  padding: 24px;
  overflow-y: auto;
}
.mobile-nav.open { right: 0; }
.mobile-nav__close {
  background: none; border: none;
  font-size: 1.5rem;
  display: block; margin-left: auto;
  margin-bottom: 24px;
  color: var(--text-sub);
}
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  display: block;
  padding: 16px 12px;
  font-size: 1.1rem;
  font-weight: 700;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.mobile-nav__cta { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }

.btn-tel-mobile, .btn-line-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 900;
  color: white;
}
.btn-tel-mobile  { background: var(--orange); }
.btn-line-mobile { background: var(--green-line); }

/* ============================================================
   HERO
============================================================ */
.hero {
  background: linear-gradient(135deg, #FFFBF2 0%, #FFF8E7 60%, #FFFDF7 100%);
  padding: 0;
}

.hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px 48px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero__content { flex: 1; min-width: 0; }

.hero__catch {
  font-size: 1.1rem;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 12px;
}

.hero__title {
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 20px;
}
.hero__title-accent {
  color: var(--orange);
  background: linear-gradient(transparent 60%, #FFE082 60%);
}

.hero__desc {
  font-size: 1.05rem;
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: 32px;
}

.hero__image {
  flex: 0 0 50%;
  max-width: 560px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero__image img { width: 100%; height: 320px; object-fit: cover; }

.news-box {
  max-width: 1100px;
  margin: 0 auto 0;
  padding: 0 24px 60px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
}

.news-box__inner {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}
.news-box__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.news-box__title { font-size: 1.1rem; font-weight: 900; }
.news-box__list { display: flex; flex-direction: column; gap: 0; }
.news-box__item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.news-box__item:last-child { border-bottom: none; }
.news-box__date { font-size: 0.85rem; color: var(--text-sub); padding-top: 2px; }
.news-box__text { font-size: 0.95rem; color: var(--text); }

.access-box {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}
.access-box__title { font-size: 1.1rem; font-weight: 900; margin-bottom: 12px; }
.access-box__map { position: relative; margin-bottom: 12px; border-radius: 8px; overflow: hidden; }
.access-box__map-pin {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  font-size: 2rem;
}
.access-box__address { font-size: 0.88rem; color: var(--text-sub); line-height: 1.7; margin-bottom: 12px; }
.btn-map {
  display: block;
  text-align: center;
  padding: 10px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text);
  transition: all .2s;
}
.btn-map:hover { border-color: var(--orange); color: var(--orange); }

/* ============================================================
   CTA バナー
============================================================ */
.cta-banner {
  background: var(--bg-light);
  padding: 32px 0;
  border-top: 2px solid #FFE0B2;
  border-bottom: 2px solid #FFE0B2;
}
.cta-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.cta-banner__tel {
  display: flex;
  align-items: center;
  background: var(--orange);
  border-radius: var(--radius);
  padding: 24px 28px;
  color: white;
  transition: background .2s;
}
.cta-banner__tel:hover { background: var(--orange-dark); }
.cta-banner__tel-label { font-size: 0.85rem; opacity: .9; margin-bottom: 6px; }
.cta-banner__tel-number {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.2;
}
.cta-banner__tel-hours { font-size: 0.8rem; opacity: .85; margin-top: 4px; }

.cta-banner__line {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--green-line);
  border-radius: var(--radius);
  padding: 24px 28px;
  color: white;
  text-align: center;
  transition: background .2s;
}
.cta-banner__line:hover { background: var(--green-dark); }
.cta-banner__line-label { font-size: 1rem; font-weight: 700; margin-bottom: 12px; }
.cta-banner__line-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FFD700;
  color: #1a1a1a;
  font-size: 1.2rem;
  font-weight: 900;
  padding: 14px 28px;
  border-radius: 50px;
}

/* ============================================================
   FEATURES
============================================================ */
.features { background: var(--white); }
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.features__item {
  text-align: center;
  padding: 24px 16px;
  border-radius: var(--radius);
  background: var(--bg-light);
  border: 2px solid #FFE0B2;
  transition: transform .2s, box-shadow .2s;
}
.features__item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.features__icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.features__icon--pink   { background: #FFEBEE; }
.features__icon--orange { background: #FFF3E0; }
.features__icon--green  { background: #E8F5E9; }
.features__icon--blue   { background: #E3F2FD; }

.features__name {
  font-size: 1rem;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 10px;
}
.features__desc { font-size: 0.88rem; color: var(--text-sub); line-height: 1.7; }

/* ============================================================
   COURSES
============================================================ */
.courses { background: var(--bg-gray); }
.courses__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.course-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  border-top: 5px solid var(--border);
  transition: transform .2s;
}
.course-card:hover { transform: translateY(-4px); }
.course-card--line { border-top-color: var(--green-line); }
.course-card:not(.course-card--line):first-child { border-top-color: var(--blue); }
.course-card:last-child { border-top-color: #757575; }

.course-card__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.course-card__icon--blue  { background: #E3F2FD; }
.course-card__icon--green { background: var(--green-line); }
.course-card__icon--gray  { background: #F5F5F5; }

.course-card__title { font-size: 1.15rem; font-weight: 900; margin-bottom: 10px; }
.course-card__desc  { font-size: 0.9rem; color: var(--text-sub); line-height: 1.7; flex: 1; margin-bottom: 20px; }
.course-card__price {
  background: var(--orange-light);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.course-card__price-num  { font-size: 0.9rem; font-weight: 700; }
.course-card__price-num strong { font-size: 1.4rem; color: var(--orange); }
.course-card__price-tax  { font-size: 0.82rem; color: var(--text-sub); }

.courses__cta { text-align: center; }
.btn-outline-orange {
  display: inline-block;
  padding: 16px 48px;
  border: 3px solid var(--orange);
  border-radius: 50px;
  color: var(--orange);
  font-size: 1.05rem;
  font-weight: 700;
  transition: all .2s;
}
.btn-outline-orange:hover { background: var(--orange); color: white; }

/* ============================================================
   CLASSROOM
============================================================ */
.classroom { background: var(--white); }
.classroom__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.classroom__item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.classroom__item img {
  width: 100%; height: 220px;
  object-fit: cover;
  transition: transform .3s;
}
.classroom__item:hover img { transform: scale(1.04); }
.classroom__item p {
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text-sub);
  background: white;
  text-align: center;
}

/* ============================================================
   VOICES
============================================================ */
.voices { background: var(--bg-light); }
.voices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.voice-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
}
.voice-card::before {
  content: '"';
  position: absolute;
  top: 12px; left: 16px;
  font-size: 4rem;
  color: var(--orange-light);
  font-family: serif;
  line-height: 1;
}
.voice-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.voice-card__avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--bg-gray);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.voice-card__attr { font-size: 0.88rem; color: var(--text-sub); font-weight: 700; }
.voice-card__text { font-size: 0.95rem; line-height: 1.8; color: var(--text); position: relative; }

/* ============================================================
   FAQ
============================================================ */
.faq { background: var(--bg-gray); }
.faq__list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  transition: background .15s;
}
.faq__question:hover { background: var(--bg-light); }
.faq__q-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--orange);
  color: white;
  font-weight: 900;
  font-size: 1rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.faq__question span:nth-child(2) { flex: 1; }
.faq__arrow {
  flex-shrink: 0;
  font-size: 0.8rem;
  color: var(--orange);
  transition: transform .3s;
}
.faq__question[aria-expanded="true"] .faq__arrow { transform: rotate(180deg); }
.faq__answer {
  display: none;
  padding: 0 24px 20px 74px;
  font-size: 0.97rem;
  color: var(--text-sub);
  line-height: 1.85;
  position: relative;
}
.faq__answer.open { display: flex; gap: 14px; padding-left: 24px; }
.faq__a-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: #4a90d9;
  color: white;
  font-weight: 900;
  font-size: 1rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}

/* ============================================================
   CONTACT
============================================================ */
.contact {
  background: linear-gradient(135deg, #F7941D 0%, #e86a00 100%);
  padding: 72px 0;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

.contact__tel-box,
.contact__form-box {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 32px;
  border: 2px solid rgba(255,255,255,.3);
}
.contact__box-title {
  font-size: 1.05rem;
  font-weight: 900;
  color: white;
  margin-bottom: 20px;
}
.contact__tel-num {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 2rem;
  font-weight: 900;
  color: white;
  margin-bottom: 8px;
  line-height: 1.2;
}
.contact__hours { font-size: 0.85rem; color: rgba(255,255,255,.85); margin-bottom: 24px; }
.btn-tel-large {
  display: block;
  text-align: center;
  background: white;
  color: var(--orange);
  font-size: 1.15rem;
  font-weight: 900;
  padding: 18px;
  border-radius: 10px;
  transition: all .2s;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.btn-tel-large:hover { background: var(--orange-light); }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form__group { display: flex; flex-direction: column; gap: 6px; }
.contact-form__label {
  font-size: 0.92rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
}
.required {
  background: #ff5252;
  color: white;
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: 4px;
}
.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 1rem;
  font-family: inherit;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 8px;
  background: rgba(255,255,255,.95);
  color: var(--text);
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
}
.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
  border-color: white;
  box-shadow: 0 0 0 3px rgba(255,255,255,.3);
}
.contact-form__textarea { resize: vertical; min-height: 100px; }
.btn-submit {
  background: white;
  color: var(--orange);
  font-size: 1.1rem;
  font-weight: 900;
  padding: 18px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all .2s;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.btn-submit:hover { background: #FFF3E0; transform: translateY(-2px); }
.contact-form__success {
  background: white;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.8;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: #333;
  color: rgba(255,255,255,.8);
  padding: 40px 0 24px;
}
.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__logo-sub  { font-size: 0.7rem; opacity: .7; display: block; }
.footer__logo-main { font-size: 1.1rem; font-weight: 900; color: white; display: block; }
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  font-size: 0.85rem;
}
.footer__nav a:hover { color: var(--orange); }
.footer__copy { font-size: 0.78rem; opacity: .6; }

/* ============================================================
   FLOAT CTA (mobile)
============================================================ */
.float-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
}
.float-cta__tel,
.float-cta__line {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px;
  font-size: 1.05rem;
  font-weight: 900;
  color: white;
}
.float-cta__tel  { background: var(--orange); }
.float-cta__line { background: var(--green-line); }

/* ============================================================
   SCROLL ANIMATION
============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE — Tablet (≤ 960px)
============================================================ */
@media (max-width: 960px) {
  .header__nav  { display: none; }
  .header__tel  { display: none; }
  .btn-tel-header { display: none; }
  .hamburger    { display: flex; }

  .hero__inner  { flex-direction: column; padding: 40px 20px 32px; }
  .hero__image  { flex: none; width: 100%; max-width: 100%; }
  .hero__image img { height: 240px; }

  .news-box     { grid-template-columns: 1fr; }
  .cta-banner__inner { grid-template-columns: 1fr; }
  .features__grid    { grid-template-columns: repeat(2, 1fr); }
  .courses__grid     { grid-template-columns: 1fr; }
  .classroom__grid   { grid-template-columns: repeat(2, 1fr); }
  .voices__grid      { grid-template-columns: 1fr; }
  .contact__grid     { grid-template-columns: 1fr; }

  .float-cta { display: flex; }
  .contact   { padding-bottom: 96px; }
  .footer    { padding-bottom: 80px; }
}

/* ============================================================
   RESPONSIVE — Mobile (≤ 600px)
============================================================ */
@media (max-width: 600px) {
  body { font-size: 16px; }
  section { padding: 48px 0; }

  .hero__title { font-size: 2rem; }
  .hero__desc  { font-size: 0.95rem; }

  .section-title { font-size: 1.4rem; }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .classroom__grid { grid-template-columns: 1fr; }
  .cta-banner__tel-number { font-size: 1.6rem; }
  .contact__tel-num { font-size: 1.6rem; }
  .news-box { padding-bottom: 40px; }
}
