@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  margin-top: 80px;
  background-color: #EAF3FA;
}
@media screen and (max-width: 1300px) {
  body {
    margin-top: 80px;
  }
}
@media screen and (max-width: 768px) {
  body {
    margin-top: 58px;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hidden-fields-container {
  display: none !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.pc_hidden {
  display: none;
}
@media screen and (max-width: 768px) {
  .pc_hidden {
    display: block;
  }
}

.header {
  position: fixed;
  top: 0; /* 上部に配置 */
  left: 0;
  width: 100%; /* 横幅を全画面に */
  background: #FFFFFF; /* 背景色（透明だと下の要素と重なる） */
  z-index: 1000;
  padding: 12px;
  max-width: 100vw;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 768px) {
  .header {
    padding: 7px 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  width: 1000px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1200px) {
  .header_inner {
    width: 810px;
  }
}
@media screen and (max-width: 1000px) {
  .header_inner {
    width: 780px;
  }
}
@media screen and (max-width: 900px) {
  .header_inner {
    width: 690px;
  }
}
@media screen and (max-width: 768px) {
  .header_inner {
    width: 358px;
  }
}

.header_logo img {
  display: block;
  width: 213px;
}
@media screen and (max-width: 1200px) {
  .header_logo img {
    width: 200px;
  }
}
@media screen and (max-width: 1000px) {
  .header_logo img {
    width: 190px;
  }
}
@media screen and (max-width: 900px) {
  .header_logo img {
    width: 180px;
  }
}
@media screen and (max-width: 768px) {
  .header_logo img {
    width: 150px;
  }
}

.header_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 16px;
}
@media screen and (max-width: 1200px) {
  .header_right {
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .header_right {
    display: none;
  }
}

.header_right_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .header_right_sp {
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 8px;
  }
}

.header_tel {
  background-color: #0066CC;
  border-radius: 5px;
  border-bottom: 5px solid #004488;
  padding: 1px 16px 1px 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
  min-height: 54px;
}
@media screen and (max-width: 1000px) {
  .header_tel {
    padding: 1px 10px 1px 38px;
  }
}
.header_tel::before {
  position: absolute;
  content: "";
  background: url(../../img/suzuki/tel_icon.png) no-repeat center center/cover;
  width: 32px;
  height: 32px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 16px;
}
@media screen and (max-width: 1000px) {
  .header_tel::before {
    width: 25px;
    height: 25px;
    left: 8px;
  }
}
.header_tel:hover {
  border-bottom: 0px;
  position: relative;
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}

.header_tel_top {
  font-family: "Noto Serif JP", serif;
  color: #FFFFFF;
  font-size: 1.375rem;
  font-weight: 500;
}
@media screen and (max-width: 1200px) {
  .header_tel_top {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 1000px) {
  .header_tel_top {
    font-size: 1rem;
  }
}

.header_tel_bottom {
  font-family: "Noto Serif JP", serif;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: -5px;
}
@media screen and (max-width: 1000px) {
  .header_tel_bottom {
    font-size: 0.65rem;
  }
}

.header_mail {
  background-color: #F15A24;
  border-radius: 5px;
  border-bottom: 5px solid #B3431C;
  padding: 8px 16px 8px 56px;
  font-family: "Noto Serif JP", serif;
  color: #FFFFFF;
  font-size: 1rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
@media screen and (max-width: 1200px) {
  .header_mail {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 1000px) {
  .header_mail {
    padding: 8px 10px 8px 38px;
  }
}
.header_mail a {
  font-weight: 600;
}
.header_mail::before {
  position: absolute;
  content: "";
  background: url(../../img/suzuki/mail_icon.png) no-repeat center center/cover;
  width: 34px;
  height: 34px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 16px;
}
@media screen and (max-width: 1000px) {
  .header_mail::before {
    width: 25px;
    height: 25px;
    left: 10px;
  }
}
.header_mail:hover {
  border-bottom: 0px;
  position: relative;
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}

.header_line {
  background-color: #07B53B;
  border-radius: 5px;
  border-bottom: 5px solid #077E2B;
  padding: 12px 16px 15px 56px;
  font-family: "Noto Serif JP", serif;
  color: #FFFFFF;
  font-size: 1rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
@media screen and (max-width: 1200px) {
  .header_line {
    font-size: 0.8rem;
    padding: 12px 16px 12px 56px;
  }
}
@media screen and (max-width: 1000px) {
  .header_line {
    padding: 12px 10px 12px 38px;
  }
}
.header_line a {
  font-weight: 600;
}
.header_line::before {
  position: absolute;
  content: "";
  background: url(../../img/suzuki/line_icon.png) no-repeat center center/cover;
  width: 32px;
  height: 28px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 16px;
}
@media screen and (max-width: 1000px) {
  .header_line::before {
    width: 22px;
    height: 19px;
    left: 11px;
  }
}
.header_line:hover {
  border-bottom: 0px;
  position: relative;
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}

.header_tel_sp {
  background-color: #0066CC;
  border-radius: 3px;
  border-bottom: 2px solid #004488;
  padding: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header_tel_sp img {
  display: block;
  width: 32px;
  height: 32px;
}

.header_mail_sp {
  background-color: #F15A24;
  border-radius: 3px;
  border-bottom: 2px solid #B3431C;
  padding: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header_mail_sp img {
  display: block;
  width: 32px;
  height: 32px;
}

.header_line_sp {
  background-color: #07B53B;
  border-radius: 3px;
  border-bottom: 2px solid #077E2B;
  padding: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header_line_sp img {
  display: block;
  width: 32px;
  height: 32px;
}

.fv {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .fv {
    background: url(../../img/suzuki/fv_background_pc.jpg) no-repeat center center/cover;
  }
}

.fv_inner {
  padding-left: 15.2777777778%;
  padding-right: 15.2777777778%;
}
@media screen and (max-width: 768px) {
  .fv_inner {
    padding-left: 5.1282051282%;
    padding-right: 5.1282051282%;
  }
}

@media screen and (max-width: 768px) {
  .fv_box {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
}

.fv_main {
  background: url(../../img/suzuki/fv_background_pc.jpg) no-repeat center center/cover;
  min-height: 520px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .fv_main {
    background: none;
    min-height: 576px;
  }
}
.fv_main::after {
  position: absolute;
  content: "";
  background: url(../../img/suzuki/fv_bike_human.png) no-repeat center center/cover;
  width: 557px;
  height: 406px;
  bottom: 0;
  right: 17px;
  z-index: -10;
}
@media screen and (max-width: 1300px) {
  .fv_main::after {
    width: 510px;
    height: 380px;
  }
}
@media screen and (max-width: 1200px) {
  .fv_main::after {
    right: 0;
  }
}
@media screen and (max-width: 1000px) {
  .fv_main::after {
    width: 460px;
    height: 353px;
    right: 16px;
  }
}
@media screen and (max-width: 900px) {
  .fv_main::after {
    right: 6px;
  }
}
@media screen and (max-width: 768px) {
  .fv_main::after {
    background: url(../../img/suzuki/fv_bike_human_sp.png) no-repeat center center/cover;
    width: 361px;
    height: 282px;
    right: 0px;
  }
}

.fv_title img {
  display: block;
  width: 769px;
  margin-left: -49px;
  padding-top: 47px;
}
@media screen and (max-width: 1300px) {
  .fv_title img {
    width: 700px;
    margin-left: -30px;
  }
}
@media screen and (max-width: 1200px) {
  .fv_title img {
    width: 600px;
  }
}
@media screen and (max-width: 1000px) {
  .fv_title img {
    width: 570px;
  }
}
@media screen and (max-width: 900px) {
  .fv_title img {
    width: 510px;
  }
}
@media screen and (max-width: 768px) {
  .fv_title img {
    margin-left: 0;
    padding-top: 30px;
  }
}

.fv_sub {
  padding-left: 64px;
  margin-top: -3px;
}
@media screen and (max-width: 1300px) {
  .fv_sub {
    padding-left: 58px;
    margin-top: 0px;
  }
}
@media screen and (max-width: 1200px) {
  .fv_sub {
    padding-left: 48px;
  }
}
@media screen and (max-width: 900px) {
  .fv_sub {
    padding-left: 36px;
  }
}
@media screen and (max-width: 768px) {
  .fv_sub {
    padding-left: 0px;
    margin-top: 20px;
  }
}
.fv_sub img {
  display: block;
  width: 415px;
}
@media screen and (max-width: 1300px) {
  .fv_sub img {
    width: 370px;
  }
}
@media screen and (max-width: 1200px) {
  .fv_sub img {
    width: 340px;
  }
}
@media screen and (max-width: 1000px) {
  .fv_sub img {
    width: 300px;
  }
}
@media screen and (max-width: 900px) {
  .fv_sub img {
    width: 270px;
  }
}
@media screen and (max-width: 768px) {
  .fv_sub img {
    margin-left: auto;
    margin-right: auto;
    width: 300px;
  }
}

.fv_search {
  background-color: #009ADE;
  min-height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .fv_search {
    display: none;
  }
}

.fv_search_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .fv_search_sp {
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 90px;
  }
}

.fv_search_text {
  font-family: "Noto Serif JP", serif;
  font-size: 1.625rem;
  padding: 15px 95px;
  border: 2px solid #FFFFFF;
  border-radius: 3px;
  color: #FFFFFF;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .fv_search_text {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .fv_search_text {
    padding: 12px 82px;
    font-size: 1.375rem;
    width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}
.fv_search_text a {
  font-weight: 700;
}
.fv_search_text:hover {
  background-color: #20ACEA;
}
.fv_search_text::before {
  position: absolute;
  content: "";
  background: url(../../img/suzuki/search_icon.png) no-repeat center center/cover;
  width: 35px;
  height: 47px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 50px;
}
@media screen and (max-width: 1200px) {
  .fv_search_text::before {
    width: 30px;
    height: 39px;
    left: 50px;
  }
}
@media screen and (max-width: 768px) {
  .fv_search_text::before {
    left: 43px;
  }
}
.fv_search_text::after {
  position: absolute;
  content: "";
  background: url(../../img/suzuki/search_polygon.png) no-repeat center center/cover;
  width: 35px;
  height: 15px;
  top: 55%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 44px;
}
@media screen and (max-width: 1200px) {
  .fv_search_text::after {
    width: 30px;
    height: 13px;
    right: 50px;
  }
}
@media screen and (max-width: 768px) {
  .fv_search_text::after {
    width: 30px;
    height: 14px;
    right: 36px;
  }
}

.review {
  margin-top: 80px;
  margin-bottom: 96px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .review {
    margin-top: 32px;
    margin-bottom: 102px;
  }
}

.review_inner {
  padding-left: 15.2777777778%;
  padding-right: 15.2777777778%;
}
@media screen and (max-width: 768px) {
  .review_inner {
    padding-left: 5.1282051282%;
    padding-right: 5.1282051282%;
  }
}

@media screen and (max-width: 768px) {
  .review_box {
    width: 330px;
    margin-left: auto;
    margin-right: auto;
  }
}

.review_title {
  margin-left: auto;
  margin-right: auto;
  color: #009ADE;
  font-weight: 700;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .review_title {
    font-size: 1.125rem;
  }
}
.review_title::before {
  position: absolute;
  content: "";
  background: #009ADE;
  width: 72px;
  height: 2px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -70px;
  rotate: 74deg;
}
@media screen and (max-width: 768px) {
  .review_title::before {
    left: -50px;
    width: 80px;
  }
}
.review_title::after {
  position: absolute;
  content: "";
  background: #009ADE;
  width: 72px;
  height: 2px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -70px;
  rotate: -74deg;
}
@media screen and (max-width: 768px) {
  .review_title::after {
    right: -50px;
    width: 80px;
  }
}

.gallery_slider {
  margin-top: 32px;
  margin-bottom: 125px;
  position: relative;
}
@media screen and (max-width: 900px) {
  .gallery_slider {
    margin-top: 20px;
    margin-bottom: 60px;
    overflow: visible;
  }
}
@media screen and (max-width: 768px) {
  .gallery_slider {
    margin-top: 23px;
    margin-bottom: 60px;
  }
}

.gallery_swiper {
  max-width: 900px; /* 最大幅を設定 */
  margin: 0 auto;
  overflow: visible;
}

.swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.gallery_card {
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
  padding: 40px 40px 42px 40px;
}
@media screen and (max-width: 768px) {
  .gallery_card {
    padding: 24px;
  }
}

.review_title2 {
  color: #0066CC;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  .review_title2 {
    font-size: 1rem;
  }
}

.review_container {
  margin-top: 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1000px) {
  .review_container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .review_container {
    margin-top: 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}

.review_left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.review_left_img {
  width: 100%;
}
.review_left_img img {
  display: block;
  max-width: 306px;
}
@media screen and (max-width: 768px) {
  .review_left_img img {
    max-width: 285px;
  }
}

.review_left_text {
  font-size: 0.875rem;
}
@media screen and (max-width: 768px) {
  .review_left_text {
    display: none;
  }
}

.review_left_text_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .review_left_text_sp {
    display: block;
    margin-top: 16px;
  }
}

.review_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 29px;
}
@media screen and (max-width: 768px) {
  .review_right {
    gap: 24px;
  }
}

.review_right_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 11px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1200px) {
  .review_right_top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.review_right_top01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .review_right_top01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.review_star img {
  display: block;
  max-width: 155px;
}
@media screen and (max-width: 768px) {
  .review_star img {
    max-width: 118px;
  }
}

.review_star_number {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .review_star_number {
    font-size: 1.5rem;
  }
}

.review_name {
  color: #333333;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .review_name {
    font-size: 0.875rem;
  }
}

.review_right_bottom p {
  color: #333333;
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .review_right_bottom p {
    font-size: 1rem;
  }
}

.bold {
  font-weight: 700;
}

.gallery_pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 27px;
  bottom: -50px !important;
  position: absolute;
}
.gallery_pagination .swiper-pagination-bullet {
  width: 18px;
  height: 18px;
  margin-left: 0 !important;
  margin-right: 0 !important;
  background: #FFFFFF;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .gallery_pagination .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
  }
}
.gallery_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #009ADE;
}

.intro {
  background-color: #FFFFFF;
  padding-top: 114px;
  padding-bottom: 118px;
}
@media screen and (max-width: 768px) {
  .intro {
    padding-top: 74px;
    padding-bottom: 64px;
  }
}

.intro_title {
  text-align: center;
  font-size: 4rem;
  color: #009ADE;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}
@media screen and (max-width: 1000px) {
  .intro_title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 900px) {
  .intro_title {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .intro_title {
    font-size: 2rem;
  }
}

.intro_blue {
  color: #0066CC;
  font-weight: 700;
}

.intro_title_sub {
  margin-top: 34px;
  font-size: 1.5rem;
  font-family: "Noto Serif JP", serif;
  color: #0066CC;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 900px) {
  .intro_title_sub {
    margin-top: 30px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .intro_title_sub {
    font-size: 1.125rem;
    margin-top: 24px;
  }
}

.intro_img {
  margin-top: 80px;
  display: block;
}
@media screen and (max-width: 768px) {
  .intro_img {
    margin-top: 41px;
    max-width: 390px;
    margin-left: auto;
    margin-right: auto;
  }
}

.intro_frame {
  margin-top: 120px;
  background: url(../../img/suzuki/intro_frame.png) no-repeat center center/cover;
  width: 800px;
  height: 410px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1000px) {
  .intro_frame {
    width: 700px;
    height: 361px;
  }
}
@media screen and (max-width: 900px) {
  .intro_frame {
    width: 550px;
    height: 283px;
    margin-top: 90px;
  }
}
@media screen and (max-width: 768px) {
  .intro_frame {
    background: url(../../img/suzuki/intro_frame_sp.png) no-repeat center center/cover;
    margin-top: 33px;
    width: 333px;
    height: 188px;
  }
}
.intro_frame p {
  color: #333333;
  font-size: 2.5rem;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  margin-top: -16px;
}
@media screen and (max-width: 1000px) {
  .intro_frame p {
    font-size: 2rem;
  }
}
@media screen and (max-width: 900px) {
  .intro_frame p {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .intro_frame p {
    font-size: 1.125rem;
    margin-top: 0;
  }
}

.intro_lightblue {
  font-size: 2.5rem;
  color: #009ADE;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(65%, transparent), color-stop(0%, #FFFF1D));
  background: linear-gradient(transparent 65%, #FFFF1D 0%);
}
@media screen and (max-width: 1000px) {
  .intro_lightblue {
    font-size: 2rem;
  }
}
@media screen and (max-width: 900px) {
  .intro_lightblue {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .intro_lightblue {
    font-size: 1.125rem;
  }
}

.bike {
  margin-top: 120px;
  margin-bottom: 128px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .bike {
    margin-top: 67px;
    margin-bottom: 28px;
  }
}

.bike_inner {
  padding-left: 15.2777777778%;
  padding-right: 15.2777777778%;
}
@media screen and (max-width: 768px) {
  .bike_inner {
    padding-left: 5.1282051282%;
    padding-right: 5.1282051282%;
  }
}

@media screen and (max-width: 768px) {
  .bike_box {
    width: 330px;
    margin-left: auto;
    margin-right: auto;
  }
}

.bike_title_sub {
  color: #009ADE;
  font-size: 2rem;
  font-family: "Noto Serif JP", serif;
  position: relative;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .bike_title_sub {
    font-size: 1.125rem;
    font-weight: 600;
  }
}
.bike_title_sub::before {
  position: absolute;
  content: "";
  background: #009ADE;
  width: 32px;
  height: 2px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -35px;
  rotate: 75deg;
}
@media screen and (max-width: 768px) {
  .bike_title_sub::before {
    width: 25px;
    left: -23px;
  }
}
.bike_title_sub::after {
  position: absolute;
  content: "";
  background: #009ADE;
  width: 32px;
  height: 2px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -40px;
  rotate: -75deg;
}
@media screen and (max-width: 768px) {
  .bike_title_sub::after {
    width: 25px;
    right: -26px;
  }
}

.bike_title {
  margin-top: 5px;
  color: #0066CC;
  font-size: 3.5rem;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (max-width: 1000px) {
  .bike_title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 900px) {
  .bike_title {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .bike_title {
    font-size: 2rem;
  }
}

.bike_blue {
  color: #009ADE;
  font-weight: 700;
}

.bike_slider {
  margin-top: 98px;
}
@media screen and (max-width: 768px) {
  .bike_slider {
    margin-top: 85px;
  }
}

.gallery_swiper2 {
  max-width: 560px; /* 最大幅を設定 */
  margin: 0 auto;
  overflow: visible;
}
@media screen and (max-width: 768px) {
  .gallery_swiper2 {
    max-width: 300px;
  }
}

.swiper-slide-active {
  -webkit-transform: scale(1.1);
          transform: scale(1.1); /* 中央のスライドは小さくしない */
  z-index: 1; /* 中央のスライドを一番上にする */
  position: relative;
}
.swiper-slide-active .bike_container {
  border: 4px solid #009ADE;
  min-height: 850px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -5%);
          transform: translate(-50%, -5%);
  padding: 40px 16px;
}
@media screen and (max-width: 768px) {
  .swiper-slide-active .bike_container {
    padding: 24px 7px 15px 7px;
    min-height: auto;
  }
}
.swiper-slide-active .bike_name {
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .swiper-slide-active .bike_name {
    font-size: 1rem;
  }
}

.bike_container {
  background-color: #FFFFFF;
  padding: 24px 30px;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 768px) {
  .bike_container {
    padding: 31px 12px 24px 12px;
  }
}

.bike_img {
  width: 100%;
}
.bike_img img {
  max-width: 470px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .bike_img img {
    max-width: 256px;
    margin-left: auto;
    margin-right: auto;
  }
}

.bike_name_box {
  margin-top: 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 11px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 470px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .bike_name_box {
    margin-top: 16px;
    max-width: 220px;
  }
}

.bike_name {
  font-family: "Noto Serif JP", serif;
  font-size: 1.25rem;
  color: #333333;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .bike_name {
    font-size: 1.125rem;
  }
}

.bike_name_sub {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  color: #333333;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .bike_name_sub {
    font-size: 0.9rem;
    line-height: 24px;
  }
}

.bike_detail {
  background-color: #F0F0F0;
  padding: 29px 23px 31px 23px;
  margin-top: 24px;
  margin-left: 22px;
  margin-right: 22px;
}
@media screen and (max-width: 768px) {
  .bike_detail {
    margin-left: 7px;
    margin-right: 7px;
    padding: 7px 23px 24px 22px;
  }
}
.bike_detail table {
  border-collapse: collapse;
  width: 100%;
}
.bike_detail table tbody tr {
  border-bottom: 1px solid #CFCFCF;
}
@media screen and (max-width: 768px) {
  .bike_detail table tbody tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
.bike_detail table tbody tr th,
.bike_detail table tbody tr td {
  padding-top: 7px;
  padding-bottom: 8px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .bike_detail table tbody tr th,
  .bike_detail table tbody tr td {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.bike_detail table tbody tr th:nth-child(1),
.bike_detail table tbody tr td:nth-child(1) {
  width: 90px;
  text-align: left;
  font-size: 1.125rem;
  color: #333333;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .bike_detail table tbody tr th:nth-child(1),
  .bike_detail table tbody tr td:nth-child(1) {
    font-size: 1rem;
  }
}
.bike_detail table tbody tr th:nth-child(2),
.bike_detail table tbody tr td:nth-child(2) {
  font-size: 1.125rem;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .bike_detail table tbody tr th:nth-child(2),
  .bike_detail table tbody tr td:nth-child(2) {
    font-size: 1rem;
    letter-spacing: 0.2px;
  }
}
.bike_detail table tbody tr td {
  padding-left: 6px;
}
@media screen and (max-width: 768px) {
  .bike_detail table tbody tr td {
    padding-left: 0;
  }
}

.bike_td_sub {
  position: absolute;
  width: 214px;
  height: 29px;
  background: url(../../img/suzuki/bike_frame.png) no-repeat center center/cover;
  top: 1%;
  right: 7px;
  font-size: 0.775rem;
  color: #333333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 18px;
}
@media screen and (max-width: 768px) {
  .bike_td_sub {
    background: url(../../img/suzuki/bike_frame_sp.png) no-repeat center center/cover;
    width: 137px;
    height: 17px;
    font-size: 0.525rem;
    padding-left: 0;
    top: 22%;
    right: -3px;
  }
}

.bike_blue2 {
  color: #009ADE;
  font-size: 0.875rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .bike_blue2 {
    font-size: 0.625rem;
  }
}

.bike_button {
  color: #FFFFFF;
  background-color: #009ADE;
  padding: 18px 82px 18px 49px;
  font-size: 1.125rem;
  position: relative;
  margin-top: 19px;
  border-radius: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .bike_button {
    display: none;
  }
}
.bike_button:hover {
  background-color: #20ACEA;
}
.bike_button::after {
  position: absolute;
  content: "";
  background: url(../../img/suzuki/bike_button.png) no-repeat center center/cover;
  width: 18px;
  height: 18px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 50px;
}

.bike_button_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .bike_button_sp {
    display: block;
    padding: 12px 75px 12px 50px;
    font-size: 0.9rem;
    color: #FFFFFF;
    background-color: #009ADE;
    position: relative;
    margin-top: 24px;
    border-radius: 5px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .bike_button_sp::after {
    position: absolute;
    content: "";
    background: url(../../img/suzuki/bike_button.png) no-repeat center center/cover;
    width: 18px;
    height: 18px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 50px;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .bike_button_sp::after {
    right: 44px;
  }
}

.gallery_prev,
.gallery_next {
  width: 47px;
  height: 76px;
  margin-top: -81px;
}
@media screen and (max-width: 768px) {
  .gallery_prev,
  .gallery_next {
    width: 26px;
    height: 34px;
    margin-top: -62px;
  }
}
.gallery_prev::after,
.gallery_next::after {
  display: none;
}

.gallery_prev {
  left: -80px;
  background: url(../../img/suzuki/bike_prev.png) no-repeat center center/contain;
}
@media screen and (max-width: 768px) {
  .gallery_prev {
    left: -38px;
  }
}

.gallery_next {
  right: -80px;
  background: url(../../img/suzuki/bike_next.png) no-repeat center center/contain;
}
@media screen and (max-width: 768px) {
  .gallery_next {
    right: -38px;
  }
}

.bike_comment {
  max-width: 1000px;
  margin-top: 120px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1200px) {
  .bike_comment {
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media screen and (max-width: 768px) {
  .bike_comment {
    padding-left: 0;
    padding-right: 0;
    width: 330px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
  }
}

.cta {
  background: url(../../img/suzuki/cta_back.png) no-repeat center center/cover;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .cta {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.cta_inner {
  padding-left: 15.2777777778%;
  padding-right: 15.2777777778%;
}
@media screen and (max-width: 768px) {
  .cta_inner {
    padding-left: 7.6923076923%;
    padding-right: 7.6923076923%;
  }
}

@media screen and (max-width: 768px) {
  .cta_box {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
}

.cta_container {
  background: #FFFFFF;
  -webkit-box-shadow: 0 0 16px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 16px rgba(0, 0, 0, 0.3);
}

.cta_top {
  background: #0066CC;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  padding: 40px 20px 31px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .cta_top {
    padding: 32px 40px;
  }
}

.xl_hidden {
  display: none;
}
@media screen and (max-width: 1200px) {
  .xl_hidden {
    display: block;
  }
}

.lg_hidden {
  display: none;
}
@media screen and (max-width: 900px) {
  .lg_hidden {
    display: block;
  }
}

.cta_logo {
  width: 100%;
}
.cta_logo img {
  display: block;
  max-width: 274px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .cta_logo img {
    max-width: 200px;
  }
}

.cta_title {
  margin-top: 28px;
  color: #FFFFFF;
  font-size: 3rem;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  line-height: 46px;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .cta_title {
    margin-top: 20px;
    line-height: 54px;
  }
}
@media screen and (max-width: 1000px) {
  .cta_title {
    line-height: 54px;
    margin-top: 16px;
  }
}
@media screen and (max-width: 768px) {
  .cta_title {
    font-size: 2rem;
    text-align: center;
    margin-top: 26px;
    line-height: 42px;
  }
}

.cta_small {
  font-size: 2.56rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .cta_small {
    font-size: 1.68rem;
  }
}

.cta_number {
  font-size: 3.75rem;
  font-weight: 700;
}
@media screen and (max-width: 1000px) {
  .cta_number {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 768px) {
  .cta_number {
    font-size: 2.5rem;
  }
}

.cta_big {
  font-size: 4.5rem;
  font-weight: 700;
}
@media screen and (max-width: 1000px) {
  .cta_big {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 768px) {
  .cta_big {
    font-size: 3rem;
  }
}

.cta_merit {
  margin-top: 35px;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .cta_merit {
    margin-top: 28px;
  }
}
@media screen and (max-width: 768px) {
  .cta_merit {
    margin-top: 27px;
  }
}
.cta_merit img {
  display: block;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1200px) {
  .cta_merit img {
    max-width: 550px;
  }
}
@media screen and (max-width: 1000px) {
  .cta_merit img {
    max-width: 450px;
  }
}
@media screen and (max-width: 768px) {
  .cta_merit img {
    max-width: 253px;
  }
}

.cta_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 19px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px;
}
.cta_bottom > * {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 293px;
}
@media screen and (max-width: 1330px) {
  .cta_bottom > * {
    min-width: 255px;
  }
}
@media screen and (max-width: 1200px) {
  .cta_bottom > * {
    min-width: 210px;
  }
}
@media screen and (max-width: 1000px) {
  .cta_bottom > * {
    min-width: 390px;
  }
}
@media screen and (max-width: 768px) {
  .cta_bottom > * {
    min-width: 282px;
  }
}
@media screen and (max-width: 1000px) {
  .cta_bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 19px;
  }
}
@media screen and (max-width: 768px) {
  .cta_bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 19px;
    padding: 24px 25px 36px 26px;
  }
}

.header_tel_cta {
  padding: 12px 15px 24px 76px;
}
@media screen and (max-width: 1330px) {
  .header_tel_cta {
    padding: 18px 0px 26px 49px;
  }
}
@media screen and (max-width: 1200px) {
  .header_tel_cta {
    padding: 20px 0px 24px 37px;
  }
}
@media screen and (max-width: 1000px) {
  .header_tel_cta {
    padding: 17px 15px 19px 76px;
  }
}
@media screen and (max-width: 768px) {
  .header_tel_cta {
    padding: 11px 40px 11px 103px;
  }
}
.header_tel_cta::before {
  width: 51px;
  height: 51px;
}
@media screen and (max-width: 1330px) {
  .header_tel_cta::before {
    left: 7px;
  }
}
@media screen and (max-width: 1200px) {
  .header_tel_cta::before {
    width: 40px;
    height: 40px;
    left: 10px;
  }
}
@media screen and (max-width: 1100px) {
  .header_tel_cta::before {
    left: 5px;
  }
}
@media screen and (max-width: 1000px) {
  .header_tel_cta::before {
    left: 38px;
    width: 51px;
    height: 51px;
  }
}
@media screen and (max-width: 768px) {
  .header_tel_cta::before {
    width: 49px;
    height: 49px;
    left: 42px;
  }
}

.header_tel_top_cta {
  font-size: 2rem;
}
@media screen and (max-width: 1330px) {
  .header_tel_top_cta {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1200px) {
  .header_tel_top_cta {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1000px) {
  .header_tel_top_cta {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .header_tel_top_cta {
    font-size: 1.4rem;
  }
}

.header_tel_bottom_cta {
  font-size: 1rem;
}
@media screen and (max-width: 1200px) {
  .header_tel_bottom_cta {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 1000px) {
  .header_tel_bottom_cta {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  .header_tel_bottom_cta {
    font-size: 0.9rem;
    margin-top: 3px;
  }
}

.header_mail_cta {
  font-size: 1.5rem;
  padding: 15px 30px 21px 80px;
  text-align: left;
}
@media screen and (max-width: 1330px) {
  .header_mail_cta {
    font-size: 1.5rem;
    padding: 15px 25px 21px 71px;
  }
}
@media screen and (max-width: 1200px) {
  .header_mail_cta {
    font-size: 1.2rem;
    padding: 17px 0px 19px 37px;
  }
}
@media screen and (max-width: 1000px) {
  .header_mail_cta {
    font-size: 1.7rem;
    padding: 17px 40px 19px 100px;
  }
}
@media screen and (max-width: 768px) {
  .header_mail_cta {
    padding: 27px 22px 27px 76px;
    font-size: 1.125rem;
  }
}
.header_mail_cta::before {
  width: 52px;
  height: 51px;
  left: 37px;
}
@media screen and (max-width: 1330px) {
  .header_mail_cta::before {
    left: 13px;
  }
}
@media screen and (max-width: 1200px) {
  .header_mail_cta::before {
    width: 40px;
    height: 40px;
    left: 20px;
  }
}
@media screen and (max-width: 1100px) {
  .header_mail_cta::before {
    left: 14px;
  }
}
@media screen and (max-width: 1000px) {
  .header_mail_cta::before {
    left: 67px;
    width: 52px;
    height: 51px;
  }
}
@media screen and (max-width: 768px) {
  .header_mail_cta::before {
    width: 49px;
    height: 49px;
    left: 24px;
  }
}

.sp_hidden {
  display: block;
}
@media screen and (max-width: 768px) {
  .sp_hidden {
    display: none;
  }
}

.header_line_cta {
  font-size: 1.5rem;
  padding: 15px 30px 21px 80px;
  text-align: left;
}
@media screen and (max-width: 1330px) {
  .header_line_cta {
    font-size: 1.5rem;
    padding: 14px 20px 21px 59px;
  }
}
@media screen and (max-width: 1200px) {
  .header_line_cta {
    font-size: 1.2rem;
    padding: 16px 0px 19px 37px;
  }
}
@media screen and (max-width: 1000px) {
  .header_line_cta {
    font-size: 1.7rem;
    padding: 17px 36px 19px 100px;
  }
}
@media screen and (max-width: 768px) {
  .header_line_cta {
    font-size: 1.125rem;
    padding: 15px 51px 15px 112px;
  }
}
.header_line_cta::before {
  width: 46px;
  height: 40px;
  left: 37px;
}
@media screen and (max-width: 1330px) {
  .header_line_cta::before {
    left: 10px;
  }
}
@media screen and (max-width: 1200px) {
  .header_line_cta::before {
    width: 37px;
    height: 32px;
    left: 18px;
  }
}
@media screen and (max-width: 1100px) {
  .header_line_cta::before {
    left: 10px;
  }
}
@media screen and (max-width: 1000px) {
  .header_line_cta::before {
    left: 67px;
    width: 46px;
    height: 40px;
  }
}
@media screen and (max-width: 768px) {
  .header_line_cta::before {
    width: 44px;
    height: 38px;
    left: 53px;
  }
}

.checkpoint {
  margin-top: 134px;
  margin-bottom: 220px;
}
@media screen and (max-width: 768px) {
  .checkpoint {
    margin-top: 60px;
    margin-bottom: 107px;
  }
}

.checkpoint_inner {
  padding-left: 13.8888888889%;
  padding-right: 13.8888888889%;
}
@media screen and (max-width: 1200px) {
  .checkpoint_inner {
    padding-left: 10.277778%;
    padding-right: 10.277778%;
  }
}
@media screen and (max-width: 1000px) {
  .checkpoint_inner {
    padding-left: 15.2777777778%;
    padding-right: 15.2777777778%;
  }
}
@media screen and (max-width: 768px) {
  .checkpoint_inner {
    padding-left: 5.1282051282%;
    padding-right: 5.1282051282%;
  }
}

@media screen and (max-width: 768px) {
  .checkpoint_box {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
}

.checkpoint_subtitle {
  font-family: "Noto Serif JP", serif;
  color: #009ADE;
  font-weight: 500;
  font-size: 1.5rem;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .checkpoint_subtitle {
    font-size: 1.125rem;
  }
}
.checkpoint_subtitle::after {
  position: absolute;
  background: #009ADE;
  content: "";
  width: 400px;
  height: 3px;
  bottom: -18px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .checkpoint_subtitle::after {
    width: 273px;
    height: 2px;
    bottom: -12px;
  }
}

.checkpoint_title {
  font-family: "Noto Serif JP", serif;
  color: #009ADE;
  font-size: 3rem;
  text-align: center;
  margin-top: 32px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .checkpoint_title {
    font-size: 2rem;
    margin-top: 20px;
  }
}

.checkpoint_comment {
  margin-top: 64px;
  width: 100%;
  display: block;
}
@media screen and (max-width: 768px) {
  .checkpoint_comment {
    margin-top: 34px;
  }
}
.checkpoint_comment img {
  display: block;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1300px) {
  .checkpoint_comment img {
    max-width: 850px;
  }
}
@media screen and (max-width: 1200px) {
  .checkpoint_comment img {
    max-width: 750px;
  }
}
@media screen and (max-width: 1000px) {
  .checkpoint_comment img {
    max-width: 650px;
  }
}
@media screen and (max-width: 900px) {
  .checkpoint_comment img {
    max-width: 500px;
  }
}
@media screen and (max-width: 768px) {
  .checkpoint_comment img {
    max-width: 333px;
  }
}

.checkpoint_boxes {
  margin-top: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .checkpoint_boxes {
    margin-top: 32px;
    gap: 18px;
  }
}

.checkpoint_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 90px;
  background-color: #FFFFFF;
  position: relative;
  width: 780px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1000px) {
  .checkpoint_container {
    max-width: 600px;
  }
}
@media screen and (max-width: 900px) {
  .checkpoint_container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    background-color: #EAF3FA;
    max-width: 500px;
  }
}
@media screen and (max-width: 768px) {
  .checkpoint_container {
    max-width: 333px;
  }
}

.checkpoint_left {
  color: #FFFFFF;
  font-size: 2rem;
  font-family: "Noto Serif JP", serif;
  padding: 10px 30px 15px 24px;
  font-weight: 700;
  background-color: #009ADE;
  min-height: 90px;
}
@media screen and (max-width: 1000px) {
  .checkpoint_left {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 900px) {
  .checkpoint_left {
    font-size: 1.125rem;
    padding: 0px 28px;
    min-height: 48px;
  }
}

.checkpoint_number {
  font-size: 3rem;
  color: #FFFFFF;
  font-family: "Noto Serif JP", serif;
  padding-left: 10px;
  font-weight: 700;
}
@media screen and (max-width: 900px) {
  .checkpoint_number {
    font-size: 2rem;
  }
}

.checkpoint_right {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  color: #333333;
  font-weight: 700;
  padding: 24px 24px 20px 10px;
}
@media screen and (max-width: 1000px) {
  .checkpoint_right {
    font-size: 1.5rem;
    padding: 12px 24px 12px 10px;
  }
}
@media screen and (max-width: 900px) {
  .checkpoint_right {
    background-color: #FFFFFF;
    font-size: 1.5rem;
    padding: 24px 24px;
    width: 500px;
  }
}
@media screen and (max-width: 768px) {
  .checkpoint_right {
    width: 333px;
    font-size: 1.125rem;
    padding: 16px 24px;
  }
}

.checkpoint_blue {
  color: #009ADE;
  font-weight: 700;
}

.reason_top {
  background: url(../../img/suzuki/reason_background_top.png) no-repeat center center/cover;
  position: absolute;
  top: -160px;
  width: 100%;
  height: 160px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .reason_top {
    background: url(../../img/suzuki/reason_background_sp_top.png) no-repeat center center/cover;
    position: absolute;
    top: -81px;
    width: 100%;
    height: 83px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.reason {
  background: #FFFFFF;
  padding-top: 4px;
  position: relative;
  padding-bottom: 138px;
}
@media screen and (max-width: 768px) {
  .reason {
    background: #FFFFFF;
    padding-top: 39px;
    position: relative;
  }
}

.reason_inner {
  padding-left: 15.2777777778%;
  padding-right: 15.2777777778%;
}
@media screen and (max-width: 768px) {
  .reason_inner {
    padding-left: 5.1282051282%;
    padding-right: 5.1282051282%;
  }
}

@media screen and (max-width: 768px) {
  .reason_box {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
}

.reason_text {
  margin-top: 53px;
  width: 100%;
  display: block;
}
@media screen and (max-width: 768px) {
  .reason_text {
    margin-top: -5px;
  }
}
.reason_text img {
  display: block;
  max-width: 719px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 900px) {
  .reason_text img {
    max-width: 560px;
  }
}
@media screen and (max-width: 768px) {
  .reason_text img {
    max-width: 333px;
  }
}

.reason_container {
  margin-top: 39px;
  border: 3px solid #009ADE;
}

.reason_title {
  background-color: #009ADE;
  padding: 32px 0 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .reason_title {
    padding: 23px 0 26px;
  }
}
.reason_title p {
  font-family: "Noto Serif JP", serif;
  font-size: 2.5rem;
  color: #FFFFFF;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .reason_title p {
    font-size: 1.5rem;
  }
}
.reason_title p:nth-child(2) {
  font-size: 4rem;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  margin-top: -4px;
}
@media screen and (max-width: 768px) {
  .reason_title p:nth-child(2) {
    font-size: 2.5rem;
  }
}
.reason_title p:nth-child(2)::before, .reason_title p:nth-child(2)::after {
  position: absolute;
  content: "";
  background: #FFFFFF;
  width: 60px;
  height: 3px;
  top: 61%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .reason_title p:nth-child(2)::before, .reason_title p:nth-child(2)::after {
    width: 54px;
    top: 57%;
  }
}
.reason_title p:nth-child(2)::before {
  left: -70px;
  rotate: 59deg;
}
@media screen and (max-width: 768px) {
  .reason_title p:nth-child(2)::before {
    left: -57px;
  }
}
.reason_title p:nth-child(2)::after {
  right: -70px;
  rotate: -59deg;
}
@media screen and (max-width: 768px) {
  .reason_title p:nth-child(2)::after {
    right: -61px;
  }
}

.reason_title_2 {
  font-size: 4.5rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .reason_title_2 {
    font-size: 3.5rem;
  }
}

.reason_des_box {
  padding: 52px 60px 60px 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .reason_des_box {
    padding: 32px 24px 56px;
    gap: 30px;
  }
}

.reason_content {
  background-color: #EAF3FA;
  padding: 45px 38px 32px 39px;
}
@media screen and (max-width: 768px) {
  .reason_content {
    padding: 24px 16px;
  }
}

.reason_content_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.reason_content_number img {
  display: block;
  min-width: 56px;
  max-width: 56px;
}
@media screen and (max-width: 768px) {
  .reason_content_number img {
    min-width: 40px;
    max-width: 40px;
  }
}

.reason_content_title {
  font-size: 2rem;
  font-family: "Noto Serif JP", serif;
  color: #009ADE;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .reason_content_title {
    font-size: 1.5rem;
  }
}

.reason_content_bottom {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 62px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .reason_content_bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .reason_content_bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}

.reason_content_text {
  color: #000000;
  font-size: 1.125rem;
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}
@media screen and (max-width: 768px) {
  .reason_content_text {
    font-size: 1rem;
  }
}

.reason_content_img {
  width: 250px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 900px) {
  .reason_content_img {
    margin-left: auto;
    margin-right: auto;
  }
}
.reason_content_img img {
  display: block;
}

.compare {
  margin-top: 134px;
  margin-bottom: 179px;
}
@media screen and (max-width: 768px) {
  .compare {
    margin-top: 61px;
    margin-bottom: 60px;
  }
}

.compare_inner {
  padding-left: 15.2777777778%;
  padding-right: 15.2777777778%;
}
@media screen and (max-width: 1200px) {
  .compare_inner {
    padding-left: 12.277778%;
    padding-right: 12.277778%;
  }
}
@media screen and (max-width: 768px) {
  .compare_inner {
    padding-left: 5.1282051282%;
    padding-right: 5.1282051282%;
  }
}

@media screen and (max-width: 768px) {
  .compare_box {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
}

.compare_subtitle {
  color: #009ADE;
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  text-align: center;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 768px) {
  .compare_subtitle {
    font-size: 1.125rem;
  }
}
.compare_subtitle::after {
  position: absolute;
  background: #009ADE;
  content: "";
  width: 280px;
  height: 3px;
  bottom: -18px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .compare_subtitle::after {
    width: 214px;
    height: 2px;
    bottom: -12px;
  }
}

.compare_title {
  color: #009ADE;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-top: 33px;
}
@media screen and (max-width: 768px) {
  .compare_title {
    font-size: 2rem;
    margin-top: 30px;
  }
}

.compare_blue {
  font-weight: 700;
  color: #0066CC;
}

.compare_container {
  margin-top: 84px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .compare_container {
    margin-top: 43px;
  }
}

.compare_01_title {
  color: #333333;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  text-align: center;
  position: relative;
  font-weight: 500;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding-left: 65px;
}
@media screen and (max-width: 768px) {
  .compare_01_title {
    font-size: 1.5rem;
    padding-left: 57px;
    text-align: left;
    margin-left: 0;
    font-weight: 600;
  }
}
.compare_01_title::before {
  position: absolute;
  content: "";
  background: url(../../img/suzuki/compare_check.png) no-repeat center center/cover;
  width: 49px;
  height: 48px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 768px) {
  .compare_01_title::before {
    width: 43px;
    height: 41px;
    left: 11px;
  }
}
.compare_01_title::after {
  position: absolute;
  content: "";
  background: #333333;
  width: 380px;
  height: 2px;
  bottom: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .compare_01_title::after {
    width: 333px;
    bottom: -11px;
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

/* 3秒でフェードアウト */
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.scroll_hint {
  display: none;
}
@media screen and (max-width: 768px) {
  .scroll_hint {
    display: block;
    position: absolute;
    top: 70%;
    right: 40%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-animation: fadeOut 3s ease-in forwards;
            animation: fadeOut 3s ease-in forwards;
    z-index: 2;
  }
  .scroll_hint img {
    width: 120px; /* 画像サイズ調整 */
    opacity: 0.9;
  }
}

.compare_table_img {
  margin-top: 62px;
  display: block;
}
@media screen and (max-width: 768px) {
  .compare_table_img {
    overflow-x: auto; /* 横スクロールを有効化 */
    -webkit-overflow-scrolling: touch;
    margin-top: 31px;
  }
}
@media screen and (max-width: 768px) {
  .compare_table_img img {
    min-width: 453px; /* 横幅453px確保 */
    width: auto; /* 親幅に合わせない */
    display: block;
  }
}

._02 {
  margin-top: 68px;
}
@media screen and (max-width: 768px) {
  ._02 {
    margin-top: 44px;
  }
}

._02_title::after {
  width: 281px;
}
@media screen and (max-width: 768px) {
  ._02_title::after {
    width: 333px;
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

._03 {
  margin-top: 67px;
}
@media screen and (max-width: 768px) {
  ._03 {
    margin-top: 46px;
  }
}

._03_title::after {
  width: 313px;
}
@media screen and (max-width: 768px) {
  ._03_title::after {
    width: 333px;
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.qa {
  margin-top: 128px;
  margin-bottom: 128px;
}
@media screen and (max-width: 768px) {
  .qa {
    margin-top: 64px;
    margin-bottom: 64px;
  }
}

.qa_inner {
  padding-left: 15.2777777778%;
  padding-right: 15.2777777778%;
}
@media screen and (max-width: 768px) {
  .qa_inner {
    padding-left: 5.1282051282%;
    padding-right: 5.1282051282%;
  }
}

@media screen and (max-width: 768px) {
  .qa_box2 {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
}

.qa_title {
  font-family: "Noto Serif JP", serif;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  color: #009ADE;
}
@media screen and (max-width: 900px) {
  .qa_title {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .qa_title {
    font-size: 2rem;
  }
}

.qa_boxes {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .qa_boxes {
    margin-top: 40px;
    gap: 18px;
  }
}

.qa_box.is-open .qa_box_head::after {
  background: url(../../img/suzuki/fq_close.png) no-repeat center center/contain;
}

.qa_box_head {
  padding: 11px 200px 11px 24px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 8px;
  width: 100%;
  background-color: #009ADE;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .qa_box_head {
    padding: 6px 40px 6px 16px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.qa_box_head::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 30px;
  height: 26px;
  background: url(../../img/suzuki/fq_open.png) no-repeat center center/contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .qa_box_head::after {
    width: 18px;
    height: 16px;
    right: 18px;
  }
}

.qa_box_head_icon {
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .qa_box_head_icon {
    font-size: 1.125rem;
  }
}

.qa_box_head_text {
  display: block;
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: left;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  .qa_box_head_text {
    font-size: 1.125rem;
    letter-spacing: 0.1px;
  }
}

.qa_box_body {
  padding: 16px 24px;
  display: none;
  background-color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .qa_box_body {
    padding: 8px 16px;
  }
}

.qa_box_a p {
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .qa_box_a p {
    font-size: 1rem;
  }
}

.thought {
  margin-top: 128px;
  margin-bottom: 128px;
}
@media screen and (max-width: 768px) {
  .thought {
    margin-top: 64px;
    margin-bottom: 64px;
  }
}

.thought_inner {
  padding-left: 15.2777777778%;
  padding-right: 15.2777777778%;
}
@media screen and (max-width: 768px) {
  .thought_inner {
    padding-left: 5.1282051282%;
    padding-right: 5.1282051282%;
  }
}

@media screen and (max-width: 768px) {
  .thought_box {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
}

.thought_title {
  color: #F15A24;
  font-weight: 700;
  text-align: center;
  font-size: 700px;
  font-family: "Noto Serif JP", serif;
  font-size: 2.5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .thought_title {
    font-size: 2rem;
  }
}
.thought_title::after {
  position: absolute;
  content: "";
  background: #F15A24;
  width: 720px;
  height: 3px;
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 980px) {
  .thought_title::after {
    width: 550px;
  }
}
@media screen and (max-width: 768px) {
  .thought_title::after {
    width: 333px;
    bottom: -21px;
  }
}

.only_lg {
  display: none;
}
@media screen and (max-width: 980px) {
  .only_lg {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .only_lg {
    display: none;
  }
}

.thought_textbox {
  margin-top: 75px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .thought_textbox {
    margin-top: 61px;
  }
}

.thought_text01 {
  color: #333333;
  font-weight: 600;
  font-size: 1.5rem;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  .thought_text01 {
    font-size: 1.125rem;
  }
}

.thought_text02 {
  margin-top: 24px;
  color: #333333;
  font-size: 1.125rem;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  .thought_text02 {
    font-size: 1rem;
  }
}

.thought_text03 {
  margin-top: 24px;
  color: #F15A24;
  font-size: 1.125rem;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  .thought_text03 {
    font-size: 1rem;
    margin-top: 28px;
  }
}

.thought_img {
  margin-top: 40px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .thought_img {
    margin-top: 32px;
  }
}
.thought_img img {
  display: block;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .thought_img img {
    max-width: 300px;
  }
}

.contact {
  background-color: #FFFFFF;
  padding-top: 127px;
  padding-bottom: 128px;
}
@media screen and (max-width: 768px) {
  .contact {
    padding-top: 57px;
    padding-bottom: 64px;
  }
}

.contact_inner {
  padding-left: 15.2777777778%;
  padding-right: 15.2777777778%;
}
@media screen and (max-width: 768px) {
  .contact_inner {
    padding-left: 5.1282051282%;
    padding-right: 5.1282051282%;
  }
}

@media screen and (max-width: 768px) {
  .contact_box {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
}

.contact_title {
  font-family: "Noto Serif JP", serif;
  font-size: 3rem;
  font-weight: 700;
  color: #009ADE;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .contact_title {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .contact_title {
    font-size: 2rem;
  }
}

.contact_des {
  margin-top: 46px;
  text-align: center;
  color: #000000;
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .contact_des {
    font-size: 1rem;
    margin-top: 33px;
  }
}
.contact_des a:hover {
  opacity: 0.7;
}

.contact_fields {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 31px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .contact_fields {
    margin-top: 32px;
    max-width: 333px;
    margin-left: auto;
    margin-right: auto;
    gap: 16px;
  }
}

.contact_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .contact_head {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 180px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    gap: 8px;
  }
}

.contact_head_name {
  font-size: 1.125rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .contact_head_name {
    font-size: 1rem;
  }
}

.contact_head_tag {
  color: #FFF;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 1.98px;
  width: 38px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #0066CC;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* Flexboxを使用 */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* 水平方向の中央揃え */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .contact_head_tag {
    font-size: 0.75rem;
    width: 34px;
    height: 22px;
  }
}

.contact_name_text {
  width: 100%;
  height: 59px;
  border: 1px solid #CFCFCF;
  background: #F8F8F8;
  color: #333333;
  line-height: 170%; /* 27.2px */
  padding: 16px 24px;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
@media screen and (max-width: 768px) {
  .contact_name_text {
    margin-top: 8px;
    height: 35px;
    padding: 10px 16px;
  }
}
.contact_name_text:hover, .contact_name_text:focus {
  border-color: #F8F8F8;
  outline: none;
}

.contact_text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .contact_text {
    margin-top: 8px;
  }
}

.contact_textarea {
  width: 100%;
  height: 236px;
  border: 1px solid #CFCFCF;
  background: #F8F8F8;
  padding: 16px 24px;
}
@media screen and (max-width: 768px) {
  .contact_textarea {
    height: 180px;
    padding: 8px 16px;
  }
}
.contact_textarea:hover, .contact_textarea:focus {
  border-color: #F8F8F8;
  outline: none;
}

.contact_button {
  text-align: center;
  margin-top: 40px;
  position: relative;
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .contact_button {
    margin-top: 32px;
    max-width: 333px;
  }
}
.contact_button::after {
  position: absolute;
  content: "";
  background: url(../../img/suzuki/contact_arrow.png) no-repeat center center/cover;
  width: 11px;
  height: 17px;
  top: 63%;
  right: 67px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .contact_button::after {
    right: 121px;
    width: 9px;
    height: 15px;
  }
}

.contact_button_input {
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.48px;
  color: #FFFFFF;
  display: inline-block;
  background: #009ADE;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 1.125rem;
  border: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  width: 100%;
  padding-right: 32px;
}
.contact_button_input:hover, .contact_button_input:focus {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .contact_button_input {
    width: 100%;
    padding-top: 13px;
    padding-bottom: 13px;
    font-size: 1rem;
    padding-right: 24px;
  }
}

.contact_name_text::-webkit-input-placeholder {
  color: #AEAEAE;
}

.contact_name_text::-moz-placeholder {
  color: #AEAEAE;
}

.contact_name_text:-ms-input-placeholder {
  color: #AEAEAE;
}

.contact_name_text::-ms-input-placeholder {
  color: #AEAEAE;
}

.contact_name_text::placeholder {
  color: #AEAEAE;
}

.contact_textarea::-webkit-input-placeholder {
  color: #AEAEAE;
}

.contact_textarea::-moz-placeholder {
  color: #AEAEAE;
}

.contact_textarea:-ms-input-placeholder {
  color: #AEAEAE;
}

.contact_textarea::-ms-input-placeholder {
  color: #AEAEAE;
}

.contact_textarea::placeholder {
  color: #AEAEAE;
}

.footer {
  padding-top: 127px;
  padding-bottom: 64px;
  background-color: #333333;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-top: 64px;
    padding-bottom: 40px;
  }
}

.footer_inner {
  padding-left: 15.2777777778%;
  padding-right: 15.2777777778%;
}
@media screen and (max-width: 768px) {
  .footer_inner {
    padding-left: 5.1282051282%;
    padding-right: 5.1282051282%;
  }
}

@media screen and (max-width: 1200px) {
  .footer_box {
    width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 768px) {
  .footer_box {
    width: 330px;
    margin-left: auto;
    margin-right: auto;
  }
}

.footer_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .footer_container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .footer_container {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.footer_title {
  font-size: 3rem;
  color: #FFFFFF;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  .footer_title {
    font-size: 2rem;
  }
}

.footer_company {
  border-collapse: collapse;
  margin-top: 12px;
}
@media screen and (max-width: 1200px) {
  .footer_company {
    margin-top: 40px;
  }
}
.footer_company tbody tr {
  border-bottom: 1px solid #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 11px;
  padding-bottom: 12px;
  gap: 16px;
}
@media screen and (max-width: 1200px) {
  .footer_company tbody tr {
    gap: 8px;
    width: 400px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
@media screen and (max-width: 768px) {
  .footer_company tbody tr {
    width: 299px;
  }
}
.footer_company tbody tr th {
  position: relative;
  padding-left: 19px;
}
@media screen and (max-width: 1200px) {
  .footer_company tbody tr th {
    padding-left: 26px;
  }
}
.footer_company tbody tr th::before {
  position: absolute;
  content: "";
  background: url(../../img/suzuki/footer_list.png) no-repeat center center/cover;
  width: 16px;
  height: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 1000px) {
  .footer_company tbody tr th {
    white-space: nowrap;
  }
}
.footer_company tbody tr th, .footer_company tbody tr td {
  color: #FFFFFF;
  font-size: 1.125rem;
  text-align: left;
}
@media screen and (max-width: 1000px) {
  .footer_company tbody tr th, .footer_company tbody tr td {
    font-size: 1rem;
  }
}
@media screen and (max-width: 900px) {
  .footer_company tbody tr th, .footer_company tbody tr td {
    text-align: left;
    font-size: 1rem;
    padding-bottom: 0px;
    padding-top: 0;
  }
}
@media screen and (max-width: 900px) {
  .footer_company tbody tr td {
    padding-bottom: 13px;
  }
}
@media screen and (max-width: 900px) and (max-width: 768px) {
  .footer_company tbody tr td {
    padding-bottom: 0;
  }
}
.footer_company tbody tr:first-child th,
.footer_company tbody tr:first-child td {
  padding-top: 0;
}
.footer_company tbody tr:last-child th {
  padding-top: 0px;
}

@media screen and (max-width: 1200px) {
  .footer_company tbody tr:first-child {
    padding-top: 0;
  }
}

.footer_company tbody tr:last-child {
  border-bottom: none;
}

.map {
  text-align: center;
}

.map iframe {
  aspect-ratio: 7/5;
  max-width: 520px;
}
@media screen and (max-width: 768px) {
  .map iframe {
    width: 110%;
    height: auto;
  }
}

.copyright_box {
  margin-top: 50px;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .copyright_box {
    margin-top: 40px;
  }
}

.copyright {
  color: #FFFFFF;
  font-size: 0.875rem;
}