@charset "UTF-8";

/* CSS Document */
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  scroll-behavior: smooth;
}

body {
  color: #333333;
  /* RGB */
  background-color: #ffffff;
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.3rem;
}

a {
  color: #333333;
}

a:hover {
  opacity: 0.5;
}

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

.blue {
  color: #0e6eb8;
}

.red {
  color: #ff0000;
}

.black {
  color: #333333;
}

.maru {
  font-family: "zen-maru-gothic", sans-serif;
  font-weight: 600;
}

.ft20 {
  font-size: 2rem;
}

.ft24 {
  font-size: 2.4rem;
}

.ft30 {
  font-size: 3rem;
}

.ft40 {
  font-size: 4rem;
}

.aline_right {
  text-align: right;
}

.fadeInUpTrigger {
  opacity: 0;
}

/* header */
header {
  width: 100%;
  height: 80px;
  padding: 0 0 0 3vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  border-top: 5px solid #0e6eb8;
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header_inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
 
}

.header_left {
  height: 100%;
  display: flex;
  align-items: center;
}

.header_left p {
  line-height: 1.5;
}

.header_inner h1 a {
  width: 100px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.nav_wrap {
  position: fixed;
  z-index: 100;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  transition: all 0.6s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #0e6eb8;
}

.nav_wrap nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav_wrap ul {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 40px;
}

.nav_wrap li {
  list-style: none;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1;
  padding: 12px;
  margin-bottom: 8px;
  border-bottom: 1px solid #ffff;
}

.nav_wrap li a {
  color: #ffffff;
  text-decoration: none;
  padding: 10px;
  display: block;
  letter-spacing: 0.1em;
  font-size: 1.8rem
}

.nav_wrap li a span {
  font-style: normal;
  font-size: 1.4rem;
  display: block;
  margin-top: 8px;
}

.nav_wrap.show {
  right: 0;
}

.nav_wrap nav .sp_nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav_wrap nav .sp_nav li {
  border-bottom: 1px solid #ffffff;
}

/* ham_menu */
.header_right {
  width: 80px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0e6eb8;
}

.ham_btn {
  position: relative;
  cursor: pointer;
  height: 75px;
  width: 80px;
  z-index: 999;
}

.ham_btn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 20px;
  height: 1px;
  background: #fff;
  width: 40px;
}

.ham_btn span:nth-of-type(1) {
  top: 20px;
}

.ham_btn span:nth-of-type(2) {
  top: 34px;
}

.ham_btn span:nth-of-type(3) {
  top: 48px;
}

.ham_btn.active span:nth-of-type(1) {
  top: 23px;
  left: 24px;
  transform: translateY(6px) rotate(-45deg);
  width: 35px;
}

.ham_btn.active span:nth-of-type(2) {
  opacity: 0;
}

.ham_btn.active span:nth-of-type(3) {
  top: 35px;
  left: 24px;
  transform: translateY(-6px) rotate(45deg);
  width: 35px;
}

.clarity a:hover {
  opacity: 1;
}

.float_area {
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex;
  z-index: 99;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.float_btn {
  width: 50%;
}

.float_btn a {
  width: 100%;
  color: #ffffff;
  height: 62px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.0rem;
  line-height: 1;
  position: relative;
}

.float_btn a:hover {
  opacity: 1;
}

.float_btn a::after {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0);
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.float_btn a:hover:after {
  opacity: 1;
  visibility: visible;
  background-color: rgba(255, 255, 255, 0.5);
}

.float_btn a p {
  position: relative;
  padding-right: 14px;
}

.float_btn a p::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -14px;
  transform: translateY(-55%);
  border: 10px solid transparent;
  border-left: 12px solid #ffffff;
}

.float_btn.btn01 a {
  background-color: #d92a8c;
}

.float_btn.btn02 a {
  background-color: #6eb80f;
}

/* MV */
.MV {
  position: relative;
  text-align: center;
  overflow: hidden;
  margin-top: 80px;
}

.MV_deco {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 110%;
  left: -5%;
  opacity: 0.4;
}

.MV_text.maru {
  position: absolute;
  text-align: justify;
  color: #ffffff;
  font-weight: 900;
  bottom: 10%;
  z-index: 10;
  font-size: 3.0rem;
  padding: 4vw;
  width: 100%;
  max-width: 1280px;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: 0.4rem;
}

.MV_text p {
  line-height: 2;
  display: inline-block;
  margin: 0 auto;
  letter-spacing: 0.2rem;
}

section {
  padding: 100px 0;
}

.section_inner {
  margin: 0 5vw;
}

.section_ttl {
  position: relative;
}

.section_ttl h2 {
  margin-bottom: 60px;
}

.section_ttl h2 img {
  height: 10vw;
  width: auto;
  margin: 0 auto;
  max-height: 43px;
}

.section_ttl h2 span {
  display: block;
  padding-top: 20px;
  font-size: 3.0rem;
  font-weight: 500;
}

.section_ttl .section_ttl_deco {
  width: 110%;
  top: 68px;
  left: -5%;
  position: absolute;
  max-height: 43px;
}

#top_01,
#company_01 {
  background-image: url(../img/top01_bg@2x.png);
  background-size: cover;
  background-position: top center;
  padding: 4vw 0 200px;
}

#top_01 .content,
#company_01 .content {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 80px 4vw;
}

#top_01 .content p,
#company_01 .content p {
  text-align: justify;
  line-height: 2;
  font-weight: 900;
  padding-bottom: 30px;
}

#top_01 .content p.aline_right,
#company_01 .content p.aline_right {
  text-align: right;
}

#top_01 .section_ttl h2 img,
#company_01 .section_ttl h2 img {
  height: 13vw;
  max-height: 60px;
  width: auto;
  margin: 0 auto;
}

#top_01 .section_ttl h2 span,
#company_01 .section_ttl h2 span {
  padding-top: 8px;
}

#top_01 .section_ttl .section_ttl_deco,
#company_01 .section_ttl .section_ttl_deco {
  width: 120%;
  top: 100px;
  left: -10%;
  position: absolute;
}

#top_02 .section_inner {
  padding-bottom: 100px;
}

#top_02 .section_lead {
  text-align: justify;
  line-height: 2;
  font-size: 2.0rem;
  display: inline-block;
  margin: 0 auto;
}

#top_02 .contentInner {
  width: 100%;
  display: flex;
  gap: 20px 10px;
  flex-wrap: wrap;
  margin: 60px 0 80px;
}

#top_02 .content_item {
  width: calc((100% - 10px) / 2);
}

#top_02 .content_text {
  text-align: left;
}

#top_02 .content_text p {
  position: relative;
  padding: 4px;
  display: inline-block;
  margin: 0 auto 0 4px;
}

#top_02 .content_text p::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-60%);
  border: 6px solid transparent;
  border-left: 10px solid #0e6eb8;
}

.more {
  position: relative;
  z-index: 10;
}

.more a {
  background-color: #6eb80f;
  width: 70%;
  max-width: 332px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 40px auto;
  border-radius: 41px;
}

.more a::before {
  content: "";
  width: 35%;
  height: 2px;
  background-color: #ffffff;
  position: absolute;
  right: 0px;
}

.more a:hover {
  opacity: 1;
}

.more a:after {
  content: "";
  border-radius: 41px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0);
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.more a:hover:after {
  opacity: 1;
  visibility: visible;
  background-color: rgba(255, 255, 255, 0.5);
}

.more a p {
  color: #ffffff;
  padding-right: 25%;
  font-size: 2.0rem;
}

#top_03 {
  background-color: #86b6db;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

#top_03 h2 {
  color: #ffffff;
}

#top_03 .section_ttl .section_ttl_deco {
  width: 60%;
  top: 90px;
  left: 20%;
}

#top_03 .work_list {
  margin: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  color: #ffffff;
  container-type: inline-size;
  container-name: work_list;
}

#top_03 .list_img {
  margin-bottom: 40px;
}

#top_03 .work_list .ttl {
  display: flex;
  gap: 20px;
  font-size: 2.2rem;
  padding-bottom: 40px;
}

#top_03 .work_list .text {
  text-align: justify;
  line-height: 2;
}

@container work_list (max-width: 400px) {
  #top_03 .work_list .ttl {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

#top_03 .section_deco {
  width: 140%;
  position: absolute;
  bottom: 10px;
  left: 0;
}

#top_04 {
  padding-top: 120px;
}

#top_04 .section_ttl .section_ttl_deco {
  width: 90%;
  left: 5%;
}

#top_04 .section_inner {
  margin: 0;
}

#top_04 .content {
  margin: 0;
  display: flex;
  flex-direction: column-reverse;
}

#top_04 .contentInner {
  margin: 40px 0 0;
  padding: 100px 8vw 0;
  position: relative;
}

#top_04 .content_textWrap {
  text-align: justify;
  margin-bottom: 80px;
}

#top_04 .content_textWrap p {
  margin-bottom: 40px;
}

#top_04 .content_deco {
  border: 10px solid #0e6eb8;
  width: calc(100% - 8vw);
  height: 110%;
  position: absolute;
  top: 0;
  left: 4vw;
}

#top_05 {
  padding-top: 100px;
}

dl {
  padding: 40px 0;
  text-align: left;
  max-width: 520px;
  margin: 0 auto 80px;
  font-size: 2.0rem;
  font-weight: 500;
}

dt,
dd {
  padding: 20px 8px 16px;
  border-bottom: 1px solid #0e6eb8;
  line-height: 1.8;
}

.content_item.motto {
  background-color: #86b6db;
  border-radius: 30px;
  padding: 140px 0 160px;
  position: relative;
  text-align: left;
}

.content_item.motto::after {
  content: "";
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  border: 3px solid #ffffff;
  border-radius: 30px;
  position: absolute;
  top: 20px;
  left: 20px;
}

.content_item.motto .content_lead {
  width: 250px;
  margin: 0 auto 20px;
}

.content_item.motto .content_lead span {
  display: block;
}

.content_item.motto .list_ttl {
  width: 250px;
  margin: 0 auto;
}

.content_item.motto ul {
  width: 250px;
  margin: 0 auto 20px;
}

.content_item.motto ul li {
  line-height: 2;
  position: relative;
  padding-left: 2rem;
}

.content_item.motto ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.sdgs {
  margin: 100px 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  font-size: 1.8rem;
}

.modal {
  display: none;
}

#contact {
  background-image: url(../img/top06_bg@2x.png);
  background-position: center;
  background-size: cover;
  margin-top: 160px;
  padding: 140px 0;
  color: #ffffff;
}

#contact .section_inner {
  margin: 0 2vw;
}

#contact .section_ttl .section_ttl_deco,
#contact_01 .section_ttl .section_ttl_deco {
  width: 100%;
  left: 0%;
  top: -100px;
}

#contact .section_lead {
  font-size: 1.8rem;
  line-height: 2;
  text-align: center;
}

.contact_btn a {
  background-color: #0e6eb8;
  display: flex;
  height: 90px;
  align-items: center;
  margin: 40px auto;
  width: 100%;
  max-width: 383px;
  position: relative;
  justify-content: center;
}

.tel a {
  font-size: 3.0rem;
  color: #ffffff;
}

.tel a img {
  width: 214px;
  transform: translateX(10%);
}

.tel a::before {
  content: "";
  position: absolute;
  background-image: url(../img/tel_w@2x.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 40px;
  height: 39px;
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
}

.contact_btn a p {
  font-size: 2.4rem;
  padding-left: 50px;
  display: inline-block;
  color: #ffffff;
}

.contact_btn.mail a::before {
  content: "";
  position: absolute;
  background-image: url(../img/line@2x.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 50px;
  height: 48px;
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
}

.contact_btn a:hover {
  opacity: 1;
}

.contact_btn a::after {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0);
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.contact_btn a:hover:after {
  opacity: 1;
  visibility: visible;
  background-color: rgba(255, 255, 255, 0.5);
}

#access {
  padding-bottom: 0;
}

#access .section_ttl .section_ttl_deco {
  width: 80%;
  left: 10%;
}

#access p {
  padding: 60px 0;
}

.access_map iframe {
  width: 100%;
  height: 480px;
  display: block;
}

footer {
  background-color: #0e6eb8;
  color: #ffffff;
}

.footer_inner {
  margin: 0px 4vw;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer_logo {
  margin: 0 0 40px;
  max-width: 515px;
  width: 70%;
}

.footer_logo p {
  padding: 20px 0 0 0;
  text-align: left;
}

.footer_right {
  width: 100%;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 40px;
}

.footer_right .footer_QR {
  width: 60%;
}

.footer_nav ul {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 1.8rem;
}

.footer_nav li {
  margin-bottom: 12px;
}

.footer_nav li a {
  font-size: 1.6rem;
  color: #ffffff;
  padding: 10px 20px;
}

.footer_insta {
  width: 96px;
}

.cr {
  padding: 30px 0;
  border-top: 1px solid #ffffff;
  background-color: #0e6eb8;
  color: #ffffff;
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
}

#go_top {
  width: 20px;
  position: fixed;
  bottom: 80px;
  right: 10px;
}

#go_top.black {
  filter: invert(100%);
}

@media screen and (max-width: 480px) {
  .MV_text.maru {
    font-size: 6.25vw;
  }

  .section_ttl h2 img {
    height: 13.75vw;
  }

  .section_ttl h2 span {
    font-size: 6vw;
  }

  #top_02 .contentInner {
    letter-spacing: 0.1rem;
  }
}

/* pcスタイル */
@media screen and (min-width: 960px) {
  .sp_none {
    display: block;
  }

  .pc_none {
    display: none;
  }

  header {
    height: 150px;
    padding: 10px 3vw;
    border-top: 17px solid #0e6eb8;
    align-items: center;
  }

  .header_left {
    width: 100%;
  }

  .header_text {
    display: none;
    text-align: left;
    margin-left: 10%;
  }

  .header_inner h1 a {
    width: 200px;
  }

  .header_right {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: calc(100% - 200px);
    max-width: 750px;
    height: 100%;
    background: none;
    align-items: flex-end;
    min-width: 680px;
  }

  .header_tel {
    position: relative;
    padding-right: 10px;
  }

  header .tel a img {
    width: 100%;
    transform: translateX(0);
  }

  .header_tel a::before {
    content: "";
    position: absolute;
    background-image: url(../img/tel@2x.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 39px;
    height: 38px;
    left: -20%;
    top: 50%;
    transform: translateY(-50%);
  }

  .header_right-bottom {
    width: 100%;
  }

  .header_right nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-bottom: 0px;
  }

  .header_right nav ul li {
    padding: 0 10px 10px;
    display: flex;
    justify-content: space-between;
    width: calc(100% / 6);

  }

  .header_right nav ul li a {
    width: 100%;
    color: #4b4a48;
    font-size: 1.8rem;
    letter-spacing: 0.01rem;
    line-height: 1.3;
    position: relative;
  }

  .header_right nav ul li a::after {
    content: "";
    width: 37px;
    height: 3px;
    background-color: #0e6eb8;
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
  }

  .float_btn a {
    height: 80px;
    font-size: 3.0rem;
  }

  .float_btn a p {
    padding-right: 24px;
  }

  .float_btn a p::after {
    right: -20px;
    transform: translateY(-40%);
    border: 12px solid transparent;
    border-left: 16px solid #ffffff;
  }

  .MV {
    margin-top: 150px;
  }

  .MV_text.maru {
    font-size: 6.0rem;
  }

  #top_01,
  #company_01 {
    padding: 230px 0 300px;
    background-position: center bottom;
  }

  #top_01 .content,
  #company_01 .content {
    max-width: 1568px;
    margin: 0 auto;
  }

  #top_01 .section_ttl h2 img,
  #top_05 .section_ttl h2 img,
  #company_01 .section_ttl h2 img,
  #company_02 .section_ttl h2 img {
    height: 60px;
    max-width: none;
  }

  #top_02 .section_ttl h2 img,
  #top_04 .section_ttl h2 img,
  #contact .section_ttl h2 img,
  #access .section_ttl h2 img {
    height: 44px;
    max-width: none;
  }

  #top_01 .section_ttl .section_ttl_deco,
  #top_02 .section_ttl .section_ttl_deco,
  #top_04 .section_ttl .section_ttl_deco,
  #top_05 .section_ttl .section_ttl_deco,
  #contact .section_ttl .section_ttl_deco,
  #company_02 .section_ttl .section_ttl_deco,
  #business_01 .section_ttl .section_ttl_deco,
  #recruit_01 .section_ttl .section_ttl_deco,
  #contact_01 .section_ttl .section_ttl_deco {
    width: 100%;
    max-width: 1280px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  #top_02 .section_lead {
    padding: 60px 0;
  }

  #top_02 .contentInner {
    max-width: 1680px;
    gap: 60px 30px;
    margin: 60px auto 80px;
  }

  #top_02 .content_item {
    width: calc((100% - 60px) / 3);
  }

  #top_02 .content_text p {
    font-size: 2.0rem;
    padding: 20px 20px 20px 10px;
  }

  #top_02 .content_text p::after {
    top: 50%;
    right: -20px;
    transform: translateY(-60%);
    border: 8px solid transparent;
    border-left: 14px solid #0e6eb8;
  }

  .more a {
    margin: 140px auto 40px;
  }

  #top_03 {
    padding-top: 200px;
  }

  #top_03 .section_ttl .section_ttl_deco {
    width: 50%;
    left: 25%;
  }

  #top_03 .work_list {
    max-width: 1380px;
    margin: 270px auto;
    align-items: flex-start;
    flex-direction: row;
    gap: 60px;
    position: relative;
    z-index: 10;
  }

  #top_03 .work_list li {
    width: calc((100% - 60px)/ 2);
  }

  #top_03 .work_list li .text_wrap {
    padding: 0 40px 0 20px;
  }

  #top_03 .section_deco {
    width: 110%;
    bottom: -5%;
    left: -5%;
  }

  #top_04 {
    padding: 200px 0 0;
    overflow: hidden;
  }

  #top_04 .content {
    padding: 200px 0;
    flex-direction: row;
    gap: 100px;
    align-items: center;
    position: relative;
  }

  #top_04 .contentInner {
    width: 100%;
    max-width: 660px;
    padding: 0 40px 0 0;
    position: static;
  }

  #top_04 .content_deco {
    width: 70vw;
    height: 60%;
    left: auto;
    right: -10%;
    top: 50%;
    transform: translateY(-50%)
  }

  #top_04 .more a {
    margin: 5vw auto 40px;
  }

  dl {
    max-width: 780px;
    font-size: 2.4rem;
  }

  dl .description-item {
    display: flex;
  }

  dt {
    width: 150px;
  }

  dd {
    width: calc(100% - 150px);
  }

  .content_item.motto {
    max-width: 900px;
    margin: 0 auto;
  }

  .sdgs {
    flex-direction: row;
    align-items: center;
    max-width: 1200px;
    margin: 100px auto;
  }

  .sdgs_item {
    width: 100%;
  }

  .sdgs p {
    width: 100%;
    font-size: 2.4rem;
  }

  #contact {
    padding: 220px 6vw 120px;
  }

  #contact .section_ttl .section_ttl_deco {
    top: -200px;
  }

  .contact_inner {
    margin: 0;
  }

  #contact .section_lead {
    margin: 0 auto;
    padding: 0 0 140px;
  }

  .contact_btn--wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
  }

  .contact_btn a {
    width: 383px;
  }

  .contact_btn a:after {
    content: "";
    height: 100%;
    background-color: rgb(255, 255, 255, 0.5);
    position: absolute;
    width: 100%;
    left: 0;
    transition: 0.7s;
    z-index: 100;
    opacity: 0;
  }

  .contact_btn a:hover,
  .contact_btn a:hover::after {
    opacity: 1;
  }

  #access .section_ttl .section_ttl_deco {
    width: 60%;
    max-width: 900px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  #access p {
    font-size: 1.8rem;
  }

  .footer_inner {
    max-width: 1960px;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    padding: 40px 80px;
    margin: 0 auto;
    gap: 100px;
  }

  .footer_logo {
    width: 20vw;
    max-width: 500px;
    margin: 0;
  }

  .footer_right {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .footer_inner nav {
    width: 100%;
    margin: 0;
  }

  .footer_nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    height: 110px;
  }

  .footer_nav li {
    margin: 0;
    padding: 6px 0;
  }

  .footer_right .footer_QR {
    max-width: 256px;
  }

  #go_top {
    width: 30px;
    bottom: 100px;
    right: 50px;
  }
}

@media screen and (min-width: 1600px) {
  .header_text {
    display: block;
  }
}

/* 下層共通 */
.MV_under-ttl h2 {
  position: absolute;

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);


}

.MV_under-ttl h2 span {
  font-size: 3.0rem;
  display: block;
  color: #ffffff;
  font-weight: 400;
}

#company_wrapper #access,
#business_wrapper #access,
#works_wrapper #access,
#recruit_wrapper #access,
#contact_wrapper #access {
  padding: 0;
}

#company_wrapper #access .section_ttl,
#business_wrapper #access .section_ttl,
#works_wrapper #access .section_ttl,
#recruit_wrapper #access .section_ttl,
#contact_wrapper #access .section_ttl,
#company_wrapper #access p,
#business_wrapper #access p,
#works_wrapper #access p,
#recruit_wrapper #access p,
#contact_wrapper #access p {
  display: none;
}

#company_02 dl {
  max-width: 650px;
}

/* pcスタイル */
@media screen and (min-width: 960px) {

  .MV_deco {
    position: absolute;
    bottom: -20%;
    left: 0;
    width: 90%;
    left: auto;
    right: 0;
    opacity: 0.4;
  }

  #company_02 dl {
    max-width: 1080px;
  }

  #company_02 dt {
    width: 230px;
  }

}

/* business */
#business_01 {
  padding: 0 0 100px;
}

#business_01 .section_ttl .section_ttl_deco {
  top: 10px;

}

#business_01 .section_lead {
  padding: 100px 0 60px;
  text-align: justify;
  font-weight: 500;
  font-size: 2.0rem;
  line-height: 1.8;
}

#business_01 .content_item {
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
  margin-bottom: 40px;
}

#business_01 .content_item h3 {
  font-size: 3.0rem;
  border-bottom: 2px solid #86b6db;
  text-align: left;
  line-height: 1.5;
  padding-left: 2.5rem;
  position: relative;
  margin-bottom: 40px;
}

#business_01 .content_item h3::before {
  content: "";
  height: 100%;
  width: 10px;
  background-color: #86b6db;
  position: absolute;
  top: 0;
  left: 0;
}

#business_01 .content_text {
  font-size: 2.0rem;
  text-align: justify;
  line-height: 1.8;
}

/* pcスタイル */
@media screen and (min-width: 960px) {
  #business_01 .section_ttl .section_ttl_deco {
    top: 50px;

  }

  #business_01 .section_lead {
    display: inline-block;
    margin: 0 auto;
    padding: 300px 0 60px;
  }

  #business_01 .contentInner {
    max-width: 1400px;
    margin: 100px auto;
  }

  #business_01 .content_item {
    flex-direction: row;
    gap: 60px;
    margin-bottom: 160px;
  }

  #business_01 .content_item:nth-of-type(even) {
    flex-direction: row-reverse;

  }

  #business_01 .content_img {
    width: 40%;
    max-width: 550px;
  }

  #business_01 .content_text {
    width: 60%;
    padding: 10px;
  }
}

#works_01 {
  padding: 0;
}

#works_01 .section_inner {
  margin: 0;
}

#works_01 .section_ttl .section_ttl_deco {
  top: 10px;
  width: 90%;
  left: 5%;

}

#works_01 .contentInner {
  padding: 120px 5vw;

}

#works_01 .contentInner:nth-of-type(odd) {
  background-color: #86b6db;
}

#works_01 .contentInner:nth-of-type(even) {
  background-color: #ffffff;
}

#works_01 .contentInner:nth-last-of-type(1) {
  padding-bottom: 250px;
}

#works_01 .contentInner h3 {
  font-size: 3.0rem;
  padding: 20px 0 40px;
  font-weight: 500;
}

#works_01 .content_imgwrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

#works_01 .content_img {
  width: calc((100% - 10px)/ 2);
}

#works_wrapper #contact {
  margin: 0;
}

@media screen and (min-width: 960px) {
  #works_01 .section_ttl .section_ttl_deco {
    top: 30px;
    max-width: 760px;
    left: 50%;
    transform: translateX(-50%);

  }

  #works_01 .contentInner:nth-of-type(1) {
    padding-top: 250px;
  }

  #works_01 .content_imgwrap {
    max-width: 1645px;
    margin: 0 auto;
    gap: 20px;
    justify-content: center;
  }

  #works_01 .content_img {
    width: calc((100% - 60px) / 4);
  }

  #works_01 .contentInner:nth-of-type(1) .content_imgWrap {
    gap: 40px;
  }

  #works_01 .contentInner:nth-of-type(1) .content_img {
    width: calc((100% - 80px) / 3);
  }

  #works_01 .contentInner:nth-last-of-type(1) {
    padding-bottom: 350px;
  }
}

/* recruit */
#recruit_01 {
  padding: 0;
}

#recruit_01 .section_ttl .section_ttl_deco {
  top: 40px;
  width: 100%;
  left: 0;

}

#recruit_01 .content_textWrap p {
  font-size: 2.0rem;
  margin-bottom: 80px;
  line-height: 2;
}

#recruit_01 p.content_lead {
  font-size: 2.8rem;
  letter-spacing: 0.15rem;
  margin-bottom: 40px;
  padding-top: 180px;
  line-height: 1.5
}

#recruit_01 dl {
  border: 1px solid #0e6eb8;
  border-bottom: none;
  padding: 0;
  position: relative;
  z-index: 10;
}

@media screen and (min-width: 960px) {

  #recruit_01 {
    padding-bottom: 200px;
  }

  #recruit_01 .section_ttl .section_ttl_deco {

    left: 50%;

  }

  #recruit_01 p.content_lead {
    font-size: 2.8rem;
    letter-spacing: 0.15rem;
    margin-bottom: 40px;
    padding-top: 340px;
    line-height: 1.5
  }

  #recruit_01 dl {
    max-width: 1080px;
    font-size: 2.0rem;
  }

  #recruit_01 .description-item {
    display: flex;
  }

  #recruit_01 .description-item dt {
    width: 260px;

    border-right: 1px solid #446e80;
  }

  #recruit_01 .description-item dd {
    width: calc(100% - 260px);
    padding-left: 24px;
  }

  #recruit_01 .content_deco {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    width: 85%;
    max-width: 1132px;
  }
}

/* contact */
#contact_01 {
  padding-top: 0;
  font-family: "zen-maru-gothic", sans-serif;
  font-weight: 600;
  color: #333333;
  padding-bottom: 200px;
}

#contact_01 .section_ttl .section_ttl_deco {
  top: 40px;
  width: 100%;

}

#contact_01 h2 {
  font-size: 3.0rem;
  color: #0e6eb8;
  padding-top: 250px;
}

#contact_01 .section_lead {
  font-size: 1.6rem;
  text-align: center;
}

#contact_01 .section_lead p {
  margin-bottom: 40px;
  line-height: 2;
}

.inquiry_tel {

  margin: 20px auto;
}

#contact_01 .inquiry_tel.tel a {
  color: #0e6eb8;
}

#contact_01 .inquiry_tel.tel a::before {
  display: none;
}

#contact_01 form {
  font-size: 1.8rem;
}

#contact_01 .must {
  color: #ff0000;
  margin-left: 20px;
}

.form_item--input.radio {
  display: flex;
  flex-direction: column;
  line-height: 2;
  padding-left: 12px;
  margin: 0 0 20px 0;
}

form {
  margin: 80px 3vw 40px;
  text-align: left;
  font-weight: 600;
  line-height: 3;
  container-type: inline-size;
  container-name: form;
  font-size: 1.8rem
}

.form_item--ttl {
  padding: 0 0 20px 0;
  margin: 0 0 20px 0;
  line-height: 1;
  border-bottom: 1px solid #757575;
}

.form_item--input {
  border-bottom: 1px solid #757575;
  padding: 0 0 20px 0;
  margin: 0 0 20px 8px;
}

.form_item:nth-of-type(6) .form_item--input {
  border-bottom: none;
  margin: 0 0 40px 0;
}

label {
  display: inline-block;
  font-size: 1.8rem;
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  display: block;
  height: 48px;
  width: 100%;
  font-size: 2.0rem;
  padding: 6px;
  background-color: #f4f3f3;
  border-radius: 9px;
  border: 1px solid #757575;
}

input[type="radio"] {
  margin: 0 3px 2px 5px;
}

textarea {
  height: 252px;
  resize: vertical;
  background-color: #f4f3f3;
  border-radius: 9px;
}

.form_submit button {
  width: 100%;
  max-width: 294px;
  background-color: #0e6eb8;
  padding: 14px;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
}

.form_submit button:hover {
  opacity: 0.5;
}

.form_submit button p {
  font-size: 2.2rem;
  color: #ffffff;
  text-align: left;
  font-weight: 400;
  letter-spacing: 0.1rem;
}

#contact_wrapper #contact {
  display: none;
}

@media screen and (min-width: 960px) {
  #contact_01 h2 {


    padding-top: 360px;
    margin-bottom: 0;
  }

  #contact_01 .section_lead {
    padding: 60px 0 60px;
  }

  .form_item {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 780px;
    margin: 0 auto;
  }

  .form_item--input.radio {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    line-height: 2;
    padding-left: 24px;
    height: 80px;
    margin-bottom: 0;
  }

  .form_item--ttl {
    padding: 30px 10px;
    width: 40%;
    margin: 0;
    height: 80px;
  }

  .form_item--input {
    width: 60%;
    margin: 0;
    padding: 20px 60px 20px 30px;
    line-height: 1;
    border-left: 1px solid #87dbff;
    border-bottom: 1px solid #87dbff;
    height: 80px;
  }

  .form_item--ttl {
    line-height: 1;
    border-bottom: 1px solid #87dbff;
  }

  .form_item--input label {
    line-height: 1;
  }

  .form_item:nth-of-type(6) .form_item--ttl {
    border-bottom: none;
    margin: 0 0 auto;
  }

  .form_item:nth-of-type(6) .form_item--input {
    height: 300px;
  }

  .form_item--input.big {
    padding: 16px 60px 15px 30px;
  }
}