@charset "UTF-8";

/* ----------------------------------------------------
	基本設定
---------------------------------------------------- */
/*
	reset
------------------------------ */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

p {
	/* margin-bottom: 1em; */
	word-wrap: break-word;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

fieldset,
img {
	border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
	font-style: normal;
	font-weight: normal;
}

ol,
ul {
	list-style: none;
}

caption,
th {
	text-align: left;
}

a {
	color: #000;
	text-decoration: underline;
	transition: all 0.5s ease 0s;
}

a:hover {
	text-decoration: none;
	opacity: 0.6;
}

area {
	border: none;
	outline: none;
}

img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

/*
	表示設定
------------------------------ */
/* body {
	background: url(../img/bg_body.png) repeat;
	line-height: 1.8;
	overflow-x: hidden;
} */

.container {
	margin: 0 auto;
	padding: 0 20px;
	max-width: 940px;
	width: 100%;
}

@media screen and (max-width: 768px) {
	.container {
		/* padding: 0 5.33333vw; */
		padding: 0 4.33333vw;
	}
}

/*
	font
------------------------------ */
* {
	font-feature-settings: "pkna";
	/* letter-spacing: 0.05em; */
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
th,
td {
	color: #000;
	font-size: 16px;
	font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
	font-weight: normal;
}

.gothic {
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

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

	body,
	h1,
	h2,
	h3,
	h4,
	h5,
	h6,
	th,
	td {
		font-size: 4.26667vw;
	}
}

small {
	/* PC default 16px -> small 14px相当 */
	font-size: 0.875em;
}

/*
	SP,PC表示切り替え
------------------------------ */
.pc {
	display: block;
}

.sp {
	display: none;
}

@media screen and (max-width: 768px) {
	.pc {
		display: none;
	}

	.sp {
		display: block;
	}
}

/*
	title
------------------------------ */
.contents__title {
	color: #614729;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.contents__title::before,
.contents__title::after {
	background: #614729;
	width: 100%;
	height: 1px;
	content: "";
}

.contents__title span {
	padding: 0 1em;
	font-size: 33px;
	white-space: nowrap;
	display: inline-block;
}

@media screen and (max-width: 768px) {
	.contents__title span {
		padding: 0 0.5em;
		font-size: 5.33333vw;
		letter-spacing: -0.05em;
	}

	.contents__title span.other {
		font-size: 4.26667vw;
	}
}

/*
	list
------------------------------ */
ul.list li {
	margin-left: 1.4em;
	text-indent: -1.4em;
}

/* note */
ul.note li {
	margin-left: 1em;
	text-indent: -1em;
	font-size: 14px;
}

ul.note li::before {
	content: "※";
}

@media screen and (max-width: 768px) {
	ul.note li {
		font-size: 3.5vw;
	}
}

/* type */
ul.type1 li::before {
	content: "●";
}

/* cnt */
ol.cnt li {
	margin-left: 1.8em;
	text-indent: -1.8em;
	counter-increment: number;
}

ol.cnt li::before {
	content: "("counter(number) ")";
}

/*
	tel
------------------------------ */
.tel {
	pointer-events: none;
}

@media screen and (max-width: 768px) {
	.tel {
		pointer-events: all;
	}
}

/*
	linkBtn
------------------------------ */
.linkBtn a {
	margin: 0 auto;
	width: 100%;
	color: #fff;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

/* comingsoon */
.linkBtn a.comingsoon {
	pointer-events: none;
	z-index: 1;
}

.linkBtn a.comingsoon::before {
	background: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	content: "Coming Soon";
}

/* ----------------------------------------------------
	pagetop
---------------------------------------------------- */
.pageTop a {
	background: rgba(97,183,217, 0.8);
	width: 64px;
	height: 64px;
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	right: 10px;
	bottom: 10px;
	z-index: 10;
	border: 1px solid #fff;
}

.pageTop a img {
	width: 16px;
	height: auto;
}

/* ----------------------------------------------------
	tab
---------------------------------------------------- */
.tab__area .tab__list {
	margin-bottom: 4px;
	display: flex;
	justify-content: space-between;
}

.tab__area .tab__nav {
	background: #a9a9a9;
	width: calc((100% - 12px) / 2);
	height: 80px;
	line-height: 1;
	color: #fff;
	font-size: 30px;
	border-radius: 10px 10px 0 0;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.5s ease 0s;
	cursor: pointer;
}

.tab__area .tab__nav:hover,
.tab__area .tab__nav.current {
	background: #aa965c;
}

.tab__area .tab__nav .number {
	background: #fff;
	margin-left: 0.25em;
	width: 0.7em;
	height: 0.7em;
	text-align: center;
	display: inline-block;
	transform: rotate(45deg);
}

.tab__area .tab__nav .number i {
	line-height: 1;
	color: #a9a9a9;
	font-size: 0.7em;
	font-style: normal;
	display: block;
	transform: rotate(-45deg);
}

.tab__area .tab__nav.current .number i {
	color: #aa965c;
}

.tab__area .content__box {
	background: #fff;
	padding: 40px 30px;
	width: 100%;
	display: none;
}

.tab__area .content__box .text {
	text-align: center;
}

.tab__area .content__box .image {
	margin-bottom: 1em;
}

@media screen and (max-width: 768px) {
	.tab__area .tab__nav {
		width: calc((100% - 6px) / 2);
		height: 13.33333vw;
		font-size: 4.26667vw;
		text-align: center;
	}

	.tab__area .content__box {
		padding: 4.26667vw 2.93333vw;
	}

	.tab__area .content__box .text {
		text-align: left;
	}

	.tab__area .content__box .image {
		margin-bottom: 0.5em;
	}
}