@charset "UTF-8";

/*
 * opening
*=============================================*/
/* -- -- */
/*
 * Animation
*=============================================*/
/* -- -- */
.fadeInUp {
   opacity: 0;
}

.fadeInUp[style*="visible"] {
   opacity: 1;
}

/* -- -- */
.img_effect {
   display: inline-block;
   overflow: hidden;
   position: relative;
}

.img_effect:after {
   content: "";
   animation-duration: 300ms;
   animation-fill-mode: forwards;
   animation-delay: 300ms;
   display: block;
   position: absolute;
   top: 0;
   left: 0;
   height: 100%;
   width: 100%;
   background-color: #fff;
}

.img_effect[style*="visible"]:after {
   animation-name: homeTileAnimation;
}

@keyframes homeTileAnimation {
   0% {
      transform: translateX(0);
   }

   to {
      transform: translateX(-120%);
   }
}

/* -- -- */
/*
 * Custom
*=============================================*/
/* -- heading -- */
.h2 {
   height: max-content;
   font-weight: 500;
   font-size: 33px;
   letter-spacing: 0.3em;
   line-height: 45px;
   text-align: center;
   margin: 0 auto;
   position: relative;
}

.h2 small {
   display: block;
   font-weight: 500;
   font-size: 14px;
   letter-spacing: 0.3em;
   line-height: 17px;
   text-transform: uppercase;
   padding-right: 10px;
}

.h-22 {
   font-weight: 500;
   font-size: 22px;
   letter-spacing: 0.02em;
   line-height: 40px;
}

.h-24 {
   font-weight: 500;
   font-size: 24px;
   letter-spacing: 0.02em;
   line-height: 40px;
}

.h-30 {
   font-weight: 500;
   font-size: 30px;
   letter-spacing: 0.02em;
   line-height: 52px;
}

.h-32 {
   font-weight: 500;
   font-size: 32px;
   letter-spacing: 0.02em;
   line-height: 42px;
}

.h-36 {
   font-weight: 500;
   font-size: 36px;
   letter-spacing: 0em;
   line-height: 42px;
}

@media screen and (max-width: 1680px) {
   .h2 {
      font-size: 26px;
   }

   .h2 small {
      font-size: 12px;
   }

   .h-22 {
      font-size: 17px;
   }

   .h-24 {
      font-size: 19px;
   }

   .h-30 {
      font-size: 22px;
   }

   .h-32 {
      font-size: 24px;
   }

   .h-36 {
      font-size: 29px;
   }
}

@media screen and (max-width: 767px) {
   .h2 {
      font-size: 22px;
   }

   .h2 small {
      font-size: 12px;
   }

   .h-22,
   .h-24 {
      font-size: 18px;
      line-height: 36px;
   }

   .h-30 {
      font-size: 22px;
      line-height: 40px;
   }

   .h-32 {
      font-size: 24px;
      line-height: 40px;
   }

   .h-36 {
      font-size: 26px;
      line-height: 40px;
   }
}

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

.button a {
   display: inline-block;
   width: 100%;
   max-width: 295px;
   border-bottom: 1px solid #707070;
   font-weight: 600;
   font-size: 28px;
   letter-spacing: 0.02em;
   line-height: 32px;
   text-align: center;
   box-sizing: border-box;
   position: relative;
   z-index: 1;
}

.button a:after {
   content: '→';
   display: inline-block;
   vertical-align: baseline;
   transition: all 0.3s;
}

.button a:hover {
   padding-left: 5px;
}

.button a:hover:after {
   margin-left: 5px;
}

@media screen and (max-width: 1680px) {
   .button a {
      font-size: 22px;
   }
}

@media screen and (max-width: 767px) {
   .button {
      text-align: center;
   }

   .button a {
      width: auto;
      max-width: inherit;
      font-size: 20px;
      padding: 0 50px;
   }
}

/* -- -- */
.txt-udl {
   text-decoration: underline;
}

a.txt-udl:hover {
   text-decoration: none;
}

.txt-c {
   text-align: center;
}

.txt-j {
   text-align: justify;
}

.txt-r {
   text-align: right;
}

.cl-red {
   color: #e12b28;
}

.cl-blue {
   color: #2057a1;
}

.cl-orange {
   color: #e05754;
}

.udl01 {
   background-image: linear-gradient(#fbe788, #fbe788);
   background-size: 100% 8px;
   background-repeat: no-repeat;
   background-position: left bottom;
}

.udl02 {
   background-image: linear-gradient(#002A7D, #002A7D);
   background-size: 100% 8px;
   background-repeat: no-repeat;
   background-position: left bottom;
}

.fw-smb {
   font-weight: 600;
}

.fw-b {
   font-weight: 700;
}

.fw-black {
   font-weight: 900;
}

.bdra-32 {
   border-radius: 32px;
}

.img_shadow {
   box-shadow: 0 3px 20px rgba(0, 0, 0, 0.05);
}

@media screen and (max-width: 767px) {
   .bdra-32 {
      border-radius: 16px;
   }
}

/* -- --*/
.w600 {
   width: 100%;
   max-width: 600px;
   box-sizing: border-box;
   margin: 0 auto;
   position: relative;
}

.w800 {
   width: 100%;
   max-width: 800px;
   box-sizing: border-box;
   margin: 0 auto;
   position: relative;
}

.w1000 {
   width: 100%;
   max-width: 1000px;
   box-sizing: border-box;
   margin: 0 auto;
   position: relative;
}

/* -- --*/
.section_pd {
   padding: 100px 0;
}

@media screen and (max-width: 767px) {
   .section_pd {
      padding: 60px 0;
   }
}

/* -- --*/
.bg-grid {
   background: url("../img/common/bg01.jpg") repeat center top;
}

.bg-gradient {
   background-color: #feecd3;
   background-image: linear-gradient(to bottom right, rgba(242, 142, 38, 0.43), rgba(196, 0, 0, 0.43));
}

/* -- --*/
.kv__ttl {
   position: relative;
}

.kv__ttl>* {
   margin: 0;
   padding: 0 9px;
}

@media screen and (max-width: 767px) {
   .kv__ttl>* {
      width: 72px;
      padding: 0;
   }
}

/* -- --*/
.breadcrumbs {
   font-size: 16px;
   line-height: 20px;
   letter-spacing: 0.02em;
}

.breadcrumbs span {
   display: inline-block;
   word-break: break-all;
   text-transform: uppercase;
   padding: 0 10px;
}

.breadcrumbs span:first-child {
   padding-left: 0;
}

.breadcrumbs a:hover {
   text-decoration: underline;
}

@media screen and (max-width: 991px) {
   .breadcrumbs {
      font-size: 14px;
      overflow-x: auto;
      box-sizing: border-box;
   }

   .breadcrumbs .inner {
      width: max-content;
      max-width: inherit;
      background-color: transparent;
      margin: 0;
      padding: 0;
   }

   .breadcrumbs span {
      display: inline-block;
      word-break: break-all;
      padding: 0 10px;
      position: relative;
      top: 1px;
   }

   .breadcrumbs span:first-child {
      padding-left: 0;
   }
}

/* -- --*/
.bg-parallax {
   width: 100%;
   height: 100%;
   position: relative;
}

.img_parallax {
   display: none;
}

/* About page parallax - show image directly */
#about__sec1 .bg-parallax {
   margin-top: 80px;
   min-height: 500px;
   overflow: hidden;
   border-radius: 4px;
}

#about__sec1 .bg-parallax .img_parallax {
   display: block;
   position: relative;
}

#about__sec1 .bg-parallax .img_parallax img {
   width: 100%;
   height: 500px;
   object-fit: cover;
   display: block;
}

@media only screen and (max-width: 767px) {
   #about__sec1 .bg-parallax {
      display: none;
   }
}

@media only screen and (max-width: 1080px) {
   .bg-parallax {
      background: transparent !important;
      min-height: inherit;
   }

   .img_parallax {
      display: block;
      clip: rect(0, auto, auto, 0);
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
   }

   .img_parallax img {
      width: 100% !important;
      height: 100vh !important;
      position: fixed;
      top: 0;
      left: 0;
      padding: 0;
      margin: 0;
      object-fit: cover;
      z-index: 0;
      transform: translateZ(0) !important;
   }
}

/* -- -- */
.img-zoom {
   display: block;
   overflow: hidden;
}

.img-zoom>* {
   transform: scale(1, 1);
   transition: all 0.3s ease;
}

.img-zoom:hover>* {
   transform: scale(1.05, 1.05);
}

/* -- -- */
.effect-bnr a {
   display: block;
   background-color: #030c17;
   position: relative;
}

.effect-bnr a:after {
   content: '';
   position: absolute;
   top: 30px;
   right: 30px;
   bottom: 30px;
   left: 30px;
   border: 1px solid #fff;
   box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.1);
   opacity: 0;
   -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
   transition: opacity 0.35s, transform 0.35s;
   -webkit-transform: scale3d(1.1, 1.1, 1);
   transform: scale3d(1.1, 1.1, 1);
}

.effect-bnr a:hover {
   opacity: 1;
}

.effect-bnr a:hover:after {
   opacity: 1;
   -webkit-transform: scale3d(1, 1, 1);
   transform: scale3d(1, 1, 1);
}

.effect-bnr a:hover img {
   opacity: 0.3 !important;
}

/* -- -- */
.box-img {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   gap: 50px;
}

.box-img .photo {
   width: 700px;
}

.box-img .col {
   width: 650px;
   background-color: #fff;
   box-sizing: border-box;
   box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
   padding: 60px 100px;
}

.box-img .no {
   font-weight: 500;
   font-size: 42px;
   letter-spacing: 0.05em;
   line-height: 60px;
   padding-bottom: 5px;
}

.box-img h3 {
   padding-bottom: 20px;
   position: relative;
}

.box-img h3:before {
   content: '';
   width: 60px;
   border-bottom: 2px solid #016B63;
   position: absolute;
   bottom: 0;
   left: 0;
}

.box-img .txt {
   padding-top: 30px;
}

.box-img .button {
   padding-top: 30px;
}

.box-img.img_r {
   flex-direction: row-reverse;
}

@media screen and (max-width: 1440px) {
   .box-img {
      align-items: flex-start;
      gap: 5%;
   }

   .box-img .photo {
      width: 50%;
   }

   .box-img .col {
      width: 45%;
      padding: 50px;
   }
}

@media screen and (max-width: 991px) {
   .box-img {
      gap: 20px;
   }

   .box-img .photo {
      width: 100%;
   }

   .box-img .col {
      width: 100%;
      padding: 30px 20px;
   }

   .box-img.img_r {
      flex-direction: row;
   }
}

@media screen and (max-width: 767px) {
   .box-img .photo {
      width: 100%;
   }

   .box-img .col {
      width: 100%;
   }

   .box-img .no {
      font-size: 40px;
      line-height: 1;
   }

   .box-img .txt {
      padding-top: 15px;
   }

   .box-img .button {
      padding-top: 15px;
   }
}

/* -- --*/
.tb-style dl {
   display: table;
   width: 100%;
   box-sizing: border-box;
   font-size: 16px;
   line-height: 24px;
   border-bottom: 1px solid #82C1BB;
   padding: 0 30px 30px;
   position: relative;
}

.tb-style dl:before {
   content: '';
   width: 240px;
   border-top: 3px solid #82C1BB;
   position: absolute;
   bottom: -1.5px;
   left: 0;
}

.tb-style dl+dl {
   padding-top: 30px;
}

.tb-style dl>* {
   display: table-cell;
   vertical-align: top;
}

.tb-style dl dt {
   width: 180px;
   font-weight: 500;
   box-sizing: border-box;
   position: relative;
}

.tb-style dl dd {
   padding-left: 30px;
}

.tb-style dl dd p {
   padding-bottom: 20px;
}

.tb-style dl dd p:last-child {
   padding-bottom: 0;
}

@media screen and (max-width: 1200px) {
   .tb-style dl dd {
      padding-left: 50px;
   }
}

@media screen and (max-width: 767px) {
   .tb-style dl {
      font-size: 13px;
      padding: 0 0 15px;
   }

   .tb-style dl:before {
      width: 120px;
   }

   .tb-style dl+dl {
      padding-top: 15px;
   }

   .tb-style dl dt {
      width: 110px;
      text-align: left;
   }

   .tb-style dl dd {
      padding-left: 10px;
   }

   .tb-style dl dd p {
      padding-bottom: 20px;
   }

   .tb-style dl dd p:last-child {
      padding-bottom: 0;
   }
}

/* -- -- */
.swiper-container {
   overflow: hidden;
   position: relative;
}

.swiper-fade .swiper-slide>* {
   opacity: 0;
}

.swiper-fade .swiper-slide-active>* {
   opacity: 1;
}

/* -- --*/
.box-style {
   background-color: #fff;
   border-radius: 10px;
   border: 4px solid #003D7E;
   padding: 40px 40px;
}

@media screen and (max-width: 767px) {
   .box-style {
      padding: 20px 10px;
   }
}

/* -- --*/
.table_price {
   width: 100%;
}

.table_price th,
.table_price td {
   border: 1px solid #C9C9C9;
   color: #616161;
   text-align: center;
   vertical-align: middle;
   padding: 9px 0;
}

.table_price th {
   background-color: #EEEEEE;
}

/* -- --*/
/*
 * 404
 *=============================================*/
#content-404 {
   text-align: center;
   padding: 0 0 80px;
}

#content-404 .txt {
   padding-top: 40px;
}

#content-404 .button {
   padding-top: 50px;
}

@media screen and (max-width: 767px) {
   #content-404 {
      padding: 0 0 50px;
   }

   #content-404 .txt {
      padding-top: 20px;
   }

   #content-404 .button {
      padding-top: 30px;
   }
}

/* -- -- */
/*
 * HOME
*=============================================*/
/* -- --*/
#mv {
   width: 100%;
   height: 100vh;
   position: relative;
}

#mv .copyright {
   color: #fff;
   font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
   font-size: 13px;
   letter-spacing: 0.02em;
   line-height: 26px;
   position: absolute;
   bottom: 17.5%;
   left: 60px;
}

#mv .copyright .txt-latin {
   letter-spacing: 0.02em;
}

#mv .scroll {
   color: #fff;
   font-size: 12px;
   letter-spacing: 0.5em;
   line-height: 17px;
   position: absolute;
   bottom: 17.5%;
   left: 50%;
   transform: translateX(-50%);
   z-index: 101;
}

#mv .scroll a {
   display: block;
   width: 17px;
   cursor: pointer;
   background: url("../img/index/scroll-arrow.svg") no-repeat top right/17px auto;
   padding: 0 20px;
   -webkit-animation: sdb04 2s infinite;
   animation: sdb04 2s infinite;
}

@-webkit-keyframes sdb04 {
   0% {
      -webkit-transform: translate(0, 0);
   }

   20% {
      -webkit-transform: translate(0, 10px);
   }

   40% {
      -webkit-transform: translate(0, 0);
   }
}

@keyframes sdb04 {
   0% {
      transform: translate(0, 0);
   }

   20% {
      transform: translate(0, 10px);
   }

   40% {
      transform: translate(0, 0);
   }
}

.mv-slider {
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
   z-index: -1;
}

.mv-slider * {
   width: 100%;
   height: 100%;
}

.mv-slider .slide1 {
   background: url("../img/index/slide1.jpg") no-repeat center center/cover;
}

.mv-slider .slide2 {
   background: url("../img/index/slide2.jpg") no-repeat center center/cover;
}

.mv-slider .slide3 {
   background: url("../img/index/slide3.jpg") no-repeat center center/cover;
}

.mv-slider .slide4 {
   background: url("../img/index/slide1.jpg") no-repeat center center/cover;
}

@media screen and (max-width: 1680px) {
   #mv .scroll a {
      font-size: 14px;
   }
}

@media screen and (max-width: 991px) {
   #mv .scroll {
      bottom: 5%;
   }

   #mv .copyright {
      bottom: 20%;
      left: 40px;
   }
}

@media screen and (max-width: 767px) {
   #mv .scroll {
      bottom: calc(50px + 10vh);
   }

   #mv .copyright {
      font-size: 12px;
      top: 50%;
      bottom: auto;
      left: 10px;
      transform: translateY(-50%);
   }
}

/* -- --*/
#top__about {
   padding: 50px 0 0;
   position: relative;
}

#top__about .wrap {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   max-width: 100%;
}

#top__about h2 {
   order: 1;
   margin: 0;
   padding-top: 30px;
   padding-left: 120px;
}

#top__about .photo {
   width: 35.7%;
   padding-top: 40%;
   background: url("../img/index/top_about-photo1.jpg") no-repeat center top/cover;
   order: 3;
}

#top__about .col {
   width: 655px;
   order: 2;
   margin: auto 0;
}

#top__about .txt {
   font-size: 18px;
   letter-spacing: 0.09em;
   line-height: 50px;
   padding-top: 25px;
}

#top__about .button {
   padding-top: 80px;
}

#top__about .photos {
   display: flex;
   padding-top: 50px;
}

#top__about .photos img {
   width: 100%;
   max-width: inherit;
   height: auto;
}

#top__about .bg-parallax {
   background-image: url("../img/index/parallax01.jpg");
   min-height: 1080px;
   margin-top: 200px;
}

@media screen and (max-width: 1400px) {
   #top__about h2 {
      padding-left: 40px;
   }

   #top__about .col {
      width: 50%;
   }

   #top__about .button {
      padding-top: 40px;
   }
}

@media screen and (max-width: 1200px) {

   #top__about .txt br.pc {
      display: none;
   }
}

@media screen and (max-width: 991px) {
   #top__about .wrap {
      display: block;
      padding: 0 20px;
   }

   #top__about h2 {
      margin: 0 auto;
      padding: 0 0 50px;
   }

   #top__about .photo {
      width: 40%;
      padding-top: 50%;
      margin: 0 auto;
   }

   #top__about .col {
      width: 100%;
      padding-top: 50px;
   }
}

@media screen and (max-width: 767px) {
   #top__about {}

   #top__about .photo {
      width: 100%;
      padding-top: 0;
      background: transparent;
   }

   #top__about h2 {
      padding: 30px 0 20px;
   }

   #top__about .col {
      padding-top: 20px;
   }

   #top__about h3 {
      text-align: center;
   }

   #top__about .txt {
      font-size: 15px;
      line-height: 32px;
      padding-top: 20px;
   }

   #top__about .button {
      padding-top: 30px;
   }

   #top__about .photos {
      flex-wrap: wrap;
      gap: 12px;
      padding: 50px 15px 0;
   }

   #top__about .photos li {
      width: 100%;
      border-radius: 4px;
      overflow: hidden;
   }

   #top__about .bg-parallax {
      min-height: 100vw;
      margin-top: 50px;
   }
}

/* -- --*/
#cpt-works .works__list {
   padding-right: 110px;
}

.works__list li {
   position: relative;
}

.works__list li:after {
   content: '';
   width: 100%;
   height: 100%;
   background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 50%);
   position: absolute;
   top: 0;
   left: 0;
   opacity: 1;
   transition: all 0.3s;
   pointer-events: none;
}

.works__list li+li {
   margin-top: 90px;
}

.works__list li>a {
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
   z-index: 1;
}

.works__list li .photo .slide p {
   width: 100%;
   padding-top: 57%;
}

.works__list li h3 {
   width: 90%;
   text-align: center;
   color: #fff;
   position: absolute;
   top: 0;
   left: 5%;
   height: 100% !important;
   display: flex !important;
   align-items: center;
   justify-content: center;
   opacity: 1 !important;
   transition: all 0.3s;
   z-index: 1;
   margin: 0;
}

.works__list li h3 a {
   width: fit-content;
   border-bottom: 1px solid;
   overflow: hidden;
   display: block;
   max-height: 72px;
   -webkit-line-clamp: 2;
   display: -webkit-box;
   -webkit-box-orient: vertical;
   text-overflow: ellipsis;
   white-space: normal;
   box-sizing: border-box;
   margin: 0 auto;
   padding-right: 30px;
   position: relative;
}

.works__list li h3 a:after {
   content: '→';
   position: absolute;
   top: 50%;
   right: 0;
   transform: translateY(-50%);
}

.works__list li:hover:after {
   opacity: 1;
}

.works__list li:hover h3 {
   opacity: 1;
}

#top__works {
   padding: 120px 0 160px;
}

#top__works .works__list {
   display: flex;
   flex-wrap: wrap;
   gap: 40px 0;
   padding-top: 40px;
}

#top__works .works__list li {
   width: 33.33%;
}

#top__works .works__list li+li {
   margin-top: 0;
}

#top__works .works__list li .photo a {
   display: block;
   width: 100%;
   padding-top: 60%;
   position: relative;
}

#top__works .works__list li .photo span {
   display: block;
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
}

#top__works .works__list li h3 {
   width: 94%;
   left: 3%;
   opacity: 1;
}

#top__works .works__list li:after {
   background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 50%);
   opacity: 1;
   pointer-events: none;
}

#top__works .works__list li:hover:after {
   background: rgba(0,0,0,0.5);
}

#top__works .button {
   padding-top: 40px;
}

/* === Works page PC only (min-width: 768px) === */
@media screen and (min-width: 768px) {
   .works-template ~ #top__works {
      padding: 40px 0 60px;
   }

   .works-template ~ #top__works .works__list {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 40px;
   }

   .works-template ~ #top__works .works__list li {
      width: calc(33.33% - 11px);
      border-radius: 8px;
      overflow: hidden;
   }

   .works-template ~ #top__works .works__list li+li {
      margin-top: 0;
   }

   .works-template ~ #top__works .works__list li .photo a {
      display: block;
      width: 100%;
      padding-top: 65%;
      position: relative;
   }

   .works-template ~ #top__works .works__list li .photo span {
      display: block;
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      transition: transform 0.4s ease;
   }

   .works-template ~ #top__works .works__list li:hover .photo span {
      transform: scale(1.05);
   }

   .works-template ~ #top__works .works__list li:after {
      background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 100%);
      opacity: 1;
      border-radius: 8px;
      pointer-events: none;
   }

   .works-template ~ #top__works .works__list li:hover:after {
      background: rgba(0,0,0,0.5);
   }

   .works-template ~ #top__works .works__list li h3 {
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      opacity: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 15px 50px 15px 15px;
      box-sizing: border-box;
      font-size: 18px;
      font-weight: 500;
      letter-spacing: 0.05em;
      line-height: 1.6;
   }

   .works-template ~ #top__works .works__list li h3 a {
      color: #fff;
      border-bottom: none;
      max-height: none;
      padding-right: 0;
      overflow: visible;
      display: block;
      -webkit-line-clamp: unset;
      -webkit-box-orient: unset;
      text-overflow: unset;
      margin: 0;
   }

   .works-template ~ #top__works .works__list li h3 a:after {
      display: none;
   }

   .works-template ~ #top__works .works__list li:before {
      content: '→';
      position: absolute;
      right: 16px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 22px;
      font-weight: 300;
      color: rgba(255,255,255,0.85);
      z-index: 2;
      transition: right 0.3s ease;
   }

   .works-template ~ #top__works .works__list li:hover:before {
      right: 12px;
      color: #fff;
   }
}

@media screen and (max-width: 767px) {


   .works__list li+li {
      margin-top: 20px;
   }

   .works__list li:after {
      opacity: 1;
   }

   .works__list li h3 {
      opacity: 1;
   }

   .works__list li .photo .slide p {
      padding-top: 80%;
   }

   #top__works {
      padding: 80px 0;
   }

   #top__works .button {
      padding-top: 40px;
   }

   #top__works .works__list {
      gap: 12px;
      padding: 40px 15px 0;
   }

   #top__works .works__list li {
      width: calc(50% - 6px);
      border-radius: 6px;
      overflow: hidden;
   }

   #top__works .works__list li .photo a {
      padding-top: 80%;
   }
}

/* -- --*/
#top__news {
   padding-bottom: 200px;
}

#top__news .photos {
   display: flex;
   padding-bottom: 200px;
}

#top__news .photos p {
   width: 50%;
}

#top__news .photos img {
   width: 100%;
   max-width: inherit;
}

#top__news .news__list {
   padding-top: 70px;
}

.news__list {
   font-size: 16px;
   letter-spacing: 0.02em;
   line-height: 27px;
}

.news__list li {
   display: flex;
   justify-content: center;
   align-items: center;
   border-top: 1px solid #707070;
   border-bottom: 1px solid #707070;
   padding: 50px 0 30px;
}

.news__list li+li {
   border-top: 0;
}

.news__list li .date {
   display: block;
   width: 150px;
}

.news__list li .ttl {
   display: block;
   width: 550px;
}

.news__list li .ttl a {
   width: fit-content;
   overflow: hidden;
   display: block;
   max-height: 27px;
   -webkit-line-clamp: 1;
   display: box;
   display: -webkit-box;
   -webkit-box-orient: vertical;
   text-overflow: ellipsis;
   white-space: normal;
   box-sizing: border-box;
   padding-right: 30px;
   position: relative;
}

.news__list li .ttl a:after {
   content: "→";
   font-size: 18px;
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   right: 5px;
   transition: all 0.3s;
}

.news__list li .ttl a:hover:after {
   right: 0;
}

@media screen and (max-width: 1680px) {
   .news__list {
      font-size: 14px;
   }
}

@media screen and (max-width: 767px) {
   #top__news {
      padding-bottom: 80px;
   }

   #top__news .photos {
      flex-wrap: wrap;
      gap: 12px;
      padding: 0 15px 80px;
   }

   #top__news .photos p {
      width: 100%;
      border-radius: 4px;
      overflow: hidden;
   }

   #top__news .news__list {
      padding-top: 30px;
   }

   .news__list {
      font-size: 14px;
      line-height: 24px;
   }

   .news__list li {
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
      padding: 20px 0;
   }

   .news__list li .date {
      width: 100%;
   }

   .news__list li .ttl {
      width: 100%;
   }

   .news__list li .ttl a {
      width: 100%;
      max-height: 50px;
      -webkit-line-clamp: 2;
   }
}

/* -- --*/
#top__recruit {
   position: relative;
}

#top__recruit:before {
   content: '';
   width: 100%;
   background-color: #000;
   position: absolute;
   top: 50px;
   bottom: 50px;
   left: 0;
}

#top__recruit .wrap {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   align-items: center;
}

#top__recruit h2 {
   order: 2;
   color: #fff;
}

#top__recruit .photo {
   width: 834px;
   order: 1;
}

#top__recruit .catch {
   width: 95px;
   order: 3;
   position: relative;
   top: -100px;
}

@media screen and (max-width: 1200px) {
   #top__recruit .photo {
      width: 700px;
   }
}

@media screen and (max-width: 991px) {
   #top__recruit:before {
      top: 0;
   }

   #top__recruit .wrap {
      display: block;
   }

   #top__recruit h2 {
      padding: 120px 0;
   }

   #top__recruit .photo {
      width: 100%;
   }

   #top__recruit .catch {
      position: absolute;
      top: -60px;
      right: 0;
   }
}

@media screen and (max-width: 767px) {
   #top__recruit:before {
      bottom: 30px;
   }

   #top__recruit h2 {
      padding: 50px 0;
   }

   #top__recruit .photo {
      width: 100%;
   }

   #top__recruit .catch {
      width: 60px;
      top: -40px;
      right: 20px;
   }
}

/* -- --*/
/*
 * お問い合わせ
*=============================================*/
/* -- -- */
.inquiry-form input[type="text"],
.inquiry-form input[type="tel"],
.inquiry-form input[type="email"],
.inquiry-form input[type="date"],
.inquiry-form textarea {
   display: block;
   width: 100%;
   background-color: #fdfdfd;
   border: 1px solid #fdfdfd;
   box-sizing: border-box;
   line-height: 30px;
   border-radius: 5px !important;
   outline: none;
   -webkit-appearance: none;
   -moz-appearance: none;
   box-sizing: border-box;
   padding: 4px 15px;
}

.inquiry-form textarea {
   height: 130px;
   resize: vertical;
}

.inquiry-form .form-input dl {
   display: table;
   width: 100%;
   box-sizing: border-box;
}

.inquiry-form .form-input dl+dl {
   padding-top: 10px;
}

.inquiry-form .form-input dl>* {
   display: table-cell;
   vertical-align: top;
   text-align: left;
}

.inquiry-form .form-input dl dt {
   width: 140px;
   font-weight: 700;
   letter-spacing: 0.075em;
   box-sizing: border-box;
   padding: 5px 0px;
   position: relative;
}

.inquiry-form .error {
   font-size: 12px !important;
   line-height: 1;
   padding-top: 5px;
}

.inquiry-form .form-btn {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   padding-top: 30px;
   padding-left: 140px;
}

.inquiry-form .form-btn button {
   display: block;
   width: 240px;
   background-color: #fff;
   border: 2px solid #3c3c3c;
   color: #3c3c3c;
   border-radius: 50px;
   font-weight: 700;
   font-size: 16px;
   letter-spacing: 0.1em;
   line-height: 28px;
   text-align: center;
   box-sizing: border-box;
   padding: 9px 0;
   position: relative;
   z-index: 1;
   cursor: pointer;
}

.inquiry-form .form-btn button:after {
   content: '\f061';
   -moz-osx-font-smoothing: grayscale;
   -webkit-font-smoothing: antialiased;
   display: var(--fa-display, inline-block);
   font-style: normal;
   font-variant: normal;
   line-height: 1;
   text-rendering: auto;
   font-family: "Font Awesome 6 Free";
   font-weight: 900;
   font-size: 16px;
   position: absolute;
   top: 50%;
   right: 15px;
   transform: translateY(-50%);
   transition: all 0.1s;
}

.inquiry-form .form-btn button:hover {
   background-color: #3c3c3c;
   color: #fff;
   opacity: 1;
}

.inquiry-form .form-btn button:hover:after {
   right: 10px;
}

.inquiry-form .form-btn button[name*="submitBack"]:after {
   content: "\f060";
   right: auto;
   left: 15px;
}

.inquiry-form .form-btn button[name*="submitBack"]:hover:after {
   left: 10px;
}

.inquiry-form .form-btn button[name*="mwform_bsubmit-684"] {
   background-color: #f7bd86;
}

.inquiry-form .form-btn button[name*="mwform_bsubmit-684"]:hover {
   color: #3c3c3c;
}

.inquiry-form .privacy_link {
   text-align: center;
   font-size: 10px;
   line-height: 12px;
   letter-spacing: 0.05em;
   padding-top: 10px;
   padding-left: 140px;
}

.inquiry-form .privacy_link a {
   border-bottom: 1px solid;
}

.inquiry-form .privacy_link a:hover {
   border-bottom-color: transparent;
}

.mw_wp_form_preview .inquiry-form .form-input dl dt {
   padding: 0;
}

@media screen and (max-width: 767px) {
   .inquiry-form .form-input dl {
      display: block;
   }

   .inquiry-form .form-input dl>* {
      display: block;
   }

   .inquiry-form .form-btn {
      padding-left: 0;
   }

   .inquiry-form .form-btn button {
      width: 160px;
   }

   .inquiry-form .privacy_link {
      padding-left: 0;
   }

   #mailform {
      padding: 50px 0;
   }
}

/* -- -- */
#txt_thanks {
   text-align: center;
   padding: 40px 0 120px;
}

#txt_thanks h2 {
   padding-bottom: 40px;
}

#txt_thanks p {
   padding-bottom: 30px;
}

#txt_thanks .button {
   padding-top: 20px;
   padding-bottom: 0;
}

@media screen and (max-width: 767px) {
   #txt_thanks {
      font-size: 13px;
      text-align: left;
      padding: 20px 0 50px;
   }

   #txt_thanks h2 {
      text-align: center;
      padding-bottom: 20px;
   }

   #txt_thanks p {
      padding-bottom: 15px;
   }

   #txt_thanks p:last-child {
      text-align: center;
      padding-top: 10px;
      padding-bottom: 0px;
   }
}

/* -- -- */
/*
 * About
*=============================================*/
/* -- -- */
#about__sec1 {
   padding-bottom: 80px;
   max-width: 1200px;
   margin: 0 auto;
}

#about__sec1 .photo-full {
   padding-left: 0;
}

#about__sec1 .photo-full img {
   width: 100%;
   max-width: inherit;
   border-radius: 4px;
}

#about__sec1 .desc {
   width: calc(100% - 40px);
   max-width: 900px;
   line-height: 45px;
   margin: 0 auto;
   padding-top: 100px;
   text-align: center;
}

#about__sec1 .txt {
   max-width: 900px;
   margin-left: auto;
   margin-right: auto;
   line-height: 2;
}

#about__sec1 .box {
   display: flex;
   flex-wrap: wrap;
   align-items: flex-start;
   gap: 40px;
   padding: 80px 20px 0;
   max-width: 1200px;
   margin: 0 auto;
}

#about__sec1 .box .photo {
   flex: 1 1 50%;
   max-width: 55%;
   overflow: hidden;
   border-radius: 4px;
}

#about__sec1 .box .photo img {
   width: 100%;
   height: auto;
   display: block;
}

#about__sec1 .box .col {
   flex: 1 1 40%;
}

#about__sec1 .box .col .txt {
   margin: 0;
}

#about__sec1 .box.img_r {
   flex-direction: row-reverse;
   align-items: flex-start;
}

#about__sec1 .box + .box {
   margin-top: 80px;
}

@media screen and (max-width: 1200px) {
   #about__sec1 .box {
      gap: 30px;
   }

   #about__sec1 .box .photo {
      max-width: 100%;
      flex: 1 1 100%;
   }

   #about__sec1 .box .col {
      flex: 1 1 100%;
   }

   #about__sec1 .box.img_r {
      flex-direction: row;
      align-items: flex-start;
   }
}

@media screen and (max-width: 991px) {
   #about__sec1 .photo-full {
      padding-left: 20px;
   }

   #about__sec1 .box .photo {
      width: 100%;
   }

   #about__sec1 .box .txt {
      width: 100%;
      padding: 0 20px;
      box-sizing: border-box;
   }

   #about__sec1 .box.img_r {
      flex-direction: row;
   }
}

@media screen and (max-width: 767px) {
   #about__sec1 {
      padding-bottom: 80px;
      padding-left: 20px;
      padding-right: 20px;
   }

   #about__sec1 .photo-full {
      padding-left: 0;
      margin-left: -20px;
      margin-right: -20px;
   }

   #about__sec1 .desc {
      line-height: 36px;
      padding-top: 50px;
      width: 100%;
   }

   #about__sec1 .box {
      padding-top: 40px;
      gap: 20px;
   }

   #about__sec1 .box + .box {
      margin-top: 15px;
   }

   #about__sec1 .box .photo {
      border-radius: 4px;
   }

   #about__sec1 .box .txt {
      padding: 0;
   }
}

/*=============================================
 * Section Heading (main title + subtitle)
 *=============================================*/
.section-heading {
   padding-bottom: 25px;
   margin-bottom: 25px;
   border-bottom: 1px solid #ddd;
}

.section-heading__main {
   font-size: 22px;
   font-weight: 600;
   letter-spacing: 0.05em;
   line-height: 1.5;
   color: #333;
   margin: 0;
}

.section-heading__sub {
   font-size: 14px;
   color: #888;
   letter-spacing: 0.03em;
   margin: 8px 0 0;
   line-height: 1.5;
}

@media screen and (max-width: 767px) {
   .section-heading {
      padding-bottom: 18px;
      margin-bottom: 18px;
   }

   .section-heading__main {
      font-size: 18px;
   }

   .section-heading__sub {
      font-size: 13px;
      margin-top: 6px;
   }
}

/* -- -- */
#about__sec2 .wrap {
   background-color: #fff;
   padding: 100px;
}

#about__sec2 .inner {
   border-bottom: 1px solid #707070;
   margin: 0 auto;
   padding-bottom: 80px;
}

#about__sec2 h2 {
   border-bottom: 1px solid #707070;
   padding-bottom: 10px;
}

#about__sec2 .box {
   width: 100%;
   max-width: 680px;
   margin: 0 auto;
   padding-top: 50px;
}

#about__sec2 .box dl {
   display: flex;
   flex-wrap: wrap;
   margin: 0;
   padding: 22px 0;
   border-bottom: 1px solid #e0e0e0;
}

#about__sec2 .box dl:first-child {
   border-top: 1px solid #e0e0e0;
}

#about__sec2 .box dl+dl {
   padding-top: 22px;
}

#about__sec2 .box dl dt {
   width: 130px;
   font-weight: 600;
   font-size: 14px;
   color: #333;
   padding-right: 15px;
   line-height: 1.8;
}

#about__sec2 .box dl dd {
   width: calc(100% - 130px);
   font-size: 14px;
   line-height: 1.8;
   color: #555;
}

#about__sec2 .txt {
   padding-top: 60px;
}

@media screen and (max-width: 991px) {
   #about__sec2 .wrap {
      padding: 50px;
   }

   #about__sec2 .box dl dt {
      width: 120px;
   }

   #about__sec2 .box dl dd {
      width: calc(100% - 120px);
   }
}

@media screen and (max-width: 767px) {
   #about__sec2 {
      padding: 0 20px;
   }

   #about__sec2 .wrap {
      padding: 40px 20px;
   }

   #about__sec2 .inner {
      padding-bottom: 30px;
   }

   #about__sec2 .box {
      padding-top: 20px;
   }

   #about__sec2 .box dl {
      padding: 16px 0;
   }

   #about__sec2 .box dl+dl {
      padding-top: 16px;
   }

   #about__sec2 .box dl dt {
      width: 90px;
      font-size: 13px;
   }

   #about__sec2 .box dl dd {
      width: calc(100% - 90px);
      font-size: 13px;
   }

   #about__sec2 .txt {
      padding-top: 20px;
   }
}

/* -- -- */
/*
 * Recruit
*=============================================*/
/* -- -- */
#recruit__sec1 {
   padding-bottom: 120px;
   position: relative;
   max-width: 1200px;
   margin: 0 auto;
}

#recruit__sec1 .box {
   display: block;
   position: relative;
}

#recruit__sec1 .box .photo {
   width: 100%;
}

#recruit__sec1 .box .photo img {
   width: 100%;
   max-height: 600px;
   object-fit: cover;
   display: block;
   border-radius: 4px;
}

#recruit__sec1 .desc {
   font-weight: 500;
   font-size: 20px;
   letter-spacing: 0.05em;
   line-height: 45px;
   padding-top: 60px;
   text-align: center;
   max-width: 900px;
   margin: 0 auto;
}

#recruit__sec1 .txt {
   max-width: 900px;
   margin: 0 auto;
   padding-top: 40px;
   line-height: 2;
}

@media screen and (max-width: 767px) {
   #recruit__sec1 {
      padding: 20px 20px 60px;
   }

   #recruit__sec1 .box .photo img {
      max-height: 300px;
      border-radius: 0;
   }

   #recruit__sec1 .desc {
      font-size: 16px;
      line-height: 36px;
      padding-top: 30px;
      text-align: justify;
   }

   #recruit__sec1 .txt {
      padding-top: 25px;
   }
}

/* -- -- */
#recruit__sec2 {
   padding-bottom: 120px;
   max-width: 1200px;
   margin: 0 auto;
}

#recruit__sec2 .box1 {
   display: flex;
   flex-wrap: wrap;
   align-items: flex-start;
   gap: 40px;
   padding: 0 20px;
}

#recruit__sec2 .box1 + .box1 {
   margin-top: 80px;
}

#recruit__sec2 .box1 .photo {
   flex: 1 1 50%;
   max-width: 55%;
   border-radius: 4px;
   overflow: hidden;
}

#recruit__sec2 .box1 .photo img {
   width: 100%;
   height: auto;
   display: block;
}

#recruit__sec2 .box1 .col {
   flex: 1 1 40%;
}

#recruit__sec2 .box1 .txt {
   padding-top: 20px;
   line-height: 2;
}

#recruit__sec2 .box2 {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 40px;
   padding: 80px 20px 0;
}

#recruit__sec2 .box2 .item {
   flex: 1 1 calc(50% - 20px);
   max-width: 560px;
}

#recruit__sec2 .box2 .item h3 {
   border-bottom: 1px solid #ddd;
   padding-bottom: 15px;
}

#recruit__sec2 .box2 .txt {
   padding-top: 20px;
   line-height: 2;
}

@media screen and (max-width: 991px) {
   #recruit__sec2 .box1 .photo {
      max-width: 100%;
      flex: 1 1 100%;
   }

   #recruit__sec2 .box1 .col {
      flex: 1 1 100%;
   }

   #recruit__sec2 .box2 .item {
      flex: 1 1 100%;
      max-width: 100%;
   }
}

@media screen and (max-width: 767px) {
   #recruit__sec2 {
      padding-bottom: 60px;
   }

   #recruit__sec2 .box1 + .box1 {
      margin-top: 40px;
   }

   #recruit__sec2 .box2 {
      padding-top: 40px;
      gap: 30px;
   }
}

/* -- -- */
#recruit__sec3 {
   background-color: #f9f9f9;
   padding: 80px 40px;
}

#recruit__sec3 .wrap {
   max-width: 900px;
   margin: 0 auto;
}

/* Recruit Tabs */
.recruit-tabs {
   display: flex;
   gap: 0;
   margin-bottom: 50px;
   border-bottom: 2px solid #ddd;
}

.recruit-tab {
   padding: 14px 30px;
   font-size: 15px;
   font-weight: 500;
   letter-spacing: 0.05em;
   background: none;
   border: none;
   border-bottom: 2px solid transparent;
   margin-bottom: -2px;
   cursor: pointer;
   color: #999;
   transition: all 0.3s;
}

.recruit-tab:hover {
   color: #333;
}

.recruit-tab.active {
   color: #333;
   border-bottom-color: #333;
}

/* Company Profile Table */
.company-profile {
   margin-top: 60px;
   padding-top: 40px;
   border-top: 1px solid #ddd;
}

.company-profile h3 {
   margin-bottom: 25px;
}

.company-table {
   width: 100%;
   border-collapse: collapse;
}

.company-table tr {
   border-bottom: 1px solid #eee;
}

.company-table th {
   text-align: left;
   padding: 15px 20px 15px 0;
   width: 140px;
   font-weight: 500;
   color: #555;
   vertical-align: top;
   white-space: nowrap;
}

.company-table td {
   padding: 15px 0;
   line-height: 1.8;
}

@media screen and (max-width: 767px) {
   .recruit-tabs {
      gap: 0;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      margin-bottom: 30px;
   }

   .recruit-tab {
      padding: 12px 18px;
      font-size: 14px;
      white-space: nowrap;
   }

   .company-table th {
      width: 100px;
      padding: 12px 10px 12px 0;
      font-size: 14px;
   }

   .company-table td {
      padding: 12px 0;
      font-size: 14px;
   }
}

#recruit__sec3 .box + .box {
   padding-top: 60px;
}

#recruit__sec3 h2,
#recruit__sec3 h3 {
   border-bottom: 1px solid #ddd;
   padding-bottom: 15px;
}

#recruit__sec3 h3 {
   padding-top: 40px;
}

#recruit__sec3 .txt {
   padding-top: 30px;
   line-height: 2;
}

#recruit__sec3 .txt p + p {
   padding-top: 30px;
}

#recruit__sec3 .txt + .txt {
   border-top: 1px solid #ddd;
   margin-top: 30px;
}

@media screen and (max-width: 767px) {
   #recruit__sec3 {
      padding: 50px 20px;
   }

   #recruit__sec3 h3 {
      padding-top: 20px;
   }

   #recruit__sec3 .txt {
      padding-top: 15px;
   }

   #recruit__sec3 .txt + .txt {
      margin-top: 15px;
   }

   #recruit__sec3 .txt p + p {
      padding-top: 15px;
   }
}

/* -- -- */
/*
 * NEWS
*=============================================*/
.wp-pagenavi {
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 20px;
   padding-top: 100px;
}

.wp-pagenavi>* {
   font-weight: 500;
   font-size: 14px;
   line-height: 20px;
   border-bottom: 1px solid transparent;
}

.wp-pagenavi>*.current,
.wp-pagenavi>*:hover {
   border-color: #000;
}

@media screen and (max-width: 767px) {
   .wp-pagenavi {
      padding-top: 50px;
   }
}

/* -- -- */
.news-template {
   background-color: #fff;
   padding: 35px 0 70px;
   position: relative;
}

.news-template .breadcrumbs {
   padding: 0 80px 70px;
}

.news-template .wrap {
   width: calc(100% - 80px);
   max-width: 1050px;
}

.news-template .copyright .txt-latin {
   letter-spacing: 0.02em;
}

#cpt-info .list li {
   border-bottom: 1px solid #707070;
   padding-bottom: 10px;
}

#cpt-info .list li+li {
   padding-top: 80px;
}

#cpt-info .list li .date {
   font-size: 16px;
   padding-bottom: 5px;
}

#cpt-info .list li .ttl {
   overflow: hidden;
   display: block;
   max-height: 80px;
   -webkit-line-clamp: 2;
   display: box;
   display: -webkit-box;
   -webkit-box-orient: vertical;
   text-overflow: ellipsis;
   white-space: normal;
}

#news__detail .date {
   font-size: 16px;
   padding-bottom: 15px;
}

#news__detail .the_title {
   border-bottom: 1px solid #707070;
   padding-bottom: 10px;
   line-height: 1.4 !important;
   writing-mode: horizontal-tb !important;
   font-size: 20px;
   height: auto !important;
   max-height: none !important;
   overflow: visible !important;
}

#news__detail .the_content {
   padding-top: 15px;
}

#news__detail .the_content p img {
   display: inline-block;
   vertical-align: top;
   margin-right: 10px;
}

#news__detail .the_content p img.aligncenter {
   display: block;
   margin: 0 auto;
}

#news__detail .the_content p img.alignright {
   display: block;
   margin-left: auto;
}

#news__detail .the_content p img:last-child {
   margin-right: 0;
}

#news__detail .post-btn {
   width: calc(100% - 80px);
   max-width: 1320px;
   font-size: 14px;
   letter-spacing: 0.02em;
   list-style: none;
   text-align: center;
   margin: 50px auto 0;
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 20px;
   position: relative;
}

#news__detail .post-btn li a {
   display: inline-block;
   padding: 10px 28px;
   border: 1px solid #333;
   color: #333;
   text-decoration: none;
   transition: all 0.3s ease;
   letter-spacing: 0.05em;
}

#news__detail .post-btn li a:hover {
   background-color: #333;
   color: #fff;
}

#news__detail .post-btn .prev {
   position: absolute;
   top: 50%;
   left: 0;
   transform: translateY(-50%);
}

#news__detail .post-btn .next {
   position: absolute;
   top: 50%;
   right: 0;
   transform: translateY(-50%);
}

@media screen and (max-width: 1440px) {
   .news-template {
      padding-left: 70px;
   }
}

@media screen and (max-width: 1200px) {
   .news-template .breadcrumbs {
      padding: 0 40px 70px;
   }
}

@media screen and (max-width: 991px) {
   .news-template {
      padding-left: 0;
   }

   .news-template .breadcrumbs {
      padding: 0 20px 20px;
      margin-bottom: 20px;
   }

   #news__detail .the_content p img {
      display: block;
      margin: 0 auto 15px;
   }

   #news__detail .the_content p img:last-child {
      margin: 0 auto;
   }
}

@media screen and (max-width: 767px) {
   .news-template .wrap {
      width: 100%;
   }

   #cpt-info .list li+li {
      padding-top: 20px;
   }

   #news__detail .the_content {
      padding-top: 15px;
   }
}

/* -- -- */
/*
 * WORKS
*=============================================*/
/* -- -- */
.works-template {
   position: relative;
}

.works-template .copyright {
   height: 300px;
   font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
   font-size: 13px;
   letter-spacing: 0.02em;
   line-height: 26px;
   position: absolute;
   top: 240px;
   left: 40px;
}

.works-template .copyright .txt-latin {
   letter-spacing: 0.02em;
}

/* -- -- */
#cpt-works {
   padding-left: 110px;
}

#cpt-works .works-banner {
   padding-bottom: 100px;
   margin-left: -110px;
}

#cpt-works .works-banner img {
   width: 100%;
   max-width: inherit;
   display: block;
   max-height: 600px;
   object-fit: cover;
}

#cpt-works .txt-bottom {
   line-height: 55px;
   padding-top: 120px;
   padding-right: 110px;
   padding-bottom: 80px;
   position: relative;
   z-index: 1;
   height: auto !important;
}

#cpt-works .txt-bottom .inner {
   width: 100%;
   max-width: 1300px;
   border-top: 1px solid #707070;
   margin: 0 auto;
   padding: 100px 0 0;
}

@media screen and (max-width: 991px) {
   #cpt-works {
      padding-left: 50px;
   }

   #cpt-works .works__list {
      padding-right: 50px;
   }

   #cpt-works .works-banner {
      margin-left: -50px;
   }

   #cpt-works .copyright {
      left: 10px;
   }

   #cpt-works .txt-bottom {
      padding-right: 50px;
   }
}

@media screen and (max-width: 767px) {
   #cpt-works {
      padding-left: 15px;
   }

   #cpt-works .works__list {
      padding-right: 15px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
   }

   #cpt-works .works__list li {
      width: calc(50% - 6px);
      border-radius: 6px;
      overflow: hidden;
   }

   #cpt-works .works__list li+li {
      margin-top: 0;
   }

   #cpt-works .works__list li .photo a {
      display: block;
      width: 100%;
      padding-top: 80%;
      position: relative;
   }

   #cpt-works .works__list li .photo a span {
      display: block;
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
   }


   #cpt-works .copyright {
      font-size: 10px;
      left: -3px;
   }

   #cpt-works .works-banner {
      padding-bottom: 30px;
      margin-left: -15px;
   }

   #cpt-works .txt-bottom {
      line-height: 36px;
      padding: 30px 15px 40px;
      margin-bottom: 0;
      overflow: visible;
   }

   #cpt-works .txt-bottom .inner {
      padding-top: 30px;
      padding-bottom: 0;
   }
}

/* -- -- */
#works__detail {
   padding: 0 120px;
}

#works__detail .copyright {
   top: 0;
}

#works__detail .wrap {
   max-width: 1440px;
}

#works__detail .the_title {
   font-weight: 500;
   font-size: 16px;
   line-height: 27px;
   padding-bottom: 15px;
}

#works__detail .slider-for .slide {
}

#works__detail .slider-for .slide p {
   background-color: #fff;
   width: 100%;
   padding-top: 50%;
   position: relative;
}

#works__detail .slider-for .slide img {
   display: block;
   width: auto;
   height: auto;
   max-height: 100%;
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
}

#works__detail .slider-for .slide figcaption {
   width: 100%;
   text-align: right;
   font-size: 13px;
   line-height: 20px;
   padding-top: 10px;
}

#works__detail .slider-for .slick-arrow {
   width: 38px;
   height: 75px;
   color: transparent;
   border: 0;
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   z-index: 1;
   cursor: pointer;
}

#works__detail .slider-for .slick-next {
   background: url("../img/common/slider-next.svg") no-repeat center top/cover;
   left: 100%;
   margin-left: 40px;
}

#works__detail .slider-for .slick-prev {
   background: url("../img/common/slider-prev.svg") no-repeat center top/cover;
   right: 100%;
   margin-right: 40px;
}

#works__detail .slider-nav {
   margin: 0 -25px;
   padding-top: 35px;
}

#works__detail .slider-nav .slide {
   margin: 0 25px;
   cursor: pointer;
}

#works__detail .slider-nav .slide p {
   width: 100%;
   padding-top: 100%;
   position: relative;
}

#works__detail .slider-nav .slide p:after {
   content: '';
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.5);
   position: absolute;
   top: 0;
   left: 0;
   opacity: 0;
}

#works__detail .slider-nav .slick-current p:after {
   opacity: 1;
}

@media screen and (max-width: 1400px) {
   #works__detail .copyright {
      display: none;
   }
}

@media screen and (max-width: 991px) {
   #works__detail {
      padding: 0 80px;
   }

   #works__detail .slider-for .slick-prev {
      margin-right: 20px;
   }

   #works__detail .slider-for .slick-next {
      margin-left: 20px;
   }

   #works__detail .slider-nav {
      margin: 0 -10px;
   }

   #works__detail .slider-nav .slide {
      margin: 0 10px;
   }
}

@media screen and (max-width: 767px) {
   #works__detail {
      padding: 20px 20px 0;
   }

   #works__detail .wrap {
      padding: 0;
   }

   #works__detail .slider-for .slide p {
      padding-top: 70%;
   }

   #works__detail .slider-for .slick-arrow {
      width: 20px;
      height: 39px;
   }

   #works__detail .slider-for .slick-prev {
      margin-right: 10px;
   }

   #works__detail .slider-for .slick-next {
      margin-left: 10px;
   }

   #works__detail .slider-nav {
      margin: 0 -5px;
      padding-top: 10px;
   }

   #works__detail .slider-nav .slide {
      margin: 0 5px;
   }
}

/*=============================================
 * Works Detail - Breadcrumb, Description, Projects
 *=============================================*/
.breadcrumb {
   font-size: 13px;
   color: #888;
   padding-bottom: 20px;
   letter-spacing: 0.02em;
}

.breadcrumb a {
   color: #666;
   text-decoration: none;
   transition: color 0.2s;
}

.breadcrumb a:hover {
   color: #333;
}

.breadcrumb__sep {
   margin: 0 8px;
   color: #ccc;
}

#works__detail .the_title {
   padding-bottom: 25px;
   margin-bottom: 25px;
   border-bottom: 1px solid #ddd;
}

.works-detail__desc {
   font-size: 15px;
   line-height: 2;
   color: #555;
   padding-bottom: 30px;
   text-align: center;
   max-width: 700px;
   margin: 0 auto;
}

.works-detail__projects {
   padding-bottom: 40px;
   text-align: center;
}

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

.works-detail__projects li {
   font-size: 14px;
   line-height: 2.2;
   color: #555;
   letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
   .breadcrumb {
      font-size: 11px;
      padding: 15px 0 15px;
   }

   .works-detail__desc {
      font-size: 14px;
      padding: 0 15px 20px;
      text-align: center;
   }

   .works-detail__projects {
      padding: 0 15px 30px;
      text-align: center;
   }

   .works-detail__projects li {
      font-size: 13px;
   }
}

/*=============================================
 * Gallery Tabs + Grid
 *=============================================*/
/* Gallery Tabs */
.gallery-tabs {
   display: flex;
   justify-content: center;
   gap: 10px;
   padding-bottom: 30px;
   flex-wrap: wrap;
}

.gallery-tab {
   background: #f5f5f5;
   border: 1px solid #ddd;
   border-radius: 30px;
   font-size: 13px;
   color: #666;
   padding: 8px 22px;
   cursor: pointer;
   transition: all 0.3s;
   letter-spacing: 0.03em;
   font-family: inherit;
}

.gallery-tab:hover {
   background: #eee;
   color: #333;
   border-color: #ccc;
}

.gallery-tab.active {
   background: #333;
   color: #fff;
   border-color: #333;
}

/* Gallery Viewer - main image + thumbnails */
.gallery-viewer__main {
   width: 100%;
   max-width: 800px;
   margin: 0 auto 20px;
   border-radius: 8px;
   overflow: hidden;
   background: #f9f9f9;
   position: relative;
}

.gallery-viewer__img {
   width: 100%;
   height: auto;
   display: none;
}

.gallery-viewer__img.active {
   display: block;
   animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
   from { opacity: 0; }
   to { opacity: 1; }
}

.gallery-viewer__thumbs {
   display: flex;
   justify-content: center;
   gap: 10px;
   flex-wrap: wrap;
   padding-bottom: 40px;
}

.gallery-viewer__thumb {
   width: 80px;
   height: 60px;
   border-radius: 4px;
   overflow: hidden;
   cursor: pointer;
   opacity: 0.5;
   border: 2px solid transparent;
   transition: all 0.3s;
}

.gallery-viewer__thumb:hover {
   opacity: 0.8;
}

.gallery-viewer__thumb.active {
   opacity: 1;
   border-color: #333;
}

.gallery-viewer__thumb img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
}

@media screen and (max-width: 767px) {
   .gallery-tabs {
      gap: 8px;
      padding: 0 15px 20px;
   }

   .gallery-tab {
      font-size: 11px;
      padding: 6px 14px;
   }

   .gallery-viewer__main {
      border-radius: 0;
      margin-bottom: 12px;
   }

   .gallery-viewer__thumbs {
      gap: 6px;
      padding: 0 15px 30px;
   }

   .gallery-viewer__thumb {
      width: 60px;
      height: 45px;
   }
}

/* -- -- */