@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(--body-font-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;
}

/*
# drawer
------------------------*/
/*
# ドロワーメニュー
------------------------------------ */
.sp-menu-btn-wrp {
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  background: var(--accent-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sp-menu-btn-wrp .sp-menu-btn {
  width: 100px;
  height: 100px;
}
.sp-menu-btn-wrp .sp-menu-btn span {
  width: 42px;
  height: 1px;
  background: var(--color-white);
}
.sp-menu-btn-wrp .sp-menu-btn .top {
  top: 35px;
}
.sp-menu-btn-wrp .sp-menu-btn .middle {
  top: 0;
  bottom: 0;
}
.sp-menu-btn-wrp .sp-menu-btn .bottom {
  top: 65px;
}
.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(16px) translateX(0px) rotate(45deg);
}

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

/*  drawer inbox
  ------------------------------------ */
#drawer__nav {
  width: 690px;
  margin-left: auto;
  height: 100%;
  background: var(--color-white);
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
}
#drawer__nav .drawer__nav-item .drawer__nav-link {
  font-size: var(--font-size-16);
  border-bottom: none;
  display: block;
  margin-bottom: 25px;
  padding: 0;
}
#drawer__nav .drawer__nav-item .drawer__nav-link:hover {
  opacity: 1;
  color: var(--accent-color);
}
#drawer__nav .drawer__nav .current {
  color: var(--accent-color);
}
#drawer__nav .drawer__nav-subpage .drawer__nav-subpage-link {
  display: block;
  margin-bottom: 25px;
}
#drawer__nav .drawer__nav-subpage .drawer__nav-subpage-link:hover {
  opacity: 1;
  color: var(--accent-color);
}

/*
# c-contact__list
------------------------*/
.c-contact__list {
  gap: 25px 30px;
}

.mail__button {
  height: 80px;
  position: relative;
  display: flex;
  align-items: center;
  width: 220px;
  color: var(--color-white);
  font-size: var(--font-size-17);
  font-weight: var(--font-weight-thin);
  background: url(../../img/common/mail_ic.png) left 20px center no-repeat, var(--color-gray-dark);
  padding: 0 10px 0 55px;
}
.mail__button .has-arrow {
  right: 9.09%;
}
.mail__button .has-arrow::before {
  border-color: var(--color-white);
}
.mail__button .has-arrow::after {
  background: var(--color-white);
}
.mail__button:hover .has-arrow::after {
  left: 10px;
}

/*==========================================
テーブルレイアウト
===========================================*/
.com-table {
  border: 1px solid;
}
.com-table tr {
  display: flex;
}
.com-table tr th {
  padding: 15px 10px;
  width: 180px;
  vertical-align: top;
  background: var(--primary-color);
}
.com-table tr td {
  width: calc(100% - 180px);
  padding: 15px 20px;
}
.com-table tr td a[href^="mailto:"] {
  text-decoration: underline;
}
.com-table tr td .tel__text {
  display: block;
  line-height: 1.3;
}

/*==========================================
共通ブロック・要素
===========================================*/
.com-content p {
  margin-bottom: 30px;
}
.com-content p:last-child {
  margin-bottom: 0;
}

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

#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;
}

/*
# has-arrow
------------------------*/
.has-arrow {
  position: absolute;
  width: 58px;
  margin: auto 0;
}
.has-arrow::before, .has-arrow::after {
  position: absolute;
  content: "";
  transition: all 0.3s ease;
}
.has-arrow::before {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--color-black);
  inset: 0 0 0 auto;
  margin: auto 0;
}
.has-arrow::after {
  width: 38px;
  height: 1px;
  background: var(--color-black);
  inset: 0 auto 0 0;
  margin: auto 0;
}

/*
# com-button
------------------------*/
.com-button {
  padding-right: 85px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
}
.com-button .has-arrow {
  inset: 0 0 0 auto;
}
.com-button:hover .has-arrow::after {
  left: 10px;
}

/*
# writing-mode: vertical-rl;
------------------------*/
.vertical-rl {
  writing-mode: vertical-rl;
}

/*==========================================
共通タイトル
===========================================*/
.section-title {
  margin-bottom: 40px;
  text-align: center;
  font-family: var(--font-family-serif);
}
.section-title span {
  display: block;
}
.section-title .title-en {
  font-size: var(--font-size-16);
  color: var(--accent-color);
}
.section-title .title-ja {
  font-size: var(--font-size-24);
}
.section-title.align-left {
  text-align: left;
}

.headline-title {
  color: var(--accent-color);
  font-size: var(--font-size-20);
  margin-bottom: 20px;
  font-family: var(--font-family-serif);
}

/*==========================================
header
===========================================*/
#header {
  position: relative;
  padding: 15px 2.6041% 35px;
  background: var(--primary-color);
  height: 100px;
}
#header .header__contact-list {
  position: fixed;
  inset: auto 0 0 auto;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 100;
}
#header .header__contact-list .contact__item {
  margin-bottom: 25px;
}
#header .header__contact-list .contact__item:last-child {
  margin-bottom: 0;
}
#header .header__contact-list .contact__item:not(:last-child) {
  text-align: right;
  padding: 0 35px;
}
#header .header__contact-list .contact__item:not(:last-child) .sns-icon {
  margin: 0 0 0 auto;
}
#header .header__contact-list .mail__button {
  background-image: none;
  padding-left: 15px;
  font-size: var(--font-size-20);
}
#header .header__contact-list .mail__button .has-arrow {
  width: 38px;
}
#header .header__contact-list .mail__button .has-arrow::before {
  width: 24px;
  height: 24px;
}
#header .header__contact-list .mail__button .has-arrow::after {
  width: 24px;
}

#entrance-page #header {
  background: var(--color-white);
}
#entrance-page #header .header__contact-list {
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  inset: 0 0 auto auto;
  display: flex;
}
#entrance-page #header .header__contact-list .contact__item {
  padding: 0;
  margin-bottom: 0;
}

/*==========================================
nav
===========================================*/
/*==========================================
mv
===========================================*/
#top-mv {
  position: relative;
  height: clamp(550px, 40.6245vw, 780px);
  background: url(../../img/top/mv_bg.jpg) left center/65.1041% no-repeat, var(--primary-color);
}
#top-mv .mv__catch {
  width: 26.2187%;
  position: absolute;
  inset: 37% 8.65% auto auto;
  border-top: 1px solid;
  padding: 1.5% 0.4166% 0 3.9625%;
}
#top-mv .mv__catch-text {
  font-size: clamp(2.8rem, 2.1vw, 4rem);
  display: block;
  line-height: 1.6;
  margin-bottom: 10px;
}
#top-mv .mv__catch-service {
  display: block;
  font-weight: var(--font-weight-light);
  font-size: clamp(1.6rem, 1.15vw, 2.2rem);
}

/*==========================================
footer
===========================================*/
#footer {
  position: relative;
  z-index: 1;
}
#footer:has(.footer__inbox) {
  background: var(--accent-color);
  padding: 65px 0 95px;
}
#footer .footer__logo-wrap {
  width: 100%;
  padding-bottom: 20px;
  text-align: left;
  border-bottom: 1px solid;
  margin-bottom: 35px;
}
#footer .footer__left {
  width: 380px;
}
#footer .footer__left .footer__ent-button {
  width: 100%;
  display: flex;
  align-items: center;
  height: 110px;
  background: url(../../img/common/ft-entbutton_bg.jpg) center/100% no-repeat;
  padding: 0 25px;
  position: relative;
}
#footer .footer__left .footer__ent-button .has-arrow {
  width: 39px;
  inset: auto 12px 24px auto;
}
#footer .footer__left .footer__ent-button .has-arrow::before {
  width: 26px;
  height: 26px;
}
#footer .footer__left .footer__ent-button .has-arrow::after {
  width: 26px;
}
#footer .footer__right {
  width: 495px;
  position: relative;
  z-index: 1;
}
#footer .footer__right .footer__nav-list {
  font-size: var(--font-size-15);
}
#footer .footer__right .footer__nav-list .footer__nav-item {
  margin-bottom: 20px;
}
#footer .footer__right .footer__nav-list .footer__nav-item:last-child {
  margin-bottom: 0;
}
#footer .footer__right .footer__nav-list .footer__nav-link:hover {
  text-decoration: underline;
}
#footer:has(.footer__inbox) #copyright {
  width: 1080px;
  margin: 0 auto;
  position: absolute;
  inset: auto 0 95px 0;
  text-align: left;
}

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

/*==========================================
sv
===========================================*/
.lower-sv {
  height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lower-sv .sv__title {
  font-size: var(--font-size-44);
  font-weight: var(--font-weight-light);
  color: var(--color-white);
}

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

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

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

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

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

#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;
}

/*==========================================
entrance
===========================================*/
#entrance {
  padding: 0 5.2083%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 40px 2.3255%;
}
#entrance .entrance__page-item .entrance__item-link {
  position: relative;
  display: block;
  z-index: 1;
  height: 100%;
  overflow: hidden;
}
#entrance .entrance__page-item .entrance__item-link::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  inset: 0;
}
#entrance .entrance__page-item .entrance__item-link:hover::before {
  transform: scale(1.05);
}
#entrance .entrance__page-item .entrance__item-link .has-arrow {
  inset: auto 3.5714% 40px auto;
}
#entrance .entrance__page-item .entrance__item-link .entrance__item-title {
  position: absolute;
  inset: auto auto 0 0;
  background: var(--color-white);
  line-height: 1.5;
  padding: 20px 25px;
}
#entrance .entrance__page-item .entrance__item-link .entrance__item-title .title-text {
  font-size: clamp(1.9rem, 1.37vw, 2.6rem);
  font-weight: var(--font-weight-light);
}
#entrance .entrance__page-item .entrance__item-link .entrance__item-title .title-official {
  display: block;
  font-size: clamp(2.2rem, 1.57vw, 3rem);
  color: var(--accent-color);
  font-weight: var(--font-weight-light);
}
#entrance .entrance__page-item-official {
  grid-row: span 2/span 2;
}
#entrance .entrance__page-item-official .entrance__item-link::before {
  background: url(../../img/entrance/ent-ofc_bg.jpg) center/cover no-repeat;
}
#entrance .entrance__page-item-more .entrance__item-link {
  height: clamp(250px, 18.489vw, 355px);
}
#entrance .entrance__page-item-more .entrance__item-link::before {
  background: url(../../img/entrance/ent-more_bg.jpg) center/cover no-repeat;
}
#entrance .entrance__page-item-consulting {
  grid-column-start: 2;
  grid-row-start: 2;
}
#entrance .entrance__page-item-consulting .entrance__item-link::before {
  background: url(../../img/entrance/ent-consult_bg.jpg) center/cover no-repeat;
}

/*==========================================
top
===========================================*/
/*
# top-banner
------------------------*/
#top-banner {
  padding: 160px 0 140px;
  background: linear-gradient(to bottom, rgba(var(--primary-color-rgb), 1) 58%, rgba(var(--color-white-rgb), 1) 58%);
}
#top-banner .banner__inbox {
  position: relative;
}
#top-banner .banner__inbox::before, #top-banner .banner__inbox::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: var(--color-black);
  left: 0;
  right: 0;
  z-index: 2;
}
#top-banner .banner__inbox::before {
  top: 0;
}
#top-banner .banner__inbox::after {
  bottom: 0;
}
#top-banner .banner__card {
  position: relative;
  padding: 0 45px;
  z-index: 1;
}
#top-banner .banner__card::before, #top-banner .banner__card::after {
  position: absolute;
  content: "";
  width: 58px;
  height: 1px;
  background: var(--color-black);
  transform: rotate(-45deg);
}
#top-banner .banner__card::before {
  inset: 0 auto auto 0;
}
#top-banner .banner__card::after {
  inset: auto 0 0 auto;
}
#top-banner .banner__card-img {
  position: absolute;
  inset: -20px 50px auto auto;
  width: 490px;
  height: 405px;
  z-index: -1;
}
#top-banner .banner__card-content {
  padding: 70px 0 80px;
  width: 490px;
}
#top-banner .banner__card--spring .banner__card-content {
  background: url(../../img/top/bnr-spring_ill.png) right 30px bottom 20px no-repeat;
}
#top-banner .banner__card--summer .banner__card-content {
  background: url(../../img/top/bnr-summer_ill.png) right 30px bottom 20px no-repeat;
}
#top-banner .banner__card--autumn .banner__card-content {
  background: url(../../img/top/bnr-autumn_ill.png) right 30px bottom 20px no-repeat;
}
#top-banner .banner__card--winter .banner__card-content {
  background: url(../../img/top/bnr-winter_ill.png) right 30px bottom 20px no-repeat;
}
#top-banner .banner__card-title {
  position: relative;
  z-index: 1;
  font-size: var(--font-size-24);
  margin-bottom: 30px;
}
#top-banner .banner__card-title::before {
  width: 110px;
  height: 110px;
  position: absolute;
  content: "";
  border-radius: 50%;
  z-index: -1;
  background: #e7d9e3;
  inset: -45px auto auto -50px;
}

/*
# top-about
------------------------*/
.com-en__text--xl {
  position: absolute;
  font-size: 14rem;
  font-weight: var(--font-weight-thin);
  line-height: 0.7;
  font-family: var(--font-family-serif);
}

#top-about {
  position: relative;
  padding-top: 140px;
}
#top-about .com-en__text--xl {
  top: 0;
  color: var(--primary-color);
}
#top-about .about__content {
  width: 505px;
  margin-left: auto;
  min-height: 650px;
}
#top-about .about__title {
  margin-bottom: 45px;
}
#top-about .about__img {
  position: absolute;
  inset: 0 auto auto 0;
  width: 48.95833%;
  text-align: right;
}

/*
# top-service
------------------------*/
#top-service {
  background: var(--primary-color);
}
#top-service .com-en__text--xl {
  inset: 0 auto auto 2.6041%;
  color: var(--color-white);
}
#top-service .service__wrap {
  position: relative;
  margin-bottom: 8.8541%;
  padding-top: min(8.333%, 160px);
  min-height: 610px;
}
#top-service .service__wrap:last-child {
  margin-bottom: 0;
}
#top-service .service__wrap .service__img {
  position: absolute;
  top: -50px;
  width: 54.6875%;
}
#top-service .service__wrap .service__list .service__item {
  width: 50%;
}
#top-service .service__wrap .service__list .service__item:last-child .service__item-inner {
  padding-bottom: 15px;
}
#top-service .service__wrap .service__list .service__item:not(:last-child) {
  border-bottom: 1px solid;
}
#top-service .service__wrap .service__list .service__item-inbox {
  width: auto;
}
#top-service .service__wrap .service__list .service__item-inner {
  display: block;
  width: 500px;
  padding: 35px 0 75px;
}
#top-service .service__wrap .service__button {
  margin-left: auto;
}
#top-service .service__wrap:nth-child(odd) .service__img {
  right: 0;
}
#top-service .service__wrap:nth-child(odd) .service__list:has(> :nth-child(2)) .service__item {
  border-right: 1px solid;
}
#top-service .service__wrap:nth-child(odd) .service__list .service__item-inner {
  margin-left: auto;
  padding-right: 12.6436%;
}
#top-service .service__wrap:nth-child(even) .service__img {
  left: 0;
  text-align: right;
}
#top-service .service__wrap:nth-child(even) .service__list .service__item {
  width: 45%;
  margin-left: auto;
}
#top-service .service__wrap:nth-child(even) .service__list .service__item-inner {
  padding-left: 12.6436%;
}

/*
# top-staff
------------------------*/
#top-staff {
  padding: 125px 0 120px;
}
#top-staff .staff__inbox {
  padding-top: 305px;
  position: relative;
}
#top-staff .staff__img {
  position: absolute;
  inset: 0 -100px auto auto;
}
#top-staff .staff__content {
  width: 720px;
  position: relative;
  padding-right: 95px;
}
#top-staff .staff__content::before {
  position: absolute;
  content: "";
  border-top: 1px solid;
  width: 610px;
  height: 1px;
  inset: 0 0 auto auto;
}
#top-staff .staff__content .staff__text {
  margin-bottom: 45px;
}
#top-staff .staff__content .staff__button {
  margin-left: auto;
}
#top-staff .staff__content .com-en__text--xl {
  inset: 20px 25px auto auto;
  color: var(--primary-color);
}

/*
# top-voice
------------------------*/
#top-voice {
  padding: 95px 0 105px;
  background: linear-gradient(to right, rgba(var(--primary-color-rgb), 1) 89%, rgba(var(--color-white-rgb), 1) 89%);
}
#top-voice .voice__title {
  width: 55px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 auto 50px;
}
#top-voice .voice__list {
  gap: 30px;
}
#top-voice .voice__list .voice__card {
  width: 340px;
}
#top-voice .voice__list .voice__card-img {
  width: 100%;
  height: 400px;
  margin-bottom: 10px;
}
#top-voice .voice__list .voice__card-date {
  display: block;
  font-size: var(--font-size-14);
  color: var(--accent-color);
  margin-bottom: 5px;
}
#top-voice .voice__list .voice__card-tags {
  gap: 7px;
  margin-bottom: 5px;
}
#top-voice .voice__list .voice__card-tags li {
  font-size: var(--font-size-13);
  border: 1px solid;
  border-radius: 15px;
  padding: 0 10px;
}
#top-voice .voice__list .voice__card-title {
  font-size: var(--font-size-16);
}
#top-voice .voice__button {
  margin: 50px 0 0 auto;
}

/*
# top-company
------------------------*/
#top-company {
  padding: 120px 0;
}
#top-company .company__title {
  width: 165px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
#top-company .info__table {
  width: calc(100% - 165px);
  padding-left: 85px;
  border: none;
  border-left: 1px solid;
}
#top-company .info__table tr {
  border-bottom: none;
}
#top-company .info__table tr th {
  background: none;
}

/*
# top-news
------------------------*/
#top-news {
  padding: 100px 0;
  background: linear-gradient(to right, rgba(var(--color-white-rgb), 1) 11%, rgba(var(--primary-color-rgb), 1) 11%);
}
#top-news .news__title {
  border-bottom: 1px solid;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
#top-news .news__post {
  margin-bottom: 40px;
}
#top-news .news__post:last-child {
  margin-bottom: 0;
}
#top-news .news__post-link {
  gap: 10px 0;
}
#top-news .news__post-link:hover {
  transform: translateX(10px);
}
#top-news .news__post-link:hover .news__post-title {
  text-decoration: underline;
}
#top-news .news__post-date {
  width: 80px;
  color: var(--accent-color);
  font-size: var(--font-size-14);
}
#top-news .news__post-tags {
  width: calc(100% - 85px);
  gap: 7px;
}
#top-news .news__post-tags .news__post-tag {
  border-radius: 22px;
  border: 1px solid;
  font-size: var(--font-size-13);
  padding: 0 10px;
}
#top-news .news__post-title {
  width: 100%;
  font-size: var(--font-size-16);
}
#top-news .news__button {
  margin: 40px 0 0 auto;
}

/*
# top-contact
------------------------*/
#top-contact {
  padding: 155px 0 150px;
}
#top-contact .contact__title {
  width: 75px;
  display: flex;
  flex-direction: column;
  margin: 0 auto 80px;
}
#top-contact .contact__contact-list {
  justify-content: center;
  flex-direction: row-reverse;
}
#top-contact .contact__contact-list .com-mail .mail__button {
  width: 340px;
}

/*==========================================
consulting
===========================================*/
/*
# com-target__section
------------------------*/
.com-target__section {
  background: linear-gradient(to bottom, rgba(var(--primary-color-rgb), 1) 85%, rgba(var(--color-white-rgb), 1) 85%);
}
.com-target__section .target__inbox {
  position: relative;
}
.com-target__section .target__content {
  width: 465px;
  min-height: 500px;
}
.com-target__section .target__content .target__list .target__item {
  padding-left: 40px;
  margin-bottom: 20px;
  background: url(../../img/consulting/target-check_ic.png) left top 3px no-repeat;
  font-size: var(--font-size-18);
}
.com-target__section .target__content .target__list .target__item:last-child {
  margin-bottom: 0;
}
.com-target__section .target__img {
  position: absolute;
  inset: auto 0 0 auto;
}

/*
# com-works__section
------------------------*/
.com-works__section {
  position: relative;
}
.com-works__section .works__headline {
  margin-bottom: 80px;
}
.com-works__section .works__headline .works__headline-content {
  width: 505px;
  margin-left: auto;
  min-height: 550px;
}
.com-works__section .works__headline .works__headline-img {
  position: absolute;
  inset: 260px auto auto 0;
  width: 47.9166%;
  text-align: right;
}
.com-works__section .works__consult-content {
  width: 520px;
}
.com-works__section .works__consult-img {
  position: absolute;
  inset: auto 0 400px auto;
  width: 47.9166%;
}
.com-works__section .works__consult-list {
  gap: 30px;
}
.com-works__section .works__consult-item {
  width: 245px;
  border: 1px solid;
  padding: 30px 15px 40px;
}
.com-works__section .works__consult-item dt {
  font-size: var(--font-size-19);
  margin-bottom: 15px;
  text-align: center;
}
.com-works__section .works__free-counseling {
  width: 720px;
  margin: 265px auto 0;
  border: 1px solid;
  padding: 35px;
  text-align: center;
}
.com-works__section .works__point .point__list {
  gap: 30px;
}
.com-works__section .works__point .point__list .point__item {
  width: 340px;
  border: 1px solid;
  padding: 35px 15px;
  display: flex;
  flex-direction: column;
}
.com-works__section .works__point .point__list .point__item-title {
  text-align: center;
}
.com-works__section .works__point .point__list .point__item-icon {
  text-align: center;
  margin-bottom: 30px;
}

/*
# com-feature__section
------------------------*/
.com-feature__section {
  background: var(--primary-color);
}
.com-feature__section .feature__item {
  border-bottom: 1px solid;
  padding: 40px 60px 40px 170px;
}
.com-feature__section .feature__item::before {
  font-size: 13rem;
  font-weight: var(--font-weight-thin);
  color: var(--color-white);
  position: absolute;
  inset: 0 auto 0 0;
  margin: auto 0;
  line-height: 1.3;
}

/*
# .com-price__section
------------------------*/
.com-price__section .price__table th {
  width: 420px;
}
.com-price__section .price__table td {
  width: calc(100% - 420px);
}

/*==========================================
staff
===========================================*/
#staff-greeting .greeting__inbox {
  position: relative;
}
#staff-greeting .greeting__img {
  position: absolute;
  inset: 115px 0 auto auto;
}
#staff-greeting .greeting__content {
  width: 620px;
  min-height: 490px;
  margin-bottom: 60px;
}
#staff-greeting .greeting__content-title {
  border-bottom: 1px solid;
}
#staff-greeting .greeting__content-text span {
  display: block;
  font-size: var(--font-size-20);
}
#staff-greeting .greeting__movie {
  text-align: center;
  margin-bottom: 55px;
}
#staff-greeting .greeting__movie video {
  width: 800px;
  height: 450px;
}
#staff-greeting .greeting__career {
  width: 480px;
  margin: 0 auto;
  border: 1px solid;
  padding: 45px 50px;
}
#staff-greeting .greeting__career .career__title {
  text-align: center;
}
#staff-greeting .greeting__career .career__item {
  margin-bottom: 10px;
}
#staff-greeting .greeting__career .career__item:last-child {
  margin-bottom: 0;
}

/*==========================================
voice
===========================================*/
#voice-archive .voice__tags-list {
  gap: 15px 55px;
  margin-bottom: 50px;
}
#voice-archive .voice__post-list {
  width: 600px;
  margin: 0 auto;
}
#voice-archive .voice__post-list .voice__post {
  margin-bottom: 50px;
}
#voice-archive .voice__post-list .voice__post:last-child {
  margin-bottom: 0;
}
#voice-archive .voice__post-list .voice__post-tags {
  gap: 7px;
  margin-bottom: 10px;
}
#voice-archive .voice__post-list .voice__post-tags .voice__post-tag {
  font-size: var(--font-size-13);
  border: 1px solid;
  border-radius: 18px;
  padding: 0 10px;
}

/*==========================================
case
===========================================*/
/*
# case-approach
------------------------*/
#case-approach .approach__text {
  text-align: center;
}

/*
# case-consult
------------------------*/
#case-consult .consult__inbox {
  width: clamp(1200px, 89.58333%, 1720px);
}
#case-consult .consult__item {
  background: var(--primary-color);
  padding: 60px 0;
  margin-bottom: 35px;
}
#case-consult .consult__item:last-child {
  margin-bottom: 0;
}
#case-consult .consult__item-title, #case-consult .consult__item-body {
  position: relative;
  background: var(--color-white);
  width: 950px;
  padding: 30px;
}
#case-consult .consult__item-title::before, #case-consult .consult__item-title::after, #case-consult .consult__item-body::before, #case-consult .consult__item-body::after {
  position: absolute;
  content: "";
}
#case-consult .consult__item-title::before, #case-consult .consult__item-body::before {
  width: 90px;
  height: 90px;
  top: 0;
}
#case-consult .consult__item-title::after, #case-consult .consult__item-body::after {
  width: 0;
  height: 0;
  border-style: solid;
  top: 25px;
}
#case-consult .consult__item-title {
  margin-bottom: 25px;
  margin: 0 0 25px auto;
}
#case-consult .consult__item-title::before {
  background: url(../../img/case/question_ic.png) center/100% no-repeat;
  left: -130px;
}
#case-consult .consult__item-title::after {
  border-width: 10px 18px 10px 0px;
  border-color: transparent var(--color-white) transparent transparent;
  left: -18px;
}
#case-consult .consult__item-body::before {
  background: url(../../img/case/answer_ic.png) center/100% no-repeat;
  right: -130px;
}
#case-consult .consult__item-body::after {
  border-width: 10px 0px 10px 18px;
  border-color: transparent transparent transparent var(--color-white);
  right: -18px;
}

/*
# case-feature
------------------------*/
#case-feature .feature__text {
  margin-bottom: 25px;
  text-align: center;
}
#case-feature .feature__mail-button {
  width: 430px;
  margin: 45px auto 0;
}

/*==========================================
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: 0;
}
#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フレーム時)
  ===========================================*/