@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 45px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background-color: #2A2A2A;
  color: #000;
  font-size: 16px;
  line-height: 1.5;
  margin: 0 auto;
  width: 100vw;
  max-width: 768px;
}
body a {
  display: block;
  text-decoration: none;
}
body a img {
  pointer-events: none;
}

main {
  background-color: #fff;
  text-align: center;
  width: 100%;
  max-width: 768px;
}

img {
  height: inherit;
  width: 100%;
  vertical-align: top;
}

.no-click {
  pointer-events: none;
}

.cta {
  width: calc(100% - 40px);
  max-width: 300px;
  margin: 0 auto;
}
.cta_balloon {
  position: relative;
  padding: 4px 0;
  margin-bottom: 10px;
  font-weight: 700;
  border-radius: 5px;
  border: solid 2px #51BF00;
  color: #51BF00;
  background-color: #fff;
}
.cta_balloon::before {
  position: absolute;
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  border-top-color: #51BF00;
  border-width: 6px;
  margin-left: -7px;
}
@keyframes shiny {
  0% {
    left: -20%;
  }
  10% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}
.cta_button {
  position: relative;
  display: block;
  width: 100%;
  line-height: 40px;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  filter: drop-shadow(0 4px 0 #3E9300);
}
.cta_button::after {
  content: "";
  position: absolute;
  top: -10%;
  left: -20%;
  width: 40px;
  height: 100%;
  transform: scale(2) rotate(20deg);
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0.5) 100%, rgba(255, 255, 255, 0) 0%);
  /* アニメーション */
  animation-name: shiny;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.cta_button_text {
  padding: 10px 0;
  font-size: 22px;
  font-weight: 900;
  height: 66px;
  line-height: 1.9;
  color: #FDFDFD;
  border-radius: 5px;
  background-color: #51BF00;
}
.cta_button_text:hover {
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
}
.cta_button_arrow {
  content: "";
  position: absolute;
  transform: translateY(-25%) rotate(-45deg);
  top: 45%;
  right: 20px;
  width: 12px;
  height: 12px;
  border-bottom: 1px solid #FDFDFD;
  border-right: 1px solid #FDFDFD;
}
.cta_supplement {
  color: #fff;
  font-size: 14px;
  margin-top: 10px;
}

.fv {
  position: relative;
  background-color: #000;
}
.fv_title {
  position: absolute;
  top: 41%;
  left: 50%;
  width: 98%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 480px) {
  .fv_title {
    width: 90%;
    top: 42%;
  }
}
.fv_title::before, .fv_title::after {
  content: "";
  width: 150px;
  height: 150px;
  background-image: url(../img/fv_frea.png);
  display: block;
  position: absolute;
  mix-blend-mode: screen;
}
.fv_title::before {
  bottom: -1%;
  left: 12%;
}
.fv_title::after {
  top: 12%;
  right: 15%;
}
@media screen and (min-width: 480px) {
  .fv_title::before {
    bottom: 3%;
    left: 16%;
  }
  .fv_title::after {
    top: 22%;
    right: 21%;
  }
}

.gallery {
  position: relative;
  background-image: url("../img/coating_gallery_bg.png");
  background-size: cover;
  background-repeat: repeat-y;
  padding: 50px 0;
}
.gallery_title {
  width: 214px;
  margin: 0 auto 50px;
}
.gallery_title_carmodel {
  width: 230px;
  margin: 0 auto 0 0;
}
@media screen and (min-width: 480px) {
  .gallery_title_carmodel {
    width: 280px;
  }
}
.gallery_title_carmodel:nth-of-type(2) {
  margin-top: 50px;
}
.gallery_title_carmodel:nth-of-type(3) {
  width: 300px;
  margin-top: 50px;
}
@media screen and (min-width: 480px) {
  .gallery_title_carmodel:nth-of-type(3) {
    width: 380px;
  }
}
.gallery_modal_overlay {
  display: none;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1A1A1A;
  z-index: 9999;
  overflow-y: auto;
}
.gallery_modal_overlay_contents {
  z-index: 10000;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.gallery_modal_overlay_contents_img {
  position: relative;
  max-width: 550px;
  width: calc(100% - 80px);
}
.gallery_modal_overlay_contents_img::before {
  content: "";
  position: absolute;
  top: -25px;
  right: 10px;
  width: 2px;
  height: 30px;
  background: #FDFDFD;
  transform: translate(-50%, -50%) rotate(45deg);
}
.gallery_modal_overlay_contents_img::after {
  content: "";
  position: absolute;
  top: -25px;
  right: 10px;
  width: 2px;
  height: 30px;
  background: #FDFDFD;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.gallery_list {
  display: flex;
  margin: 0 auto;
  width: calc(100% - 20px);
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width: 480px) {
  .gallery_list {
    width: calc(100% - 80px);
  }
}
.gallery_list_item {
  width: 48%;
  list-style: none;
}

#insta {
  padding-top: 50px;
}
#insta a {
  text-decoration: none;
}
#insta ul {
  box-sizing: border-box;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  max-width: 400px;
  width: calc(100% - 20px);
  margin: 0 auto;
}
#insta ul li {
  list-style: none;
  box-sizing: border-box;
  width: 48.5%;
  margin-bottom: 10px;
  position: relative;
}
#insta ul li:first-child {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 10px;
}
#insta ul li:hover .captionTxt {
  transition: 0.5s opacity, 0.25s filter;
  opacity: 1;
}
#insta ul li img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.insta_text {
  width: 90%;
  max-width: 400px;
  margin: 0 auto 30px;
}

.merit {
  display: block;
  background-color: #000;
}
.merit_img_wrap {
  display: none;
}
@media screen and (min-width: 480px) {
  .merit_img_wrap {
    display: block;
  }
}

.page_link {
  background-color: #000;
  padding-top: 50px;
}
.page_link_list {
  display: flex;
  margin: 0 auto;
  width: calc(100% - 20px);
  max-width: 400px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 10px;
}
.page_link_list_item {
  width: 48%;
  list-style: none;
}

.trouble {
  background-color: #000;
}
.trouble_inner {
  margin: 0 20px;
  padding-bottom: 80px;
}
.trouble_inner_text {
  margin: 0 auto;
  display: inline-block;
  color: #FDFDFD;
  font-size: 22px;
  font-weight: 900;
  text-align: left;
}
.trouble_inner_img {
  margin-bottom: 40px;
}
@media screen and (min-width: 480px) {
  .trouble_inner_img {
    margin-bottom: 80px;
  }
}
.trouble_inner .cta {
  margin-bottom: 55px;
}

.facility {
  position: relative;
  z-index: 1;
  background-image: url("../img/coating_facility_bg.png");
  background-size: cover;
  padding: 95px 10px 30px;
  background-color: #000;
}
@media screen and (min-width: 480px) {
  .facility {
    padding: 95px 40px 30px;
  }
}
.facility_balloon {
  position: absolute;
  top: 1%;
  left: 50%;
  width: calc(100% - 60px);
  max-width: 330px;
  transform: translate(-50%, -50%);
}
.facility_balloon_car {
  position: absolute;
  bottom: 25%;
  right: -8%;
  width: 66px;
}
@media screen and (min-width: 480px) {
  .facility_balloon_car {
    width: 86px;
    bottom: -23px;
    right: -25%;
    transform: translate(-50%, -50%);
  }
}
.facility_heading {
  position: relative;
}
.facility_heading::before {
  content: "";
  position: absolute;
  background-image: url("../img/coating_silver_border.png");
  background-size: cover;
  background-position: center;
  bottom: 50px;
  right: 0;
  height: 7px;
  width: 100%;
  mix-blend-mode: screen;
}
.facility_heading_img {
  margin: 0 auto 80px;
  width: 275px;
}
.facility_room_img {
  margin-bottom: 25px;
}
.facility_car_img {
  width: 70%;
  margin: 0 auto 30px;
}
.facility_figcaption {
  display: inline-block;
  color: #FDFDFD;
  text-align: left;
  margin: 0 auto 30px;
}
.facility_text {
  color: #FDFDFD;
  font-size: 24px;
  font-weight: 900;
}
.facility_bottom_arrow {
  position: absolute;
  width: calc(100% - 40px);
  max-width: 350px;
  bottom: 0px;
}
.facility_br {
  display: block;
}
@media screen and (min-width: 480px) {
  .facility_br {
    display: none;
  }
}
.facility_youtube {
  position: relative;
  width: 100%;
  max-width: calc(100% - 20px);
  margin: 0 auto 50px;
  padding-top: 56.25%;
  aspect-ratio: 16/9;
}
.facility_youtube_balloon {
  width: calc(100% - 40px);
  max-width: 350px;
  margin: 0 auto 5px;
}
.facility_youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.keeper_shop {
  overflow: hidden;
  position: relative;
}
.keeper_shop_bottom_arrow {
  position: relative;
  z-index: 1;
}
.keeper_shop_inner {
  position: relative;
  z-index: 0;
  margin-top: -70px;
}
@media screen and (min-width: 480px) {
  .keeper_shop_inner {
    margin-top: -140px;
  }
}
.keeper_shop_inner_logo {
  position: absolute;
  top: 100px;
  left: 50%;
  width: calc(100% - 20px);
  margin-bottom: 30px;
  transform: translate(-50%);
}
@media screen and (min-width: 480px) {
  .keeper_shop_inner_logo {
    width: calc(100% - 80px);
    top: 170px;
  }
}
.keeper_shop_inner_title {
  position: relative;
  margin: 0 20px;
}
.keeper_shop_inner_title_img {
  margin-bottom: 130px;
}
.keeper_shop_inner_title_car {
  position: absolute;
  top: 100%;
  left: 100%;
  width: 70%;
  transform: translate(-50%, -50%);
}
.keeper_shop_staff {
  position: relative;
  background-color: #000;
  padding: 31% 0 90px;
}
.keeper_shop_staff_license {
  position: absolute;
  width: calc(100% - 20px);
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 480px) {
  .keeper_shop_staff_license {
    width: calc(100% - 80px);
  }
}
.keeper_shop_staff_text {
  margin: 50px 40px 30px;
  text-align: left;
  font-size: 20px;
  font-weight: 700;
  color: #FDFDFD;
}
.keeper_shop_staff_message {
  margin: 0 auto;
  width: calc(100% - 60px);
}
.keeper_shop_staff_card {
  margin: 0 20px;
}

.customer_reviews {
  position: relative;
  background-image: url("../img/coating_reviews_bg.png");
  background-size: cover;
  background-position: 50% 70%;
  padding: 85px 0 45px;
}
.customer_reviews_balloon {
  position: absolute;
  width: calc(100% - 40px);
  max-width: 350px;
  top: 5px;
  left: 50%;
  transform: translate(-50%, -50%);
}
.customer_reviews_title {
  width: 160px;
  margin: 0 auto 20px;
}
.customer_reviews_text {
  font-size: 22px;
  color: #FDFDFD;
  margin: 0 auto 75px;
  width: calc(100% - 60px);
}
.customer_reviews_list {
  margin: 0 10px;
}
@media screen and (min-width: 480px) {
  .customer_reviews_list {
    margin: 0 40px;
  }
}
.customer_reviews_list_item {
  position: relative;
  list-style: none;
  background-color: #FDFDFD;
  padding: 20px 15px 20px;
  margin-bottom: 76px;
}
@media screen and (min-width: 480px) {
  .customer_reviews_list_item {
    padding: 40px 30px 40px;
  }
}
.customer_reviews_list_item:last-child {
  margin-bottom: 0;
}
.customer_reviews_list_item_img {
  margin-bottom: 10px;
}
@media screen and (min-width: 480px) {
  .customer_reviews_list_item_img {
    margin-bottom: 20px;
  }
}
.customer_reviews_list_item_text {
  text-align: left;
}
.customer_reviews_list_item_voice {
  position: absolute;
  top: -45px;
  left: 0px;
  width: 130px;
}
@media screen and (min-width: 480px) {
  .customer_reviews_list_item_voice {
    top: -25px;
  }
}

.coating_campaign {
  background-image: url("../img/coating_benefits_bg.png");
  background-size: cover;
  padding: 0 0 80px;
}
@media screen and (min-width: 480px) {
  .coating_campaign {
    padding: 0 20px 80px;
  }
}
.coating_campaign_sub-title {
  position: relative;
  margin: 30px 0 23px;
  color: #FDFDFD;
  font-size: 22px;
  font-weight: 700;
}
.coating_campaign_sub-title::before {
  content: "";
  position: absolute;
  background-image: url("../img/coating_silver_border.png");
  background-size: cover;
  background-position: center;
  bottom: -25px;
  right: 0;
  height: 7px;
  width: 100%;
}

.coating_plan {
  position: relative;
  background-color: #00285D;
}
.coating_plan_bottom_arrow {
  position: absolute;
  width: 100%;
  top: 0px;
}
.coating_plan_list {
  position: relative;
  z-index: 1;
  padding: 0 10px 20px;
  background-color: #00285D;
}
@media screen and (min-width: 480px) {
  .coating_plan_list {
    padding: 0 40px 20px;
  }
}
.coating_plan_list_item {
  position: relative;
  list-style: none;
  top: -72px;
  margin-bottom: 50px;
}
.coating_plan_list_item_water01 {
  position: absolute;
  z-index: -1;
  left: -3%;
  width: 100px;
  top: 8%;
  transform: scaleX(-1);
}
.coating_plan_list_item_water02 {
  position: absolute;
  z-index: -1;
  right: 0%;
  transform: rotate(365deg);
  width: 100px;
  top: -17%;
}
.coating_plan_list_item_water03 {
  position: absolute;
  z-index: -1;
  left: -5%;
  width: 100px;
  top: -18%;
  transform: rotate(365deg) scaleX(-1);
}
.coating_plan_list_item_water04 {
  position: absolute;
  z-index: -1;
  right: 0%;
  width: 100px;
  bottom: -22%;
  transform: rotate(365deg) scaleX(-1);
}
.coating_plan_list_item:first-child .coating_plan_list_item_title {
  background-color: #58BDF2;
}
.coating_plan_list_item:first-child .coating_plan_list_item_title::before {
  border-left: 15px solid #58BDF2;
}
.coating_plan_list_item:first-child .coating_plan_list_item_title::after {
  border-left: 15px solid #58BDF2;
}
.coating_plan_list_item:nth-child(2) .coating_plan_list_item_title {
  background-color: #FFFA70;
  color: #1A1A1A;
}
.coating_plan_list_item:nth-child(2) .coating_plan_list_item_title::before {
  border-left: 15px solid #FFFA70;
}
.coating_plan_list_item:nth-child(2) .coating_plan_list_item_title::after {
  border-left: 15px solid #FFFA70;
}
.coating_plan_list_item:nth-child(3) .coating_plan_list_item_title {
  background-color: #C6AA4D;
}
.coating_plan_list_item:nth-child(3) .coating_plan_list_item_title::before {
  border-left: 15px solid #C6AA4D;
}
.coating_plan_list_item:nth-child(3) .coating_plan_list_item_title::after {
  border-left: 15px solid #C6AA4D;
}
.coating_plan_list_item:last-child {
  margin-bottom: 0;
}
.coating_plan_list_item:last-child .coating_plan_list_item_title {
  background-color: #01A040;
}
.coating_plan_list_item:last-child .coating_plan_list_item_title::before {
  border-left: 15px solid #01A040;
}
.coating_plan_list_item:last-child .coating_plan_list_item_title::after {
  border-left: 15px solid #01A040;
}
.coating_plan_list_item_title {
  position: relative;
  background-color: #58BDF2;
  width: calc(100% - 40px);
  max-width: 355px;
  margin: 0 auto;
  color: #fff;
  font-size: 24px;
  padding: 15px 0 13px;
  margin-bottom: 20px;
}
.coating_plan_list_item_title::before {
  content: "";
  position: absolute;
  top: 0;
  right: -14px;
  width: 0;
  height: 0;
  border-left: 15px solid #58BDF2;
  border-top: 32px solid transparent;
  border-bottom: 32px solid transparent;
}
.coating_plan_list_item_title::after {
  content: "";
  position: absolute;
  transform: rotate(180deg);
  top: 0;
  left: -14px;
  width: 0;
  height: 0;
  border-left: 15px solid #58BDF2;
  border-top: 32px solid transparent;
  border-bottom: 32px solid transparent;
}
.coating_plan_list_item_text {
  color: #FDFDFD;
  margin-bottom: 15px;
}
.coating_plan_difference {
  position: relative;
  z-index: 0;
  overflow: hidden;
  background-color: #00285D;
  padding: 40px 20px 30px;
}
@media screen and (min-width: 480px) {
  .coating_plan_difference {
    padding: 0 40px;
  }
}
.coating_plan_difference_water01 {
  position: absolute;
  z-index: -1;
  right: 0%;
  width: 100px;
  top: -2%;
  transform: rotate(365deg) scaleX(-1);
}
.coating_plan_difference_water02 {
  position: absolute;
  z-index: -1;
  left: 0%;
  width: 100px;
  top: 24%;
  transform: rotate(365deg);
}
.coating_plan_difference_water03 {
  position: absolute;
  z-index: -1;
  right: 0%;
  width: 100px;
  top: 46%;
  transform: rotate(365deg) scaleX(-1);
}
.coating_plan_difference_water04 {
  position: absolute;
  z-index: -1;
  left: 0%;
  width: 100px;
  bottom: 22%;
  transform: rotate(365deg) scaleX(-1);
}
.coating_plan_difference_sub-title {
  color: #FDFDFD;
  font-size: 22px;
  margin-bottom: 10px;
}
.coating_plan_difference_title {
  position: relative;
  display: inline-block;
  color: #FDFDFD;
  font-size: 32px;
  margin-bottom: 40px;
}
.coating_plan_difference_title:before {
  content: "";
  position: absolute;
  background-image: url("../img/coating_arrow01.png");
  background-size: cover;
  background-position: center;
  top: 10px;
  left: -70px;
  width: 62px;
  height: 32px;
}
.coating_plan_difference_title::after {
  content: "";
  position: absolute;
  background-image: url("../img/coating_arrow01.png");
  background-size: cover;
  background-position: center;
  transform: rotate(180deg);
  top: 10px;
  right: -70px;
  width: 62px;
  height: 32px;
}
.coating_plan_difference_graph {
  margin-bottom: 50px;
}
.coating_plan_difference_graph:last-of-type {
  margin-bottom: 20px;
}
.coating_plan_difference_annotation {
  color: #FDFDFD;
}

.cost {
  background-color: #00285D;
}
.cost figure img {
  vertical-align: top;
}

.flow {
  overflow: hidden;
  position: relative;
  padding: 0px 0 150px;
  background-color: #00285D;
}
.flow .cta {
  margin-bottom: 50px;
}
.flow_water01 {
  position: absolute;
  z-index: 0;
  right: 0%;
  width: 100px;
  top: 1%;
  transform: rotate(365deg);
}
.flow_sub-title {
  color: #FDFDFD;
  margin-bottom: 13px;
  font-size: 22px;
  font-weight: 900;
}
.flow_title {
  width: 276px;
  margin: 0 auto 40px;
}
.flow_inner {
  position: relative;
  margin: 0 10px;
  padding: 30px 0;
  background-image: url("../img/coating_frow_bg.png");
  background-size: cover;
}
@media screen and (min-width: 480px) {
  .flow_inner {
    margin: 0 40px;
  }
}
.flow_inner_title {
  font-size: 28px;
  margin-bottom: 28px;
  font-weight: 900;
  color: #0F50A7;
}
.flow_inner_title:nth-of-type(2) {
  color: #00285D;
}
.flow_inner_list {
  margin-bottom: 50px;
  list-style: none;
}
.flow_inner_list:nth-of-type(2) {
  margin-bottom: 0;
}
.flow_inner_list:nth-of-type(2) .flow_inner_list_item:nth-child(6) .flow_inner_list_item_inner_decoration::before {
  height: calc(100% + 30px);
  top: -30px;
}
.flow_inner_list:nth-of-type(2) .flow_inner_list_item:nth-child(6) .flow_inner_list_item_inner_decoration_number {
  top: -100px;
}
.flow_inner_list_item {
  position: relative;
  margin: 0 30px 30px 80px;
  text-align: left;
}
@media screen and (min-width: 480px) {
  .flow_inner_list_item {
    margin: 0 50px 50px 100px;
  }
}
.flow_inner_list_item_number {
  position: absolute;
  top: 0;
  left: 10px;
}
.flow_inner_list_item_title {
  position: relative;
  color: #1A1A1A;
  font-size: 25px;
  margin-bottom: 15px;
}
.flow_inner_list_item_title_number {
  position: absolute;
  top: 0px;
  left: -40px;
}
.flow_inner_list_item_inner {
  height: 100%;
  position: relative;
}
.flow_inner_list_item_inner_decoration {
  position: absolute;
  top: 0;
  left: 40px;
  height: 100%;
}
.flow_inner_list_item_inner_decoration::before {
  content: "";
  position: absolute;
  top: 0px;
  left: -78px;
  height: 100%;
  display: block;
  border-left: 1px solid #0F50A7;
}
.flow_inner_list_item_inner_decoration_number {
  position: absolute;
  top: -70px;
  left: -105px;
  font-size: 41px;
  color: #0F50A7;
  font-weight: 900;
}
.flow_inner_list_item_inner_img {
  margin-bottom: 18px;
}
.flow_inner_list_item_inner_text {
  color: #1A1A1A;
}

.question {
  position: relative;
  background-color: #000;
  padding: 50px 0;
}
.question .cta {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translate(-50%, -50%);
}
.question_title {
  width: 180px;
  margin: 50px auto;
}
.question_accordion {
  position: relative;
  color: #FDFDFD;
  text-align: left;
  padding: 0 35px 20px 40px;
  margin: 0 20px 20px;
}
@media screen and (min-width: 480px) {
  .question_accordion {
    padding: 20px 35px 40px 40px;
    margin: 0 40px 20px;
  }
}
.question_accordion:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
.question_accordion:last-child::before {
  display: none;
}
.question_accordion::before {
  content: "";
  position: absolute;
  background-image: url("../img/coating_silver_border.png");
  background-size: cover;
  background-position: center;
  bottom: -4px;
  right: 0;
  height: 7px;
  width: 100%;
}
.question_accordion_title {
  position: relative;
  font-size: 20px;
}
.question_accordion_title::before {
  content: "Q";
  position: absolute;
  color: #70B1F4;
  top: 45%;
  left: -30px;
  font-weight: 900;
  font-size: 40px;
  transform: translate(-50%, -50%);
}
.question_accordion_title_arrow {
  position: absolute;
  top: 0;
  right: -20px;
  display: flex;
  align-items: center;
  height: 100%;
}
.question_accordion_title_arrow::after {
  content: "";
  position: absolute;
  transform: translateY(-25%) rotate(405deg);
  width: 9px;
  height: 9px;
  border-bottom: 4px solid #707070;
  border-right: 4px solid #707070;
}
.question_accordion_inner {
  position: relative;
  font-size: 20px;
  margin-top: 20px;
  display: none;
}
.question_accordion_inner::before {
  content: "A";
  position: absolute;
  color: #AA0000;
  top: 50%;
  left: -30px;
  font-weight: 900;
  font-size: 40px;
  transform: translate(-50%, -50%);
}
.question_accordion .open .question_accordion_title_arrow::after {
  transform: rotate(225deg);
}

.benefits {
  padding: 40px 10px 120px;
  background-image: url("../img/coating_benefits_bg.png");
  background-size: cover;
}
@media screen and (min-width: 480px) {
  .benefits {
    padding: 40px 40px 127px;
  }
}
.benefits_title {
  margin-bottom: 30px;
}

.price {
  position: relative;
  background-image: url(../img/coating_gallery_bg.png);
  background-size: cover;
  background-repeat: repeat-y;
  padding: 60px 10px 20px;
}
.price > .cta {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translate(-50%, -50%);
}
.price_title {
  margin: 50px auto 30px;
  max-width: 310px;
}
@media screen and (min-width: 480px) {
  .price_title {
    max-width: 374px;
  }
}
.price_links {
  display: flex;
  gap: 30px 10px;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  margin: 0 auto 30px;
  max-width: 680px;
}
.price_links_item {
  width: calc((100% - 10px) / 2);
}
.price_links_item h3 img {
  max-width: 180px;
}
.price_links_item_inner {
  background-color: #fff;
  padding: 20px 10px 10px;
  margin: 10px;
  font-size: 13px;
}
.price_links_item_inner img {
  max-width: 140px;
}
.price_links_item_inner_txt {
  font-weight: bold;
  letter-spacing: -0.06rem;
  margin: 5px 0;
}
.price_links_item_inner_btn {
  background-color: #69B3FF;
  color: #fff;
  padding: 5px 0;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.price_links_item_inner_btn:after {
  content: "▼";
  display: inline-block;
  margin: 0 0 0 10px;
}
.price_links_item_inner_btn:hover {
  background-color: #1989f9;
}
.price_detailbtn {
  width: calc(100% - 40px);
  max-width: 300px;
  margin: 0 auto 50px;
}
.price_detailbtn_btn {
  position: relative;
  display: block;
  width: 100%;
  line-height: 40px;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  filter: drop-shadow(0 4px 0 #AF5E00);
}
.price_detailbtn_btn_text {
  padding: 10px 0;
  font-size: 20px;
  font-weight: 900;
  height: 86px;
  line-height: 1.6;
  color: #FDFDFD;
  border-radius: 5px;
  background-color: #FF9D19;
}
.price_detailbtn_btn_arrow {
  content: "";
  position: absolute;
  transform: translateY(-25%) rotate(-45deg);
  top: 45%;
  right: 20px;
  width: 12px;
  height: 12px;
  border-bottom: 1px solid #FDFDFD;
  border-right: 1px solid #FDFDFD;
}
.price_lists {
  width: calc(100% - 20px);
  margin: auto;
  list-style: none;
}
@media screen and (min-width: 480px) {
  .price_lists {
    width: calc(100% - 80px);
  }
}
.price_lists_item {
  margin-bottom: 30px;
}
.price_lists_item_title {
  max-width: 370px;
  margin: auto;
}
.price_lists_item_table {
  margin: 10px auto 20px;
  width: 100%;
  background-color: #fff;
}
.price_lists_item_table tr td {
  border: solid 1px #C9C9C9;
  height: 50px;
  vertical-align: middle;
}
.price_lists_item_table tr:first-child td {
  background-color: #70B1F4;
  height: 60px;
  color: #fff;
}
.price_lists_item_table tr:not(:first-child) td:first-child {
  font-size: 13px;
}
@media screen and (min-width: 480px) {
  .price_lists_item_table tr:not(:first-child) td:first-child {
    font-size: 16px;
  }
}
.price_lists_item_table tr:not(:first-child) td:last-child, .price_lists_item_table tr:not(:first-child) td:nth-child(2) {
  min-width: 100px;
}
.price_lists_item_table tr:not(:first-child) td:last-child {
  background-color: #FFFFC1;
  color: #FF0000;
  font-size: 20px;
  font-weight: bold;
}
.price_lists_link {
  margin-bottom: 20px;
}
.price_lists_link_text {
  color: #fff;
  text-decoration: underline;
}
.price_lists_link_text:hover {
  text-decoration: none;
}

.access {
  position: relative;
  padding: 55px 0px 15px;
  color: #FDFDFD;
  background-color: #00285D;
}
.access .cta {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translate(-50%, -50%);
}
.access_title {
  width: 250px;
  margin: 0 auto 30px;
}
.access_title:last-of-type {
  margin-top: 50px;
}
.access_shop_img {
  margin: 0 10px 30px;
}
@media screen and (min-width: 480px) {
  .access_shop_img {
    margin: 0 40px 30px;
  }
}
.access_info {
  display: inline-block;
}
.access_info_list {
  display: flex;
  justify-content: left;
}
.access_info_list_title {
  width: 75px;
  text-align: left;
}
.access_info_list_text {
  text-align: left;
}

.footer_content {
  padding: 35px 0 80px;
  color: #FDFDFD;
  background-image: url("../img/coating_footer_bg.png");
}
.footer_content_logo {
  margin: 0 auto;
  height: 40px;
  width: 146px;
}
.footer_content_item {
  color: #FDFDFD;
  text-align: center;
  margin: 0 auto 20px;
}
.footer_content_list {
  display: flex;
  justify-content: center;
  list-style: none;
  margin-bottom: 8px;
  font-size: 13px;
}
.footer_content_list_item:first-child {
  margin-right: 30px;
}
.footer_content_c-right {
  text-align: center;
  padding-bottom: 25px;
  font-size: 13px;
}
.footer_tel_btn {
  background-color: #35D206;
  height: 80px;
  position: fixed;
  bottom: 0;
  display: block;
  width: 100%;
  max-width: 768px;
  z-index: 999;
}
.footer_tel_btn_link {
  text-align: center;
}
.footer_tel_btn_link_tel {
  position: relative;
  display: inline-block;
  color: #FDFDFD;
  font-size: 26px;
  font-weight: 900;
  line-height: 80px;
}
.footer_tel_btn_link_tel::after {
  content: "";
  position: absolute;
  background-image: url("../img/footer_balloon_202408.svg");
  background-size: cover;
  background-position: center;
  width: 164px;
  height: 26px;
  top: -2px;
  left: 50%;
  transform: translate(-50%, -50%);
}
.footer_tel_btn_link_text {
  font-size: 10px;
  color: #FDFDFD;
}/*# sourceMappingURL=style.css.map */