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

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

/*
# ドロワーメニュー
------------------------------------ */
.sp-menu-btn-wrp {
  top: 7.5vw;
  right: 5%;
  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: 7.5vw;
  height: 5vw;
}
.sp-menu-btn-wrp .sp-menu-btn span {
  width: 100%;
  height: 2px;
  background: var(--primary-color);
}
.sp-menu-btn-wrp .sp-menu-btn .top {
  top: 0;
}
.sp-menu-btn-wrp .sp-menu-btn .middle {
  top: 0;
  bottom: 0;
}
.sp-menu-btn-wrp .sp-menu-btn .bottom {
  top: auto;
  bottom: 0;
}
.sp-menu-btn-wrp .sp-menu-btn-txt {
  color: var(--color-white);
  top: -2vw;
  font-size: var(--font-size-10);
}

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

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

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

/*
# c-tel
------------------------*/
.c-tel .tel__label {
  font-size: var(--font-size-13);
  letter-spacing: 0.06em;
  margin-right: 1.5vw;
  padding: 0 1vw;
  text-align: center;
  display: inline-block;
  line-height: 1.6;
  vertical-align: super;
}
.c-tel .tel__num {
  font-size: var(--font-size-28);
  letter-spacing: 0.06em;
}

/*
# c-faq__list
------------------------*/
.c-faq__list .faq__item {
  margin-bottom: 12%;
  padding: 10% 5%;
  border-radius: 5vw 5vw 0 5vw;
}
.c-faq__list .faq__item:last-child {
  margin-bottom: 0;
}
.c-faq__list .faq__item-title::before, .c-faq__list .faq__item-content::before {
  position: absolute;
  width: 8vw;
  height: 8vw;
  font-size: var(--font-size-21);
  font-weight: var(--font-weight-bold);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  border-radius: 50%;
  inset: 2vw auto auto 3%;
  line-height: 1.3;
}
.c-faq__list .faq__item-title {
  font-size: var(--font-size-17);
  padding: 3% 3% 3% 17%;
  margin-bottom: 5%;
}
.c-faq__list .faq__item-title::before {
  content: "Q";
  background: var(--accent-color-light);
  color: var(--accent-color);
}
.c-faq__list .faq__item-content {
  padding-left: 17%;
}
.c-faq__list .faq__item-content::before {
  content: "A";
  background: var(--color-white);
  color: var(--primary-color-light);
}

/*
# c-contact__section
------------------------*/
.c-contact__section {
  padding: 15% 0 45%;
  background: url(../img/common/contact-r_ill.png) right 1.5625% bottom 9%/45% no-repeat, var(--primary-color);
  z-index: 1;
}
.c-contact__section::before {
  position: absolute;
  content: "";
  z-index: -1;
  width: 48%;
  height: 53vw;
  inset: auto auto 0 -13%;
  background: url(../img/common/contact-lb_ill.png) bottom center/100% no-repeat;
}
.c-contact__section .contact__title {
  padding: 5vw 0 0;
  margin-bottom: 8%;
  background: url(../img/common/contact-ttl_deco.png) top center/100% no-repeat;
}
.c-contact__section .contact__title .title-en {
  inset: auto 0 0;
  line-height: 0.88;
}
.c-contact__section .contact__tel {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  border-bottom: 1vw solid var(--primary-color-light);
}
.c-contact__section .contact__tel .tel__num {
  color: var(--color-white);
  font-size: var(--font-size-28);
}
.c-contact__section .contact__button {
  padding-left: 11%;
  margin-top: 12%;
}
.c-contact__section .contact__button::before {
  font-size: var(--font-size-20);
  inset: 0 auto 0 21%;
}

/*==========================================
テーブルレイアウト
===========================================*/
.com-table {
  text-align: left;
  padding: 6% 5%;
}
.com-table tr {
  display: block;
  padding: 6% 0;
  border-bottom: 1px solid;
}
.com-table tr:last-child {
  border-bottom: none;
}
.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;
}
.com-table tr td .tel__text {
  display: block;
}

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

/*
# en-text
------------------------*/
.en-text {
  font-size: var(--font-size-35);
  letter-spacing: 0;
  line-height: 0.8;
}

/*
# com-button
------------------------*/
.com-button {
  width: 100%;
  margin: 15% auto 0;
  font-size: var(--font-size-16);
  height: 15vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.com-button:hover {
  opacity: 1;
  background: var(--primary-color);
  color: var(--color-white);
}
.com-button.border-accent:hover {
  background: var(--accent-color);
  color: var(--color-white);
}
.com-button.border-accent:hover::before {
  background: var(--color-white);
}

/*==========================================
共通タイトル
===========================================*/
.section-title {
  font-size: var(--font-size-25);
  font-weight: var(--font-weight-bold);
  margin-bottom: 12%;
  text-align: center;
  background: url(../img/common/section-ttl_dotted.svg) bottom center/13% no-repeat;
  padding-bottom: 7%;
}
.section-title.no-dotted {
  background: none;
  padding-bottom: 0;
}

.headline-title {
  background: var(--primary-color-extra-light);
  font-size: var(--font-size-21);
  font-weight: var(--font-weight-bold);
  border-radius: 4vw;
  margin-bottom: 5%;
  padding: 3% 5%;
}

/*==========================================
header
===========================================*/
#header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1500;
}
#header .header__logo {
  width: 30%;
}
#header .header__logo-link {
  width: 100%;
  padding: 15% 5%;
  border-radius: 0 0 3vw 3vw;
}
#header .header__logo-link:hover {
  transform: scale(0.98);
  opacity: 1;
}
#header .header__logo-link img {
  width: 78.333%;
}

/*==========================================
mv
===========================================*/
#top-mv {
  height: 110vw;
  background: url(../img/top/mv/mv-lt_img.png) left top/81% no-repeat, url(../img/top/mv/mv-cloud_ill.png) right top 18.226%/18.28125% no-repeat;
}
#top-mv::before, #top-mv::after {
  position: absolute;
  content: "";
}
#top-mv::before {
  width: 54%;
  height: 47vw;
  background: url(../img/top/mv/mv-man_ill.png) top center/100% no-repeat;
  inset: 17.931% auto auto 9%;
  z-index: 1;
}
#top-mv::after {
  width: 41%;
  height: 65vw;
  inset: auto 4.166% 20vw auto;
  background: url(../img/top/mv/mv-rb_img.png) center/100% no-repeat;
}
#top-mv .mv__catch {
  inset: auto auto 8% 0;
  z-index: 100;
}
#top-mv .mv__catch .catch-ja {
  font-size: var(--font-size-25);
  padding-left: 5.5989%;
}
#top-mv .mv__catch .catch-ja em {
  font-size: var(--font-size-27);
}
#top-mv .mv__catch .catch-ja em::before {
  position: absolute;
  content: "";
  width: 2vw;
  height: 2vw;
  border-radius: 50%;
  inset: -2vw 0 auto;
  margin: 0 auto;
  background: var(--accent-color);
}
#top-mv .mv__catch .catch-en {
  margin-top: 1%;
  font-size: var(--font-size-26);
}

/*==========================================
footer
===========================================*/
#footer {
  padding: 15% 0 21vw;
}
#footer .footer__contact-button {
  width: 100%;
  height: 16vw;
  z-index: 1001;
  inset: auto 0 0;
  border-radius: 0;
}
#footer .footer__contact-button:hover {
  opacity: 1;
  transform: scale(0.97);
  background-color: var(--primary-color);
}
#footer .footer__contact-button:hover span::before {
  color: var(--color-white);
}
#footer .footer__contact-button::before {
  inset: 0 21% 0 auto;
  margin: auto 0;
  width: 9vw;
  height: 4.5vw;
}
#footer .footer__contact-button span {
  font-size: var(--font-size-17);
  letter-spacing: 0.06em;
}
#footer .footer__contact-button span::before {
  color: var(--primary-color);
  inset: 0 auto 0 -11vw;
  font-size: var(--font-size-21);
  margin: auto 0;
  font-weight: var(--font-weight-regular);
}
#footer .footer__left {
  margin-bottom: 12%;
}
#footer .footer__logo {
  width: 35%;
  display: block;
  margin: 0 auto 10%;
}
#footer .footer__info .footer__tel {
  text-align: center;
}
#footer .footer__info .footer__buttons {
  margin-top: 10%;
}
#footer .footer__info .footer__button {
  margin-bottom: 8%;
}
#footer .footer__info .footer__button:last-child {
  margin-bottom: 0;
}
#footer .footer__info .footer__button-link {
  width: 100%;
  height: 14vw;
  margin-top: 0;
  font-size: var(--font-size-15);
}
#footer .footer__info .footer__button-link span {
  padding-left: 7vw;
}
#footer .footer__info .footer__button-link span::before {
  inset: 0 auto 0 0;
  color: var(--accent-color);
  font-size: var(--font-size-18);
}
#footer .footer__info .footer__button-link:hover span::before {
  color: var(--color-white);
}
#footer .footer__info .c-instagram {
  display: block;
  margin: 8% auto 0;
}
#footer .footer__nav {
  padding-left: 5%;
  border-left: 2px solid var(--color-white);
}
#footer .footer__nav-list:nth-child(3) {
  position: absolute;
  inset: auto 0 0 auto;
}
#footer .footer__nav-list:nth-child(3) .footer__nav-item {
  text-align: right;
  margin-bottom: 0;
}
#footer .footer__nav-list:nth-child(3) .footer__nav-link {
  font-size: var(--font-size-12);
  padding-left: 0;
}
#footer .footer__nav-list:nth-child(3) .footer__nav-link::before {
  background: none;
}
#footer .footer__nav-item {
  margin-bottom: 13%;
}
#footer .footer__nav-item:last-child {
  margin-bottom: 0;
}
#footer .footer__nav-link {
  padding-left: 3vw;
  font-size: var(--font-size-15);
}
#footer .footer__nav-link::before {
  position: absolute;
  content: "";
  width: 1vw;
  height: 1vw;
  border-radius: 50%;
  background: var(--accent-color);
  inset: 0 auto 0 0;
  margin: auto 0;
  z-index: 1;
}
#footer .footer__nav-link:hover {
  text-decoration: underline;
}

#copyright {
  word-break: normal;
  text-align: center;
  margin-top: 15%;
}
#copyright small {
  font-size: var(--font-size-11);
}

/*==========================================
ページトップ
===========================================*/
.pagetop {
  position: fixed;
  bottom: 13%;
  right: 2%;
  z-index: 999;
  writing-mode: vertical-rl;
  padding: 1.5vw 0;
  border-left: 2px solid;
  font-size: var(--font-size-13);
}
.pagetop::before {
  position: absolute;
  content: "";
  width: 1vw;
  height: 1vw;
  border-radius: 50%;
  background: var(--primary-color);
  inset: auto auto -2vw -0.8vw;
  transition: all 0.3s ease;
}
.pagetop:hover {
  bottom: 9.5%;
}

/*==========================================
sv
===========================================*/
.lower-sv {
  height: 72vw;
  z-index: 1;
}
.lower-sv::before {
  position: absolute;
  content: "";
  z-index: -1;
  width: 75%;
  height: 73.8461%;
  border-radius: 8vw 0 0 8vw;
  inset: auto 0 0 auto;
}
.lower-sv .inbox-secondary {
  height: 100%;
}
.lower-sv .sv__title {
  width: 65%;
  inset: auto auto 0 0;
  text-align: center;
  line-height: 1.6;
  padding: 6% 0;
  background-image: url(../img/sv/sv-ttl_gear.png);
  background-size: 27.692%;
  background-position: 95% 55px;
  background-repeat: no-repeat;
}
.lower-sv .sv__title::before {
  position: absolute;
  content: "";
  width: 58%;
  height: 33vw;
  inset: -23vw auto auto -21%;
  background: url(../img/sv/sv-woman_ill.png) center/100% no-repeat;
}
.lower-sv .sv__title .title-ja {
  font-size: var(--font-size-24);
}
.lower-sv .sv__title .title-en {
  font-size: var(--font-size-16);
}

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

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

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

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

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

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

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

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

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

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

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

/*==========================================
top
===========================================*/
/*
# top-about
------------------------*/
#top-about {
  padding: 18% 0;
}
#top-about .about__headline {
  z-index: 1;
  padding: 0;
  margin-bottom: 21%;
}
#top-about .about__title {
  padding: 10% 0;
  font-size: var(--font-size-25);
  background: url(../img/top/about-woman_ill.png) right 15% top/42% no-repeat;
}
#top-about .about__indivisual {
  padding: 10% 6%;
  background-image: url(../img/top/about-checks_ill.png);
  background-position: 94.52% 100%;
  background-size: 30%;
  background-repeat: no-repeat;
}
#top-about .about__indivisual::before {
  position: absolute;
  content: "";
  inset: 0 0 auto;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5vw 6vw 0px 6vw;
  border-color: var(--primary-color-extra-light) transparent transparent transparent;
}
#top-about .indivisual__title {
  width: 45%;
  position: absolute;
  inset: -12vw auto auto 6%;
  z-index: 1;
}
#top-about .indivisual__list .indivisual__item {
  font-size: var(--font-size-16);
  margin-bottom: 6%;
  padding-left: 8%;
}
#top-about .indivisual__list .indivisual__item::before {
  inset: 0 auto 0 0;
  color: var(--color-white);
  font-size: var(--font-size-18);
}
#top-about .about__movie {
  margin-top: 15%;
  /*==========================================
  iframe レスポンシブ　アスペクト比を保ちながら縦横を伸縮
  ===========================================*/
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
#top-about .about__movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/*
# top-work
------------------------*/
#top-work {
  padding-top: 15%;
  margin-bottom: -5%;
}
#top-work::before {
  position: absolute;
  content: "";
  width: 16%;
  height: 21vw;
  inset: -10vw 3% auto auto;
  background: url(../img/top/work-man_ill.png) bottom center/100% no-repeat;
}
#top-work .work__title {
  text-align: center;
  margin-bottom: 12%;
}
#top-work .work__title .title-en {
  position: absolute;
  inset: -5vw 0 auto;
}
#top-work .work__text {
  padding: 0 8%;
  margin-bottom: 12%;
}
#top-work .work__text span {
  font-size: var(--font-size-18);
}
#top-work .work__item {
  width: 84%;
  margin: 0 auto 6%;
}
#top-work .work__item:last-child {
  margin-bottom: 0;
}
#top-work .work__item-link {
  height: 58vw;
  padding: 7% 5%;
  overflow: hidden;
  z-index: 1;
}
#top-work .work__item-link::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  z-index: 1;
  bottom: 0;
}
#top-work .work__item-link::after {
  position: absolute;
  content: "";
  z-index: -1;
}
#top-work .work__item-link:hover {
  opacity: 1;
  background-color: var(--primary-color);
}
#top-work .work__item-link:hover .work__content-item {
  color: var(--color-white);
}
#top-work .work__item--standard .work__item-link::after {
  width: 70%;
  height: 84vw;
  background: url(../img/top/work-standard_ill.png) center/100% no-repeat;
  inset: auto auto -33vw -3%;
}
#top-work .work__item--step-up .work__item-link::after {
  width: 67%;
  height: 88vw;
  background: url(../img/top/work-stepup_ill.png) center/100% no-repeat;
  inset: auto -5% -42vw auto;
}
#top-work .work__item--life-support .work__item-link::after {
  width: 65%;
  height: 102vw;
  background: url(../img/top/work-lifesupport_ill.png) center/100% no-repeat;
  inset: auto auto -56vw 0;
}
#top-work .work__item--creative .work__item-link::after {
  width: 65%;
  height: 63vw;
  background: url(../img/top/work-creative_ill.png) center/100% no-repeat;
  inset: auto -11% -20vw auto;
}
#top-work .work__item:nth-child(odd) .title-en {
  right: 10px;
}
#top-work .work__item:nth-child(odd) .work__item-link {
  border-radius: 0 4vw 0 0;
}
#top-work .work__item:nth-child(odd) .work__item-link::before {
  border-width: 0px 0px 5vw 5vw;
  border-color: transparent transparent var(--primary-color) transparent;
  right: 0;
}
#top-work .work__item:nth-child(odd) .work__item-title {
  text-align: right;
}
#top-work .work__item:nth-child(odd) .work__item-content {
  margin-left: auto;
}
#top-work .work__item:nth-child(odd) .work__content-item {
  width: 80%;
  margin-left: auto;
  transition: color 0.3s ease;
}
#top-work .work__item:nth-child(even) .title-en {
  left: 10px;
}
#top-work .work__item:nth-child(even) .work__item-link {
  border-radius: 4vw 0 0 0;
}
#top-work .work__item:nth-child(even) .work__item-link::before {
  border-width: 5vw 0px 0px 5vw;
  border-color: transparent transparent transparent var(--primary-color);
  left: 0;
}
#top-work .work__item-content {
  width: 81%;
}
#top-work .work__item-title {
  margin-bottom: 5%;
}
#top-work .work__item-title .title-ja {
  font-size: var(--font-size-21);
  padding: 0.5vw 3vw;
}
#top-work .work__item-title .title-en {
  opacity: 0.24;
  bottom: 0;
}
#top-work .work__item .work__content-list .work__content-item {
  font-size: var(--font-size-14);
}
#top-work .work__item .work__content-list .work__content-item::before {
  content: "・";
}
#top-work .work__button {
  width: 84%;
}
#top-work .work__schedule-button {
  width: 84%;
  margin: 18% auto 0;
  height: 49vw;
  padding: 0 7%;
  background: url(../img/top/work-schedule_ill.png) left -59% bottom/80% no-repeat, var(--color-white);
  font-size: var(--font-size-22);
  line-height: 1.5;
}
#top-work .work__schedule-button::before {
  inset: auto 5% 4vw auto;
}
#top-work .work__schedule-button:hover {
  opacity: 1;
  background-color: var(--primary-color);
  color: var(--color-white);
  border-color: var(--primary-color);
  transform: scale(0.97);
}
#top-work .work__schedule-button:hover::before {
  background-color: var(--color-white);
}

/*
# top-faq
------------------------*/
#top-faq {
  padding: 18% 0;
}
#top-faq .faq__title .title-en {
  position: absolute;
  writing-mode: vertical-rl;
  inset: 0 auto 0 0;
  margin: auto 0;
}

/*
# top-access
------------------------*/
#top-access {
  padding: 18% 0;
}
#top-access .access__title {
  text-align: left;
}
#top-access .access__title .title-ja {
  margin-left: 3%;
}
#top-access .access__content {
  margin-bottom: 12%;
}
#top-access .access__content-text {
  padding-left: 5%;
  border-left: 4px solid var(--primary-color);
}
#top-access .access__content .access__address {
  margin-bottom: 8%;
}
#top-access .access__content .access__address-label {
  padding: 0 1vw;
  margin-right: 1vw;
  font-size: var(--font-size-14);
}
#top-access .access__content .access__button {
  width: 100%;
}
#top-access #g-map {
  margin-top: 15%;
}

/*
# top-blog
------------------------*/
#top-blog {
  padding: 15% 0;
  margin: 0 0 18% auto;
  border-radius: 7vw 0 0 7vw;
  background-image: url(../img/top/blog-building_ill.png), url(../img/top/blog-building_ill.png);
  background-position: left 5% top -5vw, right bottom -5vw;
  background-size: 30%;
  background-repeat: no-repeat;
}
#top-blog::before {
  position: absolute;
  content: "";
  width: 23%;
  height: 14vw;
  inset: -12vw 3.6458% auto auto;
  background: url(../img/top/blog-woman_ill.png) bottom center/100% no-repeat;
}
#top-blog .blog__post {
  border-bottom: 1px solid;
}
#top-blog .blog__post-link {
  padding: 6% 0;
}
#top-blog .blog__post-link:hover {
  transform: translateX(10px);
}
#top-blog .blog__post-link:hover .blog__post-title {
  text-decoration: underline;
}
#top-blog .blog__post:first-child .blog__post-link {
  padding-top: 0;
}
#top-blog .blog__post-date {
  font-size: var(--font-size-13);
  text-align: right;
  margin-top: 3%;
}
#top-blog .blog__post-tags {
  gap: 1.5vw;
  margin-bottom: 3%;
}
#top-blog .blog__post-tags .blog__post-tag {
  font-size: var(--font-size-14);
  padding: 0 1.5vw;
}
#top-blog .blog__post-title {
  font-size: var(--font-size-16);
}
#top-blog .blog__button {
  width: 26%;
  display: block;
  margin: 15% 0 0 auto;
  text-align: center;
  font-size: var(--font-size-15);
  padding-bottom: 11%;
}
#top-blog .blog__button::before {
  inset: auto 0 0;
  margin: 0 auto;
}

/*==========================================
about
===========================================*/
/*
# about-policy
------------------------*/
#about-policy {
  padding: 18% 0 44%;
  background: url(../img/about/policy-l_ill.png) left 1.0416% bottom 8.333%/42.1354% no-repeat, url(../img/about/policy-r_ill.png) right 3.90625% bottom 10.9375%/40.7291% no-repeat;
}

/*
# about-feature
------------------------*/
#about-feature {
  padding: 18% 0;
  background-image: url(../img/about/feature-lb_gear.png), url(../img/about/feature-rt_gear.png);
  background-position: left bottom 7.552%, right 11.9791% top 4.947%;
  background-size: 35.2604%, 21.40625%;
  background-repeat: no-repeat;
}
#about-feature .feature__title {
  margin-bottom: 130px;
}
#about-feature .feature__card {
  width: 90%;
  margin: 0 auto 31%;
  padding: 7% 6%;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: right -10px bottom -10px;
}
#about-feature .feature__card:last-child {
  margin-bottom: 0;
}
#about-feature .feature__card::before {
  position: absolute;
  inset: -10vw 0 auto;
  font-size: var(--font-size-32);
  font-weight: var(--font-weight-black);
  color: var(--accent-color);
  text-align: center;
  z-index: 1;
}
#about-feature .feature__card::after {
  position: absolute;
  content: "";
  width: 31vw;
  height: 31vw;
  border-radius: 50%;
  background: url(../img/about/feature-item_entxt.svg) top 12px center no-repeat, var(--color-white);
  inset: -15.5vw 0 auto;
  margin: 0 auto;
  z-index: -1;
}
#about-feature .feature__card:nth-child(1) {
  background-image: url(../img/about/feature-item01_ill.png);
}
#about-feature .feature__card:nth-child(2) {
  background-image: url(../img/about/feature-item02_ill.png);
}
#about-feature .feature__card:nth-child(3) {
  background-image: url(../img/about/feature-item03_ill.png);
}
#about-feature .feature__card:nth-child(4) {
  background-image: url(../img/about/feature-item04_ill.png);
}
#about-feature .feature__card:nth-child(5) {
  background-image: url(../img/about/feature-item05_ill.png);
}
#about-feature .feature__card-title {
  text-align: center;
  font-size: var(--font-size-22);
  margin-bottom: 7%;
}
#about-feature .feature__card-text {
  padding: 0 5%;
}

/*
# about-agreement
------------------------*/
#about-agreement {
  padding: 18% 0;
}
#about-agreement .agreement__text {
  margin-bottom: 15%;
}
#about-agreement .agreement__worries {
  padding: 25% 6% 13%;
  background-image: url(../img/about/agreement-check_ill.png);
  background-position: right -5vw bottom -6vw;
  background-repeat: no-repeat;
  background-size: 65%;
}
#about-agreement .agreement__worries-title {
  width: 92%;
  margin: 0 auto;
  text-align: center;
  font-size: var(--font-size-17);
  position: absolute;
  inset: -30px 0 auto;
  padding: 12px;
}
#about-agreement .agreement__worries .agreement__check-item {
  font-size: var(--font-size-16);
  margin-bottom: 3%;
  padding-left: 10%;
}
#about-agreement .agreement__worries .agreement__check-item::before {
  inset: 1.5vw auto auto 0;
  margin: auto 0;
  color: var(--color-white);
  font-size: var(--font-size-21);
}
#about-agreement .agreement__worries .agreement__check-item:last-child {
  margin-bottom: 0;
}

/*==========================================
service
===========================================*/
#service-section .service__part {
  margin-bottom: 15%;
}
#service-section .service__part:last-child {
  margin-bottom: 0;
}
#service-section .service__part-title {
  text-align: center;
}
#service-section .service__card {
  padding-bottom: 12%;
  margin-bottom: 12%;
  border-bottom: 1px solid;
  position: relative;
}
#service-section .service__card:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
#service-section .service__card-img {
  text-align: center;
  margin-bottom: 8%;
}
#service-section .service__card-title {
  font-size: var(--font-size-21);
  padding-left: 6%;
  margin-bottom: 5%;
}
#service-section .service__card-title::before {
  position: absolute;
  content: "";
  width: 2vw;
  height: 2vw;
  border-radius: 50%;
  background: var(--primary-color);
  inset: 4vw auto auto 0;
}

/*
# service-scene
------------------------*/
#service-scene {
  background-image: url(../img/common/cloud_ill.png);
  background-position: 96% 167px;
  background-repeat: no-repeat;
  background-size: 21.8229%;
}
#service-scene::before {
  position: absolute;
  content: "";
  width: 9.21875%;
  height: 232px;
  background: url(../img/service/scene-man_ill.png) bottom center/100% no-repeat;
  inset: -140px 7.2916% auto auto;
}

.grid-3 .grid-item {
  width: 90%;
  margin: 0 auto 12%;
}
.grid-3 .grid-item:last-child {
  margin-bottom: 0;
}
.grid-3 .grid-item .grid-img {
  width: 100%;
  height: 67vw;
}
.grid-3 .grid-item .grid-img img {
  border-radius: 4vw 4vw 0 0;
}
.grid-3 .grid-item .grid-text {
  padding: 5%;
}

/*==========================================
schedule
===========================================*/
#schedule-example .example__item {
  padding-bottom: 10%;
  z-index: 1;
}
#schedule-example .example__item::before {
  width: 2px;
  height: 100%;
  position: absolute;
  content: "";
  background: var(--accent-color);
  inset: 0 auto auto 14%;
  z-index: -1;
}
#schedule-example .example__item:last-child {
  padding-bottom: 0;
}
#schedule-example .example__item:last-child::before {
  background: none;
}
#schedule-example .example__item-title {
  font-size: var(--font-size-20);
  margin-bottom: 6%;
}
#schedule-example .example__item-title .title-time {
  width: 28%;
  padding: 3.5% 0;
  text-align: center;
  position: absolute;
  inset: 0 auto auto 0;
  font-size: var(--font-size-14);
}
#schedule-example .example__item-title .title-text {
  display: block;
  padding: 2% 3% 2% 33%;
  width: 100%;
}
#schedule-example .example__item-content {
  padding-left: 25%;
}

/*==========================================
company
===========================================*/
/*
# company-greeting
------------------------*/
#company-greeting .greeting__card {
  margin-bottom: 15%;
}
#company-greeting .greeting__card:last-child {
  margin-bottom: 0;
}
#company-greeting .greeting__card:has(.greeting__card-img) .greeting__card-img {
  width: 85%;
  height: 70vw;
  margin: 0 auto 10%;
}

/*
# company-facilities
------------------------*/
#company-facilities {
  background-image: url(../img/common/cloud_ill.png);
  background-position: 96% 25vw;
  background-repeat: no-repeat;
  background-size: 30%;
}
#company-facilities::before {
  position: absolute;
  content: "";
  width: 25%;
  height: 15vw;
  background: url(../img/top/blog-woman_ill.png) bottom center/100% no-repeat;
  inset: -13vw 7.4479% auto auto;
}

/*
# company-info
------------------------*/
#company-info .info__table {
  margin-bottom: 15%;
}

/*==========================================
news
===========================================*/
.column__wrap .column__list .column__post a {
  padding: 14% 0;
}
.column__wrap .column__list .column__post:first-child a {
  padding-top: 0;
}
.column__wrap .column__list .column__post-meta {
  margin-bottom: 4%;
}
.column__wrap .column__list .column__post-meta time {
  width: -moz-fit-content;
  width: fit-content;
  font-size: var(--font-size-11);
}
.column__wrap .column__list .column__post-meta .category-label {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 2vw;
  gap: 1vw 1.5vw;
}
.column__wrap .column__list .column__post-meta .category-label li {
  padding: 0 0.75vw;
  font-size: var(--font-size-11);
}
.column__wrap .column__list .column__post-title {
  font-size: var(--font-size-17);
  margin: 3% 0;
}
.column__wrap .column__list .column__post-body {
  font-size: var(--font-size-13);
}
.column__wrap .column__list .more-btn {
  width: 45%;
  font-size: 3.2vw;
  margin: inherit;
  margin-left: auto;
  font-weight: bold;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  box-sizing: border-box;
  padding: 3% 2%;
  display: block;
  color: var(--color-white);
  transition: all 0.3s;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) a {
  /*==========================================
  Flexbox
  ===========================================*/
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-thumb {
  width: 40%;
  height: 33vw;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-meta {
  width: 55%;
}

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

/*==========================================
  contact
  ===========================================*/
#contact-way .contact__content {
  margin-top: 12%;
  padding: 8% 6%;
  text-align: center;
}
#contact-way .contact__tel {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-bottom: 1vw solid var(--primary-color-light);
}
#contact-way .contact__tel .tel__num {
  color: var(--color-white);
  font-size: var(--font-size-28);
}
#contact-way .contact__worktime {
  margin-top: 7%;
}

#contact .contact__form {
  margin-bottom: 15%;
  padding: 0;
}
#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 .sitemap__item-link {
  padding: 4% 0 4% 8%;
}

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