@charset "UTF-8";
/*==========================================
コンポーネントファイル
===========================================*/
/*
# パンくずリスト
------------------------*/
div .bread {
  display: none;
}

/*
# 一覧ぺージ用カテゴリ(セレクトボックス)
------------------------*/
.global-select {
  width: 64%;
  margin: 0 0 23% auto;
}
.global-select select {
  padding: 6% 10% 6% 6%;
}

/*
# ドロワーメニュー
------------------------------------ */
.sp-menu-btn-wrp {
  top: 5vw;
  right: 6%;
  bottom: auto;
  left: auto;
  background: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sp-menu-btn-wrp .sp-menu-btn {
  width: 8vw;
  height: 5vw;
}
.sp-menu-btn-wrp .sp-menu-btn span {
  width: 100%;
  height: 1px;
  background: var(--color-white);
}
.sp-menu-btn-wrp .sp-menu-btn .top {
  top: 0;
}
.sp-menu-btn-wrp .sp-menu-btn .middle {
  top: 0;
  bottom: 0;
}
.sp-menu-btn-wrp .sp-menu-btn .bottom {
  top: auto;
  bottom: 0;
}

.sp-menu-btn.active .top {
  top: 50%;
  transform: translateY(0) translateX(0px) rotate(45deg);
  background: var(--primary-color);
}

.sp-menu-btn.active .bottom {
  bottom: 50%;
  transform: translateY(0) translateX(0px) rotate(-45deg);
  background: var(--primary-color);
}

/*  drawer inbox
  ------------------------------------ */
#drawer__nav {
  padding: 6% 6% 15%;
  background: var(--color-white);
}
#drawer__nav .drawer__nav-logo {
  width: 13%;
  margin-bottom: 10%;
  text-align: left;
}
#drawer__nav .drawer__nav {
  margin-bottom: 15%;
}
#drawer__nav .drawer__nav-item {
  border-bottom: 1px solid var(--color-gray);
}
#drawer__nav .drawer__nav-item .drawer__nav-link {
  padding: 6% 0;
  font-size: var(--font-size-17);
  border-bottom: none;
  display: block;
}
#drawer__nav .drawer__nav .drawer__nav-dropdown {
  padding: 3% 12% 3% 0;
}
#drawer__nav .drawer__nav .drawer__nav-dropdown span {
  display: block;
}
#drawer__nav .drawer__nav .drawer__nav-dropdown span:before, #drawer__nav .drawer__nav .drawer__nav-dropdown span:after {
  background: var(--color-black);
}
#drawer__nav .drawer__nav .drawer__nav-dropdown-item .drawer__nav-link {
  display: block;
  padding: 3% 0;
}
#drawer__nav .drawer__nav .drawer__nav-dropdown .show span:after {
  opacity: 0 !important;
}
#drawer__nav .drawer__nav .current span {
  display: block;
  position: relative;
  text-decoration: underline;
  color: var(--primary-color);
}
#drawer__nav .drawer__nav .current span::before {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 2vw;
  height: 2vw;
  border-top: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
  transform: rotate(45deg);
  transition: all 0.3s;
  z-index: 1;
}
#drawer__nav .drawer__nav .current span::before {
  right: 0;
}
#drawer__nav .drawer__nav .drawer__nav-dropdown-list {
  margin: 3% 0;
  padding-left: 4%;
  box-sizing: border-box;
}
#drawer__nav .drawer__nav .drawer__nav-dropdown-list > li > .drawer__nav-link.show::before {
  background: none;
  border: none;
}
#drawer__nav .drawer__nav .drawer__nav-dropdown-list > li > .drawer__nav-link span {
  padding: 0 0 0 5%;
}
#drawer__nav .contact__item--tel {
  line-height: 1.2;
}
#drawer__nav .contact__item--tel .tel__num {
  color: var(--body-font-color);
  font-size: var(--font-size-30);
}
#drawer__nav .contact__item--tel .tel__text {
  filter: invert(0);
}
#drawer__nav .drawer__nav-subpage {
  display: flex;
  justify-content: center;
  width: 100%;
  font-size: var(--font-size-12);
  gap: 4vw;
  margin-top: 12%;
}
#drawer__nav .drawer__nav-subpage-link {
  text-decoration: underline;
}

/*
# .c-contact__list
------------------------*/
.c-contact__list .contact__item--tel {
  text-align: center;
  line-height: 1.2;
}
.c-contact__list .contact__item .tel__num {
  font-size: var(--font-size-30);
  color: var(--color-white);
  padding-left: 25px;
  background: url(../img/common/tel_ic.svg) left center/20px no-repeat;
}
.c-contact__list .contact__item .tel__text {
  width: 71%;
  margin: 0 auto;
  display: block;
  filter: invert(1);
}
.c-contact__list .contact__item-button {
  height: 51px;
  border-radius: 25.5px;
  font-size: var(--font-size-18);
  padding-left: 10px;
  margin-top: 20px;
}
.c-contact__list .contact__item-button::before {
  left: 15px;
}

/*==========================================
  共通ブロック・要素
  ===========================================*/
.com-content {
  text-align: left;
}
.com-content p {
  margin-bottom: 8%;
}

/*
# com-button
------------------------*/
.com-button {
  font-size: var(--font-size-18);
  font-family: var(----font-tertiary);
  font-weight: var(--font-weight-bold);
  text-align: center;
  border-radius: 25.5px;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.com-button::before {
  right: 5%;
}

/*==========================================
共通タイトル
===========================================*/
.section-title {
  text-align: center;
  padding-top: 8vw;
  margin-bottom: 15.158%;
  background: url(../img/common/section-ttl_deco.png) top center/17.076% no-repeat;
}
.section-title.color-white {
  background: url(../img/common/section-ttl_deco--white.png) top center/17.076% no-repeat;
}
.section-title.align-left {
  text-align: left;
}
.section-title span {
  letter-spacing: 0;
}
.section-title .title-en {
  display: block;
  line-height: 1.1;
  font-size: var(--font-size-18);
}
.section-title .title-ja {
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-25);
  line-height: 1.5;
}

.headline-title {
  font-size: var(--font-size-22);
  letter-spacing: 0;
  padding: 0 5.3846% 5.3846%;
  margin-bottom: 11.5384%;
  line-height: 1.7;
  background: url(../img/common/dotted_primary-light.svg) bottom center/100% repeat-x;
}
.headline-title.color-white {
  background-image: url(../img/common/dotted_white.svg);
}

.sub-title {
  text-align: center;
  font-size: var(--font-size-26);
  font-weight: var(--font-weight-bold);
  font-family: var(--font-secondary);
  letter-spacing: 0;
  color: var(--primary-color);
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 3px, #6ab3dd 3px, #6ab3dd 6px);
  background-color: var(--primary-color-light);
  box-shadow: var(--accent-color) 0px 3px 0px;
  position: relative;
  margin-bottom: 8.4615%;
  text-shadow: var(--color-white) 1px 1px 0px, var(--color-white) -1px 1px 0px, var(--color-white) 1px -1px 0px, var(--color-white) -1px -1px 0px;
}
.sub-title::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8.5px 4.75px 0px 4.75px;
  border-color: var(--accent-color) transparent transparent transparent;
  inset: auto 0 -10.5px;
  margin: 0 auto;
}

/*==========================================
header
===========================================*/
#header {
  padding: 1.555% 3.333%;
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  width: 100%;
}
#header .header__logo {
  width: 12.284%;
  line-height: 1;
}

/*==========================================
mv
===========================================*/
.mv__frame {
  margin-top: 13.85vw;
}
.mv__frame::before, .mv__frame::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 9.4vw;
  background: url(../img/top/mv/mv_frame.png) center/100% no-repeat;
  left: 0;
  right: 0;
}
.mv__frame::before {
  top: 0;
}
.mv__frame::after {
  bottom: 0;
  transform: rotate(180deg);
}

#top-mv {
  height: 145vw;
  background: url(../img/top/mv/mv_img.jpg) center/cover no-repeat;
}
#top-mv .mv__catch {
  inset: auto 0 12.8676%;
  width: 89.2%;
  margin: 0 auto;
}

/*==========================================
footer
===========================================*/
#footer {
  margin-top: 36.6666%;
}
#footer::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 11vw;
  background: url(../img/common/ft-top_ill.png) center/100% no-repeat;
  inset: -12% 0 auto;
}
#footer .footer__inbox {
  padding: 12.666% 11.333% 13.333%;
}
#footer .footer__logo {
  display: block;
  margin: 0 auto 8.6206%;
  text-align: center;
  width: 16%;
}
#footer .footer__worktime {
  font-size: var(--font-size-13);
  gap: 1vw;
  margin-bottom: 6.0344%;
}
#footer .footer__worktime .worktime__item {
  width: -moz-fit-content;
  width: fit-content;
}
#footer .footer__contact-list {
  margin-bottom: 5.1724%;
}
#footer .footer__related {
  height: 13.85vw;
  background: var(--body-font-color);
  color: var(--color-white);
}
#footer .footer__nav {
  margin-top: 10.3448%;
}
#footer .footer__nav-list {
  gap: 6vw;
}
#footer .footer__nav-link {
  font-size: var(--font-size-13);
  text-decoration: underline;
}

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

/*==========================================
sv
===========================================*/
.lower-sv {
  height: 80vw;
}
.lower-sv .sv__title {
  text-align: center;
  font-size: var(--font-size-38);
  letter-spacing: 0;
  text-shadow: var(--primary-color) 2px 0px, var(--primary-color) -2px 0px, var(--primary-color) 0px -2px, var(--primary-color) 0px 2px, var(--primary-color) 2px 2px, var(--primary-color) -2px 2px, var(--primary-color) 2px -2px, var(--primary-color) -2px -2px, var(--primary-color) 1px 2px, var(--primary-color) -1px 2px, var(--primary-color) 1px -2px, var(--primary-color) -1px -2px, var(--primary-color) 2px 1px, var(--primary-color) -2px 1px, var(--primary-color) 2px -1px, var(--primary-color) -2px -1px;
}
.lower-sv .sv__title span::before {
  text-shadow: none;
}
.lower-sv .sv__title span::before {
  line-height: 2.5;
  -webkit-text-stroke: 15px var(--color-white);
}

/*==========================================
top
===========================================*/
/*
# top-about
------------------------*/
#top-about {
  padding: 6.666% 0 14.6666%;
}
#top-about .about__title {
  margin-bottom: 20%;
}
#top-about .about__check-list {
  width: 89.2307%;
  margin: 0 auto 10%;
  padding: 10% 5.1724%;
}
#top-about .about__check-list::before {
  position: absolute;
  content: "";
  width: 40.862%;
  height: 18vw;
  inset: -13vw -6% auto auto;
  background: url(../img/top/about-rt_ill.png) center/100% no-repeat;
}
#top-about .about__check-list .check__item {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: var(--font-size-18);
  text-align: center;
  padding-left: 6vw;
}
#top-about .about__check-list .check__item::before {
  inset: 0 auto 0 0;
  width: 5vw;
  height: 5vw;
  background: var(--accent-color);
  border-radius: 50%;
  font-size: var(--font-size-12);
}

/*
# top-area
------------------------*/
#top-area {
  padding: 22.666% 0 18.6666%;
}
#top-area::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 15vw;
  inset: auto 0 0;
  background: url(../img/top/area-btm_ill.png) bottom center/100% no-repeat;
}
#top-area .area__title {
  background: var(--primary-color-light);
  text-shadow: none;
}
#top-area .area__title::after {
  border: none;
}
#top-area .area__content {
  padding: 16% 5.3846% 15%;
}
#top-area .area__content-title {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 9%;
  text-align: center;
  font-size: var(--font-size-20);
}
#top-area .area__content-title::before, #top-area .area__content-title::after {
  position: absolute;
  content: "";
  background: url(../img/top/area-subttl_deco.png) center/100% no-repeat;
  width: 32%;
  height: 8vw;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
#top-area .area__content-title::before {
  left: -6vw;
}
#top-area .area__content-title::after {
  right: -6vw;
  transform: scale(-1, 1);
}
#top-area .area__content-title span::before {
  position: absolute;
  content: "";
  margin: 0 auto;
  inset: auto 0 -4vw;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.85vw 1.25vw 0px 1.25vw;
  border-color: var(--body-font-color) transparent transparent transparent;
}
#top-area .area__content-text {
  font-size: var(--font-size-18);
}
#top-area .area__content .area__map {
  margin-bottom: 12.931%;
}
#top-area .area__title {
  width: 89.23%;
  margin: 0 auto;
  position: absolute;
  inset: -8vw 0 auto;
}
#top-area .area__title span::before {
  position: absolute;
  content: "";
  width: 15%;
  height: 8vw;
  inset: 0 auto 0 -9vw;
  margin: auto 0;
  background: url(../img/top/area-ttl_ic.png) center/100% no-repeat;
}

/*
# top-links
------------------------*/
.top-links {
  padding: 18.666% 0;
}
.top-links .links__item {
  width: 93.333%;
  margin-bottom: 10%;
  height: 53vw;
}
.top-links .links__item--service {
  background: url(../img/top/service_img.jpg) center/cover no-repeat;
}
.top-links .links__item--service::before {
  position: absolute;
  content: "";
  width: 27%;
  height: 15vw;
  background: url(../img/top/service_ill.png) center/100% no-repeat;
  inset: -11vw auto auto 0;
}
.top-links .links__item--case {
  background: url(../img/top/case_img.jpg) center/cover no-repeat;
}
.top-links .links__item--case::before {
  position: absolute;
  content: "";
  width: 25.1428%;
  height: 23vw;
  inset: auto 0 -22vw auto;
  background: url(../img/top/case_ill.png) center/100% no-repeat;
}
.top-links .links__item:last-child {
  margin-bottom: 0;
}
.top-links .links__item:nth-child(odd) {
  margin-left: auto;
  border-radius: 29vw 0 0 29vw;
}
.top-links .links__item:nth-child(even) {
  border-radius: 0 29vw 29vw 0;
}
.top-links .links__item-title {
  font-size: var(--font-size-35);
  text-align: center;
}
.top-links .links__item-title span {
  letter-spacing: 0;
}
.top-links .links__item-title .title-en {
  font-size: var(--font-size-50);
  color: rgba(var(--color-white-rgb), 0.4);
  inset: -3vw 0 auto;
  line-height: 1;
}
.top-links .links__item-button {
  width: 32vw;
  margin: 0 auto;
  height: 8vw;
}

/*
# top-news
------------------------*/
#top-news {
  padding: 18.666% 0;
}
#top-news .news__title {
  background: none;
  padding-top: 0;
  margin-bottom: 11.5384%;
}
#top-news .news__post {
  background: url(../img/common/dotted_white.svg) top center/100% repeat-x;
}
#top-news .news__post:last-child {
  background: url(../img/common/dotted_white.svg) top center/100% repeat-x, url(../img/common/dotted_white.svg) bottom center/100% repeat-x;
}
#top-news .news__post-link {
  padding: 7% 0;
}
#top-news .news__post-link:hover {
  transform: translateX(10px);
}
#top-news .news__post-date {
  font-size: var(--font-size-13);
}
#top-news .news__post-title {
  font-size: var(--font-size-15);
}
#top-news .news__post-tags {
  font-size: var(--font-size-13);
}
#top-news .news__post-tags .news__post-tag {
  gap: 1.5vw;
}
#top-news .news__post-tags .news__post-tag::before {
  content: "#";
  color: var(--accent-color);
}
#top-news .news__button {
  width: 89.2307%;
  margin: 18.4615% auto 0;
}

/*
# top-company
------------------------*/
#top-company .links__item--company {
  background: url(../img/top/company_img.jpg) center/cover no-repeat;
  border-radius: 5.5vw;
  margin: 0 auto;
}

/*
# top-contact
------------------------*/
#top-contact {
  margin-top: 22.6666%;
  background-image: url(../img/common/white_frame.png);
  background-position: 0 0;
  background-size: 100%;
  background-repeat: no-repeat;
}
#top-contact::before, #top-contact::after {
  position: absolute;
  content: "";
}
#top-contact::before {
  width: 38.4%;
  height: 19vw;
  inset: -19vw 0 auto auto;
  background: url(../img/top/contact-top_ill.png) center/100% no-repeat;
}
#top-contact::after {
  width: 22%;
  height: 26vw;
  inset: auto auto -8vw 6.6666%;
  background: url(../img/top/contact-btm_ill.png) center/100% no-repeat;
}
#top-contact .contact__inbox {
  position: relative;
  padding: 28% 11.333% 18.666%;
}
#top-contact .contact__title {
  width: 77.3333%;
  margin: 0 auto;
  position: absolute;
  inset: 0 0 auto;
}
#top-contact .contact__text {
  font-size: var(--font-size-18);
  margin-bottom: 12.931%;
}
#top-contact .top-contact__contact-list .contact__item {
  margin-bottom: 9.4827%;
}
#top-contact .top-contact__contact-list .contact__item:last-child {
  margin-bottom: 0;
}
#top-contact .top-contact__contact-list .contact__item-button {
  height: 13.85vw;
  border-radius: 9vw;
  font-size: var(--font-size-18);
}

/*==========================================
about
===========================================*/
/*
# about-service
------------------------*/
#about-service .service__title {
  margin-bottom: 16.1538%;
}
#about-service .service__card {
  margin-bottom: 19.2307%;
}
#about-service .service__card::before {
  position: absolute;
  content: "";
  z-index: 1;
}
#about-service .service__card:last-child {
  margin-bottom: 0;
}
#about-service .service__card--aircon::before {
  width: 26.7692%;
  height: 15vw;
  background: url(../img/about/service-aircon_ill.png) center/100% no-repeat;
  inset: -5.5% auto auto -7.6%;
}
#about-service .service__card--house-cleaning::before {
  width: 17.8461%;
  height: 17vw;
  background: url(../img/about/service-house-cleaning_ill.png) center/100% no-repeat;
  inset: -5.25% -4% auto auto;
}
#about-service .service__card-img {
  margin-bottom: 9.2307%;
}

/*
# about-policy
------------------------*/
#about-policy .policy__title {
  margin-bottom: 15.3846%;
}
#about-policy .policy__title .title-ja {
  line-height: 1.8;
  font-size: var(--font-size-25);
}
#about-policy .policy__title .title-ja span {
  font-size: var(--font-size-33);
}
#about-policy .policy__title em {
  z-index: 1;
}
#about-policy .policy__title em::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 70%;
  background: var(--accent-color);
  z-index: -1;
  inset: auto 0 0;
}
#about-policy .policy__item {
  margin-bottom: 11.5384%;
  padding-bottom: 11.5384%;
  background: url(../img/common/dotted_primary-light.svg) bottom center/100% repeat-x;
}
#about-policy .policy__item:last-child {
  margin-bottom: 0;
}
#about-policy .policy__item-title {
  width: 26.667vw;
  height: 26.667vw;
  font-size: var(--font-size-20);
}
#about-policy .policy__item-text {
  width: 64.4153%;
}

/*
# about-aircon
------------------------*/
#about-aircon {
  padding: 21.333% 0 28%;
  background-image: url(../img/common/white_frame.png), url(../img/about/aircon-btm_ill.png);
  background-position: 0 0, 100% 100%;
  background-repeat: no-repeat;
  background-size: 100%;
}
#about-aircon::before {
  position: absolute;
  content: "";
  width: 27.066%;
  height: 25vw;
  background: url(../img/about/aircon-top_ill.png) center/100% no-repeat;
  inset: 0 6.6666% auto auto;
}
#about-aircon .aircon__title {
  line-height: 1.3636363636;
  padding-top: 10%;
  margin-bottom: 10.769%;
}
#about-aircon .aircon__title .title-ja {
  font-size: var(--font-size-25);
}
#about-aircon .aircon__title .title-ja:first-line {
  font-size: var(--font-size-33);
}
#about-aircon .aircon__subtitle {
  font-size: var(--font-size-20);
  line-height: 1.9;
  text-align: center;
  background: url(../img/common/dotted_white.svg) bottom center/100% repeat-x;
  padding-bottom: 3.8461%;
  margin-bottom: 9.2307%;
}
#about-aircon .aircon__subtitle span {
  font-size: var(--font-size-25);
}

/*
# about-steps
------------------------*/
#about-steps .steps__title {
  margin-bottom: 15.3846%;
}
#about-steps .steps__item {
  padding: 0 0 16.1538% 21.5384%;
}
#about-steps .steps__item::before {
  width: 45px;
  height: 45px;
  position: absolute;
  font-size: var(--font-size-28);
  font-weight: var(--font-weight-black);
  content: counter(number);
  color: var(--primary-color);
  border-radius: 50%;
  border: 5px solid;
  background: var(--color-white);
  line-height: 1.2;
  text-align: center;
  inset: 0 auto auto 0;
  z-index: 1;
}
#about-steps .steps__item::after {
  position: absolute;
  content: "";
  inset: 0 auto auto 0;
  width: 5px;
  height: 100%;
  inset: 0 auto auto 6%;
  background: var(--primary-color);
}
#about-steps .steps__item:last-child {
  padding-bottom: 0;
}
#about-steps .steps__item:last-child::after {
  background: none;
}
#about-steps .steps__item-title {
  font-size: var(--font-size-22);
  padding: 0 4%;
  margin-bottom: 6.862%;
}

/*==========================================
service
===========================================*/
.service__pagenav {
  padding: 15.666% 11.333% 12.666%;
}
.service__pagenav .pagenav__item {
  margin-bottom: 9.4827%;
}
.service__pagenav .pagenav__item:last-child {
  margin-bottom: 0;
}
.service__pagenav .pagenav__item .pagenav__link::before {
  transform: rotate(90deg);
}

/*
# service-aicon
------------------------*/
#service-aircon::before {
  position: absolute;
  content: "";
  width: 23.0666%;
  height: 15vw;
  inset: 5vw auto auto 0;
  background: url(../img/service/aircon_ill.png) center/100% no-repeat;
  z-index: 1;
}

#service-house-cleaning::before {
  position: absolute;
  content: "";
  width: 15.4666%;
  height: 17vw;
  inset: 9vw 4% auto auto;
  background: url(../img/service/house-cleaning_ill.png) center/100% no-repeat;
  z-index: 1;
}

.service__section .service__img {
  margin-bottom: 10%;
}
.service__section .service__subtitle {
  text-align: center;
}
.service__section .service__text {
  margin-bottom: 16.923%;
}
.service__section .service__menu {
  padding: 10% 5.3846%;
}
.service__section .service__menu .menu__title {
  text-align: center;
  font-size: var(--font-size-20);
  margin-bottom: 2.5862%;
}
.service__section .service__menu .menu__title span::before, .service__section .service__menu .menu__title span::after {
  position: absolute;
  content: "";
  background: var(--body-font-color);
  width: 2px;
  height: 5vw;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.service__section .service__menu .menu__title span::before {
  left: -5vw;
  transform: rotate(-25deg);
}
.service__section .service__menu .menu__title span::after {
  right: -5vw;
  transform: rotate(25deg);
}
.service__section .service__menu .menu__item {
  border-bottom: 1px solid var(--color-gray);
  padding: 8.62% 0;
  font-size: var(--font-size-18);
  letter-spacing: 0;
}
.service__section .service__menu .menu__item-text {
  text-align: right;
  text-decoration: underline;
}
.service__section .service__menu .menu__notes {
  text-align: right;
  font-size: var(--font-size-14);
  margin-top: 7.7586%;
}

/*
# service-point
------------------------*/
#service-point {
  padding-bottom: 20.666%;
  background: url(../img/service/point-btm_ill.png) bottom center/100% no-repeat, url(../img/service/point_bg.jpg) center/cover no-repeat;
}
#service-point .point__title {
  margin-bottom: 14.6153%;
}
#service-point .point__list {
  gap: 22.5px 13%;
}
#service-point .point__list .point__item {
  width: 140px;
  height: 140px;
  text-align: center;
  line-height: 1.5625;
}

/*==========================================
case
===========================================*/
/*
# case-archive
------------------------*/
#case-archive .case__title {
  margin-bottom: 15.3846%;
}
#case-archive .case__list {
  gap: 7.6924%;
}
#case-archive .case__list .case__card {
  width: 46.1538%;
}
#case-archive .case__list .case__card-img {
  width: 100%;
  height: 26.67vw;
  margin-bottom: 3%;
}
#case-archive .case__list .case__card-title {
  font-size: var(--font-size-15);
}

.case__tags .case__tag {
  font-size: var(--font-size-15);
}
.case__tags .case__tag::before {
  content: "#";
  color: var(--accent-color);
}

/*
# case-detail
------------------------*/
#case-detail .case__title {
  margin-bottom: 4.6153%;
}
#case-detail .case__imgs {
  margin-bottom: 13.8461%;
}
#case-detail .case__imgs .com-img {
  width: 100%;
}
#case-detail .case__imgs .case__img--before {
  width: 64.6153%;
  margin: 0 auto;
}
#case-detail .case__imgs .case__img--before .com-img {
  height: 37.33vw;
  border-top-left-radius: 0;
}
#case-detail .case__imgs .case__img--before .com-img img {
  border-top-left-radius: 0;
}
#case-detail .case__imgs .case__img--before .case__img-title {
  width: 34%;
  font-size: var(--font-size-13);
  text-align: center;
  border-radius: 5px 5px 0 0;
}
#case-detail .case__imgs .case__img--after {
  width: 92.3076%;
  margin: 21.6666% auto 0;
}
#case-detail .case__imgs .case__img--after::before {
  position: absolute;
  content: "";
  inset: -40px 0 auto;
  margin: auto;
  vertical-align: middle;
  width: 3vw;
  height: 3vw;
  border-top: 3px solid var(--accent-color);
  border-right: 3px solid var(--accent-color);
  transform: rotate(135deg);
  transition: all 0.3s;
}
#case-detail .case__imgs .case__img--after .com-img {
  height: 53.33vw;
}

/*==========================================
company
===========================================*/
/*
# company-greetings
------------------------*/
#company-greetings {
  background-image: url(../img/company/greeting-top_bg.png);
  background-size: auto;
  background-position: 50% 0;
  background-repeat: no-repeat;
}
#company-greetings .greetings__title {
  margin-bottom: 14.6153%;
}
#company-greetings .greetings__subtitle small {
  font-size: var(--font-size-15);
  margin-left: 3%;
}
#company-greetings .greetings__img {
  margin-bottom: 8.4615%;
}
#company-greetings .greetings__table th {
  background: var(--color-white);
  color: var(--primary-color);
}
#company-greetings .greetings__table td {
  background: var(--primary-color);
  color: var(--color-white);
}

/*
# company-info
------------------------*/
#company-info .info__title {
  margin-bottom: 14.6153%;
}
#company-info .info__table {
  margin-bottom: 16.923%;
}

/*==========================================
news
===========================================*/
.column__wrap .column__list .column__post a {
  padding: 14% 0;
}
.column__wrap .column__list .column__post:first-child a {
  padding-top: 0;
}
.column__wrap .column__list .column__post-meta {
  margin-bottom: 4%;
}
.column__wrap .column__list .column__post-meta time {
  width: -moz-fit-content;
  width: fit-content;
  font-size: var(--font-size-11);
}
.column__wrap .column__list .column__post-meta .category-label {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 2vw;
  gap: 1vw 1.5vw;
}
.column__wrap .column__list .column__post-meta .category-label li {
  padding: 0 0.75vw;
  font-size: var(--font-size-11);
}
.column__wrap .column__list .column__post-title {
  font-size: var(--font-size-17);
  margin: 3% 0;
}
.column__wrap .column__list .column__post-body {
  font-size: var(--font-size-13);
}
.column__wrap .column__list .more-btn {
  width: 45%;
  font-size: 3.2vw;
  margin: inherit;
  margin-left: auto;
  font-weight: bold;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  box-sizing: border-box;
  padding: 3% 2%;
  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: 40%;
  height: 33vw;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-meta {
  width: 55%;
}

/*----------------------------------
  詳細ページのカテゴリー表示(タイトル下部)
  ----------------------------------*/
.single__post-meta {
  margin-bottom: 10%;
}
.single__post-meta time {
  font-size: var(--font-size-13);
  width: 27%;
  font-weight: normal;
  padding: 0.5vw 0;
}
.single__post-meta .category-label {
  width: 70%;
  gap: 1vw;
}
.single__post-meta .category-label li {
  font-size: var(--font-size-13);
}
.single__post-meta .category-label li a {
  padding: 0 1vw;
}

/*==========================================
  contact
  ===========================================*/
#contact .contact__form {
  margin-bottom: 15%;
}
#contact .contact__form-item .contact__form-input {
  padding: 3% 0;
}
#contact .contact__form-item .contact__form-input .contact__form-list li {
  margin-bottom: 5%;
}
#contact .contact__form-item .contact__form-input .contact__form-list li:last-child {
  margin-bottom: 0;
}
#contact .contact__form-item .contact__form-input textarea {
  height: 37vw;
}
#contact .contact__form-item.contact__form-privacy .contact__form-label {
  text-align: left;
}
#contact .contact__form-value {
  padding: 3%;
}
#contact .contact__form-select {
  width: 50%;
  position: relative;
}
#contact .contact__form-select::after {
  inset: 0 5% 0 auto;
  width: 1.5vw;
  height: 1.5vw;
}
#contact .contact__form-select select {
  padding: 6% 7% 6% 4%;
}
#contact .contact__form #pc01,
#contact .contact__form #pc02 {
  width: 95px;
}
#contact .contact__form #date1,
#contact .contact__form #date2,
#contact .contact__form #date3 {
  width: 73%;
}
#contact .contact__form #address {
  margin-top: 4%;
}
#contact .contact__form .upload-item-wrap .select-img-wrap {
  display: flex;
  justify-content: space-between;
}
#contact .contact__form .upload-item-wrap .thumb {
  width: 45%;
  margin-right: 25px;
}
#contact .contact__form .upload-item-wrap .ancion-btn-wrap {
  width: 50%;
}
#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 .contact__submits-wrap {
  margin-top: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5vw;
}
#contact .contact__submits-wrap .contact__submits-check {
  width: 75%;
}
#contact .contact__submits-wrap .contact__submits-back {
  width: 52%;
}
#contact .contact__submits-wrap .contact__submits-send {
  width: 40%;
}
#contact input[type=button],
#contact input[type=submit],
#contact .contact-submits-wrap button {
  padding: 6% 2%;
}
#contact input[type=submit],
#contact select {
  -webkit-appearance: none;
}

/*==========================================
  privacy
  ===========================================*/
#privacy .privacy__content {
  margin-bottom: 15%;
  text-align: left;
}
#privacy .privacy__content:last-child {
  margin-bottom: 0;
}

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

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