@charset "UTF-8";

/*==========================================
PC共通
===========================================*/
html {
  font-size: 62.5%;
}

body {
  line-height: 1.8;
  font-size: 1.8rem;
}

p {
  letter-spacing: var(--base-letter-spacing);
}

/*==========================================
共通タイトル
===========================================*/
h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: var(--base-letter-spacing);
  font-weight: var(--base-font-weight);
}

.ttl01 {
  margin-bottom: 65px;
}

.ttl01 .en {
  display: block;
  margin-bottom: 10px;
}

.ttl01 .ja {
  display: block;
  font-size: 4rem;
}

.ttl02 {
  text-align: left;
  font-size: 2.8rem;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--font-color);
  padding-bottom: 10px;
}

.ttl02:first-letter {
  color: var(--accent-color);
}

.ttl03 {
  margin-bottom: 25px;
}

.ttl03 span {
  font-size: 2.4rem;
  color: var(--sixth-color);
  background: #bce5e3;
  padding: 0 10px;
}

.ttl04 {
  font-size: 3.4rem;
  margin-bottom: 25px;
}

.ttl04 small {
  display: block;
  color: var(--main-color);
  font-size: 2.4rem;
}

/*==========================================
共通ブロック・要素
===========================================*/
.com-cont {
  text-align: left;
}

.com-cont p {
  margin-bottom: 40px;
  letter-spacing: 0.08em;
  line-height: 2;
  letter-spacing: var(--base-letter-spacing);
}

.com-cont p:last-child {
  margin-bottom: 0;
}

#g-map h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 5px;
}

#g-map h4 span {
  padding-left: 20px;
}

#g-map .map {
  height: 400px;
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}

#g-map .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.com-tel-wrp .tel-num {
  letter-spacing: 0.08em;
  font-size: 2.8rem;
  padding-left: 20px;
}

.com-tel-wrp .tel-num small {
  font-size: 1.6rem;
}

.com-green-box {
  background: var(--accent-color);
  position: absolute;
  content: "";
}

.com-blk-box {
  border: 4px solid var(--font-color);
  position: absolute;
  content: "";
}

.com-btn {
  width: 560px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--main-color);
  position: relative;
}

.com-btn::after {
  position: absolute;
  content: "";
  inset: 0 20px 0 auto;
  margin: auto 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0px 9px 7px;
  border-color: transparent transparent transparent #fff;
  z-index: 1;
}

.com-btn:hover {
  opacity: 0.85;
  transform: scale(0.95);
}

.has-frame {
  border: 4px solid var(--third-color);
}

.has-frame.has-corner {
  position: relative;
  overflow: hidden;
}

.has-frame.has-corner::before,
.has-frame.has-corner::after {
  width: 236px;
  height: 236px;
  background: var(--third-color);
  border-radius: 50%;
  position: absolute;
  content: "";
}

.has-frame.has-corner::before {
  inset: -150px -150px auto auto;
}

.has-frame.has-corner::after {
  inset: auto auto -150px -150px;
}

.has-arr {
  position: relative;
}

.has-arr::after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 13px 0px 13px 10px;
  border-color: transparent transparent transparent var(--font-color);
  position: absolute;
  content: "";
  inset: 0 4% 0 auto;
  margin: auto 0;
  z-index: 1;
}

.com-mail-btn span {
  padding-left: 45px;
  background: url(../img/common/contact-mail_icon.png) left center no-repeat;
}

.com-line-btn span {
  padding: 6px 0 6px 55px;
  background: url(../img/common/line_icon.png) left center no-repeat;
}

.com-adr-wrp {
  text-align: left;
  font-size: 1.6rem;
}

/*==========================================
テーブルレイアウト
===========================================*/
.com-tbl tr {
  display: flex;
  width: 100%;
  padding: 20px 0;
  border-bottom: 4px solid var(--font-color);
}

.com-tbl tr:last-child {
  border-bottom: none;
}

.com-tbl tr th,
.com-tbl tr td {
  box-sizing: border-box;
  text-align: left;
  overflow-wrap: anywhere;
  font-weight: var(--base-font-weight);
  letter-spacing: var(--base-letter-spacing);
}

.com-tbl tr th {
  padding: 0 10px;
  width: 165px;
  vertical-align: top;
  color: var(--main-color);
}

.com-tbl tr td {
  width: calc(100% - 165px);
  padding: 0 20px;
}

.com-tbl tr td a[href^="mailto:"] {
  text-decoration: underline;
}

.com-tbl tr td span.tel-txt {
  display: block;
}

/*==========================================
パンくずリスト
===========================================*/
div .bread {
  font-size: 1.4rem;
  text-align: left;
  position: relative;
  z-index: 100;
}

div .bread .breadcrumbs {
  position: absolute;
  width: 1080px;
  margin: 0 auto;
  inset: 10px auto auto 0;
  gap: 10px 20px;
}

div .bread li {
  color: var(--main-color);
  position: relative;
}

div .bread li:after {
  content: " > ";
  color: #999;
  position: absolute;
  inset: 0 -15px 0 auto;
  margin: auto 0;
}

div .bread li:last-child:after {
  content: "";
}

div .bread li a {
  color: #999;
}

div .bread li a:hover {
  text-decoration: underline;
}

/*==========================================
header
===========================================*/
#header {
  height: 130px;
  position: absolute;
  inset: 0 0 auto;
  padding: 0 0 0 30px;
  z-index: 1001;
}

#header .hd-right {
  width: 885px;
  gap: 35px;
}

#header .hd-right .hd-r-left {
  width: 715px;
}

#header .hd-right .hd-r-l-info {
  gap: 20px;
}

#header .hd-right .hd-tel-list {
  gap: 15px;
}

#header .hd-right .hd-tel .tel-txt {
  width: fit-content;
}

#header .hd-right .hd-tel .tel-num {
  color: #fff;
  background: url(../img/common/hd-tel_icon.png) left bottom 7px no-repeat;
}

#header .hd-right .hd-sns-list {
  width: auto;
}

#header .hd-mail-btn {
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/common/hd-mail_icon.png) top 30px center no-repeat, var(--main-color);
  padding: 75px 0 25px;
  color: #fff;
}

/*==========================================
nav
===========================================*/
#nav {
  margin-top: 5px;
}

#nav .nav-list {
  gap: 15px 30px;
}

#nav .nav-list-item {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}

#nav .nav-list-item a {
  color: #fff;
  padding-bottom: 3px;
  display: block;
  position: relative;
}

#nav .nav-list-item a:before {
  content: "";
  width: 0;
  left: 50%;
  bottom: 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid #fff;
  position: absolute;
  display: block;
}

#nav .nav-list-item a:after {
  content: "";
  width: 0;
  right: 50%;
  bottom: 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid #fff;
  position: absolute;
  display: block;
}

#nav .nav-list-item a:hover {
  color: #fff;
}

#nav .nav-list-item a:hover:before {
  width: 50%;
  border-bottom: 1px solid #fff;
}

#nav .nav-list-item a:hover:after {
  width: 50%;
  border-bottom: 1px solid #fff;
}

#nav .nav-list-item.current a {
  border-bottom: 1px solid #fff;
}

#nav .nav-list-item.current a::before,
#nav .nav-list-item.current a::after {
  border-bottom: none;
}

#nav .nav-list-item.current a:hover::before,
#nav .nav-list-item.current a:hover::after {
  border-bottom: none;
}

/*==========================================
mv
===========================================*/
#top-mv {
  height: clamp(650px, 48.437vw, 930px);
  position: relative;
  padding-top: 130px;
  background: url(../img/top/mv/mv_bg.jpg) center/cover no-repeat;
}

#top-mv .slider-wrp {
  width: 91.927%;
  height: clamp(480px, 38.281vw, 735px);
  margin-left: auto;
}

#top-mv .slider-wrp #top-slider {
  height: clamp(480px, 38.281vw, 735px);
  position: relative;
}

#top-mv .slider-wrp #top-slider li {
  height: 100%;
}

#top-mv .slider-wrp #top-slider li:nth-child(1) {
  background: url(../img/top/mv/slide01_bg.jpg) center no-repeat;
  background-size: cover;
}

#top-mv .slider-wrp #top-slider li:nth-child(2) {
  background: url(../img/top/mv/slide02_bg.jpg) center no-repeat;
  background-size: cover;
}

#top-mv .slider-wrp #top-slider li:nth-child(3) {
  background: url(../img/top/mv/slide03_bg.jpg) center no-repeat;
  background-size: cover;
}

#top-mv .slider-wrp #top-slider li:nth-child(4) {
  background: url(../img/top/mv/slide04_bg.jpg) center no-repeat;
  background-size: cover;
}

#top-mv .slider-wrp .bx-wrapper {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

#top-mv .slider-wrp .bx-viewport {
  overflow: visible !important;
  margin: auto;
  text-align: center;
}

#top-mv .slider-wrp .bx-pager {
  display: none;
}

#top-mv .slider-wrp .mv-catch {
  width: 55.977%;
  position: absolute;
  height: 324px;
  inset: auto auto 2.721% -8vw;
  display: flex;
  align-items: center;
}

#top-mv .slider-wrp .bx-wrapper {
  overflow: inherit;
}

/*==========================================
index.php
===========================================*/
/* top-about
------------------*/
#top-about {
  padding: 100px 0 120px;
}

#top-about .inbox {
  width: clamp(1080px, 66.6666%, 1280px);
  position: relative;
}

#top-about .about-ttl {
  width: 62.1093%;
  margin: 0 0 60px auto;
  border: 4px solid;
  padding: 3.125% 0 4.7% 9.375%;
  text-align: left;
}

#top-about .about-ttl .ja {
  padding-left: 45px;
}

#top-about .about-txt-wrp {
  width: 43.75%;
  margin-left: auto;
}

#top-about .about-txt-wrp .about-txt {
  width: 83.1428%;
}

#top-about .about-img {
  width: 84.375%;
  margin: 0 auto;
  position: absolute;
  inset: 55px 0 auto 0;
}

#top-about .about-img figcaption {
  text-align: right;
}

#top-about .about-img figcaption span {
  font-weight: 900;
  border-bottom: 1px solid;
  padding-bottom: 5px;
}

#top-about .about-img-before {
  width: 42.1296%;
  margin-bottom: 29px;
}

#top-about .about-img-before figcaption {
  font-size: 2rem;
}

#top-about .about-img-after {
  width: 44.4444%;
  margin-left: 7.4074%;
}

#top-about .about-img-after figcaption {
  font-size: 2.6rem;
}

/* top-works
------------------*/
#top-works {
  padding: 120px 0 125px;
  background: url(../img/top/top-sec_bdr.png) top center repeat-x, url(../img/top/top-sec_bdr.png) bottom center repeat-x, url(../img/top/works_bg.jpg) center/cover no-repeat;
}

#top-works .inbox {
  width: clamp(1080px, 66.666%, 1280px);
}

#top-works .works-ttl {
  margin-bottom: 45px;
}

#top-works .works-leadtxt {
  margin-bottom: 85px;
}

#top-works .works-parts {
  width: 630px;
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
}

#top-works .works-parts .box-deco {
  position: absolute;
  z-index: -1;
}

#top-works .works-parts:last-child {
  margin-bottom: 0;
}

#top-works .works-parts.works-painting .box-deco {
  width: 510px;
  height: 348px;
  inset: 90px -435px auto auto;
}

#top-works .works-parts.works-painting .box-deco .com-green-box {
  width: 225px;
  height: 205px;
  inset: 0 auto auto 0;
  z-index: 1;
}

#top-works .works-parts.works-painting .box-deco .com-blk-box {
  width: 364px;
  height: 238px;
  inset: auto 0 0 auto;
}

#top-works .works-parts.works-cleaning {
  margin: 0 auto 70px;
}

#top-works .works-parts.works-cleaning .box-deco {
  width: 915px;
  height: 458px;
  inset: -55px auto auto -175px;
}

#top-works .works-parts.works-cleaning .box-deco .com-green-box:nth-child(1) {
  width: 164px;
  height: 205px;
  inset: 0 0 auto auto;
}

#top-works .works-parts.works-cleaning .box-deco .com-green-box:nth-child(2) {
  width: 287px;
  height: 165px;
  inset: auto auto 0 0;
}

#top-works .works-parts.works-coating {
  margin-left: auto;
}

#top-works .works-parts.works-coating .box-deco {
  width: 370px;
  height: 295px;
  inset: 125px auto auto -285px;
}

#top-works .works-parts.works-coating .box-deco .com-green-box {
  width: 302px;
  height: 187px;
  inset: auto 0 0 auto;
}

#top-works .works-parts.works-coating .box-deco .com-blk-box {
  width: 196px;
  height: 135px;
  inset: 0 auto auto 0;
}

#top-works .works-parts .works-parts-fig img {
  border: 2px solid;
}

#top-works .works-parts figcaption {
  margin-top: 45px;
  font-size: 3.4rem;
}

#top-works .works-parts figcaption span {
  position: relative;
  z-index: 1;
}

#top-works .works-parts figcaption span::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 20px;
  z-index: -1;
  inset: auto 0 0;
  background: #fff;
}

#top-works .works-parts .fig-txt {
  width: 595px;
  margin: 30px auto 0;
}

#top-works .works-btn {
  margin: 115px auto 0;
}

/* top-reason
------------------*/
#top-reason {
  padding: 120px 0 90px;
}

#top-reason .inbox {
  width: clamp(1080px, 66.666%, 1280px);
}

#top-reason .reason-ttl {
  width: 1080px;
  margin: 0 auto 65px;
  text-align: left;
}

#top-reason .reason-wrp {
  padding: 65px 5.859% 55px 7.8125%;
}

#top-reason .reason-wrp .reason-graph {
  width: 52.398%;
}

#top-reason .reason-wrp .reason-content {
  width: 46.6063%;
}

#top-reason .reason-wrp .reason-cont-ttl {
  font-size: clamp(2.8rem, 1.74vw, 3.4rem);
  margin-bottom: 35px;
}

#top-reason .reason-wrp .reason-cont-ttl span {
  position: relative;
  z-index: 1;
}

#top-reason .reason-wrp .reason-cont-ttl span::before {
  width: 100%;
  height: 24px;
  position: absolute;
  content: "";
  z-index: -1;
  inset: auto 0 0;
  background: var(--fourth-color);
}

#top-reason .reason-wrp .reason-txt {
  font-size: clamp(1.6rem, 1vw, 1.8rem);
}

#top-reason .reason-btn {
  margin: 80px auto 0;
}

/* top-other
------------------*/
#top-other {
  background: url(../img/top/top-sec_bdr.png) top center repeat-x, url(../img/top/top-sec_bdr.png) bottom center repeat-x, url(../img/top/other_bg.jpg) center/cover no-repeat;
  padding: 125px 0;
}

#top-other .inbox {
  width: clamp(1080px, 85.677%, 1645px);
  gap: 4.073%;
}

#top-other .other-box {
  width: 47.9635%;
  height: clamp(305px, 23.6975vw, 455px);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

#top-other .other-box::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: -1;
}

#top-other .other-box:hover {
  opacity: 0.9;
}

#top-other .other-box:hover::before {
  transform: scale(1.1);
}

#top-other .other-box.other-faq::before {
  background: url(../img/top/other-faq_bg.jpg) center/cover no-repeat;
}

#top-other .other-box.other-info::before {
  background: url(../img/top/other-company_bg.jpg) center/cover no-repeat;
}

#top-other .other-box .other-ttl {
  position: absolute;
  inset: 30% auto auto 0;
  width: 52.5982%;
  min-width: 330px;
}

#top-other .other-box .other-ttl .en {
  position: absolute;
  inset: -55px auto auto 16.8674%;
  z-index: 1;
}

#top-other .other-box .other-ttl .ja {
  color: #fff;
  font-size: clamp(2.6rem, 1.8vw, 3.4rem);
  background: var(--third-color);
  display: block;
  width: 100%;
  padding: 15px 15px 15px 16.8674%;
  letter-spacing: 0.08em;
  text-align: left;
}

#top-other .other-box .other-ttl .ja::after {
  border-color: transparent transparent transparent #fff;
}

/* top-news
------------------*/
#top-news {
  padding: 105px 0 115px;
}

#top-news .inbox {
  position: relative;
  min-height: 250px;
}

#top-news .news-ttl {
  width: 185px;
  text-align: left;
  margin-bottom: 0;
}

#top-news .news-post-wrp {
  width: 755px;
}

#top-news .news-post-wrp .news-post {
  text-align: left;
  font-size: 1.6rem;
  border-bottom: 1px solid var(--fifth-color);
}

#top-news .news-post-wrp .news-post a {
  padding: 20px 0;
}

#top-news .news-post-wrp .news-post a:hover {
  opacity: 0.9;
  transform: translateX(15px);
}

#top-news .news-post-wrp .news-post a:hover .news-post-ttl {
  color: var(--accent-color);
}

#top-news .news-post-wrp .news-post:first-child a {
  padding-top: 0;
}

#top-news .news-post-wrp .news-post:last-child {
  border-bottom: none;
}

#top-news .news-post-wrp .news-post:last-child a {
  padding-bottom: 0;
}

#top-news .news-post-wrp .news-post time {
  width: 115px;
}

#top-news .news-post-wrp .news-post .category-label {
  width: calc(100% - 115px);
  gap: 5px 8px;
}

#top-news .news-post-wrp .news-post .category-label li {
  padding-left: 15px;
  position: relative;
}

#top-news .news-post-wrp .news-post .category-label li::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-color);
  inset: 10px auto auto 0;
  margin: auto 0;
}

#top-news .news-post-wrp .news-post-ttl {
  width: 100%;
  margin-top: 5px;
  transition: all 0.3s;
}

#top-news .news-more {
  position: absolute;
  inset: auto auto 0 0;
  color: var(--main-color);
  padding-right: 45px;
}

#top-news .news-more::after {
  border-color: transparent transparent transparent var(--main-color);
}

#top-news .news-more:hover {
  padding-right: 55px;
}

#top-news .news-more span {
  display: block;
  padding-bottom: 3px;
  display: block;
  position: relative;
}

#top-news .news-more span:before {
  content: "";
  width: 0;
  left: 50%;
  bottom: 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--main-color);
  position: absolute;
  display: block;
}

#top-news .news-more span:after {
  content: "";
  width: 0;
  right: 50%;
  bottom: 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--main-color);
  position: absolute;
  display: block;
}

#top-news .news-more span:hover {
  color: var(--main-color);
}

#top-news .news-more span:hover:before {
  width: 50%;
  border-bottom: 1px solid var(--main-color);
}

#top-news .news-more span:hover:after {
  width: 50%;
  border-bottom: 1px solid var(--main-color);
}

/* top-contact
------------------*/
#top-contact {
  background: url(../img/top/top-sec_bdr.png) top center repeat-x, url(../img/top/top-sec_bdr.png) bottom center repeat-x, url(../img/top/contact_bg.jpg) center/cover no-repeat;
  padding: 130px 0;
  position: relative;
  z-index: 1;
}

#top-contact .contact-ttl {
  margin-bottom: 40px;
}

#top-contact .contact-leadtxt {
  margin-bottom: 50px;
}

#top-contact .contact-list-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#top-contact .contact-list-item:not(:nth-child(3n-2)) {
  border-left: 1px solid;
}

#top-contact .contact-list-item.item-tel {
  text-align: left;
  padding-right: 40px;
}

#top-contact .contact-list-item.item-tel .tel-txt {
  margin-bottom: 10px;
}

#top-contact .contact-list-item.item-tel .tel-num {
  line-height: 1.2;
  display: block;
  background: url(../img/common/ft-tel_icon.png) left bottom 5px no-repeat;
  font-size: 3.2rem;
}

#top-contact .contact-list-item.item-tel .tel-num small {
  font-size: 1.8rem;
}

#top-contact .contact-list-item .has-arr {
  padding: 45px 50px 45px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#top-contact .contact-list-item .has-arr:hover {
  text-decoration: underline;
}

#top-contact .contact-list-item .has-arr::after {
  border-width: 9px 0px 9px 7px;
}

#top-contact .contact-box-deco {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: -1;
}

#top-contact .contact-box-deco .l-deco {
  width: 21.6145%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

#top-contact .contact-box-deco .l-deco .top-green {
  width: 74.6987%;
  height: 205px;
  inset: 0 auto auto 0;
}

#top-contact .contact-box-deco .l-deco .com-blk-box {
  width: 47.2289%;
  height: 135px;
  inset: 130px auto auto 51.8072%;
}

#top-contact .contact-box-deco .l-deco .btm-green {
  width: 32.0481%;
  height: 232px;
  inset: auto auto 0 0;
}

#top-contact .contact-box-deco .r-deco {
  width: 16.6666%;
  height: 495px;
  position: absolute;
  inset: auto 0 0 auto;
}

#top-contact .contact-box-deco .r-deco .com-green-box {
  width: 100%;
  height: 360px;
  bottom: 0;
}

#top-contact .contact-box-deco .r-deco .com-blk-box {
  width: 53.4375%;
  height: 224px;
  inset: 0 0 auto auto;
}

/*==========================================
footer
===========================================*/
.com-contact-box {
  background: var(--accent-color);
  padding: 30px;
}

.com-contact-box .com-contact-ttl {
  width: 120px;
  height: 120px;
  background: var(--accent-color);
  border-radius: 50%;
  border: 2px solid var(--font-color);
  color: #fff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: -85px auto auto -65px;
  z-index: -1;
}

.com-contact-box .com-contact-ttl::before {
  position: absolute;
  content: "";
  background: var(--accent-color);
  inset: auto -21px -9px auto;
  width: 74px;
  height: 42px;
}

.com-contact-box .com-contact-ttl span {
  transform: rotate(-15deg);
}

.com-contact-box .com-contact-ttl:hover {
  cursor: pointer;
}

.com-contact-box .contact-tel {
  padding: 10px;
  text-align: left;
  background: #fff;
  border: 1px solid var(--font-color);
}

.com-contact-box .contact-tel .tel-txt {
  margin-bottom: 5px;
}

.com-contact-box .contact-tel .tel-num {
  display: block;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-align: left;
  background: url(../img/common/ft-tel_icon.png) left bottom 5px no-repeat;
}

.com-contact-box .worktime {
  margin-top: 10px;
  font-size: 1.4rem;
}

.com-contact-box .com-contact-btn {
  background: #fff;
  border: 1px solid var(--font-color);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 0 40px 0 10px;
}

.com-contact-box .com-contact-btn::after {
  border-width: 9px 0px 9px 7px;
}

.side-fixed {
  width: 400px;
  position: fixed;
  z-index: 1001;
  inset: auto -330px 5.2083% auto;
  transition: all 0.3s;
}

.side-fixed::before {
  width: 100%;
  height: 85px;
  position: absolute;
  content: "";
  inset: -85px 0 auto;
}

.side-fixed:hover {
  right: 0;
}

#footer {
  background: url(../img/common/ft_bg.jpg) center/cover no-repeat;
  padding: 95px 0 125px;
}

#footer .ft-wrp {
  padding-bottom: 70px;
  border-bottom: 1px solid #fff;
  margin-bottom: 25px;
}

#footer .ft-left {
  width: 345px;
  text-align: left;
}

#footer .ft-left .ft-logo {
  margin-bottom: 85px;
  display: inline-block;
}

#footer .ft-left .ft-adr {
  color: #fff;
}

#footer .ft-right {
  width: 535px;
}

#footer .ft-right .site-list-item {
  width: fit-content;
  margin: 0 0 10px auto;
}

#footer .ft-right .site-list-item:last-child {
  margin-bottom: 0;
}

#footer .ft-right .site-list-item a {
  color: #fff;
  display: block;
  text-align: right;
  padding-right: 45px;
}

#footer .ft-right .site-list-item a::after {
  border-width: 9px 0px 9px 7px;
  border-color: transparent transparent transparent var(--main-color);
  right: 0;
}

#footer .ft-right .site-list-item a span {
  padding-bottom: 3px;
  display: block;
  position: relative;
}

#footer .ft-right .site-list-item a span:before {
  content: "";
  width: 0;
  left: 50%;
  bottom: 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid #fff;
  position: absolute;
  display: block;
}

#footer .ft-right .site-list-item a span:after {
  content: "";
  width: 0;
  right: 50%;
  bottom: 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid #fff;
  position: absolute;
  display: block;
}

#footer .ft-right .site-list-item a span:hover {
  color: #fff;
}

#footer .ft-right .site-list-item a span:hover:before {
  width: 50%;
  border-bottom: 1px solid #fff;
}

#footer .ft-right .site-list-item a span:hover:after {
  width: 50%;
  border-bottom: 1px solid #fff;
}

#footer .ft-nav-list {
  gap: 15px 25px;
}

#footer .ft-nav-list .nav-list-item {
  font-size: 1.3rem;
}

#footer .ft-nav-list .nav-list-item a {
  color: #fff;
}

#footer .ft-nav-list .nav-list-item a:hover {
  text-decoration: underline;
}

#copyright {
  word-break: normal;
  margin-top: 50px;
  color: #fff;
}

#copyright small {
  font-size: 1.1rem;
}

#copyright a {
  color: #fff;
  text-decoration: underline;
}

/*==========================================
sv
===========================================*/
.lower-sv {
  height: 660px;
  position: relative;
  padding-top: 130px;
  background: url(../img/sv/sv_bg.jpg) center/cover no-repeat;
}

.lower-sv .sv-ttl {
  width: 742px;
  background: var(--third-color);
  color: #fff;
  font-size: 5rem;
  padding: 10px;
  position: absolute;
  z-index: 10;
  inset: auto auto 31.06% 0;
}

.lower-sv .sv-ttl:first-letter {
  color: var(--accent-color);
}

.lower-sv .sv-frame {
  height: 530px;
  width: 77.6041%;
  position: absolute;
  inset: auto 0 0 auto;
}

#works-sv .sv-frame {
  background: url(../img/sv/sv-works_bg.jpg) center/cover no-repeat;
}

#reason-sv .sv-frame {
  background: url(../img/sv/sv-reason_bg.jpg) center/cover no-repeat;
}

#faq-sv .sv-frame {
  background: url(../img/sv/sv-faq_bg.jpg) center/cover no-repeat;
}

#info-sv .sv-frame {
  background: url(../img/sv/sv-info_bg.jpg) center/cover no-repeat;
}

#news-sv .sv-frame {
  background: url(../img/sv/sv-news_bg.jpg) center/cover no-repeat;
}

#contact-sv .sv-frame {
  background: url(../img/sv/sv-contact_bg.jpg) center/cover no-repeat;
}

#complete-sv .sv-frame {
  background: url(../img/sv/sv-complete_bg.jpg) center/cover no-repeat;
}

#privacy-sv .sv-frame {
  background: url(../img/sv/sv-privacy_bg.jpg) center/cover no-repeat;
}

#site-sv .sv-frame {
  background: url(../img/sv/sv-site_bg.jpg) center/cover no-repeat;
}

#e404-sv .sv-frame {
  background: url(../img/sv/sv-e404_bg.jpg) center/cover no-repeat;
}

/*==========================================
works
===========================================*/
/* works-sec
------------------*/
#works-sec .works-box {
  width: clamp(1150px, 66.6666%, 1280px);
  margin: 0 auto 90px;
  padding: 75px 0;
}

#works-sec .works-box:last-child {
  margin-bottom: 0;
}

#works-sec .works-box-ttl {
  border-bottom: 3px solid;
  line-height: 1.6;
  padding-bottom: 10px;
  margin-bottom: 40px;
}

#works-sec .works-box-ttl small {
  display: block;
  font-size: 2rem;
}

#works-sec .works-box-ttl span {
  font-size: 3.4rem;
  display: block;
}

#works-sec .works-box-ttl span:first-letter {
  color: var(--main-color);
}

#works-sec .about-wrp {
  position: relative;
}

#works-sec .about-wrp .about-content {
  width: 535px;
  min-height: 350px;
}

#works-sec .about-wrp .about-img {
  position: absolute;
  inset: 0 0 auto auto;
}

#works-sec .merit-wrp {
  margin-top: 60px;
  background: var(--seventh-color);
  padding: 50px 90px 45px;
}

#works-sec .merit-wrp .merit-txt {
  font-size: 1.6rem;
  margin-top: 25px;
}

#works-sec .check-list {
  gap: 15px 45px;
}

#works-sec .check-list-item {
  font-size: 2rem;
  padding-left: 30px;
  background: url(../img/works/works-check_icon.png) left top 10px no-repeat;
}

#works-sec .check-list-item.no-check {
  background: none;
  padding-left: 0;
}

#works-sec .details-wrp {
  margin-top: 60px;
  position: relative;
}

#works-sec .details-wrp .details-content {
  width: 545px;
  margin-left: auto;
}

#works-sec .details-wrp .details-img {
  position: absolute;
  inset: 0 auto auto 0;
}

#works-sec .worry-wrp {
  background: var(--eighth-color);
  padding: 45px 75px;
  border: 2px solid var(--font-color);
  margin-top: 60px;
}

#works-sec .kiso-wrp {
  margin-top: 85px;
}

#works-sec .kiso-wrp .kiso-points {
  height: 800px;
  width: 920px;
  margin: 0 auto;
  position: relative;
}

#works-sec .kiso-wrp .kiso-points .point-ttl {
  position: absolute;
  inset: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

#works-sec .kiso-wrp .kiso-points .point-ttl span {
  font-size: 3.4rem;
}

#works-sec .kiso-wrp .kiso-points .point-list-item {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--seventh-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  padding: 0 15px;
  box-shadow: 0 0 30px rgba(51, 154, 161, 0.32);
}

#works-sec .kiso-wrp .kiso-points .point-list-item:nth-child(1) {
  inset: 0 0 auto;
  margin: 0 auto;
}

#works-sec .kiso-wrp .kiso-points .point-list-item:nth-child(2) {
  inset: 170px auto auto 0;
}

#works-sec .kiso-wrp .kiso-points .point-list-item:nth-child(3) {
  inset: 170px 0 auto auto;
}

#works-sec .kiso-wrp .kiso-points .point-list-item:nth-child(4) {
  inset: auto auto 0 125px;
}

#works-sec .kiso-wrp .kiso-points .point-list-item:nth-child(5) {
  inset: auto 125px 0 auto;
}

#works-sec .kiso-wrp .kiso-points .point-list-item dt {
  font-size: 2.4rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

#works-sec .kiso-wrp .kiso-points .point-list-item dd {
  font-size: 1.6rem;
}

#works-sec .img-wrp {
  margin-top: 60px;
}

#works-sec .img-wrp .com-img {
  width: 100%;
  margin-bottom: 5px;
}

#works-sec .img-wrp figcaption span {
  border-bottom: 1px solid;
  padding: 0 10px 5px;
}

#works-sec .img-wrp .before-img {
  width: 455px;
}

#works-sec .img-wrp .before-img .com-img {
  height: 270px;
}

#works-sec .img-wrp .before-img figcaption {
  text-align: left;
  font-size: 2rem;
}

#works-sec .img-wrp .after-img {
  margin-top: 50px;
  width: 528px;
}

#works-sec .img-wrp .after-img .com-img {
  height: 350px;
}

#works-sec .img-wrp .after-img figcaption {
  text-align: right;
  font-size: 3.2rem;
}

#works-sec .color-wrp {
  width: 820px;
  margin: 70px auto 0;
}

#works-sec .perf-wrp {
  margin-top: 60px;
  background: var(--accent-color);
  padding: 40px;
}

#works-sec .perf-wrp .perf-ttl {
  color: #fff;
  margin-bottom: 35px;
}

#works-sec .perf-wrp .perf-list {
  width: 750px;
  margin: 0 auto;
  row-gap: 30px;
}

#works-sec .perf-wrp .perf-list-item {
  width: 250px;
  color: #fff;
}

#works-sec .perf-wrp .perf-list .perf-item-icon {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#works-sec .perf-wrp .perf-list .perf-item-ttl {
  font-size: 3rem;
  margin-bottom: 10px;
}

#works-sec .perf-wrp .perf-list .perf-item-txt {
  font-size: 2rem;
}

#works-sec .works-cleaning .merit-wrp {
  padding: 50px 120px 45px;
}

/* works-area
------------------*/
#works-area {
  background: url(../img/top/top-sec_bdr.png) top center repeat-x, url(../img/top/top-sec_bdr.png) bottom center repeat-x, url(../img/works/area_bg.jpg) center/cover no-repeat;
}

#works-area .inbox {
  position: relative;
  z-index: 1;
}

#works-area .area-box {
  background: #fff;
  padding: 45px 75px;
  gap: 45px;
}

#works-area .area-box .area-content {
  width: 420px;
}

#works-area .area-box .area-content .area-txt {
  font-size: 2.2rem;
  line-height: 3;
}

#works-area .area-box .area-content .area-txt span {
  position: relative;
  font-size: 3.2rem;
  padding: 0 10px;
  z-index: 1;
}

#works-area .area-box .area-content .area-txt span::before {
  width: 100%;
  height: 24px;
  position: absolute;
  content: "";
  background: var(--fourth-color);
  z-index: -1;
  inset: auto 0 0;
}

#works-area .area-box .area-content .area-txt em {
  color: var(--main-color);
  font-size: 2.4rem;
}

#works-area .area-box-deco {
  width: 1510px;
  height: calc(100% + 45px);
  position: absolute;
  inset: -15px auto auto -185px;
  z-index: -1;
}

#works-area .area-box-deco .l-deco {
  width: 370px;
  height: 290px;
  position: absolute;
  inset: 0 auto auto 0;
}

#works-area .area-box-deco .l-deco .com-green-box {
  width: 302px;
  height: 187px;
  inset: auto 0 0 auto;
}

#works-area .area-box-deco .l-deco .com-blk-box {
  width: 196px;
  height: 135px;
  inset: 0 auto auto 0;
}

#works-area .area-box-deco .r-deco {
  width: 365px;
  height: 275px;
  position: absolute;
  inset: auto 0 0 auto;
}

#works-area .area-box-deco .r-deco .com-green-box {
  width: 225px;
  height: 205px;
  inset: 0 auto auto 0;
  z-index: 1;
}

#works-area .area-box-deco .r-deco .com-blk-box {
  width: 280px;
  height: 165px;
  inset: auto 0 0 auto;
}

/*==========================================
reason
===========================================*/
/* reason-step
------------------*/
#reason-step {
  position: relative;
  z-index: 1;
}

#reason-step .step-leadtxt {
  margin-bottom: 85px;
}

#reason-step .step-list-item {
  padding-left: 200px;
  position: relative;
}

#reason-step .step-list-item:not(:last-child) {
  padding-bottom: 100px;
}

#reason-step .step-list-item:not(:last-child)::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 100%;
  inset: 0 auto auto 71px;
  background: var(--ninth-color);
}

#reason-step .step-list-item:not(:last-child) .step-content {
  position: relative;
}

#reason-step .step-list-item:not(:last-child) .step-content::after {
  position: absolute;
  content: "";
  width: 26px;
  height: 67px;
  background: url(../img/reason/step_arr.png) center/100% no-repeat;
  inset: auto 0 -88px;
  margin: 0 auto;
}

#reason-step .step-list-item .step-num {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--main-color);
  color: #fff;
  border: 2px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  line-height: 1.4;
  font-size: 2.2rem;
  position: absolute;
  inset: 0 auto auto 0;
}

#reason-step .step-list-item .step-num span {
  font-size: 3.9rem;
}

#reason-step .step-list-item .step-content {
  width: 880px;
  background: #fff;
  margin-left: auto;
  padding: 60px 25px 50px;
}

#reason-step .step-list-item .step-item-ttl {
  text-align: left;
  color: var(--main-color);
}

#reason-step .step-list-item .step-item-ttl small {
  color: var(--font-color);
}

#reason-step .step-list-item .step-item-img {
  margin-bottom: 20px;
}

.color-wrp {
  background: var(--seventh-color);
  padding: 50px 25px 40px;
  margin-top: 45px;
}

.color-wrp .color-ttl {
  margin-bottom: 20px;
}

.color-wrp .color-leadtxt {
  margin-bottom: 35px;
}

.color-list {
  gap: 30px 20px;
}

.color-list-item {
  width: 240px;
}

.color-list-item img {
  border-radius: 17px;
  border: 2px solid var(--font-color);
}

#reason-step .step-list-item .step-item-txt {
  text-align: left;
}

#reason-step .step-notes {
  background: var(--seventh-color);
  padding: 70px 45px;
  margin-top: 100px;
}

#reason-step .step-notes .note-txt {
  line-height: 2.3;
}

#reason-step .step-notes .note-txt span {
  position: relative;
  z-index: 1;
  font-size: 2.4rem;
}

#reason-step .step-notes .note-txt span::before {
  width: 100%;
  height: 20px;
  position: absolute;
  content: "";
  background: var(--fourth-color);
  z-index: -1;
  inset: auto 0 0;
}

#reason-step .step-box-deco {
  z-index: -1;
  position: absolute;
  width: 100%;
}

#reason-step .step-box-deco.top-deco {
  height: 875px;
  inset: 368px 0 auto;
}

#reason-step .step-box-deco.top-deco .l-deco {
  width: 415px;
  height: 260px;
  position: absolute;
  inset: auto auto 0 15px;
}

#reason-step .step-box-deco.top-deco .l-deco .com-green-box {
  width: 310px;
  height: 205px;
  inset: 0 auto auto 0;
}

#reason-step .step-box-deco.top-deco .l-deco .com-blk-box {
  width: 196px;
  height: 135px;
  inset: auto 0 0 auto;
}

#reason-step .step-box-deco.top-deco .r-deco {
  width: 495px;
  height: 500px;
  position: absolute;
  inset: 0 0 auto auto;
}

#reason-step .step-box-deco.top-deco .r-deco .com-green-box.top-green {
  width: 196px;
  height: 176px;
  inset: 0 auto auto 0;
}

#reason-step .step-box-deco.top-deco .r-deco .com-green-box.btm-green {
  width: 370px;
  height: 187px;
  inset: auto 0 0 auto;
}

#reason-step .step-box-deco.btm-deco {
  height: 1450px;
  inset: auto 0 400px;
}

#reason-step .step-box-deco.btm-deco .l-deco {
  width: 354px;
  height: 258px;
  position: absolute;
  inset: auto auto 0 177px;
}

#reason-step .step-box-deco.btm-deco .l-deco .com-green-box {
  width: 100%;
  height: 100%;
  inset: 0;
}

#reason-step .step-box-deco.btm-deco .l-deco .com-blk-box {
  width: 196px;
  height: 135px;
  inset: auto 0 0 auto;
}

#reason-step .step-box-deco.btm-deco .r-deco {
  width: 370px;
  height: 290px;
  position: absolute;
  inset: 0 190px auto auto;
}

#reason-step .step-box-deco.btm-deco .r-deco .com-green-box {
  width: 302px;
  height: 187px;
  inset: auto 0 0 auto;
}

#reason-step .step-box-deco.btm-deco .r-deco .com-blk-box {
  width: 196px;
  height: 135px;
  inset: 0 auto auto 0;
}

/* reason-point
------------------*/
#reason-point {
  background: url(../img/top/top-sec_bdr.png) top center repeat-x, url(../img/top/top-sec_bdr.png) bottom center repeat-x, url(../img/reason/point_bg.jpg) center/cover no-repeat;
}

#reason-point .inbox {
  position: relative;
  z-index: 1;
}

#reason-point .point-list-item {
  width: 520px;
  background: #fff;
  padding: 40px 30px;
}

#reason-point .point-item-img {
  margin-bottom: 30px;
}

#reason-point .point-item-ttl {
  border-bottom: 2px solid var(--font-color);
  font-size: 2.4rem;
  margin-bottom: 15px;
  padding-bottom: 10px;
}

#reason-point .point-item-txt {
  text-align: left;
  margin-bottom: 40px;
}

#reason-point .point-item-txt:last-child {
  margin-bottom: 0;
}

#reason-point .point-box-deco {
  position: absolute;
  inset: -40px auto 0 -225px;
  z-index: -1;
  width: 1535px;
  height: calc(100% + 90px);
}

#reason-point .point-box-deco .l-deco {
  width: 370px;
  height: 290px;
  position: absolute;
  inset: 0 auto auto 0;
}

#reason-point .point-box-deco .l-deco .com-green-box {
  width: 302px;
  height: 187px;
  inset: auto 0 0 auto;
}

#reason-point .point-box-deco .l-deco .com-blk-box {
  width: 196px;
  height: 135px;
  inset: 0 auto auto 0;
}

#reason-point .point-box-deco .r-deco {
  width: 360px;
  height: 278px;
  position: absolute;
  inset: auto 0 0 auto;
}

#reason-point .point-box-deco .r-deco .com-green-box {
  width: 225px;
  height: 205px;
  inset: 0 auto auto 0;
}

#reason-point .point-box-deco .r-deco .com-blk-box {
  width: 280px;
  height: 165px;
  inset: auto 0 0 auto;
}

/* reason-construct
------------------*/
#reason-construct .inbox {
  width: clamp(1150px, 66.666%, 1280px);
}

#reason-construct .construct-post {
  margin-bottom: 85px;
  padding: 65px 0;
}

#reason-construct .construct-post:last-child {
  margin-bottom: 0;
}

#reason-construct .construct-post .img-wrp {
  width: 1080px;
  margin: 0 auto;
  gap: 95px;
}

#reason-construct .construct-post .img-wrp .com-img {
  width: 100%;
}

#reason-construct .construct-post .img-wrp .thumb {
  width: 500px;
  height: 360px;
}

#reason-construct .construct-post .img-wrp figcaption {
  margin-bottom: 5px;
}

#reason-construct .construct-post .img-wrp figcaption span {
  border-bottom: 1px solid;
  padding: 0 10px 5px;
}

#reason-construct .construct-post .img-wrp .before-img {
  width: 455px;
  position: relative;
}

#reason-construct .construct-post .img-wrp .before-img::after {
  position: absolute;
  content: "";
  width: 151px;
  height: 145px;
  z-index: 1;
  inset: auto -80px 120px auto;
  background: url(../img/reason/construct_arr.png) center/100% no-repeat;
}

#reason-construct .construct-post .img-wrp .before-img .com-img {
  height: 270px;
}

#reason-construct .construct-post .img-wrp .before-img figcaption {
  text-align: left;
  font-size: 2rem;
}

#reason-construct .construct-post .img-wrp .after-img {
  width: 528px;
  margin-top: 45px;
}

#reason-construct .construct-post .img-wrp .after-img figcaption {
  text-align: right;
  font-size: 2.6rem;
}

#reason-construct .construct-post .img-wrp .after-img .com-img {
  height: 350px;
}

/*==========================================
faq
===========================================*/
#faq-sec .inbox {
  width: clamp(1150px, 66.666%, 1280px);
}

#faq-sec .faq-ttl em {
  color: var(--main-color);
}

#faq-sec .faq-wrp {
  background: #fff;
  padding: 85px 0;
}

#faq-sec .faq-post {
  width: 1080px;
  margin: 0 auto 75px;
}

#faq-sec .faq-post:last-child {
  margin-bottom: 0;
}

#faq-sec .faq-post-ttl {
  font-size: 2.4rem;
  text-align: left;
  border-bottom: 3px solid;
  margin-bottom: 30px;
  padding: 10px 15px 10px 60px;
  position: relative;
}

#faq-sec .faq-post-ttl::before {
  width: 40px;
  height: 40px;
  color: var(--sixth-color);
  background: var(--fourth-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  content: "Q";
  line-height: 1;
  font-size: 3.4rem;
  inset: 13px auto auto 0;
}

#faq-sec .faq-post-body {
  text-align: left;
}

/*==========================================
info
===========================================*/
/* info-greeting
------------------*/
#info-greeting {
  position: relative;
  z-index: 1;
}

#info-greeting .greeting-wrp {
  position: relative;
}

#info-greeting .greeting-img {
  position: absolute;
  inset: 0 auto 0 0;
  width: 44.9479%;
  margin: auto 0;
  display: flex;
  align-items: center;
}

#info-greeting .greeting-content {
  width: 59.53125%;
  margin-left: auto;
  background: #fff;
  padding: 85px 0 100px 7.552%;
}

#info-greeting .greeting-content .greeting-txt {
  width: 565px;
}

#info-greeting .greetng-box-deco {
  width: 44.53125%;
  height: 905px;
  position: absolute;
  inset: 175px auto auto 0;
  z-index: -1;
}

#info-greeting .greetng-box-deco .top-green {
  width: 302px;
  height: 187px;
  inset: 105px 0 auto auto;
}

#info-greeting .greetng-box-deco .btm-green {
  width: 370px;
  height: 187px;
  inset: auto auto 0 0;
}

#info-greeting .greetng-box-deco .com-blk-box {
  width: 196px;
  height: 135px;
  inset: 0 177px auto auto;
}

/* info-sec
------------------*/
#info-sec {
  background: url(../img/top/top-sec_bdr.png) top center repeat-x, url(../img/top/top-sec_bdr.png) bottom center repeat-x, var(--seventh-color);
}

#info-sec .info-tbl th {
  text-align: center;
}

/*==========================================
一覧ぺージ用カテゴリ(セレクトボックス)
===========================================*/
.category-select {
  overflow: hidden;
  width: 300px;
  margin: 0 0 45px auto;
  text-align: center;
  position: relative;
  border-radius: 2px;
  border: 2px solid #2e2e2e;
  background: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.category-select:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  /* Safari用 */
  transform: translateY(-50%);
  z-index: 10;
  right: 0.8em;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #2e2e2e;
  pointer-events: none;
}

.category-select select {
  width: 100%;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 15px 37px 15px 15px;
  color: #2e2e2e;
  font-family: var(--main-font-family);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

/*==========================================
news.php
===========================================*/
.post-wrap .column-lists .column-lists-item {
  border-bottom: 1px solid #ccc;
}

.post-wrap .column-lists .column-lists-item a {
  display: block;
  padding: 45px 0;
  box-sizing: border-box;
}

.post-wrap .column-lists .column-lists-item a:hover {
  opacity: 0.9;
  transform: translateX(10px);
}

.post-wrap .column-lists .column-lists-item a:hover .more-btn {
  background: #fff;
  color: var(--main-color);
}

.post-wrap .column-lists .column-lists-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.post-wrap .column-lists .post-ttl {
  text-align: left;
  margin-bottom: 15px;
  font-weight: 500;
}

.post-wrap .column-lists .post-ttl time {
  color: var(--main-color);
  text-align: left;
  padding: 4px 0;
  width: 95px;
}

.post-wrap .column-lists .post-ttl time,
.post-wrap .column-lists .post-ttl .category-label {
  font-weight: normal;
  font-size: 1.4rem;
}

.post-wrap .column-lists .post-ttl .category-label {
  width: 970px;
  gap: 5px;
}

.post-wrap .column-lists .post-ttl .category-label li {
  border: 1px solid var(--main-color);
  color: #fff;
  background: var(--main-color);
  padding: 2px 10px;
}

.post-wrap .column-lists .post-ttl .column-ttl {
  width: 100%;
  margin-top: 10px;
  font-size: 2.3rem;
  font-weight: 500;
}

.post-wrap .column-lists .post-body {
  text-align: left;
  margin-bottom: 20px;
}

.post-wrap .column-lists .more-btn {
  width: 125px;
  font-size: 1.4rem;
  margin: inherit;
  margin-left: auto;
  font-weight: bold;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  box-sizing: border-box;
  padding: 5px 0;
  display: block;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.post-wrap .column-lists .has-thumb a {
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
}

.post-wrap .column-lists .has-thumb .thumb {
  width: 210px;
  height: 200px;
}

.post-wrap .column-lists .has-thumb .thumb .img-eff {
  width: 100%;
  height: 100%;
  transition-duration: 0.3s;
}

.post-wrap .column-lists .has-thumb .post-area {
  width: 820px;
}

.post-wrap .column-lists .has-thumb .post-area .category-label {
  width: 705px;
}

.post-wrap .post-content {
  padding: 0 20px 5px 20px;
  box-sizing: border-box;
  text-align: left;
}

.post-wrap .post-content img {
  max-width: 100%;
}

/*----------------------------------
詳細ページのカテゴリー表示(タイトル下部)
----------------------------------*/
.single-meta {
  margin-bottom: 20px;
}

.single-meta time {
  font-size: 1.4rem;
  text-align: left;
  width: 95px;
  padding: 3px 0;
  box-sizing: border-box;
}

.single-meta .category-label {
  width: 920px;
  font-size: 1.4rem;
  gap: 5px;
  margin-left: 10px;
}

.single-meta .category-label li a {
  border: 1px solid var(--main-color);
  color: var(--main-color);
  padding: 3px 10px;
  display: block;
}

.single-meta .category-label li a:hover {
  opacity: 1;
  color: #fff;
  background: var(--main-color);
}

/*----------------------------------
詳細ページのカテゴリー表示(テキストエリア下部)
----------------------------------*/
.single-category {
  max-width: 250px;
  min-width: 150px;
  margin-top: 10px;
  margin-left: auto;
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  font-size: 10px;
}

.single-category dt {
  width: 80px;
}

.single-category dt:after {
  content: ":";
  padding: 0 5px;
}

.single-category dd {
  max-width: 170px;
  line-height: 2;
  min-width: 60px;
}

.single-category ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.single-category ul li {
  margin-right: 5px;
}

.single-category ul li:last-child {
  margin-right: 0;
}

.single-category ul li a {
  display: block;
  padding-left: 8px;
  position: relative;
}

.single-category ul li a:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  /* Safari用 */
  transform: translateY(-50%);
  z-index: 10;
  left: 0;
  content: "#";
}

.single-category ul li a:hover {
  background: #ccc;
}

/*==========================================
contact.php
===========================================*/
#contact {
  /* チェックボックス・ラジオボタン
    -------------------------------------------------- */
  /*==================================================
     日付選択フォーム
    ================================================== */
}

#contact .contact-form {
  width: 980px;
  margin: 0 auto 55px;
}

#contact .contact-form tr {
  display: block;
  text-align: left;
}

#contact .contact-form tr.privacy-check {
  text-align: center;
}

#contact .contact-form tr.privacy-check th,
#contact .contact-form tr.privacy-check td {
  text-align: center;
}

#contact .contact-form tr th,
#contact .contact-form tr td {
  display: block;
}

#contact .contact-form tr:has(.error-text) input,
#contact .contact-form tr:has(.error-text) textarea,
#contact .contact-form tr:has(.error-text) input[type=radio]+label::before,
#contact .contact-form tr:has(.error-text) input[type=checkbox]+label::before {
  background: #ffcfcf;
}

#contact .contact-form tr:has(.error-text) input:not(:placeholder-shown),
#contact .contact-form tr:has(.error-text) textarea:not(:placeholder-shown) {
  background: rgb(232, 240, 254);
}

#contact .contact-form tr:has(.error-text) input[type=radio]+label::before,
#contact .contact-form tr:has(.error-text) input[type=checkbox]:checked+label::before {
  background: #fff;
}

#contact .contact-form tr th {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
  text-align: left;
}

#contact .contact-form tr th em {
  color: #f00;
  font-weight: 500;
  padding: 3px;
  margin-left: 10px;
  vertical-align: baseline;
  font-size: 1.2rem;
}

#contact .contact-form tr td {
  width: 100%;
}

#contact .contact-form tr td li {
  list-style: none;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

#contact .contact-form tr td li:last-child {
  margin-right: 0;
}

#contact .contact-form .txtarea {
  width: 100%;
  font-size: 1.6rem;
  border: 1px solid #ccc;
  background: #fff;
  padding: 20px 15px;
  box-sizing: border-box;
  font-family: var(--main-font-family);
}

#contact .contact-form .contact-select {
  width: 200px;
  position: relative;
}

#contact .contact-form .contact-select::after {
  content: "";
  position: absolute;
  inset: 0 16px 0 auto;
  margin: auto 0;
  width: 8px;
  height: 8px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
}

#contact .contact-form .contact-select select {
  width: 100%;
  padding: 15px 30px 15px 10px;
  box-sizing: border-box;
  font-size: 1.6rem;
  font-family: var(--main-font-family);
  color: var(--font-color);
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 0;
}

#contact .contact-form #pc01,
#contact .contact-form #pc02 {
  width: 150px;
}

#contact .contact-form #date1,
#contact .contact-form #date2,
#contact .contact-form #date3 {
  width: 300px;
}

#contact .contact-form #address {
  margin-top: 15px;
}

#contact .contact-form textarea {
  height: 260px;
  line-height: 1.8;
}

#contact .contact-form .error-text {
  color: #ff0000;
  margin-bottom: 5px;
}

#contact .contact-form .upload-item-wrap #file01 {
  margin-bottom: 10px;
}

#contact .contact-form .upload-item-wrap .thumb {
  width: 200px;
  margin-right: 25px;
}

#contact .contact-form .upload-item-wrap .thumb img {
  max-width: 100%;
}

#contact .contact-form .upload-item-wrap .ancion-btn-wrap {
  width: 130px;
}

#contact .contact-form .upload-item-wrap .ancion-btn-wrap .ancion-btn,
#contact .contact-form .upload-item-wrap .ancion-btn-wrap .upload-button {
  width: 100%;
  border-radius: 5px;
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
  padding: 5px;
  display: block;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#contact .contact-form .upload-item-wrap .ancion-btn-wrap .ancion-btn:hover,
#contact .contact-form .upload-item-wrap .ancion-btn-wrap .upload-button:hover {
  filter: alpha(opacity=60);
  opacity: 0.6;
}

#contact .contact-form .upload-item-wrap .ancion-btn-wrap .upload-button {
  margin-bottom: 5px;
  background: var(--main-color);
}

#contact .contact-form .upload-item-wrap .ancion-btn-wrap p {
  background: var(--accent-color);
}

#contact .contact-form .upload-item-wrap .ancion-btn-wrap .select-file,
#contact .contact-form .upload-item-wrap .ancion-btn-wrap input {
  display: none !important;
}

#contact .contact-form .upload-item-wrap .ancion-btn-wrap input#file-upload-button {
  background: var(--accent-color);
}

#contact .g-recaptcha div {
  margin: 0 auto 40px auto;
}

#contact input[type=button][disabled],
#contact input[type=submit][disabled] {
  opacity: 0.3;
  pointer-events: none;
}

#contact input[type=button],
#contact input[type=submit],
#contact .contact-submits-wrap button {
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 1.6rem;
  color: #fff;
  background: var(--main-color);
  height: 75px;
  box-sizing: border-box;
  font-family: var(--main-font-family);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid var(--main-color);
  color: #fff;
  border-radius: 0;
}

#contact input[type=button]:hover,
#contact input[type=submit]:hover,
#contact .contact-submits-wrap button:hover {
  background: var(--main-color);
  cursor: pointer;
  color: #fff;
  filter: alpha(opacity=100);
  opacity: 1;
}

#contact .check-btn {
  width: 304px;
  margin: 0 auto;
}

#contact .contact-submits-wrap .back-btn {
  width: 270px;
  margin: 0 auto;
  margin-right: 40px;
  background: #fff;
  color: var(--main-color);
}

#contact .contact-submits-wrap .send-btn {
  width: 240px;
  margin: 0 auto;
}

#contact .check-btn:hover,
#contact .back-btn:hover,
#contact .send-btn:hover {
  transform: scale(0.95);
}

#contact .privacy-agree {
  text-decoration: underline;
}

#contact input[type=radio],
#contact input[type=checkbox] {
  display: inline-block;
  margin-right: 6px;
}

#contact input[type=radio]+label,
#contact input[type=checkbox]+label {
  position: relative;
  display: inline-block;
  margin-right: 12px;
  line-height: 30px;
  cursor: pointer;
}

#contact input[type=radio],
#contact input[type=checkbox] {
  display: none;
  margin: 0;
}

#contact input[type=radio]+label,
#contact input[type=checkbox]+label {
  margin-bottom: 5px;
  padding: 0 0 0 24px;
}

#contact input[type=radio]+label::before,
#contact input[type=checkbox]+label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  background: #fff;
}

#contact input[type=radio]+label::before {
  border: 2px solid #ccc;
  border-radius: 30px;
}

#contact input[type=checkbox]+label::before {
  border: 2px solid #ccc;
}

#contact input[type=radio]:checked+label::after,
#contact input[type=checkbox]:checked+label::after {
  content: "";
  position: absolute;
  top: 50%;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
}

#contact input[type=radio]:checked+label::after {
  left: 5px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  background: #e74c3c;
  border-radius: 8px;
}

#contact input[type=checkbox]:checked+label::after {
  left: 3px;
  width: 16px;
  height: 8px;
  margin-top: -8px;
  border-left: 3px solid #e74c3c;
  border-bottom: 3px solid #e74c3c;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#contact .date-list {
  padding-left: inherit;
}

#contact .date-list li {
  list-style: none;
  margin-bottom: 15px;
}

#contact .date-list li p {
  margin-bottom: 5px;
}

.complete-box p a {
  text-decoration: underline;
}

/*==========================================
privacy.php
===========================================*/
#privacy .privacy-box {
  margin-bottom: 70px;
  text-align: left;
}

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

#privacy .privacy-box p {
  margin-bottom: 30px;
}

#privacy .privacy-box p:last-child {
  margin-bottom: 0;
}

#privacy .privacy-box ul {
  margin-top: 30px;
}

/*==========================================
プライバシーポリシー(LPフレーム時)
===========================================*/
/*==========================================
404.php
===========================================*/
#err-cont .txt-blc a {
  text-decoration: underline;
}