@charset "UTF-8";

:root {
	/* color */
	--keyColor: #d90707;
	--mainColor: #059c0c;
	--wht: 255, 255, 255;
	--blk: 0, 0, 0;
}


body {
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
}

main {
	background-image: url(../img/bg.webp);
	background-size: cover;
	background-position: top right;
	background-repeat: no-repeat;
	background-attachment: fixed;
	padding-bottom: 80px;
}

a {
	transition: all 0.5s ease 0s;
}

a:hover {
	opacity: 0.5;
}

section {
	padding-bottom: 100px;
}

@media screen and (max-width: 768px) {
	section {
		padding-bottom: 0;
	}
}

/*-----------------------------------
	余白
------------------------------------*/
.mt0 {
	margin-top: 0;
}

.mt3 {
	margin-top: 3%;
}

.mt6 {
	margin-top: 6%;
}

.mt20 {
	margin-top: 20px;
}

.mt30 {
	margin-top: 30px;
}

.mt50 {
	margin-top: 50px;
}

.mt100 {
	margin-top: 100px;
}

.mt200 {
	margin-top: 200px;
}

.mv5 {
	margin-top: 5%;
	margin-bottom: 5%;
}

.mv20 {
	margin-top: 20px;
	margin-bottom: 20px;
}

.mv30 {
	margin-top: 30px;
	margin-bottom: 30px;
}

.mv50 {
	margin-top: 50px;
	margin-bottom: 50px;
}

.mb5 {
	margin-bottom: 5%;
}

.mb10 {
	margin-bottom: 10px;
}

.mb20 {
	margin-bottom: 20px;
}

.mb30 {
	margin-bottom: 30px;
}

.mb40 {
	margin-bottom: 40px;
}

.mb50 {
	margin-bottom: 50px;
}

.mb60 {
	margin-bottom: 60px;
}

.pv50 {
	padding-top: 50px;
	padding-bottom: 50px;
}

@media screen and (max-width: 768px) {
	.s-mt10 {
		margin-top: 10%;
	}

	.mv30 {
		margin-top: 15px;
		margin-bottom: 15px;
	}

	.mv50 {
		margin-top: 30px;
		margin-bottom: 30px;
	}

	.mt200 {
		margin-top: 100px;
	}

	.s-pv30 {
		padding-top: 30px;
		padding-bottom: 30px;
	}
}

/*-----------------------------------
	フォントサイズ
------------------------------------*/
.fs14 {
	font-size: 14px;
}

.fs16 {
	font-size: 16px;
}

.fs18 {
	font-size: 18px;
}

.fs20 {
	font-size: 20px;
}

.fs22 {
	font-size: 22px;
}

@media screen and (max-width: 768px) {
	.fs22 {
		font-size: 19px;
	}

	.s-fs14 {
		font-size: 14px;
	}

	.s-fs16 {
		font-size: 16px;
	}
}

/*-----------------------------------
	共有
------------------------------------*/
p {
	font-size: 19px;
	text-align: center;
	line-height: 1.8;
}

.rel {
	position: relative;
}

.note {
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
	font-size: 14px;
	padding-left: 1em;
	text-indent: -1em;
}

@media screen and (max-width: 768px) {
	p {
		font-size: 16px;
		text-align: left;
	}

	.note {
		font-size: 14px;
	}
}

/*-----------------------------------
	header箇所
------------------------------------*/
header {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 0;
}

header ul.day {
	font-family: "futura-pt", sans-serif;
	font-weight: 500;
	font-style: normal;
	padding: 10px;
	color: var(--mainColor);
	/*text-shadow: -1px -1px 0px rgba(255, 255, 255, 1), 1px 1px 0px rgba(255, 255, 255, 1), 1px -1px 0px rgba(255, 255, 255, 1), -1px 1px 0px rgba(255, 255, 255, 1);*/
}

header ul.day li {
	font-size: 16px;
}

header ul.day li:last-child {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

header ul.day li:last-child p {
	position: relative;
	font-size: 20px;
}

header ul.day li:last-child p::after {
	content: '｜';
	padding: 0 10px;
}

header ul.day li:last-child p:last-child:after {
	content: '';
}

header ul.day li:last-child p span {
	font-size: 15px;
}

header h1 {
	width: 60%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	z-index: 1000;
}

header div.slider-for,
header div.slider-nav div .slick-slide {
	box-sizing: border-box;
	padding: 6px;
	background-color: rgb(var(--wht));
	border: 1px solid rgb(var(--blk));
	margin: 0 6px;
}

header div.slider-nav {
	padding-top: 40px;
}

header button.slick-prev,
header button.slick-next {
	background-size: 100%;
	background-repeat: no-repeat;
	width: 30px;
	height: 30px;
	top: 55%;
	z-index: 1000;
}

header button.slick-prev {
	background-image: url(../img/btn_prev.png);
	left: -10px;
}

header button.slick-next {
	background-image: url(../img/btn_next.png);
	right: -10px;
}

@media screen and (max-width: 768px) {
	header {
		padding: 20px 0;
	}

	header h1 {
		width: 80%;
	}

	header ul.day {
		text-align: center;
		padding: 10px;
	}

	header ul.day li:last-child {
		justify-content: center;
	}

	header ul.day li:last-child p {
		font-size: 18px;
	}

	header div.slider-nav {
		padding-top: 10px;
		margin-left: 38px;
		margin-right: 40px;
	}

	header div.slider-for {
		margin: 0;/*
		border-left: none;
		border-right: none;*/
	}

	header div.slider-nav div .slick-slide {
		padding: 3px;
		margin: 0 3px;
	}

	header button.slick-prev,
	header button.slick-next {
		width: 35px;
		height: 35px;
		top: 55%;
	}

	header button.slick-prev {
		left: -35px;
	}

	header button.slick-next {
		right: -35px;
	}
}

/*-----------------------------------
	contents01箇所
------------------------------------*/
.contents01 {
	max-width: 1080px;
	margin: 0 auto;
	background-color: rgb(var(--wht));
	padding: 40px;
	font-size: 20px;
}

.contents01 h2 {
	/*color: rgb(var(--keyColor));*/
	color: var(--keyColor);
	font-size: 42px;
	margin: 10px 0;
}
.contents01 h2 p.sub {
	font-size: 24px;
	padding: 0 0 .5em;
	text-align: left;
}

.contents01 h3 {
	/*color: rgb(var(--keyColor));*/
	color: var(--keyColor);
	font-size: 28px;
	/*border-bottom: 1px solid rgb(var(--keyColor));*/
	border-bottom: 1px solid var(--keyColor);
	font-family: "futura-pt", sans-serif;
	font-weight: 500;
	font-style: normal;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

.contents01 .period dl {
	display: flex;
	justify-content: flex-start;
	margin: 20px 0;
}

.contents01 .period dl dt,
.contents01 .period dl dd {
	line-height: 1.7;
	letter-spacing:.05em;
}

.contents01 .period dl dt {
	width: 140px;
	/*color: rgb(var(--keyColor));*/
	color: var(--keyColor);
	font-weight: bold;
}

.contents01 .period dl dd {
	width: calc(100% - 140px);
	margin-left: 20px;
}
.contents01 .period dl dd .end {
	position: relative;
}
.contents01 .period dl dd .end::before{
	content: "";
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 6px;
	background-color: red;
}
.contents01 .period dl dd em {
	font-style: normal;
	font-weight: 700;
	padding: 0 0 0 .8em;
	font-size: 1.4em;
	/*color: rgb(var(--keyColor));*/
	color: var(--keyColor);
}

@media screen and (max-width: 768px) {
.contents01 .period dl dd em {
	font-size: 1.2em;
	display: block;
	padding-left: 7.4em;
}
}
.contents01 .period dl dt span.interval {
	padding: 0 20px;
}

.contents01 .period dl dd p,
.contents01 .period dl dd table{
	font-size: 20px;
	text-align: left;
}
.contents01 .period dl dd table{
	margin-bottom: .7em;
}

.contents01 .period dl dd h4 {
	font-size: 20px;
	font-weight: normal;
}

.contents01 .period dl dd table th {
	padding-right: 0.5em;
	font-weight: normal;
	text-align: left;
	vertical-align: top;
}

.contents01 .period dl dd table th.mark::before {
	color: #808080;
	font-size: 16px;
	content: "●";
}

.contents01 .period dl dd table td .price {
	margin-left: 1em;
	display: inline-block;
}

/*.contents01 .period dl dd span.note {
	color: rgb(var(--blk));
	font-size: 13px;
	padding-left: 1em;
	text-indent: -1em;
	line-height: 1.4;
	display: inline-block;
}*/

.contents01 .ac_btn {
	/*background-color: rgb(var(--keyColor));*/
	background-color: var(--keyColor);
	color: rgb(var(--wht));
	font-size: 18px;
	width: 150px;
	height: 30px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	position: relative;
	cursor: pointer;
	padding-left: 20px;
	transition: all 0.5s ease 0s;
}

.contents01 .ac_btn::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	right: -6px;
	bottom: -6px;
	/*border-bottom: 1px solid rgb(var(--keyColor));
	border-right: 1px solid rgb(var(--keyColor));*/
	border-bottom: 1px solid;
	border-right: 1px solid;
	border-color: var(--keyColor);
	z-index: 1;
	cursor: pointer;
}

.contents01 .ac_btn:hover {
	opacity: 0.8;
}

.contents01 .ac_btn span {
	display: block;
	position: relative;
}

.contents01 .ac_btn span::after {
	content: '';
	background-image: url(../img/arrow.png);
	background-repeat: no-repeat;
	background-size: 100%;
	width: 15px;
	height: 15px;
	position: absolute;
	top: 70%;
	right: -30px;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

.contents01 .ac_menu {
	display: none;
}

.contents01 .ac_menu.active {
	display: block;
}

/* menu */
.contents01 .menu {
	margin-top: 40px;
}

.contents01 .menu h3 {
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
	font-size: 18px;
	font-weight: bold;
}

.contents01 .menu ul {
	display: flex;
	justify-content: flex-start;
}

.contents01 .menu ul li {
	min-width: 33%;
	line-height: 1.5;
	font-size: 16px;
}

.contents01 .menu ul li div {
	margin-bottom: 20px;
}

.contents01 .menu ul li div span {
	margin-left: 10px;
}

/* menu */
.contents01 .box {
	margin: 50px 0;
}

.contents01 .box a.link_btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 360px;
	height: 80px;
	background-color: var(--keyColor);
	color: rgb(var(--wht));
	margin: 0 auto;
	position: relative;
}

.contents01 .box a.link_btn::after {
	content: '';
	position: absolute;
	background-image: url(../img/icon01.png);
	background-size: 100%;
	background-repeat: no-repeat;
	width: 12px;
	height: 23px;
	top: 50%;
	right: 13px;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

.contents01 .box ul {
	display: flex;
	justify-content: center;
	align-items: baseline;
	margin-top: 30px;
}

.contents01 .box ul li:first-child {
	font-size: 20px;
	font-weight: bold;
	position: relative;
	margin-right: 30px;
}

.contents01 .box ul li:first-child::after {
	content: '';
	background-image: url(../img/icon02.png);
	background-size: 100%;
	background-repeat: no-repeat;
	position: absolute;
	width: 10px;
	height: 25px;
	top: 40%;
	right: -27px;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

.contents01 .box ul li:nth-child(2) {
	font-size: 33px;
	font-weight: bold;
}

.contents01 .box ul li:nth-child(2) span {
	font-size: 23px;
}

.contents01 .box ul li:last-child {
	font-size: 16px;
}

@media screen and (max-width: 768px) {
	.contents01 {
		box-sizing: border-box;
		padding: .7em;
		/*background-color: transparent;
		overflow: hidden;*/
	}

	.contents01 h2 {
		font-size: 24px;
		margin: 10px 0;
	}

	.contents01 h3 {
		font-size: 23px;
		padding-bottom: 10px;
		margin-bottom: 20px;
	}

	.contents01 .period dl {
		display: block;
		margin: 10px 0;
	}

	.contents01 .period dl dt {
		width: 100%;
	}
	.contents01 .period dl dd {
		width: 100%;
		margin-left: 0;
		font-size: 18px;
	}
	.contents01 .period dl dd table {
	}
	.contents01 .period dl dd table th,
	.contents01 .period dl dd table td {
		display: block;
	}
	.contents01 .period dl dd table td{
		padding: 0 0 0 1em;
	}
	.contents01 .period dl dd ul li + li{
		margin-top: .6em;
	}

	.contents01 .period dl dt span.item01 {
		display: none;
	}

	.contents01 .period dl dt span.interval {
		padding: 0 5px;
	}

	/*.contents01 .period dl dd span.note {
		display: block;
		font-size: 16px;
		line-height: 1.5;
		margin-top: 10px;
	}*/

	.contents01 .ac_btn {
		margin: 40px auto 0;
		padding: 1em .5em 1em 2em;
	}

	.contents01 .menu ul {
		display: block;
	}

	.contents01 .menu ul li {
		width: 100%;
	}

	.contents01 .box a.link_btn {
		width: 280px;
		height: 60px;
	}

	.contents01 .box ul {
		display: block;
		margin-top: 60px;
		text-align: center;
	}

	.contents01 .box ul li {
		margin-bottom: 15px;
	}

	.contents01 .box ul li:first-child {
		margin-right: 0;
	}

	.contents01 .box ul li:first-child::after {
		background-image: revert;
	}
}

/*-----------------------------------
	フッター
-----------------------------------*/
.footer {
	padding-bottom: 0;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
}

.footer ul {
	max-width: 1150px;
	margin: 60px auto 0;
	padding: 0 20px;
}

.footer ul li,
.contents01 .menu .note ul li{
	font-size: 13px;
	line-height: 1.7;
	padding-left: 1em;
	text-indent: -1em;
}
.footer ul li + li,
.contents01 .menu .note ul li + li{
	margin-top: 10px;
}

.footer .sns {
	max-width: 1150px;
	margin: 5% auto;
	border-top: 1px solid rgb(var(--blk));
}

.footer .sns h2 {
	font-size: 29px;
	text-align: center;
	line-height: 1.5;
	letter-spacing: 5px;
	margin: 50px auto 20px;
}

.footer .sns p {
	font-size: 18px;
}

.footer .sns_flex {
	display: flex;
	justify-content: space-evenly;
	max-width: 700px;
	margin: 30px auto;
}

.footer .sns_flex a {
	min-width: 60px;
	display: block;
}

.footer .sns_flex a img {
	height: 60px;
}

.footer #links ul li {
	display: inline-block;
	padding: 0 1em;
	border-left: 1px solid #555;
	letter-spacing: normal;
	font-size: 18px;
	text-indent: 0;
}

.footer #links .copyright {
	background-color: rgb(var(--wht));
	padding: 30px 0;
	text-align: center;
	color: #888;
	font-size: 0.75rem;
	letter-spacing: 0;
}

@media screen and (max-width: 768px) {
	.footer ul {
		width: 90%;
		margin: 30px auto 0;
		padding: 0;
	}
/*
	.footer ul li {
		margin-bottom: 5px;
	}*/

	.footer .sns {
		margin: 5% 10px;
	}

	.footer .sns h2 {
		font-size: 20px;
		letter-spacing: 2px;
		margin: 35px auto 20px;
	}

	.footer .sns p {
		font-size: 17px;
		text-align: center;
		line-height: 1.5;
	}

	.footer .sns_flex {
		margin: 30px auto 50px;
		flex-wrap: wrap;
	}

	.footer .sns_flex a {
		margin-bottom: 2em;
		min-width: 40px;
	}

	.footer .sns_flex a img {
		width: auto;
		height: 45px;
	}

	.footer #links ul li:first-child {
		border-right: 1px solid #555;
	}
}

#gototop {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 1000;
}

#gototop a {
	font-size: 25px;
	background: rgba(170, 140, 71, 0.8);
	color: rgb(var(--wht));
	display: block;
	padding: 15px 15px;
	text-decoration: none;
}

/* @media : SP */
@media screen and (max-width: 768px) {
	body {
		font-size: 8px;
	}

	main {
		box-sizing: border-box;
		width: 100%;
		/*background-image: url(../img/bg_sp.webp);*/
		background-size: cover;
		padding: 0 3% 4em;	
		/*padding-bottom: 40px;*/
	}

	footer .safety {
		width: 95%;
		padding: 25px 0;
	}

	footer .info,
	footer .safety .icon {
		width: 90%;
		margin: 0 auto 0px;
		padding: 25px 0 0;
	}

	footer .safety .icon li:nth-child(1) {
		width: 30%;
	}

	footer .safety .icon li:nth-child(2) {
		width: 32%;
	}

	footer .safety .icon li:nth-child(3) {
		width: 30%;
	}

	footer .safety h3 {
		font-size: 2em;
		font-weight: 500;
	}

	footer .safety p {
		margin-top: 20px;
	}

	footer {
		padding-bottom: 20px;
	}

	footer .footerlogo {
		padding: 30px 0 40px;
		text-align: center;
	}

	footer .footerlogo .f_logo {
		width: 70%;
	}

	footer .footer_ch {
		padding: 0 5% 20px;
	}

	footer .footer_ch img {
		width: 100%;
	}

	footer .sns {
		padding: 22px 0;
	}

	footer .snstit {
		width: 90%;
		margin: 20px auto 10px;
	}

	footer .snsicon {
		display: flex;
		justify-content: space-between;
		width: 70%;
		margin: 30px auto;
	}

	footer .snsicon li {
		width: 20%;
	}

	footer .sns .text {
		width: 60%;
		margin: 30px auto 40px;
	}

	footer .info p {
		font-size: 14px;
		line-height: 1.8em;
		margin-bottom: 0;
		text-align: left;
	}
}

.note.sub ul{
	display: block
}
