@charset "utf-8";
/* CSS Document */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  box-sizing: border-box;
  color: #3e3a39;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
html {
	scroll-behavior: smooth;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

img{
  width: 100%;
  height: auto;
}

a{
  opacity: 1;
  transition: 0.3s;
  text-decoration: none;
}
a:hover{
  opacity: 0.8;
  transition: 0.3s;
}


.pc{display: block;}
.sp{display: none;}


@media (max-width: 767px) {
  
.sp{display: block;}
.pc{display: none;}
  
}


.container{
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
}

.btn{
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  background-color: #e50012;
  padding: 20px;
  z-index: 1000;
}
.btn .container{
  display: flex;
  justify-content: space-around;
  gap: 20px;
}
.btn .container a{
  display: block;
  width: 100%;
  max-width: 500px;
}

header{
  background: #e50012;
  padding: 15px 15px;
}
header .logo{
  width: 80%;
  text-align: center;
  margin: 0 auto;
}

.mv .container{
  position: relative;
  
}
.mv .container .btn_link{
  position: absolute;
  left: 30px;
  bottom: 10px;
  z-index: 1;
  width: 78%;
}

.content01{
  background-color: #9eee95;
}
.content01 a{
  display: block;
  width: 70%;
  margin: 0 auto;
}

.content04{
  background-color: #cfeaef
}

.content07{
  padding-bottom: 30px;
}


footer{
  background-color: #e50012;
  color: #fff;
}
footer .container{
  padding: 20px 20px 200px;
}
footer .info{
  font-size: 30px;
  line-height: 1.8;
  color: #011b6a;
  text-align: center;
  font-weight: 500;
}
footer .footer_logo{
  width: 90%;
  max-width: 600px;
  margin: 40px auto 0;
}
footer .footer_tel{
  width: 90%;
  max-width: 600px;
  margin: 40px auto 0;
}
footer .add{
  font-size: 30px;
  line-height: 1.8;
  text-align: center;
  font-weight: 500;
  margin-top: 40px;
  color: #fff;
}
footer .copy{
  font-size: 22px;
  text-align: center;
  font-weight: 300;
  margin-top: 40px;
  color: #fff;
}

.map iframe{
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
}

@media (max-width: 767px) {
  
  .container{
    padding: 0;
  }
  
  .mv .container .btn_link{
    width: 70%;
  }

  footer .container{
    padding: 20px 20px 120px;
  }
  
  footer .info,
  footer .add{
    font-size: 16px;
  }
  footer .copy{
    font-size: 14px;
  }
  
  .map iframe{
    aspect-ratio: 1 / 1;
  }
  
  
}