/*------------------------------------------------------------------------------ 
  Base
------------------------------------------------------------------------------*/
html {
  font-size: 62.5%;
  line-height: 1.8; }

[v-cloak] {
  display: none; }

*,
*:after,
*:before {
  box-sizing: border-box; }

body {
  background: #fff;
  color: #0b1a18;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 16px;
  letter-spacing: .08em;
  line-height: 1.8; }

body.is-fixed {
  overflow: hidden; }

a {
  color: #0b1a18;
  text-decoration: none;
  transition: .3s; }
  a:hover {
    opacity: .8; }

h2 {
  font-size: clamp(23px, 2vw, 27px); }

h3 {
  font-size: clamp(21px, 2vw, 25px); }

h4 {
  font-size: clamp(19px, 2vw, 22px); }

h5 {
  font-size: clamp(18px, 2vw, 20px); }

h6 {
  font-size: clamp(17px, 2vw, 18px); }

ul {
  list-style: none;
  margin: 0;
  padding: 0; }

.disc {
  list-style: disc;
  padding-left: clamp(20px, 3vw, 40px); }

ol {
  padding-left: clamp(25px, 3vw, 45px); }

.in-bl {
  display: inline-block; }

.en {
  font-family: "Roboto", sans-serif; }

.uppercase {
  text-transform: uppercase; }

img {
  height: auto;
  vertical-align: bottom;
  width: 100%; }

.container {
  padding: 0 20px; }
  @media screen and (min-width: 768px) {
    .container {
      margin: 0 auto;
      max-width: 1300px;
      padding: 0;
      width: 80%; } }

@media screen and (min-width: 1025px) {
  .sp {
    display: none !important; } }

@media screen and (max-width: 1024px) {
  .pc {
    display: none !important; } }

.grecaptcha-badge {
  visibility: hidden; }

/*------------------------------------------------------------------------------ 
  Common
------------------------------------------------------------------------------*/
.sec-ttl {
  line-height: 1.6; }
  .sec-ttl .en {
    align-items: center;
    color: #1a403b;
    display: flex;
    font-size: clamp(18px, 2vw, 20px);
    font-weight: 500;
    gap: 7px;
    text-transform: uppercase; }
  .sec-ttl .jp {
    font-size: clamp(24px, 3vw, 27px);
    font-weight: 500; }

.anchor {
  margin-top: -80px;
  padding-top: 80px; }
  @media (min-width: 1025px) {
    .anchor {
      margin-top: -160px;
      padding-top: 160px; } }

/* Flex
-----------------------------------------------------------*/
.flex {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  row-gap: clamp(20px, 3vw, 40px); }

.between {
  justify-content: space-between; }

.around {
  justify-content: space-around; }

/* Pc Flex
-----------------------------------------------------------*/
@media screen and (min-width: 1025px) {
  .pc-flex {
    align-items: center;
    display: flex;
    flex-wrap: wrap; } }

@media screen and (min-width: 1025px) {
  .pc-between {
    justify-content: space-between; } }

@media screen and (min-width: 1025px) {
  .pc-around {
    justify-content: space-around; } }

/* Button
-----------------------------------------------------------*/
.btn a {
  background: #fff;
  border-radius: 3px;
  border: 2px solid #1f665e;
  display: block;
  font-size: clamp(17px, 2vw, 18px);
  font-weight: 500;
  margin: 0 auto;
  max-width: 300px;
  padding: 15px;
  text-align: center;
  width: 90%; }
  .btn a:hover {
    background: #1f665e;
    color: #fff;
    opacity: 1; }

.arrow-btn {
  text-align: right; }
  .arrow-btn a {
    font-size: clamp(17px, 2vw, 18px);
    font-weight: 500;
    padding-right: clamp(65px, 7vw, 70px);
    position: relative; }
    .arrow-btn a:hover {
      opacity: 1; }
      .arrow-btn a:hover:after {
        transform: translate(3px, -50%); }
    .arrow-btn a:before, .arrow-btn a:after {
      content: '';
      position: absolute;
      top: 50%;
      transition: .3s; }
    .arrow-btn a:before {
      background: #fff;
      border: 1.5px solid #bf1d28;
      border-radius: 50%;
      height: 50px;
      right: 0;
      transform: translateY(-50%);
      width: 50px; }
      @media screen and (min-width: 1025px) {
        .arrow-btn a:before {
          height: 55px;
          width: 55px; } }
    .arrow-btn a:after {
      background: #bf1d28;
      height: 18px;
      right: 15px;
      transform: translateY(-50%);
      width: 18px;
      mask-image: url(../img/icon/arrow.svg) no-repeat center/cover;
      -webkit-mask: url(../img/icon/arrow.svg) no-repeat center/cover; }
      @media screen and (min-width: 1025px) {
        .arrow-btn a:after {
          height: 20px;
          right: 17px;
          width: 20px; } }

/* Map
-----------------------------------------------------------*/
.map {
  height: 0;
  margin-top: clamp(35px, 5vw, 50px);
  padding-top: 70%;
  position: relative; }
  @media screen and (min-width: 768px) {
    .map {
      padding-top: 40%; } }
  @media screen and (min-width: 1025px) {
    .map {
      padding-top: 35%; } }
  @media screen and (min-width: 1280px) {
    .map {
      height: 350px;
      padding-top: 0; } }
  .map iframe {
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%; }

/* Tel Icon
-----------------------------------------------------------*/
.tel-icon a {
  display: block; }
  .tel-icon a .num {
    color: #1a403b;
    position: relative; }
    .tel-icon a .num:before, .tel-icon a .num:after {
      content: '';
      position: absolute;
      top: 50%;
      transform: translateY(-50%); }
    .tel-icon a .num:before {
      background: #1a403b;
      mask-image: url(../img/icon/tel.svg) no-repeat center/cover;
      -webkit-mask: url(../img/icon/tel.svg) no-repeat center/cover; }
    .tel-icon a .num:after {
      border: 1.5px solid #1a403b;
      border-radius: 50%;
      left: 0; }
  .tel-icon a .time {
    display: block; }

/* Box List
-----------------------------------------------------------*/
.box-li {
  display: grid;
  gap: 5px;
  grid-template-columns: 1fr; }
  @media (min-width: 550px) {
    .box-li {
      grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1280px) {
    .box-li {
      grid-template-columns: repeat(3, 1fr); } }
  @media (min-width: 1440px) {
    .box-li {
      grid-template-columns: repeat(4, 1fr); } }
  .box-li li {
    align-items: center;
    border: 1px solid #616665;
    display: flex;
    justify-content: center;
    padding: 20px 10px; }

/* Image Area
-----------------------------------------------------------*/
.img-area {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: clamp(45px, 6vw, 60px); }
  @media (min-width: 768px) {
    .img-area {
      grid-template-columns: repeat(3, 1fr); } }
  @media (min-width: 1280px) {
    .img-area {
      grid-template-columns: repeat(4, 1fr); } }
  .img-area img {
    aspect-ratio: 7 / 4;
    border-radius: 3px;
    object-fit: cover; }

@media (min-width: 768px) and (max-width: 1279px) {
  .business_img-area {
    grid-template-columns: repeat(2, 1fr); } }
.business_img-area img {
  aspect-ratio: 4 / 3; }

/* Business List
-----------------------------------------------------------*/
.business-li li {
  padding-left: 23px;
  position: relative; }
  .business-li li:before {
    background: #facb32;
    border-radius: 50%;
    content: '';
    height: 45px;
    left: 0;
    opacity: .25;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    z-index: -1; }

/*------------------------------------------------------------------------------ 
  Header
------------------------------------------------------------------------------*/
header {
  background: #fff;
  padding: 0 15px; }
  @media (max-width: 1024px) {
    header {
      align-items: center;
      height: 85px;
      display: flex;
      max-width: calc(100% - 75px); } }
  @media screen and (min-width: 1025px) {
    header {
      left: 0;
      padding: 0;
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 100; } }
  header h1,
  header .logo {
    font-size: 2em;
    margin: 0; }
    header h1 a,
    header .logo a {
      display: flex; }
      header h1 a img,
      header .logo a img {
        max-width: 100%;
        width: clamp(270px, 28vw, 300px); }
  @media (min-width: 1025px) {
    header #head-in {
      margin: auto;
      max-width: 1300px;
      padding: 12px 25px;
      width: 95%; } }
  header #head-in .tel-icon {
    line-height: 1.4; }
    header #head-in .tel-icon a .num {
      font-size: 28px;
      font-weight: bold;
      padding-left: 48px; }
      header #head-in .tel-icon a .num:before {
        height: 21px;
        left: 9px;
        width: 21px; }
      header #head-in .tel-icon a .num:after {
        height: 40px;
        width: 40px; }
    header #head-in .tel-icon a .time {
      font-size: 14px;
      text-align: right; }
  @media screen and (min-width: 1025px) {
    header nav {
      background: #1a403b;
      padding: 7px 0; } }
  header nav input[type="checkbox"] {
    display: none; }
  header nav input[type="checkbox"]:checked ~ .nav-btn span:first-of-type {
    left: 43%;
    top: 13px;
    transform: rotate(-45deg) translateX(-50%); }
  header nav input[type="checkbox"]:checked ~ .nav-btn span:nth-of-type(2) {
    background: transparent; }
  header nav input[type="checkbox"]:checked ~ .nav-btn span:nth-of-type(3) {
    left: 44%;
    top: 34px;
    transform: rotate(45deg) translateX(-50%); }
  header nav input[type="checkbox"]:checked ~ #head-nav {
    opacity: 1;
    visibility: visible; }
  header nav .nav-btn {
    background: #1a403b;
    border-radius: 50%;
    height: 65px;
    position: fixed;
    right: 10px;
    top: 10px;
    width: 65px;
    z-index: 100; }
    @media screen and (min-width: 1025px) {
      header nav .nav-btn {
        display: none; } }
    header nav .nav-btn span {
      border-radius: 3px;
      display: block;
      left: 50%;
      position: absolute;
      transform: translateX(-50%); }
      header nav .nav-btn span:not(:last-of-type) {
        background: #fff;
        height: 2px;
        transition: .3s;
        width: 30px; }
      header nav .nav-btn span:first-of-type {
        top: 15px; }
      header nav .nav-btn span:nth-of-type(2) {
        top: 24px; }
      header nav .nav-btn span:nth-of-type(3) {
        top: 33px; }
      header nav .nav-btn span:last-of-type {
        bottom: 5px;
        color: #fff;
        font-size: 11px; }
  @media screen and (max-width: 1024px) {
    header nav #head-nav {
      background: #fff;
      height: 100dvh;
      left: 0;
      opacity: 0;
      overflow-x: hidden;
      overflow-y: scroll;
      padding: 0 15px 45px;
      position: fixed;
      top: 0;
      transition: opacity .3s, visibility .3s;
      visibility: hidden;
      width: 100%;
      z-index: 99; } }
  @media screen and (min-width: 1025px) {
    header nav #head-nav {
      margin: auto;
      max-width: 1500px;
      width: 95%; } }
  header nav #head-nav .logo {
    align-items: center;
    height: 85px;
    display: flex; }
  @media screen and (max-width: 1024px) {
    header nav #head-nav #nav {
      padding-top: 30px; } }
  @media (min-width: 1025px) {
    header nav #head-nav #nav {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      line-height: 1.5;
      margin: auto;
      width: 90%; } }
  @media (min-width: 1025px) {
    header nav #head-nav #nav li {
      border-right: 1px solid #fff;
      text-align: center; }
      header nav #head-nav #nav li:first-of-type {
        border-left: 1px solid #fff; } }
  header nav #head-nav #nav li a {
    display: block;
    font-size: 17px;
    padding: 20px; }
    @media screen and (min-width: 1025px) {
      header nav #head-nav #nav li a {
        color: #fff;
        font-size: 16px;
        padding: 0; } }
    header nav #head-nav #nav li a:hover {
      opacity: 1; }
      header nav #head-nav #nav li a:hover .uppercase {
        transform: translateY(-2px); }
    @media screen and (min-width: 1025px) {
      header nav #head-nav #nav li a .uppercase {
        display: block;
        font-size: 12px;
        font-weight: 500;
        text-align: center;
        transition: transform .3s; } }
  header nav #head-nav #nav .current a {
    position: relative; }
    header nav #head-nav #nav .current a:before {
      background: #fff;
      bottom: 0;
      content: '';
      height: 1px;
      left: 50%;
      position: absolute;
      transform: translateX(-50%);
      width: 75px;
      width: 30px; }
    header nav #head-nav #nav .current a .uppercase {
      transform: translateY(-3px); }
  header nav #head-nav #nav .tel a {
    line-height: 1.5;
    margin: 40px auto 0;
    padding: 12px; }
    header nav #head-nav #nav .tel a .num {
      font-size: 22px;
      font-weight: 500; }
      header nav #head-nav #nav .tel a .num .uppercase {
        font-size: 16px; }
    header nav #head-nav #nav .tel a .time {
      display: block;
      font-size: 14px;
      font-weight: 400; }

/*------------------------------------------------------------------------------ 
  Header Image
------------------------------------------------------------------------------*/
#top-head {
  position: relative; }
  @media screen and (min-width: 1025px) {
    #top-head {
      margin-top: 138px; } }
  #top-head .hero {
    height: 100%;
    object-fit: cover; }
  #top-head .txt {
    position: absolute;
    right: 6%;
    top: 6%;
    width: clamp(230px, 45vw, 520px); }

/*------------------------------------------------------------------------------ 
  Top Page
------------------------------------------------------------------------------*/
#top-page section {
  padding: clamp(90px, 11vw, 120px) 0; }
  #top-page section:nth-of-type(odd) {
    background: #f2f7f7; }
  #top-page section .sec-ttl {
    margin: 0 0 clamp(45px, 6vw, 60px); }
  #top-page section .arrow-btn {
    margin-top: clamp(50px, 6vw, 70px); }
#top-page #philosophy .txt {
  background: #fff;
  border-radius: 5px;
  font-size: clamp(17px, 2vw, 18px);
  font-weight: 500;
  padding: clamp(15px, 2vw, 30px) clamp(30px, 5vw, 60px); }
  @media (max-width: 1024px) {
    #top-page #philosophy .txt p br {
      display: none; } }
#top-page #business .intro {
  font-size: clamp(17px, 2vw, 18px); }
#top-page #business .business-li {
  margin: clamp(45px, 6vw, 75px) auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 45px 0;
  max-width: 1200px; }
  @media (min-width: 650px) {
    #top-page #business .business-li {
      grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1025px) {
    #top-page #business .business-li {
      grid-template-columns: repeat(3, 1fr); } }
  @media (min-width: 1280px) {
    #top-page #business .business-li {
      grid-template-columns: repeat(4, 1fr); } }
  #top-page #business .business-li li {
    font-size: clamp(17px, 2vw, 18px);
    font-weight: 500; }
#top-page #about .sec-ttl {
  margin-bottom: clamp(20px, 3vw, 30px); }
#top-page #about .ttl-area {
  border-bottom: 1px solid #ced9d7;
  margin-bottom: clamp(60px, 8vw, 80px);
  padding-bottom: 50px; }
  @media screen and (min-width: 550px) {
    #top-page #about .ttl-area {
      padding-bottom: clamp(30px, 4vw, 50px); } }
  #top-page #about .ttl-area .arrow-btn {
    margin: 0; }
    @media screen and (max-width: 549px) {
      #top-page #about .ttl-area .arrow-btn {
        width: 100%; } }
#top-page #about .about-li li {
  width: 100%; }
  @media screen and (min-width: 768px) {
    #top-page #about .about-li li {
      width: 32%; } }
  #top-page #about .about-li li:first-of-type a:before {
    background: #1a403b; }
  #top-page #about .about-li li:nth-of-type(2) a:before {
    background: url(../img/top/about-1.jpg) no-repeat center/cover; }
  #top-page #about .about-li li:last-of-type a:before {
    background: url(../img/top/about-2.jpg) no-repeat center/cover; }
  #top-page #about .about-li li a {
    aspect-ratio: 7 / 4;
    display: block;
    position: relative; }
    #top-page #about .about-li li a:hover {
      opacity: 1; }
      #top-page #about .about-li li a:hover:after {
        backdrop-filter: blur(2px); }
    #top-page #about .about-li li a:before, #top-page #about .about-li li a:after {
      content: '';
      height: 100%;
      left: 0;
      position: absolute;
      top: 0;
      transition: .3s;
      width: 100%; }
    #top-page #about .about-li li a .txt {
      background: rgba(255, 255, 255, 0.6);
      font-size: clamp(18px, 2vw, 20px);
      font-weight: 500;
      left: 50%;
      padding: 10px;
      position: absolute;
      text-align: center;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 100%;
      z-index: 10; }
@media (min-width: 768px) {
  #top-page #news .news-li {
    margin: 0 15px; } }
#top-page #news .news-li li a {
  border-bottom: 1px solid #ced9d7;
  display: block;
  padding: 10px 20px; }
  #top-page #news .news-li li a:hover {
    opacity: 1; }
    #top-page #news .news-li li a:hover .ttl {
      color: #1f665e; }
  #top-page #news .news-li li a time {
    display: block; }
  #top-page #news .news-li li a time {
    color: #616665;
    font-size: 15px; }
  #top-page #news .news-li li a .ttl {
    display: block;
    margin-top: 5px;
    transition: color .3s; }

/*------------------------------------------------------------------------------ 
  Sub Header
------------------------------------------------------------------------------*/
#sub-head {
  padding: clamp(70px, 9vw, 100px) 0;
  position: relative; }
  @media screen and (min-width: 1025px) {
    #sub-head {
      margin-top: 138px; } }
  #sub-head:before, #sub-head:after {
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1; }
  #sub-head:after {
    background: rgba(5, 13, 12, 0.4); }
  #sub-head h1 {
    color: #fff;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    position: relative; }
    #sub-head h1 .en {
      display: block;
      font-size: clamp(35px, 4vw, 45px);
      text-shadow: 3px 2px 1px #0b1a18; }
    #sub-head h1 .jp {
      font-size: clamp(18px, 2vw, 20px);
      text-shadow: 1px 1px 1px #0b1a18; }

.business:before {
  background: url(../img/header/sub/business.jpg) no-repeat 50% 35%/cover; }

.works:before {
  background: url(../img/header/sub/works.jpg) no-repeat 50% 5%/cover; }

.about:before {
  background: url(../img/header/sub/about.jpg) no-repeat 45% 40%/cover; }
  @media (min-width: 650px) {
    .about:before {
      background: url(../img/header/sub/about.jpg) no-repeat 45% 25%/cover; } }
  @media (min-width: 1025px) {
    .about:before {
      background: url(../img/header/sub/about.jpg) no-repeat 50% 28%/cover; } }
  @media (min-width: 1280px) {
    .about:before {
      background: url(../img/header/sub/about.jpg) no-repeat 50% 40%/cover; } }

.contact:before {
  background: url(../img/header/sub/contact.jpg) no-repeat 50% 50%/cover; }

/*------------------------------------------------------------------------------ 
  Breadcrumbs
------------------------------------------------------------------------------*/
.breadcrumbs {
  border-bottom: 1px solid #ced9d7;
  padding: 5px 15px; }
  .breadcrumbs li {
    color: #1f665e;
    display: inline-block;
    font-size: 14px;
    position: relative; }
    .breadcrumbs li:first-of-type {
      padding-right: 17px; }
      .breadcrumbs li:first-of-type:after {
        content: ' > ';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%); }
    .breadcrumbs li a {
      color: #616665; }

/*------------------------------------------------------------------------------ 
  Sub Page
------------------------------------------------------------------------------*/
#sub {
  padding: clamp(75px, 8vw, 120px) 0 clamp(80px, 12vw, 150px);
  /* Business -------------------------------------------------
  -----------------------------------------------------------*/
  /* Works ----------------------------------------------------
  -----------------------------------------------------------*/
  /* About ----------------------------------------------------
  -----------------------------------------------------------*/
  /* Contact ---------------------------------------------------
  -----------------------------------------------------------*/ }
  #sub section:not(:last-of-type),
  #sub .sec:not(:last-of-type) {
    margin-bottom: clamp(90px, 12vw, 120px); }
  #sub section .sec-ttl,
  #sub .sec .sec-ttl {
    margin-bottom: clamp(30px, 4vw, 45px); }
  #sub #business #business-detail h2 {
    color: #1f665e; }
  #sub #business #business-detail .business-li {
    display: grid;
    gap: clamp(15px, 3vw, 40px);
    margin-top: clamp(70px, 8vw, 90px); }
    #sub #business #business-detail .business-li li {
      padding-left: clamp(25px, 3vw, 32px); }
      #sub #business #business-detail .business-li li:before {
        height: clamp(45px, 5vw, 55px);
        top: clamp(38px, 4vw, 42px);
        width: clamp(45px, 5vw, 55px); }
      #sub #business #business-detail .business-li li h3 {
        font-size: clamp(20px, 2vw, 23px);
        font-weight: 500; }
      #sub #business #business-detail .business-li li p {
        font-size: 17px; }
  #sub #business #business-detail .btn {
    margin-top: clamp(45px, 6vw, 60px); }
  #sub #business #vehicle .sec-ttl .en svg {
    transform: scaleX(-1); }
  @media (min-width: 1025px) {
    #sub #business #vehicle .box-li {
      grid-template-columns: repeat(3, 1fr); } }
  @media (min-width: 1280px) {
    #sub #business #vehicle .box-li {
      grid-template-columns: repeat(4, 1fr); } }
  @media (min-width: 768px) {
    #sub #works {
      width: 90%; } }
  #sub #works .works-intro {
    font-size: clamp(18px, 2vw, 20px);
    font-weight: 500;
    margin-bottom: clamp(70px, 8vw, 100px); }
    @media (min-width: 550px) {
      #sub #works .works-intro {
        text-align: center; } }
  #sub #works .works-gallery {
    counter-reset: counter;
    display: grid;
    gap: clamp(10px, 1.5vw, 20px);
    grid-template-columns: repeat(2, 1fr); }
    @media (min-width: 768px) {
      #sub #works .works-gallery {
        grid-template-columns: repeat(3, 1fr); } }
    @media (min-width: 1025px) {
      #sub #works .works-gallery {
        grid-template-columns: repeat(4, 1fr); } }
    #sub #works .works-gallery li {
      border-radius: 5px;
      overflow: hidden;
      position: relative; }
      #sub #works .works-gallery li:after {
        align-items: center;
        background: rgba(26, 64, 59, 0.9);
        border-radius: 5px 0 3px 0;
        color: #fff;
        content: counter(counter,decimal-leading-zero);
        counter-increment: counter;
        display: flex;
        font-family: "Roboto", sans-serif;
        font-size: clamp(18px, 2vw, 22px);
        font-weight: 500;
        justify-content: center;
        height: clamp(40px, 4vw, 50px);
        left: 0;
        position: absolute;
        top: 0;
        width: clamp(40px, 4vw, 50px); }
      #sub #works .works-gallery li img {
        aspect-ratio: 4 / 3;
        cursor: pointer;
        object-fit: cover;
        transition: transform .3s; }
        #sub #works .works-gallery li img:hover {
          transform: scale(1.03); }
  #sub #works .image-modal {
    align-items: center;
    display: flex;
    inset: 0;
    justify-content: center;
    opacity: 0;
    position: fixed;
    transition: .2s;
    visibility: hidden;
    z-index: 1000; }
    #sub #works .image-modal.is-open {
      opacity: 1;
      visibility: visible; }
      #sub #works .image-modal.is-open .image-modal__content img {
        transform: translateY(0); }
    #sub #works .image-modal .image-modal__overlay {
      background-color: rgba(0, 0, 0, 0.8);
      inset: 0;
      position: absolute; }
      #sub #works .image-modal .image-modal__overlay .image-modal__close {
        align-items: center;
        background: #fff;
        border: none;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        font-size: 23px;
        height: 65px;
        justify-content: center;
        line-height: 1;
        position: absolute;
        right: 10px;
        top: 10px;
        width: 65px;
        z-index: 100; }
        @media (min-width: 1025px) {
          #sub #works .image-modal .image-modal__overlay .image-modal__close {
            right: 3vw;
            top: 30px; } }
        #sub #works .image-modal .image-modal__overlay .image-modal__close:focus-visible {
          outline: 2px solid #616665;
          outline-offset: 2px; }
    #sub #works .image-modal .image-modal__content {
      max-height: 90vh;
      max-width: 90vw;
      position: relative;
      z-index: 1; }
      #sub #works .image-modal .image-modal__content img {
        border-radius: 10px;
        display: block;
        height: auto;
        max-height: 90vh;
        object-fit: contain;
        transform: translateY(20px);
        transition: transform .6s;
        width: 100%; }
  #sub #about table {
    border-collapse: collapse;
    width: 100%; }
    @media (max-width: 767px) {
      #sub #about table {
        border-bottom: 1px solid #616665; } }
    @media (min-width: 1025px) {
      #sub #about table {
        margin: auto;
        width: 95%; } }
    #sub #about table th,
    #sub #about table td {
      border: 1px solid #616665;
      padding: 20px; }
      @media screen and (max-width: 767px) {
        #sub #about table th,
        #sub #about table td {
          border-bottom: none;
          display: block; } }
      @media screen and (min-width: 768px) {
        #sub #about table th,
        #sub #about table td {
          padding: 15px 20px; } }
    #sub #about table th {
      background: #f2f7f7;
      color: #616665; }
      @media screen and (max-width: 767px) {
        #sub #about table th {
          border-bottom: none;
          text-align: left; } }
      @media screen and (min-width: 768px) {
        #sub #about table th {
          width: 30%; } }
      @media screen and (min-width: 1025px) {
        #sub #about table th {
          width: 25%; } }
    #sub #about table td .disc {
      padding-left: 20px; }
    #sub #about table td .licenses-li li {
      line-height: 1.5;
      margin: 20px 0; }
      #sub #about table td .licenses-li li span {
        color: #1f665e;
        display: block;
        font-weight: 500; }
  #sub #about #clients p {
    text-align: right; }
  @media (min-width: 1280px) {
    #sub #about #clients p,
    #sub #about #clients .box-li {
      margin-inline: auto;
      width: 95%; } }
  #sub #contact h2 {
    font-weight: 500;
    text-align: center; }
  #sub #contact .cta-tel .tel-icon {
    font-size: clamp(25px, 3vw, 30px);
    font-weight: 500;
    letter-spacing: .1em;
    text-align: center; }
    #sub #contact .cta-tel .tel-icon a .num {
      font-size: clamp(28px, 4vw, 38px);
      padding-left: 60px; }
      @media (min-width: 768px) {
        #sub #contact .cta-tel .tel-icon a .num {
          padding-left: 70px; } }
      #sub #contact .cta-tel .tel-icon a .num:before {
        height: 21px;
        left: 14px;
        width: 21px; }
        @media (min-width: 768px) {
          #sub #contact .cta-tel .tel-icon a .num:before {
            height: 24px;
            left: 15px;
            width: 24px; } }
      #sub #contact .cta-tel .tel-icon a .num:after {
        height: 48px;
        width: 48px; }
        @media (min-width: 768px) {
          #sub #contact .cta-tel .tel-icon a .num:after {
            height: 55px;
            width: 55px; } }
    #sub #contact .cta-tel .tel-icon a .time {
      font-size: 16px; }
  #sub #contact .cta-form .caution {
    background: #f2f7f7;
    margin: clamp(35px, 5vw, 60px) auto clamp(60px, 8vw, 90px);
    padding: clamp(20px, 3vw, 30px) clamp(30px, 4vw, 50px);
    width: min(95%, 500px); }
    @media screen and (min-width: 768px) {
      #sub #contact .cta-form .caution {
        width: min(95%, 950px); } }
    #sub #contact .cta-form .caution .intro {
      font-weight: 500;
      margin-bottom: 30px; }
    #sub #contact .cta-form .caution .disc li {
      margin-bottom: 15px; }
  #sub #contact .form .wpcf7 {
    margin: 0 auto;
    width: min(95%, 500px); }
    @media screen and (min-width: 768px) {
      #sub #contact .form .wpcf7 {
        width: min(95%, 950px); } }
    #sub #contact .form .wpcf7 fieldset {
      display: none; }
    #sub #contact .form .wpcf7 label {
      margin-bottom: clamp(30px, 4vw, 45px); }
      @media screen and (max-width: 767px) {
        #sub #contact .form .wpcf7 label {
          display: block; } }
      @media screen and (min-width: 768px) {
        #sub #contact .form .wpcf7 label {
          display: flex;
          justify-content: space-between; } }
      #sub #contact .form .wpcf7 label:last-of-type .form-txt {
        margin-bottom: auto; }
      #sub #contact .form .wpcf7 label .form-txt {
        font-size: clamp(16px, 2vw, 17px); }
        @media screen and (min-width: 768px) {
          #sub #contact .form .wpcf7 label .form-txt {
            width: min(30%, 200px); } }
        #sub #contact .form .wpcf7 label .form-txt .required {
          color: #bf1d28;
          font-size: clamp(18px, 2vw, 20px);
          font-weight: 500; }
      #sub #contact .form .wpcf7 label .wpcf7-form-control-wrap {
        display: block; }
        @media screen and (max-width: 767px) {
          #sub #contact .form .wpcf7 label .wpcf7-form-control-wrap {
            margin-top: 7px; } }
        @media screen and (min-width: 768px) {
          #sub #contact .form .wpcf7 label .wpcf7-form-control-wrap {
            width: calc(100% - min(33%, 230px)); } }
        #sub #contact .form .wpcf7 label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-text,
        #sub #contact .form .wpcf7 label .wpcf7-form-control-wrap textarea.wpcf7-form-control.wpcf7-textarea {
          background: #fff;
          border: 1px solid #616665;
          border-radius: 2px;
          padding: 10px;
          width: 100%; }
        #sub #contact .form .wpcf7 label .wpcf7-form-control-wrap textarea {
          height: clamp(200px, 22vw, 250px);
          line-height: 1.7; }
    #sub #contact .form .wpcf7 input[type="checkbox"] {
      display: none; }
    #sub #contact .form .wpcf7 .wpcf7-acceptance .wpcf7-list-item {
      display: block;
      margin: 0; }
      #sub #contact .form .wpcf7 .wpcf7-acceptance .wpcf7-list-item label {
        display: block !important;
        margin-bottom: 20px; }
        #sub #contact .form .wpcf7 .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label {
          cursor: pointer;
          position: relative;
          padding-left: 25px; }
          #sub #contact .form .wpcf7 .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label:before {
            background: #fff;
            border: 1px solid #616665;
            border-radius: 2px;
            content: "";
            display: block;
            height: 18px;
            left: 0;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 18px; }
        #sub #contact .form .wpcf7 .wpcf7-acceptance .wpcf7-list-item label input[type="checkbox"]:checked ~ .wpcf7-list-item-label:before {
          background: #2652bf;
          border-color: #2652bf; }
        #sub #contact .form .wpcf7 .wpcf7-acceptance .wpcf7-list-item label input[type="checkbox"]:checked ~ .wpcf7-list-item-label:after {
          border-right: 2px solid #fff;
          border-top: 2px solid #fff;
          content: "";
          display: block;
          height: 5px;
          left: 4px;
          position: absolute;
          top: 8px;
          transform: rotate(135deg);
          width: 10px; }
    #sub #contact .form .wpcf7 input.wpcf7-submit {
      background: #fff;
      border: 2px solid #1f665e;
      color: #0b1a18;
      display: block;
      font-size: clamp(17px, 2vw, 19px);
      font-weight: 500;
      letter-spacing: 8px;
      margin: clamp(40px, 4vw, 50px) auto;
      padding: 20px 0;
      transition: .2s;
      width: 100%; }
      @media screen and (min-width: 768px) {
        #sub #contact .form .wpcf7 input.wpcf7-submit {
          max-width: 500px;
          width: 75%; } }
      #sub #contact .form .wpcf7 input.wpcf7-submit:hover {
        background: #1f665e;
        color: #fff;
        cursor: pointer; }
      #sub #contact .form .wpcf7 input.wpcf7-submit:disabled {
        cursor: no-drop; }
    #sub #contact .form .wpcf7 .wpcf7-spinner {
      display: none; }
    #sub #contact .form .wpcf7 .recaptcha {
      font-size: clamp(14px, 2vw, 15px); }
      @media screen and (min-width: 1280px) {
        #sub #contact .form .wpcf7 .recaptcha {
          text-align: center; } }
      #sub #contact .form .wpcf7 .recaptcha a {
        font-weight: bold; }
    #sub #contact .form .wpcf7 .wpcf7-response-output {
      background: #fff;
      font-size: clamp(16px, 2vw, 17px); }

/*------------------------------------------------------------------------------ 
  Footer
------------------------------------------------------------------------------*/
#foot-cta {
  background: #f2f7f7;
  padding: 55px 0; }
  #foot-cta .foot-cta_in {
    align-items: center;
    display: grid;
    gap: 15px 0; }
    @media (min-width: 1025px) {
      #foot-cta .foot-cta_in {
        grid-template-columns: clamp(300px, 30vw, 350px) 1fr;
        margin: auto;
        width: min(90%, 1000px); } }
    #foot-cta .foot-cta_in p {
      font-size: clamp(16px, 1.5vw, 18px); }
    #foot-cta .foot-cta_in .cta-btn {
      display: grid;
      gap: 20px 0; }
      @media (min-width: 650px) {
        #foot-cta .foot-cta_in .cta-btn {
          grid-template-columns: repeat(2, 1fr); } }
      #foot-cta .foot-cta_in .cta-btn .btn a {
        align-items: center;
        height: 70px;
        display: flex;
        justify-content: center; }
        #foot-cta .foot-cta_in .cta-btn .btn a:hover span:before {
          background: #fff; }
        #foot-cta .foot-cta_in .cta-btn .btn a span {
          padding-left: 32px;
          position: relative; }
          #foot-cta .foot-cta_in .cta-btn .btn a span:before {
            background: #0b1a18;
            content: '';
            left: 0;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            transition: .3s; }
      #foot-cta .foot-cta_in .cta-btn .tel a span {
        font-size: 20px; }
        #foot-cta .foot-cta_in .cta-btn .tel a span:before {
          height: 23px;
          width: 23px;
          mask-image: url(../img/icon/tel.svg) no-repeat center/cover;
          -webkit-mask: url(../img/icon/tel.svg) no-repeat center/cover; }
      #foot-cta .foot-cta_in .cta-btn .mail a span {
        font-size: 17px; }
        #foot-cta .foot-cta_in .cta-btn .mail a span:before {
          height: 16px;
          width: 25px;
          mask-image: url(../img/icon/mail.svg) no-repeat center/cover;
          -webkit-mask: url(../img/icon/mail.svg) no-repeat center/cover; }

footer {
  background: #1a403b;
  color: #fff; }
  footer #foot-in {
    align-items: normal;
    padding: clamp(50px, 5vw, 60px) 20px 20px;
    row-gap: 40px; }
    @media (min-width: 768px) and (max-width: 1279px) {
      footer #foot-in {
        width: 90%; } }
    @media (max-width: 767px) {
      footer #foot-in .left-cont {
        font-weight: 500; } }
    @media screen and (max-width: 1024px) {
      footer #foot-in .left-cont {
        margin: auto;
        max-width: 500px;
        width: 95%; } }
    @media screen and (min-width: 1025px) {
      footer #foot-in .left-cont {
        padding-bottom: 40px; } }
    footer #foot-in .left-cont .logo {
      margin-bottom: 30px; }
      footer #foot-in .left-cont .logo a img {
        max-width: 100%;
        width: clamp(270px, 27vw, 280px); }
    footer #foot-in .left-cont .tel a {
      color: #fff; }
      footer #foot-in .left-cont .tel a .uppercase {
        font-size: clamp(15px, 2vw, 16px); }
      footer #foot-in .left-cont .tel a .num {
        font-size: clamp(18px, 2vw, 20px); }
    footer #foot-in .left-cont .insta-icon {
      display: block;
      margin-top: 15px;
      width: 25px; }
    footer #foot-in .right-cont {
      width: 100%; }
      @media screen and (min-width: 1025px) {
        footer #foot-in .right-cont {
          display: flex;
          flex-direction: column;
          max-width: 600px;
          width: 60%; } }
      footer #foot-in .right-cont .foot-nav {
        font-size: 16px;
        margin: 0;
        max-width: 500px; }
        @media screen and (max-width: 1024px) {
          footer #foot-in .right-cont .foot-nav {
            display: none; } }
        footer #foot-in .right-cont .foot-nav a {
          color: #fff; }
      footer #foot-in .right-cont #copyright {
        font-size: clamp(14px, 1vw, 15px);
        margin-top: auto; }
        @media (max-width: 1024px) {
          footer #foot-in .right-cont #copyright {
            text-align: center; } }

/*# sourceMappingURL=style.css.map */
