@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-maru-gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.8rem;
  line-height: 1.8;
  text-align: center;
  letter-spacing: 0.1rem;
}

a:hover {
  opacity: 0.5;
}
.clarity a:hover{
  opacity: 1;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}

img {
  width: 100%;
  display: block;
}

.pc_none {
  display: block;
}

.sp_none {
  display: none;
}

.wide_only {
  display: none;
}

.is-hide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.green {
  color: #00ac9a;
}

.white {
  color: #ffffff;
}

.red {
  color: #ff0000;
}

.ft_30 {
  font-size: 3.0rem;
}

.ft_26 {
  font-size: 2.6rem;
}

.ft_24 {
  font-size: 2.4rem;
}

.ft_20 {
  font-size: 2.0rem;
}

.aline_right {
  text-align: right;
}

.fadeInUpTrigger {
  opacity: 0;
}

/* header */
header {
  width: 100%;
  height: 60px;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: #00ac9a;
}

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

.header_inner .logo {
  width: 150px;
}

.header_right {
  display: flex;
  gap: 20px;
  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: #75dc5b;
}

.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.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 */
.ham_btn {
  position: relative;
  cursor: pointer;
  width: 60px;
  height: 60px;
  z-index: 999;
  background-color: #75dc5b;
  margin: 0;
  top: 0px;
}

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

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

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

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

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

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

/* MV */
.MV {
  position: relative;
}

.MV_slide {
  margin-inline: auto;
  overflow: hidden;
}

.slide img {
  width: 100%;
}

@keyframes zoomUp {
  0% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}

.MV_text {
  position: absolute;
  bottom: 10%;
  left: 6vw;
  z-index: 20;
  text-align: left;
  color: #ffffff;
  font-size: 6vw;
  font-weight: 900;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
  line-height: 1.8;
}

/* 共通 */
section {
  position: relative;
  padding: 60px 0 100px;
}

.section_inner {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.section_lead {
  text-align: justify;
  font-weight: 700;
  font-size: 2.6rem;
  padding: 0 6vw 100px;
  position: relative;
  z-index: 10;
}

.content_lead {
  text-align: justify;
  padding: 0 6vw 100px;
}

.section_lead span {
  position: relative;
  z-index: 10;
}

.content_lead {
  text-align: justify;
  font-weight: 700;
}

.more a {
  width: 276px;
  height: 54px;
  border-radius: 27px;
  margin: 60px auto;
  padding: 12px 40px;
  position: relative;
  text-align: left;
  background-color: #fdde09;
  color: #333333;
  display: flex;
  align-items: center;
}

.more a p {
  line-height: 1;
  padding-top: 4px;
}

.more a::after {
  content: "";
  width: 92px;
  height: 9px;
  background-image: url(../img/arrow@2x.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 40%;
  right: 10%;
  z-index: 10;
}

.more a:hover {
  opacity: 1;
}

.more a::before {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 35px;
  background-color: rgba(255, 255, 255, 0);
  position: absolute;
  transition: background-color 0.3s;
  top: 0;
  left: 0;
  transition: 1s all;
  z-index: 20;
}

.more a:hover::before {
  background-color: rgba(255, 255, 255, 0.3);
}

.more.no_bg a {
  background: none;
  color: #333333;
  margin: 20px auto 60px;
  padding: 12px 40px;
}

.more.no_bg a:hover {
  opacity: 0.7;
}

.more.no_bg a::before {
  display: none;
}

#top_bg {
  background-image: url(../img/sp_top_bg.png);
  background-size: cover;
  background-position: center bottom;
}

.section_lead--bg {
  position: absolute;
  bottom: 25px;
  z-index: 1;
}

.section_ttl {
  padding: 0 6vw;
}

.section_ttl h2 {
  max-width: 480px;
  margin: 0 auto 0 0;
}

#top_02 .section_ttl h2 {
  margin: 0 0 0 auto;
}

.contentInner {
  display: flex;
  flex-direction: column-reverse;
  gap: 40px;
}

.content_textWrap {
  padding: 0 6vw;
}

.content_textWrap p {
  text-align: justify;
}

.content_itemWrap {
  padding: 100px 8vw;
}

#top_02 .content_item--text {
  padding: 10px;
  text-align: justify;
}

#top_03 .content_itemWrap {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 20px;
  padding: 0 6vw;
}

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

#top_04 {
  padding-bottom: 0;
}

#top_04 .section_ttl h2 {
  margin: 0 auto;
}

dl {
  width: 100%;
  text-align: left;
  max-width: 520px;
  margin: 0 auto;
  font-weight: 700;
  color: #333333;
}

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

dl a {
  color: #333333;
}

#contact {
  background-image: url(../img/sp_contact_bg@2x.png);
  padding: 80px 0 100px;
}

#contact h2 {
  width: 234px;
  margin: 0 auto;
}

#contact .section_lead {
  font-size: 1.8rem;
  display: inline-block;
  margin: 0 auto;
  padding: 40px 6vw 0;
}

.contact_btn--wrap {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin: 0px auto;
}

.contact_btn {
  position: relative;
}

.contact_btn a {
  width: 290px;
  height: 56px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  font-size: 2.0rem;
  position: relative;
  color: #00ac9a;
}

.contact_btn a:hover {
  opacity: 1;
}

.contact_btn a::after {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 25px;
  background-color: rgba(255, 255, 255, 0);
  position: absolute;
  transition: background-color 0.3s;
  z-index: 10;
}

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

.contact_btn p {
  padding-left: 2rem;
  font-size: 2.4rem;
}

.contact_btn::before {
  content: "";
  position: absolute;
  left: 24px;
  height: 30px;
  width: 30px;
  top: 50%;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
}

.contact_btn.tel::before {
  background-image: url(../img/tel_g@2x.png);
  z-index: 5;
}

.contact_btn.mail::before {
  background-image: url(../img/mail_g@2x.png);
  height: 17px;
  width: 23px;
  left: 40px;
  z-index: 5;
}

#access {
  background-image: url(../img/sp_top_bg.png);
  padding: 100px 0 0;
}

#access .section_inner {
  gap: 0;
}

#access h2 {
  width: 151px;
  margin: 0 auto;
  padding-bottom: 60px;
}

#access p {
  padding: 0px 6vw 0;
}

#access iframe {
  display: block;
  width: 100%;
  height: 480px;
}

footer {
  color: #00ac9a;
  background-color: #e4ffda;
  position: relative;
}

.footer_inner {
  padding: 60px 10vw 40px;
  background-size: cover;
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer_logo {
  margin: 0 auto;
}

.contact_btn--wrap {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin: 0px auto;
}

footer .contact_btn a {
  width: 290px;
  height: 42px;
  border-radius: 21px;
  background-color: #75dc5b;
  color: #ffffff;
  margin: 0 auto 40px;
}

footer .contact_btn p {
  padding-left: 2rem;
  font-size: 3rem;
}

footer .contact_btn.tel {
  position: relative;
}

footer .contact_btn.tel a::before {
  content: "";
  position: absolute;
  left: 24px;
  height: 30px;
  width: 30px;
  top: 50%;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/tel@2x.png);
  z-index: 5;
}

footer .contact_btn.tel::before {
  display: none;
}

.footer_nav {
  padding-left: 6vw;
}

.footer_nav li {
  margin-bottom: 8px;
  text-align: left;
}

.footer_nav li a {
  color: #00ac9a;
}

.cr {
  padding: 16px 0;
  background-color: #75dc5b;
  color: #ffffff;
  font-size: 1.6rem;
  text-align: center;
}

#go_top {
  width: 60px;
  position: fixed;
  bottom: 20px;
  right: 10px;
  z-index: 900;
}

@media screen and (max-width: 480px) {
  #top_02 .content_itemWrap p.ft_30 {
    font-size: 6vw;
  }
}

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

  .pc_none {
    display: none;
  }

  header {
    width: 100%;
    height: 100px;
    padding: 0 2vw;
  }

  .header_inner {
    height: 100%;
    padding: 0;
  }

  .header_inner .logo {
    width: 100%;
    max-width: 440px;
  }

  .header_right {
    display: flex;
    flex-direction: row;
    width: calc(100% - 500px);
    max-width: 1000px;
    height: 100px;
    background: none;
    align-items: center;
    min-width: 600px;
    font-weight: 700;
    gap: 10px;
    justify-content: space-around;
  }

  .header_right--item {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1000px;
    align-items: flex-end;
    min-width: 600px;
    font-weight: 700;
    gap: 14px;
  }

  .header_right-upper {
    font-size: 1.6rem;
  }

  .header_tel {
    width: 290px;
    height: 44px;
    position: relative;
  }

  .header_tel a {
    width: 290px;
    height: 44px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #75dc5b;
    font-size: 2.0rem;
    position: relative;
    color: #00ac9a;
  }

  .header_tel a:hover {
    opacity: 1;
  }

  .header_tel a::after {
    content: '';
    width: 100%;
    height: 100%;
    border-radius: 25px;
    background-color: rgba(255, 255, 255, 0);
    position: absolute;
    transition: background-color 0.3s;
    z-index: 10;
  }

  .header_tel a:hover::after {
    background-color: rgba(255, 255, 255, 0.5);
  }

  .header_tel p {
    padding-left: 2rem;
    font-size: 2.4rem;
  }

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

  .header_tel a {
    color: #ffffff;
  }

  .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 4px 6px;
    display: flex;
    justify-content: space-between;
    position: relative;
  }

  .header_right nav ul li a {
    width: 100%;
    color: #ffffff;
    font-size: 1.6rem;
    letter-spacing: 0.01rem;
    line-height: 1.3;
  }

  .MV {
    text-align: center;
  }

  .MV_text {
    width: 90%;
    max-width: 1280px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 6.0rem;
  }

  section {
    padding: 160px 6vw;
  }

  .section_inner {
    max-width: 1600px;
    margin: 0 auto;
  }

  .section_lead {
    padding: 0 0 200px;
    font-size: 3.6rem;
  }

  .section_lead p {
    width: 86%;
    margin: 0 0 0 auto;
    position: relative;
    z-index: 10;
  }

  .section_lead span {
    font-size: 3.0rem;
  }

  .section_ttl {
    padding: 0;
  }

  .content_textWrap {
    padding: 0;
    width: 46%;
  }

  .section_ttl h2 {
    max-width: 673px;
  }

  .contentInner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 80px;
  }

  .more a {
    margin: 80px auto 20px;
  }

  .content_itemWrap {
    padding: 100px 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
  }

  #top_bg {
    background-image: url(../img/top_bg.png);
    background-size: cover;
    background-position: center bottom;
  }

  #top_02 .content {
    container-type: inline-size;
    container-name: top_02;
  }

  #top_02 .content_item {
    width: 100%;
  }

  @container top_02 (max-width: 1300px) {
    #top_02 .content_itemWrap {
      flex-wrap: wrap;
      padding: 100px 0;
    }

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

  #top_02 .contentInner {
    flex-direction: row-reverse;
  }

  #top_03 .content {
    container-type: inline-size;
    container-name: top_03;
  }

  #top_03 .content_lead {
    display: inline-block;
    margin: 40px auto;
  }

  #top_03 .content_itemWrap {
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
    padding: 0;
  }

  #top_03 .content_ttl {
    font-size: 3.0rem;
    padding: 14px 0;
  }

  @container top_03 (max-width: 1300px) {
    #top_03 .content_itemWrap {
      flex-wrap: wrap;
      padding: 100px 0;
    }

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

  #top_04 {
    padding-bottom: 200px;
  }

  #top_04 .content {
    container-type: inline-size;
    container-name: top_04;
  }

  #top_04 .contentInner {
    max-width: 1440px;
    gap: 60px;
    justify-content: space-between;
    margin: 0 auto;
  }

  #top_04 .content_textWrap {
    width: 50%;
  }

  .description-item {
    display: flex;
  }

  dl {
    max-width: 660px;
    margin: 80px 0;
  }

  dt {
    width: 125px;
  }

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

  @container top_04 (max-width: 1300px) {
    #top_04 .contentInner {
      flex-direction: column-reverse
    }

    #top_04 dl {
      max-width: 700px;
      margin: 80px auto;
    }

    #top_04 .content_textWrap {
      width: 100%;
    }
  }

  #contact {
    background-image: url(../img/contact_bg@2x.png);
    padding: 120px 0;
    background-size: cover;
    background-position: top center;
  }

  #contact .section_lead {
    padding: 40px 0;
  }

  #contact .section_lead p {
    margin: 0;
    white-space: nowrap;
  }

  .contact_btn--wrap {
    flex-direction: row;
    gap: 0;
    max-width: 720px;
    width: 100%;
    justify-content: space-between;
  }

  #access {
    background-image: url(../img/access_bg.png);
    padding: 120px 0 0;
    background-size: cover;
  }

  #access .section_inner {
    max-width: none;
  }

  #access p {
    padding: 0px 6vw 14px;
    font-weight: 500;
  }

  footer {
    container-type: inline-size;
    container-name: footer;
  }

  .footer_inner {
    flex-direction: row;
    gap: 80px;
    align-items: center;
    justify-content: flex-start;
    max-width: none;
    width: 100%;
    padding: 60px 4vw 40px;
    max-width: 1800px;
  }

  .footer_logo {
    width: 100%;
    max-width: 400px;
    margin: 0;
  }

  .footer_body {
    width: 100%;
    max-width: 880px;
  }

  .footer_btnWrap {
    max-width: 400px;
  }

  .footer_nav {
    width: 100%;
    padding: 0;
  }

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

  .footer_nav ul li {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    position: relative;
    font-size: 1.6rem;
  }

  @container footer (max-width: 1300px) {
    .footer_inner {
      flex-direction: column;
    }
  }

  #go_top {
    width: 80px;
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 900;
  }
}

/* pcスタイル */
@media screen and (min-width: 1400px) {
  .wide_only {
    display: block;
    text-align: left;
    padding: 4px 60px 0 0;
    line-height: 1.5;
  }

  .header_right-upper {
    display: flex;
    flex-direction: row;
    color: #75dc5b;
  }
}

/* 下層共通 */
.MV_under-ttl h2 {
  position: absolute;
  font-size: 4.0rem;
  width: 100%;
  padding: 0 6vw;
  color: #ffffff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#company_wrapper #access,
#reform_wrapper #access,
#works_wrapper #access,
#exterior_wrapper #access,
#contact_wrapper #access {
  padding: 0;
}

#company_wrapper #access .section_ttl,
#reform_wrapper #access .section_ttl,
#works_wrapper #access .section_ttl,
#exterior_wrapper #access .section_ttl,
#contact_wrapper #access .section_ttl,
#company_wrapper #access p,
#reform_wrapper #access p,
#works_wrapper #access p,
#exterior_wrapper #access p,
#contact_wrapper #access p {
  display: none;
}

#company_bg {
  background-image: url(../img/sp_company_bg@2x.png);
  background-size: cover;
  background-position: center bottom;
}

#company_01 {
  padding: 120px 0 0;
}

#company_01 .content_lead p {
  padding-bottom: 20px;
  line-height: 2.2;
}

#company_01 dl {
  padding-bottom: 80px;
}

/* pcスタイル */
@media screen and (min-width: 960px) {
  .MV_under-ttl h2 {
    font-size: 6.0rem;
  }

  #company_bg {
    background-image: url(../img/company_bg@2x.png);
    background-size: cover;
    background-position: center bottom;
  }

  #company_01 {
    padding: 160px 6vw 240px;
  }

  #company_01 .section_ttl {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
  }

  #company_01 .content_lead {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 0 100px;
  }

  #company_01 .content_lead p {
    padding-bottom: 40px;
  }

  #company_01 .content {
    container-type: inline-size;
    container-name: company;
  }

  #company_01 .contentInner {
    gap: 80px;
    justify-content: space-between;
  }

  #company_01 dl {
    padding-bottom: 0s;
  }

  #company_01 dt {
    width: 180px;
  }

  #company_01 dd {
    width: calc(100% - 180px);
  }

  @container company (max-width: 1300px) {
    #company_01 .contentInner {
      flex-direction: column-reverse
    }

    #company_01 dl {
      max-width: 700px;
      margin: 80px auto;
    }

    #company_01 .content_textWrap {
      width: 100%;
    }
  }
}

#reform_bg {
  background-image: url(../img/sp_top_bg.png);
  background-size: cover;
  background-position: center bottom;
}

#reform_01 {
  padding: 120px 0 200px;
}

#reform_01 p {
  font-size: 1.6rem;
}

#reform_01 .contentInner {
  padding: 40px 0 120px;
}

/* pcスタイル */
@media screen and (max-width: 480px) {
  .MV_under-ttl h2 {
    font-size: 8vw;
  }

}

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


  #reform_bg {
    background-image: url(../img/reform_bg@2x.png);

  }

  #reform_01 {
    padding: 160px 6vw 240px;
  }

  #reform_01 .section_ttl.right h2 {
    margin: 0 0 0 auto;
  }

  #reform_01 .contentInner {
    max-width: 1440px;
    margin: 0 auto 80px;
    flex-direction: row-reverse;
    gap: 60px;

  }

  #reform_01 .contentInner.reverse {
    flex-direction: row;
  }

  #reform_01 .content_textWrap {
    width: 50%;
    max-width: 580px;
  }

}

#exterior_bg {
  background-image: url(../img/sp_top_bg.png);
background-size: cover;
    background-position: center bottom;
}

#exterior_01 {
  padding: 120px 0 200px;
}

#exterior_01 .section_lead {
  font-size: 1.8rem;
  padding-bottom: 0;
}

#exterior_01 .content_item--text {
  text-align: justify;
  padding: 10px 10px 80px;
}

@media screen and (max-width: 480px) {
  #exterior_01 .content_itemWrap p.ft_30 {
    font-size: 6vw;
  }
}

@media screen and (min-width: 960px) {
  #exterior_bg {
    background-image: url(../img/reform_bg@2x.png);

  }

  #exterior_01 {
    padding-top: 220px;
  }

  #exterior_01 .section_lead {
    text-align: center;
  }

  #exterior_01 .content_itemWrap {
    gap: 80px;
  }

  #exterior_01 .content_item {
    width: 100%;
  }
  #exterior_01 .content {
    container-type: inline-size;
    container-name: exterior;
  }

  #exterior_01 .content_item {
    width: 100%;
  }

  @container exterior (max-width: 1300px) {
    #exterior_01 .content_itemWrap {
      flex-wrap: wrap;
      padding: 100px 6vw;
    }

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

#works_bg {
  background-image: url(../img/sp_top_bg.png);
  background-size: cover;
  background-position: center bottom;
}

#works_01 {
  padding: 120px 0 200px;
}

#works_01 .section_lead {
  font-size: 1.8rem;
  padding-bottom: 0;
}
#works_01 .content_itemWrap {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
#works_01 .content_text {
  text-align: justify;
  padding: 10px;
}
#works_01 .slide a:hover{
opacity: 1;
}
.slide-arrow {
  bottom: 0;
  cursor: pointer;
  margin: auto;
  position: absolute;
  top: 0;
  width: 20px;
  z-index: 50;
}

.prev-arrow {
  left: 10px;
}

.next-arrow {
  right: 10px;
}




@media screen and (min-width: 960px) {
  #works_bg {
    background-image: url(../img/reform_bg@2x.png);

  }

  #works_01 {
    padding-top: 220px;
  }

  #works_01 .section_lead {
    text-align: center;
  }
  #works_01 .content_itemWrap {
    flex-wrap: wrap;
 flex-direction: row;
  }
  

  #works_01 .content_item {
    width: calc((100% - 160px)/ 3);
  }
  #works_01 .content {
    container-type: inline-size;
    container-name: works;
  }



  @container works (max-width: 1300px) {
    #works_01 .content_itemWrap {
      flex-wrap: wrap;
      padding: 100px 6vw;
    }

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

/* contact */
#contact_bg {
  background-image: url(../img/sp_top_bg.png);
  background-size: cover;
  background-position: center bottom;
}

#contact_01 {
  padding: 120px 0 200px;
}
#contact_01 .section_inner {
 gap: 40px;
}


#contact_01 .section_ttl {
  font-size: 3.0rem;
  padding-bottom: 40px;
}

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



.inquiry_tel {
font-size: 4.0rem;
  margin: 20px auto;
}

#contact_01 .inquiry_tel.tel a {
line-height: 1;
position: relative;
display: block;
padding-left: 20px;
}
#contact_01 .inquiry_tel.tel a::before {
  content: "";
  position: absolute;
  left: -20px;
  height: 34px;
  width: 35px;
  top: 50%;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/tel_g@2x.png);
  z-index: 5;
}

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

#contact_01 .must {
  color: #ff0000;
  margin-left: 20px;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}


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

.form_item--ttl {
  padding: 0 0 20px 8px;
  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 8px;
  margin: 0 0 20px 0;
}

.form_item:nth-of-type(5) .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: #00ac9a;
  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 .section_ttl {
padding: 0;
    margin-bottom: 0;
  }

  #contact_01   .section_lead span {
    font-size: 1.8rem;
}

  .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(5) .form_item--ttl {
    border-bottom: none;
    margin: 0 0 auto;
  }

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

  .form_item--input.big {
    padding: 16px 60px 15px 30px;
  }
}
/* モーダル */

.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%;
  max-width: 600px;
  background-color: #fefefe;
  padding: 10px;
}


.modal-close {
  position: absolute;
  top: -25px;
  right: 0px;
  font-size: 20px;
  cursor: pointer;
  font-weight: 900;
  color: #ffffff;
}
@media screen and (min-width: 960px) {

.modal-content {
 
  padding: 20px;
}
  .modal-close {
  position: absolute;
  top: -50px;
  right: 0px;
  font-size: 40px;
  cursor: pointer;
  font-weight: 900;
  color: #ffffff;
}
}