@charset "UTF-8";
/*===========================
    ベース
===========================*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 101px;
}
@media screen and (min-width: 960px) {
  html {
    scroll-padding-top: 116px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-size: clamp(1rem, 0.956rem + 0.19vw, 1.125rem);
  font-weight: 400;
  line-height: 2;
  background-color: white;
  color: #333333;
  overflow-x: hidden;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

button {
  border: none;
}

section,
figure {
  width: 100%;
}

a {
  text-decoration: none;
}

@media screen and (min-width: 480px) {
  .sp_only {
    display: none;
  }
}

.no_sp {
  display: none;
}
@media screen and (min-width: 480px) {
  .no_sp {
    display: block;
  }
}

.ly_footer, .ly_price, .bl_contact, .bl_header, .bl_main_img {
  padding-right: 25px;
  padding-left: 25px;
}

@media screen and (min-width: 960px) {
  .bl_footer, .bl_header, .bl_main_img {
    padding-right: 5%;
    padding-left: 5%;
  }
}

@media screen and (min-width: 1440px) {
  .bl_header, .bl_main_img {
    max-width: 1280px;
    padding-right: 0;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 960px) {
  .ly_price, .bl_contact {
    padding-right: 5%;
    padding-left: 5%;
    margin-right: auto;
    margin-left: auto;
    max-width: 848px;
  }
}

@media screen and (min-width: 1440px) {
  .ly_price, .bl_contact {
    padding-right: 0;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
  }
}

.item_center_lg {
  display: flex;
  justify-content: center;
  align-items: center;
}

.appear {
  opacity: 0;
  transition: all 0.8s ease;
}
.appear.inview {
  opacity: 1;
}

/* 各セクションの余白 */
.ly_container {
  position: relative;
  margin-top: 157px;
  display: flex;
  flex-direction: column;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 959px) {
  .ly_container {
    margin-bottom: 120px;
    row-gap: 80px;
  }
}
@media screen and (min-width: 960px) {
  .ly_container {
    margin-bottom: 160px;
    row-gap: 120px;
  }
}

/* 各セクションの余白(特殊) */
.ly_container.ly_container_sp {
  margin-bottom: 0;
}

/*===========================
    共通部品
===========================*/
/* セクションタイトル */
.bl_sectionTitle {
  margin-bottom: 40px;
}

.bl_sectionTitle_en {
  font-family: "Roboto", sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 8px;
}
@media screen and (min-width: 960px) {
  .bl_sectionTitle_en {
    font-size: 80px;
  }
}

.bl_sectionTitle_ja {
  font-size: 12px;
  font-weight: 300;
  line-height: 1;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 960px) {
  .bl_sectionTitle_ja {
    font-size: 14px;
  }
}
.bl_sectionTitle_ja::after {
  background-color: #333333;
  content: "";
  height: 1px;
  width: 56px;
  margin-left: 12px;
}

/* サブセクションタイトル */
.bl_subSectionTitle {
  color: #236a99;
  padding-bottom: 8px;
  border-bottom: 1px solid #236a99;
  font-size: 18px;
  font-weight: 600;
}

/* ボタン */
.el_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 64px;
  line-height: 1.7;
  font-weight: 500;
  color: white;
  background-color: #236a99;
  border: 2px solid #236a99;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.el_btn:hover {
  color: #236a99;
  background-color: white;
}

.bl_list {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  margin-top: 8px;
  margin-bottom: 8px;
  margin-left: 0;
  padding-left: 0;
}
.bl_list > li {
  display: flex;
}

.bl_list.bl_no_list {
  counter-reset: count_no;
}
.bl_list.bl_no_list > li::before {
  counter-increment: count_no;
  content: counter(count_no) ".";
  margin-right: 8px;
}

/*===========================
    Main Image
===========================*/
.ly_main_img {
  position: relative;
  height: 250px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
}
@media screen and (min-width: 960px) {
  .ly_main_img {
    width: 1280px;
    margin-right: auto;
    margin-left: auto;
  }
}
.ly_main_img::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.bl_main_img {
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
  height: 100%;
}

.bl_main_img_mainMsg {
  font-size: 24px;
  line-height: 1.7;
  color: white;
  font-weight: 600;
}
@media screen and (min-width: 960px) {
  .bl_main_img_mainMsg {
    margin-left: 108px;
  }
}

/*===========================
    ヘッダー
===========================*/
.ly_header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
}
@media screen and (min-width: 960px) {
  .ly_header {
    height: 101px;
  }
}

.bl_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding-top: 24px;
  padding-bottom: 24px;
}

/* ヘッダーナビゲーション */
@media screen and (max-width: 959px) {
  .bl_nav {
    position: absolute;
    top: -100vh;
    right: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    color: #333333;
    background-color: white;
    transition: all 0.3s ease;
  }
}

.bl_nav.open {
  top: 0;
}

@media screen and (max-width: 959px) {
  .bl_headerNav {
    padding-top: 4em;
    padding-right: 25px;
    padding-left: 25px;
  }
}
@media screen and (min-width: 960px) {
  .bl_headerNav {
    display: flex;
    -moz-column-gap: 32px;
         column-gap: 32px;
  }
}

.bl_headerNav_item {
  list-style: none;
  font-weight: bold;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 959px) {
  .bl_headerNav_item {
    font-size: 18px;
    width: 100%;
    margin-bottom: 2em;
  }
  .bl_headerNav_item::after {
    content: "";
    display: block;
    margin-top: 2em;
    width: 100%;
    height: 1px;
    background-color: #d9d9d9;
  }
}
@media screen and (min-width: 960px) {
  .bl_headerNav_item {
    font-size: 14px;
    margin-bottom: 1em;
    line-height: 1;
    font-weight: 400;
  }
}
.bl_headerNav_item a {
  color: #333333;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.bl_headerNav_item a:hover {
  opacity: 0.5;
}

/* ハンバーガーメニュー */
.bl_hamburgerMenu {
  width: 30px;
  height: 22px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  cursor: pointer;
}
@media screen and (min-width: 960px) {
  .bl_hamburgerMenu {
    display: none;
  }
}
.bl_hamburgerMenu span {
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: #333333;
}
.bl_hamburgerMenu span:last-child {
  margin-bottom: 0;
}

.bl_hamburgerCloseBtn {
  position: absolute;
  top: 50.5px;
  right: 27px;
  height: 22px;
  width: 30px;
  transform: translateY(-50%);
  padding: 0;
  background-color: transparent;
  color: #333333;
  cursor: pointer;
}
.bl_hamburgerCloseBtn::before, .bl_hamburgerCloseBtn::after {
  content: "";
  position: absolute;
  background-color: #333333;
  width: 31.108px;
  height: 2px;
  display: block;
}
.bl_hamburgerCloseBtn::before {
  top: 50%;
  left: 0;
  transform: rotate(-45deg);
  transform-origin: center center;
}
.bl_hamburgerCloseBtn::after {
  top: 50%;
  left: 0;
  transform: rotate(45deg);
  transform-origin: center center;
}
@media screen and (min-width: 960px) {
  .bl_hamburgerCloseBtn {
    display: none;
  }
}

/*===========================
    ページトップ
===========================*/
.ly_pageTopSection {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: clamp(12.5rem, 8.099rem + 18.78vw, 25rem);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 157px;
}
.ly_pageTopSection:after {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
@media screen and (min-width: 960px) {
  .ly_pageTopSection {
    margin-top: 181px;
    margin-bottom: 120px;
  }
}

/*===========================
    フッター
===========================*/
.ly_footer {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #f2f8fc;
}

.bl_footer {
  color: #707070;
}

.bl_footer_follow {
  display: flex;
  align-items: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
  font-size: 14px;
  line-height: 1;
  margin-bottom: 24px;
}

.bl_footer_copyright {
  font-size: 12px;
  line-height: 1;
}

/*===========================
    ヘルパークラス
===========================*/
.hp_fw_normal {
  font-weight: 400 !important;
}

/*===========================
    GA4のバッジ無効化
===========================*/
.grecaptcha-badge {
  visibility: hidden;
}

/*===========================
    特殊
===========================*/
.ly_container {
  margin-bottom: 0;
}

/*===========================
    Main Image
===========================*/
.ly_main_img {
  background-image: url("./../../image/contact.webp");
}

/*===========================
    Price
===========================*/
.bl_priceTables {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  margin-bottom: 24px;
}
@media screen and (min-width: 960px) {
  .bl_priceTables {
    row-gap: 56px;
  }
}

.bl_priceTable {
  width: 100%;
  border-spacing: 0;
}
.bl_priceTable th, .bl_priceTable td {
  padding: 32px 16px;
  line-height: 1;
}
.bl_priceTable > thead > tr {
  background-color: #236a99;
  color: white;
  font-weight: 600;
  border: 1px solid #236a99;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}
.bl_priceTable > thead > tr > th {
  text-align: left;
  border: 1px solid #236a99;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}
.bl_priceTable > tbody > tr:nth-child(odd) {
  background-color: white;
}
.bl_priceTable > tbody > tr:nth-child(even) {
  background-color: #f2f8fc;
}
@media screen and (max-width: 959px) {
  .bl_priceTable tr, .bl_priceTable th, .bl_priceTable td {
    display: block;
  }
  .bl_priceTable tr {
    border-left: 1px solid #236a99;
    border-right: 1px solid #236a99;
  }
  .bl_priceTable tbody tr td:first-child {
    padding-bottom: 16px;
  }
  .bl_priceTable tbody tr td:last-child {
    padding-top: 16px;
  }
  .bl_priceTable tbody tr:last-child {
    border-bottom: 1px solid #236a99;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
  }
}
@media screen and (min-width: 960px) {
  .bl_priceTable tbody tr > td:first-child {
    width: 70%;
    border-left: 1px solid #236a99;
  }
  .bl_priceTable tbody tr > td:last-child {
    border-right: 1px solid #236a99;
  }
  .bl_priceTable tbody tr:last-child > td {
    border-bottom: 1px solid #236a99;
  }
  .bl_priceTable tbody tr:last-child > td:first-child {
    border-bottom-left-radius: 8px;
  }
  .bl_priceTable tbody tr:last-child > td:last-child {
    border-bottom-right-radius: 8px;
  }
}

.bl_priceNote {
  font-size: 12px;
  line-height: 1.7;
}

/*===========================
    Contact
===========================*/
.ly_contact {
  padding-top: 40px;
  padding-bottom: 120px;
  background-color: #f2f8fc;
}
@media screen and (min-width: 960px) {
  .ly_contact {
    padding-top: 120px;
    padding-bottom: 160px;
  }
}

.bl_contactNote {
  margin-bottom: 80px;
}

.bl_formItems {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  margin-bottom: 40px;
}

.bl_formItem:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #d9d9d9;
  margin-top: 40px;
}

.bl_formItem_head {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.bl_formItem_ttl {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  margin-right: 16px;
}

.bl_formItem_required {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  padding: 8px;
  color: white;
  background-color: #236a99;
  border-radius: 3px;
}
@media screen and (min-width: 960px) {
  .bl_formItem_required {
    font-size: 12px;
  }
}

.el_text {
  display: block;
  width: 100%;
  font-size: 16px;
  line-height: 1.5;
  padding: 16px;
  border: 1px solid #c4c4c4;
  border-radius: 3px;
  background-color: #f2f2f2;
}
.el_text::-moz-placeholder {
  color: #c4c4c4;
}
.el_text::placeholder {
  color: #c4c4c4;
}

.el_textarea {
  display: block;
  width: 100%;
  height: 12em;
  font-size: 16px;
  line-height: 1.5;
  padding: 16px;
  border: 1px solid #c4c4c4;
  border-radius: 3px;
  background-color: #f2f2f2;
}
.el_textarea::-moz-placeholder {
  color: #c4c4c4;
}
.el_textarea::placeholder {
  color: #c4c4c4;
}

.bl_formNote {
  font-size: 12px;
  text-align: center;
  margin-bottom: 40px;
}/*# sourceMappingURL=contact.css.map */