@charset "UTF-8";
/* 文字コードの指定 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
html {
  font-size: 62.5%;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.75;
  color: #000000ab;
  background-color: #fff;
}

@media (min-width: 769px) {
  body {
    font-size: 1.6rem;
  }
}

a {
  color: #333;
  text-decoration: none;
  
}


img {
  max-width: 100%;
  vertical-align: bottom;
}

/*-----------------------------------hover-----------------------------------*/

.sp-nav a {
	text-decoration: none;
	padding-bottom: 3px;
	color: #333;
	display: block;
	position: relative;
}
.sp-nav li a::before {
	content: '';
	width: 0;
	left: 0%;
	bottom: 0;
	transition: all 0.5s ease;
	border-bottom: 2px solid #00000030;
	position: absolute;
	display: block;
}
.sp-nav li a:hover::before {
  width: 50%;
	border-bottom: 2px solid #00000030;
}
.sp-nav li a:after {
	content: '';
	width: 0;
	right: 0%;
	bottom: 0;
	transition: all 0.5s ease;
	border-bottom: 2px solid #00000030;
	position: absolute;
	display: block;
}
.sp-nav li a:hover:after {
	width: 50%;
	border-bottom: 2px solid #00000030;
}


/*-----------------------------------Header-----------------------------------*/

.header {
  position: absolute;
    top: 0;
    display: flex;
    align-items: right;
    justify-content: space-between;
    z-index: 100;
    width: 100%;
    height: 8rem;
    padding: 0 0 0 0rem;
    background-color: #200f0400;
    box-sizing: border-box;
}

@media (min-width: 769px) {
  .header {
    padding: 0 3rem 0 3rem;
  }
}

.nav-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  font-size: 3.1rem;
  color: #fff;
  cursor: pointer;
}
.nav-button-close{
  height: 5rem;
  font-size: 3.1rem;
  color: #333;
  cursor: pointer;
  padding-right: 3.9rem;
  padding-top: 0.5rem;
  text-align: right;
}

@media screen and (max-width:767px) {
  .nav-button-close{
    padding-right: 1rem;
  }
}


.sp-nav {
  position: fixed;
  top: 0rem;
  left: 0;
  display: none;
  z-index: 1000;
  width: 100%;
  height: 200rem;
  padding: 1rem;
  font-size: 3rem;
  text-align: right;
  background-color: #fff;
  box-sizing: border-box;
}

.sp-nav-list {
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.sp-nav-list li {
  margin-bottom: 0rem;
  font-family: initial;
}
.logo{
  width: 76px;
}
/* 768pxまでの幅の場合に適応される */
@media (min-width: 767px) {
  .logo-pc img {
    height: 10rem;
    padding-top: 2rem;
  }
}

.header-fas-corlor{
  color:#ffffff;
}
/*-----------------------------------TOP img-----------------------------------*/

@media screen and (max-width:767px) {
  /* ここにSP向けのCSS指定 */
   .pc-top{
     display: none;
   }
   .pc{
    display: none;
  }
   .sp-top {
    margin-top:0rem;
   }
   .sp-top-img {
    width: 100%;
    object-fit: cover;
   }
   .carousel-top div{
     position: relative;
   }
  }
  
  @media screen and (min-width:768px) {
  /* ここにPC向けのCSS指定 */
   .sp-top{
     display: none;
   }
   .sp{
    display: none;
  }
   .pc-top {
    margin-top:0rem;
    margin-bottom:4rem;
   }
   .sp-top-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
   }
   .carousel-top div{
     position: relative;
   }
  }

  /*-----------------------------------container-----------------------------------*/
.container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 112rem;
  padding: 0 2rem;
  margin: 0 auto;
  box-sizing: border-box;
  justify-content: center;
}

@media (min-width: 769px) {
  .container {
    flex-direction: row;
    display: flex;
  }
}
/*-----------------------------------FAQ-----------------------------------*/
.cp_qa *, .cp_qa *:after, .cp_qa *:before {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_qa {
	overflow-x: hidden;
	margin: 0 auto;
  color: #000000ab;
  width: 100%;
}
.cp_qa .cp_actab {
	padding: 20px 0;
  border: 1px solid #cccccc;
  margin-bottom: 1rem;
}
.cp_qa label {
	position: relative;
	display: block;
	width: 100%;
	margin: 0;
	padding: 10px 10px 0 48px;
	cursor: pointer;
  font-size: 1.5rem;
  padding-top: 4px;
}
.cp_qa .cp_actab-content {
	position: relative;
	overflow: hidden;
	height: 0;
	margin: 0 40px;
	padding: 0 14px;
	-webkit-transition: 0.4s ease;
	        transition: 0.4s ease;
	opacity: 0;
}
.cp_qa .cp_actab input[type=checkbox]:checked ~ .cp_actab-content {
	height: auto;
	padding: 14px;
	opacity: 1;
  font-size: 1.5rem;
}
.cp_qa .cp_plus {
  padding-left: 1rem;
	font-size: 2.4em;
	line-height: 100%;
	position: absolute;
	z-index: 5;
	margin: 3px 0 0 10px;
	-webkit-transition: 0.2s ease;
	        transition: 0.2s ease;
}
.cp_qa .cp_actab input[type=checkbox]:checked ~ .cp_plus {
	-webkit-transform: rotate(45deg);
  transform: rotate(180deg);
}
.cp_qa .cp_actab input[type=checkbox] {
  display: none;
}
.faq-title-one img{
  height: 4rem;
  margin-top:5rem;
  margin-bottom:3rem;
}
/*-----------------------------------Footer-----------------------------------*/


.footer {
  padding-top: 0rem;
  padding-bottom: 0rem;
  padding-left: 0px;
  padding-right: 0px;
  font-size: 1.4rem;
}

.footer-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #ffffff;
}

@media (min-width: 769px) {
  .footer-body {
    flex-direction: column;
    align-items: center;
    margin-bottom: 0rem;
  }
}

.footer-info {
  flex-direction: column;
  align-items: center;
  margin:1rem auto;
  width: 80%;
  margin-top:5rem;
}


@media (min-width: 769px) {
  .footer-info {
    display: flex;
    flex-direction: column;
    width: 40rem;
  }
}

.footer-address {
  margin-bottom: 2rem;
  font-style: normal;
  text-align: center;
  color: #0000009c;
  border-top: 1px solid rgba(0, 0, 0, 0.30);
  border-bottom: 1px solid rgba(0, 0, 0, 0.30);
  margin-top:3rem;
  margin-bottom: 30px;
  width: 100%;
}
.footer-address-text {
  display: flex;
}
.footer-address-text p{
   margin-left: auto;
   margin-right: auto;
   margin-top:0.5rem;
   margin-bottom: 0.5rem;
}

@media (min-width: 769px) {
  .footer-address {
    margin-bottom: 3rem;
    text-align: left;
  }
  .footer-address-text {
    display: flex;
    width: 100%;
  }
  .footer-address-text p{
    display: flex;
  }
}

.footer-sns {
  display: flex;
  padding: 0;
  margin: 3rem auto;
  list-style: none;
  justify-content: center;
}
.footer-map{
  padding-left: 2rem;
}
.footer-map p{
  margin:0;
}

@media (min-width: 769px) {
  .footer-map{
    padding-left: 0rem;
  }
  .footer-map p{
    margin-bottom:1rem;
  }
}

.footer-sns li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin: 0;
  font-size: 2.4rem;
  border-radius: 50%;
}

.footer-sns li:nth-of-type(2n) {
  margin-left: 2rem;
  margin-right: 2rem;
}

.footer-sns a {
  color: #0000009c;
}

.copyright {
  text-align: center;
  color: #0000009c;
  background-color:#ffffff;
  height: 7rem;
}
.copyright p {
  margin:0;
  padding-top: 2rem;
  font-size: 1.3rem;
}
.footer-map{
  color: #0000009c;
}
.instagram{
  height: 3.5rem;
}
.footer-bottom{
  margin:1rem auto;
}
@media (min-width: 769px) {
  .footer-bottom{
    display: contents;
  }
}
.footer-address-text-call{
  color: #0000009c;
}

/*-----------------------------------Animation-----------------------------------*/

.invisible {
  visibility: hidden;
}



/* トップに戻るボタン */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  width: 40px;
  height: 40px;
  background-color: #f0f0f0;
  color: #333;
  opacity: 0.6;
  font-size: 1.6rem;
  line-height: 40px;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
}

/* マウスを乗せた時に透明度を変える */
.back-to-top:hover {
  opacity: 1;
}
