/*
 * opening
*=============================================*/
/*
 * Animation
*=============================================*/
@-webkit-keyframes fadeInUp {
   from {
      opacity: 0;
      -webkit-transform: translate3d(0, 20px, 0);
      transform: translate3d(0, 20px, 0);
   }

   30% {
      opacity: 0;
      -webkit-transform: translate3d(0, 20px, 0);
      transform: translate3d(0, 20px, 0);
      -webkit-animation-timing-function: ease-out;
      animation-timing-function: ease-out;
   }

   to {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
      -webkit-animation-timing-function: ease-out;
      animation-timing-function: ease-out;
   }
}

@keyframes fadeInUp {
   from {
      opacity: 0;
      -webkit-transform: translate3d(0, 20px, 0);
      transform: translate3d(0, 20px, 0);
   }

   30% {
      opacity: 0;
      -webkit-transform: translate3d(0, 20px, 0);
      transform: translate3d(0, 20px, 0);
      -webkit-animation-timing-function: ease-out;
      animation-timing-function: ease-out;
   }

   to {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
      -webkit-animation-timing-function: ease-out;
      animation-timing-function: ease-out;
   }
}

.fadeInUp {
   -webkit-animation-name: fadeInUp;
   animation-name: fadeInUp;
   opacity: 0;
}

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

.animated {
   -webkit-animation-duration: 1.6s;
   -webkit-animation-fill-mode: both;
   animation-duration: 1.6s;
   animation-fill-mode: both;
}

/*
 * Custom
*=============================================*/
/* -- heading -- */
.h2 {
   font-weight: 600;
   font-size: 24px;
   letter-spacing: 0em;
   line-height: 28px;
   text-align: center;
   padding: 0;
   position: relative;
}

.h2 .txt-vertical {
   display: block;
   height: max-content;
   background-color: #6FE7FF;
   color: #fff;
   letter-spacing: 0.1em;
   margin: 0 auto 8px;
   padding: 15px 8px;
}

.h2 small {
   display: inline-block;
   background-color: #D9D9D9;
   font-size: 17px;
   letter-spacing: 0.2em;
   line-height: 17px;
   padding: 2px 10px 4px;
}

.title01 {
   width: 100%;
   max-width: 600px;
   box-sizing: border-box;
   font-weight: 600;
   font-size: 28px;
   letter-spacing: 0.01em;
   line-height: 40px;
   border-top: 1px dashed #ccc;
   border-bottom: 1px dashed #ccc;
   padding: 20px 50px;
   position: relative;
}

.title01 small {
   display: inline-block;
   font-weight: 400;
   font-size: 15px;
   line-height: 30px;
   padding-left: 10px;
}

.h-20 {
   font-weight: 500;
   font-size: 20px;
   letter-spacing: 0;
   line-height: 30px;
}

.h-22 {
   font-weight: 500;
   font-size: 22px;
   letter-spacing: 0;
   line-height: 32px;
}

.h-24 {
   font-weight: 600;
   font-size: 24px;
   letter-spacing: 0.1em;
   line-height: 35px;
}

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

.h-32 {
   font-weight: 500;
   font-size: 32px;
   letter-spacing: 0;
   line-height: 40px;
}

.h-36 {
   font-weight: 600;
   font-size: 36px;
   letter-spacing: 0.12em;
   line-height: 60px;
}

.h-40 {
   font-weight: 600;
   font-size: 40px;
   letter-spacing: 0;
   line-height: 60px;
}

@media screen and (max-width: 767px) {
   .h2 {
      font-size: 20px;
      line-height: 26px;
   }

   .h2 .txt-vertical {
      margin-bottom: 4px;
   }

   .title01 {
      font-size: 22px;
      line-height: 30px;
      padding: 15px 0;
   }

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

   .h-20 {
      font-size: 16px;
      line-height: 30px;
   }

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

   .h-24 {
      font-size: 13px;
      line-height: 30px;
   }

   .h-28 {
      font-size: 22px;
      line-height: 36px;
   }

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

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

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

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

.button a {
   display: inline-block;
   width: 290px;
   border: 1px solid #333;
   color: #333;
   font-weight: 500;
   font-size: 15px;
   letter-spacing: 0em;
   line-height: 32px;
   box-sizing: border-box;
   text-align: center;
   padding: 9px 0;
   position: relative;
}

.button a:before {
   content: '';
   width: 100%;
   height: 100%;
   border-right: 1px solid #333;
   border-bottom: 1px solid #333;
   position: absolute;
   top: 10px;
   left: 10px;
   transition: all 0.3s;
}

.button a:hover {
   opacity: 1;
   background-color: #990000;
   color: #fff;
   border-color: #990000;
}

.button a:hover:before {
   opacity: 0;
}

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

   .button a {
      width: 85%;
   }

   .button a:before {
      top: 5px;
      left: 5px;
   }
}


.button2 {
   position: relative;
}

.button2 a {
   display: inline-block;
   width: 290px;
   border: 1px solid #333;
   color: #333;
   font-weight: 500;
   font-size: 15px;
   letter-spacing: 0em;
   line-height: 32px;
   box-sizing: border-box;
   text-align: center;
   padding: 9px 0;
   position: relative;
}

.button2 a:before {
   content: '';
   width: 100%;
   height: 100%;
   border-right: 1px solid #333;
   border-bottom: 1px solid #333;
   position: absolute;
   top: 10px;
   left: 10px;
   transition: all 0.3s;
}

.button2 a:hover {
   opacity: 1;
   background-color: #333;
   color: #333;
   border-color: #333;
}

.button2 a:hover:before {
   opacity: 0;
}

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

   .button2 a {
      width: 85%;
   }

   .button2 a:before {
      top: 5px;
      left: 5px;
   }
}

/* -- -- */
.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-blue {
   color: #368FC7;
}

.cl-green {
   color: #55913A;
}
.cl-white {
   color: #333;
}
.cl-red {
   color: #BD3A43;
}

.under_line {
   background-image: linear-gradient(to bottom, transparent 60%, #FFED8B 40%);
}

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

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

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

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

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

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

.w700 {
   width: 100%;
   max-width: 700px;
   box-sizing: border-box;
   margin: 0 auto;
}

.w740 {
   width: 100%;
   max-width: 740px;
   box-sizing: border-box;
   margin: 0 auto;
}

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

.w900 {
   width: 100%;
   max-width: 900px;
   box-sizing: border-box;
   margin: 0 auto;
}

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

.wr_1400 {
   width: 100%;
   max-width: 1400px;
   box-sizing: border-box;
   margin: 0 auto;
   padding: 0;
}

@media screen and (max-width: 1400px) {
   .wr_1400 {
      max-width: 960px;
   }
}

@media screen and (max-width: 991px) {
   .wr_1400 {
      max-width: 720px;
   }
}

@media screen and (max-width: 767px) {
   .wr_1400 {
      max-width: 100%;
      padding: 0 20px;
   }
}

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

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

/* -- --*/
.bg01 {
   background-color: #DFFAFF;
}

/* -- --*/
.bg-parallax {
   width: 100%;
   height: 100%;
   min-height: inherit;
   position: absolute;
   top: 0;
   left: 0;
}

.img_parallax {
   display: none;
}

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

   .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 {
   position: relative;
}

.box-img dl {
   display: flex;
   flex-wrap: wrap;
   flex-direction: row-reverse;
   padding-top: 35px;
}

.box-img dl dt {
   width: 38%;
   margin-left: 4%;
}

.box-img dl dd {
   width: 58%;
}

@media screen and (max-width: 767px) {
   .box-img dl {
      display: block;
      padding-top: 20px;
   }

   .box-img dl dt {
      width: 100%;
      margin-left: 0;
      text-align: center;
   }

   .box-img dl dd {
      width: 100%;
      padding-top: 20px;
   }
}

/* -- --*/
.tb-style dl {
   display: table;
   width: 100%;
   box-sizing: border-box;
   border-bottom: 1px dashed #333;
   padding: 0 100px 15px;
}

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

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

.tb-style dl dt {
   width: 110px;
   position: relative;
}

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

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

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

@media screen and (max-width: 991px) {
   .tb-style dl {
      display: block;
      padding: 0 50px 20px;
   }

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

@media screen and (max-width: 767px) {
   .tb-style dl {
      display: block;
      padding: 0 0 10px;
   }

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

   .tb-style dl>* {
      display: block;
   }

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

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

   .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;
}

/* -- --*/
/*
 * Keyvisual
*=============================================*/
#kv {
   display: flex;
   align-items: center;
   justify-content: center;
   background: #000;
   width: 100%;
   height: 500px;
   position: relative;
}

.kv__bg {
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
   opacity: 0.75;
}

.kv__ttl {
   font-weight: 500;
   font-size: 28px;
   letter-spacing: 0.1em;
   line-height: 40px;
   color: #fff;
   text-align: center;
   padding-top: 7%;
}

.kv__ttl >* {
   width: 100%;
   max-width: 600px;
   border-top: 1px solid #fff;
   border-bottom: 1px solid #fff;
   font-weight: 500;
   margin: 0 auto;
   padding: 20px 0;
}
.kv__ttl small {
   font-size: 15px;
   letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
   #kv {
      height: 320px;
   }

   .kv__ttl {
      font-size: 20px;
      line-height: 30px;
      padding-top: 12%;
   }
   .kv__ttl small {
      display: block;
      font-size: 12px;
   }
}

/* -- breadcrumb -- */
.breadcrumbs {
   width: 100%;
   box-sizing: border-box;
   font-size: 15px;
   letter-spacing: 0;
   line-height: 20px;
   text-transform: capitalize;
   padding: 10px 0 0;
}

.breadcrumbs.absolute {
   position: absolute;
   top: 0;
   left: 0;
}

.breadcrumbs .wrap>span {
   display: inline-block;
   word-break: break-all;
   padding: 0 10px;
}

.breadcrumbs .wrap>span:first-child {
   margin-left: -10px;
}

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

body.error404 .breadcrumbs {
   display: none;
   color: transparent;
}

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

   .breadcrumbs .wrap {
      width: max-content;
      max-width: inherit;
      margin: 0;
   }
}

@media screen and (max-width: 767px) {
   .breadcrumbs {
      font-size: 12px;
      overflow-x: auto;
      padding: 10px 0;
   }

   .breadcrumbs .wrap {
      width: max-content;
      max-width: inherit;
      margin: 0;
   }

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

   .breadcrumbs .wrap>span:first-child {
      margin-left: -10px;
   }

   .navOpen .breadcrumbs {
      z-index: inherit;
   }
}

/* -- -- */
/*
 * Home
*=============================================*/
@-webkit-keyframes sdb05 {
   0% {
      height: 0;
      opacity: 0;
   }

   50% {
      opacity: 1;
   }

   100% {
      height: 100%;
      opacity: 0;
   }
}

@keyframes sdb05 {
   0% {
      height: 0;
      opacity: 0;
   }

   50% {
      opacity: 1;
   }

   100% {
      height: 100%;
      opacity: 0;
   }
}

.btn__scroll {
   color: #fff;
   font-family: 'Khand', sans-serif;
   font-weight: 500;
   font-size: 18px;
   letter-spacing: 0.1em;
   line-height: 20px;
}

.btn__scroll * {
   cursor: pointer !important;
}

.btn__scroll a {
   display: block;
   width: 42px;
}

.btn__scroll img {
   display: block;
   width: 17px;
   -webkit-animation: sdb05 2s infinite;
   animation: sdb05 2s infinite;
   margin: 30px auto 0;
}

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

#mv .wrap {
   display: flex;
   align-items: center;
   height: 100%;
}

#mv h2 {
   display: flex;
   flex-direction: row-reverse;
}

#mv h2 span {
   display: block;
   height: max-content;
   background-color: #fff;
   margin-right: 30px;
   padding: 10px 8px;
}

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

.mv__slider * {
   width: 100%;
   height: 100%;
}

.mv__slider .slide-bg {
   display: block;
}

@media screen and (max-width: 767px) {
   #mv {
      height: calc(90vh - 30px);
   }

   #mv h2 {
      font-size: 20px;
      padding-left: 40px;
   }

   #mv h2 span {
      margin-right: 20px;
      padding: 20px 0;
   }
}

/* -- -- */
#top__about {
   background: url("../img/index/about-bg.jpg") no-repeat center top/cover;
   padding: 90px 20px;
}

#top__about h3 {
   padding-top: 70px;
}

#top__about .txt {
   padding-top: 50px;
}

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

#top__about .photo {
   padding-top: 56px;
}

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

   #top__about h3 {
      padding-top: 30px;
   }

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

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

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

/* -- -- */
#top__future {
   padding: 220px 0;
   position: relative;
}

#top__future .bg-parallax {
   background-image: url("/wp-content/uploads/2025/06/グループ-23263.png");
}

#top__future h2 {
   width: 600px;
   border-top: 1px solid #fff;
   border-bottom: 1px solid #fff;
   text-align: center;
   color: #fff;
   margin: 0 auto;
   padding: 20px 0;
}

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

   #top__future h2 {
      width: 100%;
      font-size: 18px;
      line-height: 26px;
   }
}

/* -- -- */
#top__construction {
   padding-top: 120px;
   position: relative;
}

#top__construction .row {
   display: flex;
   flex-wrap: wrap;
   padding-top: 50px;
}

#top__construction .row>* {
   width: 50%;
}

#top__construction .row .photo {
   position: relative;
}

#top__construction .row .photo p {
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
}

#top__construction .row .box {
   box-sizing: border-box;
   padding: 45px 60px 185px;
}

#top__construction .row .box .inner {
   width: 100%;
   max-width: 640px;
}

#top__construction .row h3 {
   font-weight: 600;
   letter-spacing: 0.1em;
   border-top: 1px dashed #333;
   border-bottom: 1px dashed #333;
   padding: 20px 0;
}

#top__construction .row h3 span {
   font-weight: 400;
   font-size: 18px;
   padding-right: 10px;
}

#top__construction .row h3 small {
   font-size: 15px;
}

#top__construction .row h4 {
   padding-top: 40px;
}

#top__construction .row .txt {
   padding-top: 30px;
}

#top__construction .row .button {
   text-align: center;
   padding-top: 30px;
	padding-bottom: 20px;
}

#top__construction .row:nth-child(even) {
   flex-direction: row-reverse;
}

#top__construction .row:nth-child(even) .box .inner {
   margin-left: auto;
}

@media screen and (max-width: 991px) {
   #top__construction .row {
      display: block;
   }

   #top__construction .row>* {
      width: 100%;
   }

   #top__construction .row .photo {
      padding-top: 62%;
   }

   #top__construction .row .box {
      padding: 40px 20px;
   }

   #top__construction .row .box .inner {
      margin: 0 auto;
   }

   #top__construction .row:nth-child(odd) .box .inner {
      margin: 0 auto;
   }
}

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

   #top__construction .row {
      padding-top: 30px;
   }

   #top__construction .row+.row {
      padding-top: 40px;
   }

   #top__construction .row .box {
      padding: 20px 0 0;
   }

   #top__construction .row h3 {
      font-size: 20px;
      letter-spacing: 0.05em;
   }

   #top__construction .row h3 span {
      font-size: 15px;
      padding-right: 5px;
   }

   #top__construction .row h3 small {
      font-size: 13px;
   }

   #top__construction .row h4 {
      padding-top: 30px;
   }

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

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

#top__area .box {
   display: flex;
   flex-wrap: wrap;
   flex-direction: row-reverse;
   padding-top: 50px;
}

#top__area .photo {
   width: 780px;
   margin-left: 60px;
}

#top__area .desc {
   width: 420px;
   padding: 60px 0;
}

#top__area .txt {
   padding-top: 30px;
}

@media screen and (max-width: 1400px) {
   #top__area .desc {
      width: 27%;
   }

   #top__area .photo {
      width: 68%;
      margin-left: 5%;
   }
}

@media screen and (max-width: 991px) {
   #top__area .box {
      display: block;
   }

   #top__area .desc {
      width: 100%;
      padding: 40px 0 0;
   }

   #top__area .photo {
      width: 100%;
      margin-left: 0;
   }
}

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

   #top__area .wr_1400 {
      padding: 0;
   }

   #top__area .desc {
      box-sizing: border-box;
      padding: 30px 20px 0;
   }

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

/* -- -- */
#top__building {
   background: url("../img/index/top_building_bg.jpg") no-repeat center/cover;
   padding: 90px 0;
}

#top__building .box {
   display: flex;
   flex-wrap: wrap;
   padding-top: 50px;
}

#top__building .box .item {
   width: 580px;
   color: #fff;
   text-align: center;
   padding: 197px 0 196px;
   position: relative;
}

#top__building .box .item:before {
   content: '';
   border: 1px solid #fff;
   position: absolute;
   top: 10px;
   right: 10px;
   bottom: 10px;
   left: 10px;
}

#top__building .box .item+.item {
   margin-left: 40px;
}

#top__building .box .item h3 {
   padding-bottom: 30px;
}

#top__building .box .item h3 img {
   display: block;
   margin: 0 auto 20px;
}

#top__building .box .item .button a {
   background-color: #fff;
   border-color: #fff;
   color: #333;
}

#top__building .box .item .button a:before {
   border-color: #fff;
}

#top__building .box .item .button a:hover {
   background-color: #707C87;
   color: #fff;
   border-color: #707C87;
}

@media screen and (max-width: 1400px) {
   #top__building .box .item {
      width: 48%;
   }

   #top__building .box .item+.item {
      margin-left: 4%;
   }
}

@media screen and (max-width: 991px) {
   #top__building .box .item {
      padding: 80px 0;
   }
}

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

   #top__building .box {
      display: block;
      padding-top: 30px;
   }

   #top__building .box .item {
      width: 100%;
      padding: 120px 0 30px;
   }

   #top__building .box .item+.item {
      margin-top: 40px;
      margin-left: 0;
   }

   #top__building .box .item h3 {
      padding-bottom: 50px;
   }

   #top__building .box .item h3 img {
      width: auto;
      height: 28px;
      margin-bottom: 0;
   }
}

/* -- -- */
#top__works {
   padding: 120px 0 70px;
   position: relative;
}

#top__works:before {
   content: '';
   width: 100%;
   height: 32%;
   background-color: #F8F6F2;
   position: absolute;
   bottom: 0;
   left: 0;
}

#top__works .works__slider {
   padding-top: 70px;
}

#top__works .works__slider .swiper-slide {
   display: flex;
   flex-wrap: wrap;
   align-items: flex-start;
   flex-direction: row-reverse;
}

#top__works .works__slider .swiper-slide .photo {
   width: 832px;
}

#top__works .works__slider .swiper-slide .photo a {
   display: block;
   padding-top: 64%;
   position: relative;
}

#top__works .works__slider .swiper-slide .photo a span {
   display: block;
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
}

#top__works .works__slider .swiper-slide .box {
   width: 368px;
   background-color: #fff;
   box-sizing: border-box;
   border: 1px solid #333;
   line-height: 24px;
   padding: 30px 40px;
}

#top__works .works__slider .swiper-slide .box .cate {
   font-weight: 500;
   font-size: 13px;
   line-height: 20px;
}

#top__works .works__slider .swiper-slide .box .cate a {
   display: inline-block;
   color: #fff;
   background-color: #990000;
   text-align: center;
   padding: 3px 40px;
}

#top__works .works__slider .swiper-slide .box .ttl {
   padding: 15px 0 20px;
}

#top__works .works__slider .swiper-slide .box .ttl a {
   max-height: 48px;
   overflow: hidden;
   display: block;
   -webkit-line-clamp: 2;
   display: box;
   display: -webkit-box;
   -webkit-box-orient: vertical;
   text-overflow: ellipsis;
   white-space: normal;
}

#top__works .works__slider .swiper-slide .box .date {
   color: #707070;
   border-top: 1px solid #333;
   padding-top: 15px;
}

#top__works .works__slider .swiper-controls {
   display: flex;
   flex-wrap: wrap;
   position: absolute;
   bottom: 0;
   left: 0;
   z-index: 2;
}

#top__works .works__slider .swiper-controls .swiper-button-prev,
#top__works .works__slider .swiper-controls .swiper-button-next {
   width: 40px;
   height: 40px;
   cursor: pointer;
   margin: 0;
   position: static;
}

#top__works .works__slider .swiper-controls .swiper-button-prev:after,
#top__works .works__slider .swiper-controls .swiper-button-next:after {
   display: none;
}

#top__works .works__slider .swiper-controls .swiper-button-prev {
   background: url("../img/index/works-prev.svg") no-repeat center top/cover;
}

#top__works .works__slider .swiper-controls .swiper-button-next {
   background: url("../img/index/works-next.svg") no-repeat center top/cover;
   margin-left: 10px;
}

#top__works .works__slider .swiper-controls .swiper-pagination {
   text-align: left;
   width: 100%;
   padding-top: 24px;
   position: static;
}

#top__works .works__slider .swiper-controls .swiper-pagination .swiper-pagination-bullet {
   width: 8px;
   height: 8px;
   background-color: #ccc;
   opacity: 1;
   cursor: pointer;
}

#top__works .works__slider .swiper-controls .swiper-pagination .swiper-pagination-bullet+.swiper-pagination-bullet {
   margin-left: 24px;
}

#top__works .works__slider .swiper-controls .swiper-pagination .swiper-pagination-bullet-active,
#top__works .works__slider .swiper-controls .swiper-pagination .swiper-pagination-bullet:hover {
   background-color: #FF8C00;
}

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

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

@media screen and (max-width: 1400px) {
   #top__works .works__slider .swiper-slide .photo {
      width: calc(100% - 368px);
   }
}

@media screen and (max-width: 991px) {
   #top__works .works__slider .swiper-slide {
      display: block;
   }

   #top__works .works__slider .swiper-slide .photo {
      width: 100%;
   }

   #top__works .works__slider .swiper-slide .box {
      width: 90%;
      margin-top: 10px;
   }

   #top__works .works__slider .swiper-controls {
      padding-top: 10px;
      position: static;
   }
}

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

   #top__works:before {
      height: 40%;
   }

   #top__works .works__slider {
      padding-top: 20px;
   }

   #top__works .works__slider .swiper-slide .box {
      padding: 20px 20px;
   }

   #top__works .works__slider .swiper-slide .box .ttl {
      font-size: 14px;
      line-height: 20px;
      padding: 15px 0 10px;
   }

   #top__works .works__slider .swiper-slide .box .ttl a {
      max-height: 60px;
      -webkit-line-clamp: 3;
   }

   #top__works .works__slider .swiper-slide .box .date {
      padding-top: 10px;
   }
}

/* -- -- */
#top__online {
   /*padding-bottom: 120px;*/
}

#top__online .photo {
   height: 520px;
   position: relative;
}

#top__online .photo .bg-parallax {
   background-image: url("https://taniguchi-kaitai.com/wp-content/uploads/2025/06/20250627104953.jpeg");
}

#top__online .box {
   width: 92%;
   border: 1px solid #333;
   margin-top: 120px;
   padding: 60px 100px;
}

#top__online h2 {
   border-bottom: 1px solid #333;
   padding-bottom: 20px;
}

#top__online h2 img {
   display: block;
   margin: 0 auto 10px;
}

#top__online .txt {
   width: 100%;
   max-width: 640px;
   margin: 0 auto;
   padding-top: 20px;
}

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

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

   #top__online .photo {
      height: auto;
      padding-top: 72%;
   }

   #top__online .box {
      width: calc(100% - 20px);
      margin-top: 50px;
      padding: 40px 20px;
   }

   #top__online .box h2 {
      padding-bottom: 20px;
   }

   #top__online .box h2 img {
      width: auto;
      height: 30px;
      margin-bottom: 10px;
   }

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

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

/* -- -- */
#top__news {
   background-color: #F8F6F2;
   padding: 90px 20px;
}

#top__news .box {
   padding-top: 50px;
}

#top__news ul li {
   display: table;
   width: 100%;
   box-sizing: border-box;
   border-bottom: 1px dashed #707070;
   padding: 0 100px 30px;
}

#top__news ul li+li {
   padding-top: 30px;
}

#top__news ul li>* {
   display: table-cell;
   vertical-align: middle;
}

#top__news ul li .date {
   width: 70px;
   font-size: 13px;
   line-height: 19px;
   color: #707070;
}

#top__news ul li .cate {
   width: 120px;
   padding-left: 20px;
}

#top__news ul li .cate a {
   display: block;
   background-color: #990000;
   color: #fff;
   font-size: 13px;
   line-height: 19px;
   text-align: center;
   padding: 2px 0;
}

#top__news ul li .ttl {
   font-weight: 500;
   font-size: 15px;
   line-height: 24px;
   padding-left: 40px;
}

#top__news ul li .ttl a {
   max-height: 48px;
   overflow: hidden;
   display: block;
   -webkit-line-clamp: 1;
   display: box;
   display: -webkit-box;
   -webkit-box-orient: vertical;
   text-overflow: ellipsis;
   white-space: normal;
}

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

@media screen and (max-width: 1400px) {
   #top__news .photo {
      width: 35%;
      padding-top: 35%;
   }

   #top__news .list {
      width: 60%;
      margin-left: 5%;
   }
}

@media screen and (max-width: 991px) {
   #top__news .photo {
      width: 70%;
      padding-top: 70%;
      margin: 0 auto;
   }

   #top__news .photo:after {
      right: -50px;
      bottom: -50px;
   }

   #top__news .list {
      width: 100%;
      margin-top: 40px;
      margin-left: 0;
   }

   #top__news .button {
      text-align: center;
   }
}

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

   #top__news .box {
      padding-top: 40px;
   }

   #top__news ul li {
      display: block;
      padding: 0 25px 30px;
   }

   #top__news ul li+li {
      padding-top: 30px;
   }

   #top__news ul li>* {
      display: inline-block;
   }

   #top__news ul li .cate {
      padding-left: 0;
   }

   #top__news ul li .ttl {
      display: block;
      padding-top: 10px;
      padding-left: 0;
   }

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

/* -- -- */
/*
 * Company
*=============================================*/
/* -- -- */
#lead {
   background: url("../img/index/top_building_bg.jpg") no-repeat center/cover;
   padding: 110px 20px 90px;
}

#lead .txt {
   padding-top: 30px;
}

#lead .lead_link {
   padding-top: 60px;
}

#lead .lead_link h3 {
   text-align: center;
   border-bottom: 1px dashed #707070;
   padding-bottom: 20px;
}

#lead .lead_link h3 small {
   display: block;
   font-size: 15px;
   letter-spacing: 0.15em;
   line-height: 30px;
   padding-top: 10px;
}

#lead .lead_link ul {
   display: flex;
   flex-wrap: wrap;
   font-weight: 400;
   font-size: 18px;
   line-height: 26px;
   letter-spacing: 0;
   padding-top: 10px;
}

#lead .lead_link ul li {
   width: 32%;
   margin-left: 2%;
   padding-top: 2%;
}

#lead .lead_link ul li:nth-child(3n + 1) {
   margin-left: 0;
}

#lead .lead_link ul li a {
   display: block;
   border-radius: 10px;
   border: 1px solid #333;
   background-color: #fff;
   text-align: center;
   padding: 23px 0;
   position: relative;
}

#lead .lead_link ul li a:hover {
   background-color: #333;
   color: #fff;
   opacity: 1;
}

#lead .lead_link ul li i {
   display: block;
   position: absolute;
   top: 50%;
   right: 20px;
   transform: translateY(-50%);
}

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

   #lead .box {
      padding: 30px 20px;
   }

   #lead .box:after {
      bottom: -20px;
   }

   #lead h2 {
      font-size: 20px;
      line-height: 30px;
   }

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

   #lead .lead_link {
      padding-top: 40px;
   }

   #lead .lead_link h3 {
      padding-bottom: 15px;
   }

   #lead .lead_link h3 small {
      font-size: 12px;
      padding-top: 0;
   }

   #lead .lead_link ul {
      font-size: 14px;
   }

   #lead .lead_link ul li {
      width: 49%;
      margin-left: 2%;
   }

   #lead .lead_link ul li:nth-child(3n + 1) {
      margin-left: 2%;
   }

   #lead .lead_link ul li:nth-child(2n + 1) {
      margin-left: 0;
   }

   #lead .lead_link ul li a {
      padding: 16px 20px;
   }

   #lead .lead_link ul li i {
      right: 10px;
   }
}

/* -- -- */
#company__greeting {
   padding: 90px 20px;
}

#company__greeting .photo {
   padding-top: 50px;
}

#company__greeting .desc {
   padding-top: 30px;
}

#company__greeting .txt {
   padding-top: 30px;
}

#company__greeting .name {
   text-align: right;
   font-weight: 500;
   font-size: 18px;
   letter-spacing: 0.1em;
   line-height: 32px;
   padding-top: 30px;
}

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

   #company__greeting .photo {
      padding-top: 20px;
   }

   #company__greeting .desc {
      padding-top: 20px;
   }

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

   #company__greeting .name {
      padding-top: 15px;
   }
}

/* -- -- */
#company__history {
   background-color: #F8F6F2;
   padding: 90px 20px;
}

#company__history .tb-style {
   padding-top: 50px;
}

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

   #company__history .tb-style {
      padding-top: 20px;
   }
}

/* -- -- */
#company__profile {
   padding: 120px 20px;
}

#company__profile .tb-style {
   padding-top: 50px;
}

#company__profile #map {
   padding-top: 30px;
}

#company__profile #map .iframe {
   width: 100%;
   padding-top: 420px;
   margin-top: 10px;
   position: relative;
}

#company__profile #map .iframe>* {
   display: block;
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
}

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

   #company__profile .tb-style {
      padding-top: 20px;
   }

   #company__profile #map .iframe {
      padding-top: 80%;
   }
}

/* -- -- */
#company__goals {
   background-color: #F8F6F2;
   padding: 90px 20px;
}

#company__goals .photo {
   padding-bottom: 40px;
}

#company__goals .box {
   background-color: #fff;
   border: 1px solid #333;
   border-radius: 10px;
   padding: 50px 100px;
}

#company__goals h2 {
   border-bottom: 1px dashed #000;
   padding-bottom: 20px;
}

#company__goals .txt {
   padding-top: 45px;
}

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

   #company__goals .box {
      padding: 40px 20px;
   }

   #company__goals h2 {
      padding-bottom: 10px;
   }

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

/* -- -- */
/*
 * new house
*=============================================*/
/* -- -- */
.new_house_style {
   padding: 120px 0 60px;
}

.new_house_style .photo {
   padding-top: 40px;
}

.new_house_style .box {
   display: flex;
   flex-wrap: wrap;
   padding-top: 30px;
	justify-content: center;
}

.new_house_style .box .item {
	width: 90%;
   margin-left: 5%;
   padding-bottom: 60px;
}

.new_house_style .box .item:nth-child(2n + 1) {
   margin-left: 0;
}

.new_house_style .box h3 {
   border-bottom: 1px dashed #333;
   padding: 0 0 15px 30px;
   position: relative;
}

.new_house_style .box h3 img {
   width: 20px;
   position: absolute;
   top: 4px;
   left: 0;
}

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

.new_house_style+#top__works {
   padding-top: 0;
}

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

   .new_house_style .photo {
      padding-top: 20px;
   }

   .new_house_style .box {
      display: block;
      padding-top: 20px;
   }

   .new_house_style .box .item {
      display: block;
      width: 100%;
      margin-left: 0;
      padding-bottom: 40px;
   }

   .new_house_style .box .item:last-child {
      padding-bottom: 0;
   }
}

/* -- -- */
/*
 * reform
*=============================================*/
/* -- -- */
.reform_style {
   padding: 90px 0;
}

.reform_style .box {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   padding-top: 40px;
   margin-bottom: -50px;
}

.reform_style .box .item {
   width: 32%;
   margin-left: 2%;
   padding-bottom: 50px;
}

.reform_style .box .item:nth-child(3n + 1) {
   margin-left: 0;
}

.reform_style .box h3 {
   font-weight: 500;
   font-size: 18px;
   line-height: 26px;
   border-bottom: 1px dashed #000;
   padding: 10px 0;
}

.reform_style .box .txt {
   font-size: 14px;
   line-height: 23px;
   padding-top: 10px;
}

#exterior01 {
   padding-bottom: 0;
}

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

   .reform_style .box {
      display: block;
      margin-bottom: 0;
   }

   .reform_style .box .item {
      width: 100%;
      margin-left: 0;
      padding-bottom: 40px;
   }

   .reform_style .box .item:last-child {
      padding-bottom: 0;
   }

   #exterior01 {
      padding-bottom: 0;
   }
}

/* -- -- */
/*
 * COST
*=============================================*/
/* -- -- */
.cost_style {
   padding: 90px 0;
}

.cost_style .box dl {
   border-bottom: 1px dashed #333;
   padding: 40px 0 20px;
}

.cost_style .box dl dd {
   padding-top: 30px;
}

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

   .cost_style .box dl {
      padding: 30px 0 15px;
   }

   .cost_style .box dl dd {
      padding-top: 15px;
   }
}

/* -- -- */
#subsidy {
   background: url("../img/index/about-bg.jpg") no-repeat center top/cover;
   padding: 90px 20px;
}

#subsidy h3 {
   padding-top: 50px;
}

#subsidy .txt {
   border-bottom: 1px dashed #333;
   padding: 30px 0 20px;
}

#subsidy ul {
   display: flex;
   flex-wrap: wrap;
   font-weight: 400;
   font-size: 18px;
   line-height: 26px;
   letter-spacing: 0;
   padding-top: 30px;
}

#subsidy ul li {
   width: 32%;
}

#subsidy ul li+li {
   margin-left: 2%;
}

#subsidy ul li a {
   display: block;
   border-radius: 10px;
   border: 1px solid #333;
   background-color: #fff;
   padding: 14px 30px;
   position: relative;
}

#subsidy ul li a:hover {
   background-color: #333;
   color: #fff;
   opacity: 1;
}

#subsidy ul li a small {
   display: block;
   font-size: 15px;
   line-height: 24px;
   padding-top: 6px;
}

#subsidy ul li i {
   display: block;
   font-size: 20px;
   position: absolute;
   top: 50%;
   right: 20px;
   transform: translateY(-50%);
}

@media screen and (max-width: 991px) {
   #subsidy ul li {
      width: 49%;
      margin-bottom: 2%;
   }

   #subsidy ul li:nth-child(2n + 1) {
      margin-left: 0;
   }
}

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

   #subsidy h3 {
      padding-top: 30px;
   }

   #subsidy .txt {
      padding: 15px 0 15px;
   }

   #subsidy ul {
      display: block;
      font-size: 16px;
   }

   #subsidy ul li {
      width: 100%;
   }

   #subsidy ul li+li {
      margin-left: 0;
   }

   #subsidy ul li a {
      padding: 14px 30px;
   }

   #subsidy ul li a small {
      font-size: 12px;
      padding-top: 0;
   }
}

/* -- -- */
/*
 * Flow
*=============================================*/
/* -- -- */
#flow__list {
   padding: 120px 20px;
}

#flow__list .box .item {
   border-bottom: 1px dashed #333;
   padding: 50px 0 20px;
}

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

#flow__list .box .no {
   font-weight: 500;
   font-size: 18px;
   line-height: 26px;
   letter-spacing: 0.1em;
   padding-bottom: 10px;
}

#flow__list .box h3 span {
   display: inline-block;
   background-color: #F8F6F2;
   padding: 5px 10px;
}

#flow__list .box .txt {
   padding-top: 40px;
}

#flow__list .box .flow_tb {
   width: 100%;
   max-width: 800px;
   margin: 0 auto;
   padding-top: 40px;
}

#flow__list .box .flow_tb dl {
   display: table;
   width: 100%;
   font-weight: 500;
   font-size: 16px;
   line-height: 24px;
}

#flow__list .box .flow_tb dl+dl {
   padding-top: 10px;
}

#flow__list .box .flow_tb dl>* {
   display: table-cell;
   vertical-align: middle;
   padding: 6px 20px;
}

#flow__list .box .flow_tb dl dt {
   width: 200px;
   background-color: #707070;
   color: #fff;
   font-weight: 600;
   text-align: center;
   box-sizing: border-box;
}

#flow__list .box .flow_tb dl dd {
   height: 48px;
}

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

   #flow__list .box .item {
      padding: 40px 0 20px;
   }

   #flow__list .box .item+.item {
      padding-top: 40px;
   }

   #flow__list .box .no {
      font-size: 15px;
   }

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

   #flow__list .box .flow_tb {
      padding-top: 30px;
   }

   #flow__list .box .flow_tb dl {
      font-size: 14px;
      line-height: 24px;
   }

   #flow__list .box .flow_tb dl>* {
      padding: 5px 10px;
   }

   #flow__list .box .flow_tb dl dt {
      width: 110px;
      padding: 5px 0;
   }
}

/* -- -- */
/*
 * online-negotiation
*=============================================*/
/* -- -- */
div[id*="online"] h2 {
   text-align: center;
   border-bottom: 1px solid #707070;
   padding-bottom: 20px;
}

div[id*="online"] h2 small {
   display: block;
   font-weight: 400;
   font-size: 15px;
   line-height: 20px;
   letter-spacing: 0;
   padding-bottom: 5px;
}

@media screen and (max-width: 767px) {
   div[id*="online"] h2 {
      padding-bottom: 15px;
   }

   div[id*="online"] h2 small {
      font-size: 12px;
   }
}

/* -- -- */
#online01 {
   padding-top: 100px;
}

#online01 .box {
   display: flex;
   flex-wrap: wrap;
   padding: 0 100px 70px;
   position: relative;
}

#online01 .box:before {
   content: '';
   width: 100%;
   height: 60%;
   background-color: #F8F6F2;
   position: absolute;
   bottom: 0;
   left: 0;
   z-index: -1;
}

#online01 .box .photo {
   width: 50%;
}

#online01 .box .desc {
   width: 45%;
   margin-left: 5%;
   padding-top: 70px;
}

#online01 .box .txt {
   padding-top: 40px;
}

@media screen and (max-width: 991px) {
   #online01 .box {
      padding: 0 20px 70px;
   }

   #online01 .box .desc {
      padding-top: 0;
   }

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

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

   #online01 .wr_1400 {
      padding: 0;
   }

   #online01 .box {
      display: block;
      padding: 0 20px 40px;
   }

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

   #online01 .box .desc {
      width: 100%;
      margin-left: 0;
      padding-top: 20px;
   }

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

/* -- -- */
#online02 {
   padding: 100px 0 0px;
}

#online02 .box {
   display: flex;
   flex-wrap: wrap;
   padding-top: 50px;
}

#online02 .box .item {
   width: 32%;
   margin-left: 2%;
}

#online02 .box .item:nth-child(3n + 1) {
   margin-left: 0;
}

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

#online02 .box .txt {
   line-height: 30px;
   padding-top: 20px;
}

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

   #online02 .box {
      display: block;
      padding-top: 20px;
   }

   #online02 .box .item {
      width: 100%;
      margin-left: 0;
   }

   #online02 .box .item+.item {
      margin-top: 40px;
   }

   #online02 .box h3 {
      padding-top: 15px;
   }

   #online02 .box .txt {
      line-height: 24px;
      padding-top: 15px;
   }
}

/* -- -- */
#online03 {
   background-color: #FBF6EB;
   padding: 80px 0 90px;
}

#online03 .box1 {
   margin-bottom: 20px;
   padding-top: 40px;
   padding-bottom: 35px;
   position: relative;
}

#online03 .box1:before {
   content: '';
   width: 100%;
   height: 25px;
   border: 1px dashed #333;
   border-top: 0;
   position: absolute;
   bottom: 0;
   left: 0;
}

#online03 .box1:after {
   content: '';
   width: 0;
   height: 20px;
   border-left: 1px dashed #333;
   position: absolute;
   top: 100%;
   left: 50%;
}

#online03 .box1 .bnr {
   display: flex;
   flex-wrap: wrap;
}

#online03 .box1 .bnr li {
   width: 32%;
}

#online03 .box1 .bnr li+li {
   margin-left: 2%;
}

#online03 .box2 {
   text-align: center;
}

#online03 .box2 .icon {
   padding: 20px 0;
}

#online03 .box2 .note {
   display: inline-block;
   text-align: left;
   padding-top: 15px;
}

#online03 .box2 .bnr {
   display: flex;
   flex-wrap: wrap;
   padding-top: 10px;
}

#online03 .box2 .bnr li {
   width: 23.5%;
}

#online03 .box2 .bnr li+li {
   margin-left: 2%;
}

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

   #online03 .box1 {
      padding-top: 20px;
      padding-bottom: 25px;
   }

   #online03 .box1 .bnr {
      justify-content: center;
   }

   #online03 .box1 .bnr li {
      width: 49%;
      padding-bottom: 2%;
   }

   #online03 .box1 .bnr li:nth-child(2n + 1) {
      margin-left: 0;
   }

   #online03 .box2 h3 {
      font-size: 18px;
   }

   #online03 .box2 .bnr li {
      width: 49%;
      padding-bottom: 2%;
   }

   #online03 .box2 .bnr li:nth-child(2n + 1) {
      margin-left: 0;
   }
}

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

#online04 .box {
   padding-top: 40px;
}

#online04 .box .item {
   border: 1px solid #4158A6;
   padding: 40px 100px 50px;
   position: relative;
}

#online04 .box .item+.item {
   margin-top: 55px;
}

#online04 .box .item:before {
   content: '';
   width: 0;
   height: 0;
   border: 75px solid transparent;
   border-top: 24px solid #4158A6;
   position: absolute;
   top: 100%;
   left: 50%;
   transform: translateX(-50%);
}

#online04 .box .item:last-child:before {
   display: none;
}

#online04 .box h3 {
   border-bottom: 1px solid #707070;
   padding-bottom: 15px;
}

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

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

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

   #online04 .box .item {
      padding: 30px 20px;
   }

   #online04 .box .item:before {
      border-width: 15px 40px 0 40px;
   }

   #online04 .box .item+.item {
      margin-top: 30px;
   }
}

/* -- -- */
/*
 * Post Type
*=============================================*/
/* --- --- */
.wp-pagenavi {
   display: flex;
   justify-content: center;
   align-items: center;
   padding-top: 105px;
}

.wp-pagenavi>* {
   display: block;
   width: 28px;
   height: 28px;
   line-height: 27px;
   background-color: #fff;
   border: 1px solid #333;
   color: #333;
   text-align: center;
   padding: 0;
   margin: 0 5px;
}

.wp-pagenavi>*:hover {
   background-color: #333;
   color: #fff;
   opacity: 1;
}

.wp-pagenavi .current {
   background-color: #333;
   color: #fff;
   pointer-events: none;
}

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

/* -- -- */
.cpt-template {
   padding: 120px 0 40px;
}

.cpt-template .wrap {
   display: flex;
   flex-wrap: wrap;
   max-width: 1000px;
}

.cpt-template .col-content {
   width: 72%;
}

.cpt-template .sidebar {
   width: 22%;
   margin-left: 6%;
}

.cpt-template .sidebar h2 {
   border-bottom: 1px solid #333;
   padding-bottom: 10px;
}

.cpt-template .sidebar ul {
   padding-top: 0;
}

.cpt-template .sidebar ul li {
   font-size: 14px;
   line-height: 20px;
   padding-top: 10px;
}

.cpt-template .sidebar ul li a {
   display: block;
   padding-left: 25px;
   position: relative;
}

.cpt-template .sidebar ul li a:before {
   content: '>';
   position: absolute;
   top: 50%;
   left: 0;
   transform: translateY(-50%);
}

.cpt-template .sidebar a:hover {
   text-decoration: underline;
   opacity: 1;
}

@media screen and (max-width: 1400px) {
   .cpt-template .wrap {
      max-width: 960px;
   }

   .cpt-template .sidebar {
      margin-right: 0;
      margin-left: 2%;
   }
}

@media screen and (max-width: 991px) {
   .cpt-template .wrap {
      max-width: 720px;
   }
}

@media screen and (max-width: 767px) {
   .cpt-template {
      padding: 50px 0 0;
   }

   .cpt-template .wrap {
      display: block;
      max-width: 100%;
   }

   .cpt-template .col-content {
      width: 100%;
   }

   .cpt-template .col-content.bg-wh {
      padding: 30px 20px 50px;
   }

   .cpt-template .col-content .bg-wh {
      padding: 30px 20px 50px;
   }

   .cpt-template .sidebar {
      width: 100%;
      font-size: 14px;
      margin-left: 0;
      padding-top: 50px;
   }
}

/* -- -- */
.news-list .item {
   border-bottom: 1px dashed #707070;
   padding: 0 50px 30px;
}

.news-list .item+.item {
   padding-top: 40px;
}

.news-list .item .date {
   display: inline-block;
   color: #707070;
   font-size: 13px;
   letter-spacing: 0;
   line-height: 20px;
   padding-right: 20px;
}

.news-list .item .cate {
   display: inline-block;
   width: 120px;
   font-size: 13px;
   letter-spacing: 0;
   line-height: 19px;
}

.news-list .item .cate a {
   display: block;
   background-color: #990000;
   color: #fff;
   text-align: center;
   padding: 2px 0;
}

.news-list .item .cate a:hover {
   background-color: #333;
   opacity: 1;
}

.news-list .item .ttl {
   font-size: 15px;
   line-height: 24px;
   padding-top: 10px;
}

.news-list .item .ttl a {
   max-height: 50px;
   overflow: hidden;
   display: block;
   -webkit-line-clamp: 1;
   display: box;
   display: -webkit-box;
   -webkit-box-orient: vertical;
   text-overflow: ellipsis;
   white-space: normal;
}

@media screen and (max-width: 767px) {
   .news-list .item {
      display: block;
      padding: 0 0 15px;
   }

   .news-list .item+.item {
      padding-top: 20px;
   }

   .news-list .item .ttl a {
      -webkit-line-clamp: 2;
   }
}

/* -- -- */
.news-list01 {
   display: flex;
   flex-wrap: wrap;
   margin-bottom: -40px;
}

.news-list01 .item {
   width: 350px;
   box-sizing: border-box;
   border-bottom: 1px dashed #707070;
   margin-bottom: 40px;
   margin-left: 20px;
   padding-bottom: 10px;
}

.news-list01 .item:nth-child(2n + 1) {
   margin-left: 0;
}

.news-list01 .item .photo {
   padding-bottom: 10px;
}

.news-list01 .item .photo a {
   display: block;
   width: 100%;
   padding-top: 78%;
   position: relative;
}

.news-list01 .item .photo a span {
   display: block;
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
}

.news-list01 .item .photo.img_bd a {
   box-sizing: border-box;
   border: 1px solid #ccc;
}

.news-list01 .item .date {
   display: inline-block;
   color: #707070;
   font-size: 13px;
   line-height: 20px;
   padding-right: 10px;
}

.news-list01 .item .cate {
   display: inline-block;
   font-size: 13px;
   line-height: 20px;
}

.news-list01 .item .cate a {
   display: block;
   width: 145px;
   background-color: #990000;
   color: #fff;
   text-align: center;
   padding: 3px 0;
}

.news-list01 .item .cate a:hover {
   background-color: #333;
   opacity: 1;
}

.news-list01 .item .ttl {
   font-size: 15px;
   line-height: 24px;
   padding-top: 10px;
}

.news-list01 .item .ttl a {
   max-height: 48px;
   overflow: hidden;
   display: block;
   -webkit-line-clamp: 2;
   display: box;
   display: -webkit-box;
   -webkit-box-orient: vertical;
   text-overflow: ellipsis;
   white-space: normal;
}

@media screen and (max-width: 1400px) {
   .news-list01 .item {
      width: 49%;
      margin-left: 2%;
   }

   .news-list01 .item:nth-child(2n + 1) {
      margin-left: 0;
   }
}

@media screen and (max-width: 767px) {
   .news-list01 {
      margin-bottom: 0;
   }

   .news-list01 .item {
      width: 100%;
      margin-left: 0;
   }

   .news-list01 .item:last-child {
      margin-bottom: 0;
   }
}

/* -- -- */
/*
 * Post Detail
 *=============================================*/
#cpt-detail {
   position: relative;
}

#cpt-detail .main-photo {
   text-align: center;
   padding-top: 10px;
}

#cpt-detail .date {
   display: inline-block;
   color: #707070;
   font-size: 13px;
   line-height: 20px;
   padding-right: 20px;
}

#cpt-detail .cate {
   display: inline-block;
}

#cpt-detail .cate a {
   display: inline-block;
   font-size: 13px;
   line-height: 19px;
   background-color: #990000;
   color: #fff;
   padding: 2px 20px;
   margin-right: 5px;
   margin-bottom: 5px;
}

#cpt-detail .cate a:hover {
   opacity: 1;
   background-color: #333;
}

#cpt-detail .the_title {
   font-weight: 500;
   font-size: 16px;
   line-height: 24px;
   letter-spacing: 0.03em;
   border-bottom: 1px dashed #707070;
   padding-top: 5px;
   padding-bottom: 15px;
}

#cpt-detail .the_content {
   font-size: 15px;
   line-height: 32px;
   padding-top: 15px;
}

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

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

.post-btn {
   width: 80px;
   box-sizing: content-box;
   line-height: 30px;
   text-align: center;
   margin: 90px auto 0;
   padding: 0 40px;
   position: relative;
}

.post-btn a {
   display: inline-block;
   background-color: #990000;
   color: #fff;
   padding: 0 11px;
}

.post-btn a:hover {
   background-color: #333;
   opacity: 1;
}

.post-btn .prev {
   width: 30px;
   position: absolute;
   top: 0;
   left: 0;
}

.post-btn .prev a {
   display: block;
   padding: 0;
}

.post-btn .next {
   width: 30px;
   position: absolute;
   top: 0;
   right: 0;
}

.post-btn .next a {
   display: block;
   padding: 0;
}

.gallery_detail .cate {
   display: inline-block;
   padding-right: 15px;
}

.gallery_detail .cate a {
   display: block;
}

.gallery_detail .date {
   display: inline-block;
}

.gallery_detail .gallery-photo {
   padding-top: 15px;
}

.gallery_detail .sidebar {
   display: none;
}

#cpt-detail .post-password-form {
   display: flex;
   align-items: center;
   justify-content: center;
   flex-direction: column;
   width: 100%;
   height: 100%;
   background-color: #fff;
   z-index: 1;
   position: absolute;
   top: 0;
   left: 0;
}

@media screen and (max-width: 991px) {
   #cpt-detail .the_content p img {
      display: block;
      margin: 0 auto 15px;
   }

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

@media screen and (max-width: 767px) {
   #cpt-detail .the_title {
      font-size: 18px;
      line-height: 32px;
   }

   #cpt-detail .the_content {
      font-size: 14px;
      line-height: 28px;
   }

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

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

   .post-btn {
      font-size: 14px;
      margin: 50px auto 0;
   }

   .gallery_detail .cate {
      display: block;
      padding-right: 0;
   }

   .gallery_detail .cate a {
      display: inline-block;
   }

   .gallery_detail .date {
      display: block;
   }
}

#cpt-detail .gallery-photo {
   padding-bottom: 10px;
}

#cpt-detail .gallery-photo .gallery-slider .swiper-slide p {
   width: 100%;
   background: url("../img/common/bg01.jpg") repeat center top;
   padding-top: 70%;
   position: relative;
}

#cpt-detail .gallery-photo .gallery-slider .swiper-slide p span {
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
}

#cpt-detail .gallery-photo .gallery-slider .swiper-slide p span.img_short {
   background-size: cover !important;
}

#cpt-detail .gallery-photo .gallery-slider .swiper-slide p span.img_long {
   background-size: auto 100% !important;
}

#cpt-detail .gallery-photo .gallery-slider .swiper-slide p img {
   display: block;
   height: auto;
   max-width: 100%;
   max-height: 100%;
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
}

#cpt-detail .gallery-photo .gallery-thumbs {
   margin: 20px 0 0;
   padding: 0 20px;
   position: relative;
}

#cpt-detail .gallery-photo .gallery-thumbs .swiper-slide {
   width: 25%;
   box-sizing: border-box;
   padding: 0 5px;
   cursor: pointer;
}

#cpt-detail .gallery-photo .gallery-thumbs .swiper-slide p {
   width: 100%;
   padding-top: 75.2%;
   position: relative;
}

#cpt-detail .gallery-photo .gallery-thumbs .swiper-slide p:after {
   content: '';
   width: 100%;
   height: 100%;
   background-color: rgba(51, 51, 51, 0.7);
   position: absolute;
   top: 0;
   left: 0;
   transition: all 0.3s;
}

#cpt-detail .gallery-photo .gallery-thumbs .swiper-slide.swiper-slide-thumb-active p:after {
   opacity: 0;
}

#cpt-detail .gallery-photo .gallery-thumbs .swiper-slide p span {
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
}

#cpt-detail .gallery-photo .gallery-thumbs .swiper-button {
   width: 20px;
   height: 101%;
   border: 0;
   background: transparent;
   overflow: hidden;
   text-indent: -999px;
   cursor: pointer;
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   z-index: 1;
}

#cpt-detail .gallery-photo .gallery-thumbs .swiper-button:before {
   content: '';
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
}

#cpt-detail .gallery-photo .gallery-thumbs .swiper-button.swiper-prev {
   left: 0;
}

#cpt-detail .gallery-photo .gallery-thumbs .swiper-button.swiper-prev:before {
   background: url("../img/sl-prev.svg") no-repeat center left/12px 91px;
}

#cpt-detail .gallery-photo .gallery-thumbs .swiper-button.swiper-next {
   right: 0;
}

#cpt-detail .gallery-photo .gallery-thumbs .swiper-button.swiper-next:before {
   background: url("../img/sl-next.svg") no-repeat center right/12px 91px;
}

@media screen and (max-width: 991px) {
   #cpt-detail .gallery-photo .gallery-thumbs .swiper-button.swiper-prev:before {
      background-size: auto 100%;
   }

   #cpt-detail .gallery-photo .gallery-thumbs .swiper-button.swiper-next:before {
      background-size: auto 100%;
   }
}

@media screen and (max-width: 767px) {
   #cpt-detail .gallery-photo .gallery-thumbs .swiper-slide {
      width: 50%;
   }
}

/* -- -- */
#cpt-detail.works_template {
   padding: 90px 0;
}

#cpt-detail.works_template .gallery-photo .gallery-slider .swiper-slide p {
   background-color: #ccc;
   padding-top: 56%;
}

#cpt-detail.works_template .gallery-photo .gallery-thumbs {
   width: 100%;
   max-width: 1080px;
   box-sizing: border-box;
   margin: 30px auto 0;
}

#cpt-detail.works_template .gallery-photo .gallery-thumbs .swiper-slide {
   width: 16.7%;
}

#cpt-detail.works_template .works__contents {
   width: 100%;
   max-width: 870px;
   margin: 0 auto;
   padding-top: 40px;
}

#cpt-detail.works_template .the_title {
   font-weight: 500;
   font-size: 18px;
   line-height: 26px;
   letter-spacing: 0;
   padding: 5px 0 10px;
}

#cpt-detail.works_template .the_content {
   padding-top: 20px;
}

.property__description {
   padding: 90px 0;
}

.property__description .w1000 {
   padding: 0 65px;
}

.property__description h2 {
   height: max-content;
}

.property__description h2 span {
   display: block;
   font-weight: 500;
   margin: 0 auto;
}

.property__description .tb-style {
   padding-top: 50px;
}

.property__description .post-btn {
   margin: 50px auto 0;
}

@media screen and (max-width: 767px) {
   #cpt-detail.works_template {
      padding: 50px 0;
   }

   #cpt-detail.works_template .gallery-photo .gallery-thumbs {
      margin-top: 10px;
   }

   #cpt-detail.works_template .gallery-photo .gallery-thumbs .swiper-slide {
      width: 25%;
   }

   #cpt-detail.works_template .works__contents {
      padding-top: 20px;
   }

   .property__description {
      padding: 50px 0;
   }

   .property__description .w1000 {
      padding: 0 20px;
   }

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

   .property__description .post-btn {
      margin-top: 30px;
   }
}

/* -- -- */
/*
 * Contact
 *=============================================*/
/* -- -- */
#contact__other {
   position: relative;
   padding: 0 20px;
}

#contact__other .box {
   padding-top: 90px;
}

#contact__other h2 {
   padding-bottom: 12px;
   position: relative;
}

#contact__other h2:before {
   content: '';
   width: 100px;
   height: 0;
   border-top: 2px solid #6FE7FF;
   position: absolute;
   bottom: 0;
   left: 0;
}

#contact__other .txt {
   padding-top: 30px;
}

#contact__other .bnr {
   display: flex;
   align-items: center;
   justify-content: center;
   flex-direction: column;
   width: 80%;
   height: 147px;
   box-sizing: border-box;
   text-align: center;
   border-radius: 150px;
   border: 1px solid #6FE7FF;
   font-size: 16px;
   line-height: 28px;
   margin: 20px auto 0;
}

#contact__other .bnr .tel img {
   vertical-align: bottom;
   margin-right: 10px;
}

@media screen and (max-width: 767px) {
   #contact__other .box {
      padding-top: 50px;
   }

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

   #contact__other .bnr {
      width: 100%;
      font-size: 14px;
   }
}

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

.select {
   display: flex;
   width: 100%;
   border: 1px solid #ccc;
   background-color: #fff;
   position: relative;
}

.select .wpcf7-not-valid-tip {
   position: absolute;
   top: 92%;
   left: 0;
}

.select .wpcf7-form-control-wrap {
   display: block;
   flex: 1;
}

.select select {
   display: block;
   width: 100%;
   height: 100%;
   -webkit-appearance: none;
   -moz-appearance: none;
   outline: 0;
   border: 0;
   box-shadow: none;
   line-height: 30px;
   padding: 6px 50px 6px 15px;
   color: #000;
   background: transparent;
   border: 0;
   cursor: pointer;
}

.select select::-ms-expand {
   display: none;
}

.select::after {
   content: '\f0d7';
   font-family: "Font Awesome 6 Free";
   font-weight: 900;
   -moz-osx-font-smoothing: grayscale;
   -webkit-font-smoothing: antialiased;
   display: var(--fa-display, inline-block);
   font-style: normal;
   font-variant: normal;
   font-size: 21px;
   line-height: 1;
   text-rendering: auto;
   position: absolute;
   top: 12px;
   right: 20px;
   pointer-events: none;
}

#mailform input[type="text"],
#mailform input[type="tel"],
#mailform input[type="email"],
#mailform input[type="date"],
#mailform textarea {
   display: block;
   width: 100%;
   background-color: #fff;
   border: 1px solid #ccc;
   box-sizing: border-box;
   line-height: 30px;
   border-radius: 0 !important;
   outline: none;
   -webkit-appearance: none;
   -moz-appearance: none;
   box-sizing: border-box;
   padding: 5px 15px;
}

#mailform textarea {
   height: 180px;
   resize: vertical;
}

.wpcf7-radio .wpcf7-list-item {
   display: block;
   margin: 0 0 10px;
}

.wpcf7-radio .wpcf7-list-item:last-child {
   margin-bottom: 0;
}

.wpcf7-radio .wpcf7-list-item label {
   display: inline-block;
   padding-left: 25px;
   position: relative;
}

.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label:before {
   content: '';
   width: 15px;
   height: 15px;
   background-color: #fff;
   border: 1px solid #333;
   border-radius: 50%;
   position: absolute;
   top: 5px;
   left: 0;
}

.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label:after {
   content: '';
   display: none;
   width: 11px;
   height: 11px;
   background-color: #333;
   border-radius: 50%;
   position: absolute;
   top: 8px;
   left: 3px;
}

.wpcf7-radio .wpcf7-list-item label input {
   width: 18px;
   height: 18px;
   cursor: pointer;
   position: absolute;
   top: 5px;
   left: 0;
   opacity: 0;
}

.wpcf7-radio .wpcf7-list-item label input:checked~.wpcf7-list-item-label:after {
   display: block;
}

.wpcf7-checkbox {
   display: inline-block;
}

.wpcf7-checkbox .wpcf7-list-item {
   display: block;
   margin: 0;
}

.wpcf7-checkbox .wpcf7-list-item label {
   display: inline-block;
   padding-top: 1px;
   padding-left: 40px;
   position: relative;
}

.wpcf7-checkbox .wpcf7-list-item label input {
   width: 13px;
   height: 13px;
   cursor: pointer;
   position: absolute;
   top: 0;
   left: 0;
   opacity: 0;
   z-index: 1;
}

.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label:before {
   content: '';
   width: 13px;
   height: 13px;
   background-color: transparent;
   border: 1px solid #333;
   border-radius: 2px;
   box-sizing: border-box;
   position: absolute;
   top: 0;
   left: 0;
}

.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label:after {
   content: '';
   display: none;
   position: absolute;
   left: 5px;
   top: 1px;
   width: 3px;
   height: 8px;
   border: solid #333;
   border-width: 0 1px 1px 0;
   -webkit-transform: rotate(45deg);
   -ms-transform: rotate(45deg);
   transform: rotate(45deg);
}

.wpcf7-checkbox .wpcf7-list-item label input:checked~.wpcf7-list-item-label:after {
   display: block;
}

#mailform .result_txt {
   color: #333;
   display: none;
}

#mailform .wpcf7-not-valid-tip {
   font-size: 12px;
   line-height: 1;
   padding-top: 5px;
}

#mailform {
   padding: 90px 20px 120px;
}

#mailform h2 {
   padding-bottom: 12px;
   position: relative;
}

#mailform h2:before {
   content: '';
   width: 100px;
   height: 0;
   border-top: 2px solid #6FE7FF;
   position: absolute;
   bottom: 0;
   left: 0;
}

#mailform .desc {
   padding-top: 30px;
}

#mailform .form-input {
   font-weight: 500;
   font-size: 16px;
   line-height: 24px;
   padding-top: 20px;
}

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

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

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

#mailform .form-input dl dt {
   width: 320px;
   background-color: #333;
   color: #fff;
   font-weight: 500;
   line-height: 24px;
   box-sizing: border-box;
   padding: 24px 20px;
   position: relative;
}

#mailform .form-input dl dt small {
   display: inline-block;
   width: 30px;
   background-color: #CC0000;
   font-size: 11px;
   letter-spacing: 0;
   line-height: 16px;
   color: #fff;
   text-align: center;
   padding: 0 0 2px;
   position: absolute;
   top: 28px;
   right: 20px;
}

#mailform .form-input dl dt small.non {
   background-color: #fff;
   color: #333;
}

#mailform .form-input dl dd {
   background-color: #EDEDE8;
   padding: 15px;
}

#mailform .form-input dl dd ::-webkit-input-placeholder {
   color: #CDD6DD;
}

#mailform .form-input dl dd ::-moz-placeholder {
   color: #CDD6DD;
}

#mailform .form-input dl dd :-ms-input-placeholder {
   color: #CDD6DD;
}

#mailform .form-input dl dd :-moz-placeholder {
   color: #CDD6DD;
}

#mailform .privacy {
   height: 300px;
   background-color: #fff;
   color: #333;
   line-height: 30px;
   overflow: hidden scroll;
   border: 1px solid #D9D9D9;
   padding: 15px 40px;
   margin-top: 30px;
}

#mailform .privacy p {
   padding-bottom: 25px;
}

#mailform .privacy p:last-child {
   padding-bottom: 0;
}

#mailform .form-check {
   display: flex;
   justify-content: center;
   font-size: 16px;
   font-weight: 500;
   line-height: 24px;
   padding-top: 30px;
}

#mailform .form-check .wpcf7-form-control-wrap {
   margin-right: 5px;
}

#mailform .form-check .wpcf7-checkbox {
   display: block;
}

#mailform .form-check .wpcf7-checkbox .wpcf7-list-item label {
   width: 13px;
   height: 13px;
   overflow: hidden;
   color: transparent;
   padding-left: 0;
}

#mailform .form-check .wpcf7-not-valid-tip {
   width: 200px;
   position: absolute;
   top: 100%;
   left: 0;
}

#mailform .form-check a {
   margin-left: 10px;
}

#mailform .form-btn {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   justify-content: center;
   padding-top: 55px;
}

#mailform .form-btn>* {
   display: block;
   width: 320px;
   background-color: #fff;
   border: 1px solid #333;
   text-align: center;
   border-radius: 0;
   font-weight: 400;
   font-size: 15px;
   line-height: 32px;
   color: #333;
   cursor: pointer;
   transition: all 0.3s;
   box-sizing: border-box;
   margin: 5px;
   padding: 6px 0;
   position: relative;
}

#mailform .form-btn>*:after {
   content: '\f105';
   font-family: "Font Awesome 6 Free";
   font-weight: 900;
   -moz-osx-font-smoothing: grayscale;
   -webkit-font-smoothing: antialiased;
   display: var(--fa-display, inline-block);
   font-style: normal;
   font-variant: normal;
   font-size: 18px;
   line-height: 1;
   text-rendering: auto;
   position: absolute;
   top: 50%;
   right: 20px;
   transform: translateY(-50%);
}

#mailform .form-btn>*:hover {
   background-color: #333;
   color: #fff;
   opacity: 1;
}

#mailform .form-btn>* input {
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
   opacity: 0;
   cursor: pointer;
}

#mailform .form-btn>* .wpcf7-spinner {
   display: none;
}

#mailform .form-btn .confirm {
   display: block;
}

#mailform .form-btn .back,
#mailform .form-btn .send {
   display: none;
}

#mailform .form-btn .send {
   background-color: #333;
   border-color: #333;
   color: #fff;
   opacity: 1;
}

#mailform.confirm-mail .result_txt {
   display: block;
   word-break: break-all;
   white-space: pre-wrap;
}

#mailform.confirm-mail .wpcf7-form-control-wrap {
   display: none !important;
}

#mailform.confirm-mail .form-input dl dt {
   padding: 15px 20px;
}

#mailform.confirm-mail .form-input dl dt small {
   display: none;
}

#mailform.confirm-mail .form-input .select {
   background-color: transparent;
   border: 0;
}

#mailform.confirm-mail .form-input .select:after {
   display: none;
}

#mailform.confirm-mail .form-input dl dd.choice-date p:nth-child(2) {
   position: static;
}

#mailform.confirm-mail .form-btn .confirm {
   display: none;
}

#mailform.confirm-mail .form-btn .back,
#mailform.confirm-mail .form-btn .send {
   display: block;
}

#mailform.confirm-mail .form-check .wpcf7-form-control-wrap {
   display: block;
}

#mailform.confirm-mail .form-check .wpcf7-checkbox .wpcf7-list-item label {
   pointer-events: none;
}

.wpcf7-response-output {
   width: 100%;
   box-sizing: border-box;
   margin: 0 !important;
   position: absolute;
   bottom: 0;
   left: 0;
}

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

   #mailform .desc {
      text-align: left;
      padding-top: 20px;
   }

   #mailform .form-input dl {
      display: block;
   }

   #mailform .form-input dl+dl {
      padding-top: 20px;
   }

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

   #mailform .form-input dl dt {
      width: auto;
      padding: 10px 20px;
   }

   #mailform .form-input dl dt small {
      top: 50%;
      transform: translateY(-50%);
   }

   #mailform .form-input dl dd {
      padding: 20px 20px;
   }

   #mailform .form-input dl dd div[class*="estate_type"] .type_item .select {
      width: 100%;
   }

   #mailform .form-input dl dd div[class*="estate_type"] .type_item .select+.select {
      margin-top: 10px;
      margin-left: 0;
   }

   #mailform .privacy {
      padding: 15px 20px;
   }

   #mailform .privacy p {
      padding-bottom: 20px;
   }

   #mailform .privacy p:last-child {
      padding-bottom: 0;
   }

   #mailform .form-btn {
      padding-top: 45px;
   }

   #mailform .form-btn>* {
      width: 100%;
      font-size: 16px;
      padding: 9px 0;
   }
}

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

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

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

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

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

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

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

   #txt_thanks .button {
      text-align: center;
      padding-top: 30px;
      padding-bottom: 0px;
   }
}

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

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

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

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

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

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

/* --- --- */





/* -- -- */
#top__commitment {
   background: url("/wp-content/uploads/2025/06/グループ-23262.png") repeat-x center bottom;
   padding: 80px 0 165px;
   position: relative;
}

#top__commitment:before {
   content: '';
   width: 100%;
   height: 100%;
   background: url("/wp-content/uploads/2025/06/グループ-23262.png") repeat-x center bottom;
   position: absolute;
   bottom: 0;
   left: 0;
   z-index: -1;
}

#top__commitment .box {
   width: 80%;
   margin: 0 auto;
   padding-top: 55px;
}

#top__commitment .txt {
   padding-top: 39px;
}

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

#top__commitment .photo {
   width: 100%;
   max-width: 1450px;
   position: absolute;
   top: 95px;
   bottom: 165px;
   left: 50%;
   transform: translateX(-50%);
}

#top__commitment .photo li {
   width: 30%;
   max-width: 470px;
   position: absolute;
}

#top__commitment .photo li:nth-child(1) {
   top: 0;
   left: 0;
}

#top__commitment .photo li:nth-child(2) {
   top: 120px;
   right: 0;
}

@media screen and (max-width: 1400px) {
   #top__commitment .photo li {
      width: calc(50% - 280px);
   }
}

@media screen and (max-width: 991px) {
   #top__commitment .photo {
      display: flex;
      flex-wrap: wrap;
      position: static;
      transform: translateX(0);
      padding: 40px 20px 0;
   }

   #top__commitment .photo li {
      width: 49%;
      max-width: inherit;
      position: static;
   }

   #top__commitment .photo li+li {
      margin-left: 2%;
   }
}

@media screen and (max-width: 767px) {
   #top__commitment {
      background-image: url("/wp-content/uploads/2025/06/グループ-23262.png");
      background-size: auto 80px;
      padding: 50px 0 120px;
   }

   #top__commitment:before {
      /*height: 35%;*/
   }

   #top__commitment .photo {
      padding: 20px 10px 0;
   }

   #top__commitment .box {
      padding-top: 30px;
   }

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

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


.h2 {
   background: url("../img/common/title-deco.svg") no-repeat center bottom/180px 30px;
   font-weight: 400;
   font-size: 26px;
   line-height: 24px;
   letter-spacing: 0.09em;
   text-align: center;
   /*padding-bottom: 45px;*/
   position: relative;
}

.h2 strong {
   display: block;
   color: #990000;
   font-family: 'Cinzel', serif;
   font-weight: 400;
   font-size: 40px;
   letter-spacing: 0.1em;
   line-height: 53px;
   text-transform: uppercase;
   margin-top: 10px;
   position: relative;
}

.h3 {
   background: url("../img/common/title-deco.svg") no-repeat center bottom/180px 30px;
   font-weight: 400;
   font-size: 15px;
   line-height: 24px;
   letter-spacing: 0.09em;
   text-align: center;
   /*padding-bottom: 45px;*/
   position: relative;
}

.h3 strong {
   display: block;
   color: #fff;
   font-family: 'Cinzel', serif;
   font-weight: 400;
   font-size: 40px;
   letter-spacing: 0.1em;
   line-height: 53px;
   text-transform: uppercase;
   margin-top: 10px;
   position: relative;
}

#company_banner {
   padding: 100px 0 80px;
}

#company_banner .banner a {
   display: block;
   background: linear-gradient(to bottom, #FEFEF9, #F3F3C9, #E1E1A6);
   border-radius: 10px;
   text-align: center;
   border: 1px solid #4A6801;
   padding: 46px 0 45px;
   position: relative;
}

#company_banner .banner a:before {
   content: '';
   width: 177px;
   height: 177px;
   background: url("../img/common/logo-footer.png") no-repeat center top/cover;
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   opacity: 0.1;
}

#company_banner .banner a:after {
   content: '';
   width: 26px;
   height: 26px;
   background: url("../img/common/arrow-circle-right-green.svg") no-repeat center top/cover;
   position: absolute;
   top: 50%;
   right: 50px;
   transform: translateY(-50%);
}

#company_banner .banner span {
   display: block;
   background-image: url("../img/common/title-deco-white.svg");
}

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

   #company_banner .banner a {
      padding: 30px 0 19px;
   }

   #company_banner .banner a:before {
      width: 120px;
      height: 120px;
   }

   #company_banner .banner a:after {
      width: 20px;
      height: 20px;
      right: 20px;
   }

   #company_banner .banner a span {
      background-image: url("../img/common/title-deco1.svg");
   }
}

/* -- PS SP切り替え -- */
.dis_pc {display: block !important;}
.dis_sp {display: none !important;}

@media only screen and (max-width: 750px){
     .dis_pc {display: none !important; }
     .dis_sp {display: block !important; }
}
/* -- 追従バナー -- */
.fuji_fixed{
 position: fixed;
 bottom: 30%;
 right: -10px;
 padding: 6px 6px;
 z-index: 9999;
}

.center-con{
	text-align:center;
}
.ud-solid{
	    letter-spacing: 0.1em;
    border-top: 1px dashed #333;
    border-bottom: 1px dashed #333;
    padding: 20px 0;
	width: 60%;
    margin: auto;
}
.d-solid{
	    letter-spacing: 0.1em;
    border-bottom: 1px dashed #333;
    padding: 20px 0;
	width: 60%;
    margin: auto;
}
@media only screen and (max-width: 750px){
	.ud-solid{
	    letter-spacing: 0.1em;
    border-top: 1px dashed #333;
    border-bottom: 1px dashed #333;
    padding: 20px 0;
	width: 98%;
    margin: auto;
}
.d-solid{
	    letter-spacing: 0.1em;
    border-bottom: 1px dashed #333;
    padding: 20px 0;
	width: 98%;
    margin: auto;
}
	｝
	