@charset "UTF-8";
/*==========================================
コンポーネントファイル
===========================================*/
/*
# パンくずリスト
------------------------*/
div .bread {
  font-size: var(--font-size-14);
  position: relative;
  z-index: 100;
}
div .bread .breadcrumbs {
  position: absolute;
  width: 1080px;
  margin: 0 auto;
  inset: 10px auto auto 0;
  gap: 10px 20px;
}
div .bread li {
  color: var(--body-font-color);
  position: relative;
}
div .bread li::after {
  content: " > ";
  color: var(--body-font-color);
  position: absolute;
  inset: 0 -15px 0 auto;
  margin: auto 0;
}
div .bread li:last-child::after {
  content: "";
}
div .bread li a {
  color: var(--body-font-color);
}
div .bread li a:hover {
  text-decoration: underline;
}

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

/*
# c-contact__list
------------------------*/
.c-contact__list {
  gap: 15px 30px;
}
.c-contact__list .mail__button {
  width: 240px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-bold);
  border-radius: 5px;
  background: url(../../img/common/mail_ic.png) left 15px center no-repeat, linear-gradient(to bottom, rgb(63, 139, 197) 0%, rgba(var(--primary-color-rgb), 1) 100%);
}
.c-contact__list .mail__button:hover {
  transform: scale(0.98);
}

/*
# c-contact__section
------------------------*/
.c-contact__section {
  padding: 55px 0 120px;
}
.c-contact__section .contact__inbox {
  background: url(../../img/common/contact_bg.jpg) center/cover no-repeat;
  padding: 85px 9.756% 95px;
}
.c-contact__section .contact__title {
  text-align: center;
  margin-bottom: 25px;
}
.c-contact__section .contact__title .title-en,
.c-contact__section .contact__title .title-ja {
  color: var(--color-white);
}
.c-contact__section .contact__text {
  text-align: center;
  margin-bottom: 45px;
  color: var(--color-white);
}
.c-contact__section .contact__button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--color-white);
  font-weight: var(--font-weight-bold);
  position: relative;
  height: 100px;
  line-height: 0.8;
}
.c-contact__section .contact__button::before, .c-contact__section .contact__button::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  z-index: 1;
}
.c-contact__section .contact__button::before {
  content: "";
}
.c-contact__section .contact__button.open-new-tab::after {
  right: 40px;
  width: 20px;
  height: 19px;
  background: url(../../img/common/contact-link_ic.png) center/100% no-repeat;
}
.c-contact__section .contact__button:hover {
  transform: scale(0.98);
}
.c-contact__section .contact__button .contact__button-up {
  background: var(--accent-color);
  color: var(--primary-color);
  padding: 5px;
}
.c-contact__section .contact__button-list {
  gap: 60px 4.5454%;
}
.c-contact__section .contact__button-list .contact__button-item {
  width: 47.727%;
  text-align: center;
}
.c-contact__section .contact__button-list .contact__button-item:first-child {
  width: 100%;
}
.c-contact__section .contact__button-list .contact__button-item:first-child .contact__button {
  height: 200px;
}
.c-contact__section .contact__button-list .contact__button-item:first-child .contact__button-up {
  font-size: var(--font-size-30);
  font-weight: var(--font-weight-black);
}
.c-contact__section .contact__button-list .contact__button-item:first-child .contact__button-text {
  font-size: var(--font-size-40);
}
.c-contact__section .contact__button-list .contact__button-item.contact__button--line .contact__button::before {
  width: 80px;
  height: 80px;
  background: url(../../img/common/sns/LINE_logo.svg) center/100% no-repeat;
  left: 45px;
}
.c-contact__section .contact__button-list .contact__button-item.contact__button--instagram .contact__button::before {
  width: 30px;
  height: 30px;
  background: url(../../img/common/sns/Instagram_Glyph_Gradient.svg) center/100% no-repeat;
  left: 45px;
}
.c-contact__section .contact__button-list .contact__button-item.contact__button--mail .contact__button::before {
  width: 29px;
  height: 20px;
  background: url(../../img/common/contact-mail_ic.png) center/100% no-repeat;
  left: 35px;
}
.c-contact__section .contact__button-list .contact__button-item.contact__button--mail .contact__button::after {
  right: 35px;
}

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

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

.com-text {
  line-height: 2.5;
  letter-spacing: var(--body-letter-spacing);
}
.com-text.clamp-size {
  font-size: clamp(1.5rem, 1.035vw, 2rem);
}

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

/*
# .com-button
------------------------*/
.com-button {
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-bold);
  border-bottom: 1px solid var(--form-border-color);
  padding: 7px 55px 15px 10px;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
}
.com-button::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  background: url(../../img/common/com-button_arr.svg) center/100% no-repeat;
  inset: 3px 0 auto auto;
  margin: auto 0;
  z-index: 1;
}
.com-button:hover {
  border-color: var(--primary-color);
}
.com-button:hover::after {
  transform: translateX(10px);
}

/*==========================================
共通タイトル
===========================================*/
.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title.align-left {
  text-align: left;
}
.section-title span {
  display: block;
  letter-spacing: 0;
}
.section-title .title-en {
  font-size: var(--font-size-30);
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
}
.section-title .title-ja {
  font-size: var(--font-size-45);
  font-weight: var(--font-weight-bold);
}

.headline-title {
  border-bottom: 2px dotted var(--body-font-color);
  color: var(--primary-color);
  font-size: var(--font-size-30);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0;
  margin-bottom: 25px;
  padding-bottom: 10px;
}

.sub-title {
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 6px, #0163b4 6px, #0163b4 12px);
  background-color: var(--primary-color);
  color: var(--accent-color);
  padding: 7px 15px;
  margin-bottom: 20px;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-25);
}

/*==========================================
header
===========================================*/
#header {
  padding: 15px 2.6041% 15px 3.125%;
}
#header .header__right {
  width: 705px;
}
#header .c-contact__list {
  justify-content: flex-end;
}
#header .header__nav {
  margin-top: 10px;
}
#header .header__nav-item {
  position: relative;
}
#header .header__nav-item::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 15px;
  inset: 0 0 0 auto;
  margin: auto 0;
  background: var(--body-font-color);
  transform: rotate(20deg);
}
#header .header__nav-item:first-child .header__nav-link {
  padding-left: 0;
}
#header .header__nav-item:last-child::after {
  background: none;
}
#header .header__nav-item:last-child .header__nav-link {
  padding-right: 0;
}
#header .header__nav-link {
  padding: 0 10px;
  display: block;
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-bold);
}
#header .header__nav-link:hover {
  opacity: 1;
  color: var(--primary-color);
}
#header .header__nav-link:hover.current {
  color: var(--primary-color);
}

/*==========================================
mv
===========================================*/
#top-mv {
  width: 93.75%;
  margin: 0 auto;
  height: 787px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../../img/top/mv/mv-l_img.png) left -6% top 55%/47.222% no-repeat, url(../../img/top/mv/mv-r_img.png) right -6% bottom 123%/41.2222% no-repeat, url(../../img/top/mv/mv_bg.jpg) center/cover;
}
#top-mv .mv__catch {
  width: 49.444%;
  margin: 0 auto;
}

/*==========================================
footer
===========================================*/
#footer {
  padding: 100px 0 95px;
  text-align: center;
}
#footer .side__button {
  position: fixed;
  z-index: 1001;
  inset: auto 20px 20px auto;
}
#footer .footer__logo {
  display: inline-block;
  margin-bottom: 40px;
}
#footer .footer__official-site {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 350px;
  height: 80px;
  color: var(--color-white);
  font-size: var(--font-size-18);
  background: url(../../img/common/link_ic.png) right 15px center no-repeat, var(--primary-color);
  margin: 0 auto 50px;
}
#footer .footer__official-site:hover {
  transform: scale(0.97);
}
#footer .footer__nav {
  width: 660px;
  margin: 0 auto 65px;
  font-size: var(--font-size-16);
}
#footer .footer__nav-item {
  position: relative;
}
#footer .footer__nav-item::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 15px;
  inset: 0 0 0 auto;
  margin: auto 0;
  background: var(--body-font-color);
  transform: rotate(20deg);
}
#footer .footer__nav-item:first-child .header__nav-link {
  padding-left: 0;
}
#footer .footer__nav-item:nth-child(5)::after, #footer .footer__nav-item:last-child::after {
  background: none;
}
#footer .footer__nav-item:nth-child(5) .header__nav-link, #footer .footer__nav-item:last-child .header__nav-link {
  padding-right: 0;
}
#footer .footer__nav-link {
  padding: 0 10px;
  display: block;
}
#footer .footer__nav-link:hover {
  text-decoration: underline;
}

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

/*==========================================
sv
===========================================*/
.lower-sv {
  height: 400px;
  width: 93.75%;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lower-sv .sv__title {
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 6px, #0163b4 6px, #0163b4 12px);
  background-color: var(--primary-color);
  font-size: var(--font-size-40);
  font-weight: var(--font-weight-black);
  color: var(--color-white);
  padding: 5px 55px;
  position: relative;
}
.lower-sv .sv__title::before, .lower-sv .sv__title::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-color);
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.lower-sv .sv__title::before {
  left: 30px;
}
.lower-sv .sv__title::after {
  right: 30px;
}

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

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

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

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

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

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

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

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

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

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

/*==========================================
top
===========================================*/
.b-plus__banner {
  width: 1000px;
  margin: 130px auto;
  display: block;
}
.b-plus__banner:hover {
  transform: scale(0.98);
}

/*
# top-trouble
------------------------*/
.com-trouble__wrap {
  position: relative;
  padding: 55px 0 100px;
  margin-bottom: 80px;
  background: url(../../img/top/trouble-y_bdr.png) left center repeat-y, url(../../img/top/trouble-y_bdr.png) right center repeat-y, url(../../img/top/trouble-x_bdr.png) top center repeat-x, url(../../img/top/trouble-x_bdr.png) bottom center repeat-x, url(../../img/top/trouble_bg.png) center/cover;
}
.com-trouble__wrap::before {
  position: absolute;
  content: "";
  width: 440px;
  height: 100px;
  background: url(../../img/top/trouble_arr.png) center/100% no-repeat;
  inset: auto 0 -50px;
  margin: 0 auto;
}
.com-trouble__wrap .com-trouble__list .trouble__item {
  font-weight: var(--font-weight-bold);
  border-bottom: 1px solid var(--form-border-color);
  padding: 20px 0 20px 50px;
  background: url(../../img/top/trouble-item_ic.png) left center no-repeat;
}

.com-trouble__end-text {
  text-align: center;
  font-size: var(--font-size-50);
  font-weight: var(--font-weight-black);
  line-height: 1.5;
  letter-spacing: 0;
  position: relative;
  z-index: 1;
}
.com-trouble__end-text::before {
  position: absolute;
  content: "";
  width: 930px;
  height: 20px;
  background: var(--accent-color);
  inset: auto 0 0;
  margin: 0 auto;
  z-index: -1;
}

#top-trouble .top-trouble__title {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 70px;
  margin-bottom: 50px;
}
#top-trouble .top-trouble__title .title-en {
  font-size: 15rem;
  color: var(--accent-color);
  font-weight: var(--font-weight-black);
  position: absolute;
  inset: 0 0 auto;
  line-height: 1;
  z-index: -1;
}
#top-trouble .top-trouble__title .title-ja {
  font-size: 6rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0;
  text-shadow: 5px 5px 15px var(--color-white), -5px -5px 15px var(--color-white), 5px -5px 15px var(--color-white), -5px 5px 15px var(--color-white);
}
#top-trouble .top-trouble__title .title-ja em {
  color: var(--primary-color);
  position: relative;
}
#top-trouble .top-trouble__title .title-ja em::before {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  background: var(--primary-color);
  inset: 0 0 auto;
  transform: rotate(45deg);
  margin: 0 auto;
}
#top-trouble .top-trouble__inner {
  gap: 145px;
}
#top-trouble .top-trouble__inner .top-trouble__list {
  position: relative;
}
#top-trouble .top-trouble__inner .top-trouble__list::before {
  position: absolute;
  content: "";
  margin: auto 0;
  inset: 0 -102px 0 auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 52px 0px 52px 62px;
  border-color: transparent transparent transparent var(--body-font-color);
}
#top-trouble .top-trouble__inner .top-trouble__list .trouble__item {
  font-size: var(--font-size-30);
}
#top-trouble .top-trouble__inner .top-trouble__text {
  font-size: var(--font-size-50);
  color: var(--accent-color);
  font-weight: var(--font-weight-bold);
  text-indent: 0.5em;
}
#top-trouble .top-trouble__inner .top-trouble__text span {
  padding: 5px 10px;
  background: var(--primary-color);
  position: relative;
}
#top-trouble .top-trouble__inner .top-trouble__text span::before, #top-trouble .top-trouble__inner .top-trouble__text span::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  margin: auto 0;
  top: 0;
  bottom: 0;
}
#top-trouble .top-trouble__inner .top-trouble__text span::before {
  border-width: 0px 0px 82px 22px;
  border-color: transparent transparent var(--primary-color) transparent;
  left: -22px;
}
#top-trouble .top-trouble__inner .top-trouble__text span::after {
  border-width: 82px 22px 0px 0px;
  border-color: var(--primary-color) transparent transparent transparent;
  right: -22px;
}

/*
# top-about
------------------------*/
#top-about {
  position: relative;
  padding-bottom: 508px;
  margin-bottom: -750px;
  background: url(../../img/top/about-btm_bg.png) center/cover no-repeat;
}
#top-about::before, #top-about::after {
  position: absolute;
  content: "";
}
#top-about::before {
  width: 49.53125%;
  height: 60.208vw;
  min-height: 770px;
  background: url(../../img/top/about-l_img.png) center/100% no-repeat;
  inset: 0 auto auto 0;
}
#top-about::after {
  width: 43.28125%;
  height: 48.437vw;
  min-height: 620px;
  background: url(../../img/top/about-r_img.png) center/100% no-repeat;
  inset: -130px 0 auto auto;
}
#top-about .about__title {
  text-align: center;
  position: relative;
  z-index: 1;
  padding-top: 60px;
  margin-bottom: 20px;
}
#top-about .about__title .title-en {
  position: absolute;
  inset: 0 0 auto;
  z-index: -1;
}
#top-about .about__title .title-ja {
  font-size: 6rem;
  line-height: 1.3;
  color: var(--color-navy);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0;
}
#top-about .about__sub-title {
  text-align: center;
  margin-bottom: 65px;
}
#top-about .about__sub-title span {
  background: var(--accent-color);
  font-size: var(--font-size-35);
  font-weight: var(--font-weight-bold);
  padding: 0 20px;
}
#top-about .about__text {
  margin-bottom: 40px;
  text-align: center;
}
#top-about .about__button {
  margin: 60px auto 0;
  z-index: 2;
}

/*
# top-service
------------------------*/
#top-service {
  position: relative;
  z-index: 1;
  padding: 365px 0 130px;
  background: url(../../img/top/service_bg.png) top center/100% no-repeat;
}
#top-service .service__title {
  text-align: center;
  margin-bottom: 75px;
  line-height: 1.3;
}
#top-service .service__title span {
  display: block;
}
#top-service .service__title .title-en {
  font-size: 15rem;
  letter-spacing: var(--body-letter-spacing);
  font-weight: var(--font-weight-black);
}
#top-service .service__title .title-ja {
  font-size: 6rem;
  font-weight: var(--font-weight-bold);
}
#top-service .service__headline {
  position: relative;
  margin-bottom: 100px;
}
#top-service .service__headline-title {
  font-size: var(--font-size-50);
}
#top-service .service__headline-title .title-small {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--body-font-color);
  background: var(--accent-color);
  font-size: var(--font-size-20);
  padding: 10px 15px;
  line-height: 1.5;
}
#top-service .service__headline-content {
  width: 43.9024%;
  margin-left: auto;
  min-height: 500px;
}
#top-service .service__headline-img {
  width: 50%;
  position: absolute;
  inset: 0 auto auto 0;
}
#top-service .service__list {
  position: relative;
  padding: 85px 0 0;
  gap: 40px;
  z-index: 1;
  gap: 2.439%;
}
#top-service .service__list::before {
  position: absolute;
  content: "";
  background: linear-gradient(to top, rgb(63, 139, 197) 0%, rgba(var(--primary-color-rgb), 1) 100%);
  height: 47.237%;
  inset: 0 0 auto;
  margin: 0 auto;
  width: 100%;
  border-radius: 20px;
  z-index: -1;
}
#top-service .service__list .service__card {
  width: 40.0243%;
}
#top-service .service__list .service__card-img {
  margin-bottom: 45px;
}
#top-service .service__list .service__card-title {
  text-align: center;
  font-size: var(--font-size-50);
}
#top-service .service__list .service__card-text {
  text-align: center;
}
#top-service .service__list .service__card-button {
  margin: 35px auto 0;
}

/*
# top-faq
------------------------*/
#top-faq {
  padding: 95px 0 100px;
  background: var(--color-gray-dark);
}
#top-faq .faq__inbox {
  position: relative;
}
#top-faq .faq__title {
  line-height: 1.4;
  margin-bottom: 40px;
}
#top-faq .faq__title .title-en {
  font-size: var(--font-size-40);
}
#top-faq .faq__title .title-ja {
  font-size: 6rem;
}
#top-faq .faq__list {
  gap: 2.27285%;
}
#top-faq .faq__item {
  width: 31.8181%;
}
#top-faq .faq__button {
  position: absolute;
  inset: 50px 0 auto auto;
}

.com-faq__list .faq__item {
  background: var(--primary-color);
  padding: 20px 2.2727%;
}
.com-faq__list .faq__item-title {
  margin-bottom: 30px;
  color: var(--color-white);
  font-weight: var(--font-weight-bold);
  position: relative;
  padding-left: 30px;
  font-size: var(--font-size-20);
}
.com-faq__list .faq__item-title::before {
  position: absolute;
  content: "Q.";
  color: var(--accent-color);
  inset: 0 auto auto 0;
}
.com-faq__list .faq__item-body {
  background: var(--color-white);
  padding: 15px;
}

/*
# top-news
------------------------*/
#top-news {
  padding: 120px 0 95px;
}
#top-news .news__inbox {
  position: relative;
}
#top-news .news__title {
  width: 300px;
  line-height: 1.4;
}
#top-news .news__title .title-en {
  font-size: var(--font-size-40);
}
#top-news .news__title .title-ja {
  font-size: 6rem;
}
#top-news .news__card-list {
  width: calc(100% - 300px);
  gap: 2.9411%;
}
#top-news .news__card-list .news__card {
  width: 31.3725%;
}
#top-news .news__card-list .news__card-link {
  padding: 15px 20px;
  display: block;
  background: var(--color-white);
}
#top-news .news__card-list .news__card-link:hover {
  transform: translateY(-10px);
}
#top-news .news__card-list .news__card-link:hover .news__card-title {
  color: var(--primary-color);
}
#top-news .news__card-list .news__card-tags {
  gap: 5px;
  margin-bottom: 15px;
}
#top-news .news__card-list .news__card-tags .news__card-tag {
  background: var(--accent-color);
  font-size: var(--font-size-14);
  color: var(--primary-color);
  padding: 0 5px;
  font-weight: var(--font-weight-bold);
}
#top-news .news__card-list .news__card-thumb {
  width: 100%;
  height: 200px;
  margin-bottom: 5px;
}
#top-news .news__card-list .news__card-date {
  color: var(--primary-color);
  font-weight: var(--font-weight-bold);
  margin-bottom: 5px;
}
#top-news .news__card-list .news__card-title {
  font-size: var(--font-size-20);
  line-height: 1.4;
  transition: all 0.3s;
}
#top-news .news__button {
  position: absolute;
  inset: auto auto 0 0;
}

/*==========================================
beginner
===========================================*/
/*
# beginner-concept
------------------------*/
#beginner-concept {
  background: url(../../img/beginner/concept_bg.jpg) center/cover no-repeat;
}
#beginner-concept .concept__inbox {
  position: relative;
}
#beginner-concept .concept__inbox::before {
  position: absolute;
  content: "";
  width: 381px;
  height: 272px;
  background: url(../../img/beginner/concept_ill.png) center/100% no-repeat;
  inset: -95px -150px auto auto;
}
#beginner-concept .concept__title .title-ja {
  color: var(--color-navy);
}
#beginner-concept .concept__title .title-ja-text {
  background: var(--accent-color);
  font-size: var(--font-size-30);
  color: var(--body-font-color);
  padding: 0 20px;
}
#beginner-concept .concept__content {
  width: 700px;
}

/*
# beginner-service
------------------------*/
.com-service__list .service__card {
  border: 1px solid var(--primary-color);
  background: var(--color-white);
  padding: 60px 7.8125%;
  position: relative;
  margin-bottom: 25px;
}
.com-service__list .service__card:last-child {
  margin-bottom: 0;
}
.com-service__list .service__card-content {
  width: 62.111%;
  margin-left: auto;
  min-height: 290px;
}
.com-service__list .service__card-img {
  width: 29.6875%;
  position: absolute;
  inset: 60px auto auto 7.8125%;
}

#beginner-service .service__other {
  background: var(--color-gray-dark);
  margin-top: 25px;
  padding: 60px 7.8125%;
}
#beginner-service .service__other-title {
  text-align: center;
}
#beginner-service .service__other .service__other-card {
  position: relative;
  margin-bottom: 45px;
}
#beginner-service .service__other .service__other-card:last-child {
  margin-bottom: 0;
}
#beginner-service .service__other .other-card__img {
  position: absolute;
  inset: 0 0 auto auto;
  width: 33.333%;
}
#beginner-service .service__other .other-card__content {
  width: 62.9629%;
  min-height: 230px;
}

/*
# beginner-flow
------------------------*/
#beginner-flow .flow__list {
  gap: 60px;
}
#beginner-flow .flow__list .flow__item {
  width: 320px;
  height: 210px;
  padding: 70px 15px 0;
  color: var(--color-white);
  text-align: center;
  position: relative;
  background: linear-gradient(to top, rgb(63, 139, 197) 0%, rgba(var(--primary-color-rgb), 1) 100%);
}
#beginner-flow .flow__list .flow__item::after {
  position: absolute;
  content: "";
  inset: 0 -30px 0 auto;
  margin: auto 0;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
  transform: rotate(45deg);
}
#beginner-flow .flow__list .flow__item:nth-child(3n)::after {
  border: none;
}
#beginner-flow .flow__list .flow__item-icon {
  position: absolute;
  inset: -45px 0 auto;
  text-align: center;
}
#beginner-flow .flow__list .flow__item-text .flow__text-num {
  font-weight: var(--font-weight-black);
  color: var(--accent-color);
  font-size: var(--font-size-20);
  display: block;
  margin-bottom: 10px;
}
#beginner-flow .flow__list .flow__item-text .flow__text-content {
  font-size: var(--font-size-25);
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
}
#beginner-flow .flow__list .flow__item-text .flow__text-content small {
  font-size: var(--font-size-20);
}
#beginner-flow .flow__list .flow__item-text .flow__text-content .block {
  display: block;
}

/*
# beginner-info
------------------------*/
#beginner-info {
  background: var(--color-gray-dark);
}
#beginner-info .info__table {
  margin-bottom: 75px;
}
#beginner-info .info__table tr {
  /*==========================================
  Flexbox
  ===========================================*/
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
  margin-bottom: 10px;
}
#beginner-info .info__table tr:last-child {
  margin-bottom: 0;
}
#beginner-info .info__table tr th,
#beginner-info .info__table tr td {
  padding: 10px;
}
#beginner-info .info__table tr th {
  width: 300px;
  text-align: center;
  background: var(--primary-color);
  color: var(--color-white);
  font-weight: var(--font-weight-bold);
}
#beginner-info .info__table tr td {
  width: calc(100% - 320px);
}

/*==========================================
repair
===========================================*/
/*
# repair-service
------------------------*/
#repair-service .service__area {
  background: var(--color-gray-dark);
  margin-top: 25px;
  padding: 60px 7.8125%;
  position: relative;
}
#repair-service .service__area-map {
  position: absolute;
  inset: 60px 7.8125% auto auto;
}
#repair-service .service__area-content {
  width: 61.111%;
}

/*
# repair-feature
------------------------*/
#repair-feature {
  background: url(../../img/repair/feature_bg.png) top center/100% no-repeat;
}
#repair-feature .feature__item {
  margin-bottom: 55px;
}
#repair-feature .feature__item:last-child {
  margin-bottom: 0;
}
#repair-feature .feature__item-title {
  background: var(--primary-color);
  color: var(--color-white);
  font-size: var(--font-size-30);
  font-weight: var(--font-weight-bold);
  padding: 10px 85px;
  margin-bottom: 20px;
}
#repair-feature .feature__item-title::before {
  position: absolute;
  inset: 0 auto 0 25px;
  margin: auto 0;
  content: counter(number);
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--body-font-color);
}

/*
# repair-price
------------------------*/
#repair-price {
  background: var(--color-gray-dark);
}
#repair-price .price__text {
  text-align: center;
  margin-bottom: 45px;
}
#repair-price .price__card {
  margin-bottom: 60px;
  position: relative;
}
#repair-price .price__card:last-child {
  margin-bottom: 0;
}
#repair-price .price__card-title {
  background: var(--primary-color);
  color: var(--accent-color);
  text-align: center;
  padding: 10px 15px;
  font-size: var(--font-size-30);
  font-weight: var(--font-weight-bold);
  margin-bottom: 25px;
}
#repair-price .price__card-content {
  width: 700px;
  min-height: 250px;
}
#repair-price .price__card-img {
  width: 340px;
  height: 250px;
  position: absolute;
  inset: 105px 0 auto auto;
}
#repair-price .price__card-list .price__list-item {
  padding: 5px 0;
  font-size: var(--font-size-20);
  border-bottom: 1px solid var(--form-border-color);
}
#repair-price .price__card-list .price__list-item:last-child {
  border-bottom: none;
}
#repair-price .price__card-list .price__list-item-name {
  width: 340px;
}
#repair-price .price__card-list .price__list-item-value {
  width: 155px;
  text-align: right;
}

/*==========================================
sell-buy
===========================================*/
/*
# sell-section
------------------------*/
#sell-section {
  background: url(../../img/sell-buy/sell_bg.png) top center/100% no-repeat, var(--color-gray-dark);
}
#sell-section .sell__title .title-ja {
  color: var(--color-navy);
}
#sell-section .sell__text {
  text-align: center;
}
#sell-section .sell__archive {
  margin-top: 110px;
}
#sell-section .sell__archive .sell__list {
  row-gap: 40px;
}
#sell-section .sell__archive .sell__card {
  width: 510px;
}
#sell-section .sell__archive .sell__card-link {
  padding: 20px;
  background: var(--color-white);
}
#sell-section .sell__archive .sell__card-link:hover {
  transform: translateY(-10px);
}
#sell-section .sell__archive .sell__card-img {
  width: 140px;
  height: 140px;
}
#sell-section .sell__archive .sell__card-content {
  width: 300px;
}
#sell-section .sell__archive .sell__card-text {
  line-height: 1.5;
}
#sell-section .sell__archive .sell__card:has(.sell__card-price) .sell__card-text {
  border-bottom: 1px solid var(--color-gray-dark);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
#sell-section .sell__archive .sell__card-price {
  font-size: var(--font-size-16);
}
#sell-section .sell__archive .sell__card-price span {
  color: var(--color-red);
}
#sell-section .sell__archive .sell__card-price span small {
  font-size: var(--font-size-10);
}

/*
# buy-section
------------------------*/
#buy-section {
  background: linear-gradient(to top, rgb(63, 139, 197) 0%, rgba(var(--primary-color-rgb), 1) 100%);
}
#buy-section .buy__wrap {
  padding: 80px;
  background: url(../../img/sell-buy/buy_bg.png) right top no-repeat, var(--color-white);
}
#buy-section .buy__wrap .buy__title {
  text-align: center;
  font-size: var(--font-size-45);
  font-weight: var(--font-weight-bold);
}
#buy-section .buy__wrap .buy__title span {
  background: var(--accent-color);
  padding: 5px 15px;
  display: inline-block;
}
#buy-section .buy__wrap .buy__title span em {
  color: var(--primary-color);
}
#buy-section .buy__wrap .buy__text {
  text-align: center;
  margin-bottom: 30px;
}
#buy-section .buy__wrap .buy__criteria {
  background: var(--color-gray-dark);
  padding: 30px 50px;
  margin-top: 55px;
}
#buy-section .buy__wrap .buy__criteria-title {
  color: var(--primary-color);
  font-size: var(--font-size-30);
  font-weight: var(--font-weight-bold);
  margin-bottom: 10px;
}
#buy-section .buy__wrap .buy__criteria-item {
  margin-bottom: 10px;
  gap: 10px;
}
#buy-section .buy__wrap .buy__criteria-item:last-child {
  margin-bottom: 0;
}
#buy-section .buy__wrap .buy__criteria-item-rank {
  width: 30px;
  height: 30px;
  color: var(--accent-color);
  font-weight: var(--font-weight-bold);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
#buy-section .buy__wrap .buy__criteria-item:first-child .buy__criteria-item-rank {
  background: #003b68;
}
#buy-section .buy__wrap .buy__criteria-item:nth-child(2) .buy__criteria-item-rank {
  background: #005393;
}
#buy-section .buy__wrap .buy__criteria-item:nth-child(3) .buy__criteria-item-rank {
  background: #0065b3;
}
#buy-section .buy__wrap .buy__criteria-item:nth-child(4) .buy__criteria-item-rank {
  background: #007fe0;
}
#buy-section .buy__wrap .buy__criteria-item:nth-child(5) .buy__criteria-item-rank {
  background: #009ef0;
}
#buy-section .buy__wrap .buy__criteria-item-text {
  width: 770px;
}

/*
# sell-single
------------------------*/
#sell-single .sell__single-img {
  width: 550px;
  height: 400px;
}
#sell-single .sell__single-content {
  width: 500px;
}
#sell-single .sell__single-content .sell__single-price {
  font-size: var(--font-size-20);
}
#sell-single .sell__single-content .sell__single-price span {
  color: var(--color-red);
  font-size: var(--font-size-27);
}
#sell-single .sell__single-content .sell__single-price span small {
  font-size: var(--font-size-18);
}
#sell-single .sell__single-content .sell__single-payment {
  font-size: var(--font-size-20);
}
#sell-single .sell__single-content .sell__single-body {
  margin-top: 45px;
}

/*==========================================
faq
===========================================*/
#faq-section {
  background: var(--color-gray-dark);
}
#faq-section .faq__item {
  margin-bottom: 45px;
}
#faq-section .faq__item:last-child {
  margin-bottom: 0;
}

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

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

/*==========================================
  contact
  ===========================================*/
#contact .contact__form {
  width: 980px;
  margin: 0 auto 55px;
}
#contact .contact__form-item .contact__form-label {
  margin-bottom: 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 .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フレーム時)
  ===========================================*/