@charset "UTF-8";
/*----------------------------------------------------
  変数セット
----------------------------------------------------*/
:root {
  --primary-blue: #006AB8;
  --light-blue: #C5EAFE;
  --text-color: #2A2A2A;
  --accent-blue: #5BAFF5;
  --white: #ffffff;
}

/*----------------------------------------------------
  ヒーロー
----------------------------------------------------*/
.hero {
  position: relative;
  height: 880px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 100px);
  /* Replace with image later */
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 0) 50%), url('../images/home/main-image.jpg') no-repeat left center/cover;
  z-index: 1;
  animation: zoomOut 20s infinite alternate;
}
@keyframes zoomOut {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 280px 0 0 5%;
}
.hero-title {
  width: fit-content;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 2.0;
  margin: 0;
  background: rgba(255, 255, 255, 0.5);
  padding: 0.5em;
  border-radius: 0.5em;
  color: var(--text-color);
}
.scroll-indicator {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
  font-family: "Jost", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  animation: bounce 2s infinite;
}
.scroll-indicator span {
  opacity: 0.8;
}
.scroll-indicator .line {
  width: 1px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.3);
  margin-top: 10px;
  position: relative;
  overflow: hidden;
}
.scroll-indicator .line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: var(--white);
  animation: dropDown 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}
@keyframes dropDown {
  0% {
    top: -50%;
  }
  100% {
    top: 100%;
  }
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-15px);
  }
  60% {
    transform: translateX(-50%) translateY(-7px);
  }
}
.custom-shape-divider-top {
  height: 100px;
  position: absolute;
  top: 780px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
  background: var(--white);
}
.custom-shape-divider-top:before {
  content: '';
  font-family: 'shape divider from ShapeDividers.com';
  position: absolute;
  z-index: 3;
  pointer-events: none;
  background-repeat: no-repeat;
  bottom: -0.1vw;
  left: -0.1vw;
  right: -0.1vw;
  top: -0.1vw;
  background-size: 100% 100px;
  background-position: 50% 0%;
  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 .5c3.07.55 9.27-.42 16.14 0 6.88.4 13.75.57 19.14-.11V0H0z" fill="%23006ab8"/><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" opacity=".5" fill="%23006ab8"/><path d="M0 1.85c2.56-.83 7.68-.3 11.79-.42 4.1-.12 6.86-.61 9.58-.28 2.73.33 5.61 1.17 8.61 1 3-.19 4.73-.82 5.3-.84V.1H0z" opacity=".5" fill="%23006ab8"/></svg>');
}
@media (min-width:2100px) {
  .custom-shape-divider-top::before {
    background-size: 100% calc(2vw + 100px);
  }
}

/*----------------------------------------------------
  業務内容
----------------------------------------------------*/
.business-outline {
  background: linear-gradient(180deg, rgba(197, 234, 254, 0) 0%, rgba(197, 234, 254, 1) 100%);
  padding: 0 10% 80px;
}
.grid-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}
.service-card {
  grid-column: span 2 / span 2;
  text-align: center;
  position: relative;
  padding-top: 20px;
  z-index: 1;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 130px;
  left: 0;
  width: 100%;
  bottom: 0;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  z-index: -1;
}
.box-big {
    grid-column: span 3 / span 3;
}
.box-big .service-img-placeholder {
  height: 220px;
}
.service-badge {
  position: absolute;
  top: 0;
  left: -10px;
  width: 70px;
  height: 70px;
  background: var(--primary-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.service-badge .small {
  font-family: "Jost", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
}
.service-badge .num {
  font-family: "Jost", sans-serif;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1;
}
.service-img-placeholder {
  font-size: 100px;
  margin: 0;
  line-height: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-img-placeholder img {
  height: 100%;
}
.service-title {
  font-size: 2.2rem;
  font-weight: 500;
  margin: 0;
  padding: 20px 20px 0;
}
.service-desc {
  color: var(--text-color);
  text-align: left;
  margin: 5px 0 14px;
  padding: 0 20px
}

/*----------------------------------------------------
  サービスステーション紹介
----------------------------------------------------*/
.service-station {
  background-image: url("../images/home/bg_servicestation.jpg");
  background-color: rgba(255, 255, 255, 0.75);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  background-blend-mode: lighten;
  padding: 80px 10%;
}
.station-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.station-card {
  display: flex;
  gap: 40px;
  align-items: stretch;
}
.station-info {
  flex: 1;
}
.station-map {
  flex: 1;
  width: 100%;
  min-height: 250px;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.station-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.station-title {
  font-size: 2.2rem;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 20px;
  color: var(--text-color);
}
.station-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #aaa;
}
.station-table br.kai {
  display: none;
}
.station-table tr {
  border-bottom: 1px solid #aaa;
}
.station-table tr:first-child {
  border-top: 1px solid #aaa;
}
.station-table th,
.station-table td {
  padding: 15px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #aaa;
}
.station-table th {
  width: 120px;
  background: none;
  font-weight: normal;
  color: var(--text-color);
}
.nyuzen-area {
  position: relative;
  overflow: hidden;
  user-select: none;
}
.nyuzen-area::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  z-index: 2;
}
.nyuzen-area .txt-closed {
  color: #fff;
  font-size: 1.55em;
  /* font-weight: bold; */
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  text-align: center;
  transform: translate(-50%, -50%);
  z-index: 3;
}

/* -----------------------------
   スマホレイアウト
----------------------------- */
@media screen and (max-width: 992px) {
  /* ヒーローセクション */
  .hero {
    height: 500px;
  }
  .custom-shape-divider-top {
    position: absolute;
    top: 400px;
    left: -25%;
    width: 150%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
  }
  .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 0) 50%), url(../images/home/main-image.jpg) no-repeat left center / cover;
    z-index: 1;
  }
  .hero-content {
    padding: 140px 0 0 10%;
  }
  .hero-title {
    font-size: 28px;
  }
  /* 業務内容 */
  .business-outline {
    padding: 0 5% 60px;
  }
  .grid-container {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 40px;
  }
  .service-card {
    grid-column: span 3 / span 3;
  }
  .box-big .service-img-placeholder {
    height: 180px;
  }
  /* サービスステーション */
  .service-station {
    padding: 60px 5%;
  }
  .station-grid {
    gap: 40px;
  }
  .station-card {
    flex-direction: column;
    gap: 20px;
  }
  .station-table br.kai {
    display: block;
  }
  .station-table td {
    border-bottom: none;
  }
  .station-map {
    height: 250px;
  }
}
/* -----------------------------
   サブタイトル
----------------------------- */
.hero-subtitle {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.hero-subtitle-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 100px);
  /* Replace with image later */
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 0) 50%), url('../images/home/main-image.jpg') no-repeat left center/cover;
  z-index: 1;
}

.hero-subtitle-content {
  position: relative;
  z-index: 2;
  padding: 50px 0 0 5%;
}

.hero-subtitle-title {
  width: fit-content;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
  background: rgba(255, 255, 255, 0.5);
  padding: 0.5em;
  border-radius: 0.5em;
  color: var(--text-color);
}

.custom-shape-divider-top-subtitle {
  height: 100px;
  position: absolute;
  top: 200px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}

.custom-shape-divider-top-subtitle:before {
  content: '';
  position: absolute;
  z-index: 3;
  pointer-events: none;
  background-repeat: no-repeat;
  bottom: -0.1vw;
  left: -0.1vw;
  right: -0.1vw;
  top: -0.1vw;
  background-size: 100% 100px;
  background-position: 50% 0%;
  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 .5c3.07.55 9.27-.42 16.14 0 6.88.4 13.75.57 19.14-.11V0H0z" fill="%23006ab8"/><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" opacity=".5" fill="%23006ab8"/><path d="M0 1.85c2.56-.83 7.68-.3 11.79-.42 4.1-.12 6.86-.61 9.58-.28 2.73.33 5.61 1.17 8.61 1 3-.19 4.73-.82 5.3-.84V.1H0z" opacity=".5" fill="%23006ab8"/></svg>');
}

@media (min-width:2100px) {
  .custom-shape-divider-top-subtitle::before {
    background-size: 100% calc(2vw + 100px);
  }
}

/* -----------------------------
   会社概要
----------------------------- */
.hero-company {
  position: relative;
  height: 300px;
  overflow: hidden;
}
.hero-company-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 100px);
  /* Replace with image later */
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 0) 50%), url('../images/home/main-image.jpg') no-repeat left center/cover;
  z-index: 1;
}
.hero-company-content {
  position: relative;
  z-index: 2;
  padding: 50px 0 0 5%;
}
.hero-company-title {
  width: fit-content;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
  background: rgba(255, 255, 255, 0.5);
  padding: 0.5em;
  border-radius: 0.5em;
  color: var(--text-color);
}
.custom-shape-divider-top-company {
  height: 100px;
  position: absolute;
  top: 200px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}
.custom-shape-divider-top-company:before {
  content: '';
  font-family: 'shape divider from ShapeDividers.com';
  position: absolute;
  z-index: 3;
  pointer-events: none;
  background-repeat: no-repeat;
  bottom: -0.1vw;
  left: -0.1vw;
  right: -0.1vw;
  top: -0.1vw;
  background-size: 100% 100px;
  background-position: 50% 0%;
  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 .5c3.07.55 9.27-.42 16.14 0 6.88.4 13.75.57 19.14-.11V0H0z" fill="%23006ab8"/><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" opacity=".5" fill="%23006ab8"/><path d="M0 1.85c2.56-.83 7.68-.3 11.79-.42 4.1-.12 6.86-.61 9.58-.28 2.73.33 5.61 1.17 8.61 1 3-.19 4.73-.82 5.3-.84V.1H0z" opacity=".5" fill="%23006ab8"/></svg>');
}
@media (min-width:2100px) {
  .custom-shape-divider-top-company::before {
    background-size: 100% calc(2vw + 100px);
  }
}
.outline,
.identification,
.history,
.accessmap {
  background-color: var(--white);
  padding: 0 10% 80px;
}
table {
  width: 100%;
  margin: 0 auto;
  border-top: 1px solid #ccc;
}
table th {
  padding: 10px;
  text-align: center;
  border-bottom: 1px solid #ccc;
  width: 20%;
  white-space: nowrap;
  background: var(--light-blue);
  font-weight: normal;
  vertical-align: top;
}
table td {
  padding: 10px;
  border-bottom: 1px solid #ccc;
  vertical-align: top;
}
@media screen and (max-width: 992px) {
  .table {
    width: 80%;
  }
  table th,
  table td {
    width: 100%;
  }
}
.map-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/*----------------------------------------------------
  お問い合わせ
----------------------------------------------------*/
table.tbl-form {
  width: 800px;
  max-width: 100%;
}
.tbl-form th,
.tbl-form td {
  padding: 1.5rem 0;
  background: none;
}
.tbl-form th {
  width: 250px;
  position: relative;
  padding-right: 6rem;
  padding-top: 2.5rem;
}
.tbl-form p {
  margin-bottom: 0 !important;
}
.tbl-form th p {
  font-weight: 700;
}
span.required {
  display: inline-block;
  color: #f00;
  position: absolute;
  right: 2rem;
  font-size: 0.8em;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  width: 100%;
}
.button-area {
  text-align: center;
}
.wpcf7-form .check-privacy {
  text-align: center;
  margin: 2rem 0 3rem;
}
.wpcf7-form .check-privacy input[type="checkbox"] {
  scale: 1.5;
  margin-right: 1rem;
}
.wpcf7-form .check-privacy a {
  text-decoration: underline;
  color: #222;
}
.wpcf7-form .check-privacy a:hover{
  text-decoration: none;
}
.button-area .wpcf7-submit {
  border: none;
  text-decoration: none !important;
  background-color: var(--primary-blue);
  box-shadow: none;
  color: #fff;
  display: inline-block;
  width: 160px;
  padding: 1.5rem;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-decoration: none;
  transition: all 0.1s;
  cursor: pointer;
}
.button-area .wpcf7-submit:hover {
  background-color: var(--accent-blue);
}
.button-area .wpcf7-submit:disabled,
.button-area .wpcf7-submit:disabled:hover {
  background-color: #7a7b7c;
}
.wpcf7-form .wpcf7-spinner {
  display: block;
  margin: 0 auto;
}
.wpcf7-form .wpcf7-response-output {
  max-width: 800px;
  margin: 4rem auto 0 !important;
}
.wpcf7-turnstile {
  display: grid;
  justify-content: center;
  margin-bottom: 4rem;
}
@media (max-width: 767.98px) {
  .tbl-form th,
  .tbl-form td {
    display: block;
    width: 100%;
    float: left;
    padding: 1rem 0;
  }
  .tbl-form th {
    padding-bottom: 0;
  }
  .tbl-form td {
    padding-top: 0.5rem;
    padding-bottom: 1.5rem;
  }
  span.required {
    position: static;
    margin-left: 1rem;
  }
  .button-area .wpcf7-submit {
    font-size: 1.8rem;
    padding: 1.2rem;
    padding-right: calc(1.2rem - 0.2em);
    width: 140px;
  }
}
/*----------------------------------------------------
  プライバシーポリシー
----------------------------------------------------*/
.privacy {
  padding: 0 10% 80px;
}
.privacy h2 {
  color: var(--primary-blue);
  font-size: 2.4rem;
  margin: 2em 0 0.7em;
}
@media screen and (max-width: 767.98px) {
  .privacy h2 {
    font-size: 2rem;
  }
}
.privacy p {
  line-height: 1.8;
  margin-bottom: 1em;
}
.privacy ol {
  list-style: none;
  padding-left: 0;
  counter-reset: number;
}
.privacy ol li {
  line-height: 1.8;
  margin-bottom: 0.6em;
  padding-left: 2em;
  text-indent: -1em;
}
.privacy ol li::before {
  counter-increment: number;
  content: counter(number) ". ";
  color: var(--primary-blue);
  font-weight: 700;
}
.privacy ol ol {
  margin-top: 1em;
  margin-bottom: 2em;
}