@charset "UTF-8";

/* 共通 */
* {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

body,button,input,select,optgroup,textarea {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    box-sizing: border-box;
}


img {
    width: 100%;
    display: block;
    line-height: 1;
    object-fit: cover;
}

p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}


h1 {
  margin: 0;
}



/* header */
.header__inner {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
  }
  
  .header__logo {
    width: 100%;
    height: auto;
    max-width: 180px;
  }
  
  .header__item {
    display: flex;
    align-items: center;
    gap: 0 16px;
    min-width: 480px;
  }
  
  .header__btn-tel {
    display: flex;
    align-items: center;
    gap: 0 4px;
    width: 100%;
    margin-right: 36px;
  }
  .header__btn-tel-icon {
    width: 100%;
    height: auto;
    max-width: 39px;
  }
  .header__btn-tel-text {
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
  }
  
  .header__btn-tel-text span {
    font-size: 25px;
    font-weight: 500;
    color: #000;
  }
  
  /* footer */
  footer {
    border-top: 1px solid #B0BEC3;
  }
  .footer__inner {
    text-align: center;
    padding: 16px 0;
  }
  .footer__copyright {
    font-size: 12px;
    color: #000;
  }

  .pc-none {
    display: none;
  }
  .sp-none {
    display: block;
  }

  /* メニュー */
.menu {
    text-align: center;
    padding-bottom: 30px;
    padding-top: 30px;
  }
  
  .menu-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 16px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .menu-item {
    position: relative;
    padding-right: 16px;
  }
  
  .menu-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background-color: #000;
  }
  
  .menu-item-none::after {
    display: none;
  }

  .header__btn-approval {
    max-width: 196px;
  }
  
  .menu-item__wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 16px;
  }
  
  .menu-item a {
    font-size: 12px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    transition: all 0.3s;
  }
  .menu-item a:hover {
    color: #1375C4;
  }

  /* ボタンエリア */
.buttom-area {
    margin-top: 40px;
    text-align: center;
  }
  
  .button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  /* 次へ・戻るボタン */

.nextbtn {
    padding: 16px 16px;
    background-color: #FFEE2F;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    color: #1375C4;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 20px;
    font-weight: 700;
    min-width: 370px;
    position: relative;
  }
  
  .nextbtn::before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
  }
  .nextbtn:hover {
    background-color: #1375C4;
    color: #FFEE2F;
  }
  
  .nextbtn:disabled {
    background-color: #C4C4C4;
    color: #fff;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
  }
  
  
  .backbtn {
    background-color: #C4C4C4;
    color: #fff;
    padding: 16px 16px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s;
    min-width: 160px;
    position: relative;
  }
  
  .backbtn::before {
    content: "\f104";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .backbtn:hover {
    background-color: #888;
  }
  
 

  @media (max-width: 768px) {

      .sp-none {
        display: none;
      }
      .pc-none {
        display: block;
      }
      .header__inner {
        padding: 16px;
      }
      .header__logo {
        max-width: 112px;
      }
      .header__item {
        min-width: auto;
      }
      .header__btn-tel {
        display: none;
      }
      .header__btn-approval {
        max-width: 159px;
      }

      .nextbtn,
      .backbtn {
        font-size: 16px;
      }

      .nextbtn {
        min-width: 204px;
      }
      .backbtn {
        min-width: 120px;
      }
  }