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

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

/*
# ドロワーメニュー
------------------------------------ */
.sp-menu-btn-wrp {
  top: 1vw;
  right: 3%;
  bottom: auto;
  left: auto;
  background: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sp-menu-btn-wrp .sp-menu-btn {
  width: 14.5vw;
  height: 14.5vw;
}
.sp-menu-btn-wrp .sp-menu-btn span {
  width: 70%;
  height: 1px;
  background: var(--primary-color);
}
.sp-menu-btn-wrp .sp-menu-btn .top {
  top: 4.5vw;
}
.sp-menu-btn-wrp .sp-menu-btn .middle {
  top: 0;
  bottom: 0;
}
.sp-menu-btn-wrp .sp-menu-btn .bottom {
  top: 9.5vw;
}
.sp-menu-btn-wrp .sp-menu-btn-txt {
  color: var(--color-white);
  top: -2vw;
  font-size: var(--font-size-10);
}

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

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

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

/*
# c-contact__list
------------------------*/
.c-contact__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5vw 6vw;
}
.c-contact__list .mail__button {
  width: 55vw;
  height: 15vw;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: var(--font-size-17);
  font-weight: var(--font-weight-bold);
  border-radius: 1vw;
  background: url(../../img/common/mail_ic.png) left 5vw center/4vw 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: 13% 5% 0;
}
.c-contact__section .contact__inbox {
  background: url(../../img/common/contact_bg.jpg) center/cover no-repeat;
  padding: 13% 6%;
}
.c-contact__section .contact__title {
  text-align: center;
}
.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: 15%;
  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: 17vw;
  line-height: 0.3;
}
.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: 5%;
  width: 3vw;
  height: 3vw;
  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-up {
  background: var(--accent-color);
  color: var(--primary-color);
  padding: 1vw;
}
.c-contact__section .contact__button-text {
  line-height: 1.3;
  font-size: var(--font-size-16);
}
.c-contact__section .contact__button-list {
  gap: 5vw 4.5454%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.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: 28vw;
}
.c-contact__section .contact__button-list .contact__button-item:first-child .contact__button-up {
  font-size: var(--font-size-19);
  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-20);
}
.c-contact__section .contact__button-list .contact__button-item.contact__button--line .contact__button::before {
  width: 8vw;
  height: 8vw;
  background: url(../../img/common/sns/LINE_logo.svg) center/100% no-repeat;
  left: 5%;
}
.c-contact__section .contact__button-list .contact__button-item.contact__button--instagram .contact__button::before {
  width: 5vw;
  height: 5vw;
  background: url(../../img/common/sns/Instagram_Glyph_Gradient.svg) center/100% no-repeat;
  left: 5%;
}
.c-contact__section .contact__button-list .contact__button-item.contact__button--mail .contact__button::before {
  width: 4.5vw;
  height: 3vw;
  background: url(../../img/common/contact-mail_ic.png) center/100% no-repeat;
  left: 5%;
}
.c-contact__section .contact__button-list .contact__button-item.contact__button--mail .contact__button::after {
  right: 5%;
}

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

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

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

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

/*
# .com-button
------------------------*/
.com-button {
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-bold);
  border-bottom: 1px solid var(--form-border-color);
  padding: 2vw 11vw 2vw 1vw;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
}
.com-button::after {
  position: absolute;
  content: "";
  width: 8vw;
  height: 8vw;
  background: url(../../img/common/com-button_arr.svg) center/100% no-repeat;
  inset: 1vw 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: 12%;
}
.section-title.align-left {
  text-align: left;
}
.section-title span {
  display: block;
  letter-spacing: 0;
}
.section-title .title-en {
  font-size: var(--font-size-19);
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
}
.section-title .title-ja {
  font-size: var(--font-size-25);
  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-20);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0;
  margin-bottom: 7%;
  padding-bottom: 3%;
}

.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: 2% 4%;
  margin-bottom: 5%;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-21);
}

/*==========================================
header
===========================================*/
#header {
  padding: 3% 2.6041%;
}
#header .header__logo {
  width: 40%;
  line-height: 1;
}
#header .header__right {
  display: none;
}

/*==========================================
mv
===========================================*/
#top-mv {
  width: 93.75%;
  margin: 0 auto;
  height: 105vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../../img/top/mv/mv-l_img.png) left -28% bottom -22vw/70% no-repeat, url(../../img/top/mv/mv-r_img.png) right -29% top -17vw/65% no-repeat, url(../../img/top/mv/mv_bg.jpg) center/cover;
}
#top-mv .mv__catch {
  width: 85%;
  margin: 0 auto;
}

/*==========================================
footer
===========================================*/
#footer {
  padding: 18% 0 10%;
  text-align: center;
}
#footer .side__button {
  position: fixed;
  z-index: 1001;
  width: 22%;
  inset: auto 3% 4vw auto;
}
#footer .footer__logo {
  width: 65%;
  display: inline-block;
  margin-bottom: 12%;
}
#footer .footer__official-site {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 16vw;
  color: var(--color-white);
  font-size: var(--font-size-18);
  background: url(../../img/common/link_ic.png) right 6% center/3.5% no-repeat, var(--primary-color);
  margin: 0 auto 12%;
}
#footer .footer__official-site:hover {
  transform: scale(0.97);
}
#footer .footer__nav {
  margin: 0 auto 15%;
  font-size: var(--font-size-16);
  -moz-column-count: 2;
       column-count: 2;
}
#footer .footer__nav-item {
  position: relative;
  text-align: left;
  margin-bottom: 12%;
  box-sizing: border-box;
  display: inline-block;
  width: 100%;
}
#footer .footer__nav-link {
  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: 45vw;
  width: 93.75%;
  margin: 0 auto 8%;
  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-24);
  font-weight: var(--font-weight-black);
  color: var(--color-white);
  padding: 1vw 9vw;
  position: relative;
}
.lower-sv .sv__title::before, .lower-sv .sv__title::after {
  position: absolute;
  content: "";
  width: 2vw;
  height: 2vw;
  border-radius: 50%;
  background: var(--accent-color);
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.lower-sv .sv__title::before {
  left: 3vw;
}
.lower-sv .sv__title::after {
  right: 3vw;
}

#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: 84%;
  margin: 15% auto;
  display: block;
}
.b-plus__banner:hover {
  transform: scale(0.98);
}

/*
# top-trouble
------------------------*/
.com-trouble__wrap {
  position: relative;
  padding: 15% 6%;
  margin-bottom: 25%;
  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);
}
.com-trouble__wrap::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 19vw;
  background: url(../../img/top/trouble_arr.png) center/100% no-repeat;
  inset: auto 0 -13vw;
  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: 3% 0 3% 11%;
  background: url(../../img/top/trouble-item_ic.png) left top 4vw/5vw no-repeat;
}

.com-trouble__end-text {
  text-align: center;
  font-size: var(--font-size-26);
  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: 83%;
  height: 3vw;
  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: 5%;
  margin-bottom: 12%;
}
#top-trouble .top-trouble__title .title-en {
  font-size: var(--font-size-50);
  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: var(--font-size-26);
  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: 1.45vw;
  height: 1.45vw;
  background: var(--primary-color);
  inset: -1vw 0 auto;
  transform: rotate(45deg);
  margin: 0 auto;
}
#top-trouble .top-trouble__inner .top-trouble__list {
  position: relative;
  margin-bottom: 25%;
}
#top-trouble .top-trouble__inner .top-trouble__list::before {
  position: absolute;
  content: "";
  margin: 0 auto;
  inset: auto 0 -14vw;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9vw 9vw 0px 9vw;
  border-color: var(--body-font-color) transparent transparent transparent;
}
#top-trouble .top-trouble__inner .top-trouble__list .trouble__item {
  font-size: var(--font-size-20);
}
#top-trouble .top-trouble__inner .top-trouble__text {
  font-size: var(--font-size-26);
  color: var(--accent-color);
  font-weight: var(--font-weight-bold);
  text-align: center;
  line-height: 2.2;
}
#top-trouble .top-trouble__inner .top-trouble__text span {
  display: inline-block;
  min-width: 51vw;
  padding: 0 2vw;
  background: var(--primary-color);
  position: relative;
  margin-bottom: 2%;
}
#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 13vw 4vw;
  border-color: transparent transparent var(--primary-color) transparent;
  left: -3.8vw;
}
#top-trouble .top-trouble__inner .top-trouble__text span::after {
  border-width: 13vw 4vw 0px 0px;
  border-color: var(--primary-color) transparent transparent transparent;
  right: -3.8vw;
}

/*
# top-about
------------------------*/
#top-about {
  position: relative;
  z-index: 1;
  background: url(../../img/top/about-btm_bg.png) bottom center/100% no-repeat;
}
#top-about::before, #top-about::after {
  position: absolute;
  content: "";
  z-index: -1;
}
#top-about::before {
  width: 49.53125%;
  height: 60.208vw;
  background: url(../../img/top/about-l_img.png) center/100% no-repeat;
  inset: 28vw auto auto 0;
}
#top-about::after {
  width: 43.28125%;
  height: 48.437vw;
  background: url(../../img/top/about-r_img.png) center/100% no-repeat;
  inset: 33vw 0 auto auto;
}
#top-about .about__title {
  text-align: center;
  position: relative;
  z-index: 1;
  padding-top: 9%;
  margin-bottom: 12%;
}
#top-about .about__title .title-en {
  position: absolute;
  inset: 0 0 auto;
  z-index: -1;
}
#top-about .about__title .title-ja {
  font-size: var(--font-size-26);
  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: 12%;
}
#top-about .about__sub-title span {
  background: var(--accent-color);
  font-size: var(--font-size-23);
  font-weight: var(--font-weight-bold);
}
#top-about .about__text {
  margin-bottom: 12%;
}
#top-about .about__button {
  margin: 15% 0 0 auto;
}

/*
# top-service
------------------------*/
#top-service {
  position: relative;
  z-index: 1;
  padding: 50% 0 18%;
  background: url(../../img/top/service_bg.png) top center/100% no-repeat;
}
#top-service .service__title {
  text-align: center;
  margin-bottom: 13%;
}
#top-service .service__title span {
  display: block;
}
#top-service .service__title .title-en {
  font-size: var(--font-size-50);
  letter-spacing: var(--body-letter-spacing);
  font-weight: var(--font-weight-black);
}
#top-service .service__title .title-ja {
  font-size: var(--font-size-24);
  font-weight: var(--font-weight-bold);
}
#top-service .service__headline {
  position: relative;
  margin-bottom: 15%;
}
#top-service .service__headline-title {
  font-size: var(--font-size-25);
}
#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-18);
  padding: 2vw 3vw;
  line-height: 1.5;
  margin-bottom: 5%;
}
#top-service .service__headline-img {
  margin-bottom: 6%;
}
#top-service .service__headline .service__button {
  margin-left: auto;
}
#top-service .service__list {
  position: relative;
  padding: 12% 6% 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: 35vw;
  inset: 0 0 auto;
  margin: 0 auto;
  width: 100%;
  border-radius: 3vw;
  z-index: -1;
}
#top-service .service__list .service__card {
  margin-bottom: 15%;
}
#top-service .service__list .service__card:last-child {
  margin-bottom: 0;
}
#top-service .service__list .service__card-img {
  margin-bottom: 6%;
}
#top-service .service__list .service__card-title {
  text-align: center;
}
#top-service .service__list .service__card-button {
  margin: 10% 0 0 auto;
}

/*
# top-faq
------------------------*/
#top-faq {
  padding: 18% 0;
  background: var(--color-gray-dark);
}
#top-faq .faq__inbox {
  position: relative;
}
#top-faq .faq__button {
  margin: 15% 0 0 auto;
}

.com-faq__list .faq__item {
  background: var(--primary-color);
  padding: 7% 4%;
  margin-bottom: 12%;
}
.com-faq__list .faq__item:last-child {
  margin-bottom: 0;
}
.com-faq__list .faq__item-title {
  margin-bottom: 3%;
  color: var(--color-white);
  font-weight: var(--font-weight-bold);
  position: relative;
  padding-left: 7%;
}
.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: 6% 4%;
}

/*
# top-news
------------------------*/
#top-news {
  padding: 18% 0;
}
#top-news .news__inbox {
  position: relative;
}
#top-news .news__card-list {
  display: flex;
  overflow-y: scroll;
  background: var(--color-gray-dark);
  padding: 7%;
  gap: 9%;
}
#top-news .news__card-list .news__card {
  width: 80%;
  margin: 0 auto 12%;
}
#top-news .news__card-list .news__card:last-child {
  margin-bottom: 0;
}
#top-news .news__card-list .news__card-link {
  padding: 7% 5%;
  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 {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5vw;
  margin-bottom: 5%;
}
#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 2vw;
  font-weight: var(--font-weight-bold);
}
#top-news .news__card-list .news__card-thumb {
  width: 100%;
  height: 44vw;
  margin-bottom: 3%;
}
#top-news .news__card-list .news__card-date {
  color: var(--primary-color);
  font-weight: var(--font-weight-bold);
  margin-bottom: 3%;
}
#top-news .news__card-list .news__card-title {
  font-size: var(--font-size-17);
  line-height: 1.4;
  transition: all 0.3s;
}
#top-news .news__button {
  margin: 15% 0 0 auto;
}

/*==========================================
beginner
===========================================*/
/*
# beginner-concept
------------------------*/
#beginner-concept {
  background: url(../../img/beginner/concept_bg.jpg) center/cover no-repeat;
}
#beginner-concept .concept__inbox {
  position: relative;
  z-index: 1;
}
#beginner-concept .concept__inbox::before {
  position: absolute;
  content: "";
  width: 48%;
  height: 35vw;
  background: url(../../img/beginner/concept_ill.png) center/100% no-repeat;
  inset: -29vw 0 auto auto;
  z-index: -1;
}
#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-21);
  color: var(--body-font-color);
  padding: 0 3vw;
}
#beginner-concept .concept__img {
  margin-bottom: 8%;
}

/*
# beginner-service
------------------------*/
.com-service__list .service__card {
  border: 1px solid var(--primary-color);
  background: var(--color-white);
  padding: 12% 6%;
  position: relative;
  margin-bottom: 12%;
}
.com-service__list .service__card:last-child {
  margin-bottom: 0;
}
.com-service__list .service__card-img {
  margin-bottom: 8%;
}
.com-service__list .service__card-button {
  margin: 10% 0 0 auto;
}

#beginner-service .service__other {
  background: var(--color-gray-dark);
  margin-top: 12%;
  padding: 12% 6%;
}
#beginner-service .service__other-title {
  text-align: center;
}
#beginner-service .service__other .service__other-card {
  position: relative;
  margin-bottom: 15%;
}
#beginner-service .service__other .service__other-card:last-child {
  margin-bottom: 0;
}
#beginner-service .service__other .other-card__img {
  margin-bottom: 8%;
}

/*
# beginner-flow
------------------------*/
#beginner-flow .flow__list {
  /*==========================================
  Flexbox
  ===========================================*/
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
  flex-wrap: wrap;
  row-gap: 12vw;
}
#beginner-flow .flow__list .flow__item {
  width: 44%;
  height: 34vw;
  padding: 10% 2% 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 -6vw 0 auto;
  margin: auto 0;
  width: 3vw;
  height: 3vw;
  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(even)::after {
  border: none;
}
#beginner-flow .flow__list .flow__item-icon {
  width: 35%;
  margin: 0 auto;
  position: absolute;
  inset: -8vw 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-18);
  display: block;
  margin-bottom: 2%;
}
#beginner-flow .flow__list .flow__item-text .flow__text-content {
  font-size: var(--font-size-17);
  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-15);
}
#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: 15%;
}
#beginner-info .info__table tr {
  display: block;
  margin-bottom: 3%;
}
#beginner-info .info__table tr:last-child {
  margin-bottom: 0;
}
#beginner-info .info__table tr th,
#beginner-info .info__table tr td {
  display: block;
  padding: 3% 4%;
}
#beginner-info .info__table tr th {
  background: var(--primary-color);
  color: var(--color-white);
  font-weight: var(--font-weight-bold);
}

/*==========================================
repair
===========================================*/
/*
# repair-service
------------------------*/
#repair-service .service__area {
  background: var(--color-gray-dark);
  margin-top: 13%;
  padding: 12% 6%;
  position: relative;
}
#repair-service .service__area-map {
  width: 35%;
  position: absolute;
  inset: -6vw -4% auto auto;
}

/*
# repair-feature
------------------------*/
#repair-feature {
  background: url(../../img/repair/feature_bg.png) top center/100% no-repeat;
}
#repair-feature .feature__item {
  margin-bottom: 13%;
}
#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-21);
  font-weight: var(--font-weight-bold);
  padding: 2% 3% 2% 15%;
  margin-bottom: 4%;
}
#repair-feature .feature__item-title::before {
  position: absolute;
  inset: 0 auto 0 4%;
  margin: auto 0;
  content: counter(number);
  width: 6vw;
  height: 6vw;
  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: 12%;
}
#repair-price .price__card {
  margin-bottom: 15%;
  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: 2% 4%;
  font-size: var(--font-size-22);
  font-weight: var(--font-weight-bold);
  margin-bottom: 25px;
}
#repair-price .price__card-img {
  width: 100%;
  height: 61vw;
  margin-bottom: 8%;
}
#repair-price .price__card-list .price__list-item {
  padding: 3% 0;
  /*==========================================
  Flexbox
  ===========================================*/
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
  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: 55%;
}
#repair-price .price__card-list .price__list-item-value {
  width: 40%;
  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__archive {
  margin-top: 15%;
}
#sell-section .sell__archive .sell__card-link {
  /*==========================================
  Flexbox
  ===========================================*/
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 8% 6%;
  background: var(--color-white);
}
#sell-section .sell__archive .sell__card-link:hover {
  transform: translateY(-10px);
}
#sell-section .sell__archive .sell__card-img {
  width: 30vw;
  height: 30vw;
}
#sell-section .sell__archive .sell__card-content {
  width: 55%;
}
#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: 5%;
  margin-bottom: 5%;
}
#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-11);
}

/*
# sell-single
------------------------*/
#sell-single .sell__single-img {
  width: 100%;
  height: 55vw;
  margin-bottom: 8%;
}
#sell-single .sell__single-content .sell__single-price span {
  color: var(--color-red);
  font-size: var(--font-size-25);
}
#sell-single .sell__single-content .sell__single-price span small {
  font-size: var(--font-size-15);
}
#sell-single .sell__single-content .sell__single-body {
  margin-top: 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: 12% 6%;
  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-22);
  font-weight: var(--font-weight-bold);
}
#buy-section .buy__wrap .buy__title span {
  background: var(--accent-color);
  padding: 1vw 2vw;
  display: inline-block;
}
#buy-section .buy__wrap .buy__title span em {
  color: var(--primary-color);
}
#buy-section .buy__wrap .buy__text {
  margin-bottom: 8%;
}
#buy-section .buy__wrap .buy__criteria {
  background: var(--color-gray-dark);
  padding: 12% 6%;
  margin-top: 12%;
}
#buy-section .buy__wrap .buy__criteria-title {
  color: var(--primary-color);
  font-size: var(--font-size-20);
  font-weight: var(--font-weight-bold);
  margin-bottom: 10px;
}
#buy-section .buy__wrap .buy__criteria-item {
  /*==========================================
  Flexbox
  ===========================================*/
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
  margin-bottom: 3%;
  gap: 5%;
}
#buy-section .buy__wrap .buy__criteria-item:last-child {
  margin-bottom: 0;
}
#buy-section .buy__wrap .buy__criteria-item-rank {
  width: 8vw;
  height: 8vw;
  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: 81%;
}

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

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

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

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

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

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

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