
/* =========================
   メイン（hero）
   ========================= */
/*  */
.hero-full {
  overflow-x: hidden;
  background: url('../images/main_visual.png') center/cover no-repeat;
  padding: 15em 1em 13em;
  margin: 0;
  box-sizing: border-box;
  box-shadow: none;
}
.hero-container {
  width: 80%;
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  padding: 2em;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border: 5px solid #0088ce; /* functions.php で上書き可能 */
}

.hero-container h1,
.hero-container h2 {
  margin: 0 auto;
  font-size: 2.2em;
  color: #F39700; /* functions.php で上書き可能 */
  font-weight: bold;
  line-height: 1.4;
}
.hero-title-em{
  display: block;
  color: #cf0909;
  font-weight: 900;
  font-size: 1.25em;
}

/* お知らせ行 */
.hero-notice{
  margin: 1.2em 0 0;
  font-size: 1.5em;
  line-height: 1.6;
  /*font-weight: 700;*/
  font-weight: bold;
  color: #333;
  border-bottom: dotted 4px #0088ce;
  padding: 0 0 0.8em;

}
.hero-notice-em{
  font-weight: 900;
}

/* 本文（WYSIWYG） */
.hero-container .hero-text {
  margin-top: 2em;
  font-size: 1em;
  line-height: 1.6;
  color: #333;
  /*font-weight: bold;*/
}

/* スマホ */
@media screen and (max-width: 768px) {
  .hero-full {
    padding: 7em 0 6em;
  }
  .hero-container{
    width: 88%;
    padding: 2%;
    margin: 0 auto;
  }

  .hero-container h1,
  .hero-container h2 {
    font-size: 1.55em;
  }
  .hero-notice-em{
text-align: left;
        font-size: 1em;
        display: block;
  }

  .hero-container .hero-text{
    text-align: left;
  }
}




/* =========================
   留意すべき事項（highlight）
   ========================= */
.highlight {
  border: 6px solid #63e5ac;
  color: #F08BC7;
  position: relative;
  padding: 2em;
  border-radius: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 80%;
  margin: 2em auto 4em;
/*  margin-top: 180px;*/
}
.highlight h3 {
  position: relative;
  padding-bottom: 1em;
  color: #F08BC7;
  font-size: 2em;
}
.highlight h3::after {
  content: '';
  display: block;
  width: 100px;
  /*height: 4px;*/
  height: 6px;
  background: #63e5ac;
  position: absolute;
  bottom: 0;
  left: 45%;
  right: 45%;
  border-radius: 6px;
}

.overview-icon {
  position: absolute;
  top: -15px;
  left: -70px;
  width: 150px;
  height: auto;
}
.overview-icon img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .highlight {
    width: 90%;
    padding: 2em 1em;
    margin-bottom: 0;
  }
  .highlight h3{
    font-size: 1.4em;
    margin: 2em auto 0;
    width: 100%;
  }
  .overview-icon {
    left: -25px;
    width: 100px;
    top: -20px;
  }
  .highlight h3::after{
    content: none;
  }
}

.highlight p {
  text-align: left;
  font-size: 1.15em;
  font-weight: bold;
  padding-left: 1em;
  text-indent: -1em;  
}
.styled-requirements {
  background-color: #daedf7;
  border: 2px solid #0088ce;
  border-radius: 12px;
  padding: 0.5em 2em;
  margin-bottom: 2em;
}
.styled-requirements h3 {
  font-size: 1.6em;
  margin-bottom: 1em;
  position: relative;
  display: inline-block;
}
.styled-requirements h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.3em;
  width: 100%;
  height: 6px;
  border-radius: 6px;
  background-color: #0088ce;
}

/* highlight 本文：WYSIWYG用（pが複数入っても崩れない） */
.highlight .highlight-text{
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
}
.highlight .highlight-text p{
  margin: 0.6em 0;
}
.highlight .highlight-text p:first-child{
  margin-top: 0;
}
.highlight .highlight-text p:last-child{
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .styled-requirements {
    padding: 2em 1em;
  }
  .styled-requirements h3 {
    margin: 0 auto 0.25em;
  }
  .highlight p{
        font-size: 1em;
    text-align: left;
  }
}




/* =========================
   お知らせ（News）
   ========================= */
#news {
  padding: 2em 1em;
  box-shadow: none;
}
.news-inner {
  display: flex;
  flex-direction: row;
  gap: 2em;
  align-items: center;
}
.news-heading {
  padding-right: 1em;
  flex: 0 0 200px;
  position: relative;
  display: flex;
  align-items: center;
}
.news-heading::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background-color: #0389cf;
}
.news-heading h2 {
  font-size: 2em;
  margin: 0;
  color: #0389cf;
}
.news-entries {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin: 0.25em auto;
}
.news-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1em;
  border-bottom: 2px dotted #2e2e2e;
  padding-bottom: 0.8em;
}
.news-label {
  border: 1px solid #333;
  padding: 0.3em 0.8em;
  font-size: 0.8em;
}
.news-date {
  font-size: 0.9em;
  color: #666;
}
.news-title {
  font-weight: bold;
  color: #222;
  text-decoration: none;
}
.news-title:hover {
  text-decoration: underline;
  opacity: 0.7;
}

.news-link-area {
  text-align: right;
  margin-top: 2em;
}
.news-more {
  padding: 1em 3em;
  display: inline-block;
  text-decoration: none;
  color: #FFF;
  background-color: #0389cf;
  font-size: 1.15em;
  border-radius: 10px;
}
.news-more:hover {
  opacity: 0.7;
}
@media (min-width: 769px) {
  #news{
    margin: 2em auto;
  }
  .news-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .news-heading {
    text-align: left;
    padding: 3.5em 0;
  }
  .news-heading::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background-color: #0389cf;
  }
  .news-link-area {
    text-align: right;
  }
}
@media (max-width: 768px) {
  .news-inner {
    flex-direction: column;
    align-items: center;
  }
  .news-heading {
    flex: auto;
    text-align: center;
    border-right: none;
    padding-right: 0;
    margin-bottom: 1em;
  }
  .news-heading::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -15px;
    left: 25%;
    width: 50%;
    height: 4px;
    background-color: #0389cf;
    top: auto;
  }

  .news-title {
    text-decoration: underline;
  }
  .news-title:hover {
    text-decoration: none;
  }

  .news-link-area {
    text-align: center;
  }
  .news-entries{
    width: 100%;
  }
}



/* =========================
   申請書類提出期限（Deadlines）
   ========================= */
.deadlines{
  border: 2px solid #0389cf;
  border-radius: 12px;
  padding: 1.2em 2em;
  margin-bottom: 2em;
  box-shadow: none;
  background: #fff;
}
.deadlines h2{
  font-size: 1.8em;
  color: #333;
  display: inline-block;
  margin: 0 0 0.6em;
  position: relative;
  padding-bottom: 0.25em;
}
.deadlines h2::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-0.15em;
  width: 280px;
  max-width: 100%;
  height: 6px;
  background:#0389cf;
  border-radius: 999px;
}
.deadlines .note{
  font-weight: 700;
  text-align: left;
  margin: 0 0 1.2em;
  font-size: 1.1em;
  line-height: 1.6;
}
.deadline-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.9em 1.2em;
  font-size: 0.75em;
  line-height: 1.7;
  margin: 0 0 1.2em;
}
.deadline-grid p{
  margin: 0;
}
.deadline-grid .label{
  background:#0389cf;
  color:#fff;
  border-radius: 10px;
  padding: 0.25em 0.85em;
  font-weight: 700;
  margin-right: 0.4em;
  display: inline-block;
  white-space: nowrap;
}
.deadlines .txbd{
  font-weight: 800;
  color: #d80b0b;
  text-align: left;
  margin: 0;
  line-height: 1.7;
}

.font-w{
  font-weight: 700;
  font-size: 1.15em;
}
@media (max-width: 768px){
  .deadlines{
    padding: 1.4em 1em;
  }
  .deadlines h2{
    font-size: 1.5em;
  }
  .deadlines h2::after{
    width: 220px;
  }
  .deadline-grid{
    grid-template-columns: 1fr;
    font-size: 1em;
  }
}




/* =========================
   補助対象事業（styled-conditions）
   ========================= */
.styled-conditions {
  background-color: #daedf7;
  border: 2px solid #0088ce;
  border-radius: 12px;
  padding: 2em;
  margin-bottom: 2em;
  box-shadow: none;

}
.styled-conditions h3 {
  font-size: 1.6em;
  margin-bottom: 1em;
  position: relative;
  display: inline-block;
}
.styled-conditions h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.3em;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background-color: #0088ce;
}
.styled-conditions ul {
  list-style: none;
  padding-left: 0;
  margin: 1em 0 1em;
}
.styled-conditions ul li {
  margin-bottom: 1em;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.6em;
}
.styled-conditions .bold {
  font-weight: bold;
}
.styled-conditions .note {
  font-size: 1em;
  margin-top: 1em;
  color: #333;
}
.styled-conditions .underline {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .styled-conditions {
    padding: 2em 1em;
  }
  .styled-conditions h3{
    margin: 0 auto 0.25em;
  }
}



/* =========================
   補助対象期間（subsidy-info）
   ========================= */
.subsidy-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
  justify-content: space-between;
  margin-bottom: 2em;
  max-width: 1200px;
  padding: 0;
}
.subsidy-block {
  flex: 1 1 calc(33% - 1em);
  background-color: #daedf7;
  border: 2px solid #0088ce;
  border-radius: 12px;
  padding: 1.5em;
  box-sizing: border-box;
}
.subsidy-block h4 {
  font-size: 1.6em;
  margin-bottom: 0.5em;
  position: relative;
  display: inline-block;
}
.subsidy-block h4::after {
  content: '';
  position: absolute;
  left: 0;
/*  bottom: -0.3em;*/
  bottom: 0em;
  width: 100%;
  height: 4px;
  border-radius: 3px;
  background-color: #0088ce;
}
.subsidy-block .sub-title {
  font-weight: bold;
  font-size: 1.1em;
  margin: 0.5em 0;
}
.subsidy-block .note {
  font-size: 1em;
  line-height: 1.6;
  margin-top: 0.5em;
}
.range {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  margin-top: 5em;
}
.range .label {
  display: block;
  font-weight: bold;
  text-align: left;
  margin-bottom: 0.3em;
}
.range .amount {
  font-size: 1.5em;
  font-weight: bold;
  text-align: center;
}
.range .amount.strong-red{
  color: #cf0909;
}
.range .arrow {
  font-size: 1.2em;
  color: #666;
}
@media screen and (max-width: 768px) {
  .subsidy-info {
    flex-direction: column;
    padding: 0;
  }
  .subsidy-block {
    flex: 1 1 100%;
    padding: 2em 1em;
  }
  .subsidy-block h4{
      margin: 0 auto 0.25em;
  }
  .range{
    margin-top: 1.5em;
  }
}



/* =========================
   実績報告書提出期限（report-deadline）
   ========================= */
.report-deadline {
  background-color: #daedf7;
  border: 2px solid #0088ce;
  border-radius: 12px;
  padding: 2em;
  margin-bottom: 2em;
}
.report-deadline h3 {
  font-size: 1.6em;
  margin-bottom: 1em;
  position: relative;
  display: inline-block;
  font-weight: bold;
}
.report-deadline h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.3em;
  width: 100%;
  height: 6px;
  border-radius: 6px;
  background-color: #0088ce;
}
.report-deadline p {
  font-size: 1em;
  line-height: 1.7em;
}
@media screen and (max-width: 768px) {
  .report-deadline {
    padding: 2em 1em;
  }
  .report-deadline h3{
    margin: 0 auto 0.25em;
  }
}




/* =========================
   各種資料（documents）
   ========================= */
.documents-section{
  width:100%;
  background:#e6f5fc;
  padding:0;
  box-sizing:border-box;
  box-shadow:none;
}
.documents-inner{
  max-width:1200px;
  margin:0 auto;
  padding:0 2em;
}
.documents-inner h2{
  font-size:1.6em;
  color:#000;
  margin-bottom:.3em;
  text-align:center;
  position:relative;
  display:block;
  padding-bottom:.4em;
}
.documents-inner h2::after{
  content:'';
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:0;
  width:120px;
  height:6px;
  background-color:#0088ce;
  border-radius:6px;
}
.documents-inner h3{
  font-size:1.6em;
  margin-top:2em;
  margin-bottom:.5em;
  text-align:center;
}
.documents-inner .small{
  font-size:.8em;
  color:#666;
}

.doc-grid{
  display:grid;
  gap:2.5em;
  margin:3em auto;
  place-content:center;
  place-items:center;
}

/* 2列：大きめ */
.doc-grid.columns-2{
  grid-template-columns:repeat(2, minmax(0, 1fr));
  width:85%;
}

/* 3列：小さめ（最大幅を落とす） */
.doc-grid.columns-3{
  grid-template-columns:repeat(3, minmax(0, 1fr));
  width:92%;
}

/* レスポンシブ */
@media screen and (max-width: 900px){
  .doc-grid.columns-3{ grid-template-columns:repeat(2, minmax(0, 1fr)); width:95%; }
}
@media screen and (max-width: 768px){
  .doc-grid.columns-2,
  .doc-grid.columns-3{
    grid-template-columns:1fr;
    width:100%;
    gap:1.5em;
  }
}

/* ---- Button（a / div 共通） ---- */
.doc-item{
  position:relative;
  box-sizing:border-box;
  width:100%;
  text-decoration:none;
  border-radius:10px;
  font-weight:bold;
  text-align:center;

  /* 高さを統一 */
  min-height:120px;

  /* 中央揃え（番号バッジ分の上余白を確保） */
  padding:1.9em 1.2em 1.2em;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:.35em;

  line-height:1.25;
  transition:transform .2s ease, box-shadow .2s ease;
}

/* 2列・3列で最大幅を変える（「理想」の比率に寄せる） */
.doc-grid.columns-2 .doc-item{ max-width:460px; min-height:125px; }
.doc-grid.columns-3 .doc-item{ max-width:320px; }

/* 番号バッジ（doc-badge） */
.doc-item .doc-badge{
  position:absolute;
  top:-0.7em;
  left:-0.7em;
  width:2em;
  height:2em;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:bold;
  font-size:1.58em;
  color:#fff;
}

/* ラベル（改行OK） */
.doc-item .doc-label{
  display:block;
  font-size:1.25em;
  line-height:1.25;
}

/* 「準備中」 */
.doc-item .doc-preparing{
  display:block;
  font-size:.85em;
  opacity:.95;
}

/* ---- Colors（背景 + バッジ色） ---- */
.doc-item.blue{ background:#0583c9; color:#fff; }
.doc-item.blue .doc-badge{ background:#0583c9; }

.doc-item.orange{ background:#f39800; color:#fff; }
.doc-item.orange .doc-badge{ background:#f39800; }

.doc-item.pink{ background:#F08BC7; color:#fff; }
.doc-item.pink .doc-badge{ background:#F08BC7; }

/* 準備中ボタン（div）のとき */
.doc-item.is-preparing{
  cursor:default;
}

@media screen and (max-width: 768px) {
  .doc-grid.columns-2 .doc-item{
    max-width: 320px;
    min-height: 120px;
  }
}




/* =========================
   説明動画（video-section）
   ========================= */
.video-section {
  background: #fff;
  padding: 4em 1em;
  text-align: center;
  margin-bottom: 0;
  box-shadow: none;
}
.video-section h2 {
  font-size: 1.6em;
  color: #000;
  position: relative;
  display: inline-block;
  padding-bottom: 0.4em;
  margin-bottom: 1.5em;
}
.video-section h2::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 120px;
  height: 4px;
  background-color: #0088ce;
  border-radius: 2px;
}
.video-group-title{
  font-size: 1.3em;
  margin: 0 0 1em;
  color: #000;
}
.video-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;   /* ★ 常にセンター寄せ */
  gap: 3em 2em;              /* ★ 縦 横 の余白 */
  max-width: 1200px;
  margin: 2em auto 3em;      /* ★ グループ上下にも余白 */
}

/* 動画1つ1つ */
.video-item {
  width: 360px;
  text-align: center;        /* キャプションも中央 */
}
.video-item img {
  width: 100%;
  height: 202px;
  object-fit: cover;
  border: 1px solid #333;
  background: #ddd;
}
.video-item p{
  margin: 0.6em 0 0;
  font-size: 0.95em;
  color: #333;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .video-section{
    padding: 2em 0;
    margin: 1em auto;
  }
    .video-grid {
      gap: 2em;          /* スマホでは少し詰める */
    }

    .video-item {
      width: 100%;
      max-width: 360px;
    }


  .video-item img {
    height: 200px;
  }

}




/* =========================
   県税の納税等の証明書について（certificate-grid）
   ========================= */
.certificate-grid{
  text-align: center;
  display: block;
}
.certificate-grid h2{
  font-size: 1.9em;
  font-weight: 800;
  color: #000;
  margin: 0 0 0.8em;
  position: relative;
  display: inline-block;
  padding-bottom: 0.55em;
  z-index: 2;
}
.certificate-grid h2::after{
  content: "";
  position: absolute;
  left: -6%;
  width: 112%;
  height: 6px;
  background-color: #0088ce;
  border-radius: 6px;
  bottom: 15px;
  z-index: 1;
}
@media screen and (max-width: 768px){
  .certificate-grid h2{
    font-size: 1.5em;
    padding-bottom: 0.45em;
  }
  .certificate-grid h2::after{
    height: 5px;
    width: 110%;
    left: -5%;
  }
  .certificate-grid p{
    text-align: left;
  }
}




/* =========================
   ご提出方法（documents）
   ========================= */
.submit-section {
  background-color: #e6f5fc;
  text-align: center;
  padding: 3em 1em;
  box-shadow: none;
  max-width: 1200px;
  margin: 0 auto;
}
.submit-section h2 {
    font-size: 1.6em;
    color: #000;
    margin-bottom: 0.3em;
    text-align: center;
    position: relative;
    display: block;
    padding-bottom: 0.4em;
}
.submit-section h2::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 120px;
  height: 4px;
  background-color: #0088ce;
  border-radius: 2px;
}
.submit-section p {
  font-size: 1.15em;
  color: #333;
  margin-bottom: 2em;
}
.submit-button-area {
  display: flex;
  justify-content: center;
  margin: 2em auto;
}
.submit-button {
  /*
  background-color: #0088ce;
  color: #fff;
  font-weight: bold;
  padding: 1em 2em;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 2px 4px 8px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
  line-height: 1.5em;
  */
  padding: 1em 3em;
  display: inline-block;
  text-decoration: none;
  color: #FFF;
  background-color: #0088ce;
  font-size: 1.15em;
  border-radius: 10px;
}
.submit-button:hover {
  background-color: #0088ce;
  opacity: 0.7;
}
.submit-section .submit-text strong,
.submit-section .submit-text b {
  color: #d60000;
}
@media screen and (max-width: 768px) {
  .submit-section {
    text-align: left;
    padding: 2em 0;
    /*text-align: center;*/
  }
  .submit-section p{
    text-align: left;
  }
}




/* =========================
   支援機関(相談・提出先)（support-section）
   ========================= */
.support-section {
  background: #fff;
  padding: 4em 1em;
  text-align: center;
  box-shadow: none;
}
.support-section h2 {
  font-size: 1.6em;
  color: #000;
  position: relative;
  display: inline-block;
  padding-bottom: 0.4em;
  margin-bottom: 0.5em;
}
.support-section h2::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  /*width: 120px;*/
  width: 100%;
  height: 4px;
  background-color: #0088ce;
  border-radius: 2px;
}
.support-section .caption {
  font-size: 1em;
  color: #333;
  margin-bottom: 2em;
}
.support-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2em 0;
  border: 2px solid #0088ce;
  border-radius: 10px;
  background: #fff;
}
.support-inner h3 {
  font-size: 1.3em;
  color: #000;
  margin-bottom: 1.5em;
}
.map-area {
  display: flex;
  justify-content: center;
  padding: 0 1em;
}
.map-area img {
  width: 100%;
  max-width: 1000px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .support-section {
    padding: 2em 0;
    margin: 1em auto;
  }
  .support-inner {
    padding: 2em 0;
  }
}




/* =========================
   テーブルリスト（support-list）
   ========================= */
.support-list-section {
  background: #fff;
  padding: 4em 0;
  box-shadow: none;
}
.support-table-block {
  max-width: 1000px;
  margin: 0 auto 2em;
}
.support-table-block h3 {
  font-size: 1.2em;
  margin-bottom: 1em;
  color: #333;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.support-table-block .circle {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #8ccb6b;
  border-radius: 50%;
}
.support-table {
  width: 100%;
  border-collapse: collapse;
/*  margin-bottom: 1em;*/
  margin-bottom: 0.25em;
}
.support-table td {
/*  border: 1px solid #ccc;*/
  padding: 0.6em 1em;
  font-size: 1em;
  text-align: left;
}
.support-table td,
.support-table th {
  border: 1px solid #38302a;
}
.support-table th {
  padding: 0.6em 1em;
  font-size: 1em;
  text-align: left;
  background-color: #f5f4f1;
}

.support-table-block .note {
  font-size: 0.85em;
  color: #555;
  text-align: right;
  margin-top: 0;
}
@media screen and (max-width: 768px) {
.support-list-section{
  padding: 2em 1em;
}
.support-table tbody {
  width: 100%;
  display: block;
}
.support-table {
  width: 100%;
  display: block;
}
.support-table tr {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #38302a;
  margin-bottom: 1em;
}
.support-table th,
.support-table td {
  display: block;
  width: 100%;
  box-sizing: border-box;
  border-bottom: none;
}
}



/* =========================
   CTA（cta-section）
   ========================= */
.cta-section {
  background: #daedf7;
  padding: 3em 1em;
  text-align: center;
  border: 2px solid #0088ce;
  border-radius: 10px;
  margin: 2em auto 0;
  max-width: 960px;
}
.cta-inner h3 {
  font-size: 1.4em;
  font-weight: bold;
  color: #333;
  position: relative;
  display: inline-block;
  padding-bottom: 0.3em;
  margin-bottom: 1em;
}
.cta-inner h3::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100px;
  height: 4px;
  background-color: #0088ce;
  border-radius: 2px;
}
.cta-tel {
  font-size: 1.6em;
  font-weight: bold;
  color: #333;
  margin: 0.5em 0;
}
.cta-tel span {
  font-size: 2em;
}
.cta-hours {
  font-size: 1em;
  color: #333;
  margin-bottom: 2em;
}
.cta-email-label {
  font-weight: bold;
  margin-top: 1em;
  margin-bottom: 0.2em;
  font-size: 1.5em;
}
.cta-email {
  font-size: 1.6em;
  font-weight: bold;
  color: #333;
}
.cta-tel a,
.cta-email a{
  text-decoration: none;
  color: #333;
}
.cta-tel a:hover,
.cta-email a:hover{
  text-decoration: underline;
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .cta-tel {
    font-size: 1.2em;
  }
  .cta-tel span {
    font-size: 1.6em;
  }
  .cta-tel a,
  .cta-email a{
    text-decoration: underline;
  }
  .cta-tel a:hover,
  .cta-email a:hover{
    text-decoration: none;
  }

  .cta-email {
    font-size: 0.96em;
    word-break: break-all;
  }
  .cta-hours{
    font-size: 0.85em;
  }
  .cta-inner h3 {
    font-size: 1.2em;
  }
}

