/* ==========================================================================
   Base Rules
   ========================================================================== */
   :root {
    --base-color: #222222;
    --main-color: #3C6672;
    --accent-color: #E46306;
    --bg-color-light: #fff;
    --bg-color-dark: #F1E6D3;
    --font-gothic: 'Zen Kaku Gothic New', sans-serif;
    --font-serif: 'Noto Serif JP', serif;
    --font-shippori: 'Shippori Mincho', serif;
  }
  
  body {
    font-family: var(--font-gothic);
    color: var(--base-color);
    background-color: var(--bg-color-light);
    font-size: 16px;
    line-height: 1.4;
  }
  
  img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
  }
  
  a {
    color: var(--base-color);
    text-decoration: none;
  }

  .contents{
    width: 89.4%;
    margin: -250px auto 0px;
    position: relative;
  }

  .font-shippori{
    font-family: var(--font-shippori);
  }

  .mb-40{
    margin-bottom: 40px!important;
  }

  @media (min-width: 768px) {
    .tag__text--pc {
      display: inline; /* PC用テキストは表示 */
    }
    
    .tag__text--sp {
      display: none; /* SP用テキストは非表示 */
    }
  }
  @media (max-width: 767px) {
  
    .tag__text--pc {
      display: none; /* PC用テキストを非表示に */
    }
  
    .tag__text--sp {
      display: inline; /* SP用テキストを表示に */
    }
  }
  
  /* ==========================================================================
     Layout Rules
     ========================================================================== */
  .l-siteBackground,
  .l-sidebar {
    display: none;
  }
  
  /* --- PC Layout (768px以上) --- */
  @media (min-width: 768px) {
    .l-body {
      overflow-x: auto; /* 横スクロールを許可 */
      overflow-y: hidden;
      min-width: 1100px; /* PC表示の最小幅を指定 */
    }
    
    .l-siteBackground {
      display: block;
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      min-width: 1100px; /* 背景も最小幅を合わせる */
      background-color: var(--bg-color-dark);
      background-image: linear-gradient(
        to bottom, 
        var(--bg-color-dark) 0%, 
        #FFFFFF 20%, 
        #FFFFFF 80%, 
        var(--bg-color-dark) 100%
      );
      z-index: -1;
    }
  
    .l-container {
      display: grid;
      grid-template-columns: 310px 381px 335px;
      gap: 130px;
      height: 100vh;
      max-width: 1300px;
      margin: 0 auto;
    }
  
    .l-main {
      grid-column: 2;
      overflow-y: auto;
      background-color: var(--bg-color-light);
      box-shadow: 0 0 20px rgba(0,0,0,0.05);
    }
    .l-main::-webkit-scrollbar {
      width: 6px;
    }
    .l-main::-webkit-scrollbar-thumb {
      background: #ccc;
      border-radius: 3px;
    }
  
    .l-sidebar {
      display: flex;
      align-items: center;
    }
    .l-sidebar--left {
      justify-content: flex-end;
    }
    .l-sidebar--right {
      flex-direction: column;
      justify-content: center;
      gap: 24px;
    }
  }
  
  /* ==========================================================================
     Module Rules
     ========================================================================== */
  
  /* Component: Section Title
  -----------------------------------------------------------------------------*/
  .c-sectionTitle {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 24px;
    line-height: 1.6;
  }
  .c-sectionTitle--serif {
    font-family: var(--font-serif);
  }
  .c-sectionTitle--gothic {
    font-family: var(--font-gothic);
  }
  
  /* Component: SP Header
  -----------------------------------------------------------------------------*/
  .c-spHeader {
    text-align: center;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  @media (min-width: 768px) {
    .c-spHeader {
      display: none;
    }
  }
  
  /* Component: Logo
  -----------------------------------------------------------------------------*/
  .c-logo--sp img {
    width: 133px;
  }
  .c-logo--pc img {
    width: 100%;
    object-fit: contain;
  }
  
  /* Component: Price Box
  -----------------------------------------------------------------------------*/
  .c-priceBox__flex{
    display: flex;
    margin: 0 auto;
    align-items: flex-end;
  }
  .c-priceBox__label {
    font-size: 22px;
    font-weight: bold;
    writing-mode: vertical-rl;
    color: var(--main-color);
    letter-spacing: 5px;
  }
  .c-priceBox__value {
    font-size: 18px;
    font-weight: 900;
    color: var(--main-color);
    display: flex;
    align-items: baseline;
    justify-content: center;
    letter-spacing: -2px;
  }
  .c-priceBox__value strong {
    font-size: 64px;
    line-height: 1;
  }
  .c-priceBox__unit {
    font-size: 24px;
  }
  .c-priceBox__note {
    font-size: 13px;
    margin-top: 8px;
    text-align: left;
    line-height: 1.5;
    text-shadow: 
    -1px -1px 0 #F3DBB9,
     1px -1px 0 #F3DBB9,
    -1px  1px 0 #F3DBB9,
     1px  1px 0 #F3DBB9; 
  }
  
  .cta-block {
    width: 100%;
    margin: 0 auto; /* 中央揃え */
  }

  .cta-block__availability {
    display: inline-block;
    border: 2px solid var(--accent-color);
    border-radius: 50px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    background-color: #fff;
    position: relative;
    z-index: 10;
    line-height: 1.5; /* 行の高さを調整 */
    margin-left: 20px;
    text-align: center;
    margin-bottom: -6px;
  }

  /* 吹き出しのしっぽ部分 */
  .cta-block__availability::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 12px 0 12px;
    border-color: var(--accent-color) transparent transparent transparent;
  }
  .cta-block__availability::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: #fff transparent transparent transparent;
    z-index: 5;
  }

  .cta-block__availability-time {
    color: var(--accent-color);
  }

  .cta-block__tel-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F08300;
    padding: 12px;
    color: #fff;
    text-decoration: none;
    margin-top: 10px; /* 吹き出しとの間に少し余白を追加 */
  }

  @media (max-width: 767px) {
    .cta-block__tel-box {
      border-radius: 50px;
      border-bottom: 4px solid #C56A00;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    }
  }

  .cta-block__tel-icon {
    width: 45px; /* アイコンのサイズを調整 */
    flex-shrink: 0;
  }

  .cta-block__tel-info {
    text-align: left;
  }

  .cta-block__tel-number {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.2;
  }
  .cta-block__tel-number span{
    font-size: 20px;
  }

  .cta-block__tel-note {
    font-size: 14px;
    font-weight: 700;
  }

  .cta-block__prompt {
    font-size: 16px;
    font-weight: 700;
    color: var(--main-color);
    margin-top: 8px;
    text-align: center;
  }
  
  /* Component: Check List
  -----------------------------------------------------------------------------*/
  .c-checkList {
    text-align: left;
    list-style-type: none;
    padding-left: 0;
    margin-top: 15px;
  }
  .c-checkList__item {
    position: relative;
  }
  .c-checkList__item + .c-checkList__item {
    margin-top: 12px;
  }
  .c-checkList--emergency .c-checkList__item {
    padding-left: 16px;
    font-weight: bold;
  }
  .c-checkList--emergency .c-checkList__item::before {
    content: '●';
    color: #D9433B;
    position: absolute;
    left: 0;
    top: 50%;
    font-size: 10px;
    transform: translate(0%, -50%);
  }
  .c-checkList--consult .c-checkList__item {
    padding-left: 28px;
    font-size: 16px;
  }
  .c-checkList--consult .c-checkList__item::before {
    content: '';
    background-image: url(/lp/tsukuba/guide/assets/img/check.svg);
    display: inline-block;
    width: 24px;
    height: 24px;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
  }
  .c-checkList--consult .c-checkList__item + .c-checkList__item {
    margin-top: 16px;
  }
  
  /* Component: Global Nav
  -----------------------------------------------------------------------------*/
  .c-globalNav__list {
    list-style: none;
    padding: 0;
  }
  .c-globalNav__link {
    display: block;
    background-color: var(--main-color);
    color: #fff;
    padding: 16px 40px;
    margin-bottom: 12px;
    border-radius: 30px;
    text-align: center;
    font-weight: bold;
    position: relative;
    transition: background-color 0.3s;
    font-size: 20px;
    border-bottom: 4px solid #2B4851;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  }
  .c-globalNav__link:hover {
    background-color: #5a6c79;
  }
  .c-globalNav__link::after {
    content: '';
    background-image: url(/lp/tsukuba/guide/assets/img/expand_circle_down.svg);
    position: absolute;
    display: inline-block;
    width: 26px;
    height: 26px;
    right: 30px;
    top: 50%;
    transform: translate(0%, -50%);
  }
  
  /* Page: Hero
  -----------------------------------------------------------------------------*/
  .p-hero {
    padding: 0;
  }
  @media (max-width: 767px) {
    .p-hero {
      padding-top: 60px;
    }
  }
  .p-hero__imageWrapper {
    position: relative;
  }
  .p-hero__image {
    display: block;
    width: 100%;
    padding-top: 70px;
  }
  .p-hero__text {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
  }
  .p-hero__text-inner{
    width: 89.4%;
    margin: 15px auto 0px;
  }
  .p-hero__catchcopy {
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    padding: 8px 12px;
    background-color: var(--main-color);
    color: #fff;
    display: inline-block;
    text-align: center;
  }
  .p-hero__supportText {
    font-size: 10px;
    font-weight: 600;
  }
  .p-hero__supportText span {
    font-size: 14px;
  }
  .p-hero__title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.4;
    color: #89643E;
  }
  .p-hero__title--large {
    font-size: 36px;
  }
  @media (min-width: 768px) {
    .cta-block__tel-box {
      pointer-events: none;
    }
  }
  
  /* Page: Emergency
  -----------------------------------------------------------------------------*/
  .p-emergency {
    background-color: #FFECEC;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    margin-top: 15px;
  }
  .p-emergency__title{
    font-size: 24px;
    font-weight: 700;
    color: #D33434;
  }
  .p-emergency__icon {
    display: inline-block;
  }
  
  /* Page: Consult
  -----------------------------------------------------------------------------*/
  .p-consult {
    border: 2px solid #719A94;
    border-radius: 5px;
    margin-top: 15px;
    padding: 24px 20px;
    text-align: center;
  }
  .p-consult__title{
    font-size: 20px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: dashed 1px #719A94;
  }


  /* plan
  -----------------------------------------------------------------------------*/
  .plan-section {
    background-color: #eef2f2; /* グラデーション非対応ブラウザ用の背景色 */
    background-image: linear-gradient(
      to bottom, 
      #fff 0%, 
      #eef2f2 5%, 
      #eef2f2 50%, 
      #eef2f2 95%, 
      #fff 100%
    );
    padding: 40px 15px;
    color: #333;
  }

  .plan-card__inner{
    padding: 16px 12px;
  }

  .plan-section__title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    color: var(--main-color);
  }

  .plan-section__description {
    font-size: 16px;
    text-align: center;
    margin-top: 16px;
  }

  .plan-card__box{
    text-align: center;
  }

  .plan-card__text{
    font-size: 12px;
    margin-top: 15px;
  }

  .plan-section__list {
    list-style: none;
    padding: 0;
    margin: 30px auto 0;
    max-width: 600px;
  }

  .plan-section__list-item + .plan-section__list-item {
    margin-top: 40px;
  }

  .plan-card {
    background-color: #fff;
    border: 2px solid var(--main-color);
    border-radius: 8px;
    overflow: hidden;
  }

  .plan-card__title {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    color: var(--bg-color-light);
    background-color: var(--main-color);
    padding: 10px 0px;
  }

  .plan-card__image {
    width: 100%;
    height: auto;
  }
  
  .plan-card__description {
    font-size: 16px;
    margin-top: 15px;
  }

  .plan-card__price-wrapper {
    margin-top: 20px;
    text-align: center;
  }
  
  .plan-card__price-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: var(--main-color);
    background-color: #EEF2F2;
    padding: 4px 15px;
    border-radius: 20px;
  }

  .plan-card__price {
    font-size: 64px;
    font-weight: 800;
    color: var(--main-color);
    margin-top: 8px;
    line-height: 1;
  }

  .plan-card__price-unit {
    font-size: 24px;
    font-weight: 700;
    margin-left: 4px;
  }

  .plan-card__list {
    margin-top: 15px;
  }

  .plan-card__note {
    font-size: 12px;
  }

  .flow-tags {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 8px 0px;
    border-top: dashed 1px var(--main-color);
  }

  .flow-tags__item {
    font-size: 16px;
    font-weight: 700;
    color: #CECECE; /* ベースの薄い色 */
    padding: 0 10px;
    position: relative;
  }

  /* 区切り線 */
  .flow-tags__item:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -2px;
    top: 0;
    color: #719A94;
    font-weight: normal;
  }

  /* 緑色にするためのクラス */
  .flow-tags__item.is-active {
    color: var(--main-color); /* 緑色のテキスト */
  }

  .plan-section__footer {
    margin: 40px auto 0;
  }

  .plan-section__footer-text {
    font-size: 16px;
    line-height: 1.4;
  }
  .plan-section__footer-text_span{
    background: linear-gradient(transparent 60%, #3C667266 10%);
  }

  .plan-section__arrow {
    width: 24px;
    height: auto;
    margin: 16px 0;
  }

  .plan-section__tel-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E58F3B;
    border-radius: 12px;
    padding: 16px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
  }
  .plan-section__tel-box img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
  }
  .plan-section__tel-number {
    font-size: 28px;
  }
  .plan-section__tel-free {
    font-size: 14px;
    margin-left: 8px;
  }

  .plan-section__form-link {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #43545E;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    padding: 16px;
    border-radius: 8px;
    margin-top: 12px;
  }
  .plan-section__form-link img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }

  .contact-block {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #F8F7F5; /* 背景色 */
    padding: 30px 20px;
    text-align: center;
    color: #43545E; /* 基本のテキスト色 */
  }

  .contact-block__arrow {
    width: 24px;
    height: auto;
    margin-bottom: 20px;
  }

  .contact-block__tel-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F08300;
    border-radius: 8px;
    padding: 20px;
    color: #fff;
    text-decoration: none;
  }

  .contact-block__tel-icon {
    width: 48px;
    height: 48px;
    margin-right: 15px;
    flex-shrink: 0;
  }

  .contact-block__tel-info {
    text-align: left;
  }

  .contact-block__tel-number {
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 1.2;
  }

  .contact-block__tel-note {
    font-size: 14px;
    font-weight: 500;
  }

  .contact-block__prompt {
    font-size: 18px;
    font-weight: 700;
    margin-top: 16px;
  }

  .contact-block__tel-display-wrapper {
    margin-top: 8px;
    text-align: center;
  }

  .contact-block__tel-display {
    font-size: 32px;
    font-weight: 600;
    color: var(--main-color);
    text-decoration: underline;
  }

  @media (min-width: 768px) {
    .contact-block__tel-display {
      text-decoration: none;
      pointer-events: none;
    }
  }

  .contact-block__link-list {
    margin-top: 24px;
    list-style: none;
    padding: 0;
    text-align: center;
  }

  .contact-block__link-item + .contact-block__link-item {
    margin-top: 16px;
  }

  .contact-block__link {
    display: inline-flex;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    color: var(--main-color);
    border-bottom: 2px solid var(--main-color);
    padding-bottom: 4px;
  }
  
  .contact-block__link-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
  }

  .cta-block__arrow{
    text-align: center;
  }
  .contact-block__arrow-img{
    display: inline-block;
  }
  

  /* --- Component --- */
  .location-section {
    padding: 40px 0;
  }

  .location-section__inner {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .location-section__title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: #89643E;
    line-height: 1.5;
    margin: 20px;
  }
  
  .location-section__title-small {
    font-size: 32px;
    color: #43545E;
  }

  .location-section__map {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 24px;
    border: 1px solid #eee;
  }

  .location-section__list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
  }

  .location-section__list-item + .location-section__list-item {
    margin-top: 20px;
  }

  .location-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 16px;
    display: flex;
    gap: 8px;
    border: solid 1px #D7D6D1;
    position: relative;
    overflow: hidden;
  }

  .location-card__image {
    width: 120px;
    height: 120px;
  }

  .location-card__content {
    flex-grow: 1;
    position: relative;
    z-index: 1;
  }

  /* .location-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background-color: #EEF2F2;
    border-top-left-radius: 90px;
    z-index: 0;
  } */

  .location-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--base-color);
    border-bottom: dashed 1px #719A94;
    padding-bottom: 8px;
  }

  .location-card__details {
    margin-top: 8px;
    list-style: none;
    padding: 0;
  }

  .location-card__detail-item {
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    color: var(--base-color);
  }
  
  .location-card__detail-item + .location-card__detail-item {
    margin-top: 6px;
  }

  .location-card__detail-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .location-card__link {
    display: block;
    margin-top: 12px;
    text-align: right;
    font-size: 14px;
    font-weight: 700;
    color: var(--main-color);
    text-decoration: none;
  }

  .location-card__link-arrow {
    display: inline-block;
    margin-left: 4px;
    font-weight: bold;
  }

  



  .feature-section {
    padding: 40px 20px 60px 20px;
    color: #333;
    max-width: 600px;
    margin: 0 auto;
  }

  .feature-section__title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    color: #43545E;
    line-height: 1.6;
  }
  
  .feature-section__title-large {
    font-size: 48px;
    color: #89643E;
  }

  .feature-item {
    margin-top: 32px;
    border-bottom: dashed 1px #719A94;
    padding-bottom: 32px;
  }

  .feature-item__number {
    font-size: 48px;
    font-weight: 800;
    color: #719A94;
    line-height: 1;
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 0;
    transform: translate(0%, -50%);
  }

  .feature-item__text-wrapper {
    position: relative;
    z-index: 1;
  }
  
  .feature-item__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--base-color);
    line-height: 1.5;
    padding-left: 70px;
    position: relative;
  }

  .feature-item__price {
    font-size: 16px;
  }

  .feature-item__description {
    font-size: 14px;
    margin-top: 8px;
  }

  .feature-item__image {
    width: 100%;
    height: auto;
    margin-top: 8px;
  }

  .faq-section__title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    color: var(--main-color);
    margin-bottom: 32px;
  }

  .faq-section__title-sub{
    font-size: 16px;
    font-weight: 700;
    color: #89643E;
    text-align: center;
    margin-bottom: 20px;
  }

  .faq-item {
    --icon-color: var(--main-color); /* アイコンの色をここで変更できます */
    border: 2px solid var(--main-color);
    border-radius: 8px;
    margin-bottom: 20px;
  }

  .faq-item__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 10px;
    cursor: pointer;
  }

  .faq-item__question {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 16px;
    font-weight: 400;
    color: var(--base-color);
    line-height: 1.4;
    padding-right: 9px;
  }

  .faq-item__q-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
  }

  .faq-item__toggle-icon {
    width: 24px; /* サイズを小さく */
    height: 24px; /* サイズを小さく */
    position: relative;
    flex-shrink: 0;
  }
  
  /* プラス・マイナスの線 */
  .faq-item__toggle-icon::before,
  .faq-item__toggle-icon::after {
    content: '';
    position: absolute;
    background-color: var(--icon-color);
    transition: transform 0.3s ease;
  }

  /* 横線 */
  .faq-item__toggle-icon::before {
    top: 50%;
    left: 15%;
    width: 70%;
    height: 2px; /* 線を細く */
    margin-top: -1px; /* 位置調整 */
  }

  /* 縦線 */
  .faq-item__toggle-icon::after {
    top: 15%;
    left: 50%;
    width: 2px; /* 線を細く */
    height: 70%;
    margin-left: -1px; /* 位置調整 */
  }

  /* 開いた時のスタイル（マイナスにする） */
  .faq-item.is-open .faq-item__toggle-icon::after {
    transform: rotate(90deg);
  }

  .faq-item__answer-wrapper {
    overflow: hidden;
    transition: height 0.3s ease;
    height: 0; /* JSで制御するためデフォルトは0 */
  }
  
  .faq-item__answer {
    font-size: 14px;
    line-height: 1.4;
    color: var(--base-color);
    border-top: 1px dotted #ccc;
    margin: 0 20px;
    padding: 8px 0px 12px 0px;
  }

  .faq-accordion{
    width: 89.4%;
    margin: 0 auto;
  }

  .site-footer {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #F3F3F5; /* 背景色 */
    padding: 20px 20px;
    margin-top: 40px;
  }

  .site-footer__inner {
    max-width: 600px;
    margin: 0 auto;
  }

  .site-footer__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--base-color);
  }

  .company-info {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 20px;
    line-height: 1.7;
    font-size: 16px;
    color: var(--base-color);
  }

  .company-info__term {
    font-weight: 500;
  }

  .company-info__description {
    font-weight: 400;
  }
  
  .company-info__description ul {
    list-style: none;
    padding: 0;
  }
  
  .company-info__description li::before {
    content: '・';
    margin-right: 4px;
  }

  .site-footer__divider {
    border: 0;
    border-top: 1px dotted #ccc;
    margin: 20px 0;
  }

  .footer-nav {
    list-style: none;
    padding: 0;
  }

  .footer-nav__item + .footer-nav__item {
    margin-top: 12px;
  }

  .footer-nav__link {
    color: var(--main-color);
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
  }

  .site-footer__copyright {
    margin-top: 40px;
    text-align: center;
    font-size: 12px;
  }

  .sticky-footer{
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 100;
    display: none;
  }

  .sticky-footer .cta-block__tel-box{
    margin-top: 0px;
  }

  @media (min-width: 768px) {
    .sticky-footer {
      display: none!important;
    }
  }

  @media (max-width: 767px) {
    .site-footer{
      padding-bottom: 100px;
    }
  }

  .c-spHeader_list{
    display: flex;
  }

  .c-spHeader_item a{
    text-align: center;
    display: block;
    font-size: 14px;
    padding: 8px 4px;
    font-weight: 700;
  }

  .c-spHeader_item-img{
    text-align: center;
    width: 100%;
  }
  .c-spHeader_item-img img{
    display: inline-block;
  }

  .emergency{
    color: #fff;
    background-color: #C95555;
    width: 82px;
  }
  .funeral{
    color: var(--main-color);
    background-color: #EEF2F2;
    width: 72px;
    border-right: solid 1px var(--main-color);
  }
  .space-list{
    color: var(--main-color);
    background-color: #EEF2F2;
    width: 72px;
  }

  .c-logo.c-logo--sp{
    display: flex;
    align-items: center;
  }

  .cta-block--side{
    text-align: center;
  }
  .cta-block--side .cta-block__availability{
    margin-left: 0px;
  }

  .c-globalNav{
    width: 91%;
    margin: 0 auto;
  }
  





/* ==============================
   モーダルを呼び出すボタン
   ============================== */
.plan-card__button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 16px auto 0;
    font-size: 20px;
    color: var(--main-color);
    font-weight: bold;
    border-bottom: 1px solid var(--main-color);
    -webkit-tap-highlight-color: transparent;
}
.plan-card__button:hover {
    opacity: 0.8;
}
.plan-card__button-icon {
    font-style: normal;
}


/* ==============================
   モーダルのスタイル
   ============================== */
.c-modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: grid;
    align-items: center;
    grid-template-columns: 310px 381px 335px;
    gap: 130px;
    justify-content: center;
    z-index: 100;
    padding: 20px;
  }
  
  @media (max-width: 767px) {
    .c-modal__overlay{
      display: flex;
      align-items: center;
      padding: 20px;
    }
  }
  
  .c-modal__container {
    grid-column: 2;
    background-color: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 335px;
    max-height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }

  .c-modal__header {
    display: block;
    height: 24px;
    flex-shrink: 0;
  }
  .c-modal__content {
    padding: 0 16px 16px;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }
  
  .c-modal__item-list {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  
  .c-modal__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-align: center;
  }
  
  .c-modal__item-icon {
    width: 100%;
    max-width: 40px;
    height: auto;
    object-fit: contain;
  }
  
  .c-modal__item-text {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 1.4;
  }
  
  @media (max-width: 767px) {
    .c-modal__footer {
      margin-top: 8px;
    }
  }
  
  .c-modal__close-button {
    width: 100%;
    padding: 8px;
    background-color: #f0f0f0;
    border: none;
    border-radius: 0 0 8px 8px;
    font-size: 16px;
    font-weight: bold;
    color: var(--base-color);
    cursor: pointer;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    -webkit-tap-highlight-color: transparent;
}
.c-modal__close-button-icon img {
    width: 24px;
    height: 24px;
    display: block;
}
.c-modal__close-button:hover {
    opacity: 0.8;
}

.c-modal__close-button:hover,
.plan-card__button:hover,
.c-modal__close-button:active,
.plan-card__button:active,
.c-modal__close-button:focus,
.plan-card__button:focus,
.c-modal__close-button:focus-visible,
.plan-card__button:focus-visible,
.c-modal__close-button:focus-within,
.plan-card__button:focus-within {
  outline: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}

/* 
.c-modal__close-button:focus-visible,
.plan-card__button:focus-visible {
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.5);
} */

/* ==============================
   アニメーション (Micromodal.js)
   ============================== */
.c-modal {
    display: none;
}
.c-modal.is-open {
    display: block;
}
.c-modal[aria-hidden="false"] .c-modal__overlay {
    animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}
.c-modal[aria-hidden="false"] .c-modal__container {
    animation: mmslideIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}
.c-modal[aria-hidden="true"] .c-modal__overlay {
    animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}
.c-modal[aria-hidden="true"] .c-modal__container {
    animation: mmslideOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}
@keyframes mmfadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes mmfadeOut { from { opacity: 1; } to { opacity: 0; } }
@keyframes mmslideIn { from { transform: translateY(15%); } to { transform: translateY(0); } }
@keyframes mmslideOut { from { transform: translateY(0); } to { transform: translateY(-10%); } }

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
