﻿@charset "utf-8";

/* reset CSS */
*,*::before,*::after{box-sizing:border-box}*{margin:0}html,body{height:100%}body{line-height:1.5;-webkit-font-smoothing:antialiased}img,picture,video,canvas,svg{display:block;max-width:100%}input,button,textarea,select{font:inherit}p,h1,h2,h3,h4,h5,h6{overflow-wrap:break-word}#root,#__next{isolation:isolate}
dl,ol,ul{margin-bottom:0;}
figure{margin-bottom:0;}

:root {
  --main-color: #7F7F7F;
  --bg-gray: #F2F2F2;
}

@font-face {
  font-family: 'Hiragino Mincho Pro';
  src: url('../font/hiragino_mincho_pro.otf') format('opentype');
}

body{
  font-family: "Hiragino Sans", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--main-color);
  overflow-x: hidden;
}
a:hover{
  cursor: pointer;
}

@media screen and (min-width: 768px){
  .pc-none{
    display: none;
  }
}
@media screen and (max-width: 767px){
  .sp-none{
    display: none;
  }
}


.header{
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 64px;
  margin: auto;
  padding: 0 1.5rem;
  background-color: #FFF;
  transition: all .4s;
}
.header.hidden{
  top: -64px;
}

.header_title{
  margin-bottom: 0;
  font-size: 28px;
  color: var(--main-color);
  font-weight: 600;
  text-decoration: none;
}
.header_title img{
  width: auto;
  height: 100%;
}
.header_title:hover{
  opacity: 0.7;
}

.header_toggle{
  position: relative;
  display: block;
  width: 32px;
  height: 24px;
  margin-left: auto;
}
.header_toggle:hover{
  cursor: pointer;
}
.header_toggle span{
  position: absolute;
  content: "";
  display: inline-block;
  transition: all .4s;
  left: 0;
  width: 32px;
  height: 3px;
  background: var(--main-color);
}
.header_toggle span:nth-of-type(1){
  top: 0px;
}
.header_toggle span:nth-of-type(2){
  top: 10.5px;
}
.header_toggle span:nth-of-type(3){
  top: 21px;
}
.header_toggle.active span:nth-of-type(1){
  top: 0;
  transform: translateY(12px) rotate(-45deg);
}
.header_toggle.active span:nth-of-type(2){
  top: 0;
  transform: translateY(12px) rotate(45deg);
}
.header_toggle.active span:nth-of-type(3){
  display: none;
}

@media screen and (max-width: 767px){
  .header{
    height: 48px;
    padding: 0 1rem;
  }
  .header_title{
    font-size: 24px;
  }
  .header_toggle{
    width: 16px;
    height: 14px;
  }
  .header_toggle span{
    width: 16px;
    height: 2px;
  }
  .header_toggle span:nth-of-type(2){
    top: 6px;
  }
  .header_toggle span:nth-of-type(3){
    top: 12px;
  }
  .header_toggle.active span:nth-of-type(1){
    transform: translateY(6px) rotate(-45deg);
  }
  .header_toggle.active span:nth-of-type(2){
    transform: translateY(6px) rotate(45deg);
  }
}

.spmenu{
  position: fixed;
  z-index: 998!important;
  top: 64px;
  right: -100vw;
  display: block;
  width: 100vw;
  height: calc(100dvh - 64px);
  padding: 2rem 1rem 0;
  transition: all 0.8s 0s ease;
  background-color: #FFF;
  overflow-y: scroll;
}
.spmenu.active{
  right: 0;
}
.spmenu_more{
  display: none;
}
.spmenu_nav{
  margin-bottom: 1.25rem;
  padding-top: 1rem;
  font-weight: 400;
}
.spmenu_nav{
  padding-left: 1rem;
  list-style: none;
}
.spmenu_nav li{
  margin-bottom: 1.5rem;
}
.spmenu_nav li a{
  display: block;
  font-size: 18px;
  line-height: 20px;
  color: #0C2F38;
  font-weight: 500;
  text-decoration: none; 
}
.spmenu_button{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 720px;
  margin: 3rem auto 0;
}
.spmenu_button_visit{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  font-size: 20px;
  color: var(--bg-gray);
  font-weight: 600;
  background-color: #808080;
  border-radius: 4px;
  text-decoration: none;
}
.spmenu_button_visit:hover{
  opacity: 0.7;
}
.spmenu_button_line{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  font-size: 20px;
  color: var(--bg-gray);
  font-weight: 600;
  background-color: #C7C2B6;
  border-radius: 4px;
  text-decoration: none;
}
.spmenu_button_line:hover{
  opacity: 0.7;
}

@media screen and (max-width: 767px){
  .spmenu{
    top: 48px;
    height: calc(100dvh - 48px);
  }
  .spmenu_nav{
    padding-left: 0.5rem;
  }
  .spmenu_button{
    grid-template-columns: repeat(1, 1fr);
    max-width: 360px;
  }
}

.footer{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  background-color: var(--main-color);
}
.footer_copyright{
  margin: 0;
  font-size: 11px;
  color: #FFF;
  text-align: center;
}

.inner{
  width: clamp(720px, 50vw, 960px);
  margin: auto;
}
.top_contact_inner{
  width: clamp(560px, 39vw, 750px);
  margin: auto;  
}
.footer_inner{
  width: 450px;
  margin: auto;  
}

@media screen and (max-width: 767px){
  .inner{
    width: calc(100% - 2rem);
  }
}

.top_concept{
  margin-bottom: 0;
  line-height: 1.4;
  text-align: center;
}
.top_title{
  margin-bottom: 1.5rem;
  font-size: 32px;
  letter-spacing: 4px;
  font-weight: 500;
  text-align: center;
}

@media screen and (max-width: 767px){
  .top_concept{
    font-size: 12px;
  }
  .top_title{
    margin-bottom: 1rem;
    font-size: 22px;
    letter-spacing: 2px;
  }
}

.notfound{
  min-height: calc(100dvh - 104px);
  margin-top: 64px;
  padding: 2.5rem 0;
}
.notfound_title{
  margin-bottom: 1.5rem;
  font-size: 24px;
  text-align: center;
}

@media screen and (max-width: 767px){
  .notfound{
    min-height: calc(100dvh - 88px);
    margin-top: 48px;
  }
}

.top_fv{
  position: relative;
  width: 100%;
  height: calc(607 / 1440 * 100vw);
  /* min-height: 500px; */
  margin-top: 64px;
  overflow: hidden;
  background-image: url("../img/top_fv_bg02.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
  display: flex;
  align-items: center;
}
.top_fv_message{
  padding-left: calc(180 / 1440 * 100vw);
}
.top_fv_message .--text{
  display: inline-block;
  padding: 0 calc(12 / 1440 * 100vw);
  font-size: calc(55 / 1440 * 100vw);
  color: #FFF;
  font-weight: 800;
  background: linear-gradient(to right, #A58DF6, #4FBBFF);
}
.top_fv_message .--small{
  font-size: calc(44 / 1440 * 100vw);
}
.top_fv_message .--text:not(:last-of-type){
  margin-bottom: calc(9 / 1440 * 100vw);
}

@media screen and (max-width: 1299px){
  .top_fv_message{
    /* position: absolute;
    left: 0;
    bottom: 1rem;
    padding: 0 0 20px 0; */
  }
  .top_fv_message span{
    /* padding: 0 12px;
    font-size: 40px; */
  }
  .top_fv_message span:not(:last-of-type){
    /* margin-bottom: 12px; */
  }
}

@media screen and (max-width: 767px){
  .top_fv{
    margin-top: 48px;
    height: calc(607 / 375 * 100vw);
    background-image: url("../img/top_fv_bg_sp02.webp");
    /* background-size: auto 100%; */
    background-position: center;
    align-items: flex-start;
  }
  .top_fv_message{
    padding-top: calc(191 / 375 * 100vw);
    padding-left: calc(16 / 375 * 100vw);
  }
  .top_fv_message .--text{
    font-size: calc(33 / 375 * 100vw);
    padding-inline: calc(8 / 375 * 100vw);
  }
  .top_fv_message .--small{
    font-size: calc(27 / 375 * 100vw);
  }
  .top_fv_message .--text:not(:last-of-type){
    margin-bottom: calc(6 / 375 * 100vw);
  }
}

.top_feature{
  padding: 2rem 0;
}
.top_feature_inner{
  position: relative;
  width: min(920px, 100%);
  padding-inline: 20px;
}
.top_feature_title{
  position: relative;
  margin-bottom: 1.25rem;
  padding-top: 21px;
  font-size: 24px;
  text-align: center;
}
.top_feature_title::before{
  /* position: absolute;
  content: "";
  left: -75px;
  top: 27px;
  width: 94px;
  height: 65.5px;
  background-image: url("../img/top_environment_bg01.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center; */
}
.top_feature_detail{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  font-family: "Noto Sans JP", sans-serif;
}
.top_feature_detail_item{
  position: relative;
  padding: 0.5rem;
  color: #F5F5F5;
  font-weight: 900;
  background-color: #C7C2B6;
  border-radius: 8px;
}
.top_feature_detail_item::before{
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.top_feature_detail_item:nth-child(1)::before{
  right: 6px;
  top: 10px;
  width: 51px;
  height: 51px;
  background-image: url("../img/feature07.svg");
}
.top_feature_detail_item:nth-child(2)::before{
  right: 6px;
  top: 8px;
  width: 48px;
  height: 48px;
  background-image: url("../img/feature08.svg");
  /* background-size: auto 56px; */
}
.top_feature_detail_item:nth-child(3)::before{
  right: 2px;
  top: 4px;
  width: 53px;
  height: 53px;
  background-image: url("../img/feature09.svg");
}
.top_feature_detail_item:nth-child(4)::before{
  right: 12px;
  top: 12px;
  width: 64px;
  height: 64px;
  background-image: url("../img/feature04.svg");
}
/* .top_feature_detail_item:nth-child(5)::before{
  background-image: url("../img/feature05.svg");
} */
/* .top_feature_detail_item:nth-child(6)::before{
  background-image: url("../img/feature06.svg");
} */
.top_feature_detail_item_title{
  margin-bottom: 0.25rem;
  font-size: 16px;
  font-weight: 900;
}
.top_feature_detail_item_important{
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 0.5rem;
  padding: 0.5rem 0;
  line-height: 1;
}
.top_feature_detail_item_important.trafic{
  padding: 0.75rem 0;
}
.top_feature_detail_item_important .number{
  margin-right: 0.25rem;
  font-size: 56px;
  line-height: 48px;
}
.top_feature_detail_item_important .unit{
  margin-right: 0.25rem;
  font-size: 18px;
}
.top_feature_detail_item_important .number-small{
  font-size: 40px;
}
.top_feature_detail_item_important .unit-small{
  font-size: 14px;
  line-height: 20px;
}
.top_feature_detail_item_important .yen{
  margin-left: 0.25rem;
  font-size: 24px;
}
.top_feature_detail_item_text{
  font-size: 14px;
  text-align: center;
}
.top_feature_message{
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: flex-end;
}
.top_feature_message p{
  margin-right: 0.5rem;
  font-weight: 700;
  text-align: right;
}
.top_feature_message img{
  width: 160px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.top_feature_foot_title{
  text-align: center;
  color: #7F7F7F;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  margin-top: 43px;
}

.top_feature_foot_detail{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 733px;
  margin: 19px auto 0;
}

.top_feature_foot_detail_image img{
  height: auto;
  border-radius: 10px;
}

.top_feature_foot_text{
  width: 334px;
  color: #7F7F7F;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.8;
  margin: 10px auto 0;
}

@media screen and (max-width: 960px) {
  .top_feature_detail{
    max-width: 432px;
    grid-template-columns: repeat(2, 1fr);
    margin-inline: auto;
  }
}

@media screen and (max-width: 767px){
  .top_feature{
    padding: 1.5rem 0;
    overflow: hidden;
  }
  .top_feature_title{
    margin-bottom: 1rem;
    padding-top: 0;
    font-size: 16px;
  }
  .top_feature_title::before{
    position: absolute;
    content: "";
    left: -28px;
    top: -16px;
    width: 46px;
    height: 32px;
  }
  .top_feature_detail{
    gap: 15px;
    margin-bottom: 15px;
  }
  .top_feature_detail_item::before{
    right: 8px;
    top: 8px;
    width: 40px;
    height: 40px;
    background-size: auto 40px;
  }
  .top_feature_detail_item:nth-child(2)::before{
    background-size: auto 32px;
  }
  .top_feature_detail_item_title{
    font-size: 12px;
  }
  .top_feature_detail_item_important{
    margin-bottom: 0.5rem;
    padding: 0.25rem 0;
    line-height: 1;
  }
  .top_feature_detail_item_important.trafic{
    padding: 0.25rem 0;
  }
  .top_feature_detail_item_important .number{
    font-size: 40px;
    line-height: 36px;
  }
  .top_feature_detail_item_important .unit{
    font-size: 14px;
  }
  .top_feature_detail_item_important.trafic{
    margin-bottom: 0;
    flex-wrap: wrap;
    justify-content: right;
  }
  .top_feature_detail_item_important .number-small{
    font-size: 32px;
  }
  .top_feature_detail_item_important .unit-small{
    font-size: 14px;
    line-height: 20px;
  }
  .top_feature_detail_item_important .unit-small.last{
    width: 100%;
    text-align: right;
  }
  .top_feature_detail_item_important .yen{
    margin-left: 0;
    font-size: 20px;
  }
  .top_feature_detail_item_important.staff{
    padding: 0.5rem 0;
  }
  .top_feature_detail_item_text{
    font-size: 10px;
    text-align: right;
  }
  .top_feature_message{
    position: relative;
    right: auto;
    top: auto;
    display: flex;
    align-items: center;
  }
  .top_feature_message p{
    width: calc(50% - 7.5px);
    margin-right: 15px;
    font-weight: 700;
    text-align: center;
  }
  .top_feature_message img{
    width: calc(50% - 7.5px);
    aspect-ratio: 1.875;
  }
  .top_feature_foot_title{
    font-size: 16px;
    margin-top: 24px;
  }
  .top_feature_foot_detail{
    grid-template-columns: unset;
    justify-content: center;
    gap: 16px;
  }
}

.top_point {
  padding-block: 56px 51px;
}

.top_point img {
  height: auto;
}

.top_point_title {
  text-align: center;
  color: #7F7F7F;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
}

.top_point_lead {
  text-align: center;
  color: #7F7F7F;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.8;
  margin-top: 32px;
}

.top_point_list {
  max-width: 564px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 32px auto 0;
}

.top_point_item {
}

.top_point_item_head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top_point_item_head_icon {
  flex-shrink: 0;
  width: 54px;
}

.top_point_item_head_title {
  color: #7F7F7F;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.8;
}

.top_point_item_image {
  position: relative;
  margin-top: 24px;
}

.top_point_item_image img {
  border-radius: 10px;
}

.top_point_item_image::before {
  content: "";
  position: absolute;
  top: -24px;
  left: 50%;
  translate: -50% 0;
  width: 16px;
  aspect-ratio: 1/1;
  background: url(../img/point-arrow.png) center/contain no-repeat;
}

.top_point_item_body {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
}

.top_point_item_body_icon {
  flex-shrink: 0;
  width: 26px;
}

.top_point_item_body_text {
  color: #7F7F7F;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.8;
}

@media screen and (max-width:767px) {
  .top_point {
    padding-block: 32px;
  }

  .top_point_title {
    font-size: 16px;
  }

  .top_point_lead {
    margin-top: 20px;
  }

  .top_point_list {
    width: 343px;
    grid-template-columns: unset;
    margin-top: 20px;
  }
}

.top_cta{
  padding: 3.5rem 0;
  background-color: var(--bg-gray);
}
.top_cta_message{
  position: relative;
  margin-bottom: 1.5rem;
  font-size: 20px;
  line-height: 2.5;
  font-weight: 600;
  text-align: center;
}
.top_cta_message::before{
  position: absolute;
  content: "";
  left: 0;
  right: 380px;
  top: -12px;
  width: 94px;
  height: 65.5px;
  margin: auto;
  background-image: url("../img/top_cta_message_bg01.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.top_cta_message::after{
  position: absolute;
  content: "";
  left: 360px;
  right: 0;
  bottom: 0;
  width: 50px;
  height: 32px;
  margin: auto;
  background-image: url("../img/top_cta_message_bg02.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.top_cta_message_sub{
  position: relative;
  margin-bottom: 0;
  font-size: 18px;
  color: #828282;
  font-weight: 500;
  letter-spacing: 1px;
  text-align: center;
}
.top_cta_message_sub::before{
  position: absolute;
  content: "";
  left: 0;
  right: 420px;
  top: -2px;
  width: 32px;
  height: 24px;
  margin: auto;
  background-image: url("../img/top_cta_message_sub_bg01.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.top_cta_message_sub::after{
  position: absolute;
  content: "";
  left: 420px;
  right: 0;
  bottom: 0;
  width: 32px;
  height: 24px;
  margin: auto;
  background-image: url("../img/top_cta_message_sub_bg02.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.top_cta_button{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.top_cta_button_visit{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  font-size: 20px;
  color: var(--bg-gray);
  font-weight: 600;
  background-color: #808080;
  border-radius: 4px;
  text-decoration: none;
}
.top_cta_button_visit:hover{
  opacity: 0.7;
}
.top_cta_button_line{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  font-size: 20px;
  color: var(--bg-gray);
  font-weight: 600;
  background-color: #C7C2B6;
  border-radius: 4px;
  text-decoration: none;
}
.top_cta_button_line:hover{
  opacity: 0.7;
}

@media screen and (max-width: 767px){
  .top_cta{
    padding: 2.25rem 0;
  }
  .top_cta_message{
    margin-bottom: 1.25rem;
    font-size: 18px;
    line-height: 2;
  }
  .top_cta_message::before{
    position: absolute;
    content: "";
    width: 56px;
    height: 40px;
    right: 300px;
    top: -12px;
  }
  .top_cta_message::after{
    position: absolute;
    content: "";
    left: 280px;
    bottom: 0;
    width: 50px;
    height: 32px;
  }
  .top_cta_message_sub{
    font-size: 16px;
  }
  .top_cta_message_sub::before, .top_cta_message_sub::after{
    position: relative;
  }
  .top_cta_button{
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    margin-top: 1rem;
  }
}

.top_workstyle{
  padding: 3.5rem 0 0;
}
.top_workstyle .inner{
  max-width: 720px;
}
.top_workstyle_text{
  margin-bottom: 1.5rem;
  line-height: 1.6;
  text-align: center;
}
.top_workstyle_detail{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.top_workstyle_detail_item_content{
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.top_workstyle_detail_item_content.content_03{
  margin-bottom: 2.375rem;
}
.top_workstyle_detail_item_content_number{
  width: 40px;
  font-family: 'Hiragino Mincho Pro';
  font-size: 32px;
  font-weight: 300;
  text-align: center;
}
.top_workstyle_detail_item_content_text{
  width: calc(100% - 40px);
  padding-left: 0.75rem;
  border-left: 1px solid #D9D9D9;
}
.top_workstyle_detail_item_content_text h3{
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 700;
}
.top_workstyle_detail_item_content_text p{
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.6;
}
.top_workstyle_detail_item img{
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

@media screen and (max-width: 767px){
  .top_workstyle{
    padding: 1.5rem 0 0;
  }
  .top_workstyle_text{
    font-size: 14px;
    text-align: left;
  }
  .top_workstyle_detail{
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  .top_workstyle_detail_item_content{
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
  }
  .top_workstyle_detail_item_content.content_03{
    margin-bottom: 0.5rem;
  }
  .top_workstyle_detail_item_content_text h3{
    font-size: 14px;
  }
  .top_workstyle_detail_item_content_text p{
    font-size: 12px;
  }
}

.top_education{
  padding: 3.5rem 0;
}
.top_education_text{
  margin-bottom: 1.5rem;
  line-height: 1.6;
  text-align: center;
  margin-inline: -8px;
}
.top_education_title{
  position: relative;
  margin-bottom: 1.5rem;
  padding-left: 30px;
  font-size: 18px;
  font-weight: 700;
}
.top_education_title::before{
  position: absolute;
  content: "";
  left: 0;
  top: 3.5px;
  width: 20px;
  height: 20px;
  background-image: url("../img/top_education_title_bg01.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.top_education_title::after{
  position: absolute;
  content: "";
  left: 120px;
  top: 0;
  width: calc(100% - 120px);
  height: 27px;
  background-image: url("../img/top_education_title_bg02.webp");
  background-repeat: repeat;
  background-size: auto 100%;
  background-position: center left;
}
.top_education_detail{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.5rem;
  margin-bottom: 2rem;
}
.top_education_detail.wide{
  grid-template-columns: repeat(1, 1fr);
}
.top_education_detail_item{
  display: flex;
  justify-content: center;
  align-items: center;
}
.top_education_detail_item_text{
  width: 144px;
  margin-right: 12px;
}
.top_education_detail_item_text span{
  display: block;
  width: 144px;
  margin-bottom: 0.5rem;
  padding: 6px 0;
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
  text-align: center;
  box-sizing: border-box;
  border: 1px solid #595858;
}
.top_education_detail_item_text p{
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
.top_education_detail_item img{
  width: 194px;
  aspect-ratio: 194/157;
  object-fit: cover;
  border-radius: 8px;
  height: auto;
}
.top_education_detail.wide .top_education_detail_item_text p{
  text-align: left;
}
.top_education_detail.wide .top_education_detail_item_text .icon_text{
  display: flex;
  align-items: center;
  font-size: 12px;
  line-height: 1.6;
  margin-top: 10px;
}
.top_education_detail.wide .top_education_detail_item_text .icon_text::before{
  content: "";
  translate: 0 -2px;
  width: 24px;
  aspect-ratio: 1/1;
  background: url(../img/education-icon.png) center/contain no-repeat;
}
.top_education_detail.wide .top_education_detail_item_text .small_text{
  font-size: 12px;
  line-height: 1.6;
  margin-top: 6px;
}
.top_education_detail.wide .top_education_detail_item img{
  aspect-ratio: 226/155;
}

@media screen and (min-width: 768px){
  .top_education_detail.wide .top_education_detail_item{
    gap: 24px;
  }
  .top_education_detail.wide .top_education_detail_item_text{
    width: calc(50% - 12px);
    margin-right: auto;
  }
  .top_education_detail.wide .top_education_detail_item img{
    width: 226px;
    margin-right: 64px;
  }
}

@media screen and (max-width: 767px){
  .top_education_text{
    font-size: 14px;
    text-align: left;
    margin-inline: 0;
  }
  .top_education_detail{
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .top_education_detail_item_text span{
    font-size: 13px;
  }
  .top_education_detail_item_text p{
    font-size: 12px;
  }
  .top_education_detail_item img{
    width: 180px;
    /* aspect-ratio: 1.78; */
  }
  .top_education_detail.wide .top_education_detail_item_text p{
    font-size: 10px;
  }
  .top_education_detail.wide .top_education_detail_item img{
    /* aspect-ratio: 1.4; */
  }
}


.top_example{
  display: flex;
  padding: 12px;
  background-color: #F0F0F0;
  border-radius: 8px;
}
.top_example.bg-white{
  background-color: #FFF;
}
.top_example_content{
  width: calc(100% - 156px);
  margin-right: 12px;
}
.top_example_content h4{
  margin-bottom: 0.5rem;
  font-size: 20px;
  font-weight: 700;
}
.top_example_content p{
  font-size: 14px;
  line-height: 1.6;
}
.top_example_content_link{
  text-align: right;
}
.top_example_content_link a{
  font-size: 14px;
  font-weight: 700;
}
.top_example_content_link a:hover{
  text-decoration: underline;
}
.top_example img{
  width: 144px;
  height: 144px;
  object-fit: cover;
  border-radius: 8px;
}

@media screen and (max-width: 767px){
  .top_example{
    align-items: stretch;
    padding: 8px;
  }
  .top_example_content{
    width: calc(100% - 104px);
    margin-right: 8px;
  }
  .top_example_content h4{
    margin-bottom: 0.25rem;
    font-size: 14px;
  }
  .top_example_content p{
    font-size: 10px;
  }
  .top_example_content_link a{
    font-size: 12px;
  }
  .top_example img{
    width: 96px;
    height: auto;
  }
}

.top_environment{
  padding: 3.5rem 0;
  background-color: var(--bg-gray);
}
.top_environment_title{
  position: relative;
  margin-bottom: 0.75rem;
  padding-left: 2.25rem;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
}
.top_environment_title::before{
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background-image: url("../img/top_environment_title_bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.top_environment_gallery_wrap{
  width: 100%;
  margin-bottom: 2rem;
  overflow-x: scroll;
}
.top_environment_gallery{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.top_environment_gallery img{
  aspect-ratio: 1.78;
  object-fit: cover;
  border-radius: 8px;
  height: auto;
}
.top_environment_text01{
  position: relative;
  margin-bottom: 1rem;
  font-size: 20px;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 1px;
  text-align: center;
}
.top_environment_text01::before{
  position: absolute;
  content: "";
  left: 0;
  right: 380px;
  top: 0;
  width: 94px;
  height: 65.5px;
  margin: auto;
  background-image: url("../img/top_environment_bg01.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.top_environment_text01::after{
  position: absolute;
  content: "";
  left: 390px;
  right: 0;
  bottom: 0;
  width: 50px;
  height: 32px;
  margin: auto;
  background-image: url("../img/top_environment_bg02.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.top_environment_text02{
  position: relative;
  margin-bottom: 2rem;
  font-size: 20px;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 1px;
  text-align: center;
}
.top_environment_text02::before{
  position: absolute;
  content: "";
  left: 0;
  right: 270px;
  top: -2px;
  width: 32px;
  height: 24px;
  margin: auto;
  background-image: url("../img/top_environment_bg03.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.top_environment_text02::after{
  position: absolute;
  content: "";
  left: 300px;
  right: 0;
  bottom: 0;
  width: 32px;
  height: 24px;
  margin: auto;
  background-image: url("../img/top_environment_bg04.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.top_environment_foot_list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-inline: -62px;
}

.top_environment_foot_item {
  display: flex;
  gap: 51px;
  border-radius: 10px;
  background-color: #FFF;
  padding: 24px;
}

.top_environment_foot_item_body {
}

.top_environment_foot_item_title {
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
}

.top_environment_foot_item_text {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.8;
  margin-top: 24px;
}

.top_environment_foot_item_text .bold_text {
  font-weight: 700;
}

.top_environment_foot_item_image_wrapper {
  flex-shrink: 0;
}

.top_environment_foot_item_image {
  width: 155px;
}

.top_environment_foot_item_image img {
  height: auto;
  border-radius: 5px;
}

.top_environment_foot_item_image_text {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.8;
  margin-top: 10px;
}

@media screen and (max-width: 960px){
  .top_environment_foot_list {
    margin-inline: 0;
  }
}

@media screen and (max-width: 767px){
  .top_environment{
    padding: 2.5rem 0;
  }
  .top_environment_gallery{
    width: 880px;
  }
  .top_environment_text01{
    font-size: 16px;
  }
  .top_environment_text01::before{
    position: absolute;
    content: "";
    right: 320px;
    top: -8px;
    width: 64px;
    height: 44px;
  }
  .top_environment_text01::after{
    left: 300px;
    bottom: -12px;
  }

  .top_environment_foot_item{
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
    padding: 20px;
  }

  .top_environment_foot_item_title{
    font-size: 16px;
  }
}

.top_faq{
  padding: 3.5rem 0;
}
.top_faq_detail{
  width: 640px;
  margin: auto;
}
.top_faq_detail_item{
  padding: 1rem 0.5rem;
  border-bottom: 2px solid #EEE;
}
.top_faq_detail_item_question{
  position: relative;
  font-size: 20px;
  font-weight: 600;
}
.top_faq_detail_item_question:hover{
  cursor: pointer;
}
.top_faq_detail_item_question::before{
  position: absolute;
  content: "";
  right: 8px;
  top: 12px;
  bottom: 0;
  width: 9px;
  height: 9px;
  margin: auto;
  border-right: 1px solid var(--main-color);
  border-top: 1px solid var(--main-color);
  transform: rotate(-45deg);
  transition: all .5s;
}
.top_faq_detail_item_question.active::before{
  top: 10px;
  transform: rotate(-225deg);
}
.top_faq_detail_item_answer{
  display: none;
  padding-right: 1rem;
  padding-top: 0.25rem;
  font-weight: 400;
}

@media screen and (max-width: 767px){
  .top_faq{
    padding: 2.5rem 0;
  }
  .top_faq_detail{
    width: 100%;
  }
  .top_faq_detail_item{
    padding: 1rem 1.8rem 1rem 0.5rem;
  }
  .top_faq_detail_item_question{
    font-size: 16px;
  }
  .top_faq_detail_item_question::before{
    top: 8px;
    right: -18px;
  }
  .top_faq_detail_item_question.active::before{
    top: 2px;
  }
  .top_faq_detail_item_answer{
    font-size: 13px;
  }
}

.top_about{
  padding: 3.5rem 0;
  background-color: var(--bg-gray);
}
.top_about_detail{
  position: relative;
  width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.8;
  text-align: center;
}
.top_about_detail::before{
  position: absolute;
  content: "";
  left: -4.5rem;
  top: 0;
  bottom: 0;
  width: 44px;
  height: 44px;
  margin: auto;
  background-image: url("../img/top_about_detail_bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.top_about_detail::after{
  position: absolute;
  content: "";
  right: -4.5rem;
  top: 0;
  bottom: 0;
  width: 44px;
  height: 44px;
  margin: auto;
  background-image: url("../img/top_about_detail_bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.top_about_link{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 248px;
  height: 50px;
  margin: auto;
  font-size: 18px;
  color: #FFF;
  font-weight: 600;
  text-decoration: none;
  background-color: var(--main-color);
  border-radius: 4px;
}
.top_about_link:hover{
  opacity: 0.7;
}

@media screen and (max-width: 767px){
  .top_about{
    padding: 2.5rem 0;
    background-color: var(--bg-gray);
  }
  .top_about_detail{
    width: 100%;
    margin: 0 auto 1.25rem;
  }
  .top_about_detail::before{
    left: 0.5rem;
    top: 0.25rem;
    bottom: auto;
    width: 32px;
    height: 32px;
    margin: 0;
  }
  .top_about_detail::after{
    right: 0.5rem;
    top: 0.25rem;
    bottom: auto;
    width: 32px;
    height: 32px;
    margin: 0;
  }
}

.top_message{
  padding: 3.5rem 0;
}
.top_message_lead{
  display: flex;
  align-items: center;
  width: 480px;
  margin: 0 auto 2rem;
}
.top_message_lead_image{
  width: 160px;
  height: 160px;
  border-radius: 8px;
}
.top_message_lead_name{
  width: 278px;
  margin-left: auto;
  font-size: 20px;
  font-weight: 500;
}
.top_message_lead_name strong{
  font-size: 28px;
  font-weight: 700;
}
.top_message_content{
  width: 640px;
  margin: auto;
}
.top_message_content p{
  /* margin-bottom: 0.5rem; */
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
}

@media screen and (max-width: 767px){
  .top_message{
    padding: 2.5rem 0;
  }
  .top_message_lead{
    width: 100%;
    max-width: 360px;
    margin: 0 auto 1rem;
  }
  .top_message_lead_image{
    width: 148px;
    height: 148px;
  }
  .top_message_lead_name{
    width: calc(100% - 160px);
    font-size: 12px;
  }
  .top_message_lead_name strong{
    font-size: 20px;
  }
  .top_message_content{
    width: 100%;
  }
  .top_message_content p{
    font-size: 12px;
  }
}

.top_guideline{
  padding: 3.5rem 0;
  background-color: var(--bg-gray);
}
.top_guideline_detail{
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.top_guideline_detail dt{
  display: flex;
  align-items: center;
  width: 96px;
  font-weight: 600;
  border-bottom: 1px solid #DCDDDE;
}
.top_guideline_detail dd{
  width: calc(100% - 96px);
  padding: 1.5rem 0;
  line-height: 1.8;
  font-weight: 600;
  border-bottom: 1px solid #DCDDDE;
}
.top_guideline_detail dd ul{
  padding-left: 1rem;
}
.top_guideline_detail dd table th{
  width: 64px;
  vertical-align: top;
  text-align: left;
}
.top_guideline_note{
  font-size: 15px;
  line-height: 1.8;
}

@media screen and (max-width: 767px){
  .top_guideline{
    padding: 2.5rem 0;
  }
  .top_guideline_detail{
    margin-bottom: 0.75rem;
  }
  .top_guideline_detail dt{
    width: 64px;
    font-size: 12px;
  }
  .top_guideline_detail dd{
    width: calc(100% - 64px);
    padding: 1rem 0;
    font-size: 12px;
  }
  .top_guideline_detail dd table th{
    width: 48px;
  }
  .top_guideline_note{
    font-size: 10px;
  }
}

.top_contact{
  padding: 3.5rem 0;
}
.top_contact_form_group{
  display: flex;
  flex-wrap: wrap;
  gap: 0 24px;
}
.top_contact_form_group_item{
  width: 100%;
  margin-bottom: 2rem;
}
.top_contact_form_group_item label{
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.top_contact_form_group_item input[type='text'],
.top_contact_form_group_item input[type='tel'],
.top_contact_form_group_item input[type='email']{
  width: 100%;
  height: 48px;
  padding: 0 12px;
  color: var(--main-color);
  background-color: #F2F2F2;
  border: none;
}
.top_contact_form_group_item textarea{
  width: 100%;
  height: 88px;
  padding: 12px;
  color: var(--main-color);
  background-color: #F2F2F2;
  border: none;
  resize: none;
}
.top_contact_form_group_item_select{
  position: relative;
  width: 100%;
  height: 48px;
}
.top_contact_form_group_item_select .wpcf7-form-control-wrap{
  display: block;
  height: 48px;
}
.top_contact_form_group_item_select select{
  width: 100%;
  height: 100%;
  padding: 0 12px;
  color: var(--main-color);
  background-color: #F2F2F2;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.top_contact_form_group_item_select::before{
  position: absolute;
  content: "";
  z-index: 1;
  right: 16px;
  top: 16px;
  width: 12px;
  height: 12px;
  border-left: 2px solid var(--main-color);
  border-bottom: 2px solid var(--main-color);
  transform: rotate(-45deg);
}
.top_contact_form_group_item_checkbox p{
  display: flex;
  flex-wrap: wrap;
}
.top_contact_form_group_item_checkbox .wpcf7-form-control{
  display: flex;
  flex-wrap: wrap;
}
.top_contact_form_group_item_checkbox .wpcf7-list-item{
  display: flex;
  align-items: center;
  margin-left: 0;
}
.top_contact_form_group_item_checkbox label{
  display: flex;
  align-items: center;
  margin-right: 16px;
  padding-top: 8px;
}
.top_contact_form_group_item_checkbox label input[type='checkbox']{
  position: relative;
  width: 24px;
  height: 24px;
  margin-right: 0.5rem;
  background-color: #F2F2F2;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.top_contact_form_group_item_checkbox label input[type='checkbox']:checked::before{
  position: absolute;
  content: "";
  top: 7px;
  left: 7px;
  width: 12px;
  height: 6px;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(-45deg);
}
.top_contact_form_submit{
  display: block;
  width: 320px;
  height: 56px;
  margin: auto;
  font-size: 20px;
  color: #FFF;
  font-weight: 600;
  background-color: var(--main-color);
  border: none;
}

.top_contact_head {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 56px;
}

.top_contact_head img {
  height: auto;
}

.top_contact_head_content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.top_contact_head_title {
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
}

.top_contact_head_text {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.8;
}

.top_contact_head_qr {
  width: 134px;
}

.top_contact_head_button {
  width: 144px;
  height: 39px;
  display: grid;
  place-items: center;
  background-color: #C7C2B6;
  text-decoration: none;
  color: #FFF;
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  transition: opacity 0.3s;
}

.top_contact_head_image {
  flex-shrink: 0;
  width: 270px;
}

@media (any-hover: hover) {
  .top_contact_head_button:hover{
    opacity: 0.7;
  }
}

@media screen and (min-width: 768px){
  .top_contact_form_group.pc-two .top_contact_form_group_item{
    width: calc(50% - 12px);
  }
  .top_contact_form_group.address .top_contact_form_group_item{
    width: calc(50% - 12px);
  }
}

@media screen and (max-width: 767px){
  .top_contact{
    padding: 2.5rem 0;
  }
  .top_contact_form_group.address .top_contact_form_group_item:nth-child(1){
    width: calc(50% - 12px);
    margin-right: calc(50% - 12px);
  }
  .top_contact_form_group.address .top_contact_form_group_item:nth-child(2){
    width: calc(50% - 12px);
  }
  .top_contact_form_group.address .top_contact_form_group_item:nth-child(3){
    width: calc(50% - 12px);
  }
  .top_contact_form_group_item{
    margin-bottom: 1.25rem;
  }
  .top_contact_form_group_item label{
    font-size: 14px;
  }
  .top_contact_form_group_item input[type='text'],
  .top_contact_form_group_item input[type='tel'],
  .top_contact_form_group_item input[type='email']{
    font-size: 14px;
  }
  .top_contact_form_group_item textarea{
    font-size: 14px;
  }
  .top_contact_form_group_item_checkbox label{
    font-size: 14px;
  }
  .top_contact_form_submit{
    width: 100%;
    height: 36px;
    font-size: 16px;
  }

  .top_contact_head{
    flex-direction: column;
    margin-bottom: 40px;
  }

  .top_contact_head_content{
    align-items: center;
  }

  .top_contact_head_title{
    font-size: 16px;
  }

  .top_contact_head_text{
    text-align: center;
  }
}

.modal{
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.7);
}
.modal_content{
  position: relative;
  z-index: 1002;
  width: calc(100% - 2rem);
  max-width: 720px;
  height: calc(100% - 2rem);
  max-height: 560px;
  display: none;
  padding: 1.5rem;
  background-color: #FFF;
  overflow: hidden;
}
.modal_content.active{
  display: block;
}
.modal_content_close{
  position: absolute;
  right: 16px;
  top: 20px;
  width: 32px;
  height: 32px;
}
.modal_content_close::before{
  position: absolute;
  content: "";
  right: 16px;
  top: 0;
  width: 1px;
  height: 33px;
  background-color: var(--main-color);
  transform: rotate(-45deg);
}
.modal_content_close::after{
  position: absolute;
  content: "";
  right: 16px;
  top: 0;
  width: 1px;
  height: 33px;
  background-color: var(--main-color);
  transform: rotate(45deg);
}
.modal_content_title{
  margin-bottom: 1rem;
  font-size: 20px;
  font-weight: 700;
}
.modal_content_detail{
  height: calc(100% - 56px);
  overflow-y: scroll;
}
.modal_content_text{
  margin-bottom: 0.75rem;
  font-size: 14px;
  line-height: 1.6;
}
.modal_content_lead{
  display: flex;
  margin-bottom: 0.75rem;
}
.modal_content_lead_content{
  width: calc(100% - 160px);
  padding-right: 1rem;
}
.modal_content_lead_image{
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
}

@media screen and (max-width: 767px){
  .modal_content{
    padding: 0.75rem;
  }
  .modal_content_close{
    position: absolute;
    right: 8px;
    top: 8px;
    width: 28px;
    height: 28px;
  }
  .modal_content_close::before{
    right: 14px;
    top: 0;
    height: 28px;
  }
  .modal_content_close::after{
    right: 14px;
    top: 0;
    height: 28px;
  }
  .modal_content_title{
    margin-bottom: 0.5rem;
    font-size: 16px;
  }
  .modal_content_detail{
    height: calc(100% - 40px);
    overflow-y: scroll;
  }
  .modal_content_text{
    margin-bottom: 0.5rem;
    font-size: 10px;
  }
  .modal_content_lead{
    display: flex;
    margin-bottom: 0.75rem;
  }
  .modal_content_lead_content{
    width: calc(100% - 88px);
    padding-right: 0.75rem;
  }
  .modal_content_lead_image{
    width: 88px;
    height: 88px;
  }  
}