@CHARSET "UTF-8";
/*
*** basic setting on css/normalize.css ***
*/


/* = common setting
-------------------------------------------------------------- */ 

:root {
  --yellow: #FFD800; 
  --bk: #000;
  --blue: #0189CA;
  --sky: #03B2E8;
  --red: #FF0100;
  --pink: #F13E79;
  --border: #707070;

  --orange: #FF9D00;
}

*{
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
html{
	font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--bk);
  line-height: 1.7;
  letter-spacing: 1px;
}
.font_en{
  font-family: "League Spartan",sans-serif;
  font-weight: 500;
}

.txt_blue{
  color: var(--sky);
}
.txt_pink{
  color: var(--pink);
}
.txt_yellow{
  color: var(--yellow);
}





/* =layouts
-------------------------------------------------------------- */

body,
#page{
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
#site_footer{
  margin-top: auto;
}

table{
	width: 100%;
	border-collapse: collapse;
  border-spacing: 0;
}
table th{
	padding: 1rem;
	text-align: left;
  width: 30%;
	font-weight: 500;
}
table td{
	padding: 1rem;
}

.txt_right{
	text-align: right;
}

h1,h2,h3,h4,h5,h6{
	margin: 0;
	font-weight: 700;
}
ul,dl,dt,dd{
	margin: 0;
	padding: 0;
	font-weight: 500;
}
li{
	list-style-type: none;
	margin: 0;
	padding: 0;
}
p{
	margin: 0;
}
.pc_only{
	display: none;
}

.wrapper{
	width: 90%;
	max-width: 1180px;
	margin: 0 auto;
}
.short_wrap{
  max-width: 950px;
}
.wide_wrap{
  max-width: 1400px;
}
.section{
	padding: 3rem 0;
}
.hidden{
  overflow: hidden;
}

/* Clearing floats */
.clear:after{
	clear: both;
}
.clear:before,
.clear:after{
	display: table;
	content: "";
}

.txt_right{
	text-align: right;
}
.txt_vertical{
	writing-mode: vertical-rl;
}
.txt_small{
	font-size: 70%;
}
.txt_large{
	font-size: 150%;
}

.underline{
	background: linear-gradient(to bottom , rgba(255,255,255,0) 50%, #ffff00 51%);
	font-weight: 700;
}



/* =link
-------------------------------------------------------------- */


a{
	outline: none;
	color: var(--bk);
	text-decoration: udnerline;
	transition: .3s;
}
*:focus {
  outline: none;
}

.btn_link{
	border: #000 solid .3rem;
	display: block;
	padding: 1.5rem 1rem;
	width: 100%;
	text-align: center;
  position: relative;
  box-shadow: 0 .5rem #000;
  border-radius: 1rem;
  background: #fff;
}

.link_none{
  pointer-events: none !important;
  cursor: default !important;
  opacity: .3;
}


input[type="submit"]{
	outline: 0;
	box-shadow: none;
	border: none;
	cursor: pointer;
}
label{
	cursor: pointer;
}



/* =media
-------------------------------------------------------------- */

img,
svg{
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
iframe{
	max-width: 100%;
}
.img_clip{
	position: relative;
  overflow: hidden;
  border-radius: 1rem;
}
.img_clip::before{
	content: '';
	padding-top: 70%;
	display: block;
	background: #ccc;
}
.img_clip img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.youtube_wrap{
  position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}
.youtube_wrap iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}



/* =slick base
-------------------------------------------------------------- */

.slick-arrow{
	width: 3rem;
  height: 3rem;
  z-index: 10;
  background: #000;
  border-radius: 50%;
}
.slick-prev{
  left: -5px;
}
.slick-next{
  right: -5px;
}
.slick-arrow::before{
	content: '' !important;
  width: 30%;
  height: 30%;
  border-top: #fff solid 1px;
  border-left: #fff solid 1px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 1;
}
.slick-prev:before{
  transform: translate(-35%,-50%) rotate(-45deg);
}
.slick-next:before{
  transform: translate(-65%,-50%) rotate(135deg);
}
.slick-slide:focus{
  outline: 0;
}
.slick-dots > li:first-child:last-child {
   display: none;
}
.slick-dots{
	bottom: 1rem;
	z-index: 10;
}
.slick-dots li{
	width: 3rem;
	height: 1rem;
}
.slick-dots li button{
	width: 100%;
	height: 100%;
	background: #fff;
	border-radius: 50px;
}
.slick-dots li.slick-active button{
	background: #ccc;
}
.slick-dots li button:before{
	content: none;
}
.slick-track {
  display: flex;
}
.slick-slide {
  height: auto !important;
}




#site_header{
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  height: 5rem;
  padding: 0 1rem;
  z-index: 9999;
}
#header_logo{
  width: 50%;
  display: block;
  margin: 0 auto 0 0;
  max-width: 20rem;
}
#header_contact{
  display: flex;
}
#header_contact li{
  margin-left: 2rem;
}
#header_contact li a{
  display: flex;
  align-items: center;
}
#header_contact li a .icon{
  width: 2rem;
}
.bg_illust{
  background: #FF9D00 url('../images/bg.png') repeat-y center top;
  background-size: 100%;
}

#main_wrap{
  position: relative;
  padding: 5rem 0;
}
#side_en{
  position: fixed;
  bottom: 50%;
  translate: 0 50%;
  right: .5rem;
  display: block;
  width: 1rem;
  z-index: 50;
}
#main_visual{
  text-align: center;
  max-width: 1200%;
  padding: 2rem 0;
}

#message h1{
  background: #fff;
  border: #000 solid .3rem;
  border-radius: 2rem;
  box-shadow: 0 5px #000;
  text-align: center;
  padding: 1rem 0 .5rem;
  font-size: 4.2vw;
  font-weight: 900;
  letter-spacing: 0;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 2rem;
}
#message h1 span{
  font-size: 200%;
  display: block;
  line-height: 1.4;
  margin-left: 1rem;
}
#message p{
  text-align: center;
  font-size: 3vw;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.5;
}

#campain_title{
  text-align: center;
  margin-bottom: 2rem;
}
#campain_title img{
  margin-left: -2rem;
}

#campain_nav{
  margin-bottom: 8rem;
}
#campain_nav li{
  margin-bottom: 1rem;
}
.campain_nav__btn{
  display: flex;
  align-items: center;
}
.campain_circle{
  width: 6rem;
  height: 6rem;
  background: #FBF50D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  right: 1rem;
  top: -3rem;
  z-index: 20;
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: 700;
}
.campain_nav__num{
  margin-right: 1rem;
  width: 6rem;
}
.campain_header{
  flex: 1;
  text-align: center;
}
.campain_header p{
  background: #6AEFC9;
  border-radius: 50px;
  padding: .2rem;
  margin-bottom: .5rem;
  font-size: 1rem;
  font-weight: 700;
}
.campain_header h3{
  font-weight: 900;
  line-height: 1.5;
  font-size: 1.2rem;
}

.campain_block{
  border: #000 solid .3rem;
  position: relative;
  padding: 3rem 1rem;
  border-radius: 2rem;
  margin: 5rem 0;
  background: #fff;
}
.campain_block__num{
  width: 7rem;
  position: absolute;
  top: -4rem;
  left: 50%;
  translate: -50% 0;
  z-index: 20;
}
.campain_block__header{
  margin-bottom: 1.5rem;
}
.campain_block__header p{
  font-size: 1.4rem;
}
.campain_block__header h3{
  font-size: 1.8rem;
  line-height: 1.4;
}
.campain_block__message{
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.2rem;
  letter-spacing: 0;
}



.car_list__wrap{
  background: #FEF2DE;
  padding: 3rem 5% 3rem;
  position: relative;
  border-radius: 1rem;
}
.car_list__wrap h4{
  font-size: 1.6rem;
  position: absolute;
  white-space: nowrap;
  font-size: 1.6rem;
  top: -1rem;
  left: 50%;
  translate: -50% 0;
  z-index: 20;
  font-weight: 900;
}
.slick-track {
  display: flex;
}
.slick-slide {
  height: auto !important;
}
.car_list .slick-slide{
  padding: 1rem;
}
.car_box{
  display: flex;
  flex-direction: column;
  background: #fff;
  position: relative;
  height: 100%;
}
.car_box .campain_circle{
  top: -1rem;
  right: -1rem;
  background: #F53A3D;
  color: #fff;
  font-size: 1.6rem;
}
.car_box__img{
  text-align: center;
}
.car_box__data{
  padding: 1rem 5% 2rem;
}
.car_box__title{
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.2;
  margin: 1rem 0;
}
.car_box__data p{
  font-size: 1.2rem;
}

/*
.car_box__title span{
  font-size: 50%;
  display: block;
  line-height: 1.2;
  font-weight: 500;
}
.car_box__title span.large{
  font-weight: 900;
  font-size: 100%;
}
.car_box__data{
  display: flex;
  justify-content: center;
  margin: auto 0 0;
}
.car_box__data dl{
  margin: 0 .5rem;
  height: 8rem;
  display: flex;
  flex-direction: column;
}
.car_box__data dt span{
  display: inline-block;
  padding: .2rem 1rem;
  border-radius: 5px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0;
  white-space: nowrap;
}
.car_box__date dt span{
  background: var(--sky);
}
.car_box__price dt span{
  background: var(--pink);
}
.car_box__data dd{
  font-weight: 700;
  font-size: 1.5rem;
  margin: auto 0 0;
  letter-spacing: 0;
  text-align: center;
}
.car_box__price dd{
  line-height: 1.2;
}
.car_box__data dd .small{
  font-size: 80%;
  display: block;
  text-align: left;
}
.car_box__data dd .large{
  font-size: 200%;
  line-height: 1;
  font-weight: 900;
}
.car_box__data dd .txt_red{
  color: var(--red);
  margin-right: .5rem;
}
.price_txt{
  white-space: nowrap;
}
.car_box__date{
  text-align: center;
}
#car_list__footer{
  margin-top: 2rem;
  font-size: 1.2rem;
  text-align: right;
}*/

.staff_slide .slick-slide{
  padding: 1.5rem .5rem;
}
.staff_box{
  background: var(--orange);
  padding: 3rem 5%;
  position: relative;
  border-radius: 1rem;
  height: 100%;
}
.staff_box h4{
  position: absolute;
  top: -1.5rem;
  left: 50%;
  translate: -50% 0;
  z-index: 5;
}
.staff_box h4 img{
  height: 3rem;
  width: auto;
}
.staff_box__img{
  text-align: center;
  margin-bottom: 1rem;
}
.staff_box__img figcaption{
  margin-top: .5rem;
  text-align: center;
  font-weight: 700;
}
.staff_box__message{
  margin-bottom: 3rem;
}
.staff_box__message h5{
  font-size: 1.6rem;
}
.staff_box__message p{
  font-size: 1.2rem;
  line-height: 1.5;
}
.staff_box__tokuten{
  background: #fff;
  padding: 2.5rem 1rem 2rem;
  position: relative;
  border-radius: .5rem;
}
.staff_box__tokuten h5{
  background: #000;
  color: #fff;
  width: 20rem;
  border-radius: 50px;
  text-align: center;
  padding: .2rem;
  position: absolute;
  top: -1.5rem;
  left: 50%;
  translate: -50% 0;
  z-index: 5;
}
.staff_box__tokuten p{
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
}
.staff_box__tokuten p span{
  display: block;
  font-size: 70%;
}
.staff_slide .slick-arrow{
  top: 30%;
}
#staff_photo{
  margin-top: 2rem;
  text-align: center;
}
#staff_photo p{
  font-weight: 900;
  margin-bottom: 1rem;
}
.btn_tel{
  background: #0DA4C5;
}
.btn_mail{
  background: #94C50D;
}
.contact_btn__wrap li{
  margin-bottom: 1.5rem;
}
.contact_btn__wrap a{
  padding: 1rem;
}
.contact_btn__wrap a img{
  height: 4.5rem;
  width: auto;
  vertical-align: middle;
}
.campain_block__contact{
  margin-top: 3rem;
}
.campain_block__contact p{
  font-size: 3vw;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0;
}

#contact_links{
  border: #000 solid .3rem;
  padding: 3rem 5% 2rem;
  border-radius: 1rem;
  background: #FBF50D;
  margin-bottom: 3rem;
  box-shadow: 0 .5rem #000;
}
.section_title{
  text-align: center;
  margin-bottom: 1rem;
  margin-top: -5rem;
}
.section_title img{
  height: 4rem;
  width: auto;
}
.section_title span{
  display: block;
  font-size: 1.2rem;
}

#marche_img{
  text-align: center;
  margin-bottom: 3rem;
}
#marche_txt{
  text-align: center;
  font-weight: 900;
  font-size: 1.2rem;
  margin-bottom: 5rem;
}
#marche_gallery h3{
  text-align: center;
  margin-bottom: 2rem;
}
#marche_gallery h3 img{
  height: 4rem;
  width: auto;
}
#marche_gallery ul{
  display: flex;
  flex-wrap: wrap;
}
#marche_gallery ul li{
  width: 50%;
  padding: 0 .5rem;
  margin-bottom: 1rem;
}


#footer_wrap{
  position: relative;
  z-index: 99;
}
#contact_header{
  padding: 3rem 0 8rem;
  overflow: hidden;
  position: relative;
}
#contact_header::before{
  content: '';
  background: url('../images/contact_header__bg.png') no-repeat center bottom / cover;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: -1;
}
#contact_header h2{
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1rem;
}
#contact_header__intro{
  text-align: center;
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 3rem;
}
#contact_header__box{
  background: #FBF50D;
  display: block;
  padding: 2rem 5%;
  position: relative;
}
#contact_header__box h3{
  text-align: center;
}
#contact_header__box p{
  font-size: 1.2rem;
  text-align: center;
}
#contact_header__box p#contact_header__number{
  font-size: 3rem;
  line-height: 1;
  margin: 1rem 0;
  text-align: center;
}
#contact_header__box p#contact_header__number .icon{
  width: 3.5rem;
  margin-right: 1rem;
}
#contact_header__baloon{
  position: absolute;
  left: -3em;
  bottom: -3rem;
  width: 10rem;
}

#contact{
  padding: 0 0 5rem;
}
#contact_title{
  text-align: center;
}
#contact_title .icon{
  display: block;
  margin: 0 auto 2rem;
  width: 5rem;
}
#contact_title h2{
  font-size: 2rem;
  margin-bottom: 2rem;
}

.form_intro{
  margin-bottom: 3rem;
  text-align: center;
}
.form_intro p span{
  color: var(--red);
}

.form_step{
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  margin: 3rem 0;
}
.form_step li{
  position: relative;
  width: calc(33.33% - 1rem);
}
.form_step li:not(:last-child)::after{
  content: '';
  position: absolute;
  left: calc(100% + .3rem);
  top: 50%;
  translate: 0 -50%;
  width: 1rem;
  height: 1rem;
  clip-path: polygon(0 0, 100% 50%,0 100%);
  background: var(--bk);
}
.form_step li p{
  border: #0074AC solid 1px;
  border-radius: 50px;
  background: #0074AC;
  display: flex;
  text-align: center;
  overflow: hidden;
}
.form_step li span{
  text-align: center;
  color: #fff;
  padding: 1rem 0;
  width: 50%;
}
.form_step li span.form_step__num{
  color: var(--blue);
  background: #fff;
}
.form_step li span.current{
  background: #0189CA;
  color: #fff;
}
.form_box dt{
  margin-bottom: 1rem;
  position: relative;
  font-size: 1.6rem;
  border-bottom: var(--border) solid 1px;
  padding-bottom: .5rem;
}
.form_box dd{
  margin-bottom: 3rem;
}
.border_none{
  border: 0 !important;
  padding-bottom: 0 !important;
  margin-bottom: 1rem !important;
}
.form_box dt.label_hidden{
  color: transparent;
  border: 0;
  height: 0;
  position: relative;
  z-index: -1;
}
.schedule_box{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 0 !important;
}
.schedule_box p{
  width: 100%;
}
.schedule_box .form_input{
  width: calc(100% - 10rem);
}
.form_box dd li{
  margin-bottom: 1.5rem;
}
.form_box dd input[type="radio"],
.form_box dd input[type="checkbox"]{
  width: 2rem;
  height: 2rem;
  vertical-align: middle;
  margin-right: .5rem;
}
.form_box dt .required{
  color: #fff;
  background: var(--red);
  margin-left: .5rem;
  font-size: 70%;
  display: inline-block;
  padding: .2rem 1rem;
  border-radius: 5px;
  position: absolute;
  right: 0;
  bottom: .5rem;
  font-style: normal;
}
.form_box dd ul li{
  margin-right: 2rem;
  margin-bottom: .5rem;
}
.form_box dd p{
  margin: 5px 0;
}
.form_input{
  padding: .5rem 1rem;
  border: var(--border) solid 1px;
  border-radius: .5rem;
  line-height: 1.7;
  width: 100%;
  color: #666;
}
.form_input__short{
  width: 15rem;
  margin: 0 .5rem;
}
.form_box input[type="checkbox"]{
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: .5rem;
}
.error_blank{
  color: #ff0000;
  font-weight: 700;
  margin-top: .5rem;
}
#agreement .error_check{
  display: none;
  color: #ff0000;
  margin-top: 3px;
  font-weight: 700;
}
.btn_submit{
  border: 0;
  outline: 0;
  transition: .3s;
  cursor: pointer;
  background: var(--blue);
  color: #fff;
  border-radius: .5rem;
  font-size: 1.6rem;
  padding: 2rem 0;
}

div.loading-layer {
	width: 100vw;
	height: 100vh;
	background: rgba( 0, 0, 0, 0.7 );
	position: fixed;
	left: 0px;
	top: 0px;
	z-index: 10000;
}
span.loading {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border-top: 5px solid rgba( 255,255,255, 0.2 );
  border-right: 5px solid rgba( 255,255,255, 0.2 );
  border-bottom: 5px solid rgba( 255,255,255, 0.2 );
  border-left: 5px solid #fff;
  -webkit-transform: translateZ( 0 );
  -ms-transform: translateZ( 0 );
  transform: translateZ( 0 );
  -webkit-animation: load-circle 1.0s linear infinite;
  animation: load-circle 1.0s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
}

@-webkit-keyframes load-circle {
  0% {
    -webkit-transform: rotate( 0deg );
    transform: rotate( 0deg );
  }
  100% {
    -webkit-transform: rotate( 360deg );
    transform: rotate( 360deg );
  }
}

@keyframes load-circle {
  0% {
    -webkit-transform: rotate( 0deg );
    transform: rotate( 0deg );
  }
  100% {
    -webkit-transform: rotate( 360deg );
    transform: rotate( 360deg );
  }
}
#send_success{
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
#send_success p{
  border: #73B147 solid 2px;
  padding: 1rem 0;
  color: #73B147;
  text-align: center;
}

#agreement {
	margin: 5rem 0 3rem;
}
#agreement_inner{
  border: var(--border) solid 1px;
  padding: 2rem 5%;
  border-radius: 1rem;
  margin-bottom: 2rem;
}
#agreement_inner h3 {
	font-size: 1.4rem;
	font-weight: 500;
  text-align: center;
  margin-bottom: 1rem;
}
#agreement_inner p{
  font-size: 1.2rem;
}
#agreement input[type="checkbox"] {
	margin-right: 10px;
}
#mail_form #agreement span.error_check {
	display: none;
	color: #ff0000;
	margin-top: 3px;
}

#confirm_field{
	display: none;
}
#confirm_submit{
  margin-top: 5rem;
}
#confirm_field input#confirm_submit_button {
	margin-top: 3rem;
}
#confirm_field input#confirm_cancel_button {
	background: none;
  border: #000 solid 1px;
  border-radius: 50px;
  width: 80%;
  max-width: 30rem;
  color: #000;
  font-size: 1.2rem;
  padding: 1.5rem;
  transition: .3s;
  margin: 0 auto;
}


#access{
  padding: 3rem 0 0;
  position: relative;
}
#access::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 10rem;
  background: #F0F0E7;
  clip-path: polygon(0 0,100% 0,0 100%);
  z-index: -1;
}
#access h2{
  font-size: 3rem;
  position: relative;
  line-height: 1.4;
  margin-bottom: 3rem;
}
#access h2 span{
  font-size: 30%;
  display: block;
}
#access h2::before{
  content: '';
  background: url('../images/illust.png') no-repeat center center / contain;
  position: absolute;
  width: 8rem;
  height: 8rem;
  left: 40%;
  top: 0;
}
#access_inner__txt{
  margin: 2rem 0;
}
#access_logo{
  display: block;
  width: 80%;
  margin-bottom: 1rem;
  max-width: 400px;
}
#access_inner__txt h3{
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
#access_inner__txt p{
  margin-bottom: 1rem;
}
#access_route{
  margin: .5rem 0;
  text-align: right;
}
#access_route .icon{
  width: 3rem;
  margin-right: .5rem;
  vertical-align: middle;
}
#access_map iframe{
  width: 100%;
  height: 35rem;
}

#site_footer{
  padding-top: 5rem;
}
#footer_sns p{
  text-align: center;
  margin-bottom: 1rem;
}
#footer_sns ul{
  display: flex;
  justify-content: center;
}
#footer_sns ul li{
  margin: 0 2rem;
}
#footer_sns ul li a img{
  width: 2rem;
  transition: .3s;
}
#footer_copy{
  background: var(--bk);
  color: #fff;
  text-align: center;
  font-size: 1rem;
  padding: 2rem 0;
}
#page_top{
  position: sticky;
  bottom: 1rem;
  display: block;
  margin: 0 1rem 1rem auto;
  z-index: 99;
  width: 5rem;
  text-align: center;
  font-size: 1rem;
  letter-spacing: 0;
  opacity: 0;
  visibility: hidden;
}
#page_top span{
  white-space: nowrap;
}
.scroll #page_top{
  opacity: 1;
  visibility: visible;
}



#thanks_header{
  text-align: center;
}

#thanks_message__wrap{
  text-align: center;
  padding: 3rem 5% 5rem;
  background: #fff;
  border-radius: 2rem;
}
#thanks_message h1{
  position: relative;
  font-size: 2rem;
  margin-bottom: 3rem;
}
#thanks_message h1 span{
  position: absolute;
  color: #F0F0E7;
  font-size: 6rem;
  z-index: -1;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  white-space: nowrap;
  font-weight: 500;
}
#thanks_message p{
  margin-bottom: 3rem;
}
#thanks_attentions{
  margin: 5rem 0;
  border-top: #000 solid 1px;
  border-bottom: #000 solid 1px;
  padding: 2rem 0;
}
#thanks_attentions p{
  margin: 0 !important;
}
#thanks_attentions h2{
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

#thanks_message .btn_link{
  max-width: 25rem;
  margin: 0 auto;
}


#car_list__header{
  margin-bottom: 3rem;
  text-align: center;
  line-height: 1.5;
}
#car_list__header h2{
  font-size: 2.6rem;
  margin-bottom: .5rem;
  color: var(--red);
  font-weight: 900;
}
#car_list__header p{
  font-weight: 700;
  font-size: 1.6rem;
}


#message_404{
  padding-top: 10rem;
}





/* =RWD
-------------------------------------------------------------- */

@media screen and (min-width: 768px){
  .mobile_only{
		display: none;
	}
	.pc_only{
		display: block;
	}
  a[href*="tel:"] {
    pointer-events: none !important;
    cursor: default !important;
    text-decoration: none !important;
  }
  table th{
		padding: 1rem;
	}
	table td{
		padding: 1rem;
	}
  #site_header{
    margin-bottom: 3rem;
  }
  #header_contact{
    font-size: 1.2rem;
  }
  #header_contact li a .icon{
    margin-right: .5rem;
  }
  #header_contact__tel .pc_only img{
    width: auto;
    height: 1.5rem;
    vertical-align: middle;
  }
  #main_visual{
    padding: 5rem 0 2rem;
  }
  #message h1{
    font-size: 3rem;
    padding: 2rem 0 1rem;
    line-height: 1.2;
  }
  #message h1 span{
    margin-left: 2rem;
  }
  #message p{
    font-size: 2.4rem;
  }
  #campain_title{
    width: 80%;
    margin: 0 auto 2rem;
  }
  #campain_nav{
    display: flex;
  }
  #campain_nav li{
    width: 33.33%;
    padding: 0 1rem;
  }
  .campain_nav__btn{
    display: block;
    height: 100%;
  }
  .campain_nav__num{
    position: absolute;
    left: 1rem;
    top: -3rem;
  }
  .campain_block{
    padding: 3rem 2rem 4rem;
  }
  .campain_block__header h3{
    font-size: 3rem;
  }
  .campain_block__message{
    margin-bottom: 5rem;
  }
  .car_list__wrap{
    padding: 5rem 2rem 3rem;
  }
  .car_list__wrap h4{
    font-size: 2.6rem;
    top: -2.5rem;
  }
  .contact_btn__wrap a img{
    height: 5rem;
  }
  .staff_box__wrap{
    margin-top: 3rem;
  }
  .car_list{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1rem;
  }
  .car_box__wrap{
    width: 33.33%;
    padding: 0 1rem;
    margin-bottom: 2rem;
  }
  .campain_block__contact p{
    font-size: 2.2rem;
  }
  .contact_btn__wrap{
    display: flex;
  }
  .contact_btn__wrap li{
    width: 50%;
    margin: 0;
    padding: 0 1rem;
  }
  .staff_box{
    display: flex;
    margin-bottom: 2rem;
  }
  .staff_box__img{
    flex: 0 0 30%;
    margin-right: 3rem;
  }
  .staff_box__img .img_clip::before{
    padding-top: 80%;
  }
  .staff_box__inner{
    flex: 1;
  }
  #staff_photo{
    margin: 3em auto 0;
    width: 70%;
  }
  #marche_gallery ul li{
    width: 33.33%;
  }
  .form_box dl{
    display: flex;
    flex-wrap: wrap;
  }
  .form_box dt{
    width: 35%;
    padding: 2rem 0;
    margin: 0;
  }
  .form_box dd{
    width: 65%;
    padding: 2rem;
    border-bottom: var(--border) solid 1px;
    margin: 0;
  }
  .border_none__pc{
    border: 0 !important;
  }
  .form_box dt.label_hidden{
    border-bottom: var(--border) solid 1px;
    height: auto;
  }
  .form_box dt .required{
    bottom: auto;
    top: 2.5rem;
  }
  .border_none{
    margin: 0 !important;
  }
  .schedule_box__last{
    padding-bottom: 2rem !important;
  }
  #agreement p{
    text-align: center;
  }
  #agreement_inner{
    padding: 3rem 0;
  }
  .form_step li{
    width: calc(33.33% - 2rem);
  }
  .form_step li:not(:last-child)::after{
    left: calc(100% + 1rem);
  }
  #contact{
    padding-bottom: 8rem;
  }
  #access_inner{
    display: flex;
    flex-direction: row-reverse;
  }
  #access_inner figure{
    flex: 0 0 50%;
    margin-left: 2rem;
  }
  #access_inner__txt{
    flex: 1;
  }
  #page_top{
    margin-top: -3rem;
  }
  #thanks_main::before{
    background: url(../images/main_v__bg.jpg) no-repeat center top / contain;
  }
}




@media screen and (min-width: 1024px){
  html{
    font-size: 75%;
  }
  #site_header{
    height: 70px;
    padding: 0 3rem;
  }
  #header_logo{
    max-width: 330px;
  }
  #header_contact li a .icon{
    width: 2.5rem;
  }
  #main_wrap{
    padding-top: 70px;
  }
  #campain_nav{
    margin-top: 5rem;
  }
  #campain_nav .campain_circle{
    width: 8rem;
    height: 8rem;
    font-size: 1.6rem;
    top: -5rem;
  }
  .campain_nav__num{
    width: 10rem;
    top: -5rem;
  }
  .campain_header p{
    font-size: 1.6rem;
  }
  #campain_nav .campain_header h3{
    font-size: 2rem;
    line-height: 1.3;
    height: 9rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .campain_block{
    margin-bottom: 8rem;
  }
  .campain_block__num{
    width: 10rem;
    top: -6rem;
  }
  .campain_block__header p{
    font-size: 2rem;
  }
  .campain_block__header h3{
    font-size: 4rem;
  }
  .campain_block__message{
    font-size: 1.6rem;
  }
  .staff_box{
    padding: 2rem;
  }
  .staff_box h4{
    top: -2rem;
  }
  .staff_box h4 img{
    height: 4rem;
  }
  .staff_box__message{
    padding: 2rem 0;
  }
  .staff_box__message h5{
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  .staff_box__tokuten h5{
    left: -1rem;
    translate: none;
    font-size: 1.6rem;
  }
  .staff_box__tokuten p{
    font-size: 2.6rem;
  }
  .staff_box__tokuten p span{
    font-size: 50%;
  }
  #staff_photo p{
    font-size: 2rem;
  }
  .section_title{
    margin-top: -6rem;
  }
  #marche_gallery h3 img,
  .section_title img{
    height: 5rem;
  }
  .section_title span{
    font-size: 1.6rem;
  }
  #contact_links{
    padding: 3rem 2rem 4rem;
  }
  #marche_txt{
    font-size: 1.8rem;
  }
  #marche_gallery ul li{
    padding: 0 1rem;
    margin-bottom: 2rem;
  }
  #contact_header{
    padding: 5rem 0 15rem;
  }
  #contact_header h2{
    font-size: 4.5rem;
  }
  #contact_header__intro{
    font-size: 2.4rem;
  }
  #contact_header__box{
    padding: 3rem 5%;
  }
  #contact_header__box h3{
    font-size: 2rem;
    line-height: 1.5;
  }
  #contact_header__box p{
    font-size: 1.6rem;
  }
  #contact_header__box p#contact_header__number{
    font-size: 4rem;
    margin: 2rem 0;
    line-height: .8;
  }
  #contact_header__baloon{
    width: 22rem;
    bottom: -8rem;
  }
  #contact_title h2{
    font-size: 2.6rem;
  }
  #contact_title .icon{
    width: 6rem;
  }
  .form_step{
    margin: 4rem 0;
    font-size: 1.4rem;
    padding: 0 5%;
  }
  .form_step li{
    width: calc(33.33% - 5rem);
  }
  .form_step li:not(:last-child)::after{
    left: calc(100% + 3rem);
  }
  #access{
    padding: 5rem 0 0;
    overflow: hidden;
  }
  #access::before{
    width: 70%;
    height: 20rem;
  }
  #access h2{
    font-size: 4rem;
  }
  #access h2::before{
    left: 30rem;
  }
  #access_wrap{
    padding-left: 8rem;
  }
  #access_route{
    margin: 1rem 0;
  }
  #access_map{
    margin-right: -5%;
  }
  #footer_sns{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #footer_sns p{
    margin: 0 5rem 0 0;
  }
  #page_top{
    bottom: 2rem;
    margin-right: 3rem
  }
  #page_top img{
    transition: .3s;
  }
  #thanks_main{
    padding: 2rem 0 10rem;
  }
  #thanks_message{
    margin: 5rem 0;
  }
  #thanks_message h1{
    font-size: 2.6rem;
  }
  #thanks_message h1 span{
    font-size: 14rem;
  }
}

@media screen and (min-width: 1200px){
  #access_map{
    margin-right: -20rem;
  }
  #car_list__nav ul li{
    padding: .5rem 1rem .5rem 2rem;
    font-size: 1.8rem;
    margin-right: 2rem;
    font-weight: 700;
    transition: .3s;
  }
  #car_list__nav ul li:hover{
    background: #efefef;
  }
  #car_list__nav ul li .arrow{
    margin-left: 2rem;
  }
  #car_list li{
    width: 33.33%;
  }
}




@media (hover: hover) {
  .img_opacity:hover img{
    opacity: .8;
  }
  .hover_up:hover{
    transform: translateY(-5px);
    box-shadow: 0 12px 10px -6px rgba(0,0,0,.3);
  }
  .hover_up__img:hover img{
    transform: translateY(-5px);
    box-shadow: 0 12px 10px -6px rgba(0,0,0,.3);
  }
  .btn_link:hover{
    box-shadow: 0 .1rem #000;
    translate: 0 .4rem;
  }
  #page_top:hover img{
    transform: translateY(-5px);
  }
}
