@charset "UTF-8";
html {
  scroll-padding-top: 16vw;
}

/*==========================================
パンくずリスト
===========================================*/
div .bread {
  display: none;
}

/*==========================================
テーブルレイアウト
===========================================*/
.com-table {
  text-align: left;
}
.com-table tr {
  display: block;
  padding: 6% 0;
}
.com-table tr th,
.com-table tr td {
  display: block;
}
.com-table tr th {
  margin-bottom: 4%;
}
.com-table tr td a[href^="tel:"],
.com-table tr td a[href^="mailto:"] {
  text-decoration: underline;
}

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

.section-title {
  text-align: center;
  font-size: var(--font-size-24);
  font-weight: var(--font-weight-bold);
  border-bottom: 1px solid var(--primary-color);
  position: relative;
  margin-bottom: 8%;
  line-height: 1.6;
  padding-bottom: 6%;
}
.section-title::before {
  position: absolute;
  content: "";
  width: 20%;
  height: 1vw;
  background: var(--primary-color);
  inset: auto 0 -1px;
  margin: 0 auto;
}
.section-title span {
  color: var(--primary-color);
}

.headline-title {
  font-size: var(--font-size-20);
  border-bottom: 1px solid var(--primary-color);
  font-weight: var(--font-weight-bold);
  padding: 2% 0;
  margin-bottom: 3%;
}

/*==========================================
共通ブロック・要素
===========================================*/
.com-content {
  text-align: left;
}
.com-content p {
  margin-bottom: 8%;
  line-height: var(--body-line-height);
  letter-spacing: var(--body-letter-spacing);
}
.com-content p:last-child {
  margin-bottom: 0;
}

#g-map h4 {
  font-size: var(--font-size-17);
  font-weight: var(--font-weight-bold);
  margin-bottom: 4%;
}
#g-map h4 span {
  padding-left: 5%;
}
#g-map .map {
  /*==========================================
  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-button {
  background: var(--accent-color);
  color: var(--color-white);
  font-size: var(--font-size-16);
  font-weight: var(--font-weight-bold);
  height: 16vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}
.com-button:hover {
  transform: scale(1.02);
}
.com-button::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 2vw 0px 2vw 1.5vw;
  border-color: transparent transparent transparent var(--color-white);
  z-index: 1;
  inset: 0 4vw 0 auto;
  margin: auto 0;
}

/*==============================================
ドロワーメニュー
==============================================*/
/*drawer btn 上下左右で設定可能
------------------------------------ */
.sp-menu-btn-wrp {
  top: 1vw;
  right: 3%;
  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: 14.5vw;
  height: 14.5vw;
}
.sp-menu-btn-wrp .sp-menu-btn span {
  width: 70%;
  height: 2px;
  background: var(--primary-color);
}
.sp-menu-btn-wrp .sp-menu-btn .top {
  top: 4.5vw;
}
.sp-menu-btn-wrp .sp-menu-btn .middle {
  top: 0;
  bottom: 0;
}
.sp-menu-btn-wrp .sp-menu-btn .bottom {
  top: 9.5vw;
}
.sp-menu-btn-wrp .sp-menu-btn-txt {
  color: var(--color-white);
  top: -2vw;
  font-size: var(--font-size-10);
}

.sp-menu-btn.active .top {
  transform: translateY(2.5vw) translateX(0px) rotate(45deg);
}

.sp-menu-btn.active .bottom {
  transform: translateY(-2.75vw) translateX(0px) rotate(-45deg);
}

/*  drawer inbox
------------------------------------ */
#drawer-nav {
  padding: 8% 6% 15%;
  background: var(--color-white);
}
#drawer-nav .drawer-logo {
  width: 40%;
  margin-bottom: 10%;
  text-align: left;
}
#drawer-nav nav {
  margin-bottom: 10%;
}
#drawer-nav nav .drawer-link {
  padding: 6% 0;
  border-bottom: 1px solid var(--form-border-color);
  font-size: var(--font-size-17);
}
#drawer-nav nav .drawer-dropdown {
  padding: 3% 12% 3% 0;
}
#drawer-nav nav .drawer-dropdown span {
  display: block;
}
#drawer-nav nav .drawer-dropdown span:before, #drawer-nav nav .drawer-dropdown span:after {
  background: var(--color-black);
}
#drawer-nav nav .current {
  padding-left: 11%;
  position: relative;
  text-decoration: underline;
  color: var(--primary-color);
  border-color: var(--primary-color);
}
#drawer-nav nav .current::before, #drawer-nav nav .current::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 3vw;
  height: 3vw;
  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 nav .current::before {
  left: 0;
}
#drawer-nav nav .current::after {
  left: 3%;
}
#drawer-nav nav .current span:after {
  opacity: 0 !important;
}
#drawer-nav nav .drawer-dropdown-bx {
  margin: 3% 0;
  padding-left: 4%;
  box-sizing: border-box;
}
#drawer-nav nav .drawer-dropdown-bx > li > .drawer-link:before {
  border-left: 1px solid var(--body-font-color);
  border-bottom: 1px solid var(--body-font-color);
}
#drawer-nav nav .drawer-dropdown-bx > li > .drawer-link span {
  padding: 0 0 0 5%;
}
#drawer-nav .drawer__contact-list {
  margin-bottom: 7%;
}
#drawer-nav .drawer__subpage {
  margin-top: 7%;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  font-size: var(--font-size-12);
  gap: 4vw;
}
#drawer-nav .drawer__subpage-item a {
  text-decoration: underline;
}

/*==========================================
コンポーネントファイル
===========================================*/
.c-contact__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4vw;
}
.c-contact__list .com-tel {
  line-height: 1.3;
}
.c-contact__list .com-tel .tel__num {
  font-size: var(--font-size-26);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0;
  padding-left: 5vw;
  background: url(../img/common/tel-ic_orange.png) left center/3vw no-repeat;
}
.c-contact__list .com-tel .tel__text {
  display: block;
}
.c-contact__list .com-tel.tel-color--white .tel__num {
  color: var(--color-white);
  background: url(../img/common/tel-ic_white.png) left center/3vw no-repeat;
}

/*==========================================
header
===========================================*/
#header {
  border-bottom: 1px solid var(--primary-color);
  background: var(--color-white);
  padding: 3% 4%;
}
#header .header__logo {
  width: 37%;
  line-height: 1;
}
#header .header__right {
  display: none;
}

/*==========================================
mv
===========================================*/
#top-mv {
  position: relative;
  height: calc(100vh - 16vw);
  height: calc(100svh - 16vw);
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/top/mv/mv_bg.jpg) center left 5%/cover no-repeat;
}
#top-mv .mv__catch {
  width: 85%;
  margin: 0 auto;
}

/*==========================================
top
===========================================*/
/*
# top-greeting
------------------------*/
#top-greeting {
  padding: 18% 0;
  background: url(../img/top/greeting_bg.jpg) center/cover no-repeat;
  color: var(--color-white);
}

/*
# top-check
------------------------*/
#top-check {
  padding: 18% 4%;
}
#top-check .inbox {
  padding: 12% 0;
}
#top-check .check__num-list {
  position: relative;
  height: 80vw;
  width: 100%;
  margin: 0 auto;
  background: url(../img/top/check-human_ill.png) bottom center/90% no-repeat, url(../img/top/check-house_ill.png) top center/90% no-repeat;
}
#top-check .check__num-list .check__num {
  width: 10vw;
  height: 10vw;
  position: absolute;
  z-index: 10;
}
#top-check .check__num-list .check__num-01 {
  inset: auto auto 5vw 21%;
}
#top-check .check__num-list .check__num-02 {
  inset: auto 21% 5vw auto;
}
#top-check .check__num-list .check__num-03 {
  inset: 8vw auto auto 40%;
}
#top-check .check__num-list .check__num-04 {
  inset: 6vw 21% auto auto;
}
#top-check .check__num-list .check__num-05 {
  inset: 32vw auto auto 16%;
}
#top-check .check__num-list .check__num-06 {
  inset: auto auto 27vw 41%;
}
#top-check .check__num-list .check__num-07 {
  inset: auto 15% 35vw auto;
}
#top-check .check__num-list .check__num a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  background: var(--color-white);
  border-radius: 50%;
  font-size: var(--font-size-20);
  font-weight: var(--font-weight-bold);
}
#top-check .check__content-list .check__content-item {
  width: 85%;
  margin: 0 auto 10%;
  background: var(--color-white);
  padding: 5%;
  text-align: center;
}
#top-check .check__content-list .check__content-item:last-child {
  margin-bottom: 0;
}
#top-check .check__content-list .check__content-item:nth-child(1), #top-check .check__content-list .check__content-item:nth-child(4), #top-check .check__content-list .check__content-item:nth-child(6) {
  margin-top: 50px;
}
#top-check .check__content-list .check__content-item::before {
  width: 15vw;
  height: 15vw;
  position: absolute;
  inset: 0 auto auto 0;
  background: var(--primary-color);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-25);
  font-weight: var(--font-weight-bold);
}
#top-check .check__content-list .check__content-text {
  text-align: center;
  color: var(--primary-color);
  font-size: var(--font-size-20);
  font-weight: var(--font-weight-bold);
  line-height: 1.6;
  padding: 4% 0;
}
#top-check .check__content-list .check__content-button {
  width: 80%;
  height: 10vw;
  margin: 0 auto;
}

/*
# top-merit
------------------------*/
#top-merit {
  border-top: 2px solid var(--primary-color);
  padding: 18% 0;
}
#top-merit .merit__title {
  margin-bottom: 20%;
}
#top-merit .merit__title span {
  display: block;
  font-size: var(--font-size-21);
}
#top-merit .merit__list .merit__item {
  background: var(--third-color);
  position: relative;
  margin-bottom: 16%;
}
#top-merit .merit__list .merit__item:last-child {
  margin-bottom: 0;
}
#top-merit .merit__list .merit__item::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  margin: 0 auto;
}
#top-merit .merit__list .merit__item-01::before {
  width: 38%;
  height: 36vw;
  background: url(../img/top/merit-01_ic.png) center/100% no-repeat;
  top: -10vw;
}
#top-merit .merit__list .merit__item-02::before {
  width: 33%;
  height: 27vw;
  background: url(../img/top/merit-02_ic.png) center/100% no-repeat;
  top: 0;
}
#top-merit .merit__list .merit__item-03::before {
  width: 30vw;
  height: 30vw;
  background: url(../img/top/merit-03_ic.png) center/100% no-repeat;
  top: -4vw;
}
#top-merit .merit__list .merit__item-title {
  font-size: var(--font-size-22);
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  text-align: center;
  padding: 4% 0;
  border-top: 1px solid var(--primary-color);
  margin: 31% 0 0;
}
#top-merit .merit__list .merit__item-text {
  padding: 0 5% 10%;
}

/*
# top-case
------------------------*/
#top-case {
  padding: 18% 0;
  border-top: 2px solid var(--primary-color);
}
#top-case .case__button {
  width: 90%;
  margin: 15% auto 0;
}

.c-case__list .case__item {
  width: 80%;
  margin: 0 auto 12%;
}
.c-case__list .case__item:last-child {
  margin-bottom: 0;
}
.c-case__list .case__item-thumb {
  width: 100%;
  height: 45vw;
  margin-bottom: 3%;
}
.c-case__list .case__item-cat {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5vw;
}
.c-case__list .case__item-cat li {
  font-size: var(--font-size-12);
  color: var(--color-white);
  background: var(--primary-color);
  padding: 0 2vw;
}
.c-case__list .case__item-title {
  font-size: var(--font-size-16);
  font-weight: var(--font-weight-bold);
}

/*
# top-news
------------------------*/
#top-news {
  padding: 18% 0;
  border-top: 2px solid var(--primary-color);
}
#top-news .news__post {
  margin-bottom: 7%;
}
#top-news .news__post:last-child {
  margin-bottom: 0;
}
#top-news .news__post a {
  /*==========================================
  Flexbox
  ===========================================*/
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
  flex-wrap: wrap;
  align-items: baseline;
  background: var(--color-gray);
  padding: 6% 4%;
}
#top-news .news__post a:hover {
  transform: translateX(10px);
  opacity: 0.9;
}
#top-news .news__post a:hover .news__post-title {
  text-decoration: underline;
}
#top-news .news__post time,
#top-news .news__post .category-label {
  color: var(--primary-color);
  font-size: var(--font-size-12);
}
#top-news .news__post time {
  width: 22%;
}
#top-news .news__post .category-label {
  width: 78%;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5vw;
}
#top-news .news__post .category-label li {
  padding: 0 2vw;
  position: relative;
}
#top-news .news__post .category-label li::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 2.5vw;
  inset: 0 auto 0 0;
  margin: auto 0;
  background: var(--primary-color);
}
#top-news .news__post .news__post-title {
  width: 100%;
  font-size: var(--font-size-16);
  margin-top: 2%;
}
#top-news .news__button {
  width: 85%;
  margin: 12% auto 0;
}

/*
# top-info
------------------------*/
#top-info {
  padding: 18% 0;
  border-top: 2px solid var(--primary-color);
  background: var(--third-color);
}
#top-info .info__table {
  border-width: 2px;
  background: var(--color-white);
}
#top-info .info__table tr {
  padding: 3% 5%;
  border-color: var(--primary-color);
}

/*==========================================
footer
===========================================*/
#footer {
  background: var(--primary-color);
  padding: 18% 0 25%;
}
#footer .fixed__button {
  position: fixed;
  inset: auto 0 0;
  width: 100%;
  height: 16vw;
  background: var(--color-white);
  z-index: 100;
  display: flex;
  align-items: center;
}
#footer .fixed__button .fixed__title {
  font-size: var(--font-size-13);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  background: var(--primary-color);
  padding: 5% 3%;
  width: 27%;
  letter-spacing: var(--body-letter-spacing);
}
#footer .fixed__button .fixed__content {
  padding: 2% 3%;
  width: 73%;
}
#footer .fixed__button .fixed__contact-list .com-tel {
  line-height: 1.1;
}
#footer .fixed__button .fixed__line-button {
  display: none;
}
#footer .footer__left {
  margin-bottom: 10%;
}
#footer .footer__left .footer__logo {
  width: 50%;
  display: block;
  margin: 0 auto 8%;
}
#footer .footer__left .footer__address {
  color: var(--color-white);
  margin-bottom: 10%;
}
#footer .footer__right .footer__nav {
  -moz-column-count: 2;
       column-count: 2;
}
#footer .footer__right .footer__nav .nav__item {
  font-size: var(--font-size-11);
  margin-bottom: 10%;
}
#footer .footer__right .footer__nav .nav__item a {
  color: var(--color-white);
}
#footer .footer__right .footer__nav .nav__item a:hover {
  text-decoration: underline;
}

#copyright {
  word-break: normal;
  text-align: center;
  color: var(--color-white);
  margin-top: 10%;
}
#copyright small {
  font-size: var(--font-size-11);
}
#copyright a {
  color: var(--color-white);
  text-decoration: underline;
}

/*==========================================
sv
===========================================*/
.lower-sv {
  position: relative;
  height: 45vw;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid var(--primary-color);
}
.lower-sv .sv__title {
  width: 82%;
  margin: 0 auto;
  background: var(--color-white);
  font-size: var(--font-size-24);
  color: var(--primary-color);
  text-align: center;
  font-weight: var(--font-weight-bold);
  padding: 2%;
}

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

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

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

#tsumugi-sv {
  background: url(../img/sv/tsumugi-sv_bg.jpg) center/cover no-repeat;
}
#tsumugi-sv .sv__title {
  font-size: var(--font-size-20);
}

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

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

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

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

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

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

/*==========================================
service
===========================================*/
#service-works .works__title {
  margin-bottom: 160px;
}
#service-works .works__item {
  position: relative;
  margin-bottom: 30%;
}
#service-works .works__item:last-child {
  margin-bottom: 0;
}
#service-works .works__item-thumb {
  width: 90%;
  height: 45vw;
  margin: 0 auto 5%;
}
#service-works .works__item-content {
  background: var(--third-color);
  padding: 20% 5% 10%;
}
#service-works .works__item-title {
  width: 95%;
  margin: 0 auto;
  padding: 3%;
  position: absolute;
  inset: -13vw 0 auto;
  background: var(--primary-color);
  color: var(--color-white);
  font-size: var(--font-size-21);
  font-weight: var(--font-weight-bold);
  text-align: center;
  border-radius: 3vw;
  line-height: 1.5;
}
#service-works .works__item-title::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3vw 1.85vw 0px 1.85vw;
  border-color: var(--primary-color) transparent transparent transparent;
  inset: auto 0 -3vw;
  margin: 0 auto;
}
#service-works .works__item-title small {
  display: block;
  font-size: var(--font-size-19);
}
#service-works .works__item-button {
  width: 100%;
  margin: 12% auto 0;
}

/*==========================================
tatsutoyo
===========================================*/
/*
# tatsutoyo-worries
------------------------*/
#tatsutoyo-worries .worries__content {
  margin-bottom: 12%;
  background: var(--third-color);
}
#tatsutoyo-worries .worries__content:last-child {
  margin-bottom: 0;
}
#tatsutoyo-worries .worries__content-title {
  text-align: center;
  font-size: var(--font-size-21);
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
  padding: 3% 0;
}
#tatsutoyo-worries .worries__content .worries__item {
  font-size: var(--font-size-16);
  padding: 4% 3% 4% 13%;
  border-bottom: 1px solid var(--primary-color);
  background: url(../img/tatsutoyo/worries-check_ic.png) left 6% top 5.5vw/5vw no-repeat;
}
#tatsutoyo-worries .worries__content .worries__item:last-child {
  border-bottom: none;
}

/*
# tatsutoyo-service
------------------------*/
#tatsutoyo-service {
  border-top: 1px solid var(--primary-color);
}
#tatsutoyo-service .service__text {
  margin-bottom: 12%;
}
#tatsutoyo-service .service__item {
  margin-bottom: 12%;
  background: var(--color-white);
}
#tatsutoyo-service .service__item:last-child {
  margin-bottom: 0;
}
#tatsutoyo-service .service__item-img {
  border-bottom: 1px solid var(--primary-color);
}
#tatsutoyo-service .service__item-title {
  font-size: var(--font-size-21);
  color: var(--primary-color);
  font-weight: var(--font-weight-bold);
  text-align: center;
  padding: 4% 0;
}
#tatsutoyo-service .service__item-text {
  padding: 0 4% 10%;
}

/*
# tatsutoyo-area
------------------------*/
#tatsutoyo-area .area__list {
  background: var(--third-color);
}
#tatsutoyo-area .area__list .area__item {
  padding: 4% 0;
  text-align: center;
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
}
#tatsutoyo-area .area__list .area__item:last-child {
  border-bottom: none;
}
#tatsutoyo-area .area__list .area__item span {
  padding-left: 7vw;
  background: url(../img/tatsutoyo/area-check_ic.png) left center/5vw no-repeat;
}

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

/*
# .c-contact__section
------------------------*/
.c-contact__section .contact__wrap {
  background: var(--third-color);
  padding: 10% 0;
}
.c-contact__section .contact__title {
  font-size: var(--font-size-21);
  padding: 0 4% 6%;
}

/*==========================================
case
===========================================*/
#case-archive .case__title {
  font-size: var(--font-size-22);
}

#case-single .category__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1vw;
  margin-bottom: 10%;
}
#case-single .category__list li a {
  padding: 0 2vw;
  display: block;
  background: var(--primary-color);
  color: var(--color-white);
  font-size: var(--font-size-13);
}
#case-single .case__thumb {
  margin-bottom: 8%;
  text-align: center;
}
#case-single .case__price {
  color: var(--primary-color);
  font-size: var(--font-size-16);
  font-weight: var(--font-weight-bold);
  margin-bottom: 6%;
}
#case-single .case__comment {
  margin-bottom: 10%;
}
#case-single .case__gallery .gallery__item {
  width: 80%;
  margin: 0 auto 10%;
  height: 45vw;
}
#case-single .case__gallery .gallery__item:last-child {
  margin-bottom: 0;
}

/*==========================================
tsumugi
===========================================*/
/*
# tsumugi-greeting
------------------------*/
#tsumugi-greeting {
  position: relative;
  padding: 18% 0;
  overflow: hidden;
}
#tsumugi-greeting .greeting__img-list {
  margin-top: 10%;
}
#tsumugi-greeting .greeting__img-list .greeting__img {
  margin-bottom: 8%;
}
#tsumugi-greeting .greeting__img-list .greeting__img:last-child {
  margin-bottom: 0;
}

/*
# tsumugi-strength
------------------------*/
#tsumugi-strength .strength__title {
  margin-bottom: 15%;
}
#tsumugi-strength .strength__list .strength__item {
  margin-bottom: 15%;
  background: var(--color-white);
}
#tsumugi-strength .strength__list .strength__item::before {
  font-size: var(--font-size-40);
  font-weight: var(--font-weight-black);
  position: absolute;
  inset: -5vw 5% auto auto;
  line-height: 1;
  color: var(--primary-color);
  text-shadow: var(--color-white) 2px 0px, var(--color-white) -2px 0px, var(--color-white) 0px -2px, var(--color-white) 0px 2px, var(--color-white) 2px 2px, var(--color-white) -2px 2px, var(--color-white) 2px -2px, var(--color-white) -2px -2px, var(--color-white) 1px 2px, var(--color-white) -1px 2px, var(--color-white) 1px -2px, var(--color-white) -1px -2px, var(--color-white) 2px 1px, var(--color-white) -2px 1px, var(--color-white) 2px -1px, var(--color-white) -2px -1px;
}
#tsumugi-strength .strength__list .strength__item:last-child {
  margin-bottom: 0;
}
#tsumugi-strength .strength__list .strength__item-label {
  width: 21%;
  background: var(--primary-color);
  color: var(--color-white);
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-bold);
  text-align: center;
  border: 1px solid var(--color-white);
  transform: skewX(6deg);
  position: absolute;
  inset: -3vw auto auto 5%;
  line-height: 1.6;
}
#tsumugi-strength .strength__list .strength__item-label::before {
  position: absolute;
  content: "";
  inset: 0 auto 0 -2.5vw;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 0px 3vw 3vw;
  border-color: transparent transparent var(--fifth-color) transparent;
}
#tsumugi-strength .strength__list .strength__item-label span {
  transform: skewX(-6deg);
  display: block;
}
#tsumugi-strength .strength__list .strength__item-title {
  text-align: center;
  font-size: var(--font-size-21);
  font-weight: var(--font-weight-bold);
  border-bottom: 1px solid var(--primary-color);
  margin-bottom: 2%;
  padding: 10% 0 3%;
  line-height: 1.5;
}
#tsumugi-strength .strength__list .strength__item-text {
  padding: 5%;
}

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

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

/*==========================================
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%;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}
.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;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  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 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  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 {
  display: flex;
  width: 70%;
  flex-wrap: wrap;
  align-items: center;
  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-label .required {
  /*==========================================
  上下中央揃え
  ===========================================*/
  position: absolute;
  top: 50%; /* Safari用 */
  transform: translateY(-50%);
  z-index: 10;
  right: 10px;
}
#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 .nav__item a {
  padding: 4% 0 4% 8%;
}

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