@charset "utf-8";
/*
Theme Name: sevenauto
Template:genesis_tcd103
Author:01 inc
Version:1.0
*/
/* =========================
   共有部分
========================= */
.cb_free_space {
    padding: 0;
}

.wht_ttl {
    color: #fff;
}

.lp_content .large_headline span{
  color: #005bac;
}

.lp_content .catch span{
  color: #f6ab00;
}

/* リンク全体 */
.design_arrow_button a{
  display: inline-flex;
  align-items: center;
  gap: 18px;
  text-decoration: none !important;
  border: none !important;
}

/* hover時の線消し */
.design_arrow_button a:hover{
  text-decoration: none !important;
  border-bottom: none !important;
}

/* テキスト */
.design_arrow_button .label{
  color: #f2b400;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.6;
}

/* 丸ボタン */
.design_arrow_button .arrow_button{
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 3px solid #111;
  background: #fff;
  position: relative;
  box-shadow: 6px 6px 0 #f2b400;
  transition:
    transform .35s cubic-bezier(.25,.46,.45,.94),
    box-shadow .35s cubic-bezier(.25,.46,.45,.94);
}

/* テーマ側矢印を削除 */
.design_arrow_button .arrow_button::after{
  content: none !important;
}

/* 矢印 */
.design_arrow_button .arrow_button::before{
  content: "→" !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  font-size: 22px;
  font-weight: 700;
  color: #111;
  line-height: 1;
  opacity: 1 !important;
  transition: all .35s cubic-bezier(.25,.46,.45,.94);
}

/* hover */
.design_arrow_button a:hover .arrow_button{
  transform: translateX(6px);
  box-shadow: 3px 3px 0 #f2b400;
}

/* hover時も矢印固定 */
.design_arrow_button a:hover .arrow_button::before{
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  opacity: 1 !important;
}

.rich_font_1,
.large_headline,
.line_inner{
  font-family: 'Oswald', sans-serif !important;
}

.large_headline{
  color: #005bac !important;
}


/* =========================
   TOP PAGE
========================= */
.catch.rich_font_1 .line{
  display: inline-block;
  transform: skewX(-10deg);
}

.catch.rich_font_1 .line_inner{
  color: #005bac;
  display: inline-block;
  font-weight: 700;
}

.desc_area .line_inner{
  color: #f6ab00;
}

/* =========================
   Partner Section
========================= */
.partner-section {
  background: #fafafa;
  padding: 100px 0;
  position: relative;
}

.partner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  z-index: 0;
}

.partner-container {
  width: min(92%, 1400px);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.partner-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 60px;
}

.partner-title h2 {
  font-size: 34px;
  line-height: 1.5;
  color: #f2b400;
  font-weight: 700;
  text-align: left;
}

.partner-text p {
  font-size: 17px;
  line-height: 2;
  color: #222;
  margin-bottom: 20px;
}

.partner-carousel-wrap {
  width: 100%;
  overflow: hidden;
}

.partner-carousel-track {
  display: flex;
  width: max-content;
  animation: partnerLoop 25s linear infinite;
}

.partner-item {
  flex: 0 0 240px;
  height: 240px;
  margin-right: 15px;
}

.partner-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

@keyframes partnerLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-1020px);
  }
}

/* SP */
@media (max-width: 768px) {
  .partner-header {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .partner-images {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .partner-section {
    padding: 70px 0;
  }

  .partner-images {
    grid-template-columns: 1fr;
  }

  .partner-btn .icon {
    width: 54px;
    height: 54px;
  }
}

/* =========================
   PICK UP SECTION
========================= */
.pickup-section {
  background: #005cb9;
  padding: 100px 0;
}

.pickup-container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.pickup-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-top: 50px;
}

.pickup-card {
  display: block;
  color: #fff;
}

.pickup-image {
  display: block;
  overflow: hidden;
  border-radius: 4px;
}

.pickup-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.35s ease;
}

.pickup-image:hover img {
  transform: scale(1.03);
}

.pickup-content {
  margin-top: 20px;
}

.pickup-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.pickup-content p {
  font-size: 15px;
  line-height: 1.9;
  color: #fff;
}

/* SP */
@media screen and (max-width: 768px) {
  .pickup-section {
    padding: 70px 0;
  }

  .pickup-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
  }

  .pickup-content {
    margin-top: 16px;
  }

  .pickup-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .pickup-content p {
    font-size: 14px;
    line-height: 1.8;
  }
}

/* =========================
   SERVICE SECTION
========================= */
.service-section {
  background: #f8f8f8;
  padding: 100px 0;
}

.service-container {
  width: min(92%, 1400px);
  margin: 0 auto;
}

.service-heading {
  margin-bottom: 50px;
}

.service-heading h2 {
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1;
  font-weight: 800;
  color: #111;
  margin: 0;
}

.service-heading p {
  color: #f2b400;
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #d9d9d9;
  border-left: 1px solid #d9d9d9;
}

.service-card {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 40px;
  border-right: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  background: #fff;
}

.service-card {
  padding: 60px 50px;
  box-sizing: border-box;
}

.service-icon {
  font-size: 70px;
  flex-shrink: 0;
}

.service-content h3 {
  color: #f2b400;
  font-size: 24px;
  margin-bottom: 12px;
}

.service-content p {
  color: #333;
  font-size: 15px;
  line-height: 1.9;
}

.service-link-wrap {
  text-align: right;
  margin-top: 40px;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
}

.service-btn .label {
  color: #f2b400;
  font-weight: 700;
}

.service-btn .icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 3px solid #111;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 5px 5px 0 #f2b400;
}

.accident_lead span{
  display: inline-block;
  margin-top: 10px;
  padding: 6px 12px;
  background: #f5f5f5;
  font-size: 0.9em;
}

/* SP */
@media screen and (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 16px;
    padding: 24px 20px;
  }

  .service-icon {
    flex: 0 0 60px;
    font-size: 42px;
  }

  .service-content h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .service-content p {
    font-size: 14px;
    line-height: 1.7;
	margin: 0;
  }
}

/* =========================
   ACCIDENT SUPPORT SECTION
========================= */
.accident_support{
  max-width:1200px;
  margin:0 auto;
  padding:80px 20px;
}

.accident_title{
  text-align:center;
  color:#0054a6;
  margin-bottom:15px !important;
}

.accident_lead{
  text-align:center;
  margin-bottom:40px;
}

.sompo_logo{
  text-align:center;
  margin:20px;
}

.sompo_logo img{
  max-width:120px;
  width:100%;
  height:auto;
}

.accident_box_wrap{
  display:flex;
  gap:30px;
}

.accident_box{
  flex:1;
  border:3px solid #f0a400;
  border-radius:20px;
  overflow:hidden;
  background:#fff;
}

.accident_head{
  background:#f0a400;
  color:#fff;
  text-align:center;
  font-weight:700;
  font-size:24px;
  padding:18px;
}

.accident_body{
  padding:25px;
  text-align:center;
}

.accident_sub{
  color:#0054a6;
  font-size:20px;
  font-weight:700;
  margin-bottom:10px;
}

.accident_tel a{
  color:#0054a6;
  font-size:56px;
  font-weight:700;
  text-decoration:none;
  line-height:1;
}

/* SP */
@media screen and (max-width:768px){

  .accident_box_wrap{
    display:block;
  }

  .accident_box{
    margin-bottom:20px;
  }

  .accident_title{
    font-size:30px;
  }

  .accident_head{
    font-size:18px;
  }

  .accident_tel a{
    font-size:38px;
  }

}

/* =========================
   FORM
========================= */
.form-ttl span{
  font-size: 50px;
  text-align: center;
  margin: 0;
}

.form-ttl{
  margin: 0 !important;
}

.form-sub{
  font-size: 30px;
  text-align: center;
  margin: 0 0 30px 0 !important;
}

.cf7-form .form-item{
  margin-bottom: 30px;
}

.cf7-form label{
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
}

.cf7-form input,
.cf7-form textarea,
.cf7-form select{
  width: 100%;
  padding: 16px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 16px;
}

.cf7-form textarea{
  height: 220px;
}

.required{
  color: #fff;
  background: #f6ab00;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 3px;
  margin-left: 10px;
}

.cf7-form .form-submit{
  margin-top: 50px;
}

.cf7-form .wpcf7-submit{
  width: 100%;
  max-width: 320px;
  height: 64px;
  border: none;
  background: #005bac;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: .3s;
}

.cf7-form .wpcf7-submit:hover{
  background: #003f82;
}

/* 口コミプロフィール */
.review-profile {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 22px;
}

.review-profile span {
  display: inline-block;
  padding: 6px 12px;
  background: #f5f8fb;
  border: 1px solid #d9e6f2;
  border-radius: 999px;
  color: #005bac;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

/* SP */
@media screen and (max-width: 768px) {
  .review-profile {
    gap: 6px;
    margin: 14px 0 18px;
  }

  .review-profile span {
    font-size: 12px;
    padding: 5px 10px;
  }
}