@charset "UTF-8";

:root {
  /* color */
  --white-color: #fff;
  --black-color: #001c2b;
  --gray-color: #fafafa;
  --gray-color02: #f2f2f2;
  --gray-color03: #aaaaaa;
  --gray-color04: #707070;
  --primary-color: #43cfe8;
  --accent-color01: #ddf4f6;
  --accent-color02: #e84d43;
}

:root {
  /* コンテンツ幅 */
  --content-width-main: 1024px;
  --content-width-md: 672px; /* FAQ　タブレット */
  --content-width-sm: 496px; /* contact */
}

:root {
  /* z-index */
  --z-index-back: -1;
  --z-index-default: 1;
  --z-index-page-top: 50;
  --z-index-header: 100;
  --z-index-menu: 150;
  --z-index-modal: 200;
}

:root {
  /* font-family */
  --font-family-base: "Noto Sans JP", sans-serif;
  --font-family-accent: "Roboto", sans-serif;
}

body {
  color: var(--black-color);
  font-family: var(--font-family-base);
  font-size: 16px;
  line-height: 2;
  overflow-x: hidden;
  letter-spacing: 0.1em;
}
body.is-active {
  overflow: hidden;
}

/* ---------- utility ---------- */

@media (width < 768px) {
  .u_dn-sm {
    display: none;
  }
}
@media (width >= 768px) {
  .u_dn-lg {
    display: none;
  }
}

/* ---------- layout ---------- */
/* .l_main {
  margin-top: 80px;
} */
.l_container-main,
.l_container-md,
.l_container-sm {
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
}

.l_container-main {
  max-width: var(--content-width-main);
}
.l_container-md {
  max-width: var(--content-width-md);
}
.l_container-sm {
  max-width: var(--content-width-sm);
}
.l_contents,
.l_contents-sm {
  padding: 80px 0;
}
@media (width >= 768px) {
  .l_contents {
    padding: 120px 0;
  }
}
@media (width >= 1080px) {
  .l_container-main,
  .l_container-md,
  .l_container-sm {
    padding: 0;
  }
}
.l_header {
  position: fixed;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 80px;
  padding: 0 16px;
  background: var(--white-color);
  z-index: var(--z-index-header);
}
.l_header-logo,
.l_footer-logo {
  width: 80px;
  height: 24px;
}
.l_header-logo_link,
.l_footer-logo_link {
  display: block;
  width: 100%;
  line-height: 100%;
}
.l_header-nav {
  position: fixed;
  top: 0%;
  right: -120%; /* 画面の外 */
  width: 100%;
  height: 100vh;
  z-index: var(--z-index-menu);
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white-color);
}
.l_header-nav.is-active {
  right: 0;
}
.l_header-nav_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}
.l_header-nav_item {
  font-weight: bold;
  height: 100%;
}
.l_header-nav_link {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (width >= 1080px) {
  .l_header {
    padding-right: 0;
  }
  .l_header-logo,
  .l_footer-logo {
    justify-content: flex-end;
    gap: 80px;
  }
  .l_header-nav {
    position: static;
    height: 80px;
    width: auto;
    margin-left: auto;
    right: 0;
    right: auto;
    flex-direction: row;
    gap: 0;
  }
  .l_header-nav_list {
    flex-direction: row;
    justify-content: flex-end;
    gap: 80px;
    height: 100%;
  }
  .l_header-nav_item__contact {
    padding: 0px 32px;
    color: var(--white-color);
    background: var(--primary-color);
  }
}
/* footer */
.l_footer {
  padding: 80px 0 24px;
}
.l_footer-logo {
  margin: 0 auto;
}
.l_footer_address {
  text-align: center;
  margin-top: 16px;
}
.l_footer-nav {
  margin-top: 64px;
}
.l_footer-nav_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.l_footer-copyright {
  margin-top: 64px;
  text-align: center;
  font-size: 14px;
}
.l_contact_footer-copyright {
  margin-top: 80px;
  text-align: center;
  font-size: 14px;
}
@media (width >= 1080px) {
  .l_footer {
    padding-top: 120px;
  }
  .l_footer_contents {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .l_footer-logo {
    margin: 0;
  }
  .l_footer_address {
    text-align: left;
  }
  .l_footer-nav {
    margin-top: 0;
  }
  .l_footer-nav_list {
    flex-direction: row;
  }
}
/* ---------- module ---------- */
.m_hamburger {
  position: relative;
  width: 24px;
  height: 22px;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: var(--z-index-menu);
}

.m_hamburger-bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--black-color);
  border-radius: 100vh;
  transition: all 0.3s ease;
}

.m_hamburger-bar:nth-child(1) {
  top: 0;
}

.m_hamburger-bar:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.m_hamburger-bar:nth-child(3) {
  bottom: 0;
}

.m_hamburger.is-active .m_hamburger-bar:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.m_hamburger.is-active .m_hamburger-bar:nth-child(2) {
  opacity: 0;
}

.m_hamburger.is-active .m_hamburger-bar:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

@media (width >= 1080px) {
  .m_hamburger {
    display: none;
  }
}
/* title */
.m_section_title-en {
  font-size: 18px;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
}
.m_section_title-jp {
  font-size: 14px;
  font-weight: bold;
  margin-top: 8px;
  text-align: center;
}
/* btn */
.m_btn-wrapper {
  display: flex;
  justify-content: space-between;
  width: 343px;
  height: 80px;
  margin: 0 auto;
}
.m_btn {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  overflow: hidden;
  font-weight: bold;
  box-shadow: 2px 2px 4px 0px rgba(170, 170, 170, 0.16);
}
.m_btn__mail {
  background: var(--accent-color02);
  color: var(--white-color);
  border-radius: 8px;  
}
.m_btn__mail::after {
  content: "";
  background: url(../img/icon_mail.png) center / contain no-repeat;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-left: 16px;
}
.m_btn__more {
  background: var(--accent-color01);
  border-radius: 8px;  
  position: relative;
  z-index: var(--z-index-default);
}

.m_btn__more::after{
  content: "";
  width: 8px;
  height: 8px;
  border-width: 2px;
  border-style: solid solid none none;  
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%) rotate(45deg);
  border-color: var(--black-color);
}

.m_btn__submit {
  background: var(--accent-color02);
  color: var(--white-color);
  border-radius: 40px;    
}
.contact_form_btn-wrapper{
  position: relative;
  z-index: var(--z-index-default);
  width: 320px;
}
.contact_form_btn-wrapper::after{
  content: "";
  width: 8px;
  height: 8px;
  border-width: 2px;
  border-style: solid solid none none;  
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%) rotate(45deg);
  border-color: var(--white-color);
}

.m_btn__more:hover {
  background:  var(--primary-color);
  opacity: 0.8;
}
.m_btn__mail:hover,
.m_btn__submit:hover {
  color: var(--primary-color);
  opacity: 0.8;
}

/* cta */
.m_cta {
  width: 100%;
  height: 416px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("../img/cta.jpg") 50% 40% / cover;
}
.m_cta_copy {
  color: var(--white-color);
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
.m_cta_text {
  margin-top: 24px;
  color: var(--white-color);
  text-align: center;
}
.m_cta_btn-wrapper {
  margin-top: 40px;
}
@media (width >= 768px) {
  .m_cta {
    height: 520px;
  }
  .m_cta_copy {
    font-size: 32px;
  }
  .m_cta_text {
    font-size: 18px;
  }
}
/* news */
.m_news_body {
  margin-top: 64px;
}
.m_news_card {
  box-shadow: 2px 2px 4px 0px rgba(170, 170, 170, 0.16);
  height: 466px;
}
.m_news_link {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.m_news_thumb-wrapper {
  width: 100%;
  height: 212px;
  overflow: hidden;
}
.m_news_thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.m_news_text-wrapper {
  padding: 16px;
  flex-grow: 1;
  background: var(--white-color);
}
.m_news_meta {
  display: flex;
  justify-content: space-between;
}
.m_news_meta-date {
  color: var(--gray-color03);
  font-size: 14px;
}
.m_news_meta-cat {
  color: var(--gray-color03);
  font-size: 12px;
}
.m_news_heading {
  margin-top: 16px;
  font-weight: bold;
}
.m_news_desc {
  margin-top: 16px;
  font-size: 14px;
  text-align: justify;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
@media (width >= 768px) {
  .archive .m_news_list,
  .category .m_news_list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
  }
  .archive .m_news_card,
  .category .m_news_card {
    width: calc((100% - 32px) / 2);
  }
  .m_news_thumb-wrapper {
    height: 198px;
  }
}
@media (width >= 1080px) {
  .archive .m_news_card,
  .category .m_news_card {
    width: calc((100% - 32px * 2) / 3);
  }
}
/* m_pagination(wordpress) */
.m_pagination .nav-links {
  display: flex;
  justify-content: center;
  margin-top: 64px;
  gap: 24px;
}
.m_pagination .page-numbers {
  width: 48px;
  height: 48px;
  background: var(--accent-color01);
  border-radius: 8px;
  box-shadow: 2px 2px 4px 0px rgba(170, 170, 170, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  position: relative;
}
.m_pagination .page-numbers::after {
  content: none;
}
.m_pagination .page-numbers.next {
  font-size: 0;
}
.m_pagination .page-numbers.next::after {
  content: "";
  width: 8px;
  height: 8px;
  border-width: 2px;
  border-style: solid solid none none;
  border-color: var(--black-color);
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%) rotate(45deg);
}
.m_pagination .page-numbers.prev {
  font-size: 0;
}
.m_pagination .page-numbers.prev::after {
  content: "";
  width: 8px;
  height: 8px;
  border-width: 2px;
  border-style: solid solid none none;
  border-color: var(--black-color);
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%) rotate(-135deg);
}
.m_pagination .page-numbers.current {
  background: var(--primary-color);
}

/* JS */
.m_opening {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: var(--white-color);
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-index-modal);
}
.m_opening.is-active {
  display: none;
}

.m_opening_heading {
  font-size: 24px;
  line-height: 1.8;
  color: var(--primary-color);
}

@media (width >= 1080px) {
  .m_opening_heading {
    font-size: 32px;
  }
}
/* TOP-------------------------------- */
.top_page .l_main {
  margin-top: 0;
}
/* TOP 共通 */
.top_section_btn-wrapper {
  margin-top: 64px;
}
.top_about_body,
.top_service_body {
  margin-top: 64px;
}
/* TOP_kv */
.top_kv {
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  position: relative;
  overflow: hidden;
}
.top_kv_inner {
  position: relative;
  z-index: var(--z-index-default);
  width: 100%;
  height: 100%;
}
.top_kv_slideshow {
  position: absolute;
  z-index: var(--z-index-back);
  inset: 0;
  width: 100%;
  height: 100%;
}
.top_kv_slideshow .swiper-wrapper,
.top_kv_slideshow .swiper-slide {
  height: 100%;
}
.top_kv_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top_kv_box {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: var(--z-index-page-top);
}
.top_kv_copy {
  color: var(--white-color);
  font-size: 40px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(170, 170, 170, 0.16);
}
.top_kv_copy-accent {
  color: var(--primary-color);
}
.top_kv_desc {
  color: var(--white-color);
  margin-top: 24px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(170, 170, 170, 0.16);
}
.top_kv_scroll {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: var(--z-index-page-top);
  margin-top: 20px;
}
.top_kv_scroll-line {
  width: 2px;
  height: 40px;
  border: 1px solid var(--white-color);
  background: var(--white-color);
}
.top_kv_scroll-text {
  color: var(--white-color);
  font-size: 12px;
  font-weight: bold;
}
/* TOP_about */
.top_about_heading {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.top_about_heading-accent {
  color: var(--white-color);
  background: var(--primary-color);
}
.top_about_desc {
  margin-top: 40px;
}

@media (width >= 768px) {
  .top_about_heading {
    font-size: 24px;
  }
}
/* TOP_service */
.top_service_img-wrapper {
  width: 100%;
  height: 212px;
}
.top_service_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top_service_contents:not(:first-child) {
  margin-top: 40px;
}
.top_service_text-wrapper {
  margin-top: 24px;
}
.top_service_heading {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.top_service_desc {
  margin-top: 24px;
  text-align: justify;
}
@media (width >= 768px) {
  .top_service_heading {
    font-size: 24px;
  }
  .top_service_contents {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
  }
  .top_service_img-wrapper,
  .top_service_text-wrapper {
    width: calc((100% - 32px) / 2);
    height: auto;
  }
  .top_service_contents:nth-of-type(even) {
    flex-direction: row-reverse;
  }
  .top_service_text-wrapper {
    margin-top: 0px;
  }
  .top_service_img {
    height: auto;
  }
  .top_service_heading {
    text-align: left;
  }
}
/* TOP_news */
.top_news {
  background: var(--gray-color02);
}
.top_news_pagination-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 343px;
  margin-inline: auto;
  margin-top: 64px;
}
.top_news_swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 24px;
}
.top_news_swiper-prev,
.top_news_swiper-next {
  width: 64px;
  height: 48px;
  background: var(--accent-color01);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.top_news_swiper-next::before {
  content: "";
  width: 8px;
  height: 8px;
  border-width: 2px;
  border-style: solid solid none none;
  border-color: var(--black-color);
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%) rotate(45deg);
}
.top_news_swiper-prev::before {
  content: "";
  width: 8px;
  height: 8px;
  border-width: 2px;
  border-style: solid solid none none;
  border-color: var(--black-color);
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%) rotate(-135deg);
}

.top_news_pagination-wrapper .swiper-pagination {
  position: static;
  width: auto;
  transform: none;
}
.top_news_pagination-wrapper .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: var(--accent-color01);
  opacity: 1;
}

.top_news_pagination-wrapper .swiper-pagination-bullet-active {
  background: var(--primary-color);
}

.top_news_pagination-wrapper .swiper-button-prev::after,
.top_news_pagination-wrapper .swiper-button-next::after {
  display: none;
}
.top_news_swiper .swiper-wrapper {
  align-items: stretch;
}
.top_news_swiper .swiper-slide {
  height: auto;
}
.top_news_swiper .m_news_link {
  height: 100%;
}
/* ABOUT-------------------------------------- */
/* about us */
.about_body {
  margin-top: 64px;
}
.about_heading {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.about_heading-accent {
  color: var(--white-color);
  background: var(--primary-color);
}
.about_desc {
  margin-top: 40px;
}
@media (width >= 768px) {
  .about_us {
    margin-top: 120px;
  }
  .about_heading {
    font-size: 24px;
  }
}
/* about greeting */
.about_greeting_img-wrapper {
  width: 100%;
  height: 212px;
}
.about_greeting_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about_greeting_text-wrapper {
  margin-top: 40px;
}
.about_greeting_heading {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.about_greeting_desc {
  margin-top: 40px;
  text-align: justify;
}
.about_greeting_sign {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.about_greeting_sign-name {
  font-weight: bold;
}

@media (width >= 768px) {
  .about_greeting_heading {
    font-size: 24px;
  }
  .about_greeting_contents {
    display: flex;
    justify-content: space-between;
    gap: 40px;
  }
  .about_greeting_img-wrapper,
  .about_greeting_text-wrapper {
    width: calc((100% - 40px) / 2);
    height: auto;
  }
  .about_greeting_text-wrapper {
    margin-top: 0px;
  }
  .about_greeting_img {
    height: auto;
  }
  .about_greeting_heading {
    text-align: left;
  }
}
/* about info */
.about_info-table_heading,
.about_info-table_data {
  border: 1px solid var(--gray-color02);
  padding: 16px 24px;
  font-size: 14px;
  vertical-align: middle;
}

.about_info-table_heading {
  font-weight: bold;
  white-space: nowrap;
  width: 160px;
  border-left: none;
}

.about_info-table_data {
  border-right: none;
}
@media (width >= 768px) {
  .about_info-table_heading {
    width: 232px;
  }
}
/* SERVICE-------------------- */
.service_body,
.service_faq_unit {
  margin-top: 64px;
}
/* service */
.service_img-wrapper {
  width: 100%;
  height: 212px;
}
.service_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service_contents:not(:first-child) {
  margin-top: 40px;
}
.service_text-wrapper {
  margin-top: 24px;
}
.service_heading {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.service_desc {
  margin-top: 24px;
  text-align: justify;
}
@media (width >= 768px) {
  .service_heading {
    font-size: 24px;
  }
  .service_contents {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
  }
  .service_img-wrapper,
  .service_text-wrapper {
    width: calc((100% - 32px) / 2);
    height: auto;
  }
  .service_contents:nth-of-type(even) {
    flex-direction: row-reverse;
  }
  .service_text-wrapper {
    margin-top: 0px;
  }
  .service_img {
    height: auto;
  }
  .service_heading {
    text-align: left;
  }
}
/* service FAQ */
.service_faq-question {
  background: var(--primary-color);
  width: 100%;
  padding: 16px 8px;
  display: flex;
}
.service_faq-question_tag {
  font-size: 12px;
  font-weight: bold;
  font-family: var(--font-family-accent);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--white-color);
  margin: auto 0;
}

.service_faq-question_text {
  font-size: 14px;
  font-weight: bold;
  color: var(--white-color);
  letter-spacing: 0.1em;
  margin-inline: 16px;
  text-align: left;
  flex-grow: 1;
}
.service_faq-question_mark {
  position: relative;
  width: 16px;
  height: 16px;
  margin: auto 0;
}
.service_faq-question_mark::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 2px;
  background: var(--white-color);
}
.service_faq-question_mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  width: 16px;
  height: 2px;
  background: var(--white-color);
}
.service_faq-question_mark.is-open::after {
  display: none;
}
.service_faq-answer {
  box-shadow: 2px 2px 4px 0px rgba(170, 170, 170, 0.16);
  height: 0;
  overflow: hidden;
  opacity: 0;
}
.service_faq-answer_inner {
  padding: 16px 16px 16px 8px;
  display: flex;
  width: 100%;
}
.service_faq-answer_text {
  font-size: 14px;
  font-weight: bold;
  margin-left: 16px;
  flex-grow: 1;
}
.service_faq-answer_tag {
  font-size: 12px;
  font-weight: bold;
  font-family: var(--font-family-accent);
  color: var(--primary-color);
  width: 24px;
  height: 24px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: auto 0;
}
@media (width >= 768px) {
  .service_faq-question {
    padding-inline: 24px;
  }
  .service_faq-question_text {
    margin-left: 32px;
  }
  .service_faq-answer_inner {
    padding-inline: 24px;
  }
  .service_faq-answer_text {
    margin-left: 32px;
  }
}
/* SINGLE-------------------------------------- */
/* article */
.single_article_meta {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}
.single_article h1 {
  font-size: 20px;
  font-weight: bold;
  margin-top: 24px;
}
.single_article h2 {
  font-size: 18px;
  font-weight: bold;
  margin-top: 40px;
}
.single_article h3 {
  font-size: 16px;
  font-weight: bold;
  margin-top: 40px;
}
.single_article p {
  margin-top: 24px;
  font-size: 14px;
  text-align: justify;
}
/* aside */
.single_aside_title {
  border-bottom: 4px solid var(--primary-color);
  padding: 16px;
  font-weight: bold;
  height: 64px;
}
.single_aside_list {
  margin-top: 40px;
}
.single_aside_item {
  font-weight: bold;
  padding: 16px;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.single_aside_link {
  height: 100%;
  display: flex;
  align-items: center;
  text-decoration: underline;
}
.single_aside_count {
  background: var(--primary-color);
  color: var(--white-color);
  width: 56px;
  height: 48px;
  border-radius: 8px;
  text-align: center;
  line-height: 48px;
}
@media (width >= 1080px) {
  .single_contents {
    display: flex;
    gap: 120px;
  }
  .single_article {
    width: calc(100% - 120px - 320px);
  }
  .single_aside {
    width: 320px;
  }
}

/* CONTACT-------------------------------------- */
.contact_form {
  margin-top: 64px;
}
.contact_form_heading {
  font-weight: bold;
  display: flex;
  align-items: center;
}
.contact_form_heading:not(:first-child) {
  margin-top: 35px;
}
.contact_form_detail {
  margin-top: 16px;
}
.contact_form_input,
.contact_form_textarea {
  border: 2px solid var(--gray-color02);
  width: 100%;
  padding: 4px 8px;
}
.contact_form_placeholder-wrapper {
  margin-top: 7px;
}
.contact_form_placeholder {
  font-size: 12px;
  color: var(--gray-color03);
  line-height: 1.83;
  display: block;
  text-align: right;
}
.contact_form_required {
  color: var(--white-color);
  font-size: 12px;
  font-weight: bold;
  background: var(--accent-color02);
  padding: 4px 8px;
  border-radius: 8px;
  display: inline-block;
  margin-left: auto;
}
.contact_form_textarea {
  min-height: 240px;
  padding: 16px;
}
.contact_form_textarea::placeholder {
  font-size: 12px;
  color: var(--gray-color03);
  display: block;
}
.contact_form_detail__other .wpcf7-form-control {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
  
}
.contact_form_detail__other .wpcf7-list-item{
  display: block;
  margin: 0;
  background: var(--gray-color02);
  padding: 8px 0;
}
.contact_form_detail__other .wpcf7-list-item-label{
  font-weight: bold;
  font-size: 14px;
}
.contact_form_detail__other input[type="radio"]  {
  width: 15px;
  height: 15px;
  border: 1px solid #8c8c8c;
  border-radius: 50%;
  margin-inline: 16px;
}
.contact_form_detail__other input[type="radio"]:checked {
  background: var(--primary-color);
}

.contact_form_privacy {
  margin-top: 64px;
  background: var(--gray-color02);
  width: 100%;
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact_form_privacy .wpcf7-list-item label {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact_form_checkbox {
  width: 24px;
  height: 24px;
  border: 1px solid #8c8c8c;
  margin: 0 16px 0 0;
  flex-shrink: 0;
}
.contact_form_checkbox:checked {
  background: var(--primary-color);
}
.contact_form_privacy-text {
  font-size: 14px;
  font-weight: bold;
}
.contact_form_privacy-link {
  color: var(--primary-color);
  text-decoration: underline;
}
.contact_form_btn-wrapper {
  margin-top: 64px;
  position: relative;
}
.wpcf7-spinner {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}
.contact_form_detail .wpcf7-not-valid-tip,
.contact_form_detail__other .wpcf7-not-valid-tip{
  color: var(--primary-color);
  font-size: 12px;
  margin-top: 8px;
}
@media (width >= 768px) {
  .contact_form_heading:not(:first-child) {
    margin-top: 64px;
  }
}
/* PRIVACY------------------------------------- */
.privacy-policy_body {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.privacy-policy_heading {
  font-size: 18px;
  font-weight: bold;
}
.privacy-policy_desc {
  text-align: justify;
  font-size: 14px;
  margin-top: 24px;
}
.privacy-policy_list {
  margin-top: 24px;
}
.privacy-policy_list-item {
  font-size: 14px;
  text-align: justify;
}

/* 404 */
.not_found_body {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.not_found_desc {
  margin-top: 24px;
  font-size: 14px;
}
.not_found_btn-wrapper {
  margin-top: 64px;
}
/* ブレイクポイント
  header, footerは1080px
  それ以外は基本768px */
