/*!
Author: necote-plus
Author URI: https://www.ryukokoro.com/
Description:necote-plus 20230405
Version: html5 CSS3
*/

/*--------------------------------------------------------------
りゅうこころ 様
--------------------------------------------------------------*/

/* 基本構造｜PC
--------------------------------------------- */
/* 全体共通 */
html { font-size: 62.5%; }
body {
    margin: 0;
	font-size: 1.6rem;
	line-height: 2.7rem;
}
.u-pc-only { display: block !important; }
.u-sp-only { display: none !important; }
a {
	color: #000;
	text-decoration: none;
}
a img:hover {
	opacity: 0.7;
}
ol {
	margin: 0;
	padding: 0;
}
ul {
	margin: 0;
	padding: 0;
}
li {
	list-style: none;
}

/* 本文構造 */
.l-wide {
    margin: 0;
}
.l-center {
	width:1040px;
    margin: 0 auto;
	padding: 0;
}
.l-flex {
    display: flex;
}



/* header
--------------------------------------------- */
#l-headbox {
    width:100%;
	height: 1000px;
	background: url(img/kokoro_index-pc.jpg) no-repeat;
	background-position: bottom center;
	background-size: cover;
    margin: 0;
}
.p-title {
	width: 1040px;
	text-align: center;
	margin: 0 auto;
}
.p-title img {
	width: 620px;
}
.p-title p {
	color: #fff;
	font-size: 1.2rem;
	text-align: left;
	margin: 0 10px;
}

/* footer
--------------------------------------------- */
.l-footer {
	background: -moz-linear-gradient(top, #a50062, #51127f);
	background: -webkit-linear-gradient(top, #a50062, #51127f);
	background: linear-gradient(to bottom, #a50062, #51127f);
	padding: 20px 0 10px;
}
.p-footer__logo {
	color: #fff;
	text-align: center;
}
.p-footer__logo p {
	font-size: 1.4rem;
	font-weight: bold;
	margin-bottom: 10px;
}
.p-footer__logo img {
	width: 300px;
}
.p-footer__copyright {
	color: #9f738e;
	font-size: 1.2rem;
	margin: 30px auto 0;
}
.p-footer__copyright__text {
	text-align: center;
}

/* SNSボタン
--------------------------------------------- */
.p-sns-link {
	display: flex;
	justify-content: center;
}
.p-sns-link li {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin: 30px;
}
.p-sns-link__litlink {
	border: 1px solid #9fa0a0;
}

/* パンくずリスト
--------------------------------------------- */
#breadcrumb ol {
	display: flex;
	margin-bottom: 20px;
}


/* TOPページ
--------------------------------------------- */
/* 構造 
--------------------------------------------- */

/* INDEX|PC
--------------------------------------------- */
.p-profile {
	text-align: center;
}
.p-profile__img img{
	width: 200px;
	height: 200px;
	border-radius: 50%;
	object-fit: cover;
}
.p-profile__name {
	margin: 20px auto 40px;
}
.p-profile__name p {
	font-size: 1.8rem;
	margin-bottom: 10px;
}
.p-profile__name h2 {
	font-size: 2.6rem;
	font-weight: bold;
	letter-spacing: 0.2rem;
}
.p-profile__text {
	letter-spacing: 0.1rem;
	line-height: 3.5rem;
	margin-bottom: 30px;
}
.p-profile__link a:hover {
	display: block;
	opacity: 0.8;
}
.p-profile__link--inner {
	align-items: center;
	justify-content: center;
	margin-bottom: 50px;
}
.p-profile__link__text {
	text-align: left;
	margin-left: 20px;
}

/* Responsive=tablet対応
--------------------------------------------- */
/*media Queries　タブレットサイズ（768px以下）
------------------------------------- */

@media only screen and (max-width: 768px) {
	/* 基本構造｜スマホ
	--------------------------------------------- */
	/* 全体共通 */
    .u-pc-only { display: block !important; }
    .u-sp-only { display: none !important;
            width: 100vw; }
	a img:hover {
		opacity: 1;
	}		

	/* 本文構造 */
	.l-center {
		width: 90%;
		margin: 0 auto;
	}


/* header
--------------------------------------------- */
	#l-headbox {
		width:100%;
		height: 100vh;
		background: url(img/kokoro_index-pc.jpg) no-repeat;
		background-position: bottom center;
		background-size: cover;
	}
	.p-title {
		width: 90%;
	}
	.p-title img {
		width: 90%;
	}
	.p-title p {
		color: #fff;
		font-size: 1.2rem;
		text-align: left;
		margin: 0 10px;
	}
/* INDEX|SP
--------------------------------------------- */
	.p-profile {
		width: 90%;
		text-align: center;
		margin: 0 auto;
	}
	.p-profile__img img{
		width: 180px;
		height: 180px;
	}
	.p-profile__text {
		text-align: justify;
		margin-bottom: 50px;
	}
	.p-profile__link a:hover {
		opacity: 1;
	}
	.p-profile__link--inner {
		margin-bottom: 50px;
	}
	.p-profile__link__text span {
		color: blue;
		text-decoration: underline;
		text-underline-offset: 5px;
	}

}

/* Responsive=SP対応
--------------------------------------------- */
/*media Queries　スマホサイズ（599px以下）
------------------------------------- */

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

	/* 基本構造｜スマホ
	--------------------------------------------- */
	/* 全体共通 */
    .u-pc-only { display: none !important; }
    .u-sp-only { display: block !important;
            width: 100vw; }
	a img:hover {
		opacity: 1;
	}		

	/* 本文構造 */
	.l-center {
		width: 100%;
		margin: 0 auto;
	}
	.l-flex {
		display: block;
	}


/* header
--------------------------------------------- */
	#l-headbox {
		width:100%;
		height: 70vh;
		background: url(img/kokoro_index-sp.jpg) no-repeat;
		background-position: bottom center;
		background-size: cover;
	}
	.p-title {
		width: 90%;
	}
	.p-title img {
		width: 100%;
	}
	.p-title p {
		color: #fff;
		font-size: 1.2rem;
		text-align: left;
		margin: 0 10px;
	}

/* footer
--------------------------------------------- */
	

/* SNSボタン
--------------------------------------------- */
	.p-sns-link li {
		width: 70px;
		height: 70px;
		margin: 20px;
	}

/* パンくずリスト
--------------------------------------------- */
	#breadcrumb ol {
		overflow-x: auto;
	}
	#breadcrumb ol li {
		flex: 0 0 auto;
	}
	#breadcrumb ol li a {
		text-decoration: underline;
	}

/* TOPページ
--------------------------------------------- */
/* 構造 
--------------------------------------------- */

/* INDEX|SP
--------------------------------------------- */
	.p-profile {
		width: 90%;
		text-align: center;
		margin: 0 auto;
	}
	.p-profile__img img{
		width: 180px;
		height: 180px;
	}
	.p-profile__text {
		text-align: justify;
		margin-bottom: 50px;
	}
	.p-profile__link a:hover {
		opacity: 1;
	}
	.p-profile__link--inner {
		margin-bottom: 50px;
	}
	.p-profile__link--inner img {
		display: none;
	}
	.p-profile__link__text {
		text-align: justify;
		margin-top: 20px;
		margin-left: 0;
	}
	.p-profile__link__text span {
		color: blue;
		text-decoration: underline;
		text-underline-offset: 5px;
	}


}
/*-- スマホサイズ（599px以下）ここまで --*/