@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: 15px;
}
.c-contact__list .contact__button {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 30px;
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-bold);
}
.c-contact__list .contact__button:hover {
  transform: scale(0.95);
}
.c-contact__list .contact__button-mail, .c-contact__list .contact__button-line {
  width: 250px;
  padding-left: 25px;
}
.c-contact__list .contact__button-mail {
  color: var(--color-white);
  background: url(../../img/components/contact_list/mail_ic.png) left 15px center no-repeat, var(--body-font-color);
}
.c-contact__list .contact__button-line {
  background: url(../../img/common/sns/LINE_logo.svg) left 20px center/30px no-repeat, #ccedfe;
}
.c-contact__list .contact__button-official-site {
  background: var(--primary-color);
  width: 200px;
  color: var(--color-white);
}

/*
# line-section
------------------------*/
.c-line__section {
  background: url(../../img/components/line/line_bg.jpg) center/cover no-repeat;
}
.c-line__section .line__list {
  width: 980px;
  margin: 0 auto;
  position: relative;
}
.c-line__section .line__list::before {
  position: absolute;
  content: "";
  width: 255px;
  height: 347px;
  background: url(../../img/components/line/line-list_ill.png) center/100% no-repeat;
  inset: auto -30px -40px auto;
  z-index: 1;
}
.c-line__section .line__list .line__item {
  margin-bottom: 20px;
  border-radius: 45px;
  background: var(--color-light-blue);
  border: 6px solid var(--color-white);
  padding: 20px 30px 20px 180px;
  text-shadow: var(--color-white) 3px 0px, var(--color-white) -3px 0px, var(--color-white) 0px -3px, var(--color-white) 0px 3px, var(--color-white) 3px 3px, var(--color-white) -3px 3px, var(--color-white) 3px -3px, var(--color-white) -3px -3px, var(--color-white) 1px 3px, var(--color-white) -1px 3px, var(--color-white) 1px -3px, var(--color-white) -1px -3px, var(--color-white) 3px 1px, var(--color-white) -3px 1px, var(--color-white) 3px -1px, var(--color-white) -3px -1px;
  font-size: var(--font-size-22);
  font-weight: var(--font-weight-black);
  position: relative;
}
.c-line__section .line__list .line__item::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.c-line__section .line__list .line__item-camera::before {
  width: 70px;
  height: 52px;
  background: url(../../img/components/line/line-camera_ic.png) center/100% no-repeat;
  left: 90px;
}
.c-line__section .line__list .line__item-chat::before {
  width: 78px;
  height: 71px;
  background: url(../../img/components/line/line-chat_ic.png) center/100% no-repeat;
  left: 85px;
}
.c-line__section .line__list .line__item-calendar::before {
  width: 67px;
  height: 72px;
  background: url(../../img/components/line/line-calendar_ic.png) center/100% no-repeat;
  left: 95px;
}
.c-line__section .line__list .line__item-tel::before {
  width: 59px;
  height: 74px;
  background: url(../../img/components/line/line-tel_ic.png) center/100% no-repeat;
  left: 100px;
}
.c-line__section .line__list .line__item span {
  color: var(--primary-color);
  font-size: var(--font-size-26);
}
.c-line__section .line__list .line__item:last-child {
  margin-bottom: 0;
}
.c-line__section .line__button {
  margin-top: 50px;
}

/*
# com-tel
------------------------*/
.com-tel {
  line-height: 1.1;
}
.com-tel .tel__num {
  font-weight: var(--font-weight-black);
  font-size: var(--font-size-30);
}
.com-tel .tel__num small {
  font-size: var(--font-size-16);
}
.com-tel .tel__text {
  display: block;
}

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

.com-text {
  line-height: 2.2;
  letter-spacing: var(--body-letter-spacing);
}
.com-text.pc-center {
  text-align: center;
}

#g-map h4 {
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-bold);
  margin-bottom: 5px;
}
#g-map h4 span {
  padding-left: 20px;
}
#g-map .map {
  height: 400px;
  /*==========================================
  iframe レスポンシブ　アスペクト比を保ちながら縦横を伸縮
  ===========================================*/
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
#g-map .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/*
# com-bg--pattern
------------------------*/
.com-bg--pattern {
  background: url(../../img/common/com-top_deco.png) right 7.2916% top 135px no-repeat, url(../../img/common/com-top_bg.png) top center/100% no-repeat, url(../../img/common/com_bg.jpg) center;
}

/*
# bg-top--wave
------------------------*/
.bg-top--wave {
  position: relative;
  background: var(--color-light-blue);
}
.bg-top--wave::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 336px;
  background: url(../../img/common/top_wave.png) center bottom/100% no-repeat;
  inset: -335px 0 auto;
}

.z-2 {
  position: relative;
  z-index: 2;
}

/*
# bg-bottom--wave
------------------------*/
.bg-bottom--wave::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 336px;
  background: url(../../img/common/btm_wave.png) center top/100% no-repeat;
  inset: auto 0 -336px;
}

/*
# com-button
------------------------*/
.com-button {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: var(--font-size-20);
  color: var(--color-white);
  font-weight: var(--font-weight-black);
  border: 6px solid;
  border-radius: 45px;
  background: var(--accent-color);
}
.com-button.bs-icon--chevron-right::before {
  inset: 0 5.0925% 0 auto;
}
.com-button:hover {
  opacity: 1;
  transform: scale(0.95);
}
.com-button.bg-color--blue-gradation {
  background: var(--blue-gradation);
}
.com-button.bg-color--blue-gradation::before {
  color: var(--primary-color);
}
.com-button.bg-color--line-color {
  background: var(--line-color);
}
.com-button.bg-color--line-color::before {
  color: var(--line-color);
}
.com-button.height-150 {
  height: 150px;
  border-radius: 75px;
  font-size: var(--font-size-30);
  line-height: 1.5;
}

/*
# bootstrapアイコン
------------------------*/
.bs-icon--chevron-right::before {
  content: "\f285";
  font-weight: inherit;
  background: var(--color-white);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  color: var(--accent-color);
  font-weight: var(--font-weight-black);
  font-size: var(--font-size-20);
}

/*
# shadow-md
------------------------*/
.shadow-md {
  box-shadow: 2px 2px 20px rgba(var(--body-font-color-rgb), 0.15);
}

/*
# rounded
------------------------*/
.rounded-10 {
  border-radius: 10px;
}

.rounded-22 {
  border-radius: 22px;
}

.rounded-30 {
  border-radius: 30px;
}

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

.section-title {
  text-align: center;
  line-height: 1.6;
  margin-bottom: 55px;
  font-weight: var(--font-weight-black);
  text-shadow: var(--color-white) 3px 0px, var(--color-white) -3px 0px, var(--color-white) 0px -3px, var(--color-white) 0px 3px, var(--color-white) 3px 3px, var(--color-white) -3px 3px, var(--color-white) 3px -3px, var(--color-white) -3px -3px, var(--color-white) 1px 3px, var(--color-white) -1px 3px, var(--color-white) 1px -3px, var(--color-white) -1px -3px, var(--color-white) 3px 1px, var(--color-white) -3px 1px, var(--color-white) 3px -1px, var(--color-white) -3px -1px;
}
.section-title span {
  display: block;
  letter-spacing: var(--body-letter-spacing);
}
.section-title .title-en {
  font-size: var(--font-size-28);
  color: var(--primary-color);
}
.section-title .title-ja {
  font-size: var(--font-size-48);
}
.section-title.top-title .title-ja {
  font-size: var(--font-size-58);
}
.section-title.title-has-deco .title-ja {
  display: inline-block;
  position: relative;
}
.section-title.title-has-deco .title-ja:before, .section-title.title-has-deco .title-ja:after {
  position: absolute;
  content: "";
  width: 39px;
  height: 64px;
  background: url(../../img/common/section-ttl_deco.png) center/100% no-repeat;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.section-title.title-has-deco .title-ja::before {
  left: -65px;
}
.section-title.title-has-deco .title-ja::after {
  right: -65px;
  transform: scale(-1, 1);
}

.headline-title {
  font-size: var(--font-size-26);
  font-weight: var(--font-weight-bold);
  border-bottom: 1px solid var(--light-steel-blue);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

/*==========================================
header
===========================================*/
#header {
  width: 100%;
  position: absolute;
  inset: 0 0 auto;
  padding: 15px 1.5625% 0;
  z-index: 1001;
}
#header .header__right {
  width: 515px;
}
#header .header__contact-list {
  justify-content: flex-end;
}
#header .header__nav {
  margin-top: 15px;
}
#header .header__nav-list {
  gap: 10px 20px;
}
#header .header__nav-link {
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-bold);
  /*==========================================
  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(--body-font-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(--body-font-color);
}
#header .header__nav-link:hover::before, #header .header__nav-link:hover::after {
  width: 50%;
  border-bottom: 1px solid var(--body-font-color);
}
#header .header__nav-link.current {
  border-bottom: 1px solid var(--body-font-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
===========================================*/
.page-mv {
  position: relative;
  z-index: 1;
}
.page-mv::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 336px;
  background: url(../../img/top/mv/mv_wave.png) bottom center/100% no-repeat;
  inset: auto 0 0;
}

#top-mv {
  height: clamp(650px, 48.437vw, 930px);
  background: url(../../img/top/mv/mv_deco.png) center/cover no-repeat;
}
#top-mv .mv__catch {
  position: absolute;
  inset: auto auto 10.215% 5.20833%;
  margin: auto 0;
  width: 29.5833%;
}
#top-mv .mv__img {
  position: absolute;
  inset: 0 0 auto auto;
  width: 62.8125%;
}

/*==========================================
footer
===========================================*/
#footer {
  padding: 65px 0 60px;
}
#footer .footer__left {
  width: 525px;
}
#footer .footer__left .footer__logo {
  display: inline-block;
  margin-bottom: 20px;
}
#footer .footer__left .footer__address {
  font-size: var(--font-size-14);
  margin-bottom: 40px;
}
#footer .footer__right {
  width: 490px;
}
#footer .footer__right .footer__tel {
  text-align: right;
  margin-bottom: 60px;
}
#footer .footer__right .footer__nav {
  margin-bottom: 65px;
}
#footer .footer__right .footer__nav-list {
  gap: 5px 25px;
}
#footer .footer__right .footer__nav-link {
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-bold);
}
#footer .footer__right .footer__nav-link:hover {
  text-decoration: underline;
}

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

/*==========================================
sv
===========================================*/
.lower-sv {
  height: clamp(530px, 34.3745vw, 660px);
  background: url(../../img/sv/sv_deco.png) center/cover no-repeat;
}
.lower-sv::after {
  position: absolute;
  content: "";
  width: 61.302%;
  height: 79.3939%;
  inset: auto 1.5625% 0 auto;
  background: url(../../img/sv/sv-img_deco.png) center/100% no-repeat;
}
.lower-sv .sv__title {
  width: 82.032125%;
  text-align: left;
  position: absolute;
  inset: auto 0 30.3%;
  margin: 0 auto;
  z-index: 10;
}
.lower-sv .sv__title span {
  display: block;
}
.lower-sv .sv__title .title-ja {
  font-size: var(--font-size-48);
  font-weight: var(--font-weight-black);
  text-shadow: 0px 8px 1px var(--primary-color-light);
}
.lower-sv .sv__title .title-en {
  font-size: var(--font-size-22);
  font-family: var(--sub-font-family);
  color: var(--primary-color);
}
.lower-sv .sv__img {
  width: 48.75%;
  height: 68.1818%;
  position: absolute;
  inset: auto 6.7708% 6.0606% auto;
}

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

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

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

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

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

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

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

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

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

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

/*==========================================
top
===========================================*/
.com-bg-top--pattern {
  background: url(../../img/common/com-top_deco.png) right 7.2916% top 135px no-repeat, url(../../img/common/com-top_bg.png) top center/100% no-repeat, url(../../img/top/about-btm_deco.png) bottom center/100% no-repeat, url(../../img/common/com_bg.jpg) center;
}

/*
# top-about
------------------------*/
#top-about {
  padding: 45px 0 130px;
}
#top-about .about__inbox {
  width: clamp(1080px, 66.666%, 1280px);
}
#top-about .about__list {
  margin-bottom: 50px;
  gap: 39px;
}
#top-about .about__title {
  padding-top: 240px;
  position: relative;
  background: url(../../img/top/about-ttl_ill.png) top right/28.3593% no-repeat;
}
#top-about .about__text strong {
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-22);
}
#top-about .about__button {
  width: 1080px;
  margin: 70px auto 0;
}

/*
# top-links
------------------------*/
#top-links {
  background: url(../../img/top/links_bg.jpg) center/cover no-repeat;
}
#top-links .links__list {
  gap: 45px 80px;
}
#top-links .links__list .links__card {
  width: 500px;
}
#top-links .links__list .links__card-link {
  display: block;
  background: var(--color-white);
  padding: 30px 35px 85px;
  text-align: center;
}
#top-links .links__list .links__card-link::before {
  inset: auto 0 30px;
  margin: 0 auto;
  background: var(--accent-color);
  color: var(--color-white);
}
#top-links .links__list .links__card-link:hover {
  opacity: 0.9;
  transform: translateY(-15px);
}
#top-links .links__list .links__card-img {
  margin-bottom: 20px;
}
#top-links .links__list .links__card-img img {
  border-radius: 16px;
}
#top-links .links__list .links__card-title {
  margin-bottom: 25px;
}

/*
# top-voice
------------------------*/
#top-voice {
  background: url(../../img/top/voice_bg.jpg) center/cover no-repeat;
}
#top-voice .voice__inbox {
  width: 1280px;
}
#top-voice .voice__list {
  background: var(--color-white);
  padding: 70px 100px;
  position: relative;
  margin-bottom: 235px;
}
#top-voice .voice__list::before {
  position: absolute;
  content: "";
  width: 667px;
  height: 130px;
  inset: auto 0 -190px;
  margin: 0 auto;
  background: url(../../img/top/voice_arr.png) center/100% no-repeat;
}
#top-voice .voice__list .voice__card:nth-child(1) .voice__card-title::before {
  width: 128px;
  height: 155px;
  background: url(../../img/top/voice-01_ill.png) center/100% no-repeat;
}
#top-voice .voice__list .voice__card:nth-child(2) .voice__card-title::before {
  width: 132px;
  height: 153px;
  background: url(../../img/top/voice-02_ill.png) center/100% no-repeat;
}
#top-voice .voice__list .voice__card:nth-child(3) .voice__card-title::before {
  width: 134px;
  height: 159px;
  background: url(../../img/top/voice-03_ill.png) center/100% no-repeat;
}
#top-voice .voice__list .voice__card:nth-child(4) .voice__card-title::before {
  width: 129px;
  height: 158px;
  background: url(../../img/top/voice-04_ill.png) center/100% no-repeat;
}
#top-voice .voice__button {
  width: 1080px;
  margin: 0 auto;
}

.voice__list {
  gap: 40px;
}
.voice__list .voice__card {
  width: 520px;
  background: var(--primary-color-light);
}
.voice__list .voice__card-title {
  border-radius: 22px 22px 0 0;
  background: var(--primary-color);
  color: var(--color-white);
  font-size: var(--font-size-30);
  font-weight: var(--font-weight-black);
  display: flex;
  align-items: center;
  padding: 0 35px;
  height: 170px;
  line-height: 1.6;
  position: relative;
}
.voice__list .voice__card-title::before {
  position: absolute;
  content: "";
  inset: auto 20px 0 auto;
}
.voice__list .voice__card-text {
  padding: 25px 35px;
}

/*
# top-news
------------------------*/
#top-news .news__inbox {
  position: relative;
}
#top-news .news__inbox::before {
  position: absolute;
  content: "";
  width: 360px;
  height: 235px;
  background: url(../../img/top/news_ill.png) center/100% no-repeat;
  inset: -98px auto auto -135px;
}
#top-news .news__post {
  margin-bottom: 20px;
}
#top-news .news__post:last-child {
  margin-bottom: 0;
}
#top-news .news__post-link {
  background: var(--color-white);
  padding: 20px 30px;
  border-radius: 23px;
  row-gap: 10px;
}
#top-news .news__post-link:hover {
  transform: scale(0.97);
  box-shadow: none;
  background: var(--primary-color-light);
  opacity: 1;
}
#top-news .news__post-date {
  width: 95px;
}
#top-news .news__post-tags {
  width: calc(100% - 105px);
  gap: 10px;
  color: var(--accent-color);
}
#top-news .news__post-title {
  width: 100%;
}
#top-news .news__button {
  margin-top: 50px;
}

/*==========================================
about
===========================================*/
/*
# about-area
------------------------*/
#about-area .area__title .title-ja {
  font-size: var(--font-size-46);
}
#about-area .area__inner {
  background: var(--color-white);
  padding: 35px 60px;
}
#about-area .area__inner .area__inner-content {
  width: 600px;
}
#about-area .area__inner .area__item {
  margin-bottom: 20px;
  background: var(--primary-color-light);
  padding: 15px 25px;
}
#about-area .area__inner .area__item:last-child {
  margin-bottom: 0;
}
#about-area .area__inner .area__item-title {
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-20);
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--light-steel-blue);
}

/*
# about-reason
------------------------*/
#about-reason .reason__part {
  background: var(--color-white);
  padding: 35px 50px;
  margin-bottom: 55px;
}
#about-reason .reason__part:last-child {
  margin-bottom: 0;
}
#about-reason .reason__part-title {
  font-size: var(--font-size-26);
  font-weight: var(--font-weight-bold);
  border-bottom: 1px solid var(--light-steel-blue);
  padding: 5px 0 5px 50px;
  margin-bottom: 20px;
  background: url(../../img/about/reason-item-ttl_ic.png) left 10px top 18px no-repeat;
}
#about-reason .reason__part-list {
  gap: 18px;
}
#about-reason .reason__part-list img {
  border: 4px solid var(--primary-color-light);
}
#about-reason .reason__part .voice__list .voice__card {
  width: 470px;
}
#about-reason .reason__part .voice__list .voice__card-title {
  height: 140px;
  font-size: var(--font-size-26);
}
#about-reason .reason__part .voice__list .voice__card:nth-child(1) .voice__card-title::before {
  width: 106px;
  height: 121px;
  background: url(../../img/about/reason-item02_ill01.png) center/100% no-repeat;
}
#about-reason .reason__part .voice__list .voice__card:nth-child(2) .voice__card-title::before {
  width: 114px;
  height: 133px;
  background: url(../../img/about/reason-item02_ill02.png) center/100% no-repeat;
}
#about-reason .reason__part .voice__button {
  margin-top: 45px;
}
#about-reason .reason__part-gallery {
  gap: 45px;
  padding: 0 115px;
}
#about-reason .reason__part-gallery .reason__gallery-item {
  width: 300px;
}
#about-reason .reason__part-gallery .reason__gallery-item:nth-child(1) {
  width: 428px;
}
#about-reason .reason__part-gallery .reason__gallery-item img {
  box-shadow: 0 0 8px rgba(var(--color-black-rgb), 0.1);
}

/*==========================================
reform
===========================================*/
/*
# com-feature__section
------------------------*/
.com-feature__section .feature__list {
  position: relative;
  background: var(--color-white);
  padding: 30px 50px;
  margin-bottom: 155px;
}
.com-feature__section .feature__list::before, .com-feature__section .feature__list::after {
  position: absolute;
  content: "";
}
.com-feature__section .feature__list::after {
  width: 667px;
  height: 130px;
  margin: 0 auto;
  background: url(../../img/reform/features_arr.png) center/100% no-repeat;
  inset: auto 0 -130px;
}
.com-feature__section .feature__list .feature__item {
  border-bottom: 1px solid var(--light-steel-blue);
  font-size: var(--font-size-22);
  font-weight: var(--font-weight-bold);
  padding: 15px 0 15px 65px;
  background: url(../../img/reform/features-item_ic.png) top 24px left 35px no-repeat;
}
.com-feature__section .feature__list .feature__item:last-child {
  border-bottom: none;
}
.com-feature__section .feature__service-text {
  margin-bottom: 70px;
}
.com-feature__section .feature__service-box {
  padding: 35px 50px;
  background: var(--color-white);
}
.com-feature__section .feature__service-box .feature__box-title {
  text-align: center;
}
.com-feature__section .feature__service-box .feature__box-list {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.com-feature__section .feature__service-box .feature__box-list .feature__box-item {
  margin-bottom: 5px;
}
.com-feature__section .feature__service-box .feature__box-list .feature__box-item:last-child {
  margin-bottom: 0;
}
.com-feature__section .feature__service-box .feature__box-list .feature__box-item-title {
  color: var(--accent-color);
}
.com-feature__section .feature__service-box .feature__box-list .feature__box-item-title::after {
  content: "：";
  color: var(--body-font-color);
}

#reform-feature .feature__list::before {
  width: 450px;
  height: 314px;
  background: url(../../img/reform/features-list_ill.png) center/100% no-repeat;
  inset: auto 23px 77px auto;
}

/*
# reform-price
------------------------*/
#reform-price {
  background: var(--primary-color-light);
}
#reform-price::before {
  background-image: url(../../img/reform/top_wave.png);
}
#reform-price .price__table-wrap .price__table {
  background: var(--color-white);
}
#reform-price .price__table-wrap .price__table th,
#reform-price .price__table-wrap .price__table td {
  text-align: center;
  vertical-align: middle;
  padding: 20px;
  font-size: var(--font-size-20);
}
#reform-price .price__table-wrap .price__table th:not(:last-child),
#reform-price .price__table-wrap .price__table td:not(:last-child) {
  border-right: 1px solid var(--light-steel-blue);
}
#reform-price .price__table-wrap .price__table .price__thead-item {
  border-bottom: 1px solid var(--light-steel-blue);
}
#reform-price .price__table-wrap .price__table .price__thead-item th {
  background: var(--table-head-color);
  font-weight: var(--font-weight-bold);
}
#reform-price .price__table-wrap .price__table .price__thead-item th:first-child {
  width: 70%;
  border-radius: 22px 0 0 0;
}
#reform-price .price__table-wrap .price__table .price__thead-item th:last-child {
  width: 30%;
  border-radius: 0 22px 0 0;
}
#reform-price .price__table-wrap .price__table .price__tbody-item {
  border-bottom: 1px solid var(--light-steel-blue);
}
#reform-price .price__table-wrap .price__table .price__tbody-item:last-child {
  border-bottom: none;
}

/*
# reform-flow
------------------------*/
#reform-flow {
  background: url(../../img/common/com_bg.jpg);
}
#reform-flow .flow__list {
  position: relative;
  z-index: 1;
}
#reform-flow .flow__list::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 100%;
  z-index: -1;
  margin: 0 auto;
  inset: 0;
  background: var(--accent-color);
}
#reform-flow .flow__list .flow__item {
  background: var(--color-white);
  margin-bottom: 45px;
}
#reform-flow .flow__list .flow__item:last-child {
  margin-bottom: 0;
}
#reform-flow .flow__list .flow__item-title {
  font-size: var(--font-size-30);
  font-weight: var(--font-weight-black);
  background: var(--primary-color);
  color: var(--color-white);
  padding: 10px 0 10px 125px;
  border-radius: 22px 22px 0 0;
}
#reform-flow .flow__list .flow__item-title::before {
  width: 71px;
  height: 70px;
  background: url(../../img/reform/flow-item-num_bg.png) center/100% no-repeat;
  position: absolute;
  inset: -15px auto auto 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-30);
  font-weight: var(--font-weight-black);
}
#reform-flow .flow__list .flow__item-content {
  padding: 20px 20px 30px 60px;
}

/*==========================================
interior
===========================================*/
#interior-feature .feature__list::before {
  width: 368px;
  height: 421px;
  background: url(../../img/interior/features-list_ill.png) center/100% no-repeat;
  inset: auto 98px 20px auto;
}

/*
# interior-help
------------------------*/
#interior-help {
  background: var(--primary-color-light);
}
#interior-help::before {
  background-image: url(../../img/reform/top_wave.png);
}
#interior-help .help__list {
  gap: 26.666px;
}
#interior-help .help__list .help__card {
  width: 250px;
}
#interior-help .help__list .help__card-icon {
  width: 100%;
  height: 250px;
  border-radius: 50%;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-yellow-light);
}
#interior-help .help__list .help__card-text {
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-bold);
  text-align: center;
  line-height: 1.6;
}

/*
# interior-contact
------------------------*/
#interior-contact {
  background: url(../../img/common/com_bg.jpg);
}
#interior-contact .contact__box {
  background: var(--color-white);
  padding: 35px 50px 40px;
}
#interior-contact .contact__box .contact__box-text {
  margin-bottom: 30px;
}
#interior-contact .contact__box .contact__contact-list {
  justify-content: center;
}
#interior-contact .contact__box .contact__contact-list .contact__contact-item {
  width: 200px;
}

/*==========================================
company
===========================================*/
/*
# company-msg
------------------------*/
#company-msg .msg__content {
  padding: 35px 50px;
  background: var(--color-white);
}
#company-msg .msg__content-text:nth-last-child(2) {
  margin-bottom: 75px;
}
#company-msg .msg__content .representative-name {
  color: var(--primary-color);
}

/*
# company-profile
------------------------*/
#company-profile {
  background: url(../../img/common/com_bg.jpg);
}
#company-profile .profile__table {
  background: var(--color-white);
  padding: 35px 50px;
  margin-bottom: 125px;
}

/*==========================================
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__form {
  width: 980px;
  margin: 0 auto 55px;
}
#contact .contact__form-item .contact__form-label {
  margin-bottom: 20px;
}
#contact .contact__form-item .contact__form-label .required {
  margin-left: 10px;
}
#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フレーム時)
  ===========================================*/