@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(--color-gray-light);
  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(--color-gray-light);
}
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 {
  width: 300px;
  display: flex;
  flex-direction: column;
}
.c-contact__list .contact__item-tel {
  width: 100%;
  line-height: 1.1;
}
.c-contact__list .contact__item-tel .tel__num {
  letter-spacing: var(--body-letter-spacing);
  font-size: var(--font-size-24);
}
.c-contact__list .contact__item-tel .tel__num small {
  font-size: var(--font-size-16);
  margin-right: 5px;
}
.c-contact__list .contact__item-worktime {
  width: 100%;
  font-size: var(--font-size-12);
  gap: 5px 10px;
}
.c-contact__list .contact__item-worktime .worktime__item {
  width: -moz-fit-content;
  width: fit-content;
  letter-spacing: 0.12em;
}
.c-contact__list .contact__item-worktime .worktime__item-title {
  position: relative;
  padding-right: 8px;
  margin-right: 8px;
}
.c-contact__list .contact__item-worktime .worktime__item-title::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 13px;
  transform: rotate(25deg);
  inset: 0 0 0 auto;
  margin: auto 0;
  background: var(--accent-color);
}

/*
# c-info__list
------------------------*/
.c-info__list {
  gap: 25px 10px;
}

.c-info__item-button {
  border: 1px solid;
  width: 150px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-14);
  position: relative;
}
.c-info__item-button::before {
  font-size: var(--font-size-10);
  inset: 0 3% 0 auto;
}
.c-info__item-button:hover {
  opacity: 1;
  background: var(--color-white);
  color: var(--color-gray-dark);
}
.c-info__item .sns-icon {
  margin-left: 25px;
}

/*==========================================
テーブルレイアウト
===========================================*/
.com-table tr {
  display: flex;
}
.com-table tr th {
  padding: 20px 10px;
  width: 220px;
  vertical-align: top;
}
.com-table tr td {
  width: calc(100% - 220px);
  padding: 20px 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: 30px;
}

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

/*
# .com-button
------------------------*/
.com-button {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  padding-right: 70px;
}
.com-button::before, .com-button::after {
  position: absolute;
  content: "";
  background: var(--accent-color);
  height: 1px;
  z-index: 1;
}
.com-button::before {
  width: 50px;
  margin: auto 0;
  inset: 0 0 0 auto;
}
.com-button::after {
  width: 10px;
  transform: rotate(35deg);
  inset: 0 0 7px auto;
  margin: auto 0;
}
.com-button:hover {
  text-decoration: underline;
}
.com-button:hover::before, .com-button:hover::after {
  right: -10px;
}

/*==========================================
共通タイトル
===========================================*/
.section-title {
  text-align: center;
  font-size: var(--font-size-40);
  position: relative;
  line-height: 1.5;
  padding-bottom: 20px;
  margin-bottom: 50px;
  letter-spacing: 0.12em;
}
.section-title::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 1px;
  inset: auto 0 0;
  margin: 0 auto;
  background: var(--accent-color);
}

.headline-title {
  font-size: var(--font-size-28);
  border-bottom: 1px solid var(--accent-color);
  padding-bottom: 5px;
  margin-bottom: 20px;
  letter-spacing: 0.12em;
}

/*==========================================
header
===========================================*/
#header {
  padding: 15px 2.34375% 10px 2.5854%;
  position: fixed;
  z-index: 1001;
  width: 100%;
  inset: 0 0 auto;
  background: var(--body-background);
}
#header .header__logo {
  line-height: 1;
}
#header .header__logo img {
  vertical-align: super;
}
#header .header__right {
  width: -moz-fit-content;
  width: fit-content;
}
#header .header__info-list {
  width: -moz-fit-content;
  width: fit-content;
}
#header .header__contact-list {
  flex-direction: column-reverse;
}
#header .header__nav {
  margin-top: 10px;
}
#header .header__nav-item {
  position: relative;
}
#header .header__nav-item::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 10px;
  inset: 0 0 0 auto;
  margin: auto 0;
  background: var(--accent-color);
  transform: rotate(25deg);
}
#header .header__nav-item:first-child .header__nav-link {
  padding-left: 0;
}
#header .header__nav-item:last-child::after {
  background: none;
}
#header .header__nav-item:last-child .header__nav-link {
  padding-right: 0;
}
#header .header__nav-link {
  padding: 0 26px;
  display: block;
  font-size: var(--font-size-14);
}
#header .header__nav-link span {
  transition: all 0.3s ease;
  /*==========================================
  hover時に中央から外側に向けてのボーダー
  ===========================================*/
  padding-bottom: 3px;
  display: block;
  position: relative;
}
#header .header__nav-link span::before, #header .header__nav-link span::after {
  content: "";
  width: 0;
  bottom: 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--accent-color);
  position: absolute;
  display: block;
}
#header .header__nav-link span::before {
  left: 50%;
}
#header .header__nav-link span:after {
  right: 50%;
}
#header .header__nav-link span:hover {
  color: var(--accent-color);
}
#header .header__nav-link span:hover::before, #header .header__nav-link span:hover::after {
  width: 50%;
  border-bottom: 1px solid var(--accent-color);
}
#header .header__nav-link.current span {
  color: var(--accent-color);
  border-bottom: 1px solid;
}
#header .header__nav-link.current span::before, #header .header__nav-link.current span::after {
  border-bottom: none;
}
#header .header__nav-link.current span:hover::before, #header .header__nav-link.current span:hover::after {
  border-bottom: none;
}

/*==========================================
mv
===========================================*/
#top-mv {
  height: clamp(543px, 42.4475vw, 815px);
  padding: 0 2.34375%;
  position: relative;
  margin-top: 117px;
  /*==========================================
  メインビジュアル(スライダー)
  ===========================================*/
}
#top-mv .mv__catch {
  position: absolute;
  inset: auto auto 0 7.552%;
  writing-mode: vertical-rl;
  text-orientation: upright;
  padding: 6.5% 2.5%;
  height: 100%;
}
#top-mv .mv__catch::before, #top-mv .mv__catch::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 276px;
  background: var(--color-white);
}
#top-mv .mv__catch::before {
  left: 0;
  bottom: 0;
}
#top-mv .mv__catch::after {
  right: 0;
  top: 0;
}
#top-mv .mv__catch span,
#top-mv .mv__catch small {
  display: block;
  letter-spacing: 0.12em;
}
#top-mv .mv__catch span {
  font-size: clamp(2.85rem, 2.09vw, 4rem);
  text-align: left;
}
#top-mv .mv__catch small {
  font-size: clamp(1.8rem, 1.406vw, 2.7rem);
  text-align: right;
}
#top-mv .mv__visual-wrap {
  width: 79.2349%;
  margin-left: auto;
  height: 100%;
}
#top-mv #mv__slider {
  height: clamp(543px, 42.4475vw, 815px);
  position: relative;
}
#top-mv #mv__slider li {
  height: 100%;
}
#top-mv #mv__slider li:nth-child(1) {
  background: url(../img/top/mv/slide01_bg.jpg) center/cover no-repeat;
}
#top-mv #mv__slider li:nth-child(2) {
  background: url(../img/top/mv/slide02_bg.jpg) center/cover no-repeat;
}
#top-mv #mv__slider li:nth-child(3) {
  background: url(../img/top/mv/slide03_bg.jpg) center/cover no-repeat;
}
#top-mv #mv__slider li:nth-child(4) {
  background: url(../img/top/mv/slide04_bg.jpg) center/cover no-repeat;
}
#top-mv .bx-wrapper {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
#top-mv .bx-viewport {
  overflow: visible !important;
  margin: auto;
  text-align: center;
}
#top-mv .bx-pager {
  display: none;
}
#top-mv .mv__slider-text {
  font-size: var(--font-size-35);
  text-align: right;
  position: absolute;
  inset: 37.3312% 0 auto auto;
  display: flex;
  align-items: center;
  line-height: 1.55;
  padding: 0 3.1379%;
  letter-spacing: 0.12em;
}

/*==========================================
footer
===========================================*/
#footer {
  padding: 45px 0;
}
#footer .footer__inbox {
  text-align: center;
}
#footer .footer__logo {
  display: inline-block;
  margin-bottom: 40px;
}
#footer .footer__address {
  margin-bottom: 15px;
}
#footer .footer__address .address__locate {
  margin-bottom: 15px;
}
#footer .footer__contact-list {
  width: 100%;
  justify-content: center;
  margin: 0 auto;
  row-gap: 10px;
}
#footer .footer__contact-list .contact__item-tel .tel__num {
  font-size: var(--font-size-26);
}
#footer .footer__contact-list .contact__item-worktime {
  justify-content: center;
  font-size: var(--font-size-14);
}
#footer .footer__contact-list .contact__item-worktime .worktime__item {
  letter-spacing: var(--body-letter-spacing);
}
#footer .footer__contact-list .contact__item-worktime .worktime__item-title {
  color: var(--color-white);
}
#footer .footer__contact-list .contact__item-worktime .worktime__item-title::after {
  background-color: var(--color-white);
}
#footer .footer__nav {
  margin-bottom: 25px;
}
#footer .footer__nav-list {
  gap: 10px 20px;
}
#footer .footer__nav-link {
  font-size: var(--font-size-14);
  padding-left: 15px;
}
#footer .footer__nav-link::before {
  font-size: var(--font-size-11);
  inset: 0 auto 0 0;
}
#footer .footer__nav-link:hover {
  text-decoration: underline;
}

#copyright {
  word-break: normal;
  text-align: center;
}
#copyright small {
  font-size: var(--font-size-11);
}
#copyright a {
  text-decoration: underline;
}

/*==========================================
sv
===========================================*/
.lower-sv {
  padding: 0 2.641%;
  position: relative;
  height: 400px;
  margin-top: 117px;
}
.lower-sv .sv__title {
  width: 100%;
  font-size: var(--font-size-40);
  position: absolute;
  inset: 0 auto 0 0;
  margin: auto 0;
  padding-left: 16.666%;
  display: flex;
  align-items: center;
}
.lower-sv .sv__title::before {
  position: absolute;
  content: "";
  width: 14%;
  height: 1px;
  background: var(--color-white);
  inset: 0 auto 0 0;
  margin: auto 0;
}
.lower-sv .sv__img {
  width: 79.6703%;
  height: 100%;
  margin-left: auto;
}

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

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

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

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

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

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

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

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

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

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

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

/*==========================================
top
===========================================*/
.top-title {
  text-align: center;
  margin-bottom: 40px;
}
.top-title .title-en {
  font-size: var(--font-size-40);
  color: var(--color-gray-dark-light);
  font-family: var(--font-secondary);
  line-height: 1.3;
  letter-spacing: 0.02em;
}
.top-title .title-ja {
  line-height: 1.5;
  font-size: var(--font-size-45);
  display: block;
  letter-spacing: 0.12em;
}

.top-border {
  position: relative;
}
.top-border::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 50px;
  inset: 0 0 auto;
  margin: 0 auto;
  background: var(--color-gray-dark-light);
}

/*
# top-concern
------------------------*/
#top-concern {
  padding: 55px 0 180px;
}
#top-concern .concern__title .title-ja {
  font-size: var(--font-size-30);
  line-height: 1.7;
}
#top-concern .concern__title .title-ja em {
  font-size: var(--font-size-45);
}
#top-concern .concern__list {
  gap: 50px 45px;
}
#top-concern .concern__item {
  border-width: 1px;
  border-color: var(--color-gray-dark);
  width: 330px;
  padding: 5px;
}
#top-concern .concern__item:first-child {
  width: 100%;
}
#top-concern .concern__item:first-child .concern__item-inner {
  padding: 30px 4.166% 40px;
}
#top-concern .concern__item:first-child .concern__inner-list {
  width: 470px;
}
#top-concern .concern__item-inner {
  height: 100%;
  padding: 30px 20px 40px;
}
#top-concern .concern__item-title {
  font-size: var(--font-size-27);
  margin-bottom: 20px;
  line-height: 1.7;
}

.checked-item {
  border-bottom: 1px solid #24243f;
  padding: 15px 0 15px 25px;
  font-size: var(--font-size-16);
  line-height: 1.6;
  background: url(../../img/top/checked-item_ic.png) top 25px left no-repeat;
}
.checked-item:first-child {
  border-top: 1px solid #24243f;
}

/*
# top-greeting
------------------------*/
#top-greeting {
  position: relative;
}
#top-greeting .greeting__inbox {
  padding: 90px 0 95px;
  position: relative;
}
#top-greeting .greeting__title {
  line-height: 1.6;
  text-align: left;
}
#top-greeting .greeting__title strong {
  font-size: var(--font-size-50);
}
#top-greeting .greeting__title .title-en {
  position: absolute;
  inset: 325px 390px auto auto;
  writing-mode: vertical-rl;
  font-size: 6.5rem;
}
#top-greeting .greeting__title .title-ja {
  font-size: var(--font-size-40);
}
#top-greeting .greeting__img {
  position: absolute;
  inset: -80px 0 auto auto;
}
#top-greeting .greeting__content {
  width: 540px;
}
#top-greeting .greeting__movie-wrap {
  margin-top: 90px;
}
#top-greeting .greeting__movie-wrap .greeting__movie {
  width: 585px;
}
#top-greeting .greeting__movie-wrap .greeting__movie video {
  width: 100%;
  height: 330px;
  -o-object-fit: cover;
     object-fit: cover;
}
#top-greeting .greeting__movie-wrap .greeting__movie-content {
  width: 455px;
}
#top-greeting .greeting__img--center {
  width: 37.5%;
  position: absolute;
  inset: 320px 2.6041% auto auto;
  margin: auto 0;
}

/*
# top-service
------------------------*/
#top-service {
  padding: 65px 0 100px;
  background: url(../../img/top/service-btm_img.jpg) bottom 30.40625% center/100% no-repeat;
  position: relative;
}
#top-service .service__title {
  margin-bottom: 80px;
}
#top-service .service__headline {
  margin-bottom: 125px;
}
#top-service .service__headline-img {
  position: absolute;
  inset: 215px auto auto 2.6041%;
  width: 42.7083%;
  text-align: right;
}
#top-service .service__headline-title {
  margin-bottom: 25px;
}
#top-service .service__headline-title .title-ja {
  font-size: var(--font-size-35);
  text-align: left;
}
#top-service .service__headline-title .title-en {
  position: absolute;
  inset: 15px auto auto -50px;
  writing-mode: vertical-rl;
  font-size: var(--font-size-24);
}
#top-service .service__headline-content {
  width: 540px;
  margin-left: auto;
  position: relative;
}
#top-service .service__headline-list {
  width: 250px;
}
#top-service .service__headline-list .checked-item {
  border-color: var(--color-gray-dark);
}
#top-service .service__headline-button {
  margin: 35px 0 0 auto;
}
#top-service .service__list {
  gap: 45px;
}
#top-service .service__list .service__card {
  width: 330px;
  position: relative;
  padding-top: 35px;
}
#top-service .service__list .service__card-title {
  text-align: left;
}
#top-service .service__list .service__card-title .title-en {
  position: absolute;
  inset: 0 auto auto 0;
  font-size: var(--font-size-22);
}
#top-service .service__list .service__card-title .title-ja {
  font-size: var(--font-size-28);
  padding: 15px 0 15px 45px;
  position: relative;
}
#top-service .service__list .service__card-title .title-ja::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 1px;
  inset: 0 auto 0 0;
  margin: auto 0;
  background: var(--color-gray-dark);
}
#top-service .service__bottom {
  margin-top: 35px;
}
#top-service .service__bottom-title {
  margin-bottom: 25px;
  text-align: left;
}
#top-service .service__bottom-title .title-ja {
  font-size: var(--font-size-35);
}
#top-service .service__bottom-title .title-en {
  position: absolute;
  inset: 13px auto auto -5px;
  font-size: var(--font-size-22);
  writing-mode: vertical-rl;
}
#top-service .service__bottom-content {
  width: 585px;
  padding-left: 40px;
  position: relative;
}
#top-service .service__bottom-list {
  width: 250px;
}
#top-service .service__bottom-list .checked-item {
  border-color: var(--color-gray-dark);
}
#top-service .service__bottom-button {
  margin: 35px 0 0 auto;
}

/*
# top-area
------------------------*/
#top-area {
  padding: 95px 0;
}
#top-area .area__inbox {
  position: relative;
}
#top-area .area__map {
  width: 580px;
  text-align: center;
}
#top-area .area__content {
  width: 480px;
}
#top-area .area__title {
  margin-bottom: -30px;
}
#top-area .area__title .title-en {
  position: absolute;
  inset: 85px auto auto 0;
  writing-mode: vertical-rl;
  font-size: 6rem;
}
#top-area .area__title .title-ja {
  position: relative;
  z-index: 1;
}
#top-area .area__title .title-ja::before, #top-area .area__title .title-ja::after {
  position: absolute;
  content: "";
  width: 80px;
  height: 1px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  background: var(--color-white);
}
#top-area .area__title .title-ja::before {
  left: 0;
}
#top-area .area__title .title-ja::after {
  right: 0;
}
#top-area .area__text {
  padding: 55px 15px 35px;
  text-align: center;
  background: #3d3d3d;
  position: relative;
}
#top-area .area__text::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: var(--color-white);
  inset: auto 0 -5px;
}

/*
# top-contact
------------------------*/
#top-contact {
  background: #cfcfcf;
  padding: 85px 0 135px;
}

.contact__content {
  padding: 50px;
}

.contact__inner {
  padding: 40px 0;
}
.contact__inner-title {
  position: relative;
  font-size: var(--font-size-30);
  text-align: center;
  padding: 10px 15px;
  margin-bottom: 30px;
}
.contact__inner-title::before, .contact__inner-title::after {
  position: absolute;
  content: "";
  width: 900px;
  height: 1px;
  background: var(--color-white);
}
.contact__inner-title::before {
  inset: 0 auto auto 0;
}
.contact__inner-title::after {
  inset: auto 0 0 auto;
}
.contact__inner-text {
  padding: 0 30px;
  margin-bottom: 30px;
}
.contact__inner .contact__info {
  padding: 0 30px;
}
.contact__inner .contact__info .contact__contact-list {
  width: 385px;
}
.contact__inner .contact__info .contact__item-worktime {
  font-size: var(--font-size-15);
}
.contact__inner .contact__info .contact__item-tel .tel__num {
  font-size: var(--font-size-40);
}
.contact__inner .contact__info .contact__item-tel .tel__num small {
  font-size: var(--font-size-28);
}
.contact__inner .contact__info .c-info__item-button {
  width: 450px;
  height: 70px;
  font-size: var(--font-size-20);
}

/*
# top-links
------------------------*/
.top-links {
  padding-bottom: 130px;
  background: #cfcfcf;
}
.top-links .links__list {
  gap: 55px 40px;
}
.top-links .links__list .links__item {
  width: 520px;
  height: 360px;
  position: relative;
}
.top-links .links__list .links__item:nth-child(even) {
  margin-top: 40px;
}
.top-links .links__list .links__item-box {
  position: absolute;
  inset: auto 0 0 auto;
  width: 260px;
  padding: 15px 25px 25px;
}
.top-links .links__list .links__item-page {
  font-size: var(--font-size-26);
  padding-bottom: 10px;
  margin-bottom: 15px;
  position: relative;
  letter-spacing: 0.12em;
}
.top-links .links__list .links__item-page::before {
  position: absolute;
  content: "";
  width: calc(100% + 50px);
  height: 1px;
  inset: auto auto 0 -50px;
  background: var(--color-white);
}

/*
# top-news
------------------------*/
#top-news {
  padding: 100px 0;
  background: url(../../img/top/news_bg.jpg) center/cover no-repeat;
}
#top-news .news__inbox {
  position: relative;
}
#top-news .news__title {
  text-align: left;
  margin-bottom: 0;
  padding-bottom: 75px;
}
#top-news .news__post-list {
  width: 580px;
  min-height: 295px;
}
#top-news .news__post-list .news__post {
  margin-bottom: 20px;
}
#top-news .news__post-list .news__post:last-child {
  margin-bottom: 0;
}
#top-news .news__post-list .news__post-link {
  padding: 15px;
  border-width: 1px;
  border-color: var(--color-white);
}
#top-news .news__post-list .news__post-link:hover {
  transform: translateX(15px);
}
#top-news .news__post-list .news__post-tags {
  font-size: var(--font-size-14);
  color: var(--accent-color);
  gap: 2px 7px;
}
#top-news .news__post-list .news__post-date {
  width: 89px;
  position: relative;
}
#top-news .news__post-list .news__post-date::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 15px;
  background: var(--color-white);
  inset: 0 0 0 auto;
  margin: auto 0;
  transform: rotate(15deg);
}
#top-news .news__post-list .news__post-title {
  width: calc(100% - 95px);
}
#top-news .news__button {
  position: absolute;
  inset: auto auto 60px 0;
}

/*==========================================
about
===========================================*/
/*
# about-msg
------------------------*/
#about-msg .msg__wrap {
  position: relative;
  min-height: 500px;
}
#about-msg .msg__img {
  position: absolute;
  inset: 0 0 auto auto;
}
#about-msg .msg__content {
  width: 540px;
}
#about-msg .msg__content-subtitle {
  font-size: var(--font-size-28);
  line-height: 1.6;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}
#about-msg .msg__content-subtitle span {
  font-size: var(--font-size-35);
}
#about-msg .msg__content-text.name {
  font-size: var(--font-size-25);
}
#about-msg .msg__content-text.name span {
  font-size: var(--font-size-20);
}

/*
# about-policy
------------------------*/
#about-policy .policy__content {
  margin-bottom: 50px;
}
#about-policy .policy__content:last-child {
  margin-bottom: 0;
}
#about-policy .policy__content .policy__list {
  width: 555px;
}
#about-policy .policy__content .policy__list .policy__item {
  margin-bottom: 40px;
}
#about-policy .policy__content .policy__list .policy__item:last-child {
  margin-bottom: 0;
}
#about-policy .policy__content .policy__list .policy__item-title {
  border-bottom: 1px solid var(--accent-color);
  margin-bottom: 10px;
  padding-bottom: 10px;
}
#about-policy .policy__content .policy__list .policy__item-title .title-num {
  font-size: var(--font-size-30);
  position: relative;
  padding-right: 10px;
  margin-right: 5px;
}
#about-policy .policy__content .policy__list .policy__item-title .title-num::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 15px;
  inset: auto 0 10px auto;
  margin: auto 0;
  background: var(--accent-color);
  transform: rotate(25deg);
}
#about-policy .policy__content .policy__list .policy__item-title .title-text {
  font-size: var(--font-size-28);
}

/*
# about-staff
------------------------*/
#about-staff .staff__inbox {
  position: relative;
}
#about-staff .staff__inbox::before, #about-staff .staff__inbox::after {
  position: absolute;
  content: "";
}
#about-staff .staff__inbox::before {
  width: 212px;
  height: 245px;
  background: url(../../img/about/staff-l_ill.png) center/100% no-repeat;
  inset: -190px auto auto 120px;
}
#about-staff .staff__inbox::after {
  width: 351px;
  height: 256px;
  background: url(../../img/about/staff-r_ill.png) center/100% no-repeat;
  inset: -200px 28px auto auto;
}
#about-staff .staff__list {
  gap: 45px 60px;
}
#about-staff .staff__list .staff__card {
  width: 520px;
  border-width: 1px;
  padding: 20px 25px;
}
#about-staff .staff__list .staff__card-title {
  font-size: var(--font-size-20);
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--color-gray-dark);
}
#about-staff .staff__list .staff__card-content {
  width: 220px;
}
#about-staff .staff__list .staff__card-img {
  width: 200px;
  height: 210px;
}
#about-staff .staff__list .staff__card-jobs {
  font-size: var(--font-size-17);
  padding-left: 15px;
  background: url(../../img/top/checked-item_ic.png) left top 13px no-repeat;
  margin-bottom: 15px;
}

/*==========================================
service
===========================================*/
/*
# service-renovation
------------------------*/
#service-renovation {
  background: url(../../img/service/renovation_bg.png) bottom center/100% no-repeat;
}
#service-renovation .renovation__part {
  margin-bottom: 85px;
}
#service-renovation .renovation__part:last-child {
  margin-bottom: 0;
}
#service-renovation .renovation__gallery {
  gap: 20px;
  margin-top: 40px;
}
#service-renovation .renovation__gallery .renovation__card {
  width: 200px;
}
#service-renovation .renovation__gallery .renovation__card-title {
  font-size: var(--font-size-20);
  padding: 15px 0;
  text-align: center;
  border-bottom: 1px solid var(--color-gray-dark);
}
#service-renovation .renovation__part__button {
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px 0 0 auto;
}
#service-renovation .renovation__part-flow {
  gap: 40px;
  margin-top: 35px;
}
#service-renovation .renovation__part-flow .renovation__flow-item {
  width: 240px;
  height: 130px;
  box-shadow: 5px 5px var(--color-black);
  font-size: var(--font-size-24);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.6;
}
#service-renovation .renovation__part-flow .renovation__flow-item::before {
  position: absolute;
  inset: -15px auto auto 10px;
  color: var(--accent-color);
  font-size: var(--font-size-30);
  line-height: 1;
}
#service-renovation .renovation__part-flow .renovation__flow-item::after {
  position: absolute;
  content: "";
  inset: 0 -27px 0 auto;
  margin: auto;
  vertical-align: middle;
  width: 15px;
  height: 15px;
  border-top: 2px solid var(--accent-color);
  border-right: 2px solid var(--accent-color);
  transform: rotate(45deg);
  transition: all 0.3s;
}
#service-renovation .renovation__part-flow .renovation__flow-item:last-child::after {
  border: none;
}

.com-service__list {
  gap: 40px;
}

.com-service__item {
  width: 520px;
  border-width: 1px;
  padding: 5px;
  border-color: var(--color-gray-dark);
}
.com-service__item .com-service__inner {
  padding: 25px;
  height: 100%;
}
.com-service__item .com-service__title {
  font-size: var(--font-size-24);
  margin-bottom: 20px;
  line-height: 1.6;
  letter-spacing: 0.12em;
  padding: 5px 10px;
}
.com-service__item .com-service__item-list {
  width: 190px;
}

/*
# service-other
------------------------*/
#service-other .other__item {
  border-color: var(--color-white);
}
#service-other .other__item-title {
  background: #3d3d3d;
}
#service-other .other__item-item {
  border-color: var(--color-gray-dark-light);
}

/*
# service-maintenance
------------------------*/
#service-maintenance {
  background: url(../../img/service/maintenance_bg.jpg) center/cover no-repeat;
}
#service-maintenance .maintenance__item {
  width: 100%;
}
#service-maintenance .maintenance__item-list {
  width: 510px;
}
#service-maintenance .maintenance__item-item {
  font-size: var(--font-size-17);
  background-position: 0 50%;
  padding: 15px 0 15px 25px;
}
#service-maintenance .maintenance__type {
  gap: 45px;
  margin-top: 40px;
}
#service-maintenance .maintenance__type-item {
  width: 330px;
  background: #3d3d3d;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-24);
  line-height: 1.6;
  letter-spacing: 0.12em;
  text-align: center;
  box-shadow: 5px 5px var(--color-black);
}

/*==========================================
case
===========================================*/
/*
# case-archive
------------------------*/
#case-archive .case__list {
  gap: 45px;
}
#case-archive .case__list .case__card {
  width: 330px;
}
#case-archive .case__list .case__card-thumb {
  width: 100%;
  height: 220px;
}
#case-archive .case__list .case__card-title {
  padding: 15px 0;
  font-size: var(--font-size-20);
  border-bottom: 1px solid var(--color-gray-dark);
}

/*
# case-single
------------------------*/
#case-single .case__post {
  margin-bottom: 55px;
}
#case-single .case__post:last-of-type {
  margin-bottom: 0;
}
#case-single .case__post-title {
  margin-bottom: 45px;
}
#case-single .case__post {
  padding: 40px;
}
#case-single .case__post .case__post-imgs:has(.case__post-img--after) .case__post-img--before {
  position: relative;
}
#case-single .case__post .case__post-imgs:has(.case__post-img--after) .case__post-img--before:after {
  position: absolute;
  inset: 0 -45px 0 auto;
  margin: auto 0;
  content: "";
  vertical-align: middle;
  width: 25px;
  height: 25px;
  border-top: 2px solid var(--accent-color);
  border-right: 2px solid var(--accent-color);
  transform: rotate(45deg);
}
#case-single .case__post-img {
  width: 460px;
  position: relative;
}
#case-single .case__post-img .com-img {
  width: 100%;
  height: 300px;
}
#case-single .case__post-img-title {
  position: absolute;
  inset: -10px auto auto 0;
  padding: 0 10px;
  line-height: 1.6;
  letter-spacing: 0.12em;
  font-size: var(--font-size-26);
  z-index: 1;
}
#case-single .case__post-comment {
  margin-top: 25px;
}

/*==========================================
faq
===========================================*/
#faq-archive .faq__post {
  border-width: 1px;
  border-color: var(--color-gray-dark);
  padding: 25px 30px;
  margin-bottom: 40px;
}
#faq-archive .faq__post-title, #faq-archive .faq__post-content {
  position: relative;
  padding-left: 40px;
}
#faq-archive .faq__post-title::before, #faq-archive .faq__post-content::before {
  position: absolute;
  inset: 0 auto auto 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-16);
  line-height: 1;
  border: 1px solid;
  text-align: center;
}
#faq-archive .faq__post-title {
  font-size: var(--font-size-24);
  margin-bottom: 15px;
}
#faq-archive .faq__post-title::before {
  content: "Q";
  color: var(--accent-color);
  border-color: var(--accent-color);
  top: 11px;
}
#faq-archive .faq__post-content::before {
  content: "A";
  color: var(--color-white);
  border-color: var(--color-white);
}

/*==========================================
info
===========================================*/
/*
# info-policy
------------------------*/
#info-policy .policy__text {
  text-align: center;
}

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

/*==========================================
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__content {
  margin-bottom: 75px;
}
#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: 30px 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フレーム時)
  ===========================================*/