@charset "UTF-8";
/* common */
body {
  font-family: "Helvetica Neue", Arial, "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  color: #333;
  background-color: #fff;
  max-width: 1600px;
  margin: 0 auto;
}

img {
  width: 100%;
}

.container {
  padding: 0 40px;
}

.section-title {
  font-weight: bold;
  font-size: 3rem;
}
@media ((max-width: 767px)) {
  .section-title {
    font-size: 2rem;
  }
}

/* top */
.header {
  height: auto;
}

.header_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header_left, .header_right {
  width: 50%;
}

.header_left {
  height: 100px;
}

.header_left_link {
  display: block;
  height: 100px;
  width: 100px;
}

.header_left_link img {
  height: 100px;
  width: 100px;
}

/* ▼ ナビ項目（PC表示は横並び） */
.header_right_items {
  width: 400px;
  margin-left: auto;
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.header_right_item a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* ▼ ハンバーガー用チェックボックスとラベル */
.nav_toggle {
  display: none; /* チェックボックス自体は非表示 */
}

.nav_toggle_label {
  display: none;
  cursor: pointer;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 50px;
  height: 40px;
}
.nav_toggle_label span {
  display: block;
  height: 3px;
  background: #333;
  border-radius: 3px;
}

/* ▼ ブレイクポイント */
@media ((max-width: 767px)) {
  /* ハンバーガー表示 */
  .nav_toggle_label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  /* ナビ非表示 */
  .header_right {
    display: none;
  }
  /* ナビ項目を縦並び */
  .header_right_items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    margin-top: 1rem;
    gap: 1rem;
  }
  /* ハンバーガー開閉でナビ表示 */
  .nav_toggle:checked ~ .header_right {
    display: block;
    position: absolute;
    top: 120px; /* ヘッダー下 */
    right: 0;
    background: white;
    width: 200px;
    padding: 1rem;
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  .nav_toggle:checked ~ .header_right ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1rem;
  }
}
@media ((min-width: 768px) and (max-width: 1023px)) {
  /* ハンバーガー表示 */
  .nav_toggle_label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  /* ナビ非表示 */
  .header_right {
    display: none;
  }
  /* ナビ項目を縦並び */
  .header_right_items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    margin-top: 1rem;
    gap: 1rem;
  }
  /* ハンバーガー開閉でナビ表示 */
  .nav_toggle:checked ~ .header_right {
    display: block;
    position: absolute;
    top: 120px; /* ヘッダー下 */
    right: 0;
    background: white;
    width: 200px;
    padding: 1rem;
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  .nav_toggle:checked ~ .header_right ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1rem;
  }
}
/* ▼ ハンバーガークリック時のアニメーション */
.nav_toggle:checked + .nav_toggle_label span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(17px, 8px);
          transform: rotate(45deg) translate(17px, 8px);
}

.nav_toggle:checked + .nav_toggle_label span:nth-child(2) {
  opacity: 0;
}

.nav_toggle:checked + .nav_toggle_label span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(17px, -8px);
          transform: rotate(-45deg) translate(17px, -8px);
}

/* top-hero */
.top-hero {
  padding: 12rem 0;
}
.top-hero_main {
  text-align: center;
  font-size: 8rem;
  line-height: 1.1;
}
@media ((min-width: 768px) and (max-width: 1023px)) {
  .top-hero_main {
    font-size: 5rem;
  }
}
@media ((max-width: 767px)) {
  .top-hero_main {
    font-size: 3rem;
  }
}
.top-hero_sub {
  margin-top: 1rem;
  text-align: center;
  font-size: 2rem;
}
@media ((min-width: 768px) and (max-width: 1023px)) {
  .top-hero_sub {
    font-size: 1.5rem;
  }
}
@media ((max-width: 767px)) {
  .top-hero_sub {
    font-size: 1rem;
  }
}
.top-hero_cta-container {
  width: 300px;
  margin: 0 auto;
  margin-top: 1rem;
  background-color: #333;
  border-radius: 4px;
  padding: 0.5rem 0;
}
.top-hero_cta {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #fff;
}

/* top-service */
.top-service {
  padding: 6rem 0;
}
.top-service_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media ((min-width: 768px) and (max-width: 1023px)) {
  .top-service_container {
    display: block;
  }
}
@media ((max-width: 767px)) {
  .top-service_container {
    display: block;
  }
}
.top-service_left {
  width: 35%;
}
@media ((min-width: 768px) and (max-width: 1023px)) {
  .top-service_left {
    width: 100%;
  }
}
@media ((max-width: 767px)) {
  .top-service_left {
    width: 100%;
  }
}
.top-service_left_text {
  margin-top: 1rem;
  font-size: 1.2rem;
  line-height: 1.8;
}
.top-service_right {
  width: 60%;
}
@media ((min-width: 768px) and (max-width: 1023px)) {
  .top-service_right {
    margin-top: 2rem;
    width: 100%;
  }
}
@media ((max-width: 767px)) {
  .top-service_right {
    width: 100%;
  }
}
.top-service_right_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media ((max-width: 767px)) {
  .top-service_right_items {
    display: block;
  }
}
.top-service_right_item {
  width: 32%;
  border: solid 1px #333;
  padding: 2rem 0.5rem;
}
@media ((max-width: 767px)) {
  .top-service_right_item {
    width: 100%;
    margin-top: 2rem;
  }
}
.top-service_right_item_head img {
  width: 48px;
  height: 48px;
}
.top-service_right_item_main {
  margin-top: 1rem;
  font-weight: bold;
  font-size: 1.3rem;
}
.top-service_right_item_sub {
  margin-top: 1rem;
}

/* .top-rinen */
.top-rinen {
  background-color: #F0F0F0;
  padding: 6rem 0;
}
.top-rinen_items {
  margin-top: 2rem;
}
.top-rinen_item {
  margin-top: 1rem;
}
.top-rinen_item_main {
  font-size: 1.4rem;
}
@media ((max-width: 767px)) {
  .top-rinen_item_main {
    font-size: 1.2rem;
  }
}
.top-rinen_item_sub {
  font-size: 1.1rem;
}
@media ((max-width: 767px)) {
  .top-rinen_item_sub {
    font-size: 0.9rem;
  }
}

/* .top-cta */
.top-cta {
  padding: 6rem 0;
}
.top-cta_main {
  text-align: center;
}
.top-cta_sub {
  text-align: center;
  margin-top: 0.5rem;
}
@media ((max-width: 767px)) {
  .top-cta_sub {
    font-size: 0.7rem;
  }
}
.top-cta_container {
  width: 400px;
  margin: 0 auto;
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media ((max-width: 767px)) {
  .top-cta_container {
    width: 200px;
    display: block;
    text-align: center;
  }
}
.top-cta_btn_container {
  border: solid 1px #333;
  border-radius: 4px;
  padding: 0.25rem 0.5rem;
}
@media ((max-width: 767px)) {
  .top-cta_btn_container {
    margin-top: 1rem;
  }
}

/* footer */
.footer {
  background-color: #333;
  color: #fff;
  padding: 1rem 0;
  text-align: center;
}
.footer_container {
  width: 300px;
  margin: 0 auto;
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  font-size: 0.8rem;
}

/* about */
.about-title {
  padding: 6rem 0;
}
.about-title_main {
  font-weight: bold;
  font-size: 3rem;
}
@media ((max-width: 767px)) {
  .about-title_main {
    font-size: 2.5rem;
  }
}
.about-title_sub {
  font-size: 1.2rem;
}
@media ((max-width: 767px)) {
  .about-title_sub {
    font-size: 1rem;
    margin-top: 1rem;
  }
}

.about-mission {
  padding: 6rem 0;
  background-color: #F0F0F0;
}
.about-mission_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media ((max-width: 767px)) {
  .about-mission_container {
    display: block;
  }
}
.about-mission_left, .about-mission_right {
  width: 47%;
}
@media ((max-width: 767px)) {
  .about-mission_left, .about-mission_right {
    width: 100%;
  }
}
.about-mission_left_upper_main {
  font-weight: bold;
  font-size: 2rem;
}
.about-mission_left_upper_sub {
  margin-top: 1rem;
  font-size: 1.1rem;
  line-height: 1.7;
}
.about-mission_left_lower {
  margin-top: 2rem;
}
.about-mission_left_lower_main {
  font-weight: bold;
  font-size: 1.5rem;
}
.about-mission_left_lower_items li {
  margin-top: 1rem;
}
@media ((max-width: 767px)) {
  .about-mission_right {
    margin-top: 2rem;
  }
}
.about-mission_right_upper_main {
  font-weight: bold;
  font-size: 2rem;
}
.about-mission_right_upper_sub {
  margin-top: 1rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.about-info {
  padding: 6rem 0;
}
.about-info_main {
  font-weight: bold;
  font-size: 2rem;
}
.about-info_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 1rem;
}
@media ((max-width: 767px)) {
  .about-info_container {
    display: block;
  }
}
.about-info_left, .about-info_right {
  width: 50%;
}
@media ((max-width: 767px)) {
  .about-info_left, .about-info_right {
    width: 100%;
  }
}

.about-info_left_card {
  margin-top: 1rem;
}
.about-info_left_card_main {
  font-weight: bold;
  font-size: 1.2rem;
}
.about-info_left_card_sub {
  margin-top: 0.25rem;
}

.about-info_right_main {
  margin-top: 1rem;
  font-weight: bold;
  font-size: 1.2rem;
}

.about-info_right_sub {
  margin-top: 0.25rem;
}

/* price */
.price {
  padding: 6rem 0;
}
.price_main {
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
}
.price_card {
  width: 400px;
  margin: 0 auto;
  margin-top: 2rem;
  border: 4px solid #F0F0F0;
  border-radius: 4px;
  padding: 1rem;
}
@media ((max-width: 767px)) {
  .price_card {
    width: 100%;
  }
}
.price_card_main {
  text-align: center;
  font-weight: bold;
  font-size: 1.5rem;
}
.price_card_price {
  margin-top: 1rem;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
}
.price_card_price span {
  font-size: 1rem;
}
.price_card_items {
  text-align: center;
  border: solid 1px #F0F0F0;
  margin-top: 1rem;
}
.price_card_item {
  margin-top: 1rem;
}
.price_card_item:last-child {
  margin-bottom: 1rem;
}

.price-faq {
  background-color: #F0F0F0;
  padding: 6rem 0;
}
.price-faq_container {
  width: 550px;
  margin: 0 auto;
}
@media ((max-width: 767px)) {
  .price-faq_container {
    width: 100%;
  }
}
.price-faq_main {
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
}
.price-faq_card {
  background-color: #fff;
  border: solid 1px #333;
  padding: 0.5rem;
  margin-top: 1rem;
}
.price-faq_card_main {
  font-weight: bold;
  text-decoration: underline;
}

/* contact */
.contact {
  padding: 80px 20px;
  background-color: #fafafa;
}
.contact_main {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
.contact_sub {
  margin-bottom: 2rem;
}
.contact__inner {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.contact__title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 16px;
}
.contact__lead {
  text-align: center;
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.6;
}
.contact__form-group {
  margin-bottom: 24px;
}
.contact__label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1rem;
}
.contact__required {
  color: #fff;
  background-color: #e74c3c;
  font-size: 0.8rem;
  padding: 2px 6px;
  margin-left: 8px;
  border-radius: 4px;
}
.contact__optional {
  color: #fff;
  background-color: #888;
  font-size: 0.8rem;
  padding: 2px 6px;
  margin-left: 8px;
  border-radius: 4px;
}
.contact__input, .contact__select, .contact__textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 12px;
  font-size: 1rem;
  background-color: #fff;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
.contact__input:focus, .contact__select:focus, .contact__textarea:focus {
  border-color: #0073aa;
  outline: none;
}
.contact__textarea {
  min-height: 150px;
  resize: vertical;
}
.contact__button {
  text-align: center;
  margin-top: 32px;
}
@media ((min-width: 1024px)) {
  .contact__button {
    text-align: start;
  }
}
.contact__submit {
  display: inline-block;
  background-color: #0073aa;
  color: #fff;
  font-weight: bold;
  padding: 14px 48px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.contact__submit:hover {
  background-color: #005f87;
}
@media ((max-width: 767px)) {
  .contact {
    padding: 60px 16px;
  }
  .contact__inner {
    padding: 24px 16px;
  }
  .contact__title {
    font-size: 1.5rem;
  }
  .contact__lead {
    font-size: 0.9rem;
  }
}
@media ((min-width: 768px) and (max-width: 1023px)) {
  .contact__inner {
    padding: 32px 24px;
  }
}
@media ((min-width: 1024px)) {
  .contact__title {
    font-size: 2.2rem;
  }
}

/* tokusyouhou */
.tokusyouhou {
  padding: 6rem 0;
}
.tokusyouhou_main {
  font-weight: bold;
  font-size: 3rem;
  margin-bottom: 2rem;
}
@media ((min-width: 768px) and (max-width: 1023px)) {
  .tokusyouhou_main {
    font-size: 2.5rem;
  }
}
@media ((max-width: 767px)) {
  .tokusyouhou_main {
    font-size: 1.5rem;
  }
}
.tokusyouhou_card {
  margin-top: 1rem;
}
.tokusyouhou_card_main {
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

/* privacy */
.privacy {
  padding: 6rem 0;
}
.privacy_main {
  font-weight: bold;
  font-size: 3rem;
  margin-bottom: 1rem;
}
@media ((max-width: 767px)) {
  .privacy_main {
    font-size: 1.5rem;
  }
}
.privacy_sub {
  margin-bottom: 2rem;
}
.privacy_cards {
  margin-top: 1rem;
}
.privacy_card {
  margin-bottom: 2rem;
}
.privacy_card_main {
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}
@media ((max-width: 767px)) {
  .privacy_card_main {
    font-size: 1.25rem;
  }
}

/* thenks */
.thanks {
  padding: 6rem 0;
}
.thanks_main {
  font-weight: bold;
  font-size: 3rem;
  margin-bottom: 2rem;
}
@media ((max-width: 767px)) {
  .thanks_main {
    font-size: 1.5rem;
  }
}
.thanks_top {
  display: block;
  font-weight: bold;
  margin-top: 2rem;
  width: 200px;
}
.thanks_text_last {
  margin-top: 1rem;
}