@charset "UTF-8";

/* CSS Document */
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  scroll-behavior: smooth;
}

:root {
  --blue: #3a5ba8;
  --green: #8fc42e;
  --text-color: #333333;
  --gray: #efefef;
  --def: "Zen Kaku Gothic New", serif;
  --en: "Oswald", serif;
}

body {
  color: var(--text-color);
  /* RGB */
  background-color: #f2f2f2;
  font-family: var(--def);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(1.4rem, 3.7vw, 1.8rem);
  line-height: 2;
  text-align: center;
}

h2,
h3,
h4 {
  font-weight: 500;
  line-height: 1.5;
}

a {
  color: #333333;
}

a:hover {
  opacity: 0.7;
}

.clarity a:hover {
  opacity: 1;
}

.vertical {
  position: static;
  display: inline-block;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 0.01rem;
  line-height: 1.5;
  text-align: left;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

img {
  width: 100%;
  display: block;
}

.pc_none {
  display: block;
}

.sp_none {
  display: none;
}

.is-hide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.left {
  text-align: justify;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
}

.bold {
  font-weight: 700;
}

.fadeInUpTrigger,
.fadeInRightTrigger {
  opacity: 0;
}

/* header */
header {
  position: fixed;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 60px;
  background-color: #ffffff;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.16);
}

.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  padding: 0 0 0 2vw;
}

.header_inner h1 a {
  display: flex;
  justify-content: space-between;
  padding: 0;
  width: 100%;
  max-width: 176px;
  gap: 1vw;
}

/* ham_menu */
.ham_btn {
  position: fixed;
  cursor: pointer;
  width: 55px;
  height: 55px;
  z-index: 999;
  margin: 0;
  top: 0px;
  right: 0px;
}

.ham_btn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 2px;
  background: var(--blue);
  width: 27px;
  top: 28px;
}

.ham_btn span:nth-of-type(1) {
  top: 12px;
}

.ham_btn span:nth-of-type(2) {
  top: 20px;
}

.ham_btn.active span:nth-of-type(1) {
  top: 15px;
  left: 15px;
  transform: translateY(6px) rotate(-45deg);
  width: 26px;
}

.ham_btn.active span:nth-of-type(2) {
  opacity: 0;
}

.ham_btn.active span:nth-of-type(3) {
  top: 27px;
  left: 16px;
  transform: translateY(-6px) rotate(45deg);
  width: 26px;
}

.ham_btn span:nth-of-type(3)::after {
  content: "Menu";
  position: absolute;
  top: 9px;
  left: 0px;
  color: var(--blue);
  font-family: var(--en);
  line-height: 1;
  font-weight: 600;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.ham_btn.active span:nth-of-type(3)::after {
  content: "Close";
  transform: translateY(0) rotate(-45deg);
  top: 13px;
  left: 13px;
}

.nav_wrap {
  position: fixed;
  z-index: 100;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100%;
  transition: all 0.6s;
  display: flex;
  justify-content: center;
  background-color: #ffffff;
  overflow-y: auto;
  padding: 5%;
}

nav.sp_nav {
  width: 100%;
  margin: 0 0 0 auto;
}

.nav_wrap ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 80px 0 20px;
  gap: 20px;
}

.nav_wrap li {
  list-style: none;
  text-align: center;
}

.nav_wrap li a {
  text-decoration: none;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-family: var(--en);
  color: var(--blue);
  font-weight: 600;
}

.nav_wrap li a span {
  font-size: clamp(1.2rem, 3.7vw, 1.6rem);
  font-family: var(--def);
  color: var(--text-color);
  font-weight: 400;
}

.nav_wrap.show {
  right: 0;
}

/* MV */
.MV {
  position: relative;
  width: 100%;
  max-height: 90vh;
  aspect-ratio: 480/470;
  overflow: hidden;
  margin-top: 60px;
}

.MV_slide .slide {
  width: 100vw;
  aspect-ratio: 480/470;
  background-image: url(../img/sp-mv01.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

.MV_slide .slide:nth-of-type(2) {
  background-image: url(../img/sp-mv02.webp);
}

.MV_slide .slide:nth-of-type(3) {
  background-image: url(../img/sp-mv03.webp);
}

.mv_deco {
  width: 90%;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.MV h2 {
  text-align: center;
  font-size: clamp(2rem, 6vw, 4.6rem);
  font-weight: 600;
  position: absolute;
  z-index: 5;
  color: #ffffff;
  bottom: 5%;
  left: 50%;
  word-break: keep-all;
  transform: translateX(-50%);
  text-shadow: 0 3px 5px rgba(0, 0, 0, 0.6);
}

/* 共通 */
section {
  position: relative;
  padding: min(10vw, 100px) 0 min(12vw, 120px)
}

.inner {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: min(10vw, 80px);
  position: relative;
  z-index: 2;
}

.section_ttl {
  font-family: var(--en);
  color: var(--blue);
  letter-spacing: 0.1em;
  font-weight: 600;
  font-size: clamp(3rem, 9vw, 5.0rem);
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0 auto;
  line-height: 1;
  gap: min(2vw, 10px);
}

.section_ttl span {
  font-family: var(--def);
  color: var(--text-color);
  letter-spacing: 0.01em;
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  font-weight: 400;
}

.section_ttl:before {
  content: "";
  width: 0;
  height: 0;
  border-top: min(5vw, 30px) solid transparent;
  border-bottom: min(5vw, 30px) solid transparent;
  border-right: min(3.5vw, 20px) solid var(--green);
  position: absolute;
  top: 0;
  right: 100%;
  z-index: 1;
  transform: translate(-50%, -50%);
}

#top_news {
  padding: min(5vw, 100px) 0 min(6vw, 100px)
}

#top_news .section_ttl {
  font-size: clamp(3.2rem, 10vw, 6.0rem);
}

#top_news .section_ttl span {
  font-size: clamp(2rem, 5.4vw, 3rem);
}

#top_news .section_ttl:before {
  display: none;
}

.news_wrap li {
  padding: 10px 0;
  text-align: left;
  line-height: 1.5;
  justify-content: flex-start;
}

.news_wrap li a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-weight: 600;
}

#top_about {
  background-color: #ffffff;
}

.section_deco {
  position: absolute;
  width: 60%;
  top: 2%;
  right: 0;
  z-index: 0;
}

.text-wrap {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: min(2vw, 20px);
}

#top_about .text-wrap h3 {
  font-weight: 600;
  font-size: clamp(2rem, 5.4vw, 3rem);
}

#top_about .text-wrap p {
  display: flex;
  flex-direction: column;
}

#top_about .text-wrap p span {
  font-size: clamp(1.8rem, 4.2vw, 2.4rem);
}

.business .section_deco {
  position: absolute;
  width: 20%;
  top: 1%;
  right: auto;
  left: 2%;
  z-index: 0;
}

.business ul {
  display: flex;
  flex-direction: column;
  gap: min(12vw, 80px);
}

.business .content {
  display: flex;
  flex-direction: column;
  gap: min(5vw, 40px);
}

.business .content_textWrap {
  display: flex;
  flex-direction: column;
  gap: min(5vw, 40px);
  text-align: left;
}

.business .content_textWrap h3 {
  display: flex;
  flex-direction: column;
  font-size: clamp(2rem, 6vw, 4.0rem);
  line-height: 1.5;
}

.business .content_textWrap h3 span {
  color: var(--green);
  font-family: var(--en);
  font-size: clamp(1.4rem, 3.4vw, 1.6rem);
  letter-spacing: 0.2em;
}

.business li:nth-of-type(even) .content_textWrap h3 span {
  color: var(--blue);
}

.more {
  width: 210px;
  margin: 0 auto;
}

#top_investigation {
  background-image: url(../img/investigation_bg.webp);
  background-position: center;
  background-size: cover;
}

#top_investigation .section_ttl {
  color: var(--green);
  font-family: var(--en);
  font-size: clamp(1.4rem, 3.4vw, 1.6rem);
  letter-spacing: 0.2em;
}

#top_investigation .section_ttl span {
  font-size: clamp(2rem, 6vw, 4.0rem);
  color: #ffffff;
  font-weight: 600;
}

#top_investigation ul {
  display: flex;
  flex-direction: column;
}

#top_investigation ul .content {
  background-color: #ffffff;
  border: 2px solid var(--green);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  padding: min(5vw, 40px) 10px
}

#top_investigation ul .content h3 {
  font-size: clamp(1.8rem, 4.2vw, 3rem);
  line-height: 2.2;
  width: 80%;
  max-width: 510px;
  border-bottom: 1px solid var(--green);
  position: relative;
  background-color: #ffffff;
  z-index: 2;
  margin-bottom: min(8vw, 40px);
}

#top_investigation ul .content h3::before {
  content: "";
  width: min(5vw, 20px);
  aspect-ratio: 1;
  background-color: #ffffff;
  border-bottom: 1px solid var(--green);
  border-left: 1px solid var(--green);
  position: absolute;
  top: 101%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

#top_investigation ul .content ul {
  flex-direction: column;
  align-items: center;
  gap: min(3vw, 20px);
}

#top_investigation ul .content li {
  background-color: #85b235;
  width: 100%;
  padding: 0 8px;
}

#top_investigation ul .content p {
  text-align: left;
  width: 100%;
  max-width: 640px;
  line-height: 3;
}

#top_investigation .section_lead {
  color: #ffffff;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
}

#top_investigation .section_lead span {
  display: block;
  font-size: clamp(1.6rem, 3.7vw, 2.4rem);
}

.works_recruit {
  padding-bottom: min(10vw, 100px);
}

.works_recruit .content_textWrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: min(5vw, 40px);
}

.works_recruit .section_deco {
  top: auto;
  bottom: 2%;
}

#top_works .section_deco {
  right: auto;
  left: 2%;
}

.company {
  background-color: #ffffff;
}

.company .section_deco {
  width: 20%;
}

.company .content {
  display: flex;
  flex-direction: column;
  gap: min(8vw, 80px);
}

.company .content_imgWrap {
  display: flex;
  flex-direction: column;
  gap: min(5vw, 40px);
}

dl {
  margin-bottom: min(8vw, 80px);
}

.description-item {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 3;
}

.description-item dt {
  border-bottom: 1px solid var(--text-color);
  padding: 4px;
}

.description-item dd {
  border-bottom: 1px solid var(--text-color);
  padding: 4px;
}

.contact {
  padding-top: min(12vw, 100px);
}

.contact .section_deco {
  right: auto;
  left: 0;
}

.contact p {
  font-size: clamp(1.6rem, 4.6vw, 2.2rem);
  word-break: keep-all;
}

.contact_btnWrap {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  text-align: justify;
  gap: min(5vw, 80px);
}

.contact_btn {
  width: 100%;
  max-width: 375px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  text-align: justify;
  gap: min(5vw, 80px);
}

.map {
  width: 100%;
  aspect-ratio: 480/400;
  max-height: 500px;
}

.map iframe {
  vertical-align: bottom;
}

.footer_inner {
  padding: min(10vw, 40px) 0;
  width: 90%;
  max-width: 1800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: min(5vw, 40px);
}

.footer_logo {
  width: 80%;
  max-width: 360px;
  margin: auto;
}

.footer_inner .pc_nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 20px 10px;
  margin: 40px 0;
}

.pc_nav li a {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-weight: 600;
  color: var(--blue);
  font-family: var(--en);
  font-size: clamp(1.6rem, 4.6vw, 2.2rem);
}

.pc_nav li a span {
  font-family: var(--def);
  color: var(--text-color);
  font-weight: 400;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
}

.cr {
  padding: 8px 0;
  background-color: var(--blue);
  color: #ffffff;
  font-size: 1.6rem;
  text-align: center;
}

#go_top {
  width: 50px;
  position: fixed;
  bottom: 10px;
  right: 5px;
  z-index: 900;
}

/* pcスタイル */
@media screen and (min-width: 960px) {
  .sp_none {
    display: block;
  }

  .pc_none {
    display: none;
  }

  .flex {
    display: flex;
    flex-direction: row;
    gap: 5%;
  }

  header {
    width: 100%;
    height: 110px;
  }

  .header_inner {
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    margin-right: 2vw;
    height: 110px;
  }

  .header-right {
    display: flex;
    height: 110px;
    gap: 40px;
    width: 100%;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: auto;
  }

  .header_inner h1 {
    width: calc(100% - 600px);
    max-width: 360px;
  }

  .header_inner h1 a {
    width: 100%;
    max-width: 360px;
  }

  .header_inner ul {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 631px;
    width: 100%;
  }

  header .pc_nav li a {
    color: var(--text-color);
    line-height: 1.8;
  }

  header .pc_nav li a:hover {
    color: var(--blue);
    opacity: 1;
  }

  header .pc_nav li a span {
    transition: 0.7s;
  }

  header .pc_nav li a:hover span {
    color: var(--blue);
  }

  .header-mail {
    max-width: 214px;
  }

  /* MV */
  .MV {
    position: relative;
    width: 100%;
    max-height: 90vh;
    aspect-ratio: 1920/800;
    overflow: hidden;
    margin-top: 110px;
  }

  .MV_slide .slide {
    width: 100vw;
    aspect-ratio: 1920/800;
    background-image: url(../img/mv01.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
  }

  .MV_slide .slide:nth-of-type(2) {
    background-image: url(../img/mv02.webp);
  }

  .MV_slide .slide:nth-of-type(3) {
    background-image: url(../img/mv03.webp);
  }

  .mv_deco {
    width: 50%;
    max-width: 1000px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .MV h2 {
    width: 80%;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
  }

  #top_news .inner {
    flex-direction: row;
    align-items: center;
    gap: 10%;
  }

  #top_news .section_ttl {
    width: 30%;
    min-width: 430px;
  }

  #top_news .section_ttl::after {
    width: 2px;
    height: 100%;
    top: 0;
    left: 100%;
  }

  .news_wrap {
    width: 70%;
  }

  .news_wrap li {
    padding: 20px 0;
  }

  .news_wrap li a {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    gap: 40px;
    font-weight: 600;
  }

  #top_about .inner {
    padding-bottom: 5vw;
  }

  #top_about .section_ttl {
    margin: 0 auto 0 0;
  }

  #top_about .section_deco {
    width: 80%;
    top: 50%;
    transform: translateY(-50%);
  }

  .business .section_deco {
    width: 15%;
  }

  .business .content {
    flex-direction: row;
    gap: min(5vw, 80px);
  }

  .business .content_textWrap {
    width: 50%;
    justify-content: space-between;
    padding: 40px 0;
  }

  .business .content_img {
    width: 50%;
  }

  .business .content:nth-of-type(even) {
    flex-direction: row-reverse;
  }

  #top_investigation .inner {
    max-width: 1670px;
  }

  #top_investigation .inner>ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(750px, 1fr));
    gap: 40px;
    width: 100%;
  }

  #top_investigation ul .content {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: min(5vw, 40px);
  }

  #top_investigation ul .content>* {
    width: 100%;
    max-width: 660px;
    ;
  }

  #top_investigation ul .content ul li {
    max-width: 660px;
  }

  .works_recruit {
    display: flex;
    padding: 0;
  }

  .works_recruit section {
    width: 50%;
  }

  .works_recruit .inner {
    max-width: 720px;
  }

  .company .content {
    flex-direction: row-reverse;
    gap: 30px;
  }

  .company .content_textWrap {
    width: 50%;
  }

  .company .content_imgWrap {
    width: 48%;
  }

  .description-item {
    flex-direction: row;
    line-height: 2.5;
  }

  .description-item dt {
    width: 120px;
  }

  .description-item dd {
    width: calc(100% - 120px);
  }

  .company .section_deco {
    width: 15%;
    max-width: 180px;
  }

  .contact p {
    text-align: center;
  }

  .contact .contact_btnWrap {
    flex-direction: row;
  }

  .footer_inner {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 40px;
  }

  .footer_logo {
    margin: 0;
  }

  .footer_inner ul {
    width: 100%;
    max-width: 820px;
  }

  #go_top {
    width: 60px;
    bottom: 10px;
    right: 1vw;
  }
}

.h2_ttl {
  background: url("../img/h2_ttl-bg.webp") no-repeat center / cover;
  margin-top: 60px;
  padding: max(12vw, 6rem) 0 max(10vw, 4rem);
  letter-spacing: 0.08em;
  font-family: var(--ja);
  color: #ffffff;
  font-size: min(6vw, 6.0rem);
  font-weight: 600;
  text-shadow: 0 3px 5px rgba(0, 0, 0, 0.6);
  position: relative;
}

.h2_ttl::before {
  content: "";
  width: 90%;
  aspect-ratio: 3616/382;
  background-image: url(../img/h2_deco.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  bottom: 0;
  left: 5%;
  z-index: 1;
}

#company_access {
  background-color: #ffffff;
  padding-bottom: 200px;
}

@media screen and (min-width: 960px) {
  #company_info .content_textWrap {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
  }

  #company_info .content_textWrap dt {
    width: 30%;
    line-height: 3;
    padding: 0 20px;
  }

  #company_info .content_textWrap dd {
    width: 70%;
    line-height: 3;
    padding: 0 20px;
  }
}

#business_01 .section_deco {
  top: 20px;
}

#business_01 .content_wrap {
  display: flex;
  flex-direction: column;
  gap: min(5vw, 40px);
}

#business_01 .anchor {
  margin-top: -80px;
  padding-top: 80px;
}

#business01 {
  display: flex;
  flex-direction: column;
  gap: min(10vw, 80px);
}

#business02 {
  display: flex;
  flex-direction: column;
  gap: min(5vw, 40px);
}

#business_01 .bg_content {
  position: relative;
  padding: min(5vw, 40px) 0 min(10vw, 80px);
  text-align: justify;
}

#business_01 .bg_content::before {
  content: "";
  width: 108%;
  height: 100%;
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  transform: translate(-50%, -50%);
}

.bg_content ul,
.bg_content ol,
.bg_content .memo {
  position: relative;
  z-index: 2;
}

#business_01 h4 {
  font-size: clamp(2rem, 6vw, 4.0rem);
  display: inline-block;
  line-height: 2;
  border-bottom: 1px solid var(--text-color);
  position: relative;
  background-color: #ffffff;
  z-index: 2;
  margin: 0 auto min(4vw, 20px) 0;
}

#business_01 h4::before {
  content: "";
  width: min(3vw, 14px);
  aspect-ratio: 1;
  background-color: #ffffff;
  border-bottom: 1px solid var(--text-color);
  border-left: 1px solid var(--text-color);
  position: absolute;
  top: 101%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.bg_content .greenttl_list {
  display: flex;
  flex-direction: column;
  gap: min(5vw, 60px);
}

.greenttl_list>li {
  display: flex;
  flex-direction: column;
  gap: min(5vw, 20px);
}

.greenttl_list>li h5 {
  background-color: #8fc42e;
  padding: min(1vw, 8px) min(3vw, 20px);
  color: #ffffff;
  font-size: clamp(1.8rem, 4.4vw, 3.0rem);
}

ul.check_list {
  gap: min(5vw, 20px);
}

ul.check_list li {
  gap: min(5vw, 20px);
  border: 1px solid #8fc42e;
  padding: min(1vw, 8px) min(3vw, 20px) min(1vw, 8px) calc(min(1vw, 8px) + min(6vw, 2.5rem));
  position: relative;
}

ul.check_list li:before {
  content: "";
  width: min(5vw, 25px);
  aspect-ratio: 25/16.8;
  background-image: url(../img/check.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: min(5vw, 2.5rem);
  left: min(1vw, 10px);
  transform: translateY(-50%);
  z-index: 1;
}

.border {
  border: 1px solid #8fc42e;
  padding: min(3vw, 20px);
}

ul.item_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px min(2vw, 40px);
}

ul.item_list li {
  display: flex;
  flex-direction: column;
  gap: min(3vw, 20px);
}

ul.item_list li img {
  width: 80%;
  max-width: 205px;
  margin: 0 auto;
}

ul.item_list li h6 {
  font-size: clamp(1.4rem, 2em, 1.8rem);
  padding-left: min(3vw, 20px);
  position: relative;
}

ul.item_list li h6:before {
  content: "";
  width: min(1.5vw, 9px);
  aspect-ratio: 9/40;
  background-image: url(../img/item_deco.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: min(3.2vw, 1.8rem);
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
}

.border p {
  font-size: clamp(2rem, 5vw, 2.4rem);
  text-align: center;
  font-weight: 600;
  margin-top: min(6vw, 80px);
}

.item_wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.item_wrap p {
  font-size: clamp(1.2rem, 3.3vw, 1.6em);
  line-height: 2.5;
  padding: 0 min(4vw, 20px);
  border-radius: calc(infinity * 1px);
  border: 1px solid #8fc42e;
  margin: min(3vw, 20px) 0;
}

.greenttl_list>li>h6.bold {
  font-size: clamp(2rem, 5vw, 2.4rem);
  text-align: center;
  font-weight: 600;
  margin-top: min(6vw, 40px);
}

.item_list img {
  width: 80%;
  max-width: 205px;
  margin: 0 auto;
}

ul.item_list p span {
  display: block;
  color: #ff0000;
  font-size: clamp(2rem, 5vw, 2.4rem);
}

#business_01 table {
  border: 1px solid var(--green);
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

#business_01 table tr {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--green);
}

#business_01 table tr:last-child {
  border-bottom: none;
}

#business_01 table th {
  padding: 8px;
  background-color: #f4f4f4;
}

#business_01 table td {
  padding: 8px;
}

.flow ol {
  display: flex;
  flex-direction: column;
  gap: min(5vw, 40px);
  margin: min(5vw, 80px) auto min(5vw, 40px);
  width: 90%;
  max-width: 1080px;
}

.flow ol li.content {
  display: flex;
  flex-direction: row;
  gap: min(3vw, 40px);
}

.flow ol li.content .step {
  width: min(10%, 80px);
}

.flow ol li.content .content_textWrap {
  width: 80%;
  gap: min(2vw, 20px);
}

.flow ol li.content .content_textWrap h5 {
  line-height: 1;
  font-size: clamp(2rem, 5vw, 2.4rem);
}

.flow .memo {
  background-color: #c9efff;
  padding: min(3vw, 20px);
  width: 90%;
  max-width: 1150px;
  margin: 0 auto;
}

.flow .memo h5 {
  font-size: clamp(2rem, 5vw, 2.4rem);
}

ul.item_list li img.flow_map {
  width: 100%;
  max-width: 468px;
  margin: 0 auto;
}

ul.item_list li .listItem {
  display: flex;
  align-items: center;
}

/* #business02 ul.item_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px 20px;
} */
@media screen and (min-width: 960px) {
  #business_01 .anchor {
    margin-top: -140px;
    padding-top: 140px;
  }

  #business_01 table {
    max-width: 810px;
  }

  #business_01 table tr {
    flex-direction: row;
    border-bottom: 1px solid var(--green);
  }

  #business_01 table th {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #business_01 table td {
    width: 60%;
  }

  .business .flow ol li.content:nth-of-type(even) {
    flex-direction: row;
  }

  .business .flow ol li.content .content_textWrap {
    padding: 0;
  }

  .flow .memo h5 {
    width: 94%;
    margin: 0 auto;
  }

  .flow .memo p {
    width: 94%;
    margin: 0 auto;
  }
}

#recruit_info .content {
  background-color: #ffffff;
  width: 100%;
  padding: min(5vw, 80px) min(3vw, 60px);
  margin: min(10vw, 120px) auto 20vw;
  font-size: clamp(1.6rem, 4vw, 3.0rem);
}

#recruit_info .content h4 {
  font-size: clamp(2rem, 8vw, 5.0rem);
  display: inline-block;
  line-height: 2;
  border-bottom: 1px solid var(--text-color);
  position: relative;
  background-color: #ffffff;
  z-index: 2;
  margin: 0 auto min(4vw, 80px);
}

#recruit_info .content h4::before {
  content: "";
  width: min(3vw, 20px);
  aspect-ratio: 1;
  background-color: #ffffff;
  border-bottom: 1px solid var(--text-color);
  border-left: 1px solid var(--text-color);
  position: absolute;
  top: 101%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

#recruit_info table {
	width: 100%;
	border: 1px solid #333;
	margin: 0 auto;
}

#recruit_info table tr {
	flex-direction: row;
	border-bottom: 1px solid #333;
}

#recruit_info table th {
	background-color: var(--green);
	color: #fff;
	vertical-align: middle;
	padding: 10px;
}

#recruit_info table td {
	text-align: left;
	padding: 10px 15px;
}

@media screen and (max-width: 960px) {
	#recruit_info table th {
		display: block;
		width: 100%;
	}

	#recruit_info table td {
	display: block;
		width: 100%;
	}
}

#works_img {
  background-color: #ffffff;
}

#works_img .anchor_wrap {
  display: flex;
  justify-content: center;
  gap: min(2vw, 20px);
}

#works_img .anchor_wrap a {
  color: var(--blue);
  font-family: var(--en);
  font-size: min(4vw, 22px);
  padding: 4px 20px;
  border: 1px solid var(--text-color);
  letter-spacing: 0.1em;
}

#works_img .content_itemWrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: min(1vw, 18px);
}

#works_img .content_itemWrap p {
  text-align: justify;
}

#works_faq {
  padding-bottom: 200px;
}

#works_faq .section_deco {
  right: auto;
  left: 0;
  top: 5px;
  width: 50%;
}

#works_faq .bg {
  background-color: #ffffff;
  padding: min(5vw, 80px) 0;
}

#works_faq .bg ul {
  width: 90%;
  max-width: 1150px;
  margin: 0 auto;
  text-align: justify;
}

#works_faq .bg ul li {
  padding: min(5vw, 40px) 0;
  border-bottom: 1px solid var(--blue);
  display: flex;
  flex-direction: column;
  gap: min(3vw, 20px);
}

#works_faq .bg ul li p {
  position: relative;
  padding-left: min(10%, 100px);
  font-size: clamp(1.4rem, 3.4vw, 1.8rem);
}

#works_faq .bg ul li .Q p {
  font-size: clamp(1.4rem, 3.7vw, 2rem);
  font-weight: 600;
  padding: min(1vw, 20px) 0;
  padding-left: min(10%, 100px);
}

#works_faq .bg ul li .Q p::before {
  content: "";
  width: min(8%, 68px);
  aspect-ratio: 1;
  background-image: url(../img/Q.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: min(1vw, 8px);
  left: 0;
}

#works_faq .bg ul li .A p::before {
  content: "";
  width: min(8%, 68px);
  aspect-ratio: 1;
  background-image: url(../img/A.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (min-width: 960px) {
  #works_img .inner {
    max-width: 1400px;
  }

  #works_img .inner p {
    line-height: 3;
  }

  #works_img .content_itemWrap {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: min(5vw, 40px) min(2vw, 18px);
  }

  #works_faq .bg ul li p {
    width: 90%;
  }
}

/* モーダル */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
  position: relative;
  margin: 15% auto;
  width: 80%;
  background-color: #fefefe;
  padding: 10px;
}

.modal-close {
  position: absolute;
  bottom: 100%;
  right: 0px;
  font-size: 20px;
  cursor: pointer;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

@media screen and (min-width: 960px) {
  .modal-content {
    padding: 20px;
  }

  .modal-close {
    position: absolute;
    bottom: 100%;
    right: 0px;
    font-size: 40px;
    cursor: pointer;
    font-weight: 900;
    color: #ffffff;
  }
}

#contact_wrapper .contact {
  display: none;
}

#contact_01 {
  background-color: #ffffff;
}

#contact_01 .section_deco {
  width: 50%;
}

#contact_01 h4 {
  color: var(--blue);
  font-size: clamp(1.6rem, 4vw, 3.0rem);
  margin-top: min(5vw, 40px);
  font-weight: 600;
}

#contact_01 .inner {
  gap: min(5vw, 40px);
}

.contact_lead p {
  word-break: keep-all;
}

.contact_tel {
  width: 80%;
  max-width: 260px;
  margin: 0 auto;
}

form {
  width: 100%;
  max-width: 780px;
  margin: min(20vw, 80px) auto 200px;
  text-align: left;
  font-weight: 900;
}

.must {
  color: #ff0000;
  margin-left: 20px;
}

.form_item--input.radio {
  display: flex;
  flex-direction: row;
  line-height: 2;
  padding-left: 12px;
  margin: 0 0 20px 0;
}

.form_item--input.radio>* {
  width: 50%;
}

.form_item--ttl {
  border-bottom: 0.5px solid var(--text-color);
  padding: 0 4px 20px;
  margin: 0 0 20px;
  line-height: 1;
}

.form_item--input {
  border-bottom: 0.5px solid var(--text-color);
  padding: 0 4px 20px;
  margin: 0 0 20px;
}

.form_item.last .form_item--input {
  border-bottom: none;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
select,
textarea {
  display: block;
  height: 48px;
  width: 100%;
  font-size: 2.0rem;
  padding: 6px;
  background-color: #f4f3f3;
  border-radius: 3px;
  border: 1px solid #757575;
  border-radius: 9px;
}

select {
  display: block;
  height: 48px;
  width: 200px;
  font-size: 2.0rem;
  padding: 6px;
  background-color: #f4f3f3;
  border-radius: 3px;
  border: 1px solid #757575;
  border-radius: 9px;
}

input[type="radio"] {
  margin: 0 3px 2px 5px;
}

input[type="number"] {
  max-width: 120px;
}

textarea {
  height: 252px;
  resize: vertical;
  background-color: #f4f3f3;
  border-radius: 9px;
}

.form_submit button {
  width: 100%;
  max-width: 294px;
  background-color: var(--blue);
  padding: 16px;
  margin: 20px auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  transition: 0.3s;
}

.form_submit button:hover {
  opacity: 0.7;
}

.form_submit button p {
  font-size: 2.2rem;
  color: #ffffff;
  text-align: left;
  font-weight: 400;
  letter-spacing: 0.1rem;
}

#privacy_policy {
  background-color: #ffffff;
  padding-top: 0;
  padding-bottom: 20vw;
}

#privacy_policy .bg {
  background-color: #eaf0ff;
  padding: min(5vw, 40px) 0 0;
}

#privacy_policy .bg .inner {
  text-align: left;
  gap: 0;
}

#privacy_policy .bg .inner p {
  text-align: left;
  margin-bottom: min(5vw, 40px);
}

#privacy_policy .bg .inner h3 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 600;
}

#privacy_policy .bg .inner h4 {
  font-weight: 600;
  padding-left: min(8vw, 40px);
  position: relative;
}

#privacy_policy .bg .inner h4::before {
  content: "";
  width: min(5vw, 30px);
  height: 2px;
  background-color: var(--text-color);
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
}

@media screen and (min-width: 960px) {
  .form_item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }

  .form_item:first-of-type .form_item--input {
    margin-bottom: 0;
    padding: 0 0 0 30px;
    align-items: center;
  }

  .form_item--ttl {
    padding: 30px 10px;
    width: 40%;
    margin: 0;
    height: 80px;
    line-height: 1;
  }

  .form_item--input {
    width: 60%;
    margin: 0;
    padding: 20px 60px 20px 30px;
    border-left: 0.5px solid var(--text-color);
    height: 80px;
  }

  .form_item--input label {
    line-height: 1;
  }

  .form_item:nth-of-type(6) .form_item--ttl {
    border-bottom: none;
    padding-bottom: 260px;
  }

  .form_item:nth-of-type(6) .form_item--input {
    border-bottom: none;
  }

  .form_item--input.big {
    padding: 16px 60px 15px 30px;
    height: 300px;
  }
}