@charset "UTF-8";

html {
  scroll-behavior: smooth;
}

@media screen and (min-width:768px){
  html{font-size : 20px;}
  .onsp{display: none;}
  .onpc{display: block;}
}

@media screen and (max-width:767px){
  html{font-size : 4vw;}
  .onsp{display: block;}
  .onpc{display: none;}
}

/* ie11 */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  img[src$=".svg"] {
    width: 100%;
    height: auto;
  }
}

body{
  width: min(500px, 100%);
  margin: 0 auto;
  color: black;
  background-color: white;
  font-size: 1em;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-feature-settings: 'palt';
  letter-spacing : 0.1em;
  line-height : 2;
  -webkit-font-smoothing  : antialiased;
	-moz-osx-font-smoothing : grayscale;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

img{
  display: block;
  width: 100%;
}

a{
  text-decoration: none;
}


/*
// header
*/
header {
  width: 100%;
  aspect-ratio: 1 / 1.2;
  overflow: hidden;
  position: relative;
}

.hero{
  position: relative;
  min-height: 60vh;
  overflow: hidden;
}

.hero_bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.hero_content{
  position: relative;
  z-index: -1;
  color: #fff;
}

/*
// main
*/

main {
  width: 100%;
}

.campaign {
  margin-top: -8%;
}

#cta_small {
  position: relative;
}

#cta_small .btn_line {
  position: absolute;
  width: 80%;
  margin: 0 10%;
  top: 30%;
}

#cta {
  position: relative;
}

#cta .btn_line {
  position: absolute;
  width: 80%;
  margin: 0 10%;
  top: 67%;
}

#cta .btn_tel {
  position: absolute;
  width: 80%;
  margin: 0 10%;
  top: 87%;
}

.flow {
  width: 100%;
  aspect-ratio: 1 / 0.74;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch; /* iPhoneでぬるぬる */
  margin-bottom: 10%;
}

.flow img{
  display: block;
  width: 480%;
  max-width: none;
  height: auto;
}

.map {
  width: 90%;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}

/*
// footer
*/
footer {
  width: 100%;
}


#cta_bottom {
  display: flex;
  position: fixed;
  bottom: 0;
  width: min(500px, 100%);
  margin: 0 auto;
}