@charset "UTF-8";
br.pc {
  display: inline;
}
@media screen and (max-width: 769px) {
  br.pc {
    display: none;
  }
}

br.sp {
  display: none;
}
@media screen and (max-width: 769px) {
  br.sp {
    display: inline;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1, h2, h3, h4, p {
  font-feature-settings: "palt";
}

html, body, header nav {
  height: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #000;
}

img {
  width: 100%;
}

h1, h2, h3, h4 {
  font-weight: bold;
}

h2, h3 {
  letter-spacing: 0.1vw;
}

header {
  height: 9.5rem;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 40;
  background-size: cover;
  padding-top: 1.25vw;
  pointer-events: none;
}
header .inner {
  padding: 0 7.875vw;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header h1 {
  pointer-events: auto;
}
header h1 .header_logo {
  padding-left: 1rem;
  width: 16.5rem;
}

.drawer_open {
  font-size: 1.4rem;
  color: #fff;
  font-weight: bold;
  display: none;
  padding: 0 4rem;
  transform: translateX(0.8rem);
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100; /* 重なり順を一番上にする */
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  content: "";
  display: block;
  height: 0.1rem;
  width: 1.2rem;
  border-radius: 3px;
  background: #fff;
  transition: 0.5s;
  position: absolute;
  margin-right: 6rem;
}

/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  bottom: 0.3rem;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  top: 0.3rem;
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: auto;
}

/* メニューのデザイン*/
.nav_content {
  z-index: 99;
  transition: 0.5s;
  display: flex;
  width: 100%;
  position: relative;
  margin: 0 auto;
}
.nav_content .nav_list {
  margin-right: 0.5vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav_content .nav_list li {
  cursor: pointer;
  display: block;
}
.nav_content .nav_list li a {
  display: block;
  padding: 0.5rem 0;
  font-size: 1vw;
  font-weight: bold;
  white-space: nowrap;
}
.nav_content .nav_list li a span {
  display: none;
}
.nav_content .nav_list li#has_sub {
  position: relative;
  display: flex;
  font-weight: bold;
  font-size: 1vw;
  padding-left: 3.125vw;
}
.nav_content .nav_list li#has_sub > span {
  display: none;
}
.nav_content .nav_list li#has_sub #popup {
  position: absolute;
  left: 40%;
  top: 4.5rem;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.1s ease;
  border: solid 0.5px rgba(0, 0, 0, 0.5);
}
.nav_content .nav_list li#has_sub #popup ul li {
  margin-left: 0;
  background-color: #fff;
  transition: 0.5s;
  width: 100%;
}
.nav_content .nav_list li#has_sub #popup ul li a {
  padding-left: 0;
  padding: 0.8rem;
  width: 100%;
  font-size: 0.8125vw;
}
.nav_content .nav_list li#has_sub #popup ul li a:hover {
  opacity: 1;
}
.nav_content .nav_list li#has_sub #popup ul li:hover {
  background-color: #ededed;
}
.nav_content .nav_list li#has_sub #popup.show {
  opacity: 1;
  visibility: visible;
}
.nav_content .nav_list li a.sp {
  display: none;
}
.nav_content .nav_list li:first-child a {
  padding-left: 1rem;
}
.nav_content .nav_list li:nth-child(n+2):not(:last-child) a {
  padding-left: 3.125vw;
}
.nav_content .nav_list li:last-child {
  margin-left: 3.125vw;
}
.nav_content .nav_list li:last-child a {
  padding-right: 1rem;
}

section:not(:first-child) {
  border-top: solid 0.5px rgba(0, 0, 0, 0.5);
}

#main #main_visual {
  display: flex;
  flex-direction: column;
  padding-bottom: 3.125%;
  height: 88vh;
  position: relative;
  background-image: url(../img/main_visual.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#main #main_visual h1 {
  font-size: 2.2vw;
  line-height: 4.4vw;
  letter-spacing: 0.2vw;
  font-weight: bold;
  text-align: center;
  position: absolute;
  top: 11.125vw;
  left: 7.5vw;
  text-align: left;
  transform: translateY(-1000px);
  transition: 0.5s;
}
#main #main_visual h1 span {
  display: block;
  font-size: 0.8vw;
  transform: translateY(-1vw);
}
#main #main_visual h1.show {
  transform: translateY(0);
}
#main #about {
  display: flex;
  position: relative;
}
#main #about .block_content {
  display: flex;
}
#main #about .block_content .detail_wrap {
  padding: 5.625% 0 6.25% 6.25%;
  width: 50%;
}
#main #about .block_content .detail_wrap h2 {
  font-size: 1.5vw;
  font-weight: bold;
}
#main #about .block_content .detail_wrap h3 {
  margin-top: 1.8vw;
  font-size: 2.785vw;
  letter-spacing: 0.01vw;
  line-height: 4.875vw;
}
#main #about .block_content .detail_wrap h3 span {
  display: block;
}
#main #about .block_content .detail_wrap p {
  margin-top: 2.8246vw;
  font-size: 1vw;
  line-height: 2.25vw;
}
#main #about .block_content .detail_wrap .more {
  margin-top: 3.875vw;
}
#main #about .block_content .img_wrap {
  width: 50%;
}
#main #about .block_content .img_wrap div {
  background-image: url(../img/main_about.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #8a8b84;
  padding-top: 111.995%;
  border-left: solid 0.5px rgba(0, 0, 0, 0.5);
}
#main #news {
  display: flex;
}
#main #news .news_inner {
  padding-top: 3.75vw;
  padding-bottom: 3.75vw;
}
#main #news .news_area {
  margin: 0 auto;
  padding: 0 6.667%;
}
@media screen and (max-width: 769px) {
  #main #news .news_area {
    padding: 0 8%;
  }
}
#main #news .news_area h2 {
  font-size: 1.5vw;
}
#main #news .news_area .select_wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-top: 3.75vw;
  padding-bottom: 3.75vw;
}
#main #news .news_area .select_wrap p {
  margin-right: 2.8125vw;
  font-size: 1.2rem;
  vertical-align: bottom;
}
#main #news .news_area .select_wrap .selectbox {
  border: solid 0.5px rgba(0, 0, 0, 0.5);
  color: #fff;
  background-color: #000;
  position: relative;
  display: inline-flex;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 13rem;
}
#main #news .news_area .select_wrap .selectbox select {
  background-color: #000;
  padding: 0.2rem 1rem;
  color: #fff;
  width: 100%;
}
#main #news .news_area .select_wrap .selectbox option {
  display: inline-block;
  background-color: #fff;
  color: #000;
}
#main #news .news_area .select_wrap .selectbox::after {
  position: absolute;
  content: "";
  pointer-events: none;
  position: absolute;
  top: 50%;
  right: 1.4em;
  transform: translate(50%, -50%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-bottom: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
}
#main #news .news_area ul {
  margin-top: 3.75vw;
  display: flex;
}
#main #news .news_area ul li {
  width: 28.846%;
  border-radius: 50px 50px 50px 0;
  position: relative;
}
#main #news .news_area ul li a:hover {
  opacity: 1;
}
#main #news .news_area ul li:hover .img_wrap img {
  transform: scale(1.1);
}
#main #news .news_area ul li:nth-child(n+2) {
  margin-left: 6.73%;
}
#main #news .news_area ul li .img_wrap {
  position: relative;
  overflow: hidden;
  border-radius: 1.562vw 1.562vw 1.562vw 0;
}
#main #news .news_area ul li .img_wrap img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: transform 0.4s ease;
}
#main #news .news_area ul li .img_wrap p {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #000;
  color: #fff;
  padding: 0.2rem 1rem;
  font-size: 1vw;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}
#main #news .news_area ul li .detail_wrap {
  margin-top: 8%;
  font-size: 1.2vw;
}
#main #news .news_area ul li .detail_wrap .date {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-weight: bold;
  display: flex;
  align-items: center;
}
#main #news .news_area ul li .detail_wrap .date.new {
  position: relative;
}
#main #news .news_area ul li .detail_wrap .date.new::after {
  margin-left: 1vw;
  font-size: 0.75vw;
  content: "NEW";
  display: inline-block;
  padding: 0 1rem;
  text-align: center;
  border-radius: 1.875vw 1.875vw 1.875vw 1.875vw;
  background-color: #e14d4d;
  color: #fff;
}
#main #news .news_area ul li .detail_wrap h3 {
  margin-top: 1vw;
}
#main #news .news_area .button_area {
  margin-top: 3.75vw;
}
#main #works {
  display: flex;
}
#main #works .border_wrap {
  border-bottom: solid 0.5px rgba(0, 0, 0, 0.5);
}
#main #works .content_wrap {
  margin: 0 auto;
  padding: 0 6.667%;
  display: flex;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 769px) {
  #main #works .content_wrap {
    padding: 0 8%;
  }
}
#main #works .content_wrap::after {
  content: "";
  display: inline-block;
  text-align: center;
  position: absolute;
  top: 0;
  right: 3.75%;
  width: 3.6vw;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
#main #works .content_wrap.show::after {
  opacity: 1;
  transform: translateX(5px);
}
#main #works .content_wrap.hitoiro::after {
  background-image: url(../img/moji_hitoiro.svg);
}
#main #works .content_wrap.naramile::after {
  background-image: url(../img/moji_naramile.svg);
}
#main #works .content_wrap.kotonoha::after {
  background-image: url(../img/moji_kotonoha.svg);
}
#main #works .content_wrap:not(:last-child) {
  border-bottom: solid 0.5px rgba(0, 0, 0, 0.5);
}
#main #works .content_wrap .img_wrap {
  width: 44.64%;
  padding: 7.857% 8.214% 6.875% 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#main #works .content_wrap .detail_wrap {
  width: 55.36%;
  padding: 7.14% 0;
}
#main #works .content_wrap .detail_wrap h2 {
  font-size: 1.5vw;
  position: relative;
  display: flex;
}
#main #works .content_wrap .detail_wrap h2::before {
  content: "";
  display: block;
  width: 1.5vw;
  height: 1.5vw;
  border-radius: 0.1875vw 0.1875vw 0.1875vw 0;
  transform: translateY(30%);
  margin-right: 1vw;
}
#main #works .content_wrap .detail_wrap h2.ico_color1::before {
  background-color: #e14d4d;
}
#main #works .content_wrap .detail_wrap h2.ico_color2::before {
  background-color: #ffa545;
}
#main #works .content_wrap .detail_wrap h2.ico_color3::before {
  background-color: #e9cc3d;
}
#main #works .content_wrap .detail_wrap h3 {
  margin-top: 1.25vw;
  font-size: 3vw;
  line-height: 4.9375vw;
}
#main #works .content_wrap .detail_wrap h3 span {
  display: block;
}
#main #works .content_wrap .detail_wrap p {
  margin: 3.75vw 1.2vw 0 0;
  font-size: clamp(1.2rem, 0.9375vw, 1.8rem);
  line-height: 2.25vw;
}
#main #works .content_wrap .detail_wrap button {
  margin-top: 3.75vw;
}
#main #works .content_wrap.turn .img_wrap {
  order: 2;
}
#main #works .content_wrap.turn .detail_wrap {
  order: 1;
}
#main #side_job {
  display: flex;
}
#main #side_job .button_area {
  margin-top: 2.625vw;
}
#main #side_job .block_content {
  padding-bottom: 4.0625vw;
}
#main #side_job .inner {
  margin: 0 auto;
  padding: 0 6.667%;
}
@media screen and (max-width: 769px) {
  #main #side_job .inner {
    padding: 0 8%;
  }
}
#main #side_job .inner ul {
  display: flex;
  margin-top: 3.4375vw;
}
#main #side_job .inner ul li {
  width: 20.357%;
}
#main #side_job .inner ul li:nth-child(n+2) {
  margin-left: 6.19%;
}
#main #side_job .inner ul li img {
  border-radius: 1.5vw 1.5vw 1.5vw 0;
}
#main #side_job .inner ul li h2 {
  margin-top: 1.75vw;
  position: relative;
  font-size: 0.875vw;
  display: flex;
}
#main #side_job .inner ul li h2::before {
  content: "";
  display: block;
  width: 1vw;
  height: 1vw;
  transform: translateY(23%);
  margin-right: 0.3vw;
  border-radius: 0.1875vw 0.1875vw 0.1875vw 0;
}
#main #side_job .inner ul li h2.ico_color4::before {
  background-color: #489a69;
}
#main #side_job .inner ul li h2.ico_color5::before {
  background-color: #3999e9;
}
#main #side_job .inner ul li h2.ico_color6::before {
  background-color: #986bcd;
}
#main #side_job .inner ul li h2.ico_color7::before {
  background-color: #344688;
}
#main #side_job .inner ul li h3 {
  margin-top: 0.75vw;
  font-size: 1.5vw;
}
#main #side_job .inner ul li p {
  margin-top: 0.625vw;
  font-size: clamp(1.4rem, 0.625vw, 1.5rem);
}
#main #faq {
  display: flex;
}
#main #faq .inner {
  margin: 0 auto;
  padding: 0 6.667%;
  padding-bottom: 4.5vw;
}
@media screen and (max-width: 769px) {
  #main #faq .inner {
    padding: 0 8%;
  }
}
#main #faq .inner h2 {
  margin-top: 2.8125vw;
  text-align: center;
  font-size: 1.5vw;
}
#main #faq .inner ul {
  margin-top: 3.75vw;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  justify-content: flex-start;
}
#main #faq .inner ul li {
  width: 45.714%;
}
#main #faq .inner ul li:nth-child(2n+2) {
  margin-left: 8.5714%;
}
#main #faq .inner ul li:nth-child(n+3) {
  margin-top: 3.214%;
}
#main #faq .inner ul li a {
  border-radius: 1.25vw 1.25vw 1.25vw 0;
  display: block;
  border: solid 0.05rem rgba(0, 0, 0, 0.5);
  width: 100%;
  padding: 3.125vw 2.625vw;
  font-size: 1.375vw;
  font-weight: bold;
  position: relative;
}
#main #faq .inner ul li a::after {
  content: "";
  display: block;
  background-image: url(../img/arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  width: 2.5vw;
  height: 2rem;
  position: absolute;
  right: 2.2vw;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.5s;
}
#main #faq .inner ul li a:hover {
  opacity: 1;
}
#main #faq .inner ul li a:hover::after {
  right: 1.4vw;
}
#main #contact {
  display: flex;
}
#main #contact .bg {
  background-color: #ececec;
  background-image: url(../img/main_contact.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border: none;
}
#main #contact .bg .inner {
  margin: 0 auto;
  padding: 0 6.667%;
}
@media screen and (max-width: 769px) {
  #main #contact .bg .inner {
    padding: 0 8%;
  }
}
#main #contact .bg .inner .content_wrap {
  display: flex;
  width: 100%;
  padding-bottom: 6.25vw;
}
#main #contact .bg .inner .content_wrap .detail_wrap {
  padding: 5.625vw 0 5vw 0;
  width: 50%;
  color: #fff;
}
#main #contact .bg .inner .content_wrap .detail_wrap h2 {
  font-size: 1.5vw;
}
#main #contact .bg .inner .content_wrap .detail_wrap p {
  margin-top: 5.275vw;
  font-size: 2.25vw;
  font-weight: bold;
  line-height: 4.5vw;
  letter-spacing: 0.2vw;
}
#main #contact .bg .inner .content_wrap .button_area {
  justify-content: start;
}
#main .block_label {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  writing-mode: vertical-rl;
  width: 10rem;
  display: flex;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#main .block_label p {
  padding: 10rem 0;
  position: sticky;
  top: 0;
}
#main .block_content {
  width: calc(100% - 10rem);
  border-left: solid 0.5px rgba(0, 0, 0, 0.5);
}
#main .line_svg {
  border-bottom: solid 0.5px rgba(0, 0, 0, 0.5);
  border-top: solid 0.5px rgba(0, 0, 0, 0.5);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: none;
}
#main .line_svg .swiper-wrapper {
  height: 100%;
  padding: 1.4vw 0;
}
#main .bg_gray_area {
  background-color: #ececec;
  padding: 6.25vw 0;
  border-bottom: solid 0.5px rgba(0, 0, 0, 0.5);
}
#main .bg_gray_area .inner {
  margin: 0 auto;
  padding: 0 6.667%;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 769px) {
  #main .bg_gray_area .inner {
    padding: 0 8%;
  }
}
#main .bg_gray_area .inner div:first-child {
  width: 50%;
}
#main .bg_gray_area .inner div:first-child h2 {
  font-size: 1.5vw;
}
#main .bg_gray_area .inner div:first-child h3 {
  font-size: 3.75vw;
  white-space: nowrap;
}
#main .bg_gray_area .inner div:last-child {
  width: 50%;
  display: flex;
}
#main .bg_gray_area .inner div:last-child p {
  padding: 4% 0 0 15.75%;
  font-size: 1vw;
  line-height: 2.25vw;
}

.button_area {
  display: flex;
  justify-content: center;
}

button.more {
  color: #000;
  background-color: #fff;
  border: solid 0.5px rgba(0, 0, 0, 0.5);
  width: 19.28vw;
  height: 4.285vw;
  border-radius: 3.125vw 3.125vw 3.125vw 3.125vw;
  transition: 0.5s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: inline-block;
  font-size: clamp(1.2rem, 1.2vw, 1.8rem);
  font-weight: bold;
  pointer-events: none;
}
button.more:hover {
  opacity: 1;
  transform: scale(1.05, 1.05);
}
button.more a {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}
button.more a:hover {
  opacity: 1;
}
button.more.allow {
  pointer-events: auto;
  color: #fff;
  background-color: #000;
  border: none;
}

#to_page_top {
  position: fixed;
  right: 4.375%;
  bottom: 4.375%;
  width: 3.6875%;
  height: auto;
  z-index: 30;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  cursor: pointer;
}

#to_page_top.show {
  pointer-events: auto;
  opacity: 1;
}

footer {
  border-top: solid 0.5px rgba(0, 0, 0, 0.5);
}
footer .footer_inner {
  margin: 0 auto;
  padding: 3.75vw 12.5vw 4.0625vw;
}
footer .footer_inner .footer_wrap {
  display: flex;
}
footer .footer_inner .footer_wrap .footer_info {
  width: 50%;
}
footer .footer_inner .footer_wrap .footer_info img {
  display: block;
  width: 40%;
}
footer .footer_inner .footer_wrap .footer_info address, footer .footer_inner .footer_wrap .footer_info p {
  font-size: clamp(12px, 1.125vw, 14px);
}
footer .footer_inner .footer_wrap .footer_info .ad {
  margin-top: 1.92vw;
}
footer .footer_inner .footer_wrap .footer_info .tel {
  pointer-events: none;
  margin-top: 1.92vw;
  display: block;
}
footer .footer_inner .footer_wrap .footer_info .pp {
  display: none;
  font-size: clamp(11px, 1vw, 12px);
  margin-top: 1.444vw;
  font-weight: bold;
}
footer .footer_inner .footer_wrap .footer_list {
  display: none;
  width: 50%;
  padding: 2.4% 4% 0 4%;
}
footer .footer_inner .footer_wrap .footer_list ul {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.125vw;
  font-weight: bold;
}
footer .footer_inner .footer_wrap .footer_list ul li {
  white-space: nowrap;
}
footer .footer_inner .footer_wrap .footer_list ul li:not(.bold) {
  font-weight: 400;
}
footer .footer_inner .footer_wrap .footer_list ul li.li_pad {
  padding: 0.5rem;
}
footer .footer_inner .footer_wrap .footer_list ul li:nth-child(2n+1) {
  width: 41%;
}
footer .footer_inner .footer_wrap .footer_list ul li:nth-child(2n) {
  width: 59%;
}
footer .footer_inner .footer_wrap .footer_list ul li:nth-child(n+3) {
  margin-top: 5%;
}
footer .footer_inner .footer_wrap .footer_list ul li a {
  padding: 0.5rem;
  position: relative;
  display: inline-block;
}
footer .footer_inner .footer_wrap .footer_list ul li a:hover::after {
  transform: scaleX(1);
}
footer .footer_inner .footer_wrap .footer_list ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0.5px;
  width: 100%;
  background: #000;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
footer .footer_inner .copyright {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-weight: 400;
  font-size: 0.875vw;
  margin-top: 4.4%;
}

.swiper {
  width: 100%;
  position: relative;
}

.swiper-wrapper {
  transition-timing-function: linear !important;
}

.test_area {
  padding-top: 100rem;
}

@media screen and (max-width: 769px) {
  header {
    height: 4.5rem;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    padding-top: 1.5rem;
  }
  header .inner {
    padding: 0 3.8vw;
  }
  header h1 .header_logo {
    width: 12rem;
  }
  /* メニューのデザイン*/
  .nav_content {
    transform: translateY(-150%);
    height: calc(100vh - 4.5rem);
    width: 100%;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 4.5rem;
  }
  .nav_content .nav_list {
    margin-right: 0;
    flex-direction: column;
    width: 100%;
    margin-bottom: auto;
  }
  .nav_content .nav_list li {
    cursor: pointer;
    width: 100%;
  }
  .nav_content .nav_list li a {
    font-size: 2.3rem;
    vertical-align: middle;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1;
  }
  .nav_content .nav_list li a span {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 1.2rem;
    display: inline-block;
    vertical-align: middle;
    margin-left: auto;
  }
  .nav_content .nav_list li a.sp {
    font-size: 1.5rem;
  }
  .nav_content .nav_list li#has_sub {
    padding: 2.25rem;
    font-size: 2.3rem;
    border-top: solid 0.5px rgba(0, 0, 0, 0.5);
  }
  .nav_content .nav_list li#has_sub > span {
    display: inline;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 1.2rem;
    display: inline-block;
    vertical-align: middle;
    margin-left: auto;
  }
  .nav_content .nav_list li a#has_sub::after {
    display: none;
  }
  .nav_content .nav_list li a.sp {
    display: block;
  }
  .nav_content .nav_list li:first-child a {
    padding: 2.1rem 2.25rem;
    border-top: solid 0.5px rgba(0, 0, 0, 0.5);
  }
  .nav_content .nav_list li:nth-child(n+2):not(:last-child) a {
    padding: 2.1rem 2.25rem;
    border-top: solid 0.5px rgba(0, 0, 0, 0.5);
  }
  .nav_content .nav_list li:nth-child(n+2):not(:last-child) a.sp {
    border-top: none;
  }
  .nav_content .nav_list li:nth-child(n+2):not(:last-child) a.sp.pb {
    padding-bottom: 3.6rem;
  }
  .nav_content .nav_list li:last-child {
    margin-left: 0;
  }
  .nav_content .nav_list li:last-child a {
    padding: 2.1rem 2.25rem;
    border-top: solid 0.5px rgba(0, 0, 0, 0.5);
    border-bottom: solid 0.5px rgba(0, 0, 0, 0.5);
  }
  /* アイコンがクリックされたらメニューを表示 */
  #drawer_input:checked ~ .nav_content {
    opacity: 1;
    transform: translateY(0);
  }
  #drawer_input:checked ~ .nav_content .nav_list {
    -webkit-user-select: auto;
       -moz-user-select: auto;
            user-select: auto;
    pointer-events: auto;
  }
  header:has(#drawer_input:checked) {
    background-color: #fff;
    transition: 0.5s;
  }
  body:has(#drawer_input:checked) {
    overflow: hidden;
  }
  /* アイコンがクリックされたら真ん中の線を透明にする */
  #drawer_input:checked ~ .drawer_open span {
    background: rgba(255, 255, 255, 0);
  }
  /* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
  #drawer_input:checked ~ .drawer_open span::before {
    bottom: 0;
    transform: rotate(45deg);
  }
  #drawer_input:checked ~ .drawer_open span::after {
    top: 0;
    transform: rotate(-45deg);
  }
  input {
    display: block;
  }
  #main #main_visual {
    height: 0;
    padding-top: 166.67%;
    background-image: url(../img/main_visual_sp.jpg);
  }
  #main #main_visual h1 {
    font-size: 6.4vw;
    line-height: 11.2vw;
    letter-spacing: 0.2vw;
    top: 22.33%;
    left: 14.13%;
    text-align: center;
  }
  #main #main_visual h1 span {
    font-size: 3vw;
    transform: translateY(-1vw);
  }
  #main #about {
    display: flex;
    position: relative;
  }
  #main #about .block_content {
    flex-direction: column;
  }
  #main #about .block_content .detail_wrap {
    order: 1;
    padding: 8% 8% 0;
    width: 100%;
    order: 2;
  }
  /* ハンバーガーメニューのアイコン */
  /* 三本線の一番上の棒の位置調整 */
  /* 三本線の一番下の棒の位置調整 */
  /* ハンバーガーメニューのアイコン */
}
@media screen and (max-width: 769px) and (max-width: 769px) {
  #main #about .block_content .detail_wrap h2 {
    font-size: 3.2vw;
  }
}
@media screen and (max-width: 769px) {
  #main #about .block_content .detail_wrap h3 {
    margin-top: 5.3vw;
  }
}
@media screen and (max-width: 769px) and (max-width: 769px) {
  #main #about .block_content .detail_wrap h3 {
    letter-spacing: 0.01vw;
    font-size: 6.93vw;
    line-height: 12.13vw;
  }
}
@media screen and (max-width: 769px) {
  #main #about .block_content .detail_wrap p {
    margin-top: 4.2vw;
  }
}
@media screen and (max-width: 769px) and (max-width: 769px) {
  #main #about .block_content .detail_wrap p {
    font-size: 3.733vw;
    line-height: 6.4vw;
  }
}
@media screen and (max-width: 769px) {
  #main #about .block_content .detail_wrap .more {
    margin-top: 5.866vw;
  }
  #main #about .block_content .detail_wrap button.more {
    font-size: clamp(13px, 3.46vw, 1.6rem);
  }
  #main #about .block_content .img_wrap {
    width: 100%;
    order: 2;
    margin-top: 8%;
  }
  #main #about .block_content .img_wrap div {
    margin: 0 auto;
    width: 100%;
    background-image: url(../img/main_about_sp.jpg);
    padding-top: 111.98402%;
    border-left: none;
  }
  #main #news .news_inner {
    padding-top: 6.667vw;
    padding-bottom: 8vw;
  }
  #main #news .news_area h2 {
    font-size: 3.6vw;
  }
  #main #news .news_area .select_wrap {
    padding-top: 3.75vw;
    padding-bottom: 3.75vw;
  }
  #main #news .news_area .select_wrap p {
    margin-right: 2.8125vw;
    font-size: 1.2rem;
  }
  #main #news .news_area .select_wrap .selectbox {
    width: 12rem;
  }
  #main #news .news_area ul {
    margin-top: 3.75vw;
    flex-wrap: wrap;
  }
  #main #news .news_area ul li {
    width: 100%;
  }
  #main #news .news_area ul li:nth-child(n+2) {
    margin-left: 0;
    margin-top: 9.6%;
  }
  #main #news .news_area ul li .img_wrap {
    position: relative;
  }
  #main #news .news_area ul li .img_wrap img {
    width: 100%;
  }
  #main #news .news_area ul li .img_wrap p {
    font-size: 3vw;
  }
  #main #news .news_area ul li .detail_wrap {
    margin-top: 4%;
    font-size: 3.6vw;
  }
  #main #news .news_area ul li .detail_wrap .date {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-weight: bold;
  }
  #main #news .news_area ul li .detail_wrap .date.new {
    position: relative;
  }
  #main #news .news_area ul li .detail_wrap .date.new::after {
    margin-left: 3vw;
    border-radius: 5.4vw 5.4vw 5.4vw 5.4vw;
    font-size: 2.4vw;
    vertical-align: middle;
  }
  #main #news .news_area ul li .detail_wrap h3 {
    margin-top: 3vw;
  }
  #main #news .news_area .button_area {
    margin-top: 10.66vw;
  }
  #main #works {
    display: flex;
  }
  #main #works .content_wrap {
    flex-direction: column;
    padding: 6.933vw 8% 6.6667vw;
  }
  #main #works .content_wrap::after {
    width: 8.533vw;
    height: 100%;
    background-position: top;
    top: auto;
  }
  #main #works .content_wrap.show::after {
    transform: translateX(-50%);
  }
  #main #works .content_wrap.hitoiro::after {
    top: 12%;
  }
  #main #works .content_wrap.naramile::after {
    top: 5.25%;
    left: 8%;
    transform: translateX(-100px);
  }
  #main #works .content_wrap.naramile.show::after {
    transform: translateX(0%);
  }
  #main #works .content_wrap.kotonoha::after {
    top: 6%;
  }
  #main #works .content_wrap.naramile, #main #works .content_wrap .kotonoha {
    padding: 8vw 8% 12vw;
  }
  #main #works .content_wrap.naramile .img_wrap {
    width: 100%;
  }
  #main #works .content_wrap.naramile .img_wrap .right {
    display: flex;
    justify-content: end;
  }
  #main #works .content_wrap.naramile .img_wrap .right img {
    width: 80.952%;
  }
  #main #works .content_wrap .img_wrap {
    width: 80.952%;
    padding: 0;
  }
  #main #works .content_wrap .img_wrap img {
    width: 100%;
  }
  #main #works .content_wrap .detail_wrap {
    width: 100%;
    padding: 0;
  }
  #main #works .content_wrap .detail_wrap h2 {
    margin-top: 6vw;
  }
}
@media screen and (max-width: 769px) and (max-width: 769px) {
  #main #works .content_wrap .detail_wrap h2 {
    font-size: 3.4667vw;
  }
}
@media screen and (max-width: 769px) {
  #main #works .content_wrap .detail_wrap h2::before {
    width: 3.6vw;
    height: 3.6vw;
    margin-right: 1vw;
    border-radius: 0.6vw 0.6vw 0.6vw 0;
  }
  #main #works .content_wrap .detail_wrap h3 {
    margin-top: 3.5vw;
  }
}
@media screen and (max-width: 769px) and (max-width: 769px) {
  #main #works .content_wrap .detail_wrap h3 {
    letter-spacing: 0.01vw;
    font-size: 7.3vw;
    line-height: 12.09vw;
  }
}
@media screen and (max-width: 769px) {
  #main #works .content_wrap .detail_wrap h3 span {
    display: block;
  }
  #main #works .content_wrap .detail_wrap p {
    margin: 2vw 0 0 1.2vw;
  }
}
@media screen and (max-width: 769px) and (max-width: 769px) {
  #main #works .content_wrap .detail_wrap p {
    font-size: 3.733vw;
    line-height: 6.4vw;
  }
}
@media screen and (max-width: 769px) {
  #main #works .content_wrap .detail_wrap button {
    margin-top: 8vw;
  }
  #main #works .content_wrap.turn .img_wrap {
    order: 1;
  }
  #main #works .content_wrap.turn .detail_wrap {
    order: 2;
  }
  #main #side_job .button_area {
    margin-top: 7.2vw;
  }
  #main #side_job .block_content {
    padding-bottom: 8vw;
  }
  #main #side_job .inner ul {
    margin-top: 8vw;
    flex-wrap: wrap;
  }
  #main #side_job .inner ul li {
    width: 45.714%;
  }
  #main #side_job .inner ul li:nth-child(n+3) {
    margin-left: 0%;
    margin-top: 3.33vw;
  }
  #main #side_job .inner ul li:nth-child(2n) {
    margin-left: 8.5714%;
  }
  #main #side_job .inner ul li img {
    border-radius: 4vw 4vw 4vw 0;
  }
  #main #side_job .inner ul li h2 {
    margin-top: 3.2vw;
    line-height: 3.6vw;
  }
}
@media screen and (max-width: 769px) and (max-width: 769px) {
  #main #side_job .inner ul li h2 {
    font-size: 2.4vw;
  }
}
@media screen and (max-width: 769px) {
  #main #side_job .inner ul li h2 br {
    display: inline;
  }
  #main #side_job .inner ul li h2::before {
    width: 3.6vw;
    height: 3.6vw;
    margin-right: 1vw;
    border-radius: 0.6vw 0.6vw 0.6vw 0;
    transform: translateY(0);
  }
  #main #side_job .inner ul li h3 {
    margin-top: 3.5vw;
  }
}
@media screen and (max-width: 769px) and (max-width: 769px) {
  #main #side_job .inner ul li h3 {
    letter-spacing: 0.01vw;
    font-size: 4.8vw;
    line-height: 7.2vw;
  }
}
@media screen and (max-width: 769px) {
  #main #side_job .inner ul li p {
    margin: 2vw 0 0 1.2vw;
  }
}
@media screen and (max-width: 769px) and (max-width: 769px) {
  #main #side_job .inner ul li p {
    font-size: 3.2vw;
    line-height: 5.33vw;
  }
}
@media screen and (max-width: 769px) {
  #main #faq .inner {
    padding-bottom: 12vw;
  }
  #main #faq .inner h2 {
    margin-top: 8vw;
    font-size: 3.6vw;
  }
  #main #faq .inner ul {
    margin-top: 8vw;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  #main #faq .inner ul li {
    width: 100%;
  }
  #main #faq .inner ul li:nth-child(2n+2) {
    margin-left: 0%;
  }
  #main #faq .inner ul li:nth-child(n+2) {
    margin-top: 4.8vw;
  }
  #main #faq .inner ul li a {
    padding: 7.125vw 2.625vw;
    font-size: 3.7333vw;
    font-weight: bold;
    position: relative;
    border-radius: 2.6667vw 2.6667vw 2.6667vw 0;
    box-shadow: -0.5px 0 0 rgba(0, 0, 0, 0.5);
  }
  #main #faq .inner ul li a::after {
    width: 6vw;
    right: 4.8vw;
  }
  #main #faq .inner ul li a:hover {
    opacity: 1;
  }
  #main #faq .inner ul li a:hover::after {
    right: 3.2vw;
  }
  #main #contact .bg {
    background-image: url(../img/main_contact_sp.jpg);
  }
  #main #contact .bg .inner .content_wrap {
    padding: 8vw 0 12vw;
    flex-direction: column;
  }
  #main #contact .bg .inner .content_wrap .detail_wrap {
    padding: 0;
    width: 100%;
  }
  #main #contact .bg .inner .content_wrap .detail_wrap h2 {
    font-size: 4.8vw;
  }
  #main #contact .bg .inner .content_wrap .detail_wrap p {
    margin-top: 5.275vw;
    font-size: 6.6vw;
    line-height: 12.53vw;
  }
  #main #contact .bg .inner .content_wrap .detail_wrap .button_area {
    justify-content: center;
  }
  #main .block_label {
    display: none;
    width: 0;
  }
  #main .block_content {
    width: 100%;
    border-left: none;
  }
  #main .line_svg .swiper-wrapper {
    padding: 4vw 0;
  }
  #main .bg_gray_area {
    padding: 8vw 0;
    border-bottom: solid 0.5px rgba(0, 0, 0, 0.5);
  }
  #main .bg_gray_area .inner {
    flex-direction: column;
  }
  #main .bg_gray_area .inner div:first-child {
    width: 100%;
  }
}
@media screen and (max-width: 769px) and (max-width: 769px) {
  #main .bg_gray_area .inner div:first-child h2 {
    font-size: 3.2vw;
  }
}
@media screen and (max-width: 769px) and (max-width: 769px) {
  #main .bg_gray_area .inner div:first-child h3 {
    letter-spacing: 0.01vw;
    font-size: 6.93vw;
    line-height: 12.13vw;
  }
}
@media screen and (max-width: 769px) {
  #main .bg_gray_area .inner div:last-child {
    width: 100%;
    justify-content: start;
    align-items: center;
  }
  #main .bg_gray_area .inner div:last-child p {
    padding-top: 8vw;
    padding-left: 0;
  }
}
@media screen and (max-width: 769px) and (max-width: 769px) {
  #main .bg_gray_area .inner div:last-child p {
    font-size: 3.733vw;
    line-height: 6.4vw;
  }
}
@media screen and (max-width: 769px) {
  footer .footer_inner {
    padding: 8vw 5%;
  }
  footer .footer_inner .footer_wrap {
    flex-direction: column;
  }
  footer .footer_inner .footer_wrap .footer_info {
    width: 100%;
  }
  footer .footer_inner .footer_wrap .footer_info img {
    width: 45.23%;
  }
  footer .footer_inner .footer_wrap .footer_info address, footer .footer_inner .footer_wrap .footer_info p {
    font-size: 2.8vw;
  }
  footer .footer_inner .footer_wrap .footer_info .ad {
    margin-top: 3.6w;
  }
  footer .footer_inner .footer_wrap .footer_info .tel {
    pointer-events: auto;
    margin-top: 3.6vw;
    font-size: 2.8vw;
  }
  footer .footer_inner .footer_wrap .footer_info .pp {
    font-size: 2.8vw;
    margin-top: 3.6vw;
  }
  footer .footer_inner .footer_wrap .footer_list {
    width: 100%;
    padding: 6% 0 0 0;
  }
  footer .footer_inner .footer_wrap .footer_list ul {
    font-size: 3vw;
  }
  footer .footer_inner .footer_wrap .footer_list ul li.li_pad {
    padding: 0.5rem;
  }
  footer .footer_inner .footer_wrap .footer_list ul li:nth-child(2n+1) {
    width: 41%;
  }
  footer .footer_inner .footer_wrap .footer_list ul li:nth-child(2n) {
    width: 59%;
  }
  footer .footer_inner .footer_wrap .footer_list ul li:nth-child(n+3) {
    margin-top: 5%;
  }
  footer .footer_inner .copyright {
    font-size: 2.4vw;
    margin-top: 8%;
  }
  #to_page_top {
    right: 6%;
    bottom: 6%;
    width: 8%;
  }
  .drawer_open {
    color: #000;
    display: flex;
    padding: 0 2.5rem;
    transform: translateX(0.8rem);
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100; /* 重なり順を一番上にする */
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    order: 2;
  }
  .drawer_open span,
  .drawer_open span:before,
  .drawer_open span:after {
    content: "";
    display: block;
    height: 0.1rem;
    width: 2rem;
    border-radius: 3px;
    background: #000;
    transition: 0.5s;
    position: absolute;
    margin-right: 6rem;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .drawer_open span:before {
    bottom: 0.5rem;
  }
  .drawer_open span:after {
    top: 0.5rem;
  }
  .drawer_open span,
  .drawer_open span:before,
  .drawer_open span:after {
    margin-right: 2rem;
  }
  .button_area_sp {
    display: flex;
    justify-content: center;
  }
  button.more {
    width: 53.33vw;
    height: 11vw;
    border-radius: 6.67vw;
    font-size: clamp(14px, 3vw, 1.6rem);
  }
  button.more:hover {
    transform: scale(1.05, 1.05);
  }
}/*# sourceMappingURL=style.css.map */