@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: 500;
  font-style: normal;
  font-size: min(3.7vw, 1.8rem);
  letter-spacing: 0.04rem;
  line-height: 2;
  text-align: center;
}

h2,
h3 {
  font-weight: 900
}

h4 {
  font-weight: 500
}

a {
  color: #333333;
}

a:hover {
  opacity: 0.7;
}

a.clarity:hover {
  opacity: 1;
}

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

.white {
  color: #ffffff;
}

.blue {
  color: #0a0142;
}

.red {
  color: #ff0000;
}

.l_green {
  color: #76b322;
}

.left {
  text-align: justify;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
}

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

.ft_90 {
  font-size: min(18vw, 9.0rem);
}

.ft_80 {
  font-size: min(16.6vw, 8.0rem);
}

.ft_40 {
  font-size: min(8.3vw, 4.0rem);
}

.ft_34 {
  font-size: min(7vw, 3.6rem);
}

.ft_30 {
  font-size: min(6.2vw, 3.0rem);
}

.ft_28 {
  font-size: min(5.8vw, 2.8rem);
}

.ft_24 {
  font-size: min(5vw, 2.4rem);
}

.ft_20 {
  font-size: min(4.1vw, 2.0rem);
}

.ft_18 {
  font-size: min(3.7vw, 1.8rem);
}

.ft_16 {
  font-size: min(3.3vw, 1.6rem);
}

.black {
  font-weight: 900;
}

.bold {
  font-weight: 700;
}

.fadeInUpTrigger {
  opacity: 0;
}

.flex {
  display: flex;
  flex-direction: column;
}

.flex.row {
  flex-direction: row;
  justify-content: space-between;
}

header {
  width: 100%;
  height: 60px;
  position: relative;
  top: 0;
  left: 0;
  z-index: 50;
  background-image: url(../img/header_bg@2x.png);
  background-size: cover;
}

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

header .logo {
  width: 160px;
}

.header_right {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ham_menu */
.ham_btn {
  position: relative;
  cursor: pointer;
  width: 60px;
  height: 60px;
  z-index: 999;
  margin: 0;
}

.ham_btn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 15px;
  height: 1px;
  background: #ffffff;
  width: 30px;
  top: 30px;
}

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

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

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

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

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

.nav_wrap {
  position: fixed;
  z-index: 100;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100%;
  transition: all 0.6s;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background-color: #0a0142;
  overflow-y: auto;
  padding: 60px 20px;
}

.nav_wrap ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 20px;
}

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

.nav_wrap li a {
  color: #ffffff;
  text-decoration: none;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.nav_wrap.show {
  right: 0;
}

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

.nav_wrap .sp_menu_btnWrap {
  gap: 40px;
  justify-content: center;
}

.tel a {
  color: #ffffff;
  display: block;
}

/* MV */
.MV {
  position: relative;
  border-bottom: 25px solid #0f0064;
}

.MV_text {
  width: 90%;
  position: absolute;
  left: 5%;
  bottom: 10%;
  font-size: min(4vw, 3.0rem);
  text-align: justify;
  line-height: 1.5;
  text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.4rem;
}

/* 共通 */
section {
  position: relative;
  padding: 80px 0 60px;
  background-color: #ffffff;
}

.section_ttl {
  line-height: 1.2;
  color: #f2f1f8;
  width: 90%;
  margin: 0 auto;
  padding-bottom: 40px;
  letter-spacing: 0.02rem;
}

.section_ttl span {
  display: block;
  font-weight: 500;
}

#top_news {
  padding-top: 0;
}

.news_outer {
  width: 95%;
  margin-left: 5%;
  background-color: #0a0142;
  border-radius: 0 0 0 80px;
  padding: 20px 10% 80px;
}

.news_list_wrap li {
  padding: 40px 10px;
  position: relative;
}

.news_list_wrap li::after {
  content: "";
  width: 100%;
  height: 2px;
  background-image: url(../img/line@2x.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.news_list_wrap a {
  color: #ffffff;
}

.content_text {
  padding: 20px 0 40px;
  width: 90%;
  margin: 0 auto;
}

.more a {
  width: 80%;
  max-width: 290px;
  height: 62px;
  border-radius: 31px;
  border: 1px solid #0a0142;
  color: #0a0142;
  font-size: 2.2rem;
  font-weight: 700;
  margin: 40px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 120px;
  position: relative;
  line-height: 1;
}

.more a::after {
  content: "";
  width: 105px;
  height: 7px;
  background-image: url(../img/arrow@2x.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  z-index: 1;
}

.content {
  padding-bottom: 80px;
}

#top_service {
  background-color: #0a0142;
}

#top_service .op {
  opacity: 0.1;
  font-weight: 900;
}

#top_service .content {
  width: 90%;
  margin: 0 auto;
}

#top_service .content_textWrap {
  background-color: #ffffff;
  padding: 20px;
}

#top_service .content_textWrap ul li {
  list-style: "◆";
  padding: 20px 0;
  margin-left: 20px;
}

#top_service .content_textWrap ul.child li {
  list-style: disc;
  padding: 10px 0;
  margin: 0;
}

#top_service .last {
  list-style: disc;
}

.more.white a {
  border: 1px solid #ffffff;
  color: #ffffff;
}

.more.white a::after {
  background-image: url(../img/arrow_w@2x.png);
}

#top_works {
  padding-top: min(46vw, 250px);
}

#top_works::before {
  content: "";
  width: 95%;
  height: 42vw;
  max-width: 560px;
  max-height: 207px;
  background-image: url(../img/top_deco01@2x.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left bottom;
  position: absolute;
  top: 4px;
  right: 0;
  z-index: 1;
}

#top_works .section_lead {
  width: 90%;
  margin: 0 auto;
  padding: 20px 0;
}

#top_works .content {
  width: 90%;
  margin: 0 auto;
  gap: 120px;
  padding-top: 40px;
}

#top_works .content_imgWrap {
  gap: 20px;
}

#top_works .content_img {
  position: relative;
}

#top_works .content_img::after {
  content: "";
  height: 7.5vw;
  width: 30vw;
  max-width: 145px;
  max-height: 36px;
  background-image: url(../img/before@2x.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left bottom;
  position: absolute;
  bottom: 10px;
  left: 0;
  z-index: 1;
}

#top_works .content_img.after::after {
  background-image: url(../img/after@2x.png);
}

#top_company {
  background-color: #0a0142;
}

#top_company .op {
  opacity: 0.1;
  font-weight: 900;
}

dl {
  width: 90%;
  margin: 40px auto 0;
}

dl a {
  color: #ffffff;
}

dt,
dd {
  padding: 14px 2%;
  border-bottom: 1px solid #ffffff;
}

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

#contact .op {
  opacity: 0.25;
  font-weight: 900;
}

#contact .section_lead {
  width: 90%;
  text-align: justify;
  margin: 0 auto;
  padding: 20px 0 60px;
  display: inline-block;
}

.contact_btn--wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 0px auto;
  width: 100%;
}

.contact_btn {
  position: relative;
  width: 90%;
  max-width: 390px;
  height: 86px;
  border-radius: 43px;
  margin: 0px auto;
}

.contact_btn a {
  width: 100%;
  height: 100%;
  border-radius: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0f0064;
  position: relative;
  color: #ffffff;
  letter-spacing: 0.1rem;
  padding-left: 40px;
}

.contact_btn a:hover {
  opacity: 1;
}

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

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

#contact .tel a::before {
  content: "";
  width: 40px;
  height: 40px;
  background-image: url(../img/tel@2x.png);
  left: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
}

#contact .mail a::before {
  content: "";
  position: absolute;
  left: 38px;
  height: 27px;
  width: 36px;
  top: 50%;
  background-image: url(../img/mail@2x.png);
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
}
#contact .tel.ft_40{
  font-size: 4.0rem;
}
#access {
  padding: 0;
}

#access iframe {
  display: block;
}

footer {
  background-color: #ffffff;
  padding: 40px 0 0;
  position: relative;
  overflow: hidden;
}

.footer_inner {
  width: 90%;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

footer .sponsor_Wrap {
  margin: 0 auto;
}

.footer_inner .item01 {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

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

footer ul {
  width: 90%;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

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

.cr {
  padding: 10px;
  background-color: #0f0064;
  color: #ffffff;
  font-weight: 700;
}

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

  .pc_none {
    display: none;
  }

  .ft_90 {
    font-size: min(7.4vw, 14.3rem)
  }

  .ft_40 {
    font-size: min(3vw, 6.0rem)
  }

  header {
    height: 120px;
    color: #ffffff;
  }

  .header_inner {
    container-type: inline-size;
    container-name: header;
    justify-content: space-between;
    gap: 20px;
  }

  header h1 {
    width: calc(100% - 640px);
    max-width: 720px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
  }

  header h1 p {
    padding-top: 8px;
    font-size: 1.4rem;
    line-height: 1.5;
  }

  header .logo {
    width: 300px;
  }

  .header_right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: calc(100% - 200px);
    max-width: 1070px;
    height: 100%;
  }

  .header_mid {
    width: calc(100% - 240px);
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    gap: 20px;
    padding-right: 20px;
  }

  header .tel {
    line-height: 1;
  }

  .pc_nav {
    width: 100%;
  }

  .pc_nav ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .pc_nav ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    height: 100%;
    color: #ffffff;
    line-height: 1;
  }

  header .mail_btn a {
    width: 120px;
    height: 120px;
    position: relative;
    background-color: #0a0142;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    padding-top: 40px;
  }

  header .mail_btn a::before {
    content: "";
    position: absolute;
    left: 50%;
    height: 27px;
    width: 36px;
    top: 30px;
    background-image: url(../img/mail@2x.png);
    transform: translateX(-50%);
    background-size: contain;
    background-repeat: no-repeat;
  }

  header .mail_btn a:hover {
    opacity: 1;
  }

  header .mail_btn a::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0);
    position: absolute;
    transition: background-color 0.3s;
    z-index: 10;
    left: 0;
    top: 0;
  }

  header .mail_btn a:hover::after {
    background-color: rgba(255, 255, 255, 0.3);
  }

  @container header (max-width: 1400px) {
    header h1 p.sp_none {
      display: none;
    }

    .mail_btn {
      display: none;
    }

    .header_mid {
      width: 100%;
    }
  }

  .MV_text {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .MV_text img {
 max-width: 900px;
  }

  .flex {
    flex-direction: row;
    justify-content: space-between;
  }

  #top_news {
    container-type: inline-size;
    container-name: top_news;
  }

  .news_outer {
    display: flex;
    background: none;
    background-image: url(../img/news_bg@2x.png);
    background-size: cover;
    background-position: top left;
    padding-top: 80px;
    padding-left: 10%;
    gap: 40px;
  }

  .news_outer h3 {
    display: inline-block;
    width: auto;
    text-align: left;
    width: 300px;
  }

  .news_list_wrap li {
    padding-top: 0;
    margin-bottom: 40px;
    max-width: 1100px;
  }

  .news_list_wrap a {
    display: flex;
    gap: 40px;
  }

  @container top_news (max-width: 1300px) {
    .news_outer {
      padding-left: 10%;
    }

    .news_list_wrap a {
      flex-direction: column;
    }
  }

  .section_ttl {
    text-align: center;
    width: auto;
    display: inline-block;
    margin: 0 auto 0 5%;
  }

  #top_business {
    text-align: left;
  }

  #top_business .content_textWrap {
    width: 50%;
  }

  #top_business .content_text {
    max-width: 700px;
    margin: 0 0 0 auto;
  }

  #top_service {
    text-align: right;
  }

  #top_service .section_ttl {
    margin: 0 5% 0 auto;
  }

  #top_service span {
    text-align: center;
  }

  #top_service .content {
    flex-direction: row-reverse;
    align-items: center;
    width: 100%;
    padding-right: 3%;
    gap: 80px;
  }

  #top_service .content_textWrap {
    width: 50%;
    position: relative;
    padding-bottom: 40px;
    padding-right: 5%;
  }

  #top_service .content_textWrap::before {
    content: "";
    width: 20%;
    height: 100%;
    background-color: #ffffff;
    position: absolute;
    top: 50%;
    left: -20%;
    transform: translateY(-50%);
    z-index: 1;
  }

  #top_service .content_img {
    position: relative;
    z-index: 2;
    width: 50%;
  }

  #top_works {
    padding-top: 140px;
    text-align: left;
  }

  #top_works::before {
    top: 100px;
    right: 5%;
  }

  #top_works .section_ttl {
    text-align: right;
  }

  #top_works .section_lead {
    max-width: 1000px;
  }

  #top_works .content {
    flex-direction: column;
    gap: 80px;
    max-width: 1440px;
    margin: 80px auto 0;
  }

  #top_works .content_imgWrap {
    justify-content: flex-start;
    gap: 60px;
  }

  #top_works .content_imgWrap:nth-of-type(2) {
    justify-content: flex-end;
  }

  #top_works .content_img::after {
    left: -10px;
  }

  #top_company {
    text-align: right;
    container-type: inline-size;
    container-name: top_company;
  }

  #top_company .section_ttl {
    margin-right: 5%;
  }

  #top_company .section_ttl .right {
    text-align: center;
  }

  #top_company .content {
    margin: 0 auto;
    width: 90%;
    max-width: 1440px;
    flex-direction: row-reverse;
    gap: 80px;
    align-items: center;
  }

  #top_company .content_img {
    width: 50%;
  }

  .description-item {
    display: flex;
  }

  dl {
    width: 55%;
    max-width: 570px;
    margin-top: 0;
  }

  dt {
    width: 168px;
  }

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

  @container top_company (max-width: 1200px) {
    #top_company .content {
      flex-direction: column;
    }

    #top_company dl {
      width: 100%;
    }

    #top_company .content_img {
      width: 80%;
    }
  }

  #contact .section_ttl {
    text-align: right;
    padding: 0;
  }

  .contact_head {
    align-items: flex-end;
    padding-bottom: 120px;
  }

  #contact .section_lead {
    padding: 0;
    padding-left: 3%;
  }

  .contact_btn--wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-width: 880px;
  }

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

  .footer_inner--left {
    flex-direction: row-reverse;
    align-items: center;
  }

  .footer_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: none;
    margin-bottom: 20px;
  }

  .footer_body {
    width: 500px;
  }

  .footer_inner .footer_logo {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  footer nav {
    width: 30%;
    max-width: 800px;
    margin: 0 auto;
  }

  footer ul {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-start;
    gap: 20px 60px;
    margin: 0;
  }

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

  @container footer (max-width: 1700px) {
    .footer_inner--left {
      flex-direction: row;
    }

    .footer_inner {
      display: flex;
      flex-direction: column;
    }

    footer nav {
      width: 90%;
      max-width: 800px;
      margin: 0 auto;
    }

    footer ul {
      width: 100%;
      flex-wrap: nowrap;
      justify-content: space-between;
      gap: 20px;
    }
  }
}

/* 下層共通 */
.MV_under-ttl {
  position: absolute;
  font-size: 3.0rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.in_work--text {
  font-weight: 700;
  font-size: min(5vw, 60px);
  padding: 10vw 0;
}

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