@charset "UTF-8";
/*==========================================
PC共通
===========================================*/
html {
  font-size: 62.5%;
}

/*==========================================
共通タイトル
===========================================*/
h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 0.16em;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title .title-en {
  display: block;
  margin-bottom: 15px;
}
.section-title .title-ja {
  font-size: var(--font-size-40);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.16em;
}
.section-title .title-ja .color-red {
  color: var(--color-red);
}
.section-title .title-ja .color-primary {
  color: var(--primary-color);
}

.headline-title {
  text-align: left;
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-22);
  border-left: 3px solid var(--primary-color);
  padding-left: 10px;
  margin-bottom: 10px;
}

.sub-title {
  border-bottom: 2px solid var(--color-white);
  padding-bottom: 7px;
}
.sub-title span {
  display: block;
  background: var(--color-white);
  color: var(--primary-color);
  font-size: var(--font-size-24);
  padding: 5px 0;
  text-align: center;
}

/*==========================================
共通ブロック・要素
===========================================*/
.com-cont p {
  margin-bottom: 45px;
  line-height: var(--body-line-height);
  letter-spacing: var(--body-letter-spacing);
}
.com-cont p:last-child {
  margin-bottom: 0;
}

#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: 520px;
  /*==========================================
  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;
}

.c-tel__list .tel__item {
  margin-bottom: 10px;
  line-height: 1.2;
}
.c-tel__list .tel__item:last-child {
  margin-bottom: 0;
}
.c-tel__list .tel__item .tel__num {
  padding-left: 25px;
  background: url(../img/common/tel_ic.png) no-repeat left center;
  font-size: var(--font-size-26);
  font-weight: var(--font-weight-medium);
  color: var(--color-white);
}
.c-tel__list .tel__item .tel__num small {
  font-size: var(--font-size-16);
}
.c-tel__list .tel__txt {
  display: block;
  line-height: 1.3;
}
.c-tel__list .tel__txt img.tel-txt-gray {
  display: none;
}
.c-tel__list .tel__txt img.tel-txt-white {
  display: block;
}

.c-tel__list.is-gray .tel__txt img.tel-txt-gray {
  display: block;
}
.c-tel__list.is-gray .tel__txt img.tel-txt-white {
  display: none;
}

.bg-deco {
  position: relative;
  z-index: 1;
}
.bg-deco::before, .bg-deco::after {
  position: absolute;
  content: "";
  z-index: -1;
}

.com-button {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: var(--font-size-18);
  background: var(--primary-color);
  border-radius: 35px;
  padding: 0 55px;
}
.com-button:hover {
  transform: scale(0.95);
}

.has-arr {
  width: 100%;
  text-align: center;
  display: block;
}
.has-arr.arr-color-white {
  background: url(../img/common/btn-arr_white.svg) no-repeat right center;
}
.has-arr.arr-color-blue {
  background: url(../img/common/btn-arr_blue.svg) no-repeat right center;
}

.c-address {
  font-size: var(--font-size-14);
  color: var(--color-white);
}
.c-address .address__locate {
  margin-bottom: 10px;
}
.c-address .address__worktime .worktime__item {
  margin-bottom: 10px;
}
.c-address .address__worktime .worktime__item:last-child {
  margin-bottom: 0;
}
.c-address .address__worktime dt {
  position: relative;
  padding-right: 7px;
  margin-right: 7px;
}
.c-address .address__worktime dt::after {
  position: absolute;
  content: "";
  inset: 0 0 0 auto;
  margin: auto 0;
  background: var(--color-white);
  width: 1px;
  height: 15px;
}

.c-contact-button {
  gap: 15px 50px;
}

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

/*==========================================
パンくずリスト
===========================================*/
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;
}

/*==========================================
header
===========================================*/
.header__logo {
  width: 325px;
  height: 85px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  text-align: center;
  margin-bottom: 5.4%;
}
.header__button-list {
  position: absolute;
  inset: 40px 2.0833% auto auto;
  z-index: 100;
}
.header__button-list .button__item {
  margin-bottom: 30px;
}
.header__button-list .button__item:last-child {
  margin-bottom: 0;
}
.header__side {
  width: clamp(300px, 28.6458%, 550px);
  background: var(--primary-color);
}
.header__side #nav {
  padding: 6% 17.2727% 6% 10%;
}
.header__side #nav .nav__list .nav__item {
  border-bottom: 1px solid var(--color-white);
}
.header__side #nav .nav__list .nav__item:last-child {
  border-bottom: none;
}
.header__side #nav .nav__list .nav__item a {
  font-size: var(--font-size-16);
  letter-spacing: 0.08em;
  padding: 5% 3.5%;
  color: var(--color-white);
  display: block;
}
.header__side #nav .nav__list .nav__item a:hover {
  opacity: 1;
  background: var(--color-white);
  color: var(--primary-color);
}
.header__side #nav .nav__list .nav__item.current a {
  background: var(--color-white);
  color: var(--primary-color);
}
.header__side .c-tel__list {
  background: var(--color-blue);
  padding: 5.5% 10% 5.5% 13.6363%;
}
.header__side .c-tel__list .tel__num {
  font-size: clamp(20px, 1.42857vw, 2.6rem);
}
.header__side .c-tel__list .tel__num small {
  font-size: clamp(14px, 0.95238vw, 1.6rem);
}

/*==========================================
mv
===========================================*/
.mv__frame {
  height: clamp(500px, 38.802vw, 745px);
  width: 74.12708%;
  position: absolute;
  inset: 100px 0 auto auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mv__frame .mv__txt-en {
  /*==========================================
  100% から%を算出
  ===========================================*/
  width: 43.2678821879%;
  position: absolute;
  inset: auto 5.96% 9.3959% auto;
}

#top-mv {
  background: url(../img/top/mv/mv_bg.png) center/100% no-repeat;
}
#top-mv .mv__catch {
  /*==========================================
  100% から%を算出
  ===========================================*/
  width: 55.3997194951%;
}

/*==========================================
top
===========================================*/
/* top-greeting
------------------------*/
#top-greeting {
  position: relative;
  padding: 85px 0 430px;
  background: url(../img/top/greeting-l_ill.png) left top 100px/24.11458% no-repeat;
}
#top-greeting::before {
  width: 33.0208%;
  height: 776px;
  background: var(--primary-color);
  position: absolute;
  content: "";
  z-index: -1;
  inset: 65px 0 auto auto;
}
#top-greeting .greeting__content {
  width: 485px;
}
#top-greeting .greeting__title {
  text-align: left;
}
#top-greeting .greeting__title .title-en {
  margin-left: -105px;
}
#top-greeting .greeting__title .title-ja {
  position: relative;
  z-index: 1;
}
#top-greeting .greeting__title .title-ja::before {
  position: absolute;
  content: "";
  inset: auto 0 0 0;
  margin: 0 auto;
  background: var(--accent-color);
  width: 100%;
  height: 30%;
  z-index: -1;
}
#top-greeting .greeting__content .name {
  color: var(--primary-color);
}
#top-greeting .greeting__img {
  position: absolute;
  inset: 150px 0 auto auto;
  /*==========================================
  100% から%を算出
  ===========================================*/
  width: 48.4375%;
}
#top-greeting .greeting__img::before {
  position: absolute;
  content: "";
  width: 10%;
  height: 191px;
  background: url(../img/top/greeting-r_ill.png) center/100% no-repeat;
  inset: auto 31.1827% -285px auto;
}
#top-greeting .greeting__img .greeting__img-front {
  position: absolute;
  inset: auto auto -53.5% 5.3763%;
  /*==========================================
  100% から%を算出
  ===========================================*/
  width: 40.8602150538%;
}
#top-greeting .greeting__img .greeting__img-front::before, #top-greeting .greeting__img .greeting__img-front::after {
  position: absolute;
  content: "";
  background: var(--color-gray);
}
#top-greeting .greeting__img .greeting__img-front::before {
  width: 100%;
  height: 30px;
  inset: auto -30px -30px auto;
}
#top-greeting .greeting__img .greeting__img-front::after {
  width: 30px;
  height: 100%;
  inset: auto -30px -30px auto;
  z-index: -1;
}

/* top-about
------------------------*/
#top-about {
  background: url(../img/top/about-shape_bg.png) center bottom 65px/100% no-repeat;
  position: relative;
  z-index: 1;
}
#top-about::before {
  width: 100%;
  height: 877px;
  position: absolute;
  content: "";
  z-index: -1;
  inset: auto 0 0;
  background: rgba(var(--accent-color-rgb), 0.5);
}
#top-about .about__wrap {
  /*==========================================
  100% から%を算出
  ===========================================*/
  width: 94.7916666667%;
  min-width: 1200px;
  margin: 0 auto;
  background: rgba(var(--accent-color-rgb), 0.5);
  position: relative;
  padding-bottom: 150px;
}
#top-about .about__wrap::before {
  position: absolute;
  content: "";
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
          clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background: rgba(var(--accent-color-rgb), 0.5);
  inset: -166.5px 0 auto;
  width: 100%;
  height: 167px;
}
#top-about .about__list {
  gap: 50px 30px;
}
#top-about .about__list .about__item {
  width: 340px;
}
#top-about .about__list .about__item:nth-child(3n-1) {
  margin-top: 25px;
}
#top-about .about__list .about__item-img {
  margin-bottom: 7px;
  border: 4px solid var(--color-white);
}
#top-about .about__list .about__item-cap span {
  font-size: var(--font-size-18);
}
#top-about .about__txt-etc {
  color: var(--color-blue);
  font-size: var(--font-size-26);
  margin: 55px 0 45px;
  text-align: center;
}
#top-about .about__txt-main {
  text-align: center;
}
#top-about .about__button {
  width: 470px;
  margin: 90px auto 0;
}

/* top-links
------------------------*/
#top-links .links__item {
  /*==========================================
  画面幅3分割レイアウト
  ===========================================*/
  width: 33.33333%;
  width: -webkit-calc(100% / 3);
  width: 33.3333333333%;
  height: 900px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--color-white);
  padding: 0 2.55%;
  text-align: center;
}
#top-links .links__item:before, #top-links .links__item::after {
  position: absolute;
  content: "";
  inset: 0;
  margin: auto;
}
#top-links .links__item::before {
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 1px solid var(--color-white);
  z-index: -1;
}
#top-links .links__item::after {
  width: 100%;
  height: 100%;
  background: rgba(var(--color-black-rgb), 0.6);
  z-index: -2;
}
#top-links .links__item--reason {
  background: url(../img/top/reason_bg.jpg) center/cover no-repeat;
}
#top-links .links__item--case {
  background: url(../img/top/case_bg.jpg) center/cover no-repeat;
}
#top-links .links__item--faq {
  background: url(../img/top/faq_bg.jpg) center/cover no-repeat;
}
#top-links .links__item-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
#top-links .links__item-title {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#top-links .links__item-txt {
  flex-grow: 1;
  font-size: clamp(1.3rem, 0.83333vw, 1.6rem);
}
#top-links .links__item-button {
  width: 87.8504%;
  margin: 50px auto 0;
  min-width: 350px;
}

/* top-request
------------------------*/
#top-request {
  padding: 135px 0 105px;
}
#top-request .request__title {
  width: 750px;
  margin: 0 auto 50px;
}
#top-request .request__title::before {
  width: 200px;
  height: 200px;
  inset: -45px auto 0 0;
  background: var(--color-gray);
}
#top-request .request__txt {
  text-align: center;
  margin-bottom: 70px;
}
#top-request .request__button {
  width: 470px;
  margin: 0 auto;
}

/* top-recruit
------------------------*/
#top-recruit {
  padding: 170px 11.4583% 65px;
  margin-bottom: 145px;
}
#top-recruit::before {
  /*==========================================
  100% から%を算出
  ===========================================*/
  width: 21.875%;
  height: calc(100% - 80px);
  background: var(--color-red);
  inset: auto auto 0 0;
}
#top-recruit::after {
  /*==========================================
  100% から%を算出
  ===========================================*/
  width: 24.21875%;
  height: 383px;
  background: var(--color-gray);
  inset: 0 auto auto 11.4583%;
  z-index: -2;
}
#top-recruit .recruit__content {
  width: 72.65%;
  background: var(--color-white);
  padding: 5.08% 4% 5.08% 13.85%;
  position: relative;
}
#top-recruit .recruit__content::before, #top-recruit .recruit__content::after {
  position: absolute;
  content: "";
  background-image: repeating-linear-gradient(-45deg, var(--primary-color) 0, var(--primary-color) 0.5px, transparent 0, transparent 50%);
  background-size: 8px 8px;
}
#top-recruit .recruit__content::before {
  width: calc(100% - 20px);
  height: 20px;
  inset: auto 0 -20px auto;
}
#top-recruit .recruit__content::after {
  width: 20px;
  height: 100%;
  inset: auto -20px -20px auto;
}
#top-recruit .recruit__content .recruit__inner {
  position: relative;
  z-index: 1;
}
#top-recruit .recruit__content .recruit__inner::before {
  position: absolute;
  content: "";
  inset: 35px auto auto -44%;
  background: url(../img/top/recruit-l_ill.png) center/100% no-repeat;
  /*==========================================
  100% から%を算出
  ===========================================*/
  width: 32.7160493827%;
  height: 91px;
}
#top-recruit .recruit__content .recruit__title {
  text-align: left;
}
#top-recruit .recruit__content .recruit__title .title-en {
  position: absolute;
  inset: -20% auto auto -19%;
}
#top-recruit .recruit__content .recruit__title .title-ja {
  font-size: clamp(2.2rem, 1.8vw, 3.4rem);
}
#top-recruit .recruit__content .recruit__title .title-ja .color-red {
  font-size: clamp(3rem, 2.66vw, 5rem);
}
#top-recruit .recruit__content .recruit__button {
  width: 470px;
  margin-top: 75px;
}
#top-recruit .recruit__img {
  position: absolute;
  inset: 0 0 auto auto;
  /*==========================================
  100% から%を算出
  ===========================================*/
  width: 37.7604166667%;
}
#top-recruit .recruit__img .recruit__img-bk {
  position: relative;
  z-index: -2;
}
#top-recruit .recruit__img .recruit__img-front {
  /*==========================================
  100% から%を算出
  ===========================================*/
  width: 66.4827586207%;
  position: absolute;
  inset: auto auto -245px 5.5172%;
}
#top-recruit .recruit__img .recruit__img-front::before {
  width: 100px;
  height: 100px;
  background: var(--primary-color);
  inset: auto -50px -50px auto;
  z-index: 1;
}

/* top-info
------------------------*/
#top-info {
  padding: 140px 0 150px;
  background: var(--color-white);
}
#top-info .info__table {
  margin-bottom: 65px;
}
#top-info .info__map-list {
  gap: 40px;
}
#top-info .info__map-item {
  width: 100%;
}
#top-info .info__map-item .info__map-title {
  font-size: var(--font-size-20);
}

/* top-news
------------------------*/
#top-news {
  padding: 125px 0 130px;
  background: url(../img/top/news-l_ill.png) left top 80px/15.208% no-repeat, url(../img/top/news-r_ill.png) right 11.4583% top/6.927% no-repeat;
}
#top-news .inbox {
  position: relative;
  min-height: 285px;
}
#top-news .news__title {
  text-align: left;
}
#top-news .news__post-list {
  width: 840px;
}
#top-news .news__post-list .news__post {
  border-bottom: 1px solid var(--color-gray);
}
#top-news .news__post-list .news__post:last-child {
  border-bottom: none;
}
#top-news .news__post-list .news__post a {
  padding: 20px 15px;
}
#top-news .news__post-list .news__post time,
#top-news .news__post-list .news__post .category-label {
  color: var(--color-red);
  font-size: var(--font-size-16);
}
#top-news .news__post-list .news__post time {
  width: 110px;
}
#top-news .news__post-list .news__post .category-label {
  width: calc(100% - 110px);
}
#top-news .news__post-list .news__post .category-label li {
  position: relative;
  padding: 0 7px;
}
#top-news .news__post-list .news__post .category-label li::before {
  position: absolute;
  content: "";
  inset: 0 auto 0 0;
  margin: auto 0;
  background: var(--color-red);
  width: 1px;
  height: 15px;
}
#top-news .news__post-list .news__post-title {
  width: 100%;
  font-size: var(--font-size-16);
  margin-top: 5px;
}
#top-news .news__button {
  position: absolute;
  inset: auto auto 0 0;
  color: var(--primary-color);
  font-size: var(--font-size-18);
  width: 180px;
  display: block;
}
#top-news .news__button .has-arr {
  text-align: left;
}

/*==========================================
footer
===========================================*/
#footer {
  background: var(--primary-color);
  position: relative;
  z-index: 1;
}
#footer .inbox {
  padding: 95px 0;
}
#footer .footer__left {
  width: 370px;
}
#footer .footer__left .footer__logo {
  display: inline-block;
  margin-bottom: 35px;
}
#footer .footer__left .c-address {
  margin-bottom: 55px;
}
#footer .footer__right {
  width: 510px;
}
#footer .footer__right .footer__button-wrap {
  gap: 30px;
  margin-bottom: 120px;
}
#footer .footer__right .c-contact-button {
  width: -moz-fit-content;
  width: fit-content;
  justify-content: flex-end;
}
#footer .footer__right .footer__nav {
  gap: 15px 55px;
}
#footer .footer__right .nav__item {
  margin-bottom: 15px;
}
#footer .footer__right .nav__item:last-child {
  margin-bottom: 0;
}
#footer .footer__right .nav__item a {
  font-size: var(--font-size-14);
  color: var(--color-white);
}
#footer .footer__right .nav__item a:hover {
  text-decoration: underline;
}

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

/*==========================================
sv
===========================================*/
.mv__frame .mv__catch span {
  display: block;
  width: 702px;
  margin: 0 auto;
  font-size: var(--font-size-40);
  letter-spacing: 0.28em;
  color: var(--color-white);
  text-align: center;
  font-weight: var(--font-weight-semibold);
  border-bottom: 3px double var(--color-white);
  position: relative;
  padding-bottom: 10px;
}
.mv__frame .mv__catch span::before {
  position: absolute;
  content: "";
  inset: -20px 0 auto 0;
  margin: 0 auto;
  background: url(../img/sv/sv-ttl_frame.png) center/100% no-repeat;
  width: 100%;
  height: 38px;
}

#about-mv {
  background: url(../img/sv/about-sv_bg.png) center/100% no-repeat;
}

#reason-mv {
  background: url(../img/sv/reason-sv_bg.png) center/100% no-repeat;
}

#request-mv {
  background: url(../img/sv/request-sv_bg.png) center/100% no-repeat;
}

#faq-mv {
  background: url(../img/sv/faq-sv_bg.png) center/100% no-repeat;
}

#case-mv {
  background: url(../img/sv/case-sv_bg.png) center/100% no-repeat;
}

#recruit-mv {
  background: url(../img/sv/recruit-sv_bg.png) center/100% no-repeat;
}

#info-mv {
  background: url(../img/sv/info-sv_bg.png) center/100% no-repeat;
}

#news-mv {
  background: url(../img/sv/news-sv_bg.png) center/100% no-repeat;
}

#privacy-mv {
  background: url(../img/sv/privacy-sv_bg.png) center/100% no-repeat;
}

#site-mv {
  background: url(../img/sv/site-sv_bg.png) center/100% no-repeat;
}

#contact-mv {
  background: url(../img/sv/contact-sv_bg.png) center/100% no-repeat;
}

#complete-mv {
  background: url(../img/sv/complete-sv_bg.png) center/100% no-repeat;
}

#e404-mv {
  background: url(../img/sv/e404-sv_bg.png) center/100% no-repeat;
}

/*==========================================
下層共通スタイル
===========================================*/
.head-section {
  position: relative;
  z-index: 1;
}
.head-section::before, .head-section::after {
  position: absolute;
  content: "";
  z-index: -1;
}
.head-section::before {
  /*==========================================
  100% から%を算出
  ===========================================*/
  width: 30.46875%;
  height: 674px;
  inset: 200px auto auto 0;
  background: url(../img/common/section-l_ill.png) center/100% no-repeat;
}
.head-section::after {
  /*==========================================
  100% から%を算出
  ===========================================*/
  width: 12.8645833333%;
  height: 296px;
  inset: 780px 8.333% auto auto;
  background: url(../img/common/section-r_ill.png) center/100% no-repeat;
}

/*==========================================
about
===========================================*/
/* about-vision
------------------------*/
#about-vision .vision__list {
  gap: 30px;
}
#about-vision .vision__list .vision__item {
  width: 340px;
  background: var(--color-white);
  padding: 25px 25px 30px;
  text-align: center;
}
#about-vision .vision__list .vision__item-txt {
  font-size: var(--font-size-22);
  font-weight: var(--font-weight-medium);
  margin-bottom: 10px;
  line-height: 1.7;
}

/* about-business
------------------------*/
#about-business .business__post {
  position: relative;
  min-height: 300px;
  margin-bottom: 90px;
}
#about-business .business__post:last-child {
  margin-bottom: 0;
}
#about-business .business__post-thumb {
  width: 420px;
  height: 300px;
  position: absolute;
  inset: 0 auto auto 0;
}
#about-business .business__post-content {
  width: 600px;
  margin-left: auto;
}
#about-business .business__post-title {
  margin-bottom: 15px;
}
#about-business .business__post-title .color-red {
  font-size: var(--font-size-60);
}

/*==========================================
reason
===========================================*/
#reason-section .reason__item {
  background: var(--color-white);
  margin-bottom: 25px;
  padding-bottom: 30px;
}
#reason-section .reason__item:last-child {
  margin-bottom: 0;
}
#reason-section .reason__item .reason__item-title {
  border-bottom: 1px solid var(--accent-color);
  padding: 35px 25px 35px 130px;
  font-size: var(--font-size-24);
  color: var(--primary-color);
  margin-bottom: 15px;
}
#reason-section .reason__item .reason__item-title::before {
  position: absolute;
  inset: 28px auto 0 60px;
  color: var(--color-white);
  width: 50px;
  height: 48px;
  display: flex;
  align-items: end;
  justify-content: center;
  -webkit-clip-path: polygon(50% 0%, 100% 38%, 100% 100%, 0 100%, 0% 38%);
          clip-path: polygon(50% 0%, 100% 38%, 100% 100%, 0 100%, 0% 38%);
  background: var(--primary-color);
  font-size: var(--font-size-20);
}
#reason-section .reason__item .reason__item-txt {
  padding: 0 55px;
}

/*==========================================
request
===========================================*/
/* request-flow
------------------------*/
#request-flow .flow__list {
  gap: 30px;
}
#request-flow .flow__item {
  background: var(--color-white);
}
#request-flow .flow__item-title {
  font-size: var(--font-size-16);
  color: var(--color-red);
}
#request-flow .flow__item-txt {
  font-size: var(--font-size-24);
}
#request-flow .flow__item:first-child {
  width: 100%;
  padding: 30px 50px 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}
#request-flow .flow__item:first-child .flow__item-inner {
  width: 100%;
  background: rgba(var(--accent-color-rgb), 0.5);
  gap: 20px 50px;
  padding: 15px 115px;
}
#request-flow .flow__item:first-child .flow__item-inner .c-tel__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 15px;
  width: 625px;
}
#request-flow .flow__item:first-child .flow__item-inner .c-tel__list .tel__item {
  margin-bottom: 0;
}
#request-flow .flow__item:first-child .flow__item-inner .c-tel__list .tel__item .tel__num {
  color: var(--body-font-color);
}
#request-flow .flow__item:first-child .flow__item-inner .c-tel__list .tel__item .tel__num small {
  color: var(--primary-color);
}
#request-flow .flow__item:first-child .flow__item-inner .mail-button {
  width: 60px;
  height: 60px;
  background: var(--color-white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#request-flow .flow__item:first-child .flow__item-inner .mail-button:hover {
  transform: scale(0.95);
}
#request-flow .flow__item:not(:first-child) {
  width: 340px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}
#request-flow .flow__item:not(:first-child)::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 13px 0px 13px 11px;
  border-color: transparent transparent transparent var(--color-red);
  inset: 0 -21px 0 auto;
  margin: auto 0;
}
#request-flow .flow__item:not(:first-child) .flow__item-title,
#request-flow .flow__item:not(:first-child) .flow__item-txt {
  padding: 10px 0;
}
#request-flow .flow__item:not(:first-child) .flow__item-title {
  border-bottom: 1px solid var(--accent-color);
}
#request-flow .flow__item:not(:first-child) .flow__item-txt {
  color: var(--primary-color);
  line-height: 1.6;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
#request-flow .flow__item:nth-child(3n-2)::after {
  border: none;
}

/* request-price
------------------------*/
#request-price .price__lead {
  margin-bottom: 70px;
  text-align: center;
}
#request-price .price__list {
  background: var(--color-white);
  padding: 25px 50px;
}
#request-price .price__list .price__item {
  border-bottom: 1px solid var(--accent-color);
  padding: 10px 20px;
}
#request-price .price__list .price__item:last-child {
  border-bottom: none;
}
#request-price .price__list .price__item-title {
  width: 440px;
  font-size: var(--font-size-16);
}
#request-price .price__list .price__item-txt {
  width: calc(100% - 460px);
  text-align: right;
}

/*==========================================
faq
===========================================*/
#faq-archive .faq__item {
  margin-bottom: 70px;
}
#faq-archive .faq__item:last-child {
  margin-bottom: 0;
}
#faq-archive .faq__item-title {
  background: var(--primary-color);
  color: var(--color-white);
  padding: 15px 70px;
  position: relative;
  margin-bottom: 15px;
  font-size: var(--font-size-20);
}
#faq-archive .faq__item-title .title-q {
  position: absolute;
  inset: 14px auto auto 40px;
}

/*==========================================
case
===========================================*/
/* case-archive
------------------------*/
#case-archive .case__list {
  gap: 30px;
}
#case-archive .case__item {
  width: 340px;
}
#case-archive .case__item-thumb {
  width: 100%;
  height: 240px;
  margin-bottom: 5px;
}
#case-archive .case__item-title {
  font-size: var(--font-size-18);
}

.case__item-category {
  gap: 5px;
  margin-bottom: 10px;
}
.case__item-category li {
  background: var(--color-red);
  color: var(--color-white);
  padding: 0 10px;
  font-size: var(--font-size-14);
}

/* case-single
------------------------*/
.case__single .case__item-gallery {
  width: 650px;
  margin: 0 auto 30px;
}
.case__single .case__item-gallery .gallery__list {
  gap: 20px;
  overflow-x: scroll;
}
.case__single .case__item-gallery .gallery__list .gallery__item {
  max-width: 500px;
  flex: 0 0 90%;
}
.case__single .case__voice-list {
  margin-top: 40px;
}
.case__single .case__voice-list .case__voice-item {
  margin-bottom: 30px;
}
.case__single .case__voice-list .case__voice-item:last-child {
  margin-bottom: 0;
}
.case__single .case__voice-list .case__voice-item .voice__item-icon figcaption {
  font-size: var(--font-size-16);
  color: var(--primary-color);
  text-align: center;
  margin-top: 5px;
}
.case__single .case__voice-list .case__voice-item .case__voice-content {
  width: 890px;
  background: var(--color-white);
  padding: 25px 50px;
  position: relative;
}
.case__single .case__voice-list .case__voice-item .case__voice-content::before {
  position: absolute;
  content: "";
  border-style: solid;
  top: 50px;
  width: 0;
  height: 0;
}
.case__single .case__voice-list .case__voice-item.voice__item-client .case__voice-content::before {
  border-width: 18px 29px 18px 0px;
  border-color: transparent var(--color-white) transparent transparent;
  left: -29px;
}
.case__single .case__voice-list .case__voice-item.voice__item-company .case__voice-content::before {
  border-width: 18px 0px 18px 29px;
  border-color: transparent transparent transparent var(--color-white);
  right: -29px;
}

/*==========================================
recruit
===========================================*/
/* recruit-personality
------------------------*/
#recruit-personality .personality__list {
  background: var(--color-white);
  padding: 40px 290px 40px 330px;
  position: relative;
}
#recruit-personality .personality__list::before {
  position: absolute;
  content: "";
  width: 145px;
  height: 119px;
  background: url(../img/recruit/personality_ill.png) center/100% no-repeat;
  inset: auto 135px -25px auto;
}
#recruit-personality .personality__list .personality__item {
  padding-left: 35px;
  font-size: var(--font-size-18);
  background: url(../img/recruit/personality-check_ic.png) left center no-repeat;
  margin-bottom: 15px;
}
#recruit-personality .personality__list .personality__item:last-child {
  margin-bottom: 0;
}

/* recruit-charm
------------------------*/
#recruit-charm .charm__list {
  gap: 30px;
  display: flex;
  flex-wrap: wrap;
}
#recruit-charm .charm__item {
  width: 340px;
  background: var(--color-white);
  padding: 35px 15px 45px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
#recruit-charm .charm__item-title {
  font-size: var(--font-size-24);
  color: var(--primary-color);
  margin-bottom: 15px;
}
#recruit-charm .charm__item-illust {
  width: 100%;
  height: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
#recruit-charm .charm__item-illust img {
  -o-object-fit: contain;
     object-fit: contain;
}
#recruit-charm .charm__item-txt {
  text-align: left;
}

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

/*==========================================
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 tr th {
  margin-bottom: 20px;
}
#contact .contact__form tr th .required {
  margin-left: 10px;
}
#contact .contact__form tr td .contact__form-list {
  gap: 15px;
}
#contact .contact__form tr.contact__form-privacy th {
  text-align: center;
}
#contact .contact__form-input {
  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;
}
#privacy .privacy__content p {
  margin-bottom: 30px;
}
#privacy .privacy__content p:last-child {
  margin-bottom: 0;
}
#privacy .privacy__content ul {
  margin-top: 30px;
}

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

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