/* -----------------------------------------------------------
    共通
-------------------------------------------------------------- */
main {
	background: var(--pink-bg);
	padding: 10px 0 10px;
}
.inner {
	width: 1200px;
	margin: 0 auto;
}
p.area-ttl {
	font-size: 3.5rem;
	font-weight: bold;
	text-align: center;
	padding: 0 0 50px;
	color: var(--blue);
}
p.sub-ttl {
	font-size: 2.5rem;
	font-weight: bold;
	padding: 0 0 20px;
	color: var(--blue);
}

img {
	width: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 30px;
}

a::after, a::before, ::after, ::before {
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 900;
}

p.txt {
	color: var(--main-txt);
}

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

.pt10 {
	padding-top: 10px;
}
.pt20 {
	padding-top: 20px;
}

@media screen and (max-width: 768px){
	.inner {
		width: 100%;
		margin: 0 0;
	}
	p.area-ttl {
		font-size: 2.2rem;
		text-align: left;
		padding: 0 0 20px;
	}
	p.sub-ttl {
		font-size: 1.8rem;
		padding: 0 0 10px;
	}
	img {
		width: 100%;
		object-fit: cover;
		object-position: center;
		border-radius: 10px;
	}

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

}

/* -----------------------------------------------------------
    アニメーション
-------------------------------------------------------------- */
.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration:2s;
    animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes fadeUpAnime{
from {
    opacity: 0;
    transform: translateY(100px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

/* -----------------------------------------------------------
    マーカー
-------------------------------------------------------------- */
.markertest {
    font-weight:bold;
    background: -webkit-linear-gradient(left, #fff38c 50%, transparent 50%);
    background: -moz-linear-gradient(left, #fff38c 50%, transparent 50%);
    background: linear-gradient(left, #fff38c 50%, transparent 50%);
    background-repeat: no-repeat;
    background-size: 200% .8em; 
    background-position: 100% .5em;
    transition: 2s;
}
.markertest.is-active{
    background-position: 0% .5em;
}

/* -----------------------------------------------------------
    mv-area
-------------------------------------------------------------- */

/*▽画像ver*/
.mv-area {
	/* width: 100%;
    background-image: url("../img/mv-img.jpg");
	background-position: center;
	background-repeat: no-repeat;
    background-size: cover;
    height: 800px;
    position: relative; */
}
.mv-area::before {
    /*content: "";
    background: linear-gradient(rgba(0, 0, 0, 0.1), #000);
    opacity: 0.35;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0; */
}

/*▽動画ver*/
.mv-area .top-mv-video {
    width: 100%;
    height: 800px;
    position: relative;
}
.mv-area .top-mv-video video {
    margin: 0 0 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.mv-area .mv-box p.logo{
	font-size: 10rem;
	font-weight: bold;
	position: absolute;
    top: 100px;
    right: 100px;
	z-index: 5;
}
.mv-area .mv-box img.logo-img {
	width: 300px;
	object-fit: cover;
	object-position: top;
}

@media screen and (max-width: 768px){

	/*▽画像ver*/
	.mv-area {
		/*width: 100%;
		background-image: url("../img/mv-sp-img.jpg");
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		height: 350px;
		position: relative; */
	}

	/*▽動画ver*/
	.mv-area .top-mv-video {
		width: 100%;
		height: 380px;
		position: relative;
	}
	.mv-area .top-mv-video video {
		object-position: right;
	}

	.mv-area .mv-box p.logo{
		font-size: 5rem;
		top: 30px;
		left: 30px;
	}
	.mv-area .mv-box img.logo-img {
		width: 150px;
		object-fit: cover;
		object-position: center;
	}

	
}

/* -----------------------------------------------------------
    about-area
-------------------------------------------------------------- */
.about-area {
	margin: 100px 0 0;
}

.about-area p.txt {
	font-size: 1.8rem;
	line-height: 2;
}
.about-area p.note {
	font-size: 1.4rem;
	text-indent: -1em;
	padding-left: 1em;
}

.about-area .about-flex {
	margin: 50px 0 0 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.about-area .about-flex iframe {
	width: calc( ( 100% - 50px ) / 2 );
	height: 380px;
}

.about-area .about-flex .txt-box {
	width: calc( ( 100% - 50px ) / 2 );
}
.about-area .about-flex .txt-box ul li {
	font-size: 1.8rem;
	line-height: 1.8;
	padding-bottom: 10px;
	color: var(--main-txt);
}
.about-area .about-flex .txt-box ul li:last-of-type {
	padding-bottom: 0;
}

.about-area .about-flex .txt-box .refe-box {
	margin: 20px 0 0 0;
}
.about-area .about-flex .txt-box .refe-box p {
	text-indent: 0;
    padding-left: 0;
}
.about-area .about-flex .txt-box .refe-box a {
	text-decoration: underline;
	text-indent: -1em; */
    padding-left: 1em;
}

@media screen and (max-width: 768px){
	.about-area {
		margin: 50px 0 0;
		padding: 0 20px 0;
	}
	.about-area .about-flex {
		margin: 20px 0 0 0;
		flex-direction: column;
		gap: 10px;
	}
	.about-area .about-flex iframe {
		width: 100%;
		height: 250px;
	}
	.about-area .about-flex .txt-box {
		width: 100%;
		margin-top: 10px;
	}
	.about-area .about-flex .txt-box ul li {
		font-size: 1.6rem;
	}
	.about-area .about-flex .txt-box p.note {
		font-size: 1.3rem;
		padding: 5px 0 0;
	}

	.about-area .about-flex .txt-box .refe-box {
		margin: 10px 0 0 0;
	}
	
}

/* -----------------------------------------------------------
	slide-area
-------------------------------------------------------------- */
.slide-area {
	/*margin: 50px 0 0;*/
	margin: 100px 0 0;
}
.splide__slide img{
	width: 800px;
	height: 500px;
	object-fit: cover;
	border-radius: 20px;
}
.splide__slide:nth-child(even) img{
	margin: 80px 0 0;
}

@media screen and (max-width: 1600px){
	
}

@media screen and (max-width: 768px){
	.slide-area {
		/*margin: 30px 0 0;*/
		margin: 50px 0 0;
	}
	.splide__slide img{
		width: 200px;
		height: 125px;
		border-radius: 10px;
	}
	.splide__slide:nth-child(even) img{
		margin: 50px 0 0;
	}
}

/* -----------------------------------------------------------
    .reason-area
-------------------------------------------------------------- */
.reason-area {
	margin: 100px 0 0;
}
.reason-area .reason-list {
	width: 100%;
    margin: 0 0 0;
}

.reason-area .reason-list li {
    position: relative;
	margin: 0 0 50px;
}
.reason-area .reason-list li:last-of-type {
	margin: 0 0 0;
}

.reason-area .reason-list li .inner {
    padding: 100px 0 100px 550px;
}

.reason-area .reason-list li .txt-box .sub-ttl {
	position: relative;
  	padding: 10px 10px 10px 120px;
  	border-bottom: 3px solid var(--blue);
	margin: 0 0 30px;
}
.reason-area .reason-list li .txt-box .sub-ttl span {
	font-family: 'Roboto', sans-serif;
  	font-size: 8rem;
  	line-height: 1;
  	position: absolute;
  	bottom: -10px;
  	left: 0;
}

.reason-area .reason-list li .img-box {
	position: absolute;
    top: 0;
    left: 0;
}

/*re*/
.reason-area .reason-list li.re .inner {
    padding: 100px 550px 100px 0;
}

.reason-area .reason-list li.re .img-box {
	position: absolute;
    top: 0;
    right: 0;
	left: auto;
}
/*re end*/

.reason-area .reason-list li .img-box img {
	width: 100%;
    height: 500px;
    object-fit: cover;
}

.reason-area .reason-list li .txt-box p.txt {
	font-size: 1.8rem;
	line-height: 2.2;
}

@media screen and (max-width: 1600px) {
	.reason-area .reason-list {
		margin: 0 0 0;
		padding: 10px 0 0;
	}
	.reason-area .reason-list li .inner {
		padding: 30px 0 30px 450px;
	}

	/*re*/
	.reason-area .reason-list li.re .inner {
		padding: 30px 450px 30px 0;
	}
	/*re end*/
	
	.reason-area .reason-list li .img-box img {
		height: 300px;
	}
	
}

@media screen and (max-width: 768px){
	.reason-area {
		margin: 50px 0 0;
		padding: 0 20px 0;
	}

	.reason-area .reason-list li {
		position: relative;
		margin: 0 0 30px;
	}

	.reason-area .reason-list li .inner {
		padding: 0 0 0;
	}
	
	.reason-area .reason-list li .txt-box .sub-ttl {
		padding: 0 0 0 70px;
		border-bottom: 2px solid var(--blue);
		margin: 0 0 20px;
	}
	.reason-area .reason-list li .txt-box .sub-ttl span {
		font-size: 4rem;
		bottom: -5px;
	}
	
	.reason-area .reason-list li .img-box {
		position: static;
		margin: 10px 0 0;
	}

	/*re*/
	.reason-area .reason-list li.re .inner {
		padding: 0 0 0;
	}

	.reason-area .reason-list li.re .img-box {
		position: static;
	}
	/*re end*/

	.reason-area .reason-list li .img-box img {
		height: auto;
	}

	.reason-area .reason-list li .txt-box p.txt {
		font-size: 1.6rem;
		line-height: 1.6;
	}
	
}

/* -----------------------------------------------------------
    life-area
-------------------------------------------------------------- */
.life-area {
	margin: 100px 0 150px;
}

/*タブ切り替え全体のスタイル*/
.tabs {
    margin-top: 50px;
    padding-bottom: 0;
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);*/
    width: 100%;
    margin: 0 auto 0;
}

/*タブのスタイル*/
.tab_item {
    width: calc(100%/3);
	padding: 20px 10px;
    border: 3px solid var(--blue);
	border-bottom: none;
    background-color: #fff;
    font-size: 2.4rem;
    text-align: center;
    color: var(--blue);
    display: block;
    float: left;
    font-weight: bold;
    transition: all 0.2s ease;
	cursor: pointer;
	border-radius: 30px 30px 0 0;
}
.tab_item.tab01 {
	border-radius: 30px 0 0 0;
}
.tab_item.tab02 {
	border-radius: 0 0 0 0;
	border-left: none;
	border-right: none;
}
.tab_item.tab03 {
	border-radius: 0 30px 0 0;
}
.tab_item:hover {
    opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
    display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
    display: none;
    padding: 50px 50px 50px;
    clear: both;
    overflow: hidden;
	background: #fff;
	border: 3px solid var(--blue);
	border-radius: 0 0 30px 30px;
}

/*選択されているタブのコンテンツのみを表示*/
#stay:checked ~ #stay_content,
#share:checked ~ #share_content,
#school:checked ~ #school_content {
    display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
    background: var(--blue);
    color: #fff;
}

/*タブ内コンテンツ*/
.tab_content .content-box {
	
}
.tab_content .content-box .content-first {
	margin: 0 0 0;
}
.tab_content .content-box .content-first p {
	text-align: center;
	line-height: 2;
}

.tab_content .content-box .content-first .content-top {
	position: relative;
}
.tab_content .content-box .content-first .content-top img {
	width: 100%;
	height: 350px;
	object-fit: cover;
	object-position: center;
	margin: 0 0 30px;
}
.tab_content .content-box .content-first .content-top p.content-ttl {
	/*position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);*/
	color: var(--blue);
	font-size: 2.5rem;
	font-weight: bold;
	padding: 0 0 30px;
}

.tab_content .content-box .content-list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.tab_content .content-box .content-list li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: solid 1px var(--blue);
	padding: 50px 0 50px;
	gap: 50px;
}
.tab_content .content-box .content-list li:first-of-type {
	border-top: none;
	padding: 0 0 50px;
}
.tab_content .content-box .content-list li:last-of-type {
	padding: 50px 0 0;
}

.tab_content .content-box .content-list li .txt-box {
	/*width: calc( ( 100% - 25px ) / 2 );*/
	width: calc( 100% - 230px );
}
.tab_content .content-box .content-list li .img-box {
	/*width: calc( ( 100% - 25px ) / 2 );*/
	width: 180px;
}
.tab_content .content-box .content-list li .img-box img {
	width: 100%;
	object-fit: cover;
	object-position: center;
	aspect-ratio: 1/1;
	border-radius: 50%;
}

@media screen and (max-width: 768px){
	.life-area {
		margin: 50px 0 50px;
		padding: 0 20px 0;
	}
	
	/*タブ切り替え全体のスタイル*/
	.tabs {
	    width: 100%;
		margin: 0 0 0;
		padding: 0 0 0;
	}
	.tab_content {
		padding: 20px 20px 20px;
		border-radius: 0 0 10px 10px;
		border: 2px solid var(--blue);
	}
	
	/*タブのスタイル*/
	.tab_item {
	    width: calc(100%/3);
	  	cursor:auto;
		padding: 10px;
		font-size: 1.6rem;
		border-radius: 10px 10px 0 0;
		border: 2px solid var(--blue);
		border-bottom: none;
	}
	.tab_item.tab01 {
		border-radius: 10px 0 0 0;
	}
	.tab_item.tab02 {
		border-radius: 0 0 0 0;
		border-left: none;
		border-right: none;
	}
	.tab_item.tab03 {
		border-radius: 0 10px 0 0;
	}
	.tab_item:hover {
	    opacity: 1;
	}
	
	/*タブ内コンテンツ*/
	.tab_content .content-box .content-first {
		margin: 0 0 0;
	}
	.tab_content .content-box .content-first p {
		text-align: left;
	}

	.tab_content .content-box .content-first .content-top {
		position: relative;
	}
	.tab_content .content-box .content-first .content-top img {
		height: 150px;
		margin: 0 0 20px;
	}
	.tab_content .content-box .content-first .content-top p.content-ttl {
		/*left: 20px;*/
		font-size: 2rem;
		padding: 0 0 10px;
		text-align: center;
	}

	.tab_content .content-box .content-list li {
		flex-direction: column;
		padding: 20px 0 20px;
		gap: 20px;
	}
	.tab_content .content-box .content-list li:first-of-type {
		padding: 0 0 20px;
	}
	.tab_content .content-box .content-list li:last-of-type {
		padding: 20px 0 0;
	}

	.tab_content .content-box .content-list li .txt-box {
		width: 100%;
	}
	.tab_content .content-box .content-list li .img-box {
		width: 100%;
		display: flex;
		justify-content: center;
	}
	.tab_content .content-box .content-list li .img-box img {
		width: 180px;
		height: 180px;
	}
	
}

/* -----------------------------------------------------------
    sum-up-area
-------------------------------------------------------------- */
/*背景半円*/
.bg {
  overflow: hidden;
}
.bg .semi-circle {
  background: #f7e7da;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  height: 200px;
  margin-left: -100px;
  margin-right: -100px;
  padding-left: 100px;
  padding-right: 100px;
} 
/*背景半円 end*/

.sum-up-area {
	background: #fdf5f2;
	background: linear-gradient(0deg,#fdf5f2 0%, #F7ECE4 50%, #f7e7da 100%);
	padding: 0 0 0;
}
.sum-up-area .sum-up-box {
	display: flex;
	justify-content: flex-start;
	gap: 50px;
}
.sum-up-area .sum-up-box .ttl-box {
	width: calc( ( 100% - 25px ) / 2 );
}
.sum-up-area .sum-up-box .ttl-box p.area-ttl {
	font-size: 3.5rem;
	text-align: left;
	padding: 0 0 0;
}
.sum-up-area .sum-up-box .txt-box {
	width: calc( ( 100% - 25px ) / 2 );
}
.sum-up-area .sum-up-box .txt-box p.txt{
	font-size: 1.8rem;
	line-height: 2;
}

@media screen and (max-width: 768px){
	/*背景半円*/
	.bg .semi-circle {
	  height: 80px;
	  margin-left: -40px;
	  margin-right: -40px;
	  padding-left: 40px;
	  padding-right: 40px;
	} 
	/*背景半円 end*/
	
	.sum-up-area {
		padding: 0 20px 0;
	}
	.sum-up-area .sum-up-box {
		flex-direction: column;
		gap: 20px;
	}
	.sum-up-area .sum-up-box .ttl-box {
		width: 100%;
	}
	.sum-up-area .sum-up-box .ttl-box p.area-ttl {
		font-size: 2.2rem;
	}
	.sum-up-area .sum-up-box .txt-box {
		width: 100%;
	}
	.sum-up-area .sum-up-box .txt-box p.txt{
		font-size: 1.6rem;
		line-height: 1.6;
	}
	
}

/* -----------------------------------------------------------
    gallery-area
-------------------------------------------------------------- */
.gallery-area {
	margin: 100px 0 100px;
}

.gallery li {
	position: relative;
}

.gallery li img {
	width: 100%;
	height: 240px;
	object-fit: cover;
	object-position: center;
}
.gallery li.long img {
	height: 500px;
}

.gallery li::before {
    content: '\f002';
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--blue);
    z-index: 1;
    color: #fff;
    line-height: 30px;
    bottom: 0;
    right: 0;
	text-align: center;
	border-radius: 0 0 10px 0;
}
.gallery a {
	transition: 0.3s;
}
.gallery a:hover {
	opacity: 0.7;
}

@media only screen and (max-width: 768px) {
	.gallery-area {
		margin: 50px 0 50px;
		padding: 0 20px 0;
	}
	.gallery li img {
		height: 105px;
	}
	.gallery li.long img {
		height: 105px;
	}
}

/*==================================================
ギャラリーのためのcss
===================================*/
.gallery{
	columns: 3;/*段組みの数*/
	padding:0 0;/*ギャラリー左右に余白をつける*/
	margin:0;
}

.gallery li {
    margin-bottom: 20px;/*各画像下に余白をつける*/
	list-style:none;
}

/*ギャラリー内のイメージは横幅100%にする*/
.gallery img{
	width:100%;
	height:auto;
	vertical-align: bottom;/*画像の下にできる余白を削除*/}

/*　横幅900px以下の段組み設定　*/
@media only screen and (max-width: 900px) {
	.gallery{
		columns:3;
	}	
}

@media only screen and (max-width: 768px) {
	.gallery{
		columns: 2;
	}	
	.gallery li.ga04 {
		margin-bottom: 0;
	}
}

/* -----------------------------------------------------------
    -area
-------------------------------------------------------------- */
@media screen and (max-width: 768px) {
	
}