@charset "UTF-8";
/*==========================================
コンポーネントファイル
===========================================*/
/*
# パンくずリスト
------------------------*/
div .bread {
  font-size: var(--font-size-14);
  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(--primary-color);
  position: relative;
}
div .bread li::after {
  content: " > ";
  color: var(--body-font-color);
  position: absolute;
  inset: 0 -15px 0 auto;
  margin: auto 0;
}
div .bread li:last-child::after {
  content: "";
}
div .bread li a {
  color: var(--body-font-color);
}
div .bread li a:hover {
  text-decoration: underline;
}

/*
# 一覧ぺージ用カテゴリ(セレクトボックス)
------------------------*/
.global-select {
  width: 300px;
  margin: 0 0 45px auto;
}
.global-select select {
  padding: 15px 37px 15px 15px;
}

/*
# c-contact__list
------------------------*/
.c-contact__list {
  gap: 5px 10px;
}
.c-contact__list .com-tel {
  line-height: 1.25;
}
.c-contact__list .tel__num {
  font-size: var(--font-size-27);
  letter-spacing: 0;
}
.c-contact__list .tel__num small {
  font-size: var(--font-size-17);
}
.c-contact__list .mail__button {
  width: 210px;
  height: 60px;
  font-size: var(--font-size-20);
  background: var(--primary-color);
  padding: 0 15px 0 45px;
  letter-spacing: 0;
  border: 1px solid var(--primary-color);
}
.c-contact__list .mail__button::before {
  position: absolute;
  content: "";
  width: 23px;
  height: 15px;
  background-color: var(--color-white);
  -webkit-mask: url(/img/common/mail_ic.png) center/100% no-repeat;
          mask: url(/img/common/mail_ic.png) center/100% no-repeat;
  inset: 0 auto 0 25px;
  margin: auto 0;
  z-index: 1;
}
.c-contact__list .mail__button:hover {
  background: var(--color-white);
  color: var(--primary-color);
}
.c-contact__list .mail__button:hover::before {
  background-color: var(--primary-color);
}

/*
# c-address
------------------------*/
.c-address .address__item {
  letter-spacing: 0;
  font-size: var(--font-size-17);
}
.c-address .address__item dt {
  width: 105px;
}

/*
# c-contact__section
------------------------*/
.c-contact__section {
  margin: 45px auto;
  background: url(../img/common/contact_bg.jpg) center/cover no-repeat;
  padding: 70px 0;
}
.c-contact__section .contact__inbox {
  width: 720px;
  margin: 0 auto;
  padding: 50px 25px 75px;
  background: rgba(var(--body-background-rgb), 0.95);
}
.c-contact__section .contact__inbox .contact__title {
  margin-bottom: 30px;
}
.c-contact__section .contact__inbox .contact__text {
  font-size: var(--font-size-18);
  margin-bottom: 25px;
}
.c-contact__section .contact__inbox .contact__contact-list {
  justify-content: center;
  gap: 15px 25px;
}
.c-contact__section .contact__inbox .contact__contact-list .tel__num {
  font-size: var(--font-size-34);
}
.c-contact__section .contact__inbox .contact__contact-list .tel__num small {
  font-size: var(--font-size-17);
}
.c-contact__section .contact__inbox .contact__contact-list .mail__button {
  height: 60px;
  width: 260px;
}
.c-contact__section .contact__inbox .contact__contact-list .mail__button::before {
  left: 18%;
}

/*
# c-achievements__list
------------------------*/
.c-achievements__list .achievements__item {
  width: 340px;
}
.c-achievements__list .achievements__item-img {
  width: 100%;
  height: 320px;
  margin-bottom: 10px;
}
.c-achievements__list .achievements__item-title {
  font-size: var(--font-size-20);
}
.c-achievements__list .achievements__item-button {
  width: 210px;
  min-height: 45px;
  bottom: -22.5px;
}

/*==========================================
テーブルレイアウト
===========================================*/
.com-table tr {
  display: flex;
  padding: 20px 0;
}
.com-table tr th {
  padding: 0 10px;
  width: 150px;
  vertical-align: top;
}
.com-table tr td {
  width: calc(100% - 150px);
  padding: 0 20px;
}
.com-table tr td a[href^="mailto:"] {
  text-decoration: underline;
}
.com-table tr td .tel__text {
  display: block;
  line-height: 1.3;
}

/*==========================================
共通ブロック・要素
===========================================*/
.com-content p {
  margin-bottom: 35px;
}

.com-text.align-center {
  text-align: center;
}

#g-map .map {
  height: 400px;
}

/*
# com-button
------------------------*/
.com-button {
  min-height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  background: var(--primary-color);
  font-size: var(--font-size-16);
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  transition-property: color;
  transition-duration: 0.3s;
}
.com-button:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-black-light);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.com-button:hover, .com-button:focus, .com-button:active {
  color: var(--color-white);
  filter: alpha(opacity=100);
  opacity: 1;
}
.com-button:hover:before, .com-button:focus:before, .com-button:active:before {
  transform: scaleX(1);
}
.com-button.bg-color-black-light {
  background: var(--color-black-light);
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  transition-property: color;
  transition-duration: 0.3s;
}
.com-button.bg-color-black-light:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.com-button.bg-color-black-light:hover, .com-button.bg-color-black-light:focus, .com-button.bg-color-black-light:active {
  color: var(--primary-color);
  filter: alpha(opacity=100);
  opacity: 1;
}
.com-button.bg-color-black-light:hover:before, .com-button.bg-color-black-light:focus:before, .com-button.bg-color-black-light:active:before {
  transform: scaleX(1);
}
.com-button.bg-color-black-light {
  border: 1px solid var(--color-black-light);
}

/*
# has-arrow
------------------------*/
.bs-icon--caret-right-fill {
  padding-left: 30px;
}
.bs-icon--caret-right-fill::before {
  inset: 0 auto 0 0;
  width: 19px;
  height: 19px;
  color: var(--color-white);
  background: var(--color-black-light);
  font-size: 0.8rem;
}

/*
# com-grid3
------------------------*/
.com-grid3 {
  gap: 85px 30px;
}
.com-grid3 .grid-item {
  width: 340px;
  padding: 10px 10px 45px;
}
.com-grid3 .grid-item .com-button {
  position: absolute;
  inset: auto 0 -27.5px;
  width: 280px;
  margin: 0 auto;
}

/*==========================================
共通タイトル
===========================================*/
.section-title {
  text-align: center;
  line-height: 1.6;
  margin-bottom: 50px;
}
.section-title span {
  font-weight: var(--font-weight-bold);
  display: block;
}
.section-title .title-ja {
  font-size: var(--font-size-38);
}
.section-title .title-ja small {
  font-size: var(--font-size-34);
}
.section-title .title-en {
  font-size: var(--font-size-20);
  color: var(--primary-color);
  font-family: var(--font-secondary);
}

.headline-title {
  font-size: var(--font-size-24);
  font-weight: var(--font-weight-bold);
  border-bottom: 1px solid var(--color-gray);
  line-height: 1.5833333333;
  padding-bottom: 5px;
  margin-bottom: 15px;
}

/*==========================================
header
===========================================*/
#top-page #header {
  background: none;
  inset: 0 0 auto;
  z-index: 1001;
  position: absolute;
}

#header {
  padding-left: 10px;
}
#header .header__logo {
  line-height: 1;
}
#header .header__right {
  width: 765px;
}
#header .header__nav {
  margin-top: 13px;
  padding-right: 15px;
}
#header .header__nav-list {
  gap: 10px 45px;
}
#header .header__nav-link {
  font-size: var(--font-size-17);
  letter-spacing: 0;
  /*==========================================
  hover時に中央から外側に向けてのボーダー
  ===========================================*/
  padding-bottom: 3px;
  display: block;
  position: relative;
}
#header .header__nav-link::before, #header .header__nav-link::after {
  content: "";
  width: 0;
  bottom: 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--primary-color);
  position: absolute;
  display: block;
}
#header .header__nav-link::before {
  left: 50%;
}
#header .header__nav-link:after {
  right: 50%;
}
#header .header__nav-link:hover {
  color: var(--primary-color);
}
#header .header__nav-link:hover::before, #header .header__nav-link:hover::after {
  width: 50%;
  border-bottom: 1px solid var(--primary-color);
}
#header .header__nav-link.current {
  border-bottom: 1px solid var(--primary-color);
  color: var(--primary-color);
}
#header .header__nav-link.current::before, #header .header__nav-link.current::after {
  border-bottom: none;
}
#header .header__nav-link.current:hover::before, #header .header__nav-link.current:hover::after {
  border-bottom: none;
}

/*==========================================
mv
===========================================*/
#top-mv {
  height: clamp(613px, 47.916vw, 920px);
  background: url(../img/top/mv/mv_bg.jpg) center/cover no-repeat;
}
#top-mv .mv__catch {
  inset: auto auto 8.1521% 3.6458%;
  width: 40.625%;
}

/*==========================================
footer
===========================================*/
#footer .footer__inbox {
  padding: 55px 0 30px;
}
#footer .footer__logo {
  width: 161px;
  margin: 0 auto 35px;
  filter: brightness(5.5);
}
#footer .footer__headline {
  border-bottom: 1px solid var(--color-white);
  padding-bottom: 35px;
}
#footer .footer__address {
  width: 470px;
}
#footer .footer__contact-list {
  width: 515px;
}
#footer .footer__contact-list .com-tel .tel__num {
  color: var(--color-white);
}
#footer .footer__contact-list .com-tel .tel__num small {
  color: var(--color-white);
}
#footer .footer__contact-list .mail__button {
  background: var(--color-white);
  color: var(--primary-color);
  border: 1px solid var(--color-white);
}
#footer .footer__contact-list .mail__button::before {
  background-color: var(--primary-color);
}
#footer .footer__contact-list .mail__button:hover {
  background: var(--primary-color);
  color: var(--color-white);
}
#footer .footer__contact-list .mail__button:hover::before {
  background-color: var(--color-white);
}
#footer .footer__nav {
  padding: 25px 0 0;
}
#footer .footer__nav-link {
  padding: 0 22px;
  font-size: var(--font-size-14);
  letter-spacing: 0;
}
#footer .footer__nav-link:hover {
  text-decoration: underline;
}
#footer .footer__nav-item::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 14px;
  background: var(--color-white);
  inset: 0 auto 0 0;
  margin: auto 0;
}
#footer .footer__nav-item:first-child::before {
  background: none;
}
#footer .footer__nav-item:first-child .footer__nav-link {
  padding-left: 0;
}
#footer .footer__nav-item:last-child .footer__nav-link {
  padding-right: 0;
}

#copyright {
  word-break: normal;
  text-align: center;
  padding: 10px 0;
}
#copyright small {
  font-size: var(--font-size-12);
}

/*==========================================
ページトップ
===========================================*/
.pagetop {
  position: fixed;
  bottom: 8%;
  right: 3%;
  z-index: 999;
}

/*==========================================
sv
===========================================*/
.lower-sv {
  height: 380px;
}
.lower-sv .sv__title {
  font-size: var(--font-size-50);
  line-height: 1.35;
  padding: 0 20px;
}
.lower-sv .sv__title span {
  background: url(../img/sv/sv-ttl_bg.png) center/cover no-repeat;
  -webkit-background-clip: text;
  color: transparent;
}

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

#achievements-sv {
  background: url(../../img/sv/achievements-sv_bg.jpg) center/cover no-repeat;
}

#about-sv {
  background: url(../../img/sv/about-sv_bg.jpg) center/cover no-repeat;
}

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

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

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

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

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

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

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

/*==========================================
top
===========================================*/
/*
# top-about
------------------------*/
#top-about {
  margin: 40px auto 70px;
  background: url(../img/top/about_bg.jpg) center/cover no-repeat;
  padding: 65px 0 90px;
}
#top-about .about__inbox {
  padding: 50px 15px;
  background: rgba(var(--body-background-rgb), 0.95);
}
#top-about .about__title {
  margin-bottom: 30px;
}
#top-about .about__text {
  font-size: var(--font-size-18);
  line-height: 2.0555555556;
}

/*
# top-services
------------------------*/
#top-services {
  padding: 0 0 125px;
  border-bottom: 1px solid var(--color-gray);
}
#top-services .service__item-img {
  width: 100%;
  height: 360px;
  margin-bottom: 10px;
}
#top-services .service__item-text {
  font-size: var(--font-size-24);
  line-height: 1.5833333333;
  letter-spacing: 0;
}
#top-services .service__item-text small {
  font-size: var(--font-size-18);
}

/*
# top-works
------------------------*/
#top-works {
  padding: 50px 0 80px;
}
#top-works .works__list {
  gap: 5px 0.2174%;
}
#top-works .works__item {
  width: 49.8913%;
}
#top-works .works__item .works__link {
  height: clamp(200px, 17.708vw, 340px);
  z-index: 1;
  overflow: hidden;
}
#top-works .works__item .works__link::before, #top-works .works__item .works__link::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  inset: 0;
}
#top-works .works__item .works__link::after {
  background: url(../img/top/work-large_filter.png) center/cover no-repeat;
}
#top-works .works__item .works__link:hover::before {
  transform: scale(1.1);
}
#top-works .works__item .works__link-text {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: var(--font-size-32);
  inset: auto 0 20px;
  text-align: center;
}
#top-works .works__item .works__link-text small {
  line-height: 1;
  font-size: var(--font-size-24);
}
#top-works .works__item--use .works__link::before {
  background: url(../img/top/works-use_large_img.jpg) center/cover no-repeat;
}
#top-works .works__item--maintenance .works__link::before {
  background: url(../img/top/works-maintenance_large_img.jpg) center/cover no-repeat;
}
#top-works .works__item--felling .works__link::before {
  background: url(../img/top/works-felling_large_img.jpg) center/cover no-repeat;
}
#top-works .works__item--dispose .works__link::before {
  background: url(../img/top/works-dispose_large_img.jpg) center/cover no-repeat;
}
#top-works .works__item--pruning .works__link::before {
  background: url(../img/top/works-pruning_large_img.jpg) center/cover no-repeat;
}

/*
# top-achievements
------------------------*/
#top-achievements {
  padding: 75px 0 95px;
}
#top-achievements .achievements__inbox {
  position: relative;
  min-height: 320px;
}
#top-achievements .achievements__left {
  width: 270px;
}
#top-achievements .achievements__title {
  margin-bottom: 30px;
  text-align: left;
}
#top-achievements .achievements__title .title-en {
  color: var(--color-white);
}
#top-achievements .achievements__text {
  font-size: var(--font-size-17);
}
#top-achievements .c-achievements__list {
  width: 780px;
  gap: 15px;
}
#top-achievements .c-achievements__list .achievements__item {
  width: 250px;
}
#top-achievements .c-achievements__list .achievements__item-img {
  height: 230px;
}
#top-achievements .c-achievements__list .achievements__item-button {
  width: 210px;
  min-height: 45px;
  bottom: -22.5px;
}
#top-achievements .achievements__button {
  width: 250px;
  inset: auto auto 35px 0;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  transition-property: color;
  transition-duration: 0.3s;
}
#top-achievements .achievements__button:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
#top-achievements .achievements__button:hover, #top-achievements .achievements__button:focus, #top-achievements .achievements__button:active {
  color: var(--primary-color);
  filter: alpha(opacity=100);
  opacity: 1;
}
#top-achievements .achievements__button:hover:before, #top-achievements .achievements__button:focus:before, #top-achievements .achievements__button:active:before {
  transform: scaleX(1);
}
#top-achievements .achievements__button {
  position: absolute;
}

/*
# top-links
------------------------*/
.top-links {
  padding: 80px 0;
  background: url(../img/top/links_bg.jpg) center/cover no-repeat;
}
.top-links .links__list {
  gap: 45px 30px;
}
.top-links .links__item {
  width: 340px;
  text-align: center;
  font-size: var(--font-size-30);
}
.top-links .links__item--about .links__button::before {
  background: url(../img/top/links-about_ic.png) center no-repeat;
}
.top-links .links__item--faq .links__button::before {
  background: url(../img/top/links-faq_ic.png) center no-repeat;
}
.top-links .links__item--contact {
  font-size: var(--font-size-24);
}
.top-links .links__item--contact .links__button::before {
  background: url(../img/common/mail_ic.png) center no-repeat;
}
.top-links .links__button {
  height: 160px;
  padding: 90px 10px 20px;
}
.top-links .links__button::before {
  position: absolute;
  content: "";
  width: 66px;
  height: 51px;
  margin: 0 auto;
  inset: 30px 0 auto;
  z-index: 1;
}
.top-links .links__button:hover {
  transform: translateY(-10px);
}
.top-links .links__button span rt {
  font-size: var(--font-size-12);
}

/*
# top-news
------------------------*/
#top-news {
  padding: 135px 0 110px;
}
#top-news .news__inbox {
  position: relative;
  min-height: 305px;
}
#top-news .news__title {
  border-bottom: 40px;
  padding-bottom: 10px;
  text-align: left;
  border-bottom: 2px solid var(--color-gray);
  line-height: 1.3;
}
#top-news .news__title::before {
  position: absolute;
  content: "";
  width: 80px;
  height: 2px;
  background: var(--primary-color);
  inset: auto auto -2px 0;
}
#top-news .news__title .title-ja {
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-46);
}
#top-news .news__post-list {
  padding: 0 20px;
}
#top-news .news__post {
  border-bottom: 1px solid var(--color-gray);
}
#top-news .news__post-link {
  padding: 20px 0;
  row-gap: 10px;
}
#top-news .news__post-link:hover {
  transform: translateX(10px);
}
#top-news .news__post-link:hover .news__post-title {
  text-decoration: underline;
}
#top-news .news__post:last-child {
  border-bottom: none;
}
#top-news .news__post-thumb {
  width: 140px;
  height: 120px;
}
#top-news .news__post-meta {
  width: 880px;
}
#top-news .news__post-date {
  font-size: var(--font-size-16);
  width: 100px;
}
#top-news .news__post-tags {
  width: calc(100% - 105px);
  gap: 7px;
}
#top-news .news__post-tags .news__post-tag {
  font-size: var(--font-size-16);
  padding: 0 10px;
}
#top-news .news__post-tags .news__post-tag::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 15px;
  background: var(--body-font-color);
  inset: 0 auto 0 0;
  margin: auto 0;
}
#top-news .news__post-title {
  font-size: var(--font-size-16);
}
#top-news .news__button {
  width: 210px;
  position: absolute;
  inset: 20px 0 auto auto;
}

/*==========================================
works
===========================================*/
/*
# works-archive
------------------------*/
#works-archive {
  padding-bottom: 120px;
}
#works-archive .works__img {
  width: 100%;
  height: 340px;
}
#works-archive .works__part {
  padding-bottom: 120px;
  margin-bottom: 120px;
  border-bottom: 2px solid var(--color-gray);
}
#works-archive .works__part:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
#works-archive .works__part-title {
  font-size: var(--font-size-30);
  margin: -57px 0 25px;
  position: relative;
  z-index: 1;
}
#works-archive .works__part-title span {
  padding: 5px 10px;
}
#works-archive .works__part-title small {
  font-size: var(--font-size-20);
}
#works-archive .works__part-text {
  margin-bottom: 80px;
}
#works-archive .works__part-list .works__list-item {
  width: 520px;
  padding: 50px 30px 30px;
}
#works-archive .works__part-list .works__item-title {
  position: absolute;
  inset: -29px 0 auto;
  width: 280px;
  margin: 0 auto;
  font-size: var(--font-size-24);
  text-align: center;
  padding: 5px 10px;
}
#works-archive .works__part-list .works__text-item {
  padding-left: 20px;
}
#works-archive .works__part-list .works__text-item::before {
  position: absolute;
  content: "";
  width: 13px;
  height: 13px;
  background: var(--primary-color);
  inset: 0 auto 0 0;
  margin: auto 0;
}

/*==========================================
achievements
===========================================*/
/*
# achievements-archive
------------------------*/
#achievements-archive .achievements__tags {
  margin-bottom: 95px;
  gap: 30px;
}
#achievements-archive .achievements__tags .achievements__tag {
  width: 340px;
}
#achievements-archive .achievements__item-title {
  border-bottom: 2px solid var(--color-gray);
  margin-bottom: 10px;
  padding-bottom: 5px;
}

/*
# achievements-single
------------------------*/
#achievements-single .achievements__img {
  text-align: center;
  max-width: 570px;
  margin: 0 auto 40px;
}

/*==========================================
about
===========================================*/
/*
# about-msg
------------------------*/
#about-msg {
  padding: 160px 0 110px;
}
#about-msg .msg__inbox {
  position: relative;
}
#about-msg .msg__img {
  position: absolute;
  inset: 0 auto auto 0;
}
#about-msg .msg__title {
  text-align: left;
  margin-bottom: 30px;
}
#about-msg .msg__content {
  width: 625px;
  margin-left: auto;
  min-height: 520px;
}

/*
# about-concept
------------------------*/
#about-concept {
  padding: 70px 0 90px;
  background: url(../img/about/concept_bg.jpg) center/cover no-repeat;
}
#about-concept .concept__inbox {
  padding: 50px 15px 55px;
  background: rgba(var(--body-background-rgb), 0.95);
}
#about-concept .concept__title {
  margin-bottom: 30px;
}
#about-concept .concept__text span {
  font-size: var(--font-size-24);
}

/*
# about-company
------------------------*/
#about-company .company__inbox {
  padding: 85px 0 100px;
}
#about-company .company__table {
  padding: 15px 20px;
}

/*==========================================
faq
===========================================*/
#faq-archive .faq__text {
  font-size: var(--font-size-18);
  margin-bottom: 65px;
}
#faq-archive .faq__part {
  margin-bottom: 120px;
}
#faq-archive .faq__part:last-child {
  margin-bottom: 0;
}
#faq-archive .faq__part-title {
  font-size: var(--font-size-38);
  text-align: center;
  margin-bottom: 40px;
  background: url(../img/faq/faq-ttl_bg.png) center/cover no-repeat;
}
#faq-archive .faq__part .faq__item {
  padding: 25px;
  margin-bottom: 35px;
}
#faq-archive .faq__part .faq__item:last-child {
  margin-bottom: 0;
}
#faq-archive .faq__part .faq__item-title, #faq-archive .faq__part .faq__item-content {
  padding-left: 55px;
}
#faq-archive .faq__part .faq__item-title::before, #faq-archive .faq__part .faq__item-content::before {
  position: absolute;
}
#faq-archive .faq__part .faq__item-title {
  font-size: var(--font-size-24);
  margin-bottom: 15px;
}
#faq-archive .faq__part .faq__item-title span {
  border-bottom: 2px solid var(--color-gray);
}
#faq-archive .faq__part .faq__item-title::before {
  content: "Q";
  width: 45px;
  height: 45px;
  color: var(--color-white);
  background: var(--color-black-light);
  text-align: center;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  line-height: 1.8;
  inset: 0 auto auto 0;
}
#faq-archive .faq__part .faq__item-content::before {
  content: "A";
  font-size: var(--font-size-24);
  color: var(--primary-color);
  inset: 0 auto auto 13px;
  line-height: 1.3;
}

/*==========================================
news
===========================================*/
.column__wrap .column__list .column__post a {
  padding: 45px 0;
}
.column__wrap .column__list .column__post-meta time {
  width: 95px;
}
.column__wrap .column__list .column__post-meta time,
.column__wrap .column__list .column__post-meta .category-label {
  font-size: var(--font-size-14);
}
.column__wrap .column__list .column__post-meta .category-label {
  width: calc(100% - 115px);
  gap: 5px;
}
.column__wrap .column__list .column__post-meta .category-label li {
  padding: 2px 10px;
}
.column__wrap .column__list .column__post-title {
  font-size: var(--font-size-23);
  margin: 10px 0;
}
.column__wrap .column__list .more-btn {
  width: 125px;
  font-size: var(--font-size-14);
  margin: inherit;
  margin-left: auto;
  font-weight: bold;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  box-sizing: border-box;
  padding: 5px 0;
  display: block;
  color: var(--color-white);
  transition: all 0.3s;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) a {
  /*==========================================
  Flexbox
  ===========================================*/
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-thumb {
  width: 210px;
  height: 200px;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-thumb .img-eff {
  width: 100%;
  height: 100%;
  transition-duration: 0.3s;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-meta {
  width: 820px;
}

/*----------------------------------
  詳細ページのカテゴリー表示(タイトル下部)
  ----------------------------------*/
.single__post-meta {
  margin-bottom: 20px;
}
.single__post-meta time {
  font-size: var(--font-size-14);
  width: 95px;
  padding: 3px 0;
}
.single__post-meta .category-label {
  width: calc(100% - 95px);
  font-size: var(--font-size-14);
  gap: 5px;
  margin-left: 10px;
}
.single__post-meta .category-label li a {
  padding: 3px 10px;
}

/*==========================================
  contact
  ===========================================*/
#contact .contact__text {
  font-size: var(--font-size-18);
  margin-bottom: 55px;
}
#contact .contact__form {
  width: 980px;
  margin: 0 auto 55px;
}
#contact .contact__form-item .contact__form-label .required {
  margin-left: 10px;
}
#contact .contact__form-item .contact__form-input {
  padding: 15px 0;
}
#contact .contact__form-item .contact__form-input .contact__form-list {
  gap: 15px;
}
#contact .contact__form-item.contact__form-privacy .contact__form-label {
  text-align: center;
}
#contact .contact__form-value {
  padding: 20px 15px;
}
#contact .contact__form-select {
  width: 200px;
}
#contact .contact__form-select::after {
  inset: 0 16px 0 auto;
  width: 8px;
  height: 8px;
}
#contact .contact__form-select select {
  padding: 15px 30px 15px 10px;
}
#contact .contact__form #pc01,
#contact .contact__form #pc02 {
  width: 150px;
}
#contact .contact__form #address {
  margin-top: 15px;
}
#contact .contact__form #date1,
#contact .contact__form #date2,
#contact .contact__form #date3 {
  width: 300px;
}
#contact .contact__form textarea {
  height: 260px;
}
#contact .contact__form .upload-item-wrap .thumb {
  width: 200px;
  margin-right: 25px;
}
#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 {
  font-size: var(--font-size-13);
}
#contact input[type=button],
#contact input[type=submit],
#contact .contact__submits-wrap button {
  height: 75px;
}
#contact .contact__submits-wrap {
  gap: 35px;
}
#contact .contact__submits-wrap .contact__submits-check {
  width: 304px;
}
#contact .contact__submits-wrap .contact__submits-back {
  width: 270px;
}
#contact .contact__submits-wrap .contact__submits-send {
  width: 240px;
}

/*==========================================
  privacy
  ===========================================*/
#privacy .privacy__content {
  margin-bottom: 70px;
}
#privacy .privacy__content:last-child {
  margin-bottom: 0;
}

/*==========================================
  site
  ===========================================*/
#site-map .sitemap__item-link {
  padding: 2% 0 2% 3%;
}

/*==========================================
  プライバシーポリシー(LPフレーム時)
  ===========================================*/