@charset "UTF-8";
/* CSS Document */
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
    -webkit-font-smoothing: subpixel-antialiased;
    box-sizing: border-box;
    letter-spacing: 1px;
	color: #464646;
}


h1,h2,h3,h4{
    font-weight: 600;
    padding: 0;
    margin: 0;
}
h1{
    font-size: 22px;
	font-weight: 600;
}
h2{
	font-size: 28px;
	color: #464646;
	font-weight: 600;
	font-family: 'Zen Maru Gothic', sans-serif;
	text-align: center;
}
h3{
	font-family: 'Zen Maru Gothic', sans-serif;
	font-size: 20px;
}

ul,li {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
img{
    width: 100%;
    height: auto;
	border-radius: 20px;
}
p{
    margin: 0;
	line-height: 1.6em;
}
a {
    text-decoration: none;
	color: #464646;
}

@media only screen and (max-width: 960px) {
	h1{
		font-size: 18px;
	}
}
@media (max-width: 640px) {
	p{
		font-size: 14px;
	}
}
@media (max-width: 480px) {
	p{
		font-size: 14px;
	}
	img{
		border-radius: 10px;
	}
}

/*ヘッダー*/
header{
	width: 100%;
	height: auto;
	margin: 0 auto;
	position: fixed;
	z-index: 9998;
}
.header{
	max-width: 1024px;
	width: 90%;
	height: auto;
	margin: 0 auto;
	background-color: #fff;
	justify-content: space-between;
	border-radius: 0 0 20px 20px;
	text-align: center;
	display: flex;
}

.header_1{
	padding: 20px 0;
	height: auto;
	margin: 0 20px 0 40px;
	display: flex;
}
.header_1 img{
	width: 28px;
	margin-right: 5px;
}
.header_1 a{
	font-size: 22px;
	font-weight: 600;
}
.header_2{
	display: inline-block;
}
.header_2 ul{
	display: flex;
}
.header_2 ul li{
	margin: 4px 3vw 4px 0;
	padding: 20px 0;
	font-weight: 400;
}
.header_2 ul li a{
	font-size: 15px;
} 
.header_2 ul li a:hover{
	color: #2EA5AA;
	transition: .2s;
}



.header_2 ul .contact-btn{
	width: 140px;
	height: auto;
	background-color: #2EA5AA;
	color: #fff;
	margin: 0;
	padding: 23px 0;
	border-radius: 0 0 20px 0;
	display: block;
	border: solid 2px #2EA5AA;
}

/* ハンバーガー初期設定 */
.hamburger {
  display: none;
  width: 28px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  margin: auto 20px auto 0;
  z-index: 10001;
}
.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #464646;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* 開閉アニメーション */
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* 960px以下で切り替え */
@media (max-width: 960px) {
	.header_1{
		margin: 0 20px 0 20px;
		padding: 16px 0;
	}
  .hamburger {
    display: flex;
  }

  /* 全画面オーバーレイ */
  .header_2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255,255,255,0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10000;
  }

  .header_2.active {
    opacity: 1;
    pointer-events: auto;
  }
	.header_2 nav{
		width: 90%;
		margin: 0 auto;
	}
  .header_2 ul {
	  width: 100%;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

	.header_2 ul li{
		margin: 0 auto;
	}
  .header_2 ul li a {
    font-size: 18px;
    font-weight: 500;
    color: #464646;
  }

  .header_2 ul .contact-btn {
    background-color: #2EA5AA;
    color: #fff;
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 18px;
    margin-top: 40px;
	  max-width: 300px;
	  width: 90%;
	  display: block;
	  margin: 10px auto 0 auto;
  }
}

/*タイトル*/
.title{
	text-align: center;
}
.title h2{
	font-size: 28px;
	
}
.title span{
	display: inline-block;
	background-color: #E95477;
	width: 88px;
	height: 4px;
	border-radius: 3px;
}
@media (max-width: 960px) {
	.title h2{
		font-size: 24px;
	}
	.title span{
		width: 66px;
	}
}

/*セクション設定*/
.box{
	padding: 50px 0;
}
@media (max-width: 480px) {
	.box{
		padding: 50px 0;
	}
}

/*メインビュー*/
.mainview{
	width: 100%;
}
.mainview video{
	width: 100%;
}
@media (max-width: 480px) {
	.mainview video{
		height: 45vh;
		object-fit: cover;
	}
}

/*ようこそココカラクトへ*/
.beginning{
	background-color: #F7F7F7;
	margin: 0 auto;
	padding: 50px 0;
}
.beginning_1{
	max-width: 640px;
	width: 90%;
	text-align: center;
	margin: 0 auto;
}
.beginning_1 p{
	margin: 20px 0 30px 0;
	word-break: keep-all;
    overflow-wrap: break-word;
}
.beginning_1 .emphasis{
	margin: 5px 0;
	display: block;
/*	font-weight: 600;*/
}

img{
	border-radius: 20px;
}
@media (max-width: 640px) {
	.beginning{
		padding: 30px 0;
	}
}
@media (max-width: 480px) {
	.beginning{
		padding: 20px 0;
	}
}

/*ココカラクトについて*/
.ashirai1-1,.ashirai1-2,.ashirai1-3,.ashirai2-1,.ashirai2-2{
	position: relative;
	z-index: -1;
}
.ashirai2-1,.ashirai2-2{
	position: relative;
	z-index: 1;
}
.ashirai1-1 img,.ashirai1-2 img,.ashirai1-3 img,.ashirai2-1 img,.ashirai2-2 img{
	position: absolute;
	width: 240px;
	height: auto;
	border-radius: 0;
}
.ashirai1-1 img{
	left: 0;
	top: 150px;
}
.ashirai1-2 img{
	right: 0;
	top: 350px;
}
.ashirai1-3 img{
	left: 100px;
	top: 0px;
}
.ashirai2-1 img{
	width: 100px;
	height: auto;
    top: -118px;
	right: 5%;
}
.ashirai2-2 img{
	width: 100px;
	height: auto;
    top: -118px;
	left: 5%;
}

@media (max-width: 960px) {
	.ashirai1-1 img,.ashirai1-2 img,.ashirai1-3 img{
		width: 100px;
		
	}
	.ashirai2-1 img,.ashirai2-2 img{
		width: 70px;
		top: -84px;
	}
}
@media (max-width: 480px){
	.ashirai2-1 img,.ashirai2-2 img{
		width: 50px;
		top: -60px;
	}
	.ashirai1-2 img{
		top: 220px;
	}
	.ashirai1-3 img{
		left: 30px;
	}
}



.about_1{
	max-width: 640px;
	width: 90%;
	margin: 0 auto;
	text-align: center;
}
.about_1 p{
	margin: 0 0 30px 0;
}
/*吹き出し*/
.balloon3 {
  position: relative;
  display: inline-block;
  margin: 1.5em 0;
  width: 120px;
  height: 120px;
  line-height: 90px;
  text-align: center;
  color: #FFF;
  font-size: 20px;
  font-weight: bold;
  background: #2EA5AA;
  border-radius: 50%;
  box-sizing: border-box;
}

.balloon3:before {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #2EA5AA;
  z-index: 0;
}

.balloon3 h3{
	padding: 14px 0;
	font-weight: 500;
	font-size: 18px;
}

@media (max-width: 640px) {
	.balloon3{
		width: 100px;
		height: 100px;
	}
	.balloon3 h3{
		font-size: 16px;
		padding: 6px 0;
	}
	.balloon3::before{
		bottom: -20px;
		left: 54%;
		border: 12px solid transparent;
		border-top: 12px solid #2EA5AA;
	}
}

/*施設一覧*/
.facility{
	background-color: #F7F7F7;
	margin: 0 auto;
}
.facility-box{
	max-width: 800px;
	width: 90%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
.facility_1{
	width: 49%;
	background-color: #f5f5f5;
	padding: 30px;
}
.facility-img{
	width: 100%;
}
.facility-sen{
	margin-top: 20px;
}
.facility-sen_1{
	font-size: 18px;
	font-weight: 600;
}
.facility-sen_2{
	font-size: 14px;
	font-weight: 400;
}
.facility-sen a{
	display: block;
	width: 100%;
	padding: 6px;
	background-color: #2EA5AA;
	color: #fff;
	text-align: center;
	margin-top: 10px;
	border: solid 2px #2EA5AA;
	border-radius: 10px;
}
.facility-sen a:hover{
	transition: .2s;
	background-color: #fff;
	color: #2EA5AA;
}
@media (max-width: 480px) {
	.facility-box{
		display: block;
	}
	.facility_1{
		width: 100%;
		margin-bottom: 0px;
		padding: 30px 0;
	}
	.facility-sen a{
		padding: 6px;
	}
}

/*お問い合わせ*/
.contact{
	background-color: #2EA5AA;
	margin: 0 auto;
	text-align: center;
	color: #fff;
}
.contact h2{
	color: #fff;
	margin-bottom: 10px;
}
.contact_box a{
	display: block;
	margin: 10px auto 0 auto;
	background-color: #6EE059;
	padding: 10px;
	max-width: 300px;
	width: 90%;
	color: #fff;
	border-radius: 10px;
	border: solid 2px #fff;
	font-size: 18px;
	font-weight: 600;
}
.contact_box a:hover{
	transition: .2s;
	background-color: #fff;
	color: #6EE059;
	border: solid 2px #6EE059;
}
@media (max-width: 480px) {
	.contact .box{
		padding: 30px 0;
	}
	.contact h2{
		font-size: 24px;
	}
	.contact_box a{
		font-size: 15px;
	}
}

/*アントレについて*/
.antre{
	background-color: #f7f7f7;
}
.antrebox{
	max-width: 640px;
	width: 90%;
	margin: 0 auto;
	text-align: center;
}
.antre h2{
	font-family: 'Noto Sans JP', sans-serif;
	margin-bottom: 10px;
}
.antrebox a{
	display: block;
	margin: 10px auto 0 auto;
	background-color: #6EE059;
	padding: 8px;
	max-width: 300px;
	width: 90%;
	color: #fff;
	font-weight: 600;
}
@media (max-width: 640px) {
	.antre h2{
		font-size: 26px;
	}
}
@media (max-width: 480px) {
	.antre h2{
		font-size: 24px;
	}
	.antre .box{
		padding: 30px 0;
	}
}

/*フッター*/
.footer{
	max-width: 960px;
	width: 90%;
	padding: 50px 0;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

.footer_1{
	width: 40%;
}
.footer_p1{
	font-size: 22px;
	font-weight: 600;
	line-height: 0.8em;
}
.footer_p1 span{
	display: inline-block;
	width: 50px;
	height: 3px;
	background-color: #2EA5AA;
}
.unei{
	font-family: 'Zen Maru Gothic', sans-serif;
	color: #2EA5AA;
	font-size: 18px;
}
.footer_p2{
	font-weight: 400;
	margin: 12px 0;
	line-height: 1.4em;
}
.footer_1 a{
	display: block;
	background-color: #2EA5AA;
	padding: 10px;
	max-width: 300px;
	width: 90%;
	border-radius: 10px;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
	border: solid 2px #2EA5AA;
}
 .footer_1 a:hover{
	transition: .2s;
	background-color: #fff;
	color: #2EA5AA;
}

.footer_facility{
	display: flex;
	justify-content: flex-end;
}
.footer_2-1{
	margin-right: 10px;
	text-align: right;
}
.footer_sns{
	text-align: right;
	margin: 16px 0;
}
.footer_sns i{
	color: #2EA5AA;
}

.copyright{
	font-size: 13px;
	font-weight: 400;
}

@media (max-width: 960px) {
	.footer{
		padding: 30px 0;
	}
}
@media (max-width: 640px) {
	.footer{
		display: block;
	}
	.footer_1,.footer_2{
		width: 100%;
	}
	.footer_1{
		text-align: center;
	}
	.footer_p2{
		font-size: 15px;
		margin: 12px 0 18px 0;
	}
	.footer_1 a{
		width: 100%;
		margin: 0 auto;
	}
	.footer_2{
		margin-top: 30px;
	}
	.footer_facility{
		justify-content: center;
		display: block;
	}
	.footer_2-1,.footer_2-2{
		text-align: center;
	}
	.footer_2-1{
		margin-right: 0;
	}
	.footer_sns{
		text-align: center;
	}
	.copyright{
		text-align: center;
	}
}

/*swiper*/

/* スライド全体 */
.swiper-slide {
  transition: transform 0.6s;
}

/* 左右のスライド */
.swiper-slide-prev,
.swiper-slide-next,
.swiper-slide-duplicate-prev,
.swiper-slide-duplicate-next {
  transform: scale(0.85);
}
.swiper{
	margin-bottom: 100px;
}
.swiper-slide-active{
	width: 500px;
}
@media (max-width: 640px) {
	.swiper-slide-active{
		width: 100%;
	}
}

@media (max-width: 480px) {
	.swiper{
		margin-bottom: 30px;
	}
}

.footer_p2 a[href^="tel"] {
  color: inherit;
  text-decoration: none;
  pointer-events: none;
  cursor: default;
	display: inline;
	background-color: inherit;
	border: none;
}