@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(--primary-color);
  position: relative;
}
div .bread li::after {
  content: " > ";
  color: var(--body-font-color);
  position: absolute;
  inset: 0 -15px 0 auto;
  margin: auto 0;
}
div .bread li:last-child::after {
  content: "";
}
div .bread li a {
  color: var(--body-font-color);
}
div .bread li a:hover {
  text-decoration: underline;
}

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

/*
# .c-contact__list
------------------------*/
.c-contact__list {
  gap: 15px 25px;
}
.c-contact__list .contact__item {
  width: -moz-fit-content;
  width: fit-content;
}
.c-contact__list .contact__item-button {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  text-align: center;
  letter-spacing: 0.08em;
  border-radius: 30px;
  width: 200px;
}
.c-contact__list .contact__item-button:hover::before {
  right: 8%;
}
.c-contact__list .contact__item-tel {
  line-height: 1.2;
}
.c-contact__list .contact__item-tel .tel__num {
  font-size: var(--font-size-25);
  padding-left: 25px;
  background: url(../../img/common/tel_ic.png) left bottom 5px/20px 20px no-repeat;
}
.c-contact__list .contact__item-tel .tel__text {
  display: block;
}
.c-contact__list .contact__item-mail .mail__button {
  background: url(../../img/common/mail_ic.png) left 10% center no-repeat, var(--primary-color);
}
.c-contact__list .contact__item-reserve .reserve__button {
  background: url(../../img/common/reserve_ic.png) left 8% center no-repeat, var(--color-pink);
}

/*
# c-tsukuba-words
------------------------*/
.c-tsukuba-words {
  gap: 10px 15px;
  border-radius: 10px;
  padding: 10px;
  width: -moz-fit-content;
  width: fit-content;
}
.c-tsukuba-words .tsukuba-words__item {
  font-size: var(--font-size-18);
}
.c-tsukuba-words .words__first {
  border-radius: 50%;
  font-size: var(--font-size-20);
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/*
# c-contact__section
------------------------*/
.c-contact__section {
  border-radius: 20px;
  padding: 105px 0 100px;
}
.c-contact__section .contact__title .title-en {
  font-size: 7rem;
}
.c-contact__section .contact__text {
  width: 885px;
  margin: 0 auto 35px;
  text-align: center;
  font-weight: var(--font-weight-black);
  font-size: var(--font-size-29);
  position: relative;
}
.c-contact__section .contact__text::before, .c-contact__section .contact__text::after {
  position: absolute;
  content: "";
  width: 90px;
  height: 80px;
  background: url(../../img/common/contact-txt_deco.png) center/100% no-repeat;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.c-contact__section .contact__text::before {
  left: 0;
}
.c-contact__section .contact__text::after {
  transform: scale(-1, 1);
  right: 0;
}
.c-contact__section .contact__text span {
  font-size: var(--font-size-35);
}
.c-contact__section .contact__text span:nth-of-type(1) {
  position: relative;
  z-index: 1;
}
.c-contact__section .contact__text span:nth-of-type(1)::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 20px;
  background: var(--accent-color);
  inset: auto 0 0;
  z-index: -1;
}
.c-contact__section .contact__contact-list {
  justify-content: center;
  background: var(--color-white);
  border-radius: 30px;
  padding: 50px 35px;
  position: relative;
}
.c-contact__section .contact__contact-list::before {
  position: absolute;
  content: "";
  width: 106px;
  height: 101px;
  background: url(../../img/common/contact_ill.png) center/100% no-repeat;
  inset: -101px 20px auto auto;
}
.c-contact__section .contact__contact-list .contact__item-tel .tel__num {
  font-size: var(--font-size-36);
  background-size: auto;
  background-position: 0 50%;
  padding-left: 35px;
  line-height: 1.2;
}
.c-contact__section .contact__contact-list .contact__item-tel .tel__text {
  width: 100%;
}
.c-contact__section .contact__contact-list .mail__button,
.c-contact__section .contact__contact-list .reserve__button {
  width: 290px;
}
.c-contact__section .contact__contact-list .reserve__button::before {
  color: var(--color-pink);
}

/*==========================================
テーブルレイアウト
===========================================*/
.com-table {
  border: 1px solid var(--body-font-color);
}
.com-table tr {
  display: flex;
}
.com-table tr th {
  padding: 15px 10px;
  width: 200px;
  vertical-align: top;
  border-bottom: 1px solid var(--color-white);
}
.com-table tr td {
  width: calc(100% - 200px);
  padding: 15px 20px;
  border-bottom: 1px solid var(--body-font-color);
}
.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: 35px;
}
.com-content p:last-child {
  margin-bottom: 0;
}

.com-text {
  line-height: 2.1;
  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: 240px;
  /*==========================================
  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;
}
#g-map .map iframe {
  border-radius: 20px;
}

/*
# icon
------------------------*/
.g-icon--expand_circle_right::before {
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  inset: 0 10% 0 auto;
  margin: auto 0;
  color: var(--primary-color);
  line-height: 0;
  letter-spacing: 0;
}

/*
# com-button
------------------------*/
.com-button {
  border-radius: 22.5px;
  height: 45px;
  text-align: center;
  color: var(--primary-color);
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-black);
  width: 200px;
}
.com-button::before {
  background: var(--primary-color);
  color: var(--accent-color);
}
.com-button:hover {
  border-radius: 0;
  opacity: 1;
}
.com-button:hover::before {
  right: 8%;
}

/*
# width
------------------------*/
.w-1720 {
  width: clamp(1200px, 89.5833%, 1720px);
  margin: 0 auto;
}

/*
# border-radius
------------------------*/
.img-rounded {
  border-radius: 0 30px;
}

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

.section-title {
  text-align: center;
  margin-bottom: 40px;
}
.section-title .title-en {
  display: block;
  color: var(--primary-color-dark);
  font-size: 6rem;
  font-weight: var(--font-weight-black);
  line-height: 1.5;
}
.section-title .title-ja {
  font-size: var(--font-size-24);
  color: var(--primary-color);
  font-weight: var(--font-weight-black);
  display: block;
}

.headline-title {
  font-size: var(--font-size-26);
  font-weight: var(--font-weight-bold);
  padding-left: 15px;
  border-left: 4px solid var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.6;
}

/*==========================================
header
===========================================*/
#header {
  padding: 15px 1.5625% 15px 1.041%;
}
#header .header__right {
  width: 555px;
}
#header .header__contact-list {
  width: 460px;
  margin-left: auto;
  justify-content: flex-end;
}
#header .header__contact-list .mail__button {
  height: 45px;
}
#header .header__nav {
  margin-top: 15px;
}
#header .header__nav-list {
  gap: 15px 30px;
}
#header .header__nav-link {
  letter-spacing: 0.08em;
}
#header .header__nav-link:hover {
  opacity: 1;
  color: var(--primary-color-dark);
}
#header .header__nav-link.current {
  color: var(--primary-color-dark);
}

/*==========================================
mv
===========================================*/
#top-mv {
  height: clamp(600px, 42.187vw, 810px);
  position: relative;
  background: url(../../img/top/mv/mv_stripe.png) left bottom 6.1728%/79.427% no-repeat, url(../../img/top/mv/mv_bg.png) left center/96.3541% no-repeat;
}
#top-mv .mv__catch {
  width: 30%;
  position: absolute;
  inset: 13.2098% auto auto 11.197%;
}
#top-mv .mv__img {
  width: 58.3333%;
  position: absolute;
  inset: auto 0 4.5679% auto;
}
#top-mv .mv__corp-name {
  position: absolute;
  inset: 13.5802% 0 auto 0;
  margin: 0 auto;
  text-align: center;
}

/*==========================================
footer
===========================================*/
#footer {
  border-top: 10px solid var(--primary-color-light);
  padding: 50px 0 45px;
  margin-top: 50px;
}
#footer .side__button {
  width: 11.1458%;
  position: fixed;
  z-index: 1001;
  inset: auto 1.0416% 0 auto;
}
#footer .side__button:hover {
  transform: scale(0.95);
}
#footer .footer__inbox {
  position: relative;
  padding-bottom: 45px;
}
#footer .footer__nav {
  width: 400px;
}
#footer .footer__nav-link {
  display: block;
  font-size: var(--font-size-14);
  margin-bottom: 15px;
  position: relative;
  padding-left: 18px;
}
#footer .footer__nav-link::before {
  position: absolute;
  inset: 0 auto 0 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--primary-color);
  border-right: 1px solid var(--primary-color);
  transform: rotate(45deg);
  transition: all 0.3s;
}
#footer .footer__nav-link:hover {
  text-decoration: underline;
}

#copyright {
  word-break: normal;
  text-align: center;
  position: absolute;
  inset: auto 0 0 auto;
  color: var(--primary-color);
}
#copyright small {
  font-size: var(--font-size-11);
}
#copyright a {
  color: var(--primary-color);
  text-decoration: underline;
}

/*==========================================
sv
===========================================*/
.lower-sv {
  position: relative;
  height: 500px;
  z-index: 1;
}
.lower-sv::before {
  position: absolute;
  content: "";
  z-index: -1;
  background: url(../../img/sv/sv-btm_shape.png) bottom center/100% no-repeat;
  inset: auto 0 0;
  width: 100%;
  height: 245px;
}
.lower-sv .sv__title {
  width: clamp(1080px, 66.666%, 1280px);
  position: absolute;
  inset: 0;
  margin: auto;
  display: flex;
  align-items: center;
  z-index: 1;
}
.lower-sv .sv__title span {
  font-size: var(--font-size-45);
  padding: 10px 35px;
  border-radius: 55px;
  position: relative;
}
.lower-sv .sv__title span::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: inherit;
  border: 3px dashed var(--color-white);
  inset: auto -10px -10px auto;
}
.lower-sv .sv__img {
  width: 59.8958%;
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 50px;
  height: 80%;
}

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

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

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

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

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

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

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

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

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

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

/*==========================================
top
===========================================*/
/*
# top-banner
------------------------*/
#top-banner {
  padding: 100px 0;
}
#top-banner .banner-wrap {
  width: 875px;
  margin: 0 auto;
  border-radius: 30px;
  border: 2px solid var(--color-gray-dark);
  position: relative;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 10px, #ededed 10px, #ededed 20px);
  background-color: #f1f1f1;
  padding: 35px;
}
#top-banner .banner-wrap::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 30px;
  border: 4px solid var(--color-white);
  inset: 0;
  margin: auto;
}
#top-banner .banner__title {
  text-align: center;
  margin-bottom: 30px;
  font-size: var(--font-size-29);
}
#top-banner .banner__title span {
  font-size: var(--font-size-40);
  position: relative;
  z-index: 1;
}
#top-banner .banner__title span::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 20px;
  z-index: -1;
  background: var(--accent-color);
  inset: auto 0 8px;
}
#top-banner .banner__list {
  gap: 20px;
  margin-bottom: 40px;
}
#top-banner .banner__text {
  text-align: center;
  position: relative;
  border-radius: 10px;
  font-size: var(--font-size-20);
  padding: 5px;
  letter-spacing: 0.1em;
}
#top-banner .banner__text::before, #top-banner .banner__text::after {
  position: absolute;
  content: "";
}
#top-banner .banner__text::before {
  width: 106px;
  height: 101px;
  background: url(../../img/top/bnr-man_ill.png) center/100% no-repeat;
  inset: -101px auto auto 0;
}
#top-banner .banner__text::after {
  width: 130px;
  height: 99px;
  background: url(../../img/top/bnr-woman_ill.png) center/100% no-repeat;
  inset: -99px 0 auto auto;
}
#top-banner .banner__text span {
  font-size: var(--font-size-24);
}

/*
# top-about
------------------------*/
.top-title {
  margin-bottom: 30px;
}
.top-title .title-en {
  font-size: var(--font-size-55);
  line-height: 1.4;
  background: linear-gradient(0deg, var(--primary-color-dark) 40%, var(--primary-color) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: var(--font-weight-light);
}
.top-title .title-ja {
  line-height: 2;
}

#top-about {
  padding: 75px 0 100px;
}
#top-about .about__inbox {
  padding-top: 30px;
  position: relative;
}
#top-about .about__title {
  text-align: left;
}
#top-about .about__title .title-en {
  font-size: 7rem;
}
#top-about .about__img {
  position: absolute;
  inset: 0 auto auto -100px;
}
#top-about .about__content {
  width: 565px;
  margin-left: auto;
  min-height: 855px;
}
#top-about .about__content .about__tsukuba-words {
  margin-bottom: 20px;
}
#top-about .about__content .about__text span {
  font-size: var(--font-size-18);
}
#top-about .about__button {
  margin-top: 45px;
}

/*
# top-service
------------------------*/
#top-service {
  border-radius: 20px;
}
#top-service .service__inbox {
  padding: 110px 0 60px;
  position: relative;
}
#top-service .service__inbox::before, #top-service .service__inbox::after {
  position: absolute;
  content: "";
}
#top-service .service__inbox::before {
  width: 249px;
  height: 205px;
  background: url(../../img/top/service-top_ill.png) center/100% no-repeat;
  inset: -130px 0 auto auto;
}
#top-service .service__inbox::after {
  width: 161px;
  height: 131px;
  inset: 50px auto auto 90px;
  background: url(../../img/top/service-check_ill.png) center/100% no-repeat;
}
#top-service .service__title {
  position: absolute;
  inset: -40px 0 auto;
}
#top-service .service__title .title-en {
  font-size: 6rem;
}
#top-service .service__text {
  text-align: center;
  margin-bottom: 85px;
}
#top-service .service__text span {
  font-size: var(--font-size-18);
}
#top-service .service__list {
  width: 1060px;
  margin: 0 0 0 auto;
  gap: 100px;
}
#top-service .service__list .service__card {
  width: 480px;
  position: relative;
}
#top-service .service__list .service__card:nth-child(even) {
  margin-top: 50px;
}
#top-service .service__list .service__card-title {
  position: absolute;
  inset: -20px auto auto -20px;
  font-size: var(--font-size-35);
  padding: 5px 15px;
  border-radius: 10px;
}
#top-service .service__list .service__card-img {
  margin-bottom: 10px;
}
#top-service .service__button {
  position: absolute;
  inset: auto 0 -20px;
  margin: 0 auto;
}

/*
# top-links
------------------------*/
.top-links {
  padding: 130px 0 100px;
}
.top-links .links__list {
  gap: 100px 135px;
}
.top-links .links__item {
  width: 305px;
}
.top-links .links__item-link {
  position: relative;
  display: block;
}
.top-links .links__item-link::before {
  width: 40px;
  height: 40px;
  font-size: var(--font-size-33);
  inset: auto 15px 17px auto;
}
.top-links .links__item-link:hover::before {
  right: 5px;
}
.top-links .links__item .text-en {
  position: absolute;
  font-size: var(--font-size-28);
  transform: rotate(-30deg);
  font-weight: var(--font-weight-regular);
  inset: 0 auto auto 0;
  padding: 0 30px;
}
.top-links .links__item .text-en::before, .top-links .links__item .text-en::after {
  position: absolute;
  content: "";
  height: 25px;
  border-left: 3px dashed var(--primary-color-light);
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.top-links .links__item .text-en::before {
  left: 0;
  transform: rotate(-45deg);
}
.top-links .links__item .text-en::after {
  right: 0;
  transform: rotate(45deg);
}
.top-links .links__item .text-ja {
  position: absolute;
  inset: auto 0 45px;
  text-align: center;
  font-size: var(--font-size-24);
}

/*
# top-news
------------------------*/
#top-news {
  padding: 0 0 105px;
}
#top-news .news__title {
  text-align: left;
}
#top-news .news__title .title-en {
  font-size: 7rem;
}
#top-news .news__inbox {
  position: relative;
}
#top-news .news__button {
  position: absolute;
  inset: 0 0 auto auto;
}

.post__card-list {
  gap: 45px;
}

.post__card {
  width: 330px;
}
.post__card-link {
  display: block;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--color-gray);
}
.post__card-link:hover {
  transform: scale(1.03);
}
.post__card-tags {
  gap: 0 5px;
}
.post__card-tags .post__card-tag {
  border-radius: 5px 5px 0 0;
  font-size: var(--font-size-15);
  padding: 0 5px;
}
.post__card-thumb {
  width: 100%;
  height: 220px;
  border-radius: 0 20px 20px;
  margin-bottom: 10px;
}
.post__card-thumb img {
  border-radius: 0 20px 20px;
}
.post__card-date {
  display: block;
  font-size: var(--font-size-15);
}

/*==========================================
about
===========================================*/
/*
# about-concept
------------------------*/
#about-concept .concept__title {
  background: url(../../img/about/concept_ill.png) left 225px bottom no-repeat;
}
#about-concept .concept__content {
  width: 540px;
}
#about-concept .concept__content .concept__tsukuba-words {
  margin-bottom: 25px;
}

/*
# about-strengths
------------------------*/
#about-strengths {
  padding: 90px 0;
}
#about-strengths .strengths__card {
  margin-bottom: 45px;
  position: relative;
}
#about-strengths .strengths__card-content {
  width: 540px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#about-strengths .strengths__card-img {
  position: absolute;
  top: 0;
}
#about-strengths .strengths__card-title {
  font-size: var(--font-size-26);
  font-weight: var(--font-weight-bold);
  padding-left: 65px;
  margin-bottom: 20px;
}
#about-strengths .strengths__card-title::before {
  position: absolute;
  inset: 0 auto auto 0;
  color: var(--accent-color);
  background: var(--primary-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-24);
  font-weight: var(--font-weight-black);
  text-align: center;
  line-height: 0;
  letter-spacing: 0;
}
#about-strengths .strengths__card:nth-child(odd) .strengths__card-img {
  right: 0;
}
#about-strengths .strengths__card:nth-child(even) .strengths__card-content {
  margin-left: auto;
}
#about-strengths .strengths__card:nth-child(even) .strengths__card-img {
  left: 0;
}
#about-strengths .strengths__estimate {
  padding: 30px;
  border-radius: 20px;
}

/*
# strengths-area
------------------------*/
#about-area .area__content {
  width: 505px;
}
#about-area .area__content .area__text {
  text-align: center;
}
#about-area .area__content .area__text span {
  font-size: var(--font-size-18);
}
#about-area .area__content .area__text small {
  display: block;
}

/*
# about-info
------------------------*/
#about-info .info__table {
  margin-bottom: 40px;
}

/*==========================================
service
===========================================*/
/*
# service-archive
------------------------*/
#service-archive .archive__card {
  margin-bottom: 45px;
  position: relative;
}
#service-archive .archive__card-img {
  position: absolute;
  top: 0;
}
#service-archive .archive__card-content {
  width: 540px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#service-archive .archive__card:nth-child(odd) .archive__card-img {
  right: 0;
}
#service-archive .archive__card:nth-child(even) .archive__card-content {
  margin-left: auto;
}
#service-archive .archive__card:nth-child(even) .archive__card-img {
  left: 0;
}
#service-archive .archive__caution {
  background: url(../../img/service/service-caution_ill.png) right 30px bottom no-repeat, var(--primary-color-extralight);
  padding: 30px;
  border-radius: 20px;
}

/*
# service-flow
------------------------*/
#service-flow .flow__title {
  margin-bottom: 70px;
}
#service-flow .flow__list {
  gap: 70px 120px;
}
#service-flow .flow__list .flow__item {
  width: 280px;
  position: relative;
  text-align: center;
}
#service-flow .flow__list .flow__item::before {
  font-size: var(--font-size-54);
  font-weight: var(--font-weight-black);
  color: var(--color-pink);
  inset: 85px -85px auto auto;
}
#service-flow .flow__list .flow__item:nth-child(3n)::before {
  content: "";
}
#service-flow .flow__list .flow__item-title {
  width: 95px;
  height: 80px;
  letter-spacing: 0;
  line-height: 1.2;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: var(--font-size-15);
  transform: rotate(-15deg);
  position: absolute;
  inset: -30px auto auto 0;
}
#service-flow .flow__list .flow__item-title::before {
  position: absolute;
  content: "";
  width: 22px;
  height: 10px;
  background: url(../../img/service/step-item-num_arr.png) center/100% no-repeat;
  inset: auto 13px 0 auto;
}
#service-flow .flow__list .flow__item-title em {
  font-size: var(--font-size-40);
  font-weight: var(--font-weight-bold);
  display: block;
  line-height: 0.85;
  width: 100%;
}
#service-flow .flow__list .flow__item-text {
  font-size: var(--font-size-24);
  margin-top: 5px;
}

/*==========================================
case
===========================================*/
/*
# case-single
------------------------*/
#case-single .case__tags {
  gap: 7px;
  margin-bottom: 15px;
}
#case-single .case__tags .case__tag {
  font-size: var(--font-size-15);
  padding: 1px 5px;
  border-radius: 4px;
}
#case-single .case__cards-wrap {
  margin-bottom: 40px;
}
#case-single .case__cards-wrap .case__card-img img {
  border-radius: 20px;
}
#case-single .case__cards-wrap .case__card-title {
  text-align: center;
  margin-bottom: 10px;
}
#case-single .case__cards-wrap .case__card-title span {
  padding: 0 25px;
  position: relative;
}
#case-single .case__cards-wrap .case__card-title span::before, #case-single .case__cards-wrap .case__card-title span::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 17px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
#case-single .case__cards-wrap .case__card-title span::before {
  left: 0;
}
#case-single .case__cards-wrap .case__card-title span::after {
  transform: scale(-1, 1);
  right: 0;
}
#case-single .case__cards-wrap .case__card-before .case__card-title {
  font-size: var(--font-size-24);
}
#case-single .case__cards-wrap .case__card-before .case__card-title span::before, #case-single .case__cards-wrap .case__card-before .case__card-title span::after {
  background: url(../../img/case/before_bdr.png) center/100% no-repeat;
}
#case-single .case__cards-wrap .case__card-before .case__card-img {
  width: 330px;
  height: 220px;
}
#case-single .case__cards-wrap .case__card-after .case__card-title {
  font-size: var(--font-size-30);
}
#case-single .case__cards-wrap .case__card-after .case__card-title span::before, #case-single .case__cards-wrap .case__card-after .case__card-title span::after {
  background: url(../../img/case/after_bdr.png) center/100% no-repeat;
}
#case-single .case__cards-wrap .case__card-after .case__card-img {
  width: 560px;
  height: 375px;
}
#case-single .case__cards-wrap:has(.case__card-after) .case__card-before {
  position: relative;
}
#case-single .case__cards-wrap:has(.case__card-after) .case__card-before::before {
  position: absolute;
  content: "\f138";
  font-size: 7rem;
  color: var(--color-pink);
  font-weight: var(--font-weight-black);
  inset: auto -130px 70px auto;
}
#case-single .case__price {
  padding: 15px;
  font-size: var(--font-size-24);
  border-radius: 10px;
  margin-bottom: 40px;
}
#case-single .case__table {
  margin-bottom: 35px;
}

/*==========================================
faq
===========================================*/
#faq-archive .faq__item {
  padding: 25px;
  border-radius: 20px;
  margin-bottom: 30px;
}
#faq-archive .faq__item:last-child {
  margin-bottom: 0;
}
#faq-archive .faq__item-title, #faq-archive .faq__item-body {
  position: relative;
  padding-left: 50px;
}
#faq-archive .faq__item-title::before, #faq-archive .faq__item-body::before {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  letter-spacing: 0;
  font-size: var(--font-size-24);
  font-weight: var(--font-weight-black);
  inset: 0 auto auto 0;
}
#faq-archive .faq__item-title {
  font-size: var(--font-size-24);
  margin-bottom: 25px;
}
#faq-archive .faq__item-title::before {
  content: "Q";
  color: var(--accent-color);
  background: var(--primary-color);
}
#faq-archive .faq__item-body::before {
  content: "A";
  color: var(--color-white);
  background: var(--color-pink);
}

/*==========================================
news
===========================================*/
.column__wrap .column__list .column__post a {
  padding: 45px 0;
}
.column__wrap .column__list .column__post-meta time {
  width: 100px;
}
.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: 100px;
  padding: 3px 0;
}
.single__post-meta .category-label {
  width: calc(100% - 100px);
  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 .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フレーム時)
  ===========================================*/