@charset "UTF-8";

/*
 * Animation
*=============================================*/
/* -- -- */
.fadeInUp {
   opacity: 0;
   transform: translateY(50px);
   transition: opacity 2s 0.2s cubic-bezier(0.22, 0.61, 0.36, 1), transform 2s 0.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fadeInUp[style*="visible"] {
   opacity: 1;
   transform: translateY(0);
}

/* -- -- */
/*
 * Custom
*=============================================*/
/* -- heading -- */
.h2 {
   color: #4D2604;
   font-weight: 800;
   font-size: 40px;
   letter-spacing: 0.1em;
   line-height: 58px;
   text-align: center;
}

.h2 .en {
   display: block;
   color: #B4CB3C;
   font-weight: 500;
   font-size: 20px;
   letter-spacing: 0.1em;
   line-height: 30px;
   text-transform: uppercase;
   padding-bottom: 6px;
}

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

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

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

.h-24 {
   font-weight: 700;
   font-size: 24px;
   letter-spacing: 0.05em;
   line-height: 36px;
}

.h-26 {
   font-weight: 700;
   font-size: 26px;
   letter-spacing: 0.05em;
   line-height: 36px;
}

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

.h-30 {
   font-weight: 700;
   font-size: 30px;
   letter-spacing: 0em;
   line-height: 40px;
}

.h-32 {
   font-weight: 700;
   font-size: 32px;
   letter-spacing: 0em;
   line-height: 46px;
}

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

.h-40 {
   font-weight: 700;
   font-size: 40px;
   letter-spacing: 0em;
   line-height: 58px;
}

.h-50 {
   font-weight: 700;
   font-size: 50px;
   letter-spacing: 0em;
   line-height: 75px;
}

.h-bg {
   max-width: 1100px;
   text-align: center;
   background-color: #077425;
   color: #fff;
   border-radius: 10px 10px 0 0;
   padding: 8px 20px;
   margin: 0 auto 14px;
   position: relative;
}

.h-bg:after {
   content: '';
   width: 100%;
   height: 0;
   border-bottom: 10px solid #B4CB3C;
   position: absolute;
   top: 100%;
   left: 0;
   margin-top: 4px;
}

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

   .h2 .en {
      font-size: 14px;
      line-height: 20px;
   }

   .h-18 {
      font-size: 15px;
   }

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

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

   .h-26,
   .h-28,
   .h-30,
   .h-32 {
      font-size: 20px;
      line-height: 30px;
   }

   .h-36,
   .h-40 {
      font-size: 22px;
      line-height: 32px;
   }

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

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

.button a {
   display: inline-block;
   width: 300px;
   background: #fff;
   border: 2px solid #AA6B24;
   color: #000;
   font-weight: 500;
   font-size: 18px;
   letter-spacing: 0em;
   line-height: 26px;
   border-radius: 6px;
   text-align: center;
   box-sizing: border-box;
   padding: 15px 0;
   position: relative;
   z-index: 1;
   overflow: hidden;
}

.button a:before {
   content: "";
   position: absolute;
   z-index: -1;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: #AA6B24;
   -webkit-transform: scaleY(0);
   transform: scaleY(0);
   -webkit-transform-origin: 50% 100%;
   transform-origin: 50% 100%;
   -webkit-transition-property: transform;
   transition-property: transform;
   -webkit-transition-duration: 0.3s;
   transition-duration: 0.3s;
   -webkit-transition-timing-function: ease-out;
   transition-timing-function: ease-out;
   border-radius: 0;
}

.button a:after {
   content: "\f061";
   color: #AA6B24;
   font-family: "Font Awesome 6 Free";
   font-weight: 900;
   font-size: 16px;
   line-height: 1;
   position: absolute;
   top: 50%;
   right: 15px;
   transform: translateY(-50%);
   transition: all 0.3s;
}

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

.button a:hover:before {
   -webkit-transform: scaleY(1);
   transform: scaleY(1);
}

.button a:hover:after {
   color: #fff;
}

.button.special a {
   background-color: #FFD32A;
   border-color: #333;
}

.button.special a:before {
   background-color: #333;
}

.button.special a:after {
   color: #333;
}

.button.special a img {
   display: inline-block;
   width: 131px;
   transition: all 0.3s;
}

.button.special a img+img {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   opacity: 0;
}

.button.special a:hover img {
   opacity: 0;
}

.button.special a:hover img+img {
   opacity: 1;
}

.button.special a:hover:after {
   color: #fff;
}

@media screen and (max-width: 767px) {
   .button a {
      width: 100%;
      max-width: 300px;
      font-size: 15px;
   }
}

/* -- -- */
.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: #E81C1C;
}

.cl-blue {
   color: #004DA0;
}

.cl-yellow {
   color: #F5E61C;
}

.cl-green {
   color: #044D19;
}

.cl-green1 {
   color: #B4CB3C;
}

.cl-green2 {
   color: #077425;
}

.cl-brawn {
   color: #AA6B24;
}

.cl-orange {
   color: #E57200;
}

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

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

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

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

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

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

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

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

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

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

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

   .wrap .w1000 {
      padding: 0;
   }
}

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

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

/* -- --*/
.bg-cl01 {
   background-color: #fff;
}

/* -- --*/
#kv {
   display: flex;
   align-items: center;
   justify-content: center;
   background: url("../img/common/kv-bg.jpg") no-repeat center top/cover;
   width: 100%;
   height: 370px;
   position: relative;
}

#kv:before {
   content: '';
   width: 100%;
   height: 100%;
   /*background: url("../img/common/kv-logo.png") no-repeat center/526px auto;*/
   position: absolute;
   top: 0;
   left: 0;
}

.kv__ttl {
   font-weight: 700;
   font-size: 42px;
   letter-spacing: 0.05em;
   line-height: 60px;
   color: #fff;
   text-align: center;
   text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}

@media screen and (max-width: 767px) {
   #kv {
      height: 250px;
   }

   #kv:before {
      background-size: 70% auto;
   }

   .kv__ttl {
      font-size: 28px;
      line-height: 48px;
   }
}

/* -- --*/
.breadcrumbs {
   width: 100%;
   min-height: 20px;
   background-color: #fff;
   color: #044D19;
   font-size: 14px;
   line-height: 20px;
   padding: 10px 0;
}

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

.breadcrumbs .wrap>span:first-child {
   background: url("../img/common/icon-home.svg") no-repeat center left/15px auto;
}

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

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

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

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

   .breadcrumbs .wrap>span:first-child {
      background-size: 12px auto;
      padding-left: 15px;
   }
}

/* -- -- */
.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;
   gap: 20px 60px;
}

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

.box-img .col {
   width: calc(50% - 60px);
   box-sizing: border-box;
   padding-top: 20px;
}

.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: 991px) {
   .box-img .photo {
      width: 100%;
      text-align: center;
   }

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

   .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 .ttl {
      font-size: 20px;
      line-height: 30px;
   }

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

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

/* -- --*/
.box-column {
   display: flex;
   flex-wrap: wrap;
   gap: 40px 25px;
}

.box-column .item {
   width: calc(33.33% - 17px);
}

.box-column h4,
.box-column .txt-15 {
   padding-top: 10px;
}

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

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

.tb-style dl+dl {
   margin-top: 10px;
}

.tb-style dl>* {
   display: table-cell;
   vertical-align: middle;
   padding: 20px;
}

.tb-style dl dt {
   width: 300px;
   background-color: #DEEB98;
   box-sizing: border-box;
   position: relative;
}

.tb-style dl dd {
   background-color: #fff;
}

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

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

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

   .tb-style dl+dl {
      margin-top: 5px;
   }

   .tb-style dl>* {
      padding: 5px;
   }

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

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

/* -- --*/
.hvr-sweep-to-top {
   position: relative;
   z-index: 1;
   overflow: hidden;
}

.hvr-sweep-to-top:before {
   content: "";
   position: absolute;
   z-index: -1;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: #333;
   -webkit-transform: scaleY(0);
   transform: scaleY(0);
   -webkit-transform-origin: 50% 100%;
   transform-origin: 50% 100%;
   -webkit-transition-property: transform;
   transition-property: transform;
   -webkit-transition-duration: 0.3s;
   transition-duration: 0.3s;
   -webkit-transition-timing-function: ease-out;
   transition-timing-function: ease-out;
}

.hvr-sweep-to-top:hover {
   opacity: 1;
}

.hvr-sweep-to-top:hover:before,
.hvr-sweep-to-top.active:before {
   -webkit-transform: scaleY(1);
   transform: scaleY(1);
}

/* -- -- */
.txt-18 {
   font-size: 18px;
   line-height: 36px;
}

.txt-15 {
   font-size: 15px;
   line-height: 24px;
}

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

   .txt-18,
   .txt-15 {
      font-size: 13px;
      line-height: 21px;
   }
}

/* -- -- */
/*
 * 404
 *=============================================*/
#content-404 {
   background-color: #fff;
   text-align: center;
   padding: 90px 0;
}

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

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

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

/* -- -- */
/*
 * HOME
*=============================================*/
/* -- --*/
#mv {
   background: url("../img/index/mv-bg.jpg") no-repeat center top/cover;
   width: 100%;
   height: 100vh;
   box-sizing: border-box;
   position: relative;
}

#mv .photo {
   width: 100%;
   height: 86%;
   position: absolute;
   bottom: 0;
   left: 0;
   overflow: hidden;
}

#mv .photo img {
   width: auto;
   max-height: 100%;
}

#mv .photo li:nth-child(1) {
   display: flex;
   align-items: flex-end;
   width: 28.646vw;
   height: 100%;
   position: absolute;
   bottom: 0;
   left: 0;
}

#mv .photo li:nth-child(2) {
   display: flex;
   align-items: flex-end;
   justify-content: flex-end;
   width: 28.646vw;
   height: 100%;
   position: absolute;
   bottom: 0;
   right: 0;
}

#mv h2 {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 40.469vw;
   height: calc(100% - 180px);
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
}

#mv h2 img {
   width: auto;
   max-height: 100%;
}

#mv .scroll {
   font-size: 18px;
   letter-spacing: 0.1em;
   line-height: 22px;
   position: absolute;
   bottom: 0;
   left: 50%;
   transform: translateX(-50%);
   padding-bottom: 125px;
   color: #fff;
   cursor: pointer;
}

#mv .scroll .line {
   width: 1px;
   height: 120px;
   position: absolute;
   bottom: 0;
   left: calc(50% - 0.5px);
}

#mv .scroll .line:before {
   content: '';
   width: 0;
   height: 100%;
   border-left: 1px solid #fff;
   position: absolute;
   top: 0;
   left: 0;
   -webkit-animation: sdb05 2s infinite;
   animation: sdb05 2s infinite;
}

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

.mv__slider .swiper-wrapper,
.mv__slider .swiper-slide {
   width: 100%;
   height: 100%;
}

@media screen and (max-width: 991px) {
   #mv h2 {
      width: 60%;
      height: auto;
      top: 34%;
   }
}

@media screen and (max-width: 767px) {
   #mv {
      background-image: url("../img/index/sp_mv-bg.jpg");
      height: 158.974vw;
      min-height: inherit;
   }

   #mv .photo li:nth-child(1),
   #mv .photo li:nth-child(2) {
      width: 41%;
   }

   #mv h2 {
      width: 98%;
      height: auto;
      top: 0;
      transform: translate(-50%, 0);
   }
}

/* -- -- */
@-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;
   }
}

/* -- --*/
#top__message {
   padding: 70px 0;
}

#top__message .wrap {
   display: flex;
   flex-wrap: wrap;
   gap: 10px 80px;
}

#top__message .photo {
   width: 380px;
}

#top__message .col {
   width: calc(100% - 460px);
   padding-top: 40px;
}

#top__message h2 {
   text-align: left;
   font-weight: 700;
   font-size: 36px;
   letter-spacing: 0;
}

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

@media screen and (max-width: 1200px) {
   #top__message h2 br {
      display: none;
   }
}

@media screen and (max-width: 991px) {
   #top__message .wrap {
      justify-content: center;
   }

   #top__message .photo {
      width: 80%;
   }

   #top__message .col {
      width: 100%;
   }
}

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

   #top__message h2 {
      font-size: 20px;
      line-height: 28px;
   }

   #top__message h2 .en {
      font-size: 15px;
   }

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

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

#top__reason h2 {
   background-color: #4D2604;
   color: #fff;
   border-radius: 100px;
   font-weight: 700;
   font-size: 36px;
   letter-spacing: 0;
   padding: 18px 30px;
}

#top__reason h2 .en {
   color: #F5E61C;
   font-size: 18px;
   letter-spacing: 0.05em;
   line-height: 24px;
   padding-bottom: 5px;
}

#top__reason .box {
   display: flex;
   flex-wrap: wrap;
   gap: 30px;
   border-bottom: 2px dotted #077425;
   padding: 30px 0 40px;
}

#top__reason .box dl {
   width: calc(33.33% - 20px);
}

#top__reason .box dl dd {
   padding: 10px 15px 0;
}

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

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

   #top__reason h2 .en {
      font-size: 14px;
   }

   #top__reason .box {
      padding: 30px 15px 20px;
   }

   #top__reason .box dl {
      width: 100%;
   }

   #top__reason .box dl dd {
      font-size: 16px;
   }

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

/* -- --*/
#top__parallax {
   display: flex;
   align-items: center;
   justify-content: center;
   background-image: url("../img/index/top-barallax-bg.jpg");
}

#top__parallax .logo {
   width: 500px;
}

@media screen and (max-width: 767px) {
   #top__parallax {
      min-height: 75vw;
   }

   #top__parallax .logo {
      width: 72%;
   }
}

/* -- --*/
#top__service .box1 {
   display: flex;
   flex-wrap: wrap;
   gap: 30px 40px;
   padding-top: 30px;
}

#top__service .box1 .item {
   width: calc(50% - 20px);
}

#top__service .box1 h3 {
   width: 90%;
   max-width: 420px;
   background-color: #FFE34A;
   border-radius: 10px;
   border: 6px solid #FACA0B;
   text-align: center;
   margin: -55px auto 0;
   padding: 6px 0;
   position: relative;
}

#top__service .box1 h3:before {
   content: '';
   border: 4px solid #fff;
   border-radius: inherit;
   position: absolute;
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
}

#top__service .box1 .txt-15 {
   padding: 20px 20px 0;
}

#top__service .box1 .button {
   text-align: center;
   padding-top: 20px;
}

#top__service .box2 {
   border: 4px solid #000;
   border-radius: 10px;
   padding: 26px 46px;
   margin-top: 50px;
}

#top__service .box2 .txt-18 {
   padding-top: 30px;
}

#top__service .box2 .txt-18 p+p {
   padding-top: 30px;
}

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

@media screen and (max-width: 991px) {
   #top__service .box2 {
      padding: 26px 16px;
   }
}

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

   #top__service .box1 .item {
      width: 100%;
   }

   #top__service .box1 h3 {
      margin-top: -35px;
   }

   #top__service .box2 {
      margin-top: 30px;
      padding: 30px 25px;
   }

   #top__service .box2 .txt-18 {
      padding-top: 20px;
   }

   #top__service .box2 .txt-18 p+p {
      padding-top: 20px;
   }

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

/* -- --*/
#top__area .box {
   display: flex;
   flex-wrap: wrap;
   gap: 20px 70px;
   padding-top: 30px;
}

#top__area .box .photo {
   width: calc(50% - 10px);
}

#top__area .box .col {
   width: calc(50% - 60px);
   padding-top: 30px;
}

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

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

#top__area .box-toggle .toggle+.toggle {
   padding-top: 30px;
}

#top__area .box-toggle .toggle-link {
   background-color: #FFD700;
   padding: 20px 40px;
}

#top__area .box-toggle .toggle-link .fa-arrow-down {
   font-size: 16px;
   position: absolute;
   top: 50%;
   right: 20px;
   transform: translateY(-50%);
   transition: all 0.3s;
}

#top__area .box-toggle .toggle-link .fa-location-dot {
   font-size: 20px;
   color: #E57200;
   position: absolute;
   top: 29px;
   left: 20px;
   transition: all 0.3s;
}

#top__area .box-toggle .toggle-main {
   background-color: #fff;
   padding: 30px;
}

#top__area .box-toggle .toggle-main p+p {
   padding-top: 30px;
}

#top__area .box-toggle .toggle.active .toggle-link .fa-arrow-down {
   transform: translateY(-50%) rotate(-180deg);
}

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

@media screen and (max-width: 991px) {
   #top__area .box {
      justify-content: center;
   }

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

   #top__area .box .col {
      width: 100%;
      padding-top: 0;
   }
}

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

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

   #top__area .box h3 {
      font-size: 18px;
   }

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

   #top__area .box-toggle .toggle+.toggle {
      padding-top: 20px;
   }

   #top__area .box-toggle .toggle-link {
      font-size: 17px;
      line-height: 25px;
   }

   #top__area .box-toggle .toggle-link .fa-location-dot {
      top: 26px;
   }

   #top__area .catch {
      font-size: 20px;
      padding-top: 20px;
   }
}

/* -- --*/
#top__client {
   background: url("../img/index/client-bg.jpg") repeat center top;
   padding: 100px 0;
}

#top__client .box {
   display: flex;
   flex-wrap: wrap;
   align-items: flex-end;
   gap: 30px 8%;
}

#top__client .col {
   width: 50%;
}

#top__client .col p,
#top__client .col li {
   padding-top: 20px;
}

#top__client h2 {
   text-align: left;
}

#top__client .photo {
   width: 42%;
}

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

   #top__client h2 {
      text-align: center;
   }

   #top__client .box {
      justify-content: center;
   }

   #top__client .col {
      width: 100%;
   }

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

   #top__client .photo {
      width: 80%;
   }
}

/* -- --*/
#top__works .box {
   display: flex;
   flex-wrap: wrap;
   gap: 24px 2%;
   padding-top: 30px;
}

#top__works .box .item {
   width: 23.5%;
   border-bottom: 1px dashed #707070;
   padding-bottom: 10px;
}

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

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

#top__works .box .cate {
   padding-top: 5px;
}

#top__works .box .cate a {
   display: block;
   width: max-content;
   border-radius: 50px;
   color: #fff;
   font-size: 13px;
   line-height: 19px;
   padding: 4px 12px;
   margin-top: 5px;
}

#top__works .box .cate .area {
   background-color: #A4B934;
}

#top__works .box .cate .area:hover {
   background-color: #333;
   opacity: 1;
}

#top__works .box .cate .work_type {
   background-color: #AA6B24;
}

#top__works .box .cate .work_type:hover {
   background-color: #333;
   opacity: 1;
}

#top__works .box .ttl {
   color: #000;
   font-size: 16px;
   line-height: 26px;
   padding-top: 10px;
}

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

#top__works .box .date {
   font-size: 13px;
   line-height: 20px;
   padding-top: 10px;
}

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

@media screen and (max-width: 767px) {
   #top__works .box {
      width: 85%;
      margin: 0 auto;
   }

   #top__works .box .item {
      width: 100%;
   }
}

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

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

#topics .box li {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   border-top: 2px dotted #077425;
   border-bottom: 2px dotted #077425;
   padding: 30px 100px;
}

#topics .box li+li {
   border-top: 0;
}

#topics .box .date {
   display: inline-block;
   vertical-align: middle;
   min-width: 90px;
   font-size: 13px;
   line-height: 20px;
   padding-right: 10px;
}

#topics .box .cate {
   width: 140px;
   text-align: center;
   padding-right: 6px;
}

#topics .box .cate a {
   display: block;
   background-color: #E57200;
   color: #fff;
   border-radius: 30px;
   font-size: 13px;
   line-height: 20px;
   padding: 3px 00;
}

#topics .box .cate a:hover {
   background-color: #333;
   opacity: 1;
}

#topics .box .ttl {
   width: calc(100% - 246px);
   color: #000;
   font-size: 16px;
   line-height: 24px;
}

#topics .box .ttl a {
   max-height: 52px;
   overflow: hidden;
   display: block;
   -webkit-line-clamp: 1;
   display: box;
   display: -webkit-box;
   -webkit-box-orient: vertical;
   text-overflow: ellipsis;
   white-space: normal;
   position: relative;
}

#topics .box .ttl a:hover {
   text-decoration: underline;
}

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

@media screen and (max-width: 991px) {
   #topics .box li {
      padding: 30px;
   }
}

@media screen and (max-width: 767px) {
   #topics .box {
      padding-bottom: 20px;
   }

   #topics .box li {
      padding: 15px;
   }

   #topics .box .ttl {
      width: 100%;
      padding-top: 5px;
   }

   #topics .box .ttl a {
      -webkit-line-clamp: 2;
   }

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

/* -- --*/
#estimate-consultation {
   background: url("../img/common/contact-bg.jpg") no-repeat center/cover;
   padding: 80px 0 40px;
}

#estimate-consultation .box {
   display: flex;
   flex-wrap: wrap;
   align-items: flex-end;
   gap: 20px 6.4%;
}

#estimate-consultation .col {
   width: 61.4%;
   background-color: #fff;
   border: 6px solid #B4CB3C;
   box-sizing: border-box;
   border-radius: 10px;
   padding: 45px;
}

#estimate-consultation h2 {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 0 10px;
}

#estimate-consultation h2:before {
   content: '';
   display: block;
   width: 0;
   height: 37px;
   border-left: 2px solid #E81C1C;
   transform: rotate(-15deg);
}

#estimate-consultation h2:after {
   content: '';
   display: block;
   width: 0;
   height: 37px;
   border-left: 2px solid #E81C1C;
   transform: rotate(15deg);
}

#estimate-consultation h3 {
   font-weight: 700;
   font-size: 44px;
   line-height: 48px;
}

#estimate-consultation ul li {
   width: 350px;
   margin: 0 auto;
   padding-top: 20px;
}

#estimate-consultation ul li a {
   display: block;
   color: #fff;
   border-radius: 8px;
   font-weight: 700;
   font-size: 32px;
   line-height: 32px;
   text-align: left;
   padding: 12px 25px 11px 66px;
   position: relative;
}

#estimate-consultation ul li img {
   width: 40px;
   position: absolute;
   top: 10px;
   left: 20px;
}

#estimate-consultation ul li span {
   display: block;
   font-weight: 600;
   font-size: 16px;
}

#estimate-consultation ul li:nth-child(1) a {
   background-color: #077425;
}

#estimate-consultation ul li:nth-child(2) a {
   background-color: #E57200;
}

#estimate-consultation ul li:nth-child(3) a {
   background-color: #E81C1C;
   font-size: 27px;
}

#estimate-consultation ul li:nth-child(3) a span {
   text-align: center;
}

#estimate-consultation .photo {
   width: 32%;
}

@media screen and (max-width: 991px) {
   #estimate-consultation .box {
      justify-content: center;
   }

   #estimate-consultation .col {
      width: 100%;
   }
}

@media screen and (max-width: 767px) {
   #estimate-consultation {
      background-image: url("../img/common/sp_contact-bg.jpg");
      padding: 40px 0;
   }

   #estimate-consultation .photo {
      width: 58%;
      text-align: center;
   }

   #estimate-consultation .col {
      padding: 24px;
   }

   #estimate-consultation h2 {
      font-size: 18px;
   }

   #estimate-consultation h2:before,
   #estimate-consultation h2:after {
      height: 25px;
   }

   #estimate-consultation h3 {
      font-size: 22px;
      line-height: 30px;
      text-align: center;
   }

   #estimate-consultation ul li {
      width: 100%;
      max-width: 265px;
   }

   #estimate-consultation ul li+li {
      padding-top: 10px;
   }

   #estimate-consultation ul li a {
      font-size: 24px;
      padding: 12px 20px 12px 45px;
   }

   #estimate-consultation ul li span {
      font-size: 12px;
      line-height: 16px;
   }

   #estimate-consultation ul li img {
      width: 30px;
      top: 14px;
      left: 10px;
   }

   #estimate-consultation ul li:nth-child(3) a {
      font-size: 20px;
   }
}

/* -- --*/
/*
 * 査定フォーム
*=============================================*/
/* -- -- */
#contact__other {
   padding-top: 60px;
}

#contact__other ul {
   display: flex;
   justify-content: center;
   align-items: center;
   flex-wrap: wrap;
   gap: 10px;
   padding-top: 30px;
}

#contact__other ul li {
   width: 280px;
}

#contact__other ul li a {
   display: block;
   color: #fff;
   border-radius: 8px;
   font-weight: 600;
   font-size: 24px;
   line-height: 24px;
   text-align: center;
   padding: 10px 10px 10px 60px;
   position: relative;
}

#contact__other ul li img {
   width: 40px;
   position: absolute;
   top: 13px;
   left: 10px;
}

#contact__other ul li span {
   display: block;
   font-size: 14px;
}

#contact__other ul li:nth-child(1) a {
   background-color: #077425;
}

#contact__other ul li:nth-child(2) a {
   background-color: #E57200;
}

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

   #contact__other ul {
      padding-top: 20px;
   }

   #contact__other ul li {
      width: 100%;
   }

   #contact__other ul li a {
      width: 267px;
      margin: 0 auto;
   }
}

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

body.page-id-424 section,
body.parent-pageid-424 section {
   background: #fff;
}

/* -- -- */
#mailform {
   padding: 60px 0 80px;
}

#mailform input:not([type="radio"], [type="checkbox"]),
#mailform textarea {
   display: block;
   width: 100%;
   background-color: #fff;
   border: 1px solid #CCCCCC;
   line-height: 24px;
   border-radius: 4px !important;
   outline: none;
   -webkit-appearance: none;
   -moz-appearance: none;
   box-sizing: border-box;
   padding: 10px 20px;
}

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

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

.select>*,
.select .wpcf7-form-control-wrap {
   width: 100%;
}

.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: 7px 50px 7px 20px;
   color: #333;
   background: transparent;
   border: 0;
   cursor: pointer;
}

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

.select::after {
   content: '\f078';
   -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;
   color: #000;
   font-size: 18px;
   position: absolute;
   top: 12px;
   right: 20px;
}

#mailform .wpcf7-radio {
   display: flex;
   flex-wrap: wrap;
   gap: 40px;
}

#mailform .wpcf7-radio span,
#mailform .wpcf7-radio label {
   display: block;
   cursor: pointer;
}

#mailform .wpcf7-radio input {
   display: none;
}

#mailform .wpcf7-radio .wpcf7-list-item {
   display: block;
   margin: 0;
}

#mailform .wpcf7-radio .wpcf7-list-item-label {
   padding-left: 20px;
   position: relative;
}

#mailform .wpcf7-radio .wpcf7-list-item-label:before {
   content: '';
   width: 12px;
   height: 12px;
   box-sizing: border-box;
   border-radius: 50%;
   border: 1px solid #333;
   position: absolute;
   top: 7px;
   left: 0;
}

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

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

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

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

#mailform .wpcf7-checkbox .wpcf7-list-item label {
   display: block;
   position: relative;
}

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

#mailform .wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label {
   padding-left: 25px;
   position: relative;
   cursor: pointer;
}

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

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

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

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

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

#mailform .select .wpcf7-not-valid-tip {
   position: absolute;
   top: 100%;
}

#mailform .form-input {
   padding: 30px 0 0;
}

#mailform .form-input dl {
   background-color: #F3F7F8;
   padding: 20px 30px;
}

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

#mailform .form-input dl dt {
   box-sizing: border-box;
   position: relative;
}

#mailform .form-input dl dt>* {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   gap: 6px;
}

#mailform .form-input dl dt small {
   display: block;
   width: 46px;
   background-color: #E81C1C;
   font-size: 13px;
   letter-spacing: 0;
   line-height: 20px;
   color: #fff;
   text-align: center;
   padding: 2px 0;
   border-radius: 30px;
}

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

#mailform .form-input dl dd {
   width: 100%;
   padding-top: 10px;
   position: relative;
}

#mailform .form-input .address-group {
   padding-top: 20px;
}

#mailform .form-input .address-group .label {
   font-size: 14px;
   padding-bottom: 6px;
}

#mailform .form-input .address-group ul {
   display: flex;
   flex-wrap: wrap;
   gap: 14px 40px;
}

#mailform .form-input .address-group ul li {
   width: 100%;
}

#mailform .form-input .address-group ul li:nth-child(1),
#mailform .form-input .address-group ul li:nth-child(2) {
   width: calc(50% - 20px);
}

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

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

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

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

#mailform .privacy {
   width: 100%;
   height: 300px;
   background-color: #fff;
   color: #333;
   line-height: 30px;
   overflow: hidden scroll;
   border: 1px solid #707070;
   box-sizing: border-box;
   padding: 15px 40px;
   margin: 50px auto 0;
}

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

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

#mailform .form-check {
   display: flex;
   justify-content: center;
   padding: 30px 0 0;
}

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

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

#mailform .form-check .wpcf7-not-valid-tip {
   width: 200px;
   color: #dc3232;
   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;
   gap: 10px;
   padding-top: 50px;
}

#mailform .form-btn>* {
   display: block;
   width: 300px;
   background-color: #fff;
   border: 2px solid #077425;
   text-align: center;
   border-radius: 6px;
   font-weight: 500;
   font-size: 18px;
   line-height: 26px;
   letter-spacing: 0em;
   color: #333;
   cursor: pointer;
   transition: all 0.3s;
   box-sizing: border-box;
   padding: 15px 30px;
   overflow: hidden;
   position: relative;
   z-index: 1;
}

#mailform .form-btn>*:before {
   content: "";
   position: absolute;
   z-index: -1;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: #AA6B24;
   -webkit-transform: scaleY(0);
   transform: scaleY(0);
   -webkit-transform-origin: 50% 100%;
   transform-origin: 50% 100%;
   -webkit-transition-property: transform;
   transition-property: transform;
   -webkit-transition-duration: 0.3s;
   transition-duration: 0.3s;
   -webkit-transition-timing-function: ease-out;
   transition-timing-function: ease-out;
}

#mailform .form-btn>*: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;
   position: absolute;
   top: 50%;
   right: 15px;
   transform: translateY(-50%);
   color: #077425;
   transition: all 0.3s;
}

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

#mailform .form-btn>*:hover:before {
   -webkit-transform: scaleY(1);
   transform: scaleY(1);
}

#mailform .form-btn>*:hover:after {
   color: #fff;
}

#mailform .form-btn>* input,
#mailform .form-btn>* a {
   display: block;
   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 {
   color: #fff;
}

#mailform .form-btn .send:before {
   -webkit-transform: scaleY(1);
   transform: scaleY(1);
}

#mailform .form-btn .send:after {
   color: #fff;
}

#mailform.confirm-mail .form-input {
   padding-top: 0;
}

#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 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-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;
   border-color: #dc3232 !important;
   color: #dc3232 !important;
   margin: 0 !important;
}

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

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

   #mailform .form-input dl dt small {
      font-size: 10px;
      padding: 0;
   }

   #mailform .form-input .address-group ul {
      gap: 20px;
   }

   #mailform .form-input .address-group ul li:nth-child(1),
   #mailform .form-input .address-group ul li:nth-child(2) {
      width: 100%;
   }

   #mailform .privacy {
      width: 100%;
      padding: 15px 20px;
      margin-top: 30px;
   }

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

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

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

/* -- -- */
#txt_thanks {
   text-align: center;
   padding: 60px 0 80px;
}

#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: 991px) {
   #txt_thanks .txt-18 {
      font-size: 16px;
   }
}

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

   #txt_thanks .txt-18 {
      font-size: 13px;
   }

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

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

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

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

.wp-pagenavi>* {
   display: block;
   min-width: 20px;
   background-color: #333;
   border: 1px solid #333;
   font-weight: 400;
   font-size: 15px;
   line-height: 24px;
   color: #fff;
   text-align: center;
   padding: 2px 4px;
   margin: 0 5px;
}

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

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

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

/* -- -- */
.cpt-template {
   background-color: #fff;
   padding: 60px 20px 80px;
}

.cpt-template .wrap {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 40px 6%;
   max-width: 1000px;
}

.cpt-template .box {
   width: 72%;
}

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

.cpt-template .sidebar h2 {
   font-weight: 700;
   font-size: 22px;
   line-height: 32px;
   border-bottom: 1px solid #333;
   padding-bottom: 10px;
}

.cpt-template .sidebar ul {
   font-weight: 500;
   font-size: 15px;
   line-height: 20px;
   padding-top: 20px;
}

.cpt-template .sidebar ul li+li {
   padding-top: 10px;
}

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

.cpt-template .sidebar ul li a:before {
   content: '-';
   position: absolute;
   top: 0;
   left: 0;
}

.cpt-template .sidebar ul li a:hover {
   text-decoration: underline;
}

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

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

   .cpt-template .box,
   .cpt-template .sidebar {
      width: 100%;
   }
}

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

.news__list .item {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   gap: 15px 10px;
   border-bottom: 1px dashed #077425;
   padding: 0 20px 30px;
}

.news__list .item+.item {
   padding-top: 30px;
}

.news__list .item .date {
   min-width: 80px;
   font-size: 13px;
   line-height: 20px;
}

.news__list .item .cate a {
   display: block;
   width: 140px;
   background-color: #E57200;
   color: #fff;
   font-size: 13px;
   line-height: 20px;
   text-align: center;
   border-radius: 30px;
   padding: 3px 0;
}

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

.news__list .item .ttl {
   width: 100%;
   position: relative;
}

.news__list .item .ttl a {
   max-height: 78px;
   overflow: hidden;
   display: block;
   -webkit-line-clamp: 3;
   display: box;
   display: -webkit-box;
   -webkit-box-orient: vertical;
   text-overflow: ellipsis;
   white-space: normal;
   position: relative;
}

@media screen and (max-width: 767px) {
   .news__list .item {
      gap: 10px;
      padding: 0 20px 20px;
   }

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

/* -- -- */
#cpt-record {
   background-color: #fff;
   padding: 80px 0;
}

#cpt-record .work_type {
   border-bottom: dotted 3px #333;
   padding: 30px 0;
}

@media screen and (max-width: 767px) {
   #cpt-record .work_type {
      border-bottom: none;
      padding:10px 0;
      width: 100%;
      text-align: center;
   }
}


#cpt-record .sidebar dl+dl {
   border-top: 2px dotted #044D19;
   margin-top: 30px;
   padding-top: 30px;
}

#cpt-record .sidebar dl dt {
   border-left: 6px solid #044D19;
   padding-left: 8px;
}

#cpt-record .sidebar dl dd {
   display: flex;
   flex-wrap: wrap;
   gap: 10px 30px;
   padding: 20px 0 0 14px;
}

#cpt-record .sidebar dl dd a {
   display: inline-block;
   border-radius: 50px;
   color: #fff;
   font-size: 15px;
   line-height: 24px;
   padding: 4px 12px;
}

#cpt-record .sidebar .area dd a {
   background-color: #A4B934;
}

#cpt-record .sidebar .area dd a:hover {
   background-color: #333;
   opacity: 1;
}

#cpt-record .sidebar .work_type dd a {
   background-color: #AA6B24;
}

#cpt-record .sidebar .work_type dd a:hover {
   background-color: #333;
   opacity: 1;
}

#cpt-record .wp-pagenavi {
   max-width: 1000px;
   margin: 0 auto;
}

@media screen and (max-width: 767px) {
   #cpt-record .sidebar dl dd {
      gap: 10px;
   }
}

/* -- -- */
.record__list {
   display: flex;
   flex-wrap: wrap;
   gap: 24px 2%;
   padding-top: 60px;
}

.record__list .item {
   width: 23.5%;
   border-bottom: 1px dashed #707070;
   padding-bottom: 10px;
}

.record__list .photo a {
   display: block;
   width: 100%;
   padding-top: 100%;
   position: relative;
}

.record__list .photo a span {
   display: block;
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
}

.record__list .cate {
   padding-top: 5px;
}

.record__list .cate a {
   display: block;
   width: max-content;
   border-radius: 50px;
   color: #fff;
   font-size: 13px;
   line-height: 19px;
   padding: 4px 12px;
   margin-top: 5px;
}

.record__list .cate .area {
   background-color: #A4B934;
}

.record__list .cate .area:hover {
   background-color: #333;
   opacity: 1;
}

.record__list .cate .work_type {
   background-color: #AA6B24;
}

.record__list .cate .work_type:hover {
   background-color: #333;
   opacity: 1;
}

.record__list .ttl {
   color: #000;
   font-size: 16px;
   line-height: 26px;
   padding-top: 10px;
}

.record__list .ttl a {
   max-height: 52px;
   overflow: hidden;
   display: block;
   -webkit-line-clamp: 2;
   display: box;
   display: -webkit-box;
   -webkit-box-orient: vertical;
   text-overflow: ellipsis;
   white-space: normal;
   position: relative;
}

.record__list .date {
   font-size: 13px;
   line-height: 20px;
   padding-top: 10px;
}

@media screen and (max-width: 767px) {
   .record__list {
      padding-top: 40px;
   }

   .record__list .item {
      width: 100%;
   }
}

/* -- -- */
/*
 * Post Detail
 *=============================================*/
#cpt-detail .box {
   width: 80%;
   padding: 0;
}

#cpt-detail .featured_img {
   text-align: center;
   padding-bottom: 12px;
}

#cpt-detail .date {
   font-size: 13px;
   line-height: 20px;
}

#cpt-detail .cate {
   padding-top: 10px;
}

#cpt-detail .cate a {
   display: inline-block;
   vertical-align: middle;
   background-color: #E57200;
   color: #fff;
   font-size: 13px;
   line-height: 20px;
   border-radius: 50px;
   padding: 3px 12px;
   margin: 0 5px 5px 0;
   text-align: center;
}

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

#cpt-detail .the_title {
   color: #333;
   font-weight: 500;
   font-size: 18px;
   line-height: 26px;
   border-bottom: 2px solid #044D19;
   padding-top: 5px;
   padding-bottom: 20px;
   position: relative;
}

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

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

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

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

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

#cpt-detail .post-btn {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   gap: 10px;
   font-family: 'Noto Sans JP', sans-serif;
   font-weight: 400;
   font-size: 15px;
   line-height: 30px;
   text-align: center;
   box-sizing: content-box;
   margin: 80px 0 0;
   position: relative;
}

#cpt-detail .post-btn a {
   display: block;
   background-color: #333;
   color: #fff;
   line-height: 30px;
   padding: 0 8px;
}

#cpt-detail .post-btn .prev,
#cpt-detail .post-btn .next {
   width: 30px;
}

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

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

#cpt-detail .post-btn a:hover {
   background-color: #044D19;
   opacity: 1;
}

@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: 991px) {
   #cpt-detail .box {
      width: 100%;
   }
}

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

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

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

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

   #cpt-detail .cate a {
      min-width: max-content;
   }

   #cpt-detail .post-btn {
      justify-content: center;
      margin-top: 50px;
   }
}

#cpt-detail .gallery-photo {
   padding-top: 48px;
}

#cpt-detail .gallery-photo .gallery-slider .swiper-slide p {
   width: 100%;
   padding-top: 70%;
   background-color: transparent;
   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;
   width: auto;
   height: auto;
   max-height: 100%;
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
}

#cpt-detail .gallery-photo .gallery-thumbs {
   margin: 10px 0 0;
   padding: 0 40px;
   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: 30px;
   height: 101%;
   border: 0;
   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/common/sl-prev.svg") no-repeat center left/30px auto;
}

#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/common/sl-next.svg") no-repeat center right/30px auto;
}

@media screen and (max-width: 767px) {
   #cpt-detail .gallery-photo .gallery-thumbs {
      margin: 10px 0 0;
   }

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

/* --- --- */
body.single-record #cpt-detail .box {
   width: 100%;
}

body.single-record #cpt-detail .cate li {
   display: flex;
   gap: 5px 10px;
}

body.single-record #cpt-detail .cate li+li {
   padding-top: 5px;
}

body.single-record #cpt-detail .cate a {
   margin: 0;
}

body.single-record #cpt-detail .cate .area {
   background-color: #A4B934;
}

body.single-record #cpt-detail .cate .area:hover {
   background-color: #333;
}

body.single-record #cpt-detail .cate .work_type {
   background-color: #AA6B24;
}

body.single-record #cpt-detail .cate .work_type:hover {
   background-color: #333;
}

#cpt-detail .before-after {
   display: flex;
   flex-wrap: wrap;
   gap: 60px;
   position: relative;
   margin-top: 40px;
}

#cpt-detail .before-after:after {
   content: '\f0da';
   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;
   line-height: 1;
   text-rendering: auto;
   color: #E57200;
   font-size: 62px;
   position: absolute;
   top: 55%;
   left: 50%;
   transform: translate(-50%, -50%);
}

#cpt-detail .before-after dl {
   width: calc(50% - 30px);
}

#cpt-detail .before-after dl dt {
   width: 230px;
   border-radius: 60px;
   text-align: center;
   color: #fff;
   padding: 12px 0;
   margin: 0 auto -30px;
   position: relative;
   z-index: 1;
}

#cpt-detail .before-after dl:nth-child(1) dt {
   background-color: #044D19;
}

#cpt-detail .before-after dl:nth-child(2) dt {
   background-color: #B4CB3C;
}

#cpt-detail .table-information {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 20px;
   text-align: center;
   padding-top: 30px;
}

#cpt-detail .table-information ul {
   width: calc(50% - 10px);
   max-width: 350px;
}

#cpt-detail .table-information ul li {
   background-color: #fff;
   border: 1px solid #000;
   border-radius: 4px;
   font-size: 15px;
   line-height: 21px;
   padding: 6px;
}

#cpt-detail .table-information ul li+li {
   margin-top: 10px;
}

#cpt-detail .table-information ul .amount {
   background-color: #FAF5EC;
   font-weight: 700;
   font-size: 20px;
   line-height: 30px;
   padding: 11px 6px;
}

@media screen and (max-width: 767px) {
   #cpt-detail .before-after:after {
      content: "\f0d7";
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
   }

   #cpt-detail .before-after dl {
      width: 100%;
   }

   #cpt-detail .before-after dl dt {
      padding: 5px 0;
      margin-bottom: -20px;
   }

   #cpt-detail .table-information {
      gap: 10px;
   }

   #cpt-detail .table-information ul {
      width: calc(50% - 5px);
   }

   #cpt-detail .table-information ul li {
      font-size: 13px;
      padding: 5px 0;
   }

   #cpt-detail .table-information ul .amount {
      font-size: 18px;
      line-height: 24px;
      padding: 10px 0;
   }
}

/* --- --- */
/*
 * 選ばれる理由 
*=============================================*/
/* -- -- */
#reasons__list .box-img+.box-img {
   margin-top: 70px;
}

#reasons__list .box-img .no {
   width: 86px;
}

#reasons__list .box-img h3 {
   padding-top: 10px;
}

@media screen and (max-width: 991px) {
   #reasons__list .box-img {
      position: relative;
   }

   #reasons__list .box-img .no {
      width: 60px;
      position: absolute;
      top: 10px;
      left: 10px;
   }
}

@media screen and (max-width: 767px) {
   #reasons__list .box-img+.box-img {
      margin-top: 50px;
   }
}

/* -- -- */
/*
 * 遺品・生前整理
 * 不用品・残置物回収
 * ゴミ屋敷清掃
 * オフィス機器・家具買取
*=============================================*/
/* -- -- */
#service__reason h2 {
   background-color: #4D2604;
   color: #fff;
   border-radius: 100px;
   font-weight: 700;
   font-size: 36px;
   letter-spacing: 0;
   padding: 18px 30px;
}

#service__reason h2 .en {
   color: #F5E61C;
   font-size: 18px;
   letter-spacing: 0.05em;
   line-height: 24px;
   padding-bottom: 5px;
}

#service__reason .box1 {
   display: flex;
   flex-wrap: wrap;
   gap: 20px 40px;
   border-bottom: 4px solid #B4CB3C;
   margin-bottom: 82px;
   padding: 30px 0 40px;
   position: relative;
}

#service__reason .box1:after {
   content: '';
   width: 0;
   height: 0;
   border-width: 42px 110px 0 110px;
   border-style: solid;
   border-color: #B4CB3C transparent transparent transparent;
   position: absolute;
   top: 100%;
   left: calc(50% - 110px);
   margin-top: 4px;
}

#service__reason .box1 .photo {
   width: calc(100% - 600px);
}

#service__reason .box1 ul {
   width: 560px;
}

#service__reason .box1 ul li {
   border-bottom: 1px dashed #044D19;
   padding-bottom: 3px;
}

#service__reason .box1 ul li+li {
   padding-top: 20px;
}

#service__reason .box2 {
   background-color: #fff;
   border: 5px solid #B4CB3C;
   border-radius: 20px;
   padding: 60px 30px;
}

#service__reason .box2 .logo {
   padding: 5px 0 10px;
}

#service__reason .box2 .logo img {
   width: 400px;
}

#service__reason .box2 .txt-18 {
   padding-top: 30px;
}

#service__reason .box3 {
   max-width: 1100px;
   margin: 0 auto;
   padding: 40px 0 0;
}

#service__reason .box3 h3 {
   background-color: #077425;
   color: #fff;
   border-radius: 10px 10px 0 0;
   padding: 8px 20px;
   margin-bottom: 14px;
   position: relative;
}

#service__reason .box3 h3:after {
   content: '';
   width: 100%;
   height: 0;
   border-bottom: 10px solid #B4CB3C;
   position: absolute;
   top: 100%;
   left: 0;
   margin-top: 4px;
}

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

@media screen and (max-width: 991px) {
   #service__reason .box1 {
      justify-content: center;
   }

   #service__reason .box1 .photo {
      width: 70%;
   }

   #service__reason .box1 ul {
      width: 100%;
   }
}

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

   #service__reason h2 .en {
      font-size: 14px;
   }

   #service__reason .box1 {
      margin-bottom: 50px;
      padding: 20px 0;
   }

   #service__reason .box1:after {
      border-width: 22px 50px 0 50px;
      left: calc(50% - 50px);
   }

   #service__reason .box1 ul {
      font-size: 16px;
   }

   #service__reason .box1 ul span {
      font-size: 20px;
   }

   #service__reason .box2 {
      padding: 30px 20px;
   }

   #service__reason .box2 .logo img {
      width: 100%;
      max-width: 400px;
   }

   #service__reason .box2 .txt-18 {
      padding-top: 15px;
   }
}

/* -- -- */
#case__study .block {
   max-width: 1100px;
   border: 5px solid #B4CB3C;
   border-radius: 20px;
   box-sizing: border-box;
   margin: 30px auto 0;
   padding: 50px;
}

#case__study .block+.block {
   margin-top: 50px;
}

#case__study .block .box {
   display: flex;
   flex-wrap: wrap;
   gap: 60px;
   position: relative;
}

#case__study .block .box:after {
   content: '\f0da';
   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;
   line-height: 1;
   text-rendering: auto;
   color: #E57200;
   font-size: 62px;
   position: absolute;
   top: 55%;
   left: 50%;
   transform: translate(-50%, -50%);
}

#case__study .block .box dl {
   width: calc(50% - 30px);
}

#case__study .block .box dl dt {
   width: 230px;
   border-radius: 60px;
   text-align: center;
   color: #fff;
   padding: 12px 0;
   margin: 0 auto -30px;
   position: relative;
   z-index: 1;
}

#case__study .block .box dl:nth-child(1) dt {
   background-color: #044D19;
}

#case__study .block .box dl:nth-child(2) dt {
   background-color: #B4CB3C;
}

#case__study .block h3 {
   text-align: center;
   padding-top: 20px;
}

#case__study .block h3 span {
   display: block;
}

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

#case__study .block .list {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 20px;
   text-align: center;
   padding-top: 30px;
}

#case__study .block .list ul {
   width: calc(50% - 10px);
   max-width: 350px;
}

#case__study .block .list ul li {
   border: 1px solid #000;
   border-radius: 4px;
   font-size: 15px;
   line-height: 21px;
   padding: 6px;
}

#case__study .block .list ul li+li {
   margin-top: 10px;
}

#case__study .block .list ul .amount {
   background-color: #FAF5EC;
   font-weight: 700;
   font-size: 20px;
   line-height: 30px;
   padding: 11px 6px;
}

#case__study .box-note {
   border: 4px solid #000;
   border-radius: 10px;
   padding: 30px 50px;
   margin-top: 80px;
}

#case__study .box-note .txt-15 {
   padding-top: 10px;
}

@media screen and (max-width: 991px) {
   #case__study .block {
      padding: 30px;
   }

   #case__study .block .box dl dt {
      width: 70%;
   }
}

@media screen and (max-width: 767px) {
   #case__study .block {
      margin-top: 20px;
      padding: 20px 10px;
   }

   #case__study .block .box:after {
      content: "\f0d7";
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
   }

   #case__study .block .box dl {
      width: 100%;
   }

   #case__study .block .box dl dt {
      padding: 5px 0;
      margin-bottom: -20px;
   }

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

   #case__study .block .list {
      gap: 10px;
   }

   #case__study .block .list ul {
      width: calc(50% - 5px);
   }

   #case__study .block .list ul li {
      font-size: 13px;
      padding: 5px 0;
   }

   #case__study .block .list ul .amount {
      font-size: 18px;
      line-height: 24px;
      padding: 10px 0;
   }

   #case__study .box-note {
      margin-top: 50px;
      padding: 20px;
   }
}

/* -- -- */
#flow .box {
   max-width: 1100px;
   margin: 0 auto;
   padding-top: 30px;
}

#flow .box .item {
   display: flex;
   flex-wrap: wrap;
   gap: 30px;
   background-color: #fff;
   border: 4px solid #B4CB3C;
   border-radius: 10px;
   padding: 30px 50px;
   margin-bottom: 50px;
   position: relative;
}

#flow .box .item:after {
   content: '';
   width: 0;
   height: 0;
   border-width: 40px 90px 0 90px;
   border-style: solid;
   border-color: #B4CB3C transparent transparent transparent;
   position: absolute;
   top: 100%;
   left: calc(50% - 90px);
   margin-top: 4px;
}

#flow .box .item:last-child {
   margin-bottom: 0;
}

#flow .box .item:last-child:after {
   display: none;
}

#flow .box .photo {
   width: 240px;
}

#flow .box .col {
   width: calc(100% - 270px);
   padding: 20px 0;
}

#flow .box .no {
   font-weight: 700;
}

#flow .box h3 {
   padding-top: 5px;
}

#flow .box .txt {
   padding-top: 10px;
}

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

@media screen and (max-width: 767px) {
   #flow .box .item {
      gap: 20px;
      padding: 20px;
   }

   #flow .box .item:after {
      border-width: 30px 50px 0 50px;
      left: calc(50% - 50px);
   }

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

   #flow .box .col {
      width: 100%;
      padding: 0;
   }
}

/* -- -- */
#can__buy .txt-18 {
   padding-top: 30px;
}

#can__buy .box {
   display: flex;
   flex-wrap: wrap;
   gap: 30px 2%;
   padding-top: 30px;
}

#can__buy .box dl {
   width: 23.5%;
}

#can__buy .box dl dd {
   padding-top: 10px;
}

@media screen and (max-width: 767px) {
   #can__buy .txt-18 {
      padding-top: 20px;
   }

   #can__buy .box {
      gap: 30px 20px;
   }

   #can__buy .box dl {
      width: calc(50% - 10px);
   }
}

/* -- -- */
#purchase__example .box {
   display: flex;
   flex-wrap: wrap;
   gap: 30px 15px;
   padding-top: 30px;
}

#purchase__example .box .item {
   width: calc(33.33% - 10px);
   box-sizing: border-box;
   border: 3px solid #B4CB3C;
   background-color: #fff;
   border-radius: 20px;
   padding: 30px 20px;
}

#purchase__example .box .photo {
   padding: 0 15px;
}

#purchase__example .box h3,
#purchase__example .box .txt {
   padding-top: 20px;
}

#purchase__example .box h3 {
   text-align: center;
}

#purchase__example .box .price {
   background-color: #FAF5EC;
   border: 1px solid #000;
   border-radius: 4px;
   padding: 10px 5px;
   margin-top: 20px;
   text-align: center;
}

@media screen and (max-width: 767px) {
   #purchase__example .box .item {
      width: 100%;
   }
}

/* -- -- */
body.page-id-1792 #top__service .box2 {
   margin-top: 0;
}

/* -- -- */
/*
 * 料金案内
*=============================================*/
/* -- -- */
#price__sec1 {
   padding: 60px 0 80px;
}

#price__sec1 .box {
   border: 4px solid #E81C1C;
   border-radius: 10px;
   padding: 30px 50px;
}

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

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

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

/* -- -- */
#price__sec2 .box {
   border-bottom: 2px solid #044D19;
   padding: 30px 0;
}

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

#price__sec2 .box .price-list {
   width: 496px;
   box-sizing: border-box;
   background-color: #fff;
   border: 4px solid #CC0001;
   border-radius: 10px;
   margin-top: 35px;
   padding: 28px 46px 20px;
   position: relative;
}

#price__sec2 .box .price-list h4 {
   display: inline-block;
   background-color: #CC0001;
   color: #fff;
   border-radius: 50px;
   padding: 3px 23px;
   position: absolute;
   top: -20px;
   left: 10px;
}

#price__sec2 .box .price-list dl {
   display: flex;
   flex-wrap: wrap;
}

#price__sec2 .box .price-list dl dt {
   flex: auto;
}

#price__sec2 .box .price-list dl dd {
   color: #CC0001;
}

#price__sec2 .box .price-list dl dd small {
   font-size: 13px;
}

#price__sec2 .box-note {
   background-color: #fff;
   border: 4px solid #000;
   border-radius: 10px;
   margin-top: 50px;
   padding: 30px 50px;
}

#price__sec2 .box-note .txt-15 {
   padding-top: 10px;
}

#price__sec2 .box-note ul li {
   text-indent: -16px;
   padding-left: 16px;
}

@media screen and (max-width: 767px) {
   #price__sec2 .box .price-list {
      width: 100%;
      padding: 28px 20px 20px;
   }

   #price__sec2 .box-note {
      padding: 30px 20px;
   }

   #price__sec2 .box-note ul li {
      text-indent: -15px;
      padding-left: 15px;
   }
}

/* -- -- */
/*
 * ご利用案内
*=============================================*/
#guide__lead .box {
   border: 4px solid #000;
   border-radius: 10px;
   padding: 30px 50px;
}

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

#guide__lead .button-list {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 10px 2%;
   text-align: center;
   padding-top: 60px;
}

#guide__lead .button-list li {
   width: 32%;
}

#guide__lead .button-list li a {
   display: block;
   background-image: linear-gradient(to bottom, #BDD24F, #F1EB53);
   border: 4px solid #B4CB3C;
   border-radius: 10px;
   padding: 12px 0 24px;
   position: relative;
}

#guide__lead .button-list li a i {
   position: absolute;
   bottom: 6px;
   left: 50%;
   transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
   #guide__lead .box {
      padding: 30px 20px;
   }

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

   #guide__lead .button-list li {
      width: 100%;
   }
}

/* -- -- */
#about-collected .txt-18 {
   padding-top: 30px;
}

#about-collected .block {
   padding-top: 30px;
}

#about-collected .block+.block {
   padding-top: 60px;
}

#about-collected .box {
   display: flex;
   flex-wrap: wrap;
   gap: 30px 2%;
   text-align: center;
   padding-top: 30px;
}

#about-collected .box dl {
   width: 23.5%;
}

#about-collected .box dl dd {
   padding-top: 10px;
}

#about-collected .box-note {
   border: 4px solid #000;
   border-radius: 10px;
   margin-top: 40px;
   padding: 30px 50px;
}

#about-collected .box-note .txt-15 {
   padding-top: 10px;
}

@media screen and (max-width: 767px) {
   #about-collected .txt-18 {
      padding-top: 15px;
   }

   #about-collected .box {
      gap: 30px 20px;
   }

   #about-collected .box dl {
      width: calc(50% - 10px);
   }

   #about-collected .box-note {
      margin-top: 30px;
      padding: 30px 20px;
   }
}

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

#faq .box-qa dl {
   padding-top: 30px;
}

#faq dl dt {
   background-color: #DEEB98;
   border: 2px solid #DEEB98;
   color: #044D19;
   font-weight: 500;
   font-size: 18px;
   line-height: 30px;
   padding: 22px 60px;
   position: relative;
   cursor: pointer;
}

#faq dl dt:before {
   content: "Q";
   font-weight: 700;
   font-size: 18px;
   position: absolute;
   top: 22px;
   left: 28px;
}

#faq dl dt i {
   position: absolute;
   top: 50%;
   right: 30px;
   transform: translateY(-50%);
   transition: all 0.3s;
}

#faq dl dd {
   display: none;
   font-size: 15px;
   line-height: 24px;
   padding: 0 60px;
   margin-top: 20px;
   position: relative;
}

#faq dl dd:before {
   content: "A";
   font-weight: 700;
   font-size: 18px;
   color: #E81C1C;
   position: absolute;
   top: 50%;
   left: 28px;
   transform: translateY(-50%);
}

#faq dl.active dt i {
   transform: translateY(-50%) rotate(-180deg);
}

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

   #faq dl+dl {
      padding-top: 20px;
   }

   #faq dl dt {
      font-size: 16px;
      padding: 18px 36px;
   }

   #faq dl dt:before {
      top: 18px;
      left: 10px;
   }

   #faq dl dt i {
      right: 10px;
   }

   #faq dl dd {
      font-size: 13px;
      padding: 0 0 0 36px;
   }

   #faq dl dd:before {
      left: 10px;
   }
}

/*
 * 会社案内
*=============================================*/
/* -- -- */
#company__greeting {
   position: relative;
}

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

#company__greeting .box-img .name {
   text-align: right;
   padding-top: 30px;
}

#company__greeting .box-img .name small {
   font-size: 14px;
   line-height: 20px;
}

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

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

   #company__greeting .box-img .name {
      padding-top: 20px;
   }
}

/* -- -- */
#company__qualification .box {
   display: flex;
   flex-wrap: wrap;
   gap: 40px;
   padding-top: 30px;
}

#company__qualification .box dl {
   display: flex;
   flex-wrap: wrap;
   gap: 20px 30px;
   width: calc(50% - 20px);
   border-radius: 10px;
   background-color: #fff;
   border: 4px solid #B4CB3C;
   box-sizing: border-box;
   padding: 30px;
}

#company__qualification .box dl dt {
   width: 200px;
}

#company__qualification .box dl dd {
   width: calc(100% - 230px);
   padding-top: 10px;
}

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

@media screen and (max-width: 991px) {
   #company__qualification .box dl {
      width: 100%;
   }
}

@media screen and (max-width: 767px) {
   #company__qualification .box dl {
      padding: 20px;
   }

   #company__qualification .box dl dt,
   #company__qualification .box dl dd {
      width: 100%;
   }

   #company__qualification .box dl dt {
      text-align: center;
   }

   #company__qualification .box dl dd {
      padding-top: 0;
   }
}

/* -- -- */
#company__outline .tb-style {
   padding-top: 30px;
}

#company__outline .photo {
   display: flex;
   align-items: center;
   flex-wrap: wrap;
   gap: 20px;
   padding-top: 50px;
}

#company__outline .photo li {
   width: calc(50% - 10px);
}

#company__outline .gmap {
   width: 100%;
   height: 500px;
   border: 6px solid #B4CB3C;
   border-radius: 20px;
   box-sizing: border-box;
   margin-top: 50px;
}

#company__outline .gmap>* {
   display: block;
   width: 100%;
   height: 100%;
   border-radius: inherit;
}

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

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

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

   #company__outline .photo li {
      width: 100%;
   }

   #company__outline .gmap {
      height: 100vw;
      margin-top: 30px;
   }
}

/* -- -- */