@charset "utf-8";

/*Well Beingコンセプトページ専用CSS ここから*/

/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
html {font-size:62.5%;} /*1rem=10px*/

/*色の定義 WordPressエラー出るけど大丈夫*/
/*rgbaで個別指定部分あり*/
:root {
	--c1: #FAEBD7;
	--c2: #2F4F4F;
	--c3: #ffbc96;
	--c4: #96AEA2;
}

html,body {height: 100%;}
body {
	margin: 0px;
	padding: 0px;
	color: var(--c2);
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-size: 1.4rem;
	line-height: 2;
	background: var(--c1);
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;font-size: 100%;font-weight: normal;}
ul {list-style-type: none;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}

p, span, li{
	font-family: 'M PLUS Rounded 1c', sans-serif;
}


@keyframes opa1 {
0% {opacity: 0;}
100% {opacity: 1;}
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: var(--c2);
	transition: 0.5s;
}
a:hover {
	color: var(--c3);
	text-decoration: none;
}

/*ヘッダー
---------------------------------------------------------------------------*/
header {
	height: auto;
	overflow: auto;
	position: fixed;
	z-index: 1;
}
/*ヘッダー横幅不足防止*/
header .navigation_pc {
	max-width: unset;
}

/*キービジュアルロゴ
---------------------------------------------------------------------------*/
/* #logo {
	margin: 76px 0 0 0;
	padding: 10px 0;
	text-align: center;
	display: block;
} */

/*固定SNSシェアボタン
---------------------------------------------------------------------------*/
#share {
	position: fixed;
	top: 80px;
	left: 1%;
	width: auto;
	text-align: center;
}
#share ul li a {
	width: 5rem;
	height: 5rem;
	transition: 0.5s;
}
#share ul li a:hover {
	opacity: 0.7;
}
#share ul li a::before {
	top: 26%;
	left: 26%;
}

/*固定メニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体への指定*/
#menubar {
	position: fixed;
	top: 80px;
	right: 2%;
	width: auto;
	text-align: right;
}

#menubar li {
	margin: 0 1%;
	animation-name: opa1;
	animation-duration: 1S;
	animation-fill-mode: both;
	font-size: 1.8rem;
}
#menubar li a {
	text-decoration: none;
	display: block;
	text-align: right;
	color: var(--c4);
	padding-bottom: 5px;
}

#menubar li a:hover {
	color: var(--c2);
	letter-spacing: 0.1em;
}
/*スマホメニュー*/
.menu-sp {
	animation-name: opa1;
	animation-duration: 1S;
	animation-fill-mode: both;
	color: var(--c1);
	font-size: 2rem;
	cursor: pointer;
	text-align: center;
	width: 4rem;
	height: 4rem;
	background-color: var(--c3);
	border-radius: 50%;
	transition: 0.5s;
}
.menu-sp:hover {
	background-color: var(--c2);
}
.menu-sp-cls {
	color: var(--c1);
	font-size: 2rem;
	cursor: pointer;
	text-align: center;
	width: 4rem;
	height: 4rem;
	background-color: var(--c2);
	border-radius: 50%;
	transform: translateX(110%);
	transition: 0.5s;
}
.menu-sp-cls:hover {
	background-color: var(--c3);
}

/*コンテナー（headerとfooterをのぞくブロックを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	margin: 0 auto;
}

/*コンテンツ（上のcontainerの中のブロック）
---------------------------------------------------------------------------*/
#contents {
	overflow: hidden;
	padding: 0 5% 5% 5%;
	background-color: var(--c1);
	background-image: url("https://backdrop-kawashima-ya.ssl-lolipop.jp/note/wp-content/uploads/2021/01/wb-bg.jpg");
	background-repeat: repeat;
	background-attachment: fixed;
	background-size: contain;
}
#contents section {
	padding-top: 76px;
	background-color: rgba(255,255,255,0.7);
}
#contents section ul {
	width: 60%;
	margin: 0 auto;
}

#contents h1 p {
	margin-bottom: 0 !important;
	line-height: 1.5;
}

#contents .title {
	margin: 0 auto 15px auto;
}

#contents h2 {
	clear: both;
	font-size: 3.5rem;
	font-weight: bold;
	text-align: center;
	letter-spacing: 0.1em;
	color: var(--c3);
	border-bottom: 2px solid var(--c3);
	width: 90%;
	margin: 0 auto;
	line-height: 1.2;
	background: none;
}

#contents h3 {
	clear: both;
	font-size: 2rem;
	text-align: center;
	color: var(--c3);
}

/*他。微調整。*/
#contents p + p {
	margin-top: -5px;
}
#contents h2 + p,
#contents h3 + p {
	margin-top: -10px;
}

/*その他 マルチclass
---------------------------------------------------------------------------*/
.color1, .color1 a {color: var(--c4);font-size: 1.8rem;margin-bottom: 0 !important;}
.mb0 {margin-bottom: 0 !important;}
.mt20 {margin-top: 20px;}
.pb76 {padding-bottom: 76px;}
.font18 {font-size: 1.8rem;}
.font40 {font-size: 4rem;}
.text-center {text-align: center;}
.d-none {display: none !important;}


/*Aboutページ
---------------------------------------------------------------------------*/
#about .title {
	margin: 0;
}
#about .about-sns {
	margin-top: 30px;
}
#about .about-sns ul {
	width: auto;
}
#about .about-sns ul li {
	padding: 0.5vw !important;
}
#about .about-sns ul li a {
	width: 17vw;
	min-width: 40px;
	transition: 0.5s;
}
#about .about-sns ul li a:hover {
	opacity: 0.7;
}
#about .about-sns ul li a::before {
	left: calc(50% - 12px);
}
.col-2 {
	display: flex;
	justify-content: center;
	align-items: center;
}
.col-2 img {
	width: 40%;
	height: auto;
}
.col-2 p {
	width: 50%;
	margin-bottom: 0;
}

/*Policyページ
---------------------------------------------------------------------------*/
section#policy ul {
	width: max-content;
	max-width: 80%;
}
section#policy ul li:last-of-type p {
	margin-bottom: 0;
}

/*Expertページ
---------------------------------------------------------------------------*/
#expert ul {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}
#expert li {
	text-align: center;
	width: 140px;
}
#expert li img {
	border-radius: 50%;
	max-height: 100px;
	margin-top: 10px;
}
#expert li p {
	text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
#expert .prof {
	margin-bottom: 0;
}
#expert .ruby {
	font-size: 1rem;
	margin-bottom: -10px;
}
#expert .name {
	font-size: 1.8rem;
}
/*詳細ボタン
-------------------------------*/
a.detail-link {
	width: calc(80vw - 20px);
	max-width: 240px;
	padding: 10px !important;
	background-color: var(--c2);
	color: var(--c1);
	border-radius: 10px;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	margin: 0 auto !important;
	text-decoration: none;
	display: block;
}
a.detail-link:hover {
	background-color: var(--c3);
}

/*運営ページ　画面幅によってカラム数が変わるリスト
---------------------------------------------------------------------------*/
ul.c-col {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
ul.c-col li {
	width: max-content;
	margin-right: 5%;
}
ul.c-col li:last-of-type {
	margin-right: 0;
}

/*その他のSNSページ
---------------------------------------------------------------------------*/
#sns ul {
	width: auto !important;
}
#sns ul li {
	margin: 10px 0 !important;
	position: relative;
}
#sns ul li a {
	width: 80vw;
	max-width: 260px;
	border-radius: 20px;
	transition: 0.5s;
}
#sns ul li a:hover {
	opacity: 0.7;
}
.sns-btn {
	display: flex;
	justify-content: center;
	align-items: center;
}
.sns-disc {
	position: absolute;
	pointer-events: none;
}
.sns-disc p {
	font-size: 1.8rem;
	color: white;
	margin: 10px 0 10px 10px;
	height: 48px;
	align-items: center;
	display: flex;
	justify-content: center;
}
#contents #sns p + p {
	margin-top: 0;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer p {
	margin-bottom: 0 !important;
}
footer a {
	color: #ac2455;
	text-decoration: none;
}
footer a:hover {
	color: #ac2455;
	cursor: pointer;
}
.footer-contact {
	background-color: #ac2455;
	padding: 2% 3%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.footer-img {
	width: 25%;
	min-width: 300px;
	margin: 1% 3% 1% 0;
}
.footer-mail {
	margin: 1% 3% 1% 0;
}
.footer-mail p{
	color: white;
}
.add {
	line-height: 1.4;
	font-size: 1.2rem;
}
.footer-link {
	display: grid;
}
.footer-link a {
	width: auto;
	padding: 10px;
	background-color: white;
	color: #ac2455;
	border-radius: 5px;
	font-size: 1.2rem;
	font-weight: bold;
	text-align: center;
	margin: 1% 0;
}
.footer-link a:first-of-type {
	margin-bottom: 10px;
	transition: 0.5s;
}
.footer-link a:hover {
	opacity: 0.7;
}
.footer-copyright {
	clear: both;
	text-align: center;
	background: white;
	color: #ac2455;
	font-size: 1rem;
	padding: 10px 3%;
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
body .nav-fix-pos-pagetop a {
	display: none;
}
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;text-decoration: none;text-align: center;position: fixed;animation-name: opa1;animation-duration: 1s;animation-fill-mode: forwards;
	width: 60px;
	line-height: 60px;
	bottom: 50px;
	right: 3%;
	background: var(--c4);
	background: rgba(47, 79, 79, 0.5);
	color: var(--c1);
	border-radius: 50%;
}
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: var(--c2);
}
body p.nav-fix-pos-pagetop {
	margin-bottom: 0;
}


/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px){
/*コンテンツ
---------------------------------------------------------------------------*/
#contents section ul {
	width: 80%;
}
/*about２カラムスライダーを１カラムに
---------------------------------------------*/
.col-2 {
	display: block;
}
.col-2 img {
	width: 60%;
	margin: 0 20% !important;
}
.col-2 p {
	width: 80%;
	margin: 0 auto !important;
}
/*Expertモーダル
---------------------------------------------*/
#expert .prof {
	text-align: center;
}
#expert .ruby {
	text-align: center;
}
#expert .name {
	text-align: center;
}
.modalContents {
	display: unset;
	justify-content: unset;
}
.modalContents dt {
	text-align: center;
	margin-right: 0;
}
.modalContents dd {
	width: 100%;
}
}


/*画面幅768px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 768px){
/*キービジュアル
---------------------------------------------------------------------------*/
#contents section {
	padding-top: 40px;
}
/* #logo {
	margin-top: 40px;
} */
#menubar {
	top: 50px;
}
#menubar li a:hover {
	letter-spacing: 0;
}
.footer-img {
	width: 100%;
	max-width: 300px;
	min-width: unset;
}
.footer-contact {
	display: block;
}
.footer-link a:first-of-type {
	margin-top: 10px;
}
}


/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

/*ヘッダー
---------------------------------------------------------------------------*/
.logo {
	padding: 0 !important;
}
#expert li {
	width: 115px;
}
}

/*Well Beingコンセプトページ専用CSS ここまで*/