@charset "UTF-8";

:root{
  /*色管理用変数*/
--white-color:#FFFFFF;
--gray-color:#FAFAFA;
--gray-color02:#F2F2F2;
--gray-color03:#AAAAAA;
--gray-color04:#707070;
--black-color:#001C2B;
--primary-color:#43CFE8;
--primary-color02:#DDF4F6;
--accent-color:#E84D43;
}


:root {
  /* コンテンツ幅管理用の変数 */
  --content-width-sm: 672px;
  --content-width: 992px;
  --content-width-lg: 1366px;
}

: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;
}

body {
  color: var(--black-color);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.1em;
}


/* ---------- layout ---------- */
.l_container-sm,
.l_container-lg,
.l_container {
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
}

.l_container-sm {
  max-width: calc(var(--content-width-sm) + 32px);
}

.l_container {
  max-width: calc(var(--content-width) + 32px);
}

.l_container-lg {
  max-width: calc(var(--content-width-lg) + 32px);
}

.l_contents {
  padding: 80px 0;
}
@media screen and (min-width: 1080px) {
  .l_contents{
    padding: 120px 0;
  }
}

.l_page-main{
  margin-top: 80px;
}

.l_header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: var(--z-index-header);
  width: 100%;
  height: 80px;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white-color);
}
@media screen and (min-width: 1080px) {
  .l_header {
    padding: 0 0 0 32px;
  }
}

@media screen and (min-width: 1080px) {
  .l_header-logo_img{
    width: 120px;
    height: 32px;
  }
}

.l_header-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: var(--z-index-modal);
  background:var(--white-color);
}
@media screen and (min-width: 1080px) {
  .l_header-nav {
    opacity: 1;
    position: static;
    background: transparent;
  }
}

.l_header-nav_contact{
  display: none;
}

.l_header-nav_list {
  display: flex;
  gap: 56px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
@media screen and (min-width: 1080px) {
  .l_header-nav_list {
    height: 80px;
    flex-direction: row;
  }
}

.l_header-nav_item {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1080px) {
  .l_header-nav_item{
    height: 80px;
  }
}

@media screen and (min-width: 1080px) {
  .l_header-nav_item-contact{
    background: var(--primary-color);
    color:var(--white-color);
    padding: 0 32px;
  }
}

.l_header-nav_link {
  display: block;
  font-weight: bold;
}
@media screen and (min-width: 1080px) {
  .l_header-nav_link{
    height: 32px;
  }
}

.l_footer {
  padding: 80px 0 24px;
}
@media screen and (min-width: 1080px) {
  .l_footer {
    padding: 120px 0 24px;
  }
}

@media screen and (min-width: 1080px) {
  .l_footer_contents {
    display: flex;
    justify-content: space-between;
    padding: 0 56px;
  }
}

.l_footer-logo{
  text-align: center;
}
@media screen and (min-width: 1080px) {
  .l_footer-logo{
    text-align: left;
  }
}
.l_footer-logo_link{
  margin: 0 auto;
}

.l_footer-logo_img {
  max-width: 80px;
  max-height: 24px;
}
@media screen and (min-width: 1080px) {
  .l_footer-logo_img{
    max-width: 120px;
    max-height: 32px;
  }
}

.l_footer_address {
  text-align: center;
  margin-top: 16px;
}
@media screen and (min-width: 1080px) {
  .l_footer_address {
    text-align: left;
  }
}

.l_footer-nav {
  margin-top: 64px;
}
@media screen and (min-width: 1080px) {
  .l_footer-nav {
    margin-top: 0;
  }
}

.l_footer-nav_list {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
@media screen and (min-width: 1080px) {
  .l_footer-nav_list {
    width: 100%;
    flex-direction: row;
  }
}

.l_footer-nav_link {
  display: flex;
  align-items: center;
}

.l_footer-copyright {
  text-align: center;
  margin-top: 64px;
}

.l_footer-copyright_contact{
  margin-top: 0;
}

.l_footer-copyright_txt {
  font-size: 14px;
  letter-spacing: 0;
}

/*---------- module ----------*/
.m_opening {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: var(--z-index-modal);
  background:var(--white-color);
  display: flex;
}

.m_opening_txt {
  text-align: center;
  margin: auto;
}

.m_opening_ttl {
  color: var(--primary-color);
  font-size: 24px;
  font-weight: bold;
  box-shadow: 2,2,4,var(--gray-color02);
}

@media screen and (min-width: 768px) {
  .m_opening_ttl {
    font-size: 32px;
  }
}

.m_hamburger {
  display: block;
  width: 24px;
  height: 22px;
  position: relative;
  z-index: var(--z-index-modal);
  border: none;
  background: transparent;
}

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

.m_hamburger_contact{
  display: none;
}

.m_hamburger-bar {
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  background: var(--black-color);
}

.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) {
  top: 100%;
  transform: translateY(-100%);
}

.m_btn-wrapper {
  width: 343px;
  height: 80px;
  margin-left: auto;
  margin-right: auto;
}

.m_btn {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.m_btn__contact {
  color: var(--white-color);
  font-size: 18px;
  font-weight: bold;
  background: var(--accent-color);
  box-shadow:2px 2px 4px var(--gray-color03)29;
}

.m_btn__contact::after {
  content: url(../img/icon_email.svg);
  width: 24px;
  height: 24px;
  margin-left: 8px;
}

.m_btn__more {
  font-weight: bold;
  background: var(--primary-color02);
  position: relative;
  z-index: var(--z-index-default);
  cursor: pointer;
  box-shadow: 2px 2px 4px var(--gray-color03)29;
}

.m_btn__more::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: 32px;
  transform: translateY(-50%) rotate(45deg);
}

.m_contact {
  padding: 94px 0;
  background: linear-gradient(rgba(0, 28, 43, 0.3), rgba(0, 28, 43, 0.3)),
    url(../img/contact.webp);
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .m_contact {
    padding: 96px 0;
  }
}

.m_contact_copy {
  color: var(--white-color);
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

.m_contact_txt {
  color: var(--white-color);
  text-align: center;
  margin-top: 24px;
}

@media screen and (min-width: 768px) {
  .m_contact_txt {
    font-size: 18px;
  }
}

.m_contact_btn-wrapper {
  margin-top: 40px;
}

.m_section_ttl {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  position: relative;
  color: var(--primary-color);
}

.m_section_ttl-sub{
  font-weight: 14px;
  font-weight: bold;
  text-align: center;
  margin-top: 8px;
}

.m_pagination{
  margin-top: 64px;
  text-align: center;
}

.m_pagination_numbers{
  font-weight: bold;
  background: #DDF4F6;
  padding: 8px 18px;
  border-radius: 8px;
  text-shadow: 2px 2px 4px #AAAAAA29;
}

.m_pagination_numbers:not(:first-child){
  margin-left: 24px;
}

.m_pagination_numbers__next{
  position: relative;
}

.m_pagination_numbers__next::before{
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--black-color);
  border-right: 2px solid var(--black-color);
  position: absolute;
  top: 50%;
  left: 32%;
  transform: translateY(-50%) rotate(45deg);
}

.m_pagination_numbers__next::after{
  transform: translate(-50%, -50%) rotate(45deg);
}



/*---------- top ----------*/
.top_kv {
  height: 100vh;
  /* background: linear-gradient(rgba(0, 28, 43, 0.3), rgba(0, 28, 43, 0.3)),
    url("../img/bg_kv.webp") 70% center/cover; */
  background: linear-gradient(rgba(0, 28, 43, 0.3), rgba(0, 28, 43, 0.3));
  position: relative;
}


.top_kv_contents{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.top_kv_copy {
  color: var(--white-color);
  font-size: 40px;
  font-weight: bold;
  text-shadow: 2px 2px 2px rgba(170, 170, 170, 0.16);
}
@media screen and (min-width: 1080px) {
  .top_kv_copy {
    font-size: 64px;
  }
}

.top_kv_copy-emphasis{
  color: var(--primary-color);
}

.top_kv_sub-copy {
  color: var(--white-color);
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  text-shadow: 2px 2px 2px rgba(170, 170, 170, 0.16);
  margin-top: 24px;
  white-space: pre;
}
@media screen and (min-width: 1080px) {
  .top_kv_sub-copy {
    font-size: 24px;
    white-space: normal;
  }
}

.top_kv_sub-br{
  white-space: pre;
}

.top_kv-scroll-down {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  position: absolute;
  left: 50%;
  z-index: var(--z-index-default);
  transform: translateX(-50%);
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .top_kv-scroll-down{
    margin-top: 48px;
  }
}

.top_kv-scroll-down_txt {
  color: var(--white-color);
  font-size: 12px;
  margin-top: 8px;
  font-family: "Roboto", sans-serif;
}

.top_kv-scroll-down_arrow {
  width: 2px;
  height: 40px;
  border-color: var(--white-color);
  border-width: 2px;
  border-style: none solid solid none;
}

.top_kv-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-index-back);
}

.top_kv-slideshow_slide_img {
  object-fit: cover;
  height: 100%;
}

.top_about{
  position: relative;
}

.top_about::before{
  border-right: 400px solid transparent;
  border-top: 400px solid var(--gray-color);
  top: 0;
  content: "";
  display: block;
  height: 0;
  left: 0;
  position: absolute;
  transform: translateY(0) translateX(-50%);
  width: 0;
  z-index: var(--z-index-back);
}
@media screen and (min-width: 1080px) {
  .top_about::before{
    border-right: 700px solid transparent;
    border-top: 700px solid var(--gray-color);
  }
}

.top_about::after{
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 150px solid transparent;
  border-bottom: 150px solid transparent;
  border-right: 200px solid var(--gray-color);
  border-left: 0;
  bottom: 0;
  right: 0;
  transform: translate(0,60%);
  z-index: var(--z-index-back);
}
@media screen and (min-width: 1080px) {
  .top_about::after{
    border-top: 350px solid transparent;
    border-bottom: 350px solid transparent;
    border-right: 400px solid var(--gray-color);
  }
}

.top_about_body {
  margin-top: 64px;
}
@media screen and (min-width: 1080px) {
  .top_about_contents{
    width: 72%;
    margin: 0 auto;
  }
}

.m_about_ttl {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .m_about_ttl{
    font-size: 24px;
  }
}

.m_about_ttl-emphasis{
  color:var(--white-color);
  background: var(--primary-color);
}

.m_about_txt {
  margin-top: 40px;
}

.top_about_btn-wrapper {
  margin-top: 64px;
}

.top_service{
  position: relative;
}

.top_service::after{
  border-right: 400px solid transparent;
  border-top: 400px solid var(--gray-color);
  bottom: 0;
  content: "";
  display: block;
  height: 0;
  left: 0;
  position: absolute;
  transform: translateY(0) translateX(-50%) rotate(-90deg);
  width: 0;
  z-index: var(--z-index-back);
}
@media screen and (min-width: 1080px) {
  .top_service::after{
    border-right: 700px solid transparent;
    border-top: 700px solid var(--gray-color);
  }
}

.top_service_body {
  margin-top: 64px;
}

@media screen and (min-width: 768px) {
  .m_service_item{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .m_service_item:nth-child(2n){
    flex-direction: row-reverse;
  }
}

.m_service_item:not(:first-child){
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .m_service_item_thumb-wrapper{
    width: 42%;
    height: 100%;
  }
}

.m_service_item_contents{
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .m_service_item_contents{
    width: 50%;
  }
}

.m_service_ttl{
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .m_service_ttl{
    font-size: 24px;
    text-align: left;
  }
}

.m_service_txt{
  margin-top: 24px;
}

.top_service_btn-wrapper {
  margin-top: 64px;
}

.top_news{
  background: var(--gray-color);
}

.top_news_body {
  margin-top: 64px;
}

.top_news_list-wrapper {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1080px) {
  .top_case_list-wrapper {
    margin-left: auto;
    margin-right: auto;
    height: auto;
  }
}

.top_news_list{
  display: flex;
}

.m_news_item{
  background: var(--white-color);
  border-radius: 8px;
  height: 480px;
  width: 343px;
  text-shadow: 2px 2px 4px #AAAAAA29;
}
@media screen and (min-width: 768px) {
  .m_news_item {
    width: calc((100% - 24px * 2) / 3);
  }
}

.m_news_item_img{
  height: 212px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .m_news_item_img{
    max-height: 190px;
    width: 100%;
  }
}

.m_news_item_contents{
  padding: 16px;
}

.m_news_item-meta{
  display: flex;
  justify-content: space-between;
}

.m_news_meta-date{
  font-size: 14px;
  color: var(--gray-color03);
}

.m_news_meta-cat{
  font-size: 12px;
  font-weight: bold;
  color: var(--gray-color03);
}

.m_news_ttl{
  font-weight: bold;
  margin-top: 16px;
}

.m_news_txt{
  font-size: 14px;
  margin-top: 16px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.top_news_pagination{
  position: relative;
  margin-top: 64px;
}

.top_news_nav {
  width: 64px;
  height: 48px;
  background: var(--primary-color02);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.16);
  position: absolute;
  bottom: -50px;
  top: auto;
}

.top_news_nav__prev {
  left: auto;
  right: calc(50% + 96px);
}

.top_news_nav__next {
  left: calc(50% + 96px);
  right: auto;
}

.top_news_nav__prev:after,
.top_news_nav__next:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--black-color);
  border-right: 2px solid var(--black-color);
  top: 50%;
  left: 50%;
}

.top_news_nav__prev:after {
  transform: translate(-50%, -50%) rotate(-135deg);
}

.top_news_nav__next:after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.top_news_dots {
  position: absolute;
  left: 50% !important;
  bottom: -32px !important;
  transform: translateX(-50%);
  width: 96px !important;
  height: 16px;
  display: flex;
  justify-content: space-between;
}

.top_news_dots .swiper-pagination-bullet {
  background: var(--gray-color04);
  width: 16px;
  height: 16px;
  border-radius: 0;
  color: transparent;
  border: 2px solid var(--white-color);
}

.top_news_dots .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--primary-color);
}


/*---------- about ----------*/
.about_messarge{
  position: relative;
}

.about_messarge::before{
  border-right: 400px solid transparent;
  border-top: 400px solid var(--gray-color);
  top: 0;
  content: "";
  display: block;
  height: 0;
  left: 0;
  position: absolute;
  transform: translateY(0) translateX(-50%);
  width: 0;
  z-index: var(--z-index-back);
}
@media screen and (min-width: 1080px) {
  .about_messarge::before{
    border-right: 700px solid transparent;
    border-top: 700px solid var(--gray-color);
  }
}

.about_messarge::after{
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 150px solid transparent;
  border-bottom: 150px solid transparent;
  border-right: 200px solid var(--gray-color);
  border-left: 0;
  bottom: 0;
  right: 0;
  transform: translate(0,60%);
  z-index: var(--z-index-back);
}
@media screen and (min-width: 1080px) {
  .about_messarge::after{
    border-top: 350px solid transparent;
    border-bottom: 350px solid transparent;
    border-right: 400px solid var(--gray-color);
  }
}

.about_messarge_body {
  margin-top: 64px;
}

@media screen and (min-width: 1080px) {
  .about_messarge_body{
    width: 72%;
    margin-left: auto;
    margin-right: auto;
  }
}
.about_messarge_ttl{
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .about_messarge_ttl{
    font-size: 24px;
  }
}

.about_messarge_ttl-emphasis{
  color:var(--white-color);
  background: var(--primary-color);
}

.about_messarge_txt{
  margin-top: 40px;
}

.about_greeting{
  position: relative;
}

.about_greeting::after{
  border-right: 400px solid transparent;
  border-top: 400px solid var(--gray-color);
  bottom: 0;
  content: "";
  display: block;
  height: 0;
  left: 0;
  position: absolute;
  transform: translateY(0) translateX(-50%) rotate(-90deg);
  width: 0;
  z-index: var(--z-index-back);
}
@media screen and (min-width: 1080px) {
  .about_greeting::after{
    border-right: 700px solid transparent;
    border-top: 700px solid var(--gray-color);
  }
}

.about_greeting_body{
  margin-top: 64px;
}

@media screen and (min-width: 1080px) {
  .about_greeting_body {
    display: flex;
    justify-content: space-between;
  }
}

@media screen and (min-width: 1080px) {
  .about_greeting_img-wrapper{
    width: 48%;
    height: 100%;
  }
}

.about_greeting_img{
  max-width: 100%;
}

.about_greeting_contents{
  margin-top: 40px;
}
@media screen and (min-width: 1080px) {
  .about_greeting_contents{
    width: 49%;
    margin-top: 0;
  }
}

.about_greeting_ttl{
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  white-space: pre-line;
}

.about_greeting_txt{
  margin-top: 40px;
}

.about_greeting-table{
  margin-top: 40px;
}

.about_greeting-table_row{
  display: flex;
  justify-content: space-between;
}

.about_greeting-table_heading{
  font-weight: bold;
}

.about_greeting-table_data{
  font-weight: bold;
}

.about_info {
  background: var(--gray-color);
}

.about_info_body {
  margin-top: 64px;
  background: var(--white-color);
}

.about_info-table{
  border: 1px solid var(--gray-color02);
}

.about_info-table_row{
  height: 60px;
  border: 1px solid var(--gray-color02);
}

.about_info-table_heading{
  font-weight: bold;
  font-size: 14px;
  width: 160px;
  padding: 16px 24px;
  border-right: solid 1px var(--gray-color02);
}
@media screen and (min-width: 768px) {
  .about_info-table_heading{
    padding: 16px;
  }
}

.about_info-table_data{
  font-size: 14px;
  padding: 16px 24px;
  white-space: pre-line;
}
@media screen and (min-width: 768px) {
  .about_info-table_data{
    white-space: nowrap;
    width: 70%;
  }
}


/*---------- service ----------*/
.service_contents{
  position: relative;
}

.service_contents::before{
  border-right: 400px solid transparent;
  border-top: 400px solid var(--gray-color);
  top: 0;
  content: "";
  display: block;
  height: 0;
  left: 0;
  position: absolute;
  transform: translateY(0) translateX(-50%);
  width: 0;
  z-index: var(--z-index-back);
}
@media screen and (min-width: 1080px) {
  .service_contents::before{
    border-right: 700px solid transparent;
    border-top: 700px solid var(--gray-color);
  }
}

.service_contents::after{
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 200px solid transparent;
  border-bottom: 0px solid transparent;
  border-right: 200px solid var(--gray-color);
  border-left: 0;
  bottom: 0;
  right: 0;
  z-index: var(--z-index-back);
}
@media screen and (min-width: 1080px) {
  .service_contents::after{
    border-top: 450px solid transparent;
    border-bottom: 0px solid transparent;
    border-right: 400px solid var(--gray-color);
  }
}

.service_description_body{
  margin-top: 64px;
}

.service_faq {
  padding: 80px 0;
  background: var(--gray-color);
}
@media screen and (min-width: 768px) {
  .service_faq{
    padding: 120px 0;
  }
}

.service_faq_body {
  margin-top: 64px;
}

.service_faq_unit {
  background: var(--white-color);
  border: 1px solid var(--gray-color02);
  overflow: hidden;
  box-shadow: 2px 2px 4px var(--gray-color03)29;
}

.service_faq_unit:not(:first-child) {
  margin-top: 64px;
}

.service_faq-question {
  padding: 16px 8px;
  display: flex;
  align-items: center;
  width: 100%;
  background: var(--primary-color);
}
@media screen and (min-width: 768px) {
  .service_faq-question{
    padding: 16px 24px;
  }
}

.service_faq-question_tag {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service_faq-question_txt {
  font-size: 14px;
  font-weight: bold;
  margin-left: 16px;
  text-align: left;
  width: 100%;
  color:var(--white-color);
}

.service_faq-question_mark {
  flex-shrink: 0;
  position: relative;
  height: 36px;
  width: 16px;
  margin-left: 8px;
}

.service_faq-question_mark::before {
  content: "";
  width: 24px;
  height: 2px;
  background:var(--white-color);
  position: absolute;
  top: 50%;
  left: -50%;
  transform: translate(20%,-50%);
}

.service_faq-question_mark::after {
  content: "";
  width: 2px;
  height: 24px;
  background:var(--white-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.service_faq-answer {
  padding: 16px 16px 16px 8px;
  display: flex;
  align-items: center;
  width: 100%;
  border-top: 1px solid var(var(var(--gray-color02)));
  background: var(--gray-color);
}
@media screen and (min-width: 768px) {
  .service_faq-answer{
    padding: 16px 24px;
  }
}

.service_faq-answer_tag {
  color: var(--primary-color);
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background:var(--white-color);
}

.service_faq-answer_txt {
  font-size: 14px;
  font-weight: bold;
  width: 100%;
  margin-left: 16px;
}


/*---------- archive ----------*/
.archive_main{
  background: #FAFAFA;
}

.archive_body{
  margin-top: 64px;
}

.archive_news_list{
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .archive_news_list{
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
  }
}

@media screen and (min-width: 768px) {
  .m_archive-news_item {
    width: calc((100% - 32px * 2) / 3);
  }
}
@media screen and (min-width: 1080px) {
  .m_archive-news_item {
    width: calc((100% - 32px * 2)/ 3);
  }
}

.m_archive-news_item:not(:first-child){
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .m_archive-news_item:not(:first-child){
    margin-top: 0;
  }
}



/*---------- category-press ----------*/
.category-press_main{
  background: #FAFAFA;
  margin-top: 80px;
}

.category-press_body{
  margin-top: 64px;
}

.category-press_news_list{
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .category-press_news_list{
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
  }
}



/*---------- category-member ----------*/
.category-member_main{
  background: #FAFAFA;
  margin-top: 80px;
}

.category-member_body{
  margin-top: 64px;
}

.category-member_news_list{
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .category-member_news_list{
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
  }
}


/*---------- single ----------*/
.single_contents{
  background: #FAFAFA;
  padding-top: 80px;
  padding-bottom: 80px;
}

@media screen and (min-width: 768px) {
  .single_body{
    display: flex;
    justify-content: space-between;
  }
}

.single_main{
  background: #FFFFFF;
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .single_main{
    width: 60%;
  }
}

.single_main_contents{
  margin-top: 24px;
}

.single_main_ttl{
  font-weight: bold;
  font-size: 20px;
  margin-top: 24px;
}

.single_news_body{
  margin-top: 40px;
}

.single_news_contents:not(:first-child){
  margin-top: 40px;
}

.single_news_ttl{
  font-weight: bold;
  font-size: 20px;
}

.single_news_txt{
  font-size: 14px;
  margin-top: 24px;
}

.single_sidebar{
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .single_sidebar{
    width: 30%;
  }
}

.single_sidebar-box_head{
  background: #FFFFFF;
  padding: 16px;
}

.single_sidebar-box_head-txt{
  font-weight: bold;
  border-bottom: 4px solid #43CFE8;
}

.single_sidebar-box_contents{
  margin-top: 40px;
}

.single_sidebar-cat_item{
  height: 80px;
  background: #FFFFFF;
  padding: 16px;
}

.single_sidebar-cat_link{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.single_sidebar-cat_txt{
  font-weight: bold;
  border-bottom: 1px solid #001C2B;
}

.single_sidebar-cat_count{
  color: #FFFFFF;
  background: #43CFE8;
  padding: 8px 23px;
  border-radius: 8px;
}

/*---------- contact ----------*/
.contact_main {
  background: var(--gray-color);
  margin-top: 80px;
}

.contact_form{
  margin-top: 64px;
}

.contact_form_heading {
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact_form_heading:not(:first-child) {
  margin-top: 64px;
}

.contact_form_required {
  color: var(--white-color);
  font-size: 12px;
  font-weight: bold;
  width: 48px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  border-radius: 8px;
}

.contact_form_detail {
  margin-top: 16px;
}

.contact_form_detail__other {
  margin-top: 24px;
}

.contact_form_input {
  font-size: 16px;
  width: 100%;
  height: 40px;
  padding: 8px;
  border: 2px solid var(--gray-color02);
  background: var(--white-color);
}

.contact_form_example-wrapper {
  text-align: right;
  height: 24px;
  margin-top: 8px;
}

.contact_form_example {
  color: var(--gray-color03);
  font-size: 12px;
}

.contact_form_check-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .contact_form_check-list {
    display: flex;
  }
}

.contact_form_check-item {
  background: var(--gray-color02);
  padding: 8px 16px;
}

.contact_form_request-item-inner {
  cursor: pointer;
  font-weight: bold;
}

.contact_form_radio{
  /*
  background: var(--white-color);
  border: 1px solid #8C8C8C;*/
  appearance: radio;
}

.contact_form_request-txt {
  font-size: 14px;
  font-weight: bold;
  margin-left: 16px;
}

.contact_form_textarea {
  font-size: 16px;
  width: 100%;
  height: 240px;
  padding: 16px;
  border: 2px solid var(--gray-color02);
  background: var(--white-color);
}

.conrtact_form_privacy-policy{
  border: 1px solid var(--gray-color02);
  background:var(--gray-color02) ;
  width: 100%;
}

.contact_form_privacy-policy-inner{
  height: 44px;
  padding: 8px 16px;
  display: flex;
  cursor: pointer;
  justify-content: center;
}

.contact_form_checkbox {
  width: 24px;
  height: 24px;
  margin-top: 4px;
  flex-shrink: 0;
  background: var(--white-color);
  border: 1px solid #8C8C8C;
  appearance: checkbox;
}

.contact_form_privacy-policy-txt{
  font-size: 14px;
  font-weight: bold;
  margin-left: 16px;
}

.contact_form_privacy-btn{
  font-weight: normal;
  text-decoration: underline;
  color: var(--primary-color);
  border: var(--primary-color);
}

.contact_form_btn-wrapper {
  margin-top: 64px;
}

.contact_btn__form {
  font-weight: bold;
  color: var(--white-color);
  background: var(--accent-color);
  position: relative;
  z-index: var(--z-index-default);
  cursor: pointer;
  border-radius: 100vh;
  box-shadow: 2px 2px 4px var(--gray-color03)29;
}

.contact_btn__form::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: 32px;
  transform: translateY(-50%) rotate(45deg);
}


/*----------privacy--------*/
.privacy_main{
  background: #FAFAFA;
  margin-top: 80px;
}

.privacy_body{
  margin-top: 64px;
}

.privacy_item:not(:first-child){
  margin-top: 40px;
}

.privacy_item_ttl{
  font-weight: bold;
  font-size: 18px;
}

.privacy_item_txt{
  font-size: 14px;
  margin-top: 24px;
}



/* ---------- not-found ---------- */
.not-found_kv{
  background-image: url(../img/pic_kv_001.webp);
  height: 500px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.not-found_main{
  text-align: center;
}

.not-found_ttl{
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .not-found_ttl{
    font-size: 32px;
  }
}

.not-found_text{
  font-size: 14px;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .not-found_text{
    font-size: 18px;
  }
}


/* ---------- js ---------- */
.js_body.is_hidden {
  overflow: hidden;
}

.js_hamburger-bar {
  transition: top 0.24s, transform 0.24s, opacity 0.24s;
}

.js_hamburger.is-active .m_hamburger-bar:first-child {
  top: 50%;
  transform: translateY(-50%) rotate(135deg);
}

.js_hamburger.is-active .m_hamburger-bar:nth-child(2) {
  transform: translate(50%, -50%);
  opacity: 0;
}

.js_hamburger.is-active .m_hamburger-bar:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-135deg);
}

.js_copy,
.js_sub-copy {
  overflow: hidden;
}

.js_nav {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s;
}

@media screen and (min-width: 1080px) {
  .js_nav {
    opacity: 1;
    pointer-events: auto;
  }
}

.js_nav.is-active {
  opacity: 1;
  pointer-events: auto;
}

.js_faq_mark::after {
  transition: opacity .24s;
}

.js_faq_mark.is-open::after {
  opacity: 0;
}

.js_faq-a {
  height: 0;
  opacity: 0;
}

.js_h-slide_trigger {
  overflow: hidden;
}


