/*!
Author: livetogether
Author URI: https://www.livetogether-acclub.net
Description:
Version: html5 CSS3
*/

/*--------------------------------------------------------------
AC倶楽部Live together 様
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap');

/* 基本構造｜PC
--------------------------------------------- */
/* 全体共通 */
html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}
body {
    margin: 0;
	color: #292625;
	font-size: 1.5rem;
	line-height: 2.7rem;
	padding-top: 70px;
}
.u-pc-only { display: block !important; }
.u-sp-only { display: none !important; }
a {
	color: #292625;
	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 {
	width: 100vw;
    margin: 0;
}
.l-center {
	width: 1040px;
    margin: 0 auto;
	padding: 0;
}
.l-flex {
    display: flex;
}

/* header
--------------------------------------------- */
#l-header {
	position: fixed;
	top: 0;
	left: 0;
	background: #fff;
	z-index: 500;
}
.p-headbox {
	display: flex;
	justify-content: space-between;
    width: 1040px;
    margin: 0 auto;
}
/* ロゴ */
.p-headbox--logo {
	margin: 20px 0 10px;
}
.p-headbox--logo img{
	width: 200px;
}
/* グローバルナビ */
.p-headbox__pc-nav {
	margin: 25px 0 18px;
}
.p-headbox__pc-nav__list {
	display: flex;
	justify-content: flex-end;
	font-size: 1.5rem;
}
.p-headbox__pc-nav__list__item a {
	position: relative;
  	display: inline-block;
	margin-left: 30px;
}
.p-headbox__pc-nav__list__item a::after {
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: #00ada9;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform .3s;
  }
.p-headbox__pc-nav__list__item a:hover::after {
	transform: scale(1, 1);
  }
/* footer
--------------------------------------------- */
footer {
	width: 100%;
	background-color: #00ada9;
}
.p-footer__title {
	color: #fff;
	text-align: center;
	font-size: 1.8rem;
	font-weight: bold;
	letter-spacing: 0.5px;
	padding: 36px 0 50px;
}
.l-center.p-footer__title img {
    width: 40px;
    margin-bottom: 10px;
}
.p-footer__title span {
	font-size: 2.6rem;
	margin-left: 10px;
}
.p-footer__copyright__text {
	border-top: solid 1px #3fd2cf;
	color: #d2fefd;
	font-size: 1.2rem;
	text-align: center;
}
/* ページトップ
--------------------------------------------- */
#page-top {
	position: fixed;
	right: 20px;
	bottom: 20px;
}
.page-top__arrow {
	position: relative;
	width: 50px;
	height: 50px;
	background: #794827;
	border: solid 1px #fff;
	border-radius: 50%;
}
.page-top__arrow::before {
	content: '';
	width: 20px;
	height: 20px;
	border: 0px;
	border-top: solid 2px #fff;
	border-left: solid 2px #fff;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	top: 40%;
    left: 30%;
}
/* パンくずリスト
--------------------------------------------- */
#breadcrumb ol {
	display: flex;
	margin-bottom: 20px;
}


/* TOPページ
--------------------------------------------- */
/* 構造｜共通
--------------------------------------------- */
/* 見出しセンター */
.c-title-area {
	text-align: center;
	margin: 0 auto 70px;
}
.c-title-area__title {
	position: relative;
	display: inline-block;
	color: #57060b;
	font-family: 'Zen Maru Gothic', sans-serif;
	font-size: 3rem;
	font-weight: 700;
	letter-spacing: 0.5px;
	line-height: 4rem;
	text-align: center;
	margin-bottom: 15px;
}
.c-title-area__title::before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -20px;
	display: inline-block;
	width: 100px;
	height: 3px;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #00ada9;
  }
/* 見出し中面h2 */
.c-middle-title {
	height: 200px;
}
.c-middle-title__inner {
	display: table-cell;
	height: 200px;
	vertical-align: middle;
}
.c-middle-title__title {
	color: #57060b;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 2.6rem;
	font-weight: 800;
	line-height: 4rem;
	letter-spacing: 0.5px;
	text-shadow: 1px 1px 0 #fff;
}
/* 見出しh3 */
.c-title__h3 {
	color: #57060b;
	font-size: 2.4rem;
	font-weight: bold;
	letter-spacing: 0.5px;
	line-height: 3.4rem;
	text-align: center;
	margin-bottom: 20px;
}
/* ボタン */
.c-button {
	text-align: center;
	margin: 20px auto;
}
.c-button a {
	display: block;
	width: 40%;
	background: #00ada9;
	border-radius: 30px;
	color: #fff;
	font-size: 2rem;
	font-weight: 500;
	line-height: 2rem;
	margin: 30px auto;
	padding: 20px 0;
}
.c-button a:hover {
	opacity: 0.8;
}
/* 間の線 */
.u-background-line {
	width: 100%;
	height: 10px;
	background: url(image/background-ptn02.png) repeat-x;
}
/* テーブル */
.u-table {
	width: 700px;
	margin: 0 auto;
	border-top: solid 1px #9fa0a0;
}
.u-table tr {
	border-bottom: solid 1px #9fa0a0;
}
.u-table th {
	width: 130px;
	padding: 30px 15px;
}
.u-table td {
	padding: 30px 15px;
}

/* INDEX|PC
--------------------------------------------- */
/* メイン画像 */
.p-main {
	height: 650px;
	background: url(image/top.jpg) no-repeat;
	background-size: cover;
	background-position: top center;
}

/* コンセプト */
.p-concept {
	background: url(image/background01.jpg) no-repeat;
	background-size: cover;
	background-position: center;
	padding: 100px 0;
}
.p-concept__content {
	width: 70%;
	background: url(image/background-mokume.jpg);
	border-radius: 20px;
	box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, .5);
	margin: 0 auto;
	padding: 20px;
}
.p-concept__content__inner {
	background: url(image/background-ptn01.jpg);
	border-radius: 15px;
	box-shadow: 2px 2px 0 0 rgba(0, 0, 0, .5);
	padding: 40px 60px;
}
.p-concept__content__title {
	color: #57060b;
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 3.4rem;
	text-align: center;
	margin-bottom: 15px;
}
.p-concept__content__text {
	position: relative;
	letter-spacing: 1px;
	line-height: 3.6rem;
	text-align: justify;
}
.p-concept__content__text::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 4px;
	background: #9fa0a0;
	width: 100%;
	height: 1px;
}
.p-concept__content__text p {
	display: inline;
	border-bottom: solid 1px #9fa0a0;
	padding-bottom: 2px;
}

/* 特徴 */
.p-activity {
	padding: 80px 0;
}
.p-activity__list {
	justify-content: space-between;
	margin-bottom: 60px;
}
.p-activity__list__item {
	width: 28%;
	text-align: center;
}
.p-activity__list__item img {
	margin-bottom: 15px;
}
.p-activity__list__item p {
	text-align: justify;
}

/* サービス */
.p-service {
	padding: 80px 0 0;
	background: url(image/background-ptn01.jpg);
}
.p-service__content {
	justify-content: center;
}
.p-service__content__area--text-l {
	flex-basis: 50%;
	min-width: 800px;
	margin-right: auto;
	padding: 70px 50px 50px 280px;
}
.p-service__content__area--text-r {
	flex-basis: 50%;
	min-width: 800px;
	margin-right: auto;
	padding: 70px 280px 50px 50px;
}
.p-service__content__area--img-r {
	order: 2;
	flex-basis: 50%;
	min-width: 800px;
	min-height: 450px;
	background: url(image/photo01.jpg) no-repeat;
	background-size: contain;
	background-position: top left;
}
.p-service__content__area--img-l {
	flex-basis: 50%;
	min-width: 800px;
	min-height: 450px;
	background: url(image/photo02.jpg) no-repeat;
	background-size: contain;
	background-position: top right;
}
.p-servicet__content__area__text p {
	margin-bottom: 20px;
}
.p-service__content .c-button a {
	width: 70%;
}

/* お知らせ */
.p-news {
	padding: 80px 0;
}
.p-news__content {
	width: 70%;
	margin: 0 auto;
}
.p-news__content .c-title__h3 {
	border-bottom: dotted 3px #e1c3b1;
	padding-bottom: 8px;
	margin-bottom: 30px;
}
.p-news__content__item {
	padding: 0 10px;
}
.p-news__content__item p {
	margin: 20px 0;
}
.p-news__content__item ul {
	position: relative;
	display: block;
	width: 90%;
	background: #e9e9e9;
	border-radius: 10px;
	text-align: justify;
	margin: 30px auto;
	padding: 30px 60px;
}
.p-news__content__item li {
	font-weight: bold;
	list-style: disc;
}
/* 募集終了のお知らせ部分
.p-news__content__item ul::before {
	position: absolute;
	content: "今年度の会員受付は終了いたしました。多数の申し込みありがとうございました。";
	top: 50px;
	left: 115px;
	color: #fff;
	background: rgba(0, 0, 0, .75);
	width: 425px;
	padding: 20px;
}
*/
.u-text--bold-uline {
	border-bottom: solid 2px#00ada9;
	font-weight: bold;
}
.u-text--bold {
	font-weight: bold;
}

/* ブログリンク */
.p-blog-link {
	text-align: center;
	margin-bottom: 30px;
}
.p-blog-link a {
	width: 50px;
	height: 50px;
}
.p-blog-link a img {
	width: 50px;
	height: 50px;
	object-fit: contain;
}

/* STAFF|PC
--------------------------------------------- */
/* h2背景 */
#staff .c-middle-title {
	background: url(image/head04.jpg) no-repeat;
	background-color: rgba(255,255,255,0.4);
  	background-blend-mode: lighten;
	background-position: left;
	background-size: cover;
}

/* プロフィール */
.p-profile {
	padding: 30px 0 40px;
}
.p-profile__content {
	position: relative;
	width: 90%;
	background: url(image/background-ptn01.jpg);
	border-radius: 20px;
	padding: 50px 60px 30px;
	margin: 30px auto;
}
.p-profile__content__label {
	position: absolute;
	top: 20px;
	left: -5px;
	background: #00ada9;
	border-bottom: solid 2px #57060b;
	color: #fff;
	font-size: 1.2rem;
	line-height: 2rem;
	letter-spacing: 2px;
	padding: 2px 10px 1px;
}
.p-profile__content__img img {
	width: 120px;
	height: 120px;
	object-fit: cover;
	border-radius: 50%;
}
.p-profile__content__text-area__table tr {
	font-size: 1.4rem;
	margin: 10px;
}
.p-profile__content__text-area__table th {
	text-align: right;
	padding: 0 30px 20px 0;
}
.p-profile__content__text-area__table td {
	width: 78%;
	padding-bottom: 20px;
}
.u-text--deco {
	font-weight: bold;
}
.u-text--deco::before {
	content: "●";
	color: #00ada9;
	font-size: 1rem;
	margin-right: 2px;
}
.p-profile__content__text-area__table ul {
	padding-left: 15px;
}
.u-background--space {
	padding-right: 5.5rem;
}
.u-background {
	padding-right: 1rem;
}
.u-text--caption {
	font-size: 1.2rem;
	text-align: right;
	margin: 30px 0 0;
}

/* SERVICE|PC
--------------------------------------------- */
/* h2背景 */
#service .c-middle-title {
	background: url(image/head02.jpg) no-repeat;
	background-color: rgba(255,255,255,0.4);
  	background-blend-mode: lighten;
	background-position: left;
	background-size: cover;
}
/* コンテンツ */
.p-animal,
.p-reiki {
	padding: 100px 0;
}
.p-animal__content,
.p-reiki__content {
	width: 1040px;
	margin: 0 auto;
}
.p-animal__content__area--img {
	float: right;
	margin: 0 0 38px 40px;
}
.p-reiki__content__area--img {
	float: left;
	margin: 0 40px 38px 0;
}
.p-animal__content__area--img img,
.p-reiki__content__area--img img {
	width: 460px;
}
.p-animal__content__area__text,
.p-reiki__content__area__text {
	margin: 80px 0;
}
.p-animal__content__area__text p,
.p-reiki__content__area__text p {
	margin-bottom: 20px;
}
/* 表 */
.c-summary {
	width: 900px;
	border: solid 3px #00ada9;
	border-radius: 10px;
	padding: 30px 40px;
}
.c-summary .c-title__h3 {
	border-bottom: dashed 2px #00ada9;
	padding-bottom: 8px;
}
.c-summary__list__item {
	position: relative;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	line-height: 2.4rem;
	margin: 10px 0;
	padding-left: 20px;
}
.c-summary__list__item::before {
	content: "";
	position: absolute;
	width: 16px;
	height: 16px;
	top: 6px;
	left: 0;
	background: url(image/icon-check.png) no-repeat;
	background-size: contain;
}
.c-summary__list__item a {
	color: navy;
	text-decoration: underline;
}
.c-summary__list__item--ryokin {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.4rem;
	font-weight: 100;
	line-height: 2.2rem;
	padding-left: 5px;
}

/* INFORMATION|PC
--------------------------------------------- */
/* h2背景 */
#information .c-middle-title {
	background: url(image/head01.jpg) no-repeat;
	background-color: rgba(255,255,255,0.4);
  	background-blend-mode: lighten;
	background-position: left;
	background-size: cover;
}
/* ごあいさつ */
.p-greeting {
	padding: 100px 0;
	background: url(image/background02.jpg) no-repeat;
	background-color: rgba(255,255,255,0.6);
  	background-blend-mode: lighten;
	background-position: bottom;
}
.p-greeting__text-area {
	width: 900px;
	margin: 0 auto;
}
.p-greeting__text-area p {
	margin-bottom: 20px;
}
.u-text--right {
	text-align: right;
}
/* 管理者概要 */
.p-outline {
	padding: 100px 0;
	background: url(image/background-ptn01.jpg);
}

/* 管理者概要 */
.p-privacy {
	padding: 100px 0;
}
.p-privacy__text-area {
	width: 700px;
	margin: 0 auto;
}
.p-privacy__text-area__inner {
	margin: 30px 0;
}
.p-privacy__text-area__inner p {
	margin-left: 20px;
}
.p-privacy__text-area__inner ol {
	counter-reset: li;
	margin: 10px 0;
	padding-left: 20px;
}
.p-privacy__text-area__inner li {
	position: relative;
	padding-left: 20px;
}
.p-privacy__text-area__inner li::before {
	position: absolute;
	top: 0;
	left: 0;
	font-weight: bold;
	color: #794827;
	counter-increment: li;
	content: counter(li)'.';
}
.p-privacy__text-area__title {
	color: #57060b;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.5px;
    line-height: 3rem;
}

/* ACTIVITY|PC
--------------------------------------------- */
/* h2背景 */
#activity .c-middle-title {
	background: url(image/head03.jpg) no-repeat;
	background-color: rgba(255,255,255,0.4);
  	background-blend-mode: lighten;
	background-position: left;
	background-size: cover;
}
/* 活動要項 */
.p-important {
	padding: 100px 0;
}
.p-important__text-area {
	text-align: center;
}
.p-important table {
	margin: 40px auto;
}
.p-important__caption {
	width: 67%;
	margin: 0 auto;
}
/* LINE登録 */
.p-entry {
	padding: 100px 0;
}
.p-entry__content__text-area {
	text-align: center;
}
.p-entry__content__text-area p {
	margin-bottom: 10px;
}
.p-entry__content__text-area__link a {
	color: navy;
	text-decoration: underline;
}

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

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

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

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

/* header
--------------------------------------------- */
	.p-headbox {
		width: 100%;
		padding-left: 15px;
	}
	/* ロゴ */
	.p-headbox--logo {
		margin: 15px 0 5px;
	}
	/* グローバルナビ */
	.p-headbox__drawer-hidden {
		display: none;
	}
	.p-headbox__drawer-open {
		display: flex;
		height: 60px;
		width: 60px;
		justify-content: center;
		align-items: center;
		position: relative;
		z-index: 1000;
		cursor: pointer;
	}
	.p-headbox__drawer-open span,
	.p-headbox__drawer-open span:before,
	.p-headbox__drawer-open span:after {
		content: '';
		display: block;
		height: 2px;
		width: 30px;
		border-radius: 2px;
		background: #57060b;
		transition: 0.5s;
		position: absolute;
	}
	.p-headbox__drawer-open span:before {
		bottom: 10px;
	}
	.p-headbox__drawer-open span:after {
		top: 10px;
	}
	#drawer-check:checked ~ .p-headbox__drawer-open span {
		background: rgba(87, 6, 11, 0);
	}
	#drawer-check:checked ~ .p-headbox__drawer-open span::before {
		bottom: 0;
		background: #fff;
		transform: rotate(45deg);
	}
		
	#drawer-check:checked ~ .p-headbox__drawer-open span::after {
		top: 0;
		background: #fff;
		transform: rotate(-45deg);
	}
	/* メニューデザイン */
	.p-headbox__sp-nav {
		width: 70%;
		height: 100%;
		position: fixed;
		top: 0;
		left: 100%;
		z-index: 999;
		background: #543d30;
		transition: .5s;
	}
	.p-headbox__sp-nav__list {
		margin: 60px 15px;
	}
	.p-headbox__sp-nav__list__item {
		border-bottom: solid 1px #815d48;
		color: #bf9e8a;
		font-size: 1.6rem;
	}
	.p-headbox__sp-nav__list__item a {
		display: block;
		color: #bf9e8a;
		padding: 20px 10px 8px;
	}
	#drawer-check:checked ~ .p-headbox__sp-nav {
		left: 30%;
	}
	
/* footer
--------------------------------------------- */
	
/* ページトップ
--------------------------------------------- */
	#page-top {
		right: 10px;
	}
	
/* パンくずリスト
--------------------------------------------- */
	#breadcrumb ol {
		overflow-x: auto;
	}
	#breadcrumb ol li {
		flex: 0 0 auto;
	}
	#breadcrumb ol li a {
		text-decoration: underline;
	}

/* TOPページ
--------------------------------------------- */
/* 構造 
--------------------------------------------- */
	/* ボタン */
	.c-button a {
		width: 80%;
	}
	.c-button a:hover {
		opacity: 1;
	}
	/* 見出しセンター */
	.c-title-area {
		margin: 0 auto 50px;
	}
	/* 見出し中面h2 */
	.c-middle-title {
		height: 150px;
	}
	.c-middle-title__inner {
		height: 150px;
	}
	.c-middle-title__title {
		font-size: 2.2rem;
		line-height: 3rem;
		padding-left: 20px;
	}
	/* テーブル */
	.u-table {
		width: 90%;
	}
	.u-table tr {
		border-bottom: solid 1px #9fa0a0;
	}
	.u-table th {
		display: block;
		width: 100%;
		padding: 20px 15px 0;
	}
	.u-table td {
		display: block;
		width: 100%;
		padding: 0 15px 20px;
	}

/* INDEX|スマホ
--------------------------------------------- */
/* メイン画像
--------------------------------------------- */
	.p-main {
		height: 240px;
	}

	/* コンセプト */
	.p-concept {
		padding: 40px 0;
	}
	.p-concept__content {
		width: 96%;
		padding: 10px;
	}
	.p-concept__content__inner {
		padding: 30px 16px;
	}
	.p-concept__content__title {
		font-size: 2rem;
		line-height: 3rem;
	}
	.p-concept__content__text {
		letter-spacing: 0.2px;
	}

	/* 特徴 */
	.p-activity {
		padding: 40px 0;
	}
	.p-activity__list {
		display: block;
		margin-bottom: 30px;
	}
	.p-activity__list__item {
		width: 90%;
		border-bottom: dotted 1px #9fa0a0;
		margin: 0 auto;
		padding: 40px 0;
	}
	.p-activity__list__item:first-child {
		padding-top: 20px;
	}
	.p-activity__list__item:last-child {
		border-bottom: none;
		padding-bottom: 20px;
	}

	/* サービス */
	.p-service {
		padding: 40px 0 0;
	}
	.p-service__content__area--text-l {
		min-width: 90%;
		margin-right: 0;
		padding: 30px 15px 60px;
	}
	.p-service__content__area--text-r {
		min-width: 90%;
		margin-right: 0;
		padding: 30px 15px 60px;
	}
	.p-service__content__area--img-r {
		min-width: 100%;
		min-height: 200px;
		background-size: cover;
	}
	.p-service__content__area--img-l {
		min-width: 100%;
		min-height: 200px;
		background-size: cover;
		background-position: top left;
	}
	.p-servicet__content__area__text p {
		margin-bottom: 20px;
	}
	.p-service__content .c-button a {
		width: 70%;
	}

	/* お知らせ */
	.p-news {
		padding: 40px 0;
	}
	.p-news__content {
		width: 90%;
	}
	.p-news__content__item {
		padding: 0 5px;
	}
	.p-news__content__item ul {
		width: 100%;
		padding: 20px 40px;
	}
	/* 募集終了のお知らせ部分*/
	/*
	.p-news__content__item ul::before {
		top: 40px;
		left: 40px;
		width: 245px;
		padding: 20px;
	}*/
/* STAFF|スマホ
--------------------------------------------- */
	/* h2背景 */
	#staff .p-title-area {
		background-position: left center;
	}

	/* プロフィール */
	.p-profile {
		padding: 20px 0;
	}
	.p-profile__content {
		margin: 0 auto 20px;
		padding: 20px 20px 0;
	}
	.p-profile__content__img {
		text-align: center;
		margin-bottom: 10px;
	}
	.p-profile__content__text-area__table th {
		display: block;
		width: 100%;
		border-bottom: solid 1px #9fa0a0;
		text-align: left;
		padding: 0;
	}
	.p-profile__content__text-area__table td {
		display: block;
		width: 100%;
		padding: 10px 0 20px;
	}
	.u-text--caption {
		text-align: center;
		margin: 20px 0 0;
	}
/* SERVICE|スマホ
--------------------------------------------- */
	/* h2背景 */
	#service .c-middle-title {
		background-position: center;
	}
	/* コンテンツ */
	.p-animal,
	.p-reiki {
		padding: 40px 0;
	}
	.p-animal__content,
	.p-reiki__content {
		width: 90%;
	}
	.p-animal__content__area--img {
		display: block;
		margin: 0 0 30px 0;
	}
	.p-reiki__content__area--img {
		display: block;
		margin: 0 0 30px 0;
	}
	.p-animal__content__area--img img,
	.p-reiki__content__area--img img {
		width: 100%;
	}
	.p-animal__content__area__text,
	.p-reiki__content__area__text {
		margin: 40px 0;
	}

	/* 表 */
	.c-summary {
		width: 90%;
		padding: 20px 15px;
	}
	
/* INFORMATION|スマホ
--------------------------------------------- */
	/* h2背景 */
	#information .c-middle-title {
		background-position: center;
	}
	/* ごあいさつ */
	.p-greeting {
		padding: 40px 0;
		background-size: 800px;
	}
	.p-greeting__text-area {
		width: 90%;
		margin: 0 auto;
	}
	
	/* 管理者概要 */
	.p-outline {
		padding: 40px 0;
	}

	/* 管理者概要 */
	.p-privacy {
		padding: 40px 0;
	}
	.p-privacy__text-area {
		width: 90%;
	}
	.p-privacy__text-area__inner {
		margin: 30px 0;
	}
	.p-privacy__text-area__inner p {
		margin-left: 20px;
	}
	.p-privacy__text-area__inner ol {
		counter-reset: li;
		margin: 10px 0;
		padding-left: 20px;
	}
	.p-privacy__text-area__inner li {
		position: relative;
		padding-left: 20px;
	}
	.p-privacy__text-area__inner li::before {
		position: absolute;
		top: 0;
		left: 0;
		font-weight: bold;
		color: #794827;
		counter-increment: li;
		content: counter(li)'.';
	}
	.p-privacy__text-area__title {
		color: #57060b;
		font-size: 1.8rem;
		font-weight: bold;
		letter-spacing: 0.5px;
		line-height: 3rem;
	}
/* ACTIVITY|PC
--------------------------------------------- */
	/* h2背景 */
	#activity .c-middle-title {
		background-position: center;
	}
	/* 活動要項 */
	.p-important {
		padding: 40px 0;
	}
	.p-important__text-area {
		width: 90%;
		text-align: left;
		margin: 0 auto;
	}
	.p-important table {
		margin: 40px auto;
	}
	.p-important__caption {
		width: 90%;
	}
	/* LINE登録 */
	.p-entry {
		padding: 40px 0;
	}
	.p-entry__content__text-area {
		width: 90%;
		text-align: left;
		margin: 0 auto;
	}
	.p-entry__content__text-area__link {
		text-align: center;
	}

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