@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: #333;
  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;
}

/*-----------------------------------ローディング-----------------------------------*/
.loader-wrap {
	position: fixed;
	display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgb(255, 255, 255);
    z-index: 999;
}
.loader,
.loader:before,
.loader:after {
  border-radius: 50%;
}
.loader {
  color: #00000015;
  font-size: 2rem;
  text-indent: -99999em;
  margin: 55px auto;
  position: relative;
  width: 10em;
  height: 10em;
  box-shadow: inset 0 0 0 3em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
.loader:before,
.loader:after {
  position: absolute;
  content: '';
}
.loader:before {
  width: 5.2em;
  height: 10.2em;
  background: #ffffff;
  border-radius: 10.2em 0 0 10.2em;
  top: -0.1em;
  left: -0.1em;
  -webkit-transform-origin: 5.1em 5.1em;
  transform-origin: 5.1em 5.1em;
  -webkit-animation: load2 2s infinite ease 1.5s;
  animation: load2 2s infinite ease 1.5s;
}
.loader:after {
  width: 5.2em;
  height: 10.2em;
  background: #ffffff;
  border-radius: 0 10.2em 10.2em 0;
  top: -0.1em;
  left: 4.9em;
  -webkit-transform-origin: 0.1em 5.1em;
  transform-origin: 0.1em 5.1em;
  -webkit-animation: load2 2s infinite ease;
  animation: load2 2s infinite ease;
}
@-webkit-keyframes load2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*-----------------------------------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-----------------------------------*/

@media screen and (max-width:767px) {
  /* ここにSP向けのCSS指定 */
   .pc-top{
     display: none;
   }
   .pc{
    display: none;
  }
   .sp-top{
    margin-top:0rem;
   }
   .carousel div{
     position: relative;
   }
  }
  
  @media screen and (min-width:768px) {
  /* ここにPC向けのCSS指定 */
   .sp-top{
     display: none;
   }
   .sp{
    display: none;
  }
   .pc-top{
     margin-top: 0rem;
   }
   .carousel div{
     position: relative;
   }
   
  }
  /*-----------------------------------container-----------------------------------*/
.container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 112rem;
  padding: 1rem;
  margin: 0 auto;
  box-sizing: border-box;
  justify-content: center;
}

@media (min-width: 769px) {
  .container {
    flex-direction: row;
    display: flex;
    justify-content: center;
  }
}

/*-----------------------------------CONCEPT-----------------------------------*/

.concept{
  padding-top: 4rem;
  padding-bottom: 4rem;
  width: 100%;
  overflow: hidden;
}
.concept-back-color{
padding-bottom:4rem;
}

.concept-heading {
  height: 31px;
  margin:0 auto ;
  margin-bottom: 3rem;
}
.concept-heading img{
  height: 3.1rem;
}

@media (min-width: 769px) {
  .concept-heading img{
    height: 4rem;
  }
}

.concept-text {
  padding: 0 20px;
  margin-top: 2.5rem;
}

.concept-sabu-text-pc {
  display: block;
  color: #0000009c;
  font-family: 'Font Awesome 5 Brands';
}

@media (min-width: 769px) {
  .concept-sabu-text-pc {
    display:block;
  }
  .concept-heading {
    text-align: left;
    display: flex;
  }
  .concept-heading-text {
    text-align: left;
  }
  .concept-item{
    display: flex;
    flex-direction: row-reverse;
  }
  .concept-img{
    width: 50%;
  }
  .concept-text{
    width: 50%;
    padding-left: 1rem;
    float: left;
  }
}

.concept-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 112rem;
  padding: 0 2rem;
  margin: 0 auto;
  box-sizing: border-box;
  padding-left: 0px;
  padding-right: 0px;

}


.concept-img{
  transition-duration: 0.5s;
  margin-top:2.4rem;
}

.concept-img:hover{
  transform: translateY(-6px);
  transition-duration: 0.5s;
}

.top-concept-buttom-p{
  background-color: #a5a5a5;
  margin: 6rem auto;
  margin-bottom: 0px;
  text-align: center;
  font-size: 2rem;
  border-radius: 50%;
  width: 4rem;
  transition-duration: 0.5s;
  color: #fff;
}
@media (min-width: 769px) {
  .concept-container {
    flex-direction: row;
    display: flex;
    padding: 0rem 2rem;
  }
}
.top-concept-buttom-p:hover {
  background-color: #c0c0c0;
  transition-duration: 0.5s;
}
/*-----------------------------------news-----------------------------------*/


.background-news {
    background-image: url(../images/news_slide.jpg?20211105);
    min-height: 30vh;
    position: relative; 
    background-size: cover;
    background-position: center;
}
@media screen and (min-width:768px) {
  .background-news {
    background-image: url(../images/cp_news_slide.jpg?20211105);
}
}

  
.news-back-color{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);/* 要素の大きさの半分の距離を左、上方向に移動する */
  -webkit-transform: translateY(-50%) translateX(-50%);
  width: 100%;
  background: rgb(221,221,221,0.0);
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.news-heading {
  height: 31px;
  margin:0 auto ;
  margin-bottom: 3rem;
}
.news-heading img{
  height: 3.1rem;
}


.top-news {
  background-color: #fff;
  padding-top: 0rem;
  padding-bottom: 10rem;
}

@media (min-width: 769px) {
  .top-news {
    padding-top: 5rem;
    padding-bottom: 10rem;
  }
  .news-heading img{
    height: 4rem;
  }
}


.top-news-body {
  width: calc((100% - 1rem) / 2);
  box-sizing: border-box;
  margin: 2rem 0.5rem 0 0;
  background-color: #ffffff;
  transition: 1s;
  font-family: sans-serif;
  border: 1px solid rgba(0, 0, 0, 0.50);
  padding-top: 1rem;
}
.top-news-body:nth-of-type(2n) {
  margin: 2rem 0rem 0 0.5rem;
}


@media (min-width: 769px) {
  .top-news-body {
    width: calc((100% - 4rem) / 2);
    margin-bottom: 2rem;
    box-sizing: border-box;
    margin:2rem  2rem 0 0 ;
  }
  .top-news-body:nth-of-type(2n) {
    margin: 2rem 0rem 0rem 0rem;
  }
  .top-news-body:nth-of-type(4n) {
    margin: 2rem 0rem 0rem 0rem;
  }
}

.top-news-body:active{
  box-shadow:0px 0px 12px 5px rgba(51, 51, 51, 0.1);
}

.top-news-text {
  padding: 0rem 2rem 2rem;
  margin: 0;
  color: #0000009c;
  font-family: 'Font Awesome 5 Brands';
}
.top-news-day {
  width: 8rem;
  margin-bottom: 0;
  padding: 0rem 0rem 1rem 2rem;
  margin: 0;
  font-size: 1.2rem;
  color: #0000005e;
  font-family: 'Font Awesome 5 Brands';
}

@media (min-width: 769px) {
  .top-news-day {
    margin-bottom: 0rem;
    padding-bottom:1rem;
    font-size: 1.5rem;
  }
}

/*-----------------------------------content-----------------------------------*/

.top-content {
  background-color: #fff;
  padding-top: 0rem;
  padding-bottom: 5rem;
}

@media (min-width: 769px) {
  .top-content {
    padding-top: 0rem;
    padding-bottom: 10rem;
  }
}


.top-content-body {
  width: calc((100% - 1rem) / 1);
  box-sizing: border-box;
  margin-bottom: 2rem;
  transition-duration: 0.5s;
  position: relative;
  box-shadow: 10px 5px 5px #0000004f;
}
@media (min-width: 769px) {
  .top-content-body img{
    width: 100%;
  }
}


@media (min-width: 769px) {
  .top-content-body {
    width: calc((100% - 4rem) / 2);
    margin-bottom: 2rem;
    box-sizing: border-box;
    margin: 2rem 2rem 0 0;
    position: relative;
  }
  .top-content-body:nth-of-type(2n) {
    margin: 2rem 0 0 2rem;
  }
  
}


.top-content-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
@media (min-width: 769px) {
  .top-content-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  }
}
.top-content-body:hover{
  box-shadow: 10px 5px 5px #00000000;
  transform: translateY(-6px);
  transition-duration: 0.5s;
}


/*-----------------------------------access-----------------------------------*/
.access {
  padding-top: 4rem;
  padding-bottom: 0rem;
  overflow: hidden;
}
.access-heading {
  margin:2rem auto;
}
.access-title {
  font-family: "Roboto Condensed";
  width: 100%;
  font-size: 2.8rem;
}

.access-map {
  width: 100%;
  height: 34rem;
}

@media (min-width: 769px) {
  .access-map{
    height: 38rem;
    width: 100%;
  }
}

.access-color{
  background-color: #f2f2f2;
}
.access-text p{
  margin: 0;
  margin-bottom:0.3rem;
  margin-left: 2rem;
  font-size: 1.2rem;
}
.access-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 112rem;
  padding: 1rem;
  margin: 0 auto;
  box-sizing: border-box;
}

@media (min-width: 769px) {
  .access-container {
    flex-direction: row;
    display: flex;
  }
}
/*-----------------------------------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%;
}


@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;
}


.top-video-size{
  width: 100%;
}

.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}
