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

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

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

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

.section-title {
  font-size: var(--font-size-46);
  font-weight: var(--font-weight-black);
  letter-spacing: 0.04em;
  line-height: 1.7;
  background-image: linear-gradient(to right, var(--primary-color) 4px, transparent 4px);
  background-size: 15px 4px;
  background-repeat: repeat-x;
  background-position: left bottom;
  text-align: center;
  padding-bottom: 40px;
  margin-bottom: 55px;
}
.section-title span {
  font-size: var(--font-size-56);
  color: var(--primary-color);
}

.headline-title {
  border-bottom: 1px solid var(--primary-color);
  font-size: var(--font-size-26);
  font-weight: var(--font-weight-black);
  padding: 0 10px 10px;
  margin-bottom: 15px;
}

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

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

#g-map {
  width: 520px;
}
#g-map .map {
  height: 100%;
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 13px;
}
#g-map .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 8px solid var(--accent-color);
  border-radius: 13px;
}

.com-button {
  border-radius: 25px;
  background: var(--accent-color);
  font-size: var(--font-size-20);
  font-weight: var(--font-weight-black);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
  box-shadow: 4px 4px 9px 0px rgba(var(--color-white-rgb), 0.75) inset, 0 -4px 4px 0px rgba(var(--color-green-rgb), 0.73) inset;
}
.com-button:hover {
  opacity: 1;
  transform: scale(0.99);
  box-shadow: 0 2px 5px 0px rgba(var(--color-green-rgb), 0.5) inset, 0 -4px 9px 0px rgba(var(--color-green-rgb), 0.5) inset;
}

/*==========================================
コンポーネントファイル
===========================================*/
.c-contact__list {
  gap: 15px;
}
.c-contact__list .com-tel {
  line-height: 1.2;
}
.c-contact__list .com-tel .tel__num {
  font-size: var(--font-size-30);
  font-weight: var(--font-weight-bold);
  padding-left: 40px;
  letter-spacing: 0;
  background: url(../img/common/tel-ic_black.png) left center no-repeat;
}
.c-contact__list .com-tel .tel__text {
  display: block;
}
.c-contact__list .com-tel.color-white .tel__num {
  color: var(--color-white);
  background: url(../img/common/tel-ic_white.png) left center no-repeat;
}
.c-contact__list .com-mail .mail__button {
  width: 185px;
  height: 50px;
}
.c-contact__list .com-mail .mail__button span {
  padding-left: 30px;
  background: url(../img/common/mail-ic_black.png) left center no-repeat;
}

/*==========================================
header
===========================================*/
#header {
  padding: 15px 4.1666% 10px;
}
#header .header__right {
  width: 675px;
}
#header .header__right .c-contact__list {
  justify-content: flex-end;
}

/*==========================================
nav
===========================================*/
#nav {
  background: var(--primary-color);
  width: fit-content;
  margin: 20px 0 0 auto;
}
#nav .nav__item {
  position: relative;
}
#nav .nav__item::before {
  width: 1px;
  height: 12px;
  position: absolute;
  content: "";
  inset: 0 auto 0 0;
  margin: auto 0;
  background: var(--color-white);
}
#nav .nav__item:first-child::before {
  background: none;
}
#nav .nav__item a {
  padding: 15px 20px;
  display: block;
  color: var(--color-white);
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-bold);
}
#nav .nav__item a:hover {
  text-decoration: underline;
}
#nav .nav__item.current a {
  text-decoration: underline;
}

/*==========================================
mv
===========================================*/
#top-mv {
  height: 780px;
  position: relative;
  overflow: hidden;
  background: url(../img/top/mv/mv_bg.jpg) center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
#top-mv .mv__catch {
  width: 51.3636%;
}
#top-mv .mv__txt {
  position: absolute;
  inset: auto 0 -20px;
  width: 100%;
}

/*==========================================
top
===========================================*/
/* top-check
------------------------*/
#top-check {
  padding: 125px 0 355px;
  position: relative;
}
#top-check .inbox {
  width: clamp(1200px, 78.125%, 1500px);
}
#top-check .check__title {
  font-size: var(--font-size-46);
  letter-spacing: 0.04em;
  line-height: 1.7;
  width: 750px;
  margin: 0 auto 240px;
  text-align: center;
  font-weight: var(--font-weight-black);
  position: relative;
  padding-bottom: 40px;
}
#top-check .check__title::before, #top-check .check__title::after {
  width: 5px;
  height: 165px;
  position: absolute;
  content: "";
  border-left: 12px double var(--primary-color);
  bottom: 0;
}
#top-check .check__title::before {
  left: -55px;
  transform: rotate(-35deg);
}
#top-check .check__title::after {
  right: -55px;
  transform: rotate(35deg);
}
#top-check .check__title span {
  display: block;
  font-size: var(--font-size-56);
  color: var(--primary-color);
}
#top-check .check__wrap {
  border-radius: 20px;
}
#top-check .check__wrap .check__list {
  width: 1080px;
  margin: 0 auto;
  height: 1145px;
  background: url(../img/top/check-car_ill.png) center no-repeat;
  position: relative;
}
#top-check .check__wrap .check__list #check__point-01 {
  left: 0;
  top: -65px;
}
#top-check .check__wrap .check__list #check__point-01 .check__item-num {
  inset: auto 0 -220px 0;
  margin: 0 auto;
}
#top-check .check__wrap .check__list #check__point-02 {
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -155px;
}
#top-check .check__wrap .check__list #check__point-02 .check__item-num {
  inset: auto auto -240px -10px;
  margin: 0 auto;
}
#top-check .check__wrap .check__list #check__point-03 {
  right: 0;
  top: -65px;
}
#top-check .check__wrap .check__list #check__point-03 .check__item-num {
  inset: auto auto -270px -350px;
  margin: 0 auto;
}
#top-check .check__wrap .check__list #check__point-04 {
  bottom: -85px;
  left: 135px;
}
#top-check .check__wrap .check__list #check__point-04 .check__item-num {
  inset: -280px -265px auto auto;
  margin: 0 auto;
}
#top-check .check__wrap .check__list #check__point-05 {
  bottom: -85px;
  right: 135px;
}
#top-check .check__wrap .check__list #check__point-05 .check__item-num {
  inset: -195px -90px auto auto;
  margin: 0 auto;
}
#top-check .check__wrap .check__list .check__item {
  width: 330px;
  position: absolute;
}
#top-check .check__wrap .check__list .check__item-num {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  font-size: var(--font-size-50);
  font-weight: var(--font-weight-black);
  color: var(--accent-color);
  background: var(--primary-color);
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 100;
  pointer-events: none;
}
#top-check .check__wrap .check__list .check__item-content {
  padding-bottom: 15px;
  background: var(--primary-color);
  position: relative;
}
#top-check .check__wrap .check__list .check__item-content::before {
  position: absolute;
  inset: -51px auto auto 0;
  width: 95px;
  border-radius: 20px 20px 0 0;
  color: var(--accent-color);
  font-size: var(--font-size-30);
  font-weight: var(--font-weight-black);
  background: var(--primary-color);
  text-align: center;
}
#top-check .check__wrap .check__list .check__item-title {
  padding: 10px 0;
  font-size: var(--font-size-26);
  color: var(--accent-color);
  border-bottom: 1px solid;
  text-align: center;
  font-weight: var(--font-weight-black);
}
#top-check .check__wrap .check__list .check__item-list {
  padding: 10px 10px 10px 45px;
}
#top-check .check__wrap .check__list .check__item-list li {
  color: var(--color-white);
  font-size: var(--font-size-17);
}
#top-check .check__wrap .check__list .check__item-list li::before {
  content: "・";
}
#top-check .check__wrap .check__list .check__item-button {
  width: 265px;
  margin: 0 auto;
  height: 50px;
}
#top-check .check__wrap .check__list .check__item-button span {
  padding-left: 40px;
  background: url(../img/top/check_ic.png) left center no-repeat;
}

/* top-greeting
------------------------*/
.bg-top-deco {
  position: relative;
  z-index: 1;
  padding: 55px 0 0;
}
.bg-top-deco::before {
  position: absolute;
  content: "";
  width: 665px;
  height: 665px;
  border-radius: 50%;
  inset: -167px 0 auto 0;
  margin: 0 auto;
  z-index: -1;
}

#top-greeting {
  padding-bottom: 105px;
  background: url(../img/top/greeting_bg.jpg) center/cover no-repeat;
}
#top-greeting.bg-top-deco::before {
  background: url(../img/top/greeting-ttl_ic.png) top 40px center no-repeat, linear-gradient(to top, transparent 0%, var(--primary-color) 73%);
}
#top-greeting .greeting__title {
  margin-bottom: 90px;
  color: var(--color-white);
  background-image: linear-gradient(to right, var(--accent-color) 4px, transparent 4px);
}
#top-greeting .greeting__title span {
  color: var(--accent-color);
}
#top-greeting .greeting__inner {
  min-height: 489px;
  position: relative;
  z-index: 1;
}
#top-greeting .greeting__inner::before {
  position: absolute;
  content: "";
  z-index: -1;
  width: 292px;
  height: 289px;
  background: url(../img/top/greeting_deco.png) center/100% no-repeat;
  inset: 125px -120px auto auto;
}
#top-greeting .greeting__inner .greeting__img {
  position: absolute;
  inset: -50px auto 0 -140px;
}
#top-greeting .greeting__inner .greeting__content {
  width: 588px;
  margin-left: auto;
  background: var(--color-white);
  border-radius: 13px;
  padding: 30px 40px 40px 35px;
}
#top-greeting .greeting__inner .greeting__content .greeting__text span {
  color: var(--primary-color);
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-bold);
}

/*
top-links
------------------------*/
#top-links {
  padding: 70px 0;
  background: var(--color-light-yellow);
}
#top-links .links__inbox {
  width: clamp(1200px, 81.25%, 1560px);
  position: relative;
}
#top-links .links__inbox::before {
  position: absolute;
  content: "";
  /*==========================================
  100% から%を算出
  ===========================================*/
  width: 83.3333333333%;
  margin: auto;
  inset: 0;
  border: 20px solid var(--color-white);
}
#top-links .links__list {
  position: relative;
  padding: 80px 0;
  z-index: 1;
  gap: 3.84616%;
}
#top-links .links__list::before, #top-links .links__list::after {
  position: absolute;
  content: "";
  z-index: -1;
}
#top-links .links__list::before {
  width: 388px;
  height: 114px;
  background: url(../img/top/links-top_deco.png) center/100% no-repeat;
  inset: 15px auto auto -105px;
}
#top-links .links__list::after {
  width: 362px;
  height: 167px;
  background: url(../img/top/links-btm_ill.png) center/100% no-repeat;
  inset: auto -155px -55px auto;
}
#top-links .links__list .links__item {
  width: 48.07692%;
  padding: 145px 20px 30px 30px;
  height: 440px;
  position: relative;
}
#top-links .links__list .links__item-plate {
  background: url(../img/top/links-plate_img.jpg) center/cover no-repeat;
}
#top-links .links__list .links__item-custom {
  background: url(../img/top/links-custom_img.jpg) center/cover no-repeat;
}
#top-links .links__list .links__item-title {
  position: absolute;
  inset: 0 auto auto 0;
  background: var(--primary-color);
  padding: 10px 20px 15px;
  color: var(--color-white);
  font-size: var(--font-size-46);
  font-weight: var(--font-weight-black);
  text-shadow: black 2px 0px, var(--primary-color) -2px 0px, var(--primary-color) 0px -2px, var(--primary-color) 0px 2px, var(--primary-color) 2px 2px, var(--primary-color) -2px 2px, var(--primary-color) 2px -2px, var(--primary-color) -2px -2px, var(--primary-color) 1px 2px, var(--primary-color) -1px 2px, var(--primary-color) 1px -2px, var(--primary-color) -1px -2px, var(--primary-color) 2px 1px, var(--primary-color) -2px 1px, var(--primary-color) 2px -1px, black -2px -1px;
}
#top-links .links__list .links__item-title span {
  position: relative;
  z-index: 1;
  padding: 0 10px;
}
#top-links .links__list .links__item-title span::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 22px;
  z-index: -1;
  inset: auto 0 0;
  background: var(--accent-color);
}
#top-links .links__list .links__item-text {
  margin-bottom: 30px;
}
#top-links .links__list .links__item-text span {
  background: var(--primary-color);
  color: var(--color-white);
  padding: 0 5px;
}
#top-links .links__list .links__item-button {
  width: 285px;
}

/*
top-estimate
------------------------*/
.tire-marks {
  background-image: url(../img/common/tire-marks_ill.png);
  background-position: 0 100%;
  background-size: 30.8854%;
  background-repeat: no-repeat;
}

#top-estimate {
  padding: 95px 0 205px;
}
#top-estimate .estimate__title {
  margin-bottom: 55px;
}
#top-estimate .estimate__inner {
  position: relative;
  min-height: 465px;
  position: relative;
  z-index: 1;
}
#top-estimate .estimate__inner::before {
  position: absolute;
  content: "";
  z-index: -1;
  width: 292px;
  height: 289px;
  background: url(../img/top/estimate-rb_deco.png) center/100% no-repeat;
  inset: auto -220px -85px auto;
}
#top-estimate .estimate__img {
  position: absolute;
  inset: -20px -125px auto auto;
}
#top-estimate .estimate__content {
  width: 485px;
}
#top-estimate .estimate__content .estimate__text {
  margin-bottom: 55px;
}
#top-estimate .estimate__content .estimate__text span {
  color: var(--primary-color);
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-bold);
}
#top-estimate .estimate__content .estimate__button {
  width: 285px;
}

/*
top-info
------------------------*/
#top-info.bg-top-deco::before {
  background-size: 18px 18px;
  background-position: 0 0, 9px 9px;
  background-image: radial-gradient(var(--color-light-blue) 1px, transparent 1px), radial-gradient(var(--color-light-blue) 1px, transparent 1px);
  background-color: var(--fourth-color);
}
#top-info.bg-top-deco::after {
  position: absolute;
  content: "";
  width: 131px;
  height: 146px;
  margin: 0 auto;
  inset: -120px 0 auto;
  background: url(../img/top/info-ttl_ic.png) center/100% no-repeat;
}
#top-info .info__inner {
  gap: 40px;
}
#top-info .info__table {
  width: 520px;
  border-radius: 13px;
  background: var(--color-white);
  padding: 15px 20px;
}
#top-info .info__table th {
  text-align: right;
}
#top-info .info__text {
  text-align: center;
  margin-bottom: -20px;
}

/* top-news
------------------------*/
#top-news {
  padding: 120px 0 155px;
  background: var(--color-white);
  position: relative;
  z-index: 1;
}
#top-news .news__post {
  margin-bottom: 20px;
}
#top-news .news__post:last-child {
  margin-bottom: 0;
}
#top-news .news__post a {
  padding: 15px 35px;
  border-radius: 19px;
  background: var(--color-light-yellow);
}
#top-news .news__post a:hover {
  opacity: 1;
  transform: translateX(10px);
}
#top-news .news__post a:hover .news__post-title {
  text-decoration: underline;
}
#top-news .news__post time {
  width: 85px;
}
#top-news .news__post .category-label {
  gap: 7px;
  width: calc(100% - 85px);
  padding-left: 10px;
}
#top-news .news__post .category-label li {
  padding: 0 15px;
  color: var(--color-white);
  background: var(--primary-color);
  border-radius: 15px;
}
#top-news .news__post-title {
  width: 100%;
  margin-top: 10px;
}
#top-news .news__button {
  width: 285px;
  margin: 70px auto 0;
}

/*==========================================
footer
===========================================*/
#footer {
  padding: 100px 0 95px;
}
#footer .footer__left {
  width: 435px;
}
#footer .footer__left .footer__logo {
  display: inline-block;
  margin-bottom: 70px;
}
#footer .footer__right {
  width: 545px;
}
#footer .footer__right .footer__official-button {
  width: 185px;
  background: var(--color-white);
  height: 50px;
  margin: 0 0 40px auto;
}
#footer .footer__right .footer__nav {
  gap: 10px 25px;
}
#footer .footer__right .footer__nav .nav__item {
  font-size: var(--font-size-14);
}
#footer .footer__right .footer__nav .nav__item a {
  color: var(--color-white);
}
#footer .footer__right .footer__nav .nav__item a:hover {
  text-decoration: underline;
}

#copyright {
  word-break: normal;
  text-align: right;
  font-weight: var(--font-weight-regular);
  color: var(--accent-color);
  margin-top: 30px;
}
#copyright small {
  font-size: var(--font-size-11);
}
#copyright a {
  color: var(--accent-color);
  text-decoration: underline;
}

/*==========================================
sv
===========================================*/
.lower-sv {
  height: 510px;
  position: relative;
}
.lower-sv .sv__bg {
  /*==========================================
  100% から%を算出
  ===========================================*/
  width: 65.0568181818%;
  height: 100%;
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 1;
}
.lower-sv .sv__title {
  position: absolute;
  inset: 29.4117% auto auto 0;
  margin: auto 0;
  width: 805px;
  font-size: var(--font-size-56);
  background: var(--accent-color);
  color: var(--primary-color);
  font-weight: var(--font-weight-black);
  transform: rotate(-10deg) skewX(-20deg);
  z-index: 2;
  letter-spacing: 0;
  text-align: center;
}
.lower-sv .sv__txt {
  position: absolute;
  inset: auto auto 0 0;
}

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

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

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

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

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

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

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

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

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

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

/*==========================================
strange
===========================================*/
#strange-section .strange__item {
  margin-bottom: 35px;
}
#strange-section .strange__item::before {
  width: 134px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px 20px 0 0;
  font-size: var(--font-size-30);
  color: var(--accent-color);
  font-weight: var(--font-weight-black);
  background: var(--primary-color);
}
#strange-section .strange__item:last-child {
  margin-bottom: 0;
}
#strange-section .strange__item-title {
  background: var(--primary-color);
  color: var(--accent-color);
  font-size: var(--font-size-26);
  font-weight: var(--font-weight-black);
  padding: 10px 50px;
  border-radius: 0 20px 0 0;
}
#strange-section .strange__item-content {
  padding: 50px 45px;
  background: var(--color-light-yellow);
  border-radius: 0 0 20px 20px;
}
#strange-section .strange__item-headline {
  margin-bottom: 20px;
}
#strange-section .strange__item-headline-content {
  width: 620px;
}
#strange-section .strange__item-question {
  background: var(--fifth-color);
  border-radius: 19px;
  padding: 30px 40px;
  margin-bottom: 25px;
}
#strange-section .strange__item-question-title {
  font-size: var(--font-size-26);
  font-weight: var(--font-weight-black);
  color: var(--primary-color);
  font-weight: var(--font-weight-black);
  text-align: center;
}
#strange-section .strange__item-question-item {
  padding: 0 25px;
  position: relative;
}
#strange-section .strange__item-question-item::before {
  width: 1px;
  height: 16px;
  position: absolute;
  content: "";
  inset: 0 auto 0 0;
  margin: auto 0;
  background: var(--body-font-color);
  transform: rotate(30deg);
}
#strange-section .strange__item-question-item:nth-child(1) {
  padding-left: 0;
}
#strange-section .strange__item-question-item:nth-child(1)::before {
  background: none;
}
#strange-section .strange__item-answer {
  margin-bottom: 30px;
}
#strange-section .strange__item-answer-content {
  width: 705px;
  background: var(--fourth-color);
  border-radius: 19px;
  padding: 25px 45px 60px;
  position: relative;
}
#strange-section .strange__item-answer-content::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 19px 33px 19px 0px;
  border-color: transparent var(--fourth-color) transparent transparent;
  inset: 80px auto auto -33px;
}
#strange-section .strange__item-answer-title {
  font-size: var(--font-size-26);
  font-weight: var(--font-weight-black);
  color: var(--primary-color);
  margin-bottom: 10px;
}
#strange-section .strange__item .c-strange__item-advice {
  background: var(--primary-color);
  border-radius: 19px;
}
#strange-section .strange__item .c-strange__item-advice .strange__advice-title {
  border-bottom: 1px solid var(--accent-color);
  font-size: var(--font-size-26);
  color: var(--color-white);
  font-weight: var(--font-weight-black);
  text-align: center;
  padding: 10px 0;
  margin-bottom: 20px;
}
#strange-section .strange__item .c-strange__item-advice .strange__advice-title span {
  color: var(--accent-color);
  font-size: var(--font-size-36);
}
#strange-section .strange__item .c-strange__item-advice .strange__advice-title small {
  font-size: var(--font-size-22);
}
#strange-section .strange__item .c-strange__item-advice .strange__advice-button {
  width: 460px;
  margin: 0 auto 20px;
  background: var(--color-white);
  font-size: var(--font-size-18);
  border-radius: 25px;
  height: 50px;
}
#strange-section .strange__item .c-strange__item-advice .c-contact__list {
  justify-content: center;
  padding-bottom: 30px;
  gap: 20px 25px;
}

/*==========================================
plate
===========================================*/
/* com-about__section
------------------------*/
.com-about__section .inbox {
  width: clamp(1200px, 67.7708%, 1300px);
}
.com-about__section .about__title {
  width: 1080px;
  margin: 0 auto 60px;
}
.com-about__section .about__text {
  margin-bottom: 75px;
  text-align: center;
}
.com-about__section .about__list-wrap {
  position: relative;
  z-index: 1;
}
.com-about__section .about__list-wrap::before {
  position: absolute;
  content: "";
  width: 100%;
  height: calc(100% - 90px);
  border: 20px solid var(--fourth-color);
  inset: 0;
  margin: auto;
  z-index: -1;
}
.com-about__section .about__list {
  width: 1080px;
  margin: 0 auto;
  gap: 45px;
}
.com-about__section .about__list .about__item {
  width: 330px;
  background: var(--primary-color);
  border-radius: 10px;
}
.com-about__section .about__list .about__item-title {
  font-size: var(--font-size-26);
  color: var(--accent-color);
  font-weight: var(--font-weight-black);
  border-bottom: 1px solid;
  text-align: center;
  padding: 15px 0 10px;
  margin-bottom: 15px;
}
.com-about__section .about__list .about__item-title small {
  font-size: var(--font-size-18);
}
.com-about__section .about__list .about__item-text {
  padding: 0 15px 20px;
  color: var(--color-white);
  font-size: var(--font-size-17);
}

/* com-case__archive
------------------------*/
.com-case__archive {
  background: var(--color-light-yellow);
}
.com-case__archive .case__item {
  width: 520px;
}
.com-case__archive .case__item a {
  background: var(--fifth-color);
  border-radius: 13px;
  padding: 30px 40px 40px;
  flex-direction: column-reverse;
}
.com-case__archive .case__item-figure--before .case__item-img {
  width: 290px;
  height: 170px;
}
.com-case__archive .case__item-figure--after {
  text-align: right;
}
.com-case__archive .case__item-figure--after .case__item-img {
  width: 355px;
  height: 225px;
  margin-left: auto;
}
.com-case__archive .case__item:has(.case__item-figure--after) .case__item-figure--before {
  margin-bottom: 20px;
  position: relative;
}
.com-case__archive .case__item:has(.case__item-figure--after) .case__item-figure--before::before {
  position: absolute;
  content: "";
  width: 102px;
  height: 134px;
  background: url(../img/common/bfaf_arr.png) center/100% no-repeat;
  inset: auto auto -120px 0;
  z-index: 2;
}
.com-case__archive .case__item-title {
  margin: 20px 0 0;
}

.case__item-caption {
  font-size: var(--font-size-16);
  color: var(--primary-color);
  font-weight: var(--font-weight-black);
}
.case__item-caption::before {
  content: "・";
}

/* com-case__single
------------------------*/
.com-case__single .case__bfaf-list .case__bfaf-item {
  margin-bottom: 20px;
}
.com-case__single .case__bfaf-list .case__bfaf-item:last-child {
  margin-bottom: 0;
}
.com-case__single .case__bfaf-list .case__bfaf-item .case__item-figure--before {
  width: 440px;
}
.com-case__single .case__bfaf-list .case__bfaf-item .case__item-figure--before .case__item-thumb {
  width: 100%;
  height: 278px;
}
.com-case__single .case__bfaf-list .case__bfaf-item:has(.case__item-figure--after) .case__item-figure--before {
  margin-bottom: 20px;
  position: relative;
}
.com-case__single .case__bfaf-list .case__bfaf-item:has(.case__item-figure--after) .case__item-figure--before::before {
  position: absolute;
  content: "";
  width: 102px;
  height: 134px;
  background: url(../img/common/bfaf_arr.png) center/100% no-repeat;
  inset: auto -65px -20px auto;
  z-index: 2;
}
.com-case__single .case__bfaf-list .case__bfaf-item .case__item-figure--after {
  width: 585px;
  text-align: right;
}
.com-case__single .case__bfaf-list .case__bfaf-item .case__item-figure--after .case__item-thumb {
  width: 100%;
  height: 350px;
}
.com-case__single .case__single-textarea {
  background: var(--color-light-yellow);
  padding: 30px 35px;
  border-radius: 20px;
  margin-top: 55px;
  font-size: var(--font-size-17);
}
.com-case__single .case__single-textarea-price {
  color: var(--primary-color);
  font-weight: var(--font-weight-black);
  font-size: var(--font-size-18);
  margin-bottom: 15px;
}

/*==========================================
利用方法
===========================================*/
/* manual-step
------------------------*/
#manual-step .step__list {
  position: relative;
  z-index: 1;
}
#manual-step .step__list::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  background: var(--primary-color);
  inset: 0;
  margin: auto;
  z-index: -1;
}
#manual-step .step__item {
  margin-bottom: 40px;
  background: var(--color-light-yellow);
  padding: 75px 50px 40px;
  border-radius: 20px;
}
#manual-step .step__item::before {
  position: absolute;
  inset: 0 auto auto 50px;
  width: 158px;
  height: 54px;
  color: var(--accent-color);
  background: var(--primary-color);
  border-radius: 0 0 20px 20px;
  font-size: var(--font-size-30);
  font-weight: var(--font-weight-black);
  text-align: center;
  content: "step" counter(number, decimal-leading-zero);
}
#manual-step .step__item:last-child {
  margin-bottom: 0;
}
#manual-step .step__item-title {
  color: var(--primary-color);
}
#manual-step .step__item-content {
  width: 605px;
}

/* manual-payment
------------------------*/
#manual-payment {
  background-color: rgba(var(--color-yellow-rgb), 0.75);
  padding-bottom: 225px;
}
#manual-payment .inbox {
  position: relative;
  z-index: 1;
}
#manual-payment .inbox::before {
  position: absolute;
  content: "";
  z-index: -1;
  width: 292px;
  height: 289px;
  background: url(../img/top/estimate-rb_deco.png) center/100% no-repeat;
  inset: 0 -166px auto auto;
}
#manual-payment .payment__content {
  background: var(--color-white);
  border-radius: 13px;
  padding: 30px 40px 30px 115px;
  min-height: 145px;
}

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

/*==========================================
news
===========================================*/
.column__wrap .column__list .column__post a {
  padding: 45px 0;
}
.column__wrap .column__list .column__post-meta time {
  width: 95px;
}
.column__wrap .column__list .column__post-meta time,
.column__wrap .column__list .column__post-meta .category-label {
  font-size: var(--font-size-14);
}
.column__wrap .column__list .column__post-meta .category-label {
  width: calc(100% - 115px);
  gap: 5px;
}
.column__wrap .column__list .column__post-meta .category-label li {
  padding: 2px 10px;
}
.column__wrap .column__list .column__post-title {
  font-size: var(--font-size-23);
  margin: 10px 0;
}
.column__wrap .column__list .more-btn {
  width: 125px;
  font-size: var(--font-size-14);
  margin: inherit;
  margin-left: auto;
  font-weight: bold;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  box-sizing: border-box;
  padding: 5px 0;
  display: block;
  color: var(--color-white);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) a {
  /*==========================================
  Flexbox
  ===========================================*/
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-thumb {
  width: 210px;
  height: 200px;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-thumb .img-eff {
  width: 100%;
  height: 100%;
  transition-duration: 0.3s;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-meta {
  width: 820px;
}

/*----------------------------------
詳細ページのカテゴリー表示(タイトル下部)
----------------------------------*/
.single__post-meta {
  margin-bottom: 20px;
}
.single__post-meta time {
  font-size: var(--font-size-14);
  width: 95px;
  padding: 3px 0;
}
.single__post-meta .category-label {
  width: calc(100% - 95px);
  font-size: var(--font-size-14);
  gap: 5px;
  margin-left: 10px;
}
.single__post-meta .category-label li a {
  padding: 3px 10px;
}

/*==========================================
contact
===========================================*/
#contact .contact__form {
  width: 980px;
  margin: 0 auto 55px;
}
#contact .contact__form-item .contact__form-label {
  margin-bottom: 20px;
}
#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 .input__upload-wrap {
  gap: 20px;
}
#contact .contact__form .upload-item-wrap .thumb {
  width: 170px;
  margin-right: 15px;
}
#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 .nav__item a {
  padding: 2% 0 2% 3%;
}

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