@charset "UTF-8";

html {
  scroll-behavior: smooth;
}

:root {
  --main_color: #0079c0;
  --hover_color: #005e95;
  --this-site-bold: 500;
}
/* フォント
================================================*/
body {
  font-size: 16px;
  line-height: 1.5em;
  overflow: visible !important;
  color: #000;
  font-family: "Roboto", 'Arial','Yu Gothic',"游ゴシック体",YuGothic,”游ゴシック Medium”, “Yu Gothic Medium”,'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',メイリオ,sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: #fff;
  font-feature-settings: 'palt' 1;
  word-wrap: break-word;
}

p {
  margin: 0;
  padding: 0;
  line-height: 2em;
  font-weight: 600;
  font-feature-settings: 'palt' 1;
}
a {text-decoration: none;color: #000;}
img {width: 100%;}

article,section {
  overflow: hidden;
  background: #fff;
}
h1 {
  width: 250px;
}
h2 {
  position: relative;
  margin: 80px 0;
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  color: var(--main_color);
}
h2 span {
  display: block;
  margin-top: 30px;
  font-size: 18px;
  font-weight: 600;
}
h2:after {
  position: absolute;
  top: 40px;
  left: calc(50% - 100px);
  content: "";
  width: 200px;
  height: 3px;
  background-color: var(--main_color);
}
h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--main_color);
}
.wrapper_header {
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
}
.wrapper {
  width: 100%;
  max-width: 1400px;
  overflow: hidden;
  margin: 0 auto;
  padding: 0 0 50px;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  /* フェードアウトを1秒に */
  transition: opacity 1s ease, visibility 1s ease;
}

#loader video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ロード完了時にフェードアウト */
body.loaded #loader {
  opacity: 0;
  visibility: hidden;
}

/* ─── ページ本体のスクロール制御 ──────────── */
body {
  overflow: hidden;
}
body.loaded {
  overflow: auto;
}
header {
  width: 100%;
  height: 85px;
  border-bottom: 1px solid #000;
  background: #fff;
}
.logo_header a {
  width: 250px;
  margin: 5px 20px 0 20px;
  float: left;
}
.logo_header a img {
  width: 100%;
  margin: 10px 0;
}
.contact_header {
  width: 110px;
  height: 85px;
  display: block;
  float: right;
  background: var(--main_color);
  border-bottom: 1px solid #000;
  transition: all 0.3s ease-out;
}
.contact_header:hover {
  background: var(--hover_color);
  transition: all 0.3s ease-out;
}
.contact_header a {
  position: relative;
  display: block;
  padding-top: 50px;
  color: #fff;
  text-align: center;
  font-size: 110%;
  font-weight: 600;
}
.contact_header a::before {
  position: absolute;
  top: 20px;
  left: calc(50% - 17px);
  content: "";
  width: 30px;
  height: 20px;
  background-image: url(../images/icon_mail.svg);
}
.tel_header a {
  position: relative;
  width: 300px;
  height: 85px;
  padding: 25px 0 0 25px;
  float: right;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.1em;
  background: #f2f2ff;
  border-bottom: 1px solid #000;
}
.tel_header a::before {
  position: absolute;
  top: 25px;
  left: 20px;
  content: "";
  width: 22px;
  height: 22px;
  background-image: url(../images/icon_tel.svg);
}
.tel_header span {
  display: block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.tel_header_sp {
  display: none;
}
.hamburger {
  display: none;
}
nav {
  width: auto;
  height: 85px;
  float: right;
  display: flex;
  align-items: center;
}
nav ul {
  display: flex;
  align-items: center;
}
nav li a {
  margin-right: 20px;
  font-size: 18px;
  font-weight: 600;
}
nav li a img {
  width: 33px;
  height: 33px;
  margin-left: 15px;
}

.fv {
  position: relative;
  width: 100%;
  height: 800px;
  background-image: url(../images/main.jpg);
  background-size: cover;
  background-position: center;
}

.hero01 {
  position: absolute;
  top: 150px;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--main_color);
  text-align: center;
}
.mask-bg,
.mask-bg02 {
  color: transparent;
  display: inline-block;
  padding: 10px 30px;
  font-size: 42px;
  font-weight: bold;
  white-space: nowrap;
  padding: 20px 50px;
  overflow: hidden;
  position: relative;
  transition: color 0ms 6.8s;
  color: var(--main_color);
}
.mask-bg02 {
  padding: 10px 20px;
  font-size: 28px;
  color: #000;
  transition: color 0ms 7s;
}
.mask-bg::after,
.mask-bg02::after {
  background: var(--main_color);
  bottom: 0;
  content: '';
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(0, 100%);
}
.mask-bg.is-animated {
  color: var(--main_color);
  transition: color 0s 7s;
}
.mask-bg02.is-animated {
  color: #000;
  transition: color 0s 7.8s;
}
.mask-bg.is-animated::after,
.mask-bg02.is-animated::after  {
  animation: mask-bg 1.2s cubic-bezier(0.8, 0, 0.170, 1) forwards;
  animation-delay: 5.8s;
}
.mask-bg02.is-animated::after {
  animation-delay: 6.5s;
}
@keyframes mask-bg {
  0% {
    transform: translate(0, 101%)
  }
  40%, 60% {
    transform: translate(0, 0%)
  }
  100% {
    transform: translate(0, -101%)
  }
}
.hero02 {
  width: 100%;
  position: absolute;
  top: 300px;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: 0.1em;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.8em;
  text-align: center;
}

/* ——— Scroll 本体 ——— */
.scroll {
position: absolute;
left: 50%;
bottom: 130px;
transform: translateX(-50%);
text-align: center;
color: #000;
font-size: 16px;
line-height: 1;
pointer-events: none;
}
.scroll-dots {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px; /* ドット間の隙間 */
}
.scroll-dots span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: currentColor;
  opacity: 0;
  animation: scrollDot 1.5s infinite;
}
.scroll-dots span:nth-child(1) { animation-delay: 0s;   }
.scroll-dots span:nth-child(2) { animation-delay: 0.3s; }
.scroll-dots span:nth-child(3) { animation-delay: 0.6s; }
/* ——— ドットのアニメーション ——— */
@keyframes scrollDot {
  0%   { opacity: 0;}
  40%  { opacity: 1;}
  60%  { opacity: 1;}
  100% { opacity: 0;}
}

.sell-slide-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}
.sell-slide {
  width: 100%;
  overflow: hidden;
}
.sell-slide ul {
  width: max-content;
  margin: 0 0 50px;
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}
.sell-slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 121, 192, 0.8);
  color: #fff;
  border: none;
  width: 25px;
  height: 100px;
  font-size: 24px;
  cursor: pointer;
}
.sell-slide-arrow.prev {
  width: 25px;
  left: 0;
}
.sell-slide-arrow.next {
  width: 25px;
  right: 0;
}
.sell-slide-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}
.sell-slide-arrow.prev img,
.sell-slide-arrow.next img {
  width: 13px;
  margin: 0 6px;
}
.sell-slide li {
  width: 350px;
  padding: 20px;
  background: #e6ebf0;
}
.sell-slide li:nth-child(2n) {
  background: #f0f5fa;
}

.sell-slide li .thumbnail {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.sell-slide li .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sell-slide li h3 {
  margin: 10px 0;
  color: #000;
  line-height: 1.5em;
}
.sell-slide li dl {
  width: 100%;
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  line-height: 1.3em;
}
.sell-slide li dt {
  width: 70px;
  margin-bottom: 5px;
  padding: 3px 5px;
  font-size: 13px;
  font-weight: 600;
  text-align-last: justify;
  background: #fff;
}
.sell-slide li dd {
  width: calc(100% - 80px);
  margin: 3px 0 0 0.5em;
  font-size: 14px;
  font-weight: 600;
}
.sell-slide li .peice_sell {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.sell-slide li .price_sell dt {
  width: 5.5em;
  float: left;
  margin-right: 20px;
  padding: 2px 0.5em;
  font-size: 18px;
  color: #fff;
  background: var(--main_color);
}
.sell-slide li .price_sell dd {
  width: 100%;
  font-size: 36px;
  letter-spacing: 0;
  color: #e15522;
}
.sell-slide li .price_sell dd span {
  margin-left: 5px;
  font-size: 14px;
  font-weight: 600;
}

.service_banner {
  width: 100%;
}
.service_banner ul {
  display: flex;
  justify-content: space-between;
}

.type_list ul {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5 , 1fr);
  gap: 50px;
  margin: 0 auto 80px;
}
.type_list li a {
  display: block;
  padding: 1.2em 1em;
  text-align: center;
  align-items: center;
  color: var(--main_color);
  font-weight: 600;
  border: 1px solid var(--main_color);
  border-radius: 5px;
  transition: all 0.3s ease-out;
}
.type_list li a:hover {
  background: #fff;
  transition: all 0.3s ease-out;
}

.ttl_reason {
  width: 580px;
  margin: 150px auto 80px;
}
.ttl_reason:after {
  display: none;
}
.reason ul {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3 , 1fr);
  gap: 50px;
  margin-bottom: 100px;
}
.reason li {
  padding: 0 0 50px;
  font-size: 15px;
  background: #e6e6e6;
}
.reason li .number {
  position: relative;
  display: inline-block;
  padding: 0 10px 0 3em;
  font-size: 28px;
  color: #fff;
  background: var(--main_color);
}
.reason li .number:before {
  position: absolute;
  top: 3px;
  left: 10px;
  content: "Reason";
  font-size: 18px;
  color: #fff;
}
.reason li h3 {
  margin: 35px 0 30px;
  padding: 0 50px;
  font-size: 24px;
  font-weight: 600;
  color: var(--main_color);
}
.reason li p {
  padding: 0 50px;
  text-align: justify;

}

.rental_copy {
  width: 90%;
  margin: 0 auto 40px;
  text-align: center;
}
.rental_copy h3 {
  margin-bottom: 30px;
  font-size: 28px;
  color: #e79039;
}
.rental_copy p {
  font-size: 18px;
}

.rental-slide-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}
.rental-slide {
  width: 100%;
  overflow: hidden;
}
.rental-slide ul {
  width: max-content;
  margin: 0 0 50px;
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}
.rental-slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: #e79039;
  color: #fff;
  border: none;
  width: 25px;
  height: 100px;
  font-size: 24px;
  cursor: pointer;
}
.rental-slide-arrow.prev {
  width: 25px;
  left: 0;
}
.rental-slide-arrow.next {
  width: 25px;
  right: 0;
}
.rental-slide-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}
.rental-slide-arrow.prev img,
.rental-slide-arrow.next img {
  width: 13px;
  margin: 0 6px;
}
.rental-slide li {
  width: 350px;
  padding: 20px;
  background: #fffaf4;
}
.rental-slide li:nth-child(2n) {
  background: #fff8e8;
}
.rental-slide li .thumbnail {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.rental-slide li .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rental-slide li h3 {
  margin: 10px 0;
  color: #000;
  line-height: 1.5em;
}
.rental-slide li dl {
  width: 100%;
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  line-height: 1.3em;
}
.rental-slide li dt {
  width: 70px;
  margin-bottom: 5px;
  padding: 3px 5px;
  font-size: 13px;
  font-weight: 600;
  text-align-last: justify;
  background: #fff;
}
.rental-slide li dd {
  width: calc(100% - 80px);
  margin: 3px 0 0 0.5em;
  font-size: 14px;
  font-weight: 600;
}
.rental-slide li .price_rental {
  width: 100%;
  margin: 10px 0;
}
.rental-slide li .price_rental h4 {
  font-size: 14px;
  text-align: center;
  font-weight: 600;
  color: #e79039;
}
.rental-slide li .price_rental dl {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #000;
}
.rental-slide li .price_rental dt {
  width: 5em;
  margin: 0;
  padding: 5px 0;
  text-align: center;
  text-align-last: auto;
  background: none;
  border-right: 1px solid #000;
}
.rental-slide li .price_rental dd {
  width: calc(50% - 5em);
  margin: 0;
  padding: 5px 0;
  text-align: center;
}
.rental-slide li .price_rental dd:nth-of-type(2n+1) {
  border-right: 1px solid #000;
}
.rental-slide li .price_rental dt:nth-of-type(1),
.rental-slide li .price_rental dt:nth-of-type(2),
.rental-slide li .price_rental dd:nth-of-type(1),
.rental-slide li .price_rental dd:nth-of-type(2) {
  border-bottom: 1px solid #000;
}
.service_banner li {
  width: 30%;
  max-width: 400px;
  margin: 0 10px 50px;
}

.needs {
  width: 100%;
  margin: 90px auto;
}
.needs::after {
  display: none;
}
.needs img {
  width: 750px;
  margin: 0 auto;
}
.needs span {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0em;
  color: #999;
}
.episode {
  width: 100%;
  margin: 0;
  padding: 50px 0;
  background: #f0f0f0;
}
.episode ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 50px;
}
.episode li {
  width: 25%;
  margin: 0 4% 100px;
  text-align: justify;
}
.episode li h3 {
  margin-bottom: 25px;
  font-size: 24px;
  text-align: center;
}
.episode li h3 span {
  display: block;
  margin: 0 0 10px;
  padding: 0 5px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: var(--main_color);
}
.textbox_info {
  width: 45%;
  float: left;
  margin: 0 30px 100px;
}
.textbox_info dl {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.textbox_info dt {
  width: 7em;
  float: left; 
  padding: 1.2em 1em;
  border-bottom: 1px solid #000;
}
.textbox_info dd {
  width: calc(100% - 7em);
  padding: 1.2em 1em 1.2em 2em;
  border-bottom: 1px solid #000;
}

.box_gmap {
  width: 40%;
  float: left;
  margin: 0 0 0 5%;
}
.box_gmap iframe {
  width: 100%;
}

.box_contact {
  width: 100%;
  display: flex;
  justify-content: center;
}
.box_contact li {
  width: 40%;
  max-width: 500px;
  margin: 0 40px 30px;
  padding: 25px;
  text-align: center;
  background: var(--main_color);
}
.box_contact li h3 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #fff;
}
.box_contact li .box_tel,
.box_contact li .box_mail {
  height: 130px;
  padding: 25px;
  background: #fff;
}
.box_contact li .box_tel p a {
  position: relative;
  margin-left: 45px;
  font-size: 44px;
  line-height: 1em;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--main_color);
}
.box_contact li .box_tel p a::before{
  position: absolute;
  top: 0.2em;
  left: -50px;
  width: 50px;
  height: 30px;
  content: "";
  background: url(../images/icon_free.svg);
  background-repeat: no-repeat;
}
.box_contact li .box_tel p span {
  display: block;
  margin-left: -35px;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--main_color);
}
.box_contact li .box_mail p {
  padding: 0 0 5px;
  line-height: 1em;
  color: var(--main_color);
  border-bottom: 1px solid var(--main_color);
}
.box_contact li .box_mail .btn_mail a {
  display: block;
  width: 90%;
  margin: 10px auto;
  padding: 0.7em 5px;
  color: #fff;
  font-weight: 600;
  background: var(--main_color);
  transition: all 0.3s ease-out;
}
.box_contact li .box_mail .btn_mail a:hover {
  background: var(--hover_color);
  transition: all 0.3s ease-out;
}
.box_sns {
  width: 50%;
  margin: 30px auto;
}
.box_sns h3 {
  font-size: 24px;
  text-align: center;
  line-height: 1.5em;
  color: var(--main_color);
}
.box_sns ul {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}
.box_sns li {
  width: 50px;
  margin: 0 20px;
}

footer {
  width: 100%;
  background: #f0f0f0;
  border-top: 3px solid var(--main_color);
  background: #e3ebf3;
}
footer .footer_info {
  width: 40%;
  float: left;
  padding: 80px 5% 100px;
}
footer .footer_info .logo_footer {
  width: 80%;
  max-width: 250px;
  margin: 0 0 40px;
}
footer .footer_info p {
  margin: 0 0 5px 10px;
}
footer .footer_info dl {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-left: 10px;
}
footer .footer_info dt {
  width: 4em;
  margin-bottom: 0.3em;
  font-weight: 600;
}
footer .footer_info dt::after {
  content: "：";
  margin-left: 10px;
}
footer .footer_info dd {
  width: calc(100% - 5em);
  margin-bottom: 0.3em;
  font-weight: 600;
}
footer .footer_info dd a {
  font-weight: 600;
}
footer .page_list {
  width: auto;
  margin: 170px 50px 0 30px;
  float: right;
}
footer .page_list li {
  font-size: 14px;
  line-height: 2.3em;
  font-weight: 600;
}
footer .page_list li:before {
  content: "> ";
  margin-left: 10px;
}
footer .page_list .sns {
  margin: 20px 20px 20px 0;
  float: left;
}
footer .page_list .sns:before {
  content: "";
}
footer .page_list .sns img {
  width: 30px;
}
footer .wrapper_copy {
  width: 100%;
  padding: 15px 0;
  background: var(--main_color);
}
footer .wrapper_copy .copy {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 80px;
  font-size: 14px;
  color: #fff;
}
.pagetop {
  position: fixed;
  right: 0;
  bottom: 150px;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease-out;
}
.pagetop.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.pagetop a {
  display: block;
  width: 40px;
  height: 100px;
  padding: 0 7px;
  background: var(--main_color);
  font-weight: 600;
  color: #fff;
  writing-mode: vertical-rl;
  text-align: center;
  transition: all 0.3s ease-out;
}
.pagetop a:hover {
  background: var(--hover_color);
}
.single_summary_sell {
  width: calc(100% - 80px);
  margin: 50px 40px;
  overflow: hidden;
}
.single_summary_sell h2 {
  margin: 40px 0;
  padding: 0 10px;
  font-size: 24px;
  text-align: left;
  color: #000;
}
.single_summary_sell h2:after {
  display: none;
}

.gallery {
  width: calc(55% - 40px);
  float: left;
  margin-right: 40px;
}
.main-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.main-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 30px 5px;
  background: rgb(0, 121, 192, 0.8);
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  z-index: 2;
}
.arrow.prev {
  left: 0;
}
.arrow.next {
  right: 0;
}
.thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 25px;
  flex-wrap: wrap;
}
.thumbnails img {
  width: 12.5%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  cursor: pointer;
  border: 1px solid transparent;
}
.thumbnails img.active {
  border: 2px solid var(--main_color);
}

.ttl_category {
  margin-bottom: 30px;
  font-size: 24px;
  text-align: center;
  letter-spacing: 0.1em;
}
.single_summary_sell .textbox_single_sell {
  width: 45%;
  float: left;
}
.textbox_single_sell .box_intro {
  width: 100%;
  height: 200px;
  margin-bottom: 30px;
  border: 1px solid #000;
}
.textbox_single_sell .box_intro p {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  background-color: var(--main_color);
}
.box_intro .box_price {
  width: 50%;
  float: left;
  margin: 25px 15px 20px 40px;
  border-right: 1px solid #000;
}
.box_intro .box_price p {
  margin-bottom: 20px;
  color: #000;
  text-align: left;
  background: none;
}
.box_intro .box_price .price {
  font-size: 48px;
  font-weight: 600;
  color: #e15522;
}
.box_intro .box_price .price span {
  margin-left: 5px;
  font-size: 21px;
  font-weight: 600;
}
/* レンタル用料金 */
.box_intro .box_price dl {
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  margin: 10px 0 10px 0; /* 親要素のmargin分 左へ */
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  border-left: 1px solid #000;
}
.box_intro .box_price dt {
  width: 40%;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
}
.box_intro .box_price dd {
  width: 60%;
  border-bottom: 1px solid #000;
}
.box_intro .box_single_contact {
  width: calc(50% - 55px);
  float: left;
  margin: 10px auto;
}
.box_intro .box_single_contact p {
  position: relative;
  display: block;
  margin-left: 20px;
  font-size: 24px;
  text-align: center;
  color: #000;
  background: none;
}
.box_intro .box_single_contact p:before {
  position: absolute;
  top: 0.6em;
  left: 0.3em;
  content: "";
  width: 18px;
  height: 18px;
  background: url(../images/icon_tel.svg);
  background-repeat: no-repeat;
}
.box_intro .box_single_contact .btn_single_mail a {
  position: relative;
  display: block;
  width: 80%;
  margin: 0 auto 10px;
  padding: 5px 0;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  background: var(--main_color);
  border-radius: 5px;
}
.box_intro .box_single_contact .btn_single_mail a::before {
  position: absolute;
  top: 0.5em;
  left: 1em;
  width: 20px;
  height: 16px;
  content: "";
  background: url(../images/icon_mail.svg);
  background-size: contain;
}
.box_intro .box_single_contact .btn_single_line a {
  position: relative;
  display: block;
  width: 80%;
  margin: 0 auto;
  padding: 5px 0;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  background: #2dc100;
  border-radius: 5px;
}
.box_intro .box_single_contact .btn_single_line a::before {
  position: absolute;
  top: 0.5em;
  left: 1em;
  width: 18px;
  height: 18px;
  content: "";
  background: url(../images/icon_line_single.svg);
  background-size: contain;
}
.textbox_single_sell h4 {
  padding-left: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #000;
}
.textbox_single_sell .single_basic {
  width: 100%;
  margin: 15px 0 30px;
}
.textbox_single_sell .single_basic dl {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #bbb;
}
.textbox_single_sell .single_basic dt {
  width: 6em;
  background: #e6f0f0;
  padding: 0.3em 0.5em;
  text-align-last: justify;
  font-weight: 600;
  border-bottom: 1px solid #bbb;
}
.textbox_single_sell .single_basic dd {
  width: calc(50% - 6em);
  padding: 0.5em 0.5em;
  font-weight: 600;
  border-bottom: 1px solid #bbb;
}
.textbox_single_sell .single_basic .col2 {
  width: calc(100% - 6em);
  padding: 0.5em 0.5em;
}
.textbox_single_sell .single_basic dt:last-of-type,
.textbox_single_sell .single_basic dd:last-of-type {
  border-bottom: none;
}
.textbox_single_sell h3 {
  padding: 0 10px 10px;
  font-size: 16px;
  color: var(--main_color);
  border-bottom: 1px solid var(--main_color);
}
.textbox_single_sell .comment {
  margin: 10px 0 30px;
  padding: 0 10px;
  font-size: 16px;
  line-height: 1.8em;
  text-align: justify;
}
.vehicle_info {
  width: calc(100% - 80px);
  margin: 50px 40px;
  overflow: hidden;
}
.vehicle_info h3 {
  padding: 0 10px 10px;
  font-size: 16px;
  color: var(--main_color);
  border-bottom: 1px solid var(--main_color);
}
.vehicle_info dl {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0;
  font-size: 14px;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
.vehicle_info dt {
  width: 15%;
  padding: 0.5em 1em;
  background: #e6f0f0;
  border-bottom: 1px solid #ccc;
}
.vehicle_info dd {
  width: 18.3%;
  padding: 0.5em 1em;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
.vehicle_info .vehicle_item {
  width: 100%;
  margin: 10px 0 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
}
.vehicle_info .vehicle_item li {
  width: 12em;
  margin: 10px;
  padding: 0.8em;
  font-size: 14px;
  text-align: center;
  color: #999;
  background: #eee;
  border-radius: 5px;
}
.vehicle_info .vehicle_item .active {
  color: #fff;
  font-weight: 600;
  background: var(--main_color);
}
.box_single_info {
  width: 80%;
  max-width: 900px;
  margin: 50px auto;
  padding: 40px 80px;
  background: #fff;
}
.box_single_info h3 {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}
.box_single_info p {
  padding: 10px 0;
  font-size: 21px;
  text-align: center;
}
.box_single_info .note {
  margin: 20px 0 0;
  font-size: 15px;
  text-align: center;
}

.transaction {
  width: 90%;
  max-width: 1000px;
  margin: 20px auto;
}
.transaction dl {
  display: flex;
  flex-wrap: wrap;
  font-weight: 600;
  line-height: 1.6em;
}
.transaction dt {
  width: 15em;
  text-align: center;
  padding: 1em 1em;
  border-bottom: 1px solid #000;
}
.transaction dd {
  width: calc(100% - 15em);
  padding: 1em 1.5em;
  border-bottom: 1px solid #000;
}
.privacy {
  width: 95%;
  max-width: 1000px;
  margin: 0 auto 100px;
}
.box_contact_wrapper {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.box_contact_tel {
  width: 40%;
  margin: 0 5%;
}
.box_contact_tel h2,
.box_contact_form h2 {
  padding: 0.3em;
  margin-bottom: 40px;
  font-size: 21px;
  color: #fff;
  background: var(--main_color);
}
.box_contact_tel h2::after,
.box_contact_form h2::after {
  background: none;
}
.box_contact_tel .tel a {
  position: relative;
  display: block;
  margin: 0 0 100px 40px;
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  line-height: 1em;
  letter-spacing: 0.08em;
}
.box_contact_tel .tel a::before{
  position: absolute;
  display: inline-block;
  top: 0.1em;
  left: 50%;
  transform: translateX(-4.8em);
  width: 30px;
  height: 30px;
  content: "";
  background: url(../images/icon_tel.svg);
  background-repeat: no-repeat;
}
.box_contact_tel .tel a span {
  display: block;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.box_contact_tel .box_contact_sns {
  width: 100%;
  margin: 30px auto;
}
.box_contact_tel .box_contact_sns h3 {
  font-size: 24px;
  text-align: center;
  line-height: 1.5em;
}
.box_contact_tel .box_contact_sns ul {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}
.box_contact_tel .box_contact_sns li {
  width: 50px;
  margin: 0 20px;
}

.box_contact_form {
  width: 40%;
  margin: 0 5%;
}
.form-wrapper {
  width: 100%;
  display: flex;
  margin: 50px auto;
}
.form-wrapper #contact-form {
  width: 100%;
}
.form-group.inquiry {
  margin-bottom: 40px;
}
.inquiry-list {
  list-style: none;
  margin: 0 0 2em 1em;
}
.inquiry-list li {
  margin-bottom: 1.2em;
}
.inquiry-list label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 1em;
}
/* チェックボックスの見た目をリセットしてカスタム化 */
.inquiry-list input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid #000;
  border-radius: 4px;
  margin: -3px 6px 0 0;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s;
}
/* チェックON時 */
.inquiry-list input[type="checkbox"]:checked {
  background-color: var(--main_color);
  border-color: var(--main_color);
}
/* チェックマーク */
.inquiry-list input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -60%) rotate(45deg);
}
.inquiry-list span {
  line-height: 1.5;
}
.form-group {
  display: block;
  margin-bottom: 40px;
}
.form-group label {
  width: 100%;
  display: block;
  margin: 0 0 10px 0.5em;
  font-weight: 600;
}
.required {
  display: inline-block;
  color: #fff;
  margin-top: -3px;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 100vh;
  margin-left: 5px;
  vertical-align: middle;
  background-color: #be1e2d;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #000;
  border-radius: 5px;
  font-size: 1em;
}
textarea {
  resize: vertical;
}
.form-confirm {
  margin: 20px 0;
  font-size: 0.95em;
}
.form-confirm input {
  float: left;
  margin: 5px 15px 0 0;
  width: 1em;
  height: 1em;
  border: 1px solid #000;
}
.form-submit {
  text-align: center;
}
.form-submit button {
  position: relative;
  width: 200px;
  margin-top: 30px;
  padding: 20px 40px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1em;
  background: var(--main_color);
  border-radius: 100vh;
  cursor: pointer;
}
.form-submit button:after {
  position: absolute;
  top: 50%;
  right: 50px;
  content: "";
  width: 15px;
  height: 15px;
  translate: 0 -50%;
  background-image: url(../images/icon_submit.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.3s ease-out;
}
.form-submit button:hover {
  background-color: var(--hover_color);
  transition: all 0.3s ease-out;
}


/* ▼ エラーメッセージ表示 */
.error-message {
  margin: 8px 0 0 0.5em;
  color: #be1e2d;
  font-size: 0.95em;
  line-height: 1.5;
}
.form-group.has-error input,
.form-group.has-error textarea {
  border-color: #be1e2d;
}

/* ▼ agree（同意）を inquiry と同じ操作感に */
.form-confirm .agree-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  gap: 8px;
}

/* 既存の float を無効化してクリックしやすく */
.form-confirm input[type="checkbox"] {
  float: none !important;
  margin: 0 10px 0 0;
  width: 18px;
  height: 18px;
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid #000;
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s;
}

.form-confirm input[type="checkbox"]:checked {
  background-color: var(--main_color);
  border-color: var(--main_color);
}

.form-confirm input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -60%) rotate(45deg);
}

/* ラベル内テキスト */
.form-confirm .agree-label span {
  line-height: 1.5;
}



/* ボタン関連 */
.btn_more a {
  position: relative;
  width: 200px;
  display: block;
  margin: 20px auto 0;
  padding: 0.3em 1em;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  color: var(--main_color);
  border: 1px solid var(--main_color);
  border-radius: 100vh;
  transition: all 0.3s ease-out;
}
.btn_more a::after {
  position: absolute;
  top: 50%;
  right: 35px;
  content: "";
  width: 8px;
  height: 10px;
  background-image: url(../images/icon_arrow_bllue.svg);
  background-size: contain;
  transform: translate(0,-50%);
  transition: all 0.3s ease-out;
}
.btn_more a:hover,
.btn_more_rental a:hover {
  background: #fff;
  transition: all 0.3s ease-out;
}
.btn_more a:hover::after,
.btn_more_rental a:hover::after {
  right: 30px;
  transition: all 0.3s ease-out;
}
.btn_more_rental a {
  position: relative;
  width: 200px;
  display: block;
  margin: 20px auto 0;
  padding: 0.3em 1em;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  color: #e79039;
  border: 1px solid #e79039;
  border-radius: 100vh;
  transition: all 0.3s ease-out;
}
.btn_more_rental a::after {
  position: absolute;
  top: 50%;
  right: 35px;
  content: "";
  width: 8px;
  height: 10px;
  background-image: url(../images/icon_arrow_orenge.svg);
  background-size: contain;
  transform: translate(0,-50%);
  transition: all 0.3s ease-out;
}
.btn_normal a,
.btn_rental a {
  position: relative;
  width: 300px;
  display: block;
  margin: 30px auto 60px;
  padding: 1.3em 1em;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  align-items: center;
  border-radius: 100vh;
}
.btn_normal a {
  background: var(--main_color);
  transition: all 0.3s ease-out;
}
.btn_normal a:hover {
  background: var(--hover_color);
  transition: all 0.3s ease-out;
}
.btn_rental a {
  background: #e79039;
  transition: all 0.3s ease-out;
}
.btn_rental a:hover {
  background: #c3772b;
  transition: all 0.3s ease-out;
}
.btn_normal a::after,
.btn_rental a::after {
  position: absolute;
  top: 50%;
  right: 35px;
  content: "";
  width: 16px;
  height: 12px;
  background-image: url(../images/icon_arrow.svg);
  background-size: contain;
  transform: translate(0,-50%);
  transition: all 0.3s ease-out;
}
.btn_normal a:hover::after,
.btn_rental a:hover::after {
  right: 25px;
  transition: all 0.3s ease-out;
}

/* アニメーション */
.fadeUp,
.fadeRight,
.fadeLeft {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fadeUp {
  transform: translateY(20px);
}
.fadeRight {
  transform: translateX(20px);
}
.fadeLeft {
  transform: translateX(-20px);
}
/* ——————————————————————————
is-visible が付くとフェードイン＋移動
—————————————————————————— */
.fadeUp.is-visible,
.fadeRight.is-visible,
.fadeLeft.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}