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



/*==========================================
facility
==========================================*/
.facility-wave {
	background-color: #fffcea;
}
.facility-wave img {
	display: block;
}
.facility {
	background-color: #fffcea;
}
.card-container {
    display: flex;          
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.facility-card {
	display: flex;
    flex-direction: column;
    min-height: 300px;
    width: calc(33% - 20px);
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 1px 1px 1px 0px rgba(220,214,202,0.5);
    padding: 0;
    box-sizing: border-box;
	overflow: hidden;
}
.green-card .header-bar {
    	background-color: #3ab16c;

}
.blue-card .header-bar {
    	background-color: #25a2de;

}
.orange-card .header-bar {
    	background-color: #f8a009;
}
.green-card .header-bar,
.blue-card .header-bar,
.orange-card .header-bar {
    	height: 20px;
    	width: 100%;
}
.card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 20px;
}
.card-body {
	text-align: center;
    flex-grow: 1;
}
.card-logo {
	text-align: center;
}
.card-txt {
	font-size: 0.9em;
	line-height: 1.5em;
	margin-top: 20px;
}
.card-ttl-kakeru {
	color: #3ab16c;
	text-align: center;
	line-height: 1.5em;
}
.card-ttl-haruka {
	color: #25a2de;
	text-align: center;
	line-height: 1.5em;
}
.card-ttl-hiyori {
	color: #f8a009;
	text-align: center;
	line-height: 1.5em;
}
.detail-button {
    margin-top: auto;      
    display: block;
    text-align: center;
    padding: 10px 25px 10px 10px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.8em;
    width: 35%; 
    margin-left: auto; 
    margin-right: auto;
    position: relative; 
}

.detail-button::after {
    content: '';
    position: absolute;
    right: 25px;
    top: 50%;
    width: 5px;
    height: 5px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: translateY(-50%) rotate(45deg);
	transition: transform 0.3s ease;
}
.detail-button:hover::after {
  transform: translate(4px, -50%) rotate(45deg);
}
.btn-kakeru {
	background-color: #009944;
	transition: background-color 0.3s ease;
}
.btn-kakeru:hover {
	background-color: #3ab16c;
}
.btn-haruka {
	background-color: #369fd1;
	transition: background-color 0.3s ease;
}
.btn-haruka:hover {
	background-color: #43ade0;
}
.btn-hiyori {
	background-color: #f4ac30;
	transition: background-color 0.3s ease;
}
.btn-hiyori:hover {
	background-color: #f5c36d;
}


/*----- PC -----*/
@media (min-width: 769px) {
	.facility {
		padding: 0 0 80px;;
	}
	.facilityRead {
    	margin: 50px 0;
    	padding: 0;
    	font-size: 14px;
		text-align: center;
	}
	.card-txt {
		padding-bottom: 30px;
 }

}

/*----- mobile -----*/
@media (max-width: 768px) {
	.facility {
		padding: 0 0 40px;
	}
	.facilityRead {
    	margin: 30px 0;
    	padding: 0 20px;
    	font-size: 14px;
		text-align: center;
		line-height: 1.7em;
	}
    .card-container {
        flex-direction: column;
        align-items: center;
    }

    .facility-card {
        width: 90%;
        margin-bottom: 20px;
    }
	.detail-button {
		margin-top: 30px;
		width: 30%;
	}
	.facility-wave img {
		width: 100%;
    	height: 10px;
    	object-fit: cover;
    	display: block;
	}
}


/*==========================================
approach
==========================================*/
.approach-container {
	
}
.main-container {
    height: 400px;
    position: relative;
    overflow: hidden;
    background-image: url('../img/ph_top_approach.jpg'); 
    background-repeat: no-repeat;
    background-size: 50% 100%;
    background-position: right;
    background-color: #fff0ea;
}

.content-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    padding: 40px;
    box-sizing: border-box;
    /* 中央揃え */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wave-svg {
    width: 100%;
    position: absolute;        
    left: 0;
    z-index: 10;               
}
.top-wave {
	display: block;
    top: 0;
}

.bottom-wave {
	display: block;
    bottom: 0;

}
.approach-button {
    margin: 70px auto 0;      
    display: block;
    text-align: center;
    padding: 10px 25px 10px 10px;
    background-color: #f46462;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.8em;
    width: 150px;
    position: relative; 
}
.approach-button-sp {
    margin: 40px auto 0;      
    display: block;
    text-align: center;
    padding: 10px 25px 10px 10px;
    background-color: #f46462;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.8em;
    width: 150px;
    
    position: relative; 
}
.approach-button::after, .approach-button-sp::after {
    content: '';
    position: absolute;
    right: 35px;
    top: 50%;
    width: 5px;
    height: 5px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: translateY(-50%) rotate(45deg);
	transition: transform 0.3s ease;
}
.approach-button:hover, .approach-button-sp:hover {
	background-color: #f4a8a6;
	transition: background-color 0.3s ease;
}
.approach-button:hover::after,
.approach-button-sp:hover::after {
  transform: translate(4px, -50%) rotate(45deg);
}


/*----- PC -----*/
@media (min-width: 769px) {
	.content-wrapper h2 {
		text-align: center;
		font-size:1.9em;
		color: #f46462;
		font-family: tbchibirgothicplusk-pro, sans-serif;
		margin-top: 50px;
	}
	.content-wrapper h2 span {
    	font-size: 1.0em;
		vertical-align: -0.1em; 
	}
	.content-wrapper p {
		font-size: 0.9em;
		line-height: 1.5em;
		margin: 40px auto 0;
		width: 90%;
	}


}

/*----- mobile -----*/
@media (max-width: 768px) {

	.approach-container-sp * {
    	box-sizing: border-box;
	}

	.approach-container-sp {
    	position: relative;
    	display: flex;
    	flex-direction: column;
    	width: 100%;
    	overflow: hidden;
    	background-color: #fff0ea;
	}

	.approach-box {
    	display: flex;
    	flex-direction: column;
    	width: 100%;
    	position: relative;
    	z-index: 5;
	}

	.content-left-sp {
    	width: 100%;
    	padding: 0;
    	order: 1;
	}

	.content-right-sp {
    	width: 100%;
    	padding: 0;
    	order: 2;
	}

	.content-wrapper-sp {
    	padding: 20px;
    	background-color: #fff0ea;
	}

	.approach-image-sp {
    	width: 100%;
    	height: auto;
    	display: block;
	}

	.wave-svg-sp {
    	width: 100%;
    	position: absolute;
    	left: 0;
    	z-index: 10;
	}

	.top-wave-sp {
    	top: 0;
		width: 100%;
    	height: 10px;
    	object-fit: cover;
	}

	.bottom-wave-sp {
    	bottom: 0;
		width: 100%;
    	height: 10px;
    	object-fit: cover;
	}

	.content-wrapper-sp h2 {
		text-align: center;
		font-size:1.7em;
		color: #f46462;
		font-family: tbchibirgothicplusk-pro, sans-serif;
		margin-top: 30px;
	}
	.content-wrapper-sp h2 span {
    	font-size: 1.0em;
		vertical-align: -0.1em; 
	}
	.content-wrapper-sp p {
		font-size: 0.9em;
		line-height: 1.5em;
		margin: 30px auto 0;
		width: 90%;
	}

	.detail-button-sp {
    	display: inline-block;
    	padding: 10px 20px;
    	background-color: #3ab16c;
    	color: white;
    	text-decoration: none;
    	border-radius: 50px;
    	margin-top: 15px;
	}
	
}


/*==========================================
news
==========================================*/
.info {
	background-color: #fffcea;
	padding: 60px 20px 50px;
	font-family: sans-serif;
	color: #333;
}

.info__container {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.info__header {
	text-align: center;
}

.info__title {
	color: #f46462;
	font-size: 2rem;
	margin: 0;
	letter-spacing: 0.1em;
	font-family: tbchibirgothicplusk-pro, sans-serif;
	text-align: center;
}

.info__title::after {
	content: 'information';
	font-size: 14px;
    color: #a16c49;
    letter-spacing: 0.3em;
	display: block;
	margin-top: 10px;
}

.info__item {
	display: flex;
	margin: 0 0 20px 0;
	font-size: 0.95rem;
	line-height: 1.6;
}

.info__date {
	color: #f46462;
	width: 100px;
	flex-shrink: 0;
}

.info__content {
	margin: 0;
	color: #555;
}

.info__link {
	color: #6a5acd;
	text-decoration: underline;
}

/*----- PC -----*/
@media (min-width: 769px) {
	.info {
		padding: 60px 10px 50px;
	}
  .info__container {
    flex-direction: row;
    align-items: flex-start;
	width: 90%;
  }

  .info__header {
    width: 30%;
    text-align: center;
    padding-top: 50px;
  }

  .info__body {
    width: 70%;
  }

  .info__item {
    margin-bottom: 20px;
  }
}


/*==========================================
Album
==========================================*/
.album {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 60px 20px 60px;
  background-color: #fbf7e5;
}
.album__svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.album__svg img {
  width: 100%;
  height: auto;
  display: block;
}
.album__item {
  flex: 1;
  max-width: 350px;
  text-align: center;
}

.album__center {
  flex: 0 0 280px;
}

.album__img {
  width: 100%;
  height: auto;
}

.album__title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  font-family: tbchibirgothicplusk-pro, sans-serif;
}

.album__title--pink {
  color: #e96b6b;
}

.album__title--pink::before {
  content: "";
  display: inline-block;
  width: 48px;
  height: 42px;
  margin-right: 12px;
  
  background-image: url("../img/pict_album.gif"); 
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.album__title--brown {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b4513;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.album__title--brown::after {
  content: "";
  display: inline-block;
  
  width: 48px;  
  height: 48px; 
  
  margin-left: 12px; 
  
  background-image: url('../img/pict_dl.gif'); 
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.album__btn {    
    display: block;
    text-align: center;
    padding: 10px 25px 10px 10px;
    background-color: #f46462;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.8em;
    width: 150px;
    position: relative; 
}
.album__btn--pink {
    background-color: #f46462;
}
.album__btn--brown {
    background-color: #a84200;
}

.album__btn--pink::after,
.album__btn--brown::after {
    content: '';
    position: absolute;
    right: 35px;
    top: 50%;
    width: 5px;
    height: 5px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: translateY(-50%) rotate(45deg); 
	transition: transform 0.3s ease;
}
.album__btn--pink:hover {
	background-color: #f4a8a6;
	transition: background-color 0.3s ease;
}
.album__btn--brown:hover {
	background-color: #cc733a;
	transition: background-color 0.3s ease;
}
.album__btn--pink:hover::after,
.album__btn--brown:hover::after {
	transform: translate(4px, -50%) rotate(45deg);
}

/*----- PC -----*/
@media (min-width: 769px) {
  .album__title {
    margin-bottom: 40px;
  }
	.album__btn {
    margin: 70px auto 0; 
	}
}

/*----- mobile -----*/
@media (max-width: 768px) {
	.album {
    	flex-direction: column;
    	gap: 40px;
	}

	.album__center {
    	display: none;
	}
	.album__btn {
    	margin: 40px auto 0;
	}
	.album__svg img {
		width: 100%;
    	height: 10px;
    	object-fit: cover;
    	display: block;
	}
}


/*==========================================
recruit
==========================================*/
.recruit {
  position: relative;
  height: 400px;
  background-image: url("../img/hero_recruit.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 1400px auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 60px;
  overflow: hidden;
}
.recruit__svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}

.recruit__svg img {
  width: 100%;
  display: block;
}
.recruit__content {
  max-width: 480px;
  color: #fff;
  position: relative;
  z-index: 3;
	text-align: center;
}
.recruit__title {
	font-size:1.9em;
	color: #fff;
	font-family: tbchibirgothicplusk-pro, sans-serif;
}
.recruit__title h2 span {
    font-size: 1.0em;
	vertical-align: -0.1em; 
}
.recruit__btn {
    display: block;
    text-align: center;
    padding: 10px 25px 10px 10px;
    background-color: #fff;
    color: #f46462;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.8em;
    width: 150px;
    position: relative;
	margin: 0 auto;
}
.recruit__btn::after {
    content: '';
    position: absolute;
    right: 35px;
    top: 50%;
    width: 5px;
    height: 5px;
    border-top: 1px solid #f46462;
    border-right: 1px solid #f46462;
    transform: translateY(-50%) rotate(45deg); 
	transition: transform 0.3s ease;
}
.recruit__btn:hover {
	background-color: #f4a8a6;
	transition: background-color 0.3s ease;
	color: #fff;
}
.recruit__btn:hover::after {
	transform: translate(4px, -50%) rotate(45deg);
	border-top: 1px solid #fff;
    border-right: 1px solid #fff;
}

/*----- PC -----*/
@media (min-width: 769px) {
	.recruit {
  		height: 400px;
	}
	.recruit__text {
		margin: 30px 0;
		line-height: 1.5em;
	}
}


/*----- mobile -----*/
@media (max-width: 768px) {
	.recruit {
		height: 320px;
    	padding: 0 20px;
    	justify-content: center;
    	text-align: center;
  	}
	.recruit__text {
		margin: 20px 0;
		line-height: 1.5em;
	}
	.recruit__svg img {
		width: 100%;
    	height: 10px;
    	object-fit: cover;
    	display: block;
	}
}