@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: 2vw;
  right: 3%;
  bottom: auto;
  left: auto;
  background: var(--color-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sp-menu-btn-wrp .sp-menu-btn {
  width: 14.5vw;
  height: 14.5vw;
}
.sp-menu-btn-wrp .sp-menu-btn span {
  width: 70%;
  height: 1px;
  background: var(--color-white);
}
.sp-menu-btn-wrp .sp-menu-btn .top {
  top: 4.5vw;
}
.sp-menu-btn-wrp .sp-menu-btn .middle {
  top: 0;
  bottom: 0;
}
.sp-menu-btn-wrp .sp-menu-btn .bottom {
  top: 9.5vw;
}
.sp-menu-btn-wrp .sp-menu-btn-txt {
  color: var(--color-white);
  top: -2vw;
  font-size: var(--font-size-10);
}

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

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

/*  drawer inbox
  ------------------------------------ */
#drawer-nav {
  padding: 8% 6% 15%;
  background: var(--color-black);
}
#drawer-nav .drawer-logo {
  width: 35%;
  margin-bottom: 10%;
  text-align: left;
}
#drawer-nav .drawer-nav {
  margin-bottom: 10%;
}
#drawer-nav .drawer-nav .drawer-link {
  padding: 6% 0;
  color: var(--color-white);
  border-bottom: 1px solid var(--color-white);
  font-size: var(--font-size-22);
  text-align: center;
}
#drawer-nav .drawer-nav .drawer-dropdown {
  padding: 3% 12% 3% 0;
}
#drawer-nav .drawer-nav .drawer-dropdown span {
  display: block;
}
#drawer-nav .drawer-nav .drawer-dropdown span:before, #drawer-nav .drawer-nav .drawer-dropdown span:after {
  background: var(--color-black);
}
#drawer-nav .drawer-nav .current {
  color: var(--accent-color);
  font-weight: var(--font-weight-black);
}
#drawer-nav .drawer-nav .current span {
  position: relative;
  text-decoration: underline;
}
#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: 3vw;
  height: 3vw;
  border-top: 2px solid var(--accent-color);
  border-right: 2px solid var(--accent-color);
  transform: rotate(45deg);
  transition: all 0.3s;
  z-index: 1;
  opacity: 1 !important;
}
#drawer-nav .drawer-nav .current span::before {
  left: -7vw;
}
#drawer-nav .drawer-nav .current span::after {
  left: -9vw;
}
#drawer-nav .drawer-nav .drawer-dropdown-bx {
  margin: 3% 0;
  padding-left: 4%;
  box-sizing: border-box;
}
#drawer-nav .drawer-nav .drawer-dropdown-bx > li > .drawer-link:before {
  border-left: 1px solid var(--body-font-color);
  border-bottom: 1px solid var(--body-font-color);
}
#drawer-nav .drawer-nav .drawer-dropdown-bx > li > .drawer-link span {
  padding: 0 0 0 5%;
}
#drawer-nav .drawer__subpage {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  font-size: var(--font-size-15);
  gap: 4vw;
  margin-top: 10%;
}
#drawer-nav .drawer__subpage-item a {
  color: var(--color-white);
  text-decoration: underline;
}

/*
# c-contact__list
------------------------*/
.c-contact__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7vw 5vw;
}
.c-contact__list .com-tel {
  width: 100%;
  line-height: 1.2;
  text-align: center;
}
.c-contact__list .com-tel .tel__num {
  line-height: 1;
  font-size: var(--font-size-40);
  font-weight: var(--font-weight-black);
  color: var(--color-white);
  padding-left: 10vw;
  background: url(../../img/common/tel_ic.png) left center/8vw no-repeat;
}
.c-contact__list .com-tel .tel__text {
  display: block;
  filter: brightness(0) invert(1);
  text-align: center;
  margin-top: 4%;
}
.c-contact__list .com-mail .mail__button {
  width: 52vw;
  height: 15vw;
  justify-content: center;
  font-size: var(--font-size-22);
  position: relative;
}
.c-contact__list .com-mail .mail__button:after {
  position: absolute;
  content: "";
  width: 5vw;
  height: 4.5vw;
  inset: 0 auto 0 17%;
  margin: auto 0;
  background: url(../../img/common/mail_ic.png) center/100% no-repeat;
  z-index: 1;
}
.c-contact__list .com-mail .mail__button span {
  position: relative;
  line-height: 1;
}
.c-contact__list .com-mail .mail__button span::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 2vw 0 2vw 2vw;
  border-color: transparent transparent transparent var(--accent-color);
  inset: 0 -7vw 0 auto;
  margin: auto 0;
  z-index: 1;
}
.c-contact__list .com-line .sns-icon {
  width: 40px;
  height: 40px;
}

/*
# contact__section
------------------------*/
.c-contact__section {
  padding: 22% 0;
  background: url(../../img/common/contact_bg.jpg) center/cover no-repeat;
}
.c-contact__section .contact__title {
  text-align: center;
  position: relative;
  z-index: 1;
}
.c-contact__section .contact__title::before {
  position: absolute;
  content: "";
  width: 20vw;
  height: 20vw;
  inset: 14vw auto auto -8%;
  background: url(../../img/common/contact-ttl_ill.png) center/100% no-repeat;
  z-index: -1;
}
.c-contact__section .contact__title span {
  display: block;
  width: 100%;
  margin: 0 auto 5%;
  background: var(--accent-color);
  border: 1vw solid;
  font-size: var(--font-size-21);
  font-weight: var(--font-weight-black);
  line-height: 1.6;
  padding: 3% 0;
}
.c-contact__section .contact__title img {
  width: 85%;
}
.c-contact__section .contact__content {
  padding: 22% 6% 17%;
  margin-top: -10vw;
}
.c-contact__section .contact__content .contact__text {
  margin-bottom: 10%;
}
.c-contact__section .contact__content .c-contact__contact-list {
  justify-content: center;
}
.c-contact__section .contact__content .c-contact__contact-list .com-tel {
  text-align: center;
}
.c-contact__section .contact__content .c-contact__contact-list .com-tel .tel__num {
  font-size: var(--font-size-35);
  color: var(--color-black);
}
.c-contact__section .contact__content .c-contact__contact-list .com-tel .tel__text {
  filter: none;
}

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

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

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

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

/*
# 共通ボタン
------------------------*/
.com-button {
  display: flex;
  align-items: center;
  color: var(--color-white);
  border-radius: 12vw;
  box-shadow: 4px 4px 9px 0px rgba(255, 255, 255, 0.7) inset, -4px -4px 9px 0px rgba(0, 0, 0, 0.46) inset;
  background: var(--primary-color);
  height: 17vw;
  padding: 0 7vw;
}
.com-button:hover {
  opacity: 1;
  transform: scale(0.99);
  box-shadow: 4px 4px 9px 0px rgba(0, 0, 0, 0.35) inset, -4px -4px 9px 0px rgba(0, 0, 0, 0.55) inset;
}
.com-button.bs-icon--arrow-right::before {
  right: 5.8823%;
}

.bs-icon--arrow-right::before {
  width: 6vw;
  height: 6vw;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--primary-color) !important;
  content: "\f138";
  z-index: 1;
  font-size: var(--font-size-18);
}

/*
# 共通のパターン
------------------------*/
.bg-pattern--white {
  background-image: linear-gradient(#e5e5e5 1px, transparent 1px), linear-gradient(to right, #e5e5e5 1px, transparent 1px);
  background-size: 18px 18px;
  background-color: var(--color-white);
}

/*
# drop-shadow
------------------------*/
.drop-shadow {
  box-shadow: 10px 10px 0 var(--color-black);
}

/*
# clip-path
------------------------*/
.clip-path {
  position: relative;
  border: 1vw solid var(--color-black);
}

/*
# border
------------------------*/
.border-6 {
  border-width: 1vw;
}
.border-6.border-solid {
  border-style: solid;
}

/*==========================================
共通タイトル
===========================================*/
.section-title {
  text-align: center;
  margin-bottom: 65px;
  font-weight: var(--font-weight-black);
  font-size: var(--font-size-35);
  color: var(--accent-color);
  text-shadow: var(--color-black) 2px 0px, var(--color-black) -2px 0px, var(--color-black) 0px -2px, var(--color-black) 0px 2px, var(--color-black) 2px 2px, var(--color-black) -2px 2px, var(--color-black) 2px -2px, var(--color-black) -2px -2px, var(--color-black) 1px 2px, var(--color-black) -1px 2px, var(--color-black) 1px -2px, var(--color-black) -1px -2px, var(--color-black) 2px 1px, var(--color-black) -2px 1px, var(--color-black) 2px -1px, var(--color-black) -2px -1px;
}

.headline-title {
  font-size: var(--font-size-22);
  font-weight: var(--font-weight-black);
  border-bottom: 2px solid;
  padding-bottom: 3%;
  margin-bottom: 5%;
}

/*==========================================
header
===========================================*/
#header {
  background: var(--color-black);
  padding: 5%;
}
#header .header__logo {
  width: 30%;
  line-height: 1;
}
#header .header__right {
  display: none;
}

/*==========================================
mv
===========================================*/
#top-mv {
  position: relative;
  height: 95vw;
  background: url(../../img/top/mv/mv_bg.jpg) top center/96.2025% 96.875% no-repeat, var(--color-black);
}
#top-mv .mv__catch {
  width: 76%;
  position: absolute;
  inset: 13% auto auto 6.514%;
}
#top-mv .mv__illust {
  width: 36%;
  position: absolute;
  inset: auto 4.42708% 0 auto;
}

.mv__frame {
  padding: 0 1.5625% 3vw;
}

/*==========================================
footer
===========================================*/
#footer {
  background: var(--color-black);
}
#footer:has(.footer__inbox) {
  padding: 18% 0 12%;
  text-align: center;
}
#footer .footer__logo {
  width: 40%;
  display: inline-block;
  margin-bottom: 15%;
}
#footer .footer__address {
  color: var(--color-white);
  text-align: center;
  font-size: var(--font-size-15);
  margin-bottom: 35px;
}
#footer .footer__nav {
  margin-bottom: 15%;
}
#footer .footer__nav .footer__nav-list {
  -moz-column-count: 2;
       column-count: 2;
}
#footer .footer__nav .footer__nav-list .footer__nav-link {
  color: var(--color-white);
  font-size: var(--font-size-15);
  display: block;
  margin-bottom: 15%;
}
#footer .footer__nav .footer__nav-list .footer__nav-link:hover {
  text-decoration: underline;
}

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

/*==========================================
sv
===========================================*/
.lower-sv {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45vw;
  background-color: var(--color-black);
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: 96.875% 94.2307%;
}
.lower-sv .sv__title {
  width: 84%;
  margin: 0 auto;
  background: url(../../img/sv/sv-ttl_bg.jpg) center/cover no-repeat;
  text-align: center;
  padding: 4%;
}
.lower-sv .sv__title img {
  width: 48%;
}

#service-sv {
  background-image: url(../../img/sv/service-sv_bg.jpg);
}
#service-sv .sv__title img {
  width: 62%;
}

#about-sv {
  background-image: url(../../img/sv/about-sv_bg.jpg);
}
#about-sv .sv__title img {
  width: 75%;
}

#recruit-sv {
  background-image: url(../../img/sv/recruit-sv_bg.jpg);
}

#info-sv {
  background-image: url(../../img/sv/info-sv_bg.jpg);
}

#contact-sv {
  background-image: url(../../img/sv/contact-sv_bg.jpg);
}

#complete-sv {
  background-image: url(../../img/sv/complete-sv_bg.jpg);
}

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

#privacy-sv {
  background: url(../../img/sv/privacy-sv_bg.jpg);
}
#privacy-sv .sv__title img {
  width: 85%;
}

#site-sv {
  background: url(../../img/sv/site-sv_bg.jpg);
}
#site-sv .sv__title img {
  width: 67%;
}

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

/*==========================================
entrance
===========================================*/
.entrance__list {
  background: var(--color-black);
  padding: 5%;
}
.entrance__list::before {
  position: absolute;
  content: "";
  width: 28%;
  height: 28vw;
  background: url(../../img/entrance/ent_ill.png) center/100% no-repeat;
  inset: 3vw 7% auto auto;
  margin: auto;
}
.entrance__list .entrance__item {
  width: 100%;
  height: 52vw;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: 1vw solid var(--color-white);
  border: 1px solid var(--color-black);
  margin-bottom: 12%;
}
.entrance__list .entrance__item:last-child {
  margin-bottom: 0;
}
.entrance__list .entrance__item-official {
  background: url(../../img/entrance/ent-ofc_bg.jpg) center/cover no-repeat;
}
.entrance__list .entrance__item-official img {
  width: 42%;
}
.entrance__list .entrance__item-special {
  background: url(../../img/entrance/ent-special_bg.jpg) center/cover no-repeat;
}
.entrance__list .entrance__item-special img {
  width: 42%;
}
.entrance__list .entrance__item-kaimyou {
  background: url(../../img/entrance/ent-kaimyou_bg.jpg) center/cover no-repeat;
}
.entrance__list .entrance__item-kaimyou img {
  width: 66.616%;
}
.entrance__list .entrance__item-recruit {
  background: url(../../img/entrance/ent-recruit_bg.jpg) center/cover no-repeat;
}
.entrance__list .entrance__item-recruit img {
  width: 66.616%;
}
.entrance__list .entrance__item-button {
  width: 74.3169%;
  margin: 0 auto;
  height: 18vw;
  border-radius: 11vw;
  justify-content: center;
}
.entrance__list .entrance__item-button::before {
  width: 8vw;
  height: 8vw;
  right: 5.8823%;
}

/*==========================================
top
===========================================*/
/*
# top-greeting
------------------------*/
#top-greeting {
  padding: 22% 0;
  background: url(../../img/top/greeting_bg.jpg) top center/cover no-repeat;
}
#top-greeting .greeting__inbox {
  position: relative;
}
#top-greeting .greeting__title {
  width: 62%;
  position: absolute;
  inset: -11vw auto auto 13%;
  z-index: 1;
}
#top-greeting .greeting__content {
  padding: 25% 6% 12%;
  margin-bottom: 18%;
}
#top-greeting .greeting__content .greeting__text span {
  background: linear-gradient(to bottom, transparent 60%, rgba(var(--accent-color-rgb), 1) 60%);
}
#top-greeting .greeting__page-item {
  margin-bottom: 15%;
}
#top-greeting .greeting__page-item:last-child {
  margin-bottom: 0;
}
#top-greeting .greeting__page-item .greeting__page-content {
  padding: 15% 6%;
  margin-bottom: 15%;
}
#top-greeting .greeting__page-item .greeting__page-title {
  margin-bottom: 12%;
}
#top-greeting .greeting__page-item.greeting__page-item-service .greeting__page-title img {
  width: 75%;
}
#top-greeting .greeting__page-item.greeting__page-item-service .greeting__page-content {
  box-shadow: 7px 7px var(--color-green);
}
#top-greeting .greeting__page-item.greeting__page-item-flow .greeting__page-content {
  box-shadow: -7px 7px var(--color-purple);
}

/*
# top-about
------------------------*/
#top-about {
  padding: 22% 0;
  background: url(../../img/top/about_bg.jpg) center/cover no-repeat;
}
#top-about .about__title {
  margin-bottom: 10%;
}
#top-about .about__headline {
  position: relative;
  margin-bottom: 20%;
}
#top-about .about__headline-content {
  width: 100%;
  background-image: radial-gradient(#e5d630 1.5px, transparent 1.5px), radial-gradient(#e5d630 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  background-position: 0 0, 6px 6px;
  background-color: #ffea00;
  padding: 10% 6%;
  box-shadow: 8px 8px 0 0 var(--color-black);
  position: relative;
}
#top-about .about__headline-content::before, #top-about .about__headline-content::after {
  position: absolute;
  content: "";
  transform: rotate(-25deg);
  width: 0;
  height: 0;
  border-style: solid;
}
#top-about .about__headline-content::before {
  border-width: 0px 7vw 14vw 0px;
  border-color: transparent var(--color-black) transparent transparent;
  inset: auto auto -14vw 24%;
}
#top-about .about__headline-content::after {
  border-width: 0px 7vw 14vw 0px;
  border-color: transparent var(--accent-color) transparent transparent;
  inset: auto auto -10vw 22%;
}
#top-about .about__headline-content .about__headline-text {
  line-height: 1.8;
}
#top-about .about__headline-content strong {
  color: var(--primary-color);
  font-size: var(--font-size-18);
}
#top-about .about__headline-img {
  width: 95%;
  margin: -5vw 0 0 auto;
  text-align: right;
  position: relative;
  z-index: 2;
}
#top-about .about__list .about__item {
  margin-bottom: 18%;
}
#top-about .about__list .about__item:last-child {
  margin-bottom: 0;
}
#top-about .about__list .about__item-text {
  text-align: center;
  padding: 6% 12%;
  border-top: none;
  background-image: repeating-linear-gradient(-45deg, #f0f0f0 0, #f0f0f0 8px, transparent 0, transparent 50%);
  background-size: 26px 26px;
  background-color: var(--color-white);
}
#top-about .about__button {
  width: 100%;
  margin: 20% auto 0;
}

/*
# top-recruit
------------------------*/
#top-recruit {
  padding: 22% 0;
  background: url(../../img/top/recruit_bg.jpg) center/cover no-repeat;
}
#top-recruit .recruit__title {
  position: relative;
  z-index: 1;
}
#top-recruit .recruit__content {
  position: relative;
  padding: 15% 6%;
  margin-top: -9vw;
}
#top-recruit .recruit__content::before, #top-recruit .recruit__content::after {
  position: absolute;
  content: "";
  z-index: 2;
}
#top-recruit .recruit__content::before {
  width: 29%;
  height: 45vw;
  background: url(../../img/top/recruit-l_ill.png) center/100% no-repeat;
  inset: auto auto -36vw -8%;
}
#top-recruit .recruit__content::after {
  width: 27%;
  height: 41vw;
  background: url(../../img/top/recruit-r_ill.png) center/100% no-repeat;
  inset: auto -8% -36vw auto;
}
#top-recruit .recruit__button {
  width: 100%;
  margin: 0 auto;
}

/*
# top-news
------------------------*/
#top-news {
  padding: 22% 0;
  background: url(../../img/top/news_bg.jpg) center/cover no-repeat;
}
#top-news .news__wrap {
  padding: 15% 6%;
  position: relative;
}
#top-news .news__title {
  width: 45%;
  margin: 0 auto;
  position: absolute;
  inset: -6vw 0 auto;
  text-align: center;
}
#top-news .news__post {
  border-bottom: 2px solid;
}
#top-news .news__post:last-child {
  border-bottom: none;
}
#top-news .news__post-link {
  /*==========================================
  Flexbox
  ===========================================*/
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
  flex-wrap: wrap;
  align-items: baseline;
  padding: 7% 0;
  gap: 2vw;
  font-size: var(--font-size-17);
}
#top-news .news__post-link:hover {
  opacity: 1;
}
#top-news .news__post-link:hover .news__post-title {
  color: var(--primary-color);
  text-decoration: underline;
}
#top-news .news__post-date {
  width: 24%;
}
#top-news .news__post-tags {
  width: 72%;
  gap: 1.5vw;
  display: flex;
  flex-wrap: wrap;
}
#top-news .news__post-tags .news__post-tag {
  color: var(--color-white);
  background: var(--color-blue);
  border-radius: 8vw;
  padding: 0 2vw;
}
#top-news .news__post-title {
  width: 100%;
  transition: all 0.3s;
}
#top-news .news__button {
  width: 100%;
  margin: 15% auto 0;
}

/*==========================================
service
===========================================*/
/*
# service-intro
------------------------*/
#service-intro {
  background: url(../../img/service/intro_bg.jpg) top center/cover no-repeat;
}
#service-intro .intro__title {
  margin-bottom: 12%;
}
#service-intro .intro__part {
  max-width: 532px;
  margin: 0 auto 16%;
}
#service-intro .intro__part:last-child {
  margin-bottom: 0;
}
#service-intro .intro__part:last-child .intro__part-title img {
  width: 100%;
}
#service-intro .intro__part-content {
  padding: 15% 6%;
  border-top: none;
}
#service-intro .intro__part-title {
  margin-bottom: 8%;
}
#service-intro .intro__part-title img {
  width: 75%;
}
#service-intro .intro__part:nth-of-type(3) .intro__part-img {
  position: relative;
}
#service-intro .intro__part:nth-of-type(3) .intro__part-img::before {
  position: absolute;
  content: "";
  width: 35%;
  height: 54vw;
  background: url(../../img/service/intro-item03_ill.png) center/100% no-repeat;
  inset: -20vw 8% auto auto;
}
#service-intro .intro__part:nth-of-type(6) .intro__part-img {
  position: relative;
}
#service-intro .intro__part:nth-of-type(6) .intro__part-img::before {
  position: absolute;
  content: "";
  width: 34%;
  height: 52vw;
  background: url(../../img/service/intro-item06_ill.png) center/100% no-repeat;
  inset: -15vw auto auto 2%;
}

/*
# service-flow
------------------------*/
#service-flow {
  background: url(../../img/service/flow_bg.jpg) center/cover no-repeat;
}
#service-flow .flow__wrap {
  position: relative;
  padding: 18% 6%;
}
#service-flow .flow__title {
  width: 65%;
  margin: 0 auto;
  position: absolute;
  inset: -6vw 0 auto;
  text-align: center;
}
#service-flow .flow__list .flow__item {
  border-bottom: 2px solid;
  padding: 5% 3% 5% 0;
  line-height: 2.4;
}
#service-flow .flow__list .flow__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
#service-flow .flow__list .flow__item span {
  padding-left: 18%;
  display: block;
}
#service-flow .flow__list .flow__item span::before {
  position: absolute;
  inset: 0 auto 0 0;
  margin: auto 0;
  width: 10vw;
  height: 10vw;
  background: var(--color-blue);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-25);
  font-weight: var(--color-black);
}
#service-flow .flow__list .flow__item span img {
  max-height: 7vw;
}

/*==========================================
about
===========================================*/
/*
# about-greeting
------------------------*/
#about-greeting {
  background: url(../../img/about/greeting_bg.jpg) center/cover no-repeat;
}
#about-greeting .greeting__inbox {
  position: relative;
}
#about-greeting .greeting__inbox::before {
  position: absolute;
  content: "";
  width: 30%;
  height: 42vw;
  inset: auto 5% -24vw auto;
  background: url(../../img/about/greeting_ill.png) center/100% no-repeat;
  z-index: 1;
}
#about-greeting .greeting__title {
  width: 75%;
  margin: 0 auto;
  position: absolute;
  inset: -5vw 0 auto;
  text-align: center;
  z-index: 1;
}
#about-greeting .greeting__content {
  padding: 22% 6% 15%;
}

/*
# about-case
------------------------*/
#about-case .case__title {
  text-align: center;
  margin-bottom: 65px;
}
#about-case .case__tag-list {
  /*==========================================
  Flexbox
  ===========================================*/
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
  flex-wrap: wrap;
  margin-bottom: 18%;
}
#about-case .case__tag-list .case__tag {
  width: 48%;
}
#about-case .case__tag-list .case__tag .tag__link {
  padding: 0 9vw 0 3vw;
}
#about-case .case__post-list {
  /*==========================================
  Flexbox
  ===========================================*/
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
  flex-wrap: wrap;
}
#about-case .case__post-list .case__post {
  width: 48%;
}
#about-case .case__post-list .case__post-link {
  display: block;
}
#about-case .case__post-list .case__post-img {
  width: 100%;
  height: 32vw;
  margin-bottom: 5%;
}
#about-case .case__post-list .case__post-title {
  margin-bottom: 0;
  font-size: var(--font-size-19);
}

.case__post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5vw;
  margin-bottom: 5%;
}
.case__post-tags .case__post-tag {
  background: var(--color-blue);
  color: var(--color-white);
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-bold);
  border-radius: 10vw;
  padding: 0.85vw 1.5vw;
}

/*
# case-single
------------------------*/
#case-single .case__hero-img {
  text-align: center;
  margin-bottom: 8%;
}
#case-single .case__post-gallery {
  margin-top: 15%;
  /*==========================================
  Flexbox
  ===========================================*/
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
  flex-wrap: wrap;
  row-gap: 4vw;
}
#case-single .case__post-gallery .gallery__item {
  width: 48%;
  height: 35vw;
}

/*==========================================
recruit
===========================================*/
/*
# recruit-job
------------------------*/
#recruit-job {
  background: url(../../img/recruit/job_bg.jpg) center/cover no-repeat;
}
#recruit-job .job__title {
  text-align: center;
  margin-bottom: 12%;
}
#recruit-job .job__list .job__item {
  margin-bottom: 18%;
}
#recruit-job .job__list .job__item:last-child {
  margin-bottom: 0;
}
#recruit-job .job__list .job__item-img {
  width: 100%;
  height: 47vw;
  margin-bottom: 4%;
}
#recruit-job .job__list .job__item-title {
  margin-bottom: 5%;
}
#recruit-job .job__list .job__item-title img {
  max-height: 8vw;
}
#recruit-job .job__list .job__item-content {
  flex-grow: 1;
  padding: 10% 6%;
}

/*
# recruit-feature
------------------------*/
#recruit-feature {
  background: url(../../img/recruit/feature_bg.jpg) center/cover no-repeat;
}
#recruit-feature .feature__title {
  text-align: center;
  margin-bottom: 12%;
}
#recruit-feature .feature__title img {
  width: 70%;
}
#recruit-feature .feature__list .feature__item {
  width: 75%;
  margin: 0 auto 12%;
  text-align: center;
}
#recruit-feature .feature__list .feature__item:last-child {
  margin-bottom: 0;
}

/*
# recruit-desc
------------------------*/
#recruit-desc .desc__title {
  text-align: center;
  margin-bottom: 12%;
}
#recruit-desc .desc__title img {
  width: 50%;
}
#recruit-desc .desc__item {
  background: var(--color-white);
  padding: 12% 6%;
  margin-bottom: 15%;
}
#recruit-desc .desc__item:last-child {
  margin-bottom: 0;
  position: relative;
}
#recruit-desc .desc__item:last-child::before {
  position: absolute;
  content: "";
  width: 31%;
  height: 47vw;
  background: url(../../img/recruit/description_ill.png) center/100% no-repeat;
  inset: auto -7% -36vw auto;
}
#recruit-desc .desc__item-title {
  text-align: center;
  font-size: var(--font-size-23);
  margin-bottom: 8%;
  color: var(--accent-color);
  font-weight: var(--font-weight-black);
  text-shadow: var(--color-black) 2px 0px, var(--color-black) -2px 0px, var(--color-black) 0px -2px, var(--color-black) 0px 2px, var(--color-black) 2px 2px, var(--color-black) -2px 2px, var(--color-black) 2px -2px, var(--color-black) -2px -2px, var(--color-black) 1px 2px, var(--color-black) -1px 2px, var(--color-black) 1px -2px, var(--color-black) -1px -2px, var(--color-black) 2px 1px, var(--color-black) -2px 1px, var(--color-black) 2px -1px, var(--color-black) -2px -1px;
}
#recruit-desc .desc__item-title span {
  padding: 0 8vw;
  background: url(../../img/recruit/desc-item-ttl_deco.png) left center/6vw no-repeat, url(../../img/recruit/desc-item-ttl_deco.png) right center/6vw no-repeat;
}

/*==========================================
info
===========================================*/
/*
# info-greeting
------------------------*/
#info-greeting {
  padding: 22% 0;
  background: url(../../img/info/greeting_bg.jpg) center/cover no-repeat;
}
#info-greeting .greeting__inbox {
  position: relative;
}
#info-greeting .greeting__inbox::before {
  position: absolute;
  content: "";
  width: 36%;
  height: 38vw;
  background: url(../../img/info/greeting_ill.png) center/100% no-repeat;
  inset: auto 36% -14vw auto;
  z-index: 1;
}
#info-greeting .greeting__title {
  position: absolute;
  inset: -3vw 0 auto;
  text-align: center;
  z-index: 1;
}
#info-greeting .greeting__title img {
  width: 48%;
}
#info-greeting .greeting__content {
  padding: 22% 8% 18%;
}
#info-greeting .greeting__content .name {
  text-align: right;
}

/*
# info-section
------------------------*/
#info-section .info__title {
  text-align: center;
  margin-bottom: 12%;
}
#info-section .info__title img {
  width: 50%;
}
#info-section .info__table {
  background: var(--color-white);
  padding: 12% 6%;
  margin-bottom: 18%;
}

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

/*----------------------------------
  詳細ページのカテゴリー表示(タイトル下部)
  ----------------------------------*/
.single__post-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 10%;
}
.single__post-meta time {
  font-size: var(--font-size-16);
  width: 21%;
  font-weight: normal;
  padding: 0.5vw 0;
}
.single__post-meta .category-label {
  display: flex;
  width: 75%;
  flex-wrap: wrap;
  align-items: center;
  gap: 1vw;
}
.single__post-meta .category-label li {
  font-size: var(--font-size-16);
}
.single__post-meta .category-label li a {
  padding: 0 1vw;
}

/*==========================================
  contact
  ===========================================*/
#contact .contact__form {
  margin-bottom: 15%;
}
#contact .contact__form-item .contact__form-label .required {
  /*==========================================
  上下中央揃え
  ===========================================*/
  position: absolute;
  top: 50%; /* Safari用 */
  transform: translateY(-50%);
  z-index: 10;
  right: 10px;
}
#contact .contact__form-item .contact__form-input {
  padding: 3% 0;
}
#contact .contact__form-item .contact__form-input .contact__form-list li {
  margin-bottom: 5%;
}
#contact .contact__form-item .contact__form-input .contact__form-list li:last-child {
  margin-bottom: 0;
}
#contact .contact__form-item .contact__form-input textarea {
  height: 37vw;
}
#contact .contact__form-item.contact__form-privacy .contact__form-label {
  text-align: left;
}
#contact .contact__form-value {
  padding: 3%;
}
#contact .contact__form-select {
  width: 50%;
  position: relative;
}
#contact .contact__form-select::after {
  inset: 0 5% 0 auto;
  width: 1.5vw;
  height: 1.5vw;
}
#contact .contact__form-select select {
  padding: 6% 7% 6% 4%;
}
#contact .contact__form #pc01,
#contact .contact__form #pc02 {
  width: 95px;
}
#contact .contact__form #date1,
#contact .contact__form #date2,
#contact .contact__form #date3 {
  width: 73%;
}
#contact .contact__form #address {
  margin-top: 4%;
}
#contact .contact__form .upload-item-wrap .select-img-wrap {
  display: flex;
  justify-content: space-between;
}
#contact .contact__form .upload-item-wrap .thumb {
  width: 45%;
  margin-right: 25px;
}
#contact .contact__form .upload-item-wrap .ancion-btn-wrap {
  width: 50%;
}
#contact .contact__form .upload-item-wrap .ancion-btn-wrap .ancion-btn,
#contact .contact__form .upload-item-wrap .ancion-btn-wrap .upload-button {
  font-size: var(--font-size-13);
}
#contact .contact__submits-wrap {
  margin-top: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5vw;
}
#contact .contact__submits-wrap .contact__submits-check {
  width: 75%;
}
#contact .contact__submits-wrap .contact__submits-back {
  width: 52%;
}
#contact .contact__submits-wrap .contact__submits-send {
  width: 40%;
}
#contact input[type=button],
#contact input[type=submit],
#contact .contact-submits-wrap button {
  padding: 6% 2%;
}
#contact input[type=submit],
#contact select {
  -webkit-appearance: none;
}

/*==========================================
  privacy
  ===========================================*/
#privacy .privacy__content {
  margin-bottom: 15%;
  text-align: left;
}
#privacy .privacy__content:last-child {
  margin-bottom: 0;
}

/*==========================================
  site
  ===========================================*/
#site-map .sitemap__item-link {
  padding: 4% 0 4% 8%;
}

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