/*
Theme Name: 照屋漆器店
Author: Yoko Dohi
*/

@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	/* font-size: 100%; */
	font-style: normal;
	/*font: inherit;*/
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
input[type="text"],
input[type="password"],
textarea,
select,*:focus {
	outline: none;
}


/*====================================================
////id common
====================================================*/
html{
	font-size: 10px;
	font-size: 62.5%;
	overflow-x : hidden;
	width: 100%;
	max-width: 100vw;
}
body, button, input, select, optgroup, textarea {
	background: #fff;
	color: #000;
	font-family: 'Noto Serif JP', "Yu Mincho Medium", "游明朝 Medium", "YuMincho Medium", "游明朝体 Medium", "Hiragino Mincho ProN", "MS PMincho", serif;
	font-size: 18px;
	font-size: 1.8rem;
	letter-spacing: 0.15em;
	line-height: 1.9;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 768px) {
	body, button, input, select, optgroup, textarea {
		font-size: 17px;
		font-size: 1.7rem;
		line-height: 1.8;
	}
}
/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
}
/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:959px) {
/*
	body, button, input, select, optgroup, textarea {
		font-size: 17px;
		font-size: 1.7rem;
	}
*/
}
@media screen and (min-width:1200px) {
}

body {
	position: relative;
	width: 100%;
	max-width: 100vw;
	height: auto;
	overflow-x: hidden;
}
* {
	min-height:0;
	min-width : 0;
}

body * {
	box-sizing: border-box;
}
section {
	/*	background: #fff;*/
/*	overflow: hidden;*/
	position: relative;
	max-width: 100vw;
}
a {
	display: inline-block;
	transition: 0.2s ease-in-out;
	color: inherit;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	outline:none;
	text-decoration: none;
}
a.underline {
	border-bottom: solid 1px #ccc;
}
a img {
	transition: .1s ease-in-out;
}
p a:not(.linkBtn) {
	-webkit-text-decoration: underline dotted 1px;
	text-decoration: underline dotted 1px;
	text-underline-position: under;
}

figure {
	position: relative;
}
figure img {
	position: relative;
}
figure.coverImg {
	overflow: hidden;
	padding-top: 55%;
}
figure.coverImg img {
	-o-object-fit: cover;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	max-width: none;
	height: 100%;
	max-height: none;
}
.round {
	border-radius: 14px;
	overflow: hidden;
}

img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	display: block;
	margin: auto;
}

figure.square {
	display: block;
	width: 100%;
	padding-top: 100%;
}
figure.square img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.scaleUpImg {
	overflow: hidden;
}
.scaleUpImg img {
	transition: .4s;
}
.scaleUpImg:hover img {
	transform: scale(1.1);
}


/*
hr {
	background: #cccccc;
	border: none;
	margin: 30px auto;
	width: 90%;
	max-width: 700px;
	height: 2px;
}
hr.dot {
	border-style: dotted;
}
*/

#contents {
	width: 100%;
	overflow: hidden;
	position: relative;
	z-index: 1;
}
.innerBox{
	max-width: 1200px;
	margin: 0 auto;
	padding: 130px 0;
	position: relative;
	width: 92%;
	z-index: 1;
}
.innerBox.short {
	max-width: 960px;
}
.innerBox.wide {
	max-width: 1700px;
}
.block {display: block;}
.inb {display: inline-block;}
.relative { position: relative; z-index: 1;}
.flexBox {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}
.flexCenter {
	align-items: center;
	justify-content: center;
}
.flexStart {
	justify-content: flex-start;
}
.flexEnd {
	justify-content: flex-end;
}
.flexWrap {
	flex-wrap: wrap;
}
.flexColumn {
	flex-direction: column;
	justify-content: flex-start;
}
.gridBox {
	display: grid;
}
dl.gridBox {
	grid-template: 'dt dd';

}
.whiteBox {
	background: #fff;
	padding: 20px 30px;
}
.roundBox {
	background: #fff;
	border-radius: 20px;
	padding: 40px;
}

p {margin: 0 0 1.0em;}
p:last-child, p:last-of-type {margin-bottom: 0;}

.w100 {
	width: 100%;
}

.mw300 {max-width: 300px; margin: auto;}
.mw400 {max-width: 400px; margin: auto;}
.mw500 {max-width: 500px; margin: auto;}
.mw700 {max-width: 700px; margin: auto;}
.mw800 {max-width: 800px; margin: auto;}
.mw900 {max-width: 900px; margin: auto;}
.mw1000 {max-width: 1000px; margin: auto;}

input[type="radio"], input[type="checkbox"] {
	display: none;
}

.blur {
	filter: blur(2px);
}

.decoBox {
	position: absolute;
	/* z-index: -1; */
}
/* ////////// mobile ////////// */
@media screen and (max-width: 768px) {
	.innerBox {
		padding: 80px 0;
	}
	.hidden-sp {
		display: none;
	}
	.whiteBox {
		padding: 20px;
	}
	.roundBox {
		border-radius: 10px;
		padding: 20px;
	}
	.flexColumn-sp {
		flex-direction: column;
	}
	.copyBox p {
		display: inline-block;
		text-align: left;
	}
	.copyBox p .inb {
		display: contents;
	}
	dl.gridBox {
		grid-template: 'dt' 'dd';
	}
	dl.gridBox dd {
		margin-bottom: .5em;
	}

}

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

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
	#contents {
		min-height: 60vh;
	}
	a:hover {
		opacity: .7;
	}
	a.opacity-1:hover {
		opacity: 1;
	}
	a .orange {
		transition: .2s ease-in-out;
	}
	/*
	a:hover .orange {
	color: #ff876d;
}
	*/
	/* a:hover img {
		opacity: .8;
	} */

	.hidden-pc {
		display: none;
	}
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:959px) {
}

@media screen and (min-width:1200px) {
}

/*====================================================
//NOTE 余白
====================================================*/
.ma-auto {margin: auto !important}
.ma-0 {margin: 0 !important}
.ma-05em {margin: .5em !important}
.ma-10em {margin: 1.0em !important}
.ma-15em {margin: 1.5em !important}
.ma-20em {margin: 2em !important}
.ma-30em {margin: 3em !important}
.mt-0 {margin-top: 0 !important}
.mt-05em {margin-top: .5em !important}
.mt-10em {margin-top: 1.0em !important}
.mt-15em {margin-top: 1.5em !important}
.mt-20em {margin-top: 2em !important}
.mt-30em {margin-top: 3em !important}
.ml-0 {margin-left: 0 !important}
.ml-05em {margin-left: .5em !important}
.ml-10em {margin-left: 1.0em !important}
.ml-15em {margin-left: 1.5em !important}
.ml-20em {margin-left: 2em !important}
.ml-30em {margin-left: 3em !important}
.mr-0 {margin-right: 0 !important}
.mr-05em {margin-right: .5em !important}
.mr-10em {margin-right: 1.0em !important}
.mr-15em {margin-right: 1.5em !important}
.mr-20em {margin-right: 2em !important}
.mr-30em {margin-right: 3em !important}
.mb-0 {margin-bottom: 0 !important}
.mb-05em {margin-bottom: .5em !important}
.mb-10em {margin-bottom: 1.0em !important}
.mb-15em {margin-bottom: 1.5em !important}
.mb-20em {margin-bottom: 2em !important}
.mb-30em {margin-bottom: 3em !important}

.mt-10 {margin-top: 10px !important}
.mt-20 {margin-top: 20px !important}
.mt-30 {margin-top: 30px !important}
.mt-40 {margin-top: 40px !important}
.mt-50 {margin-top: 50px !important}
.mb-10 {margin-bottom: 10px !important}
.mb-20 {margin-bottom: 20px !important}
.mb-30 {margin-bottom: 30px !important}
.mb-40 {margin-bottom: 40px !important}
.mb-50 {margin-bottom: 50px !important}

.pa-0 {padding: 0 !important}
.pa-05em {padding: .5em !important}
.pa-10em {padding: 1.0em !important}
.pa-15em {padding: 1.5em !important}
.pa-20em {padding: 2em !important}
.pt-0 {padding-top: 0 !important}
.pt-05em {padding-top: .5em !important}
.pt-10em {padding-top: 1.0em !important}
.pt-15em {padding-top: 1.5em !important}
.pt-20em {padding-top: 2em !important}
.pb-0 {padding-bottom: 0 !important}
.pb-05em {padding-bottom: .5em !important}
.pb-10em {padding-bottom: 1.0em !important}
.pb-15em {padding-bottom: 1.5em !important}
.pb-20em {padding-bottom: 2em !important}

.pt-10 {padding-top: 10px !important}
.pt-20 {padding-top: 20px !important}
.pt-30 {padding-top: 30px !important}
.pt-40 {padding-top: 40px !important}
.pt-50 {padding-top: 50px !important}
.pb-10 {padding-bottom: 10px !important}
.pb-20 {padding-bottom: 20px !important}
.pb-30 {padding-bottom: 30px !important}
.pb-40 {padding-bottom: 40px !important}
.pb-50 {padding-bottom: 50px !important}

/*====================================================
//Class .sa ※要javascript
====================================================*/
.sa {
	opacity: 0;
	transition: all 1.2s ease;
}
.sa.show {
	opacity: 1;
	transform: none;
}
.sa-lr {
	transform: translate(-80px, 0);
}
.sa-rl {
	transform: translate(80px, 0);
}
.sa-up {
	transform: translate(0, 80px);
}
.sa-down {
	transform: translate(0, -80px);
}
.sa-scaleUp {
	transform: scale(.7);
}
.sa-scaleDown {
	transform: scale(1.5);
}
.sa-rotateL {
	transform: rotate(180deg);
}
.sa-rotateR {
	transform: rotate(-180deg);
}

.delay-01 {
	transition-delay: .1s;
}
.delay-02 {
	transition-delay: .2s;
}
.delay-03 {
	transition-delay: .3s;
}
.delay-04 {
	transition-delay: .4s;
}
.delay-05 {
	transition-delay: .5s;
}
.delay-06 {
	transition-delay: .6s;
}
.delay-07 {
	transition-delay: .7s;
}
.delay-08 {
	transition-delay: .8s;
}
.delay-09 {
	transition-delay: .9s;
}
.eachTextAnime span {
	opacity: 0;
	transition: 2s ease-out;
}
.eachTextAnime.show span {
	opacity: 1;
	/* -webkit-animation:text_anime_on 1.6s ease-out forwards;
	        animation:text_anime_on 1.6s ease-out forwards; */
	/* animation-delay: .4s; */
}
@-webkit-keyframes text_anime_on {
	0% {opacity:0;}
	100% {opacity:1;}
}
@keyframes text_anime_on {
	0% {opacity:0;}
	100% {opacity:1;}
}

/*====================================================
//NOTE テキスト
====================================================*/
.f-en {
	font-family: 'Cinzel', 'Noto Serif JP', "Yu Mincho Medium", "游明朝 Medium", "YuMincho Medium", "游明朝体 Medium", "Hiragino Mincho ProN", "MS PMincho", serif;
	font-size: 1.15em;
	letter-spacing: 0.08em;
}

.tate {
	-ms-writing-mode: tb-rl;
	    writing-mode: vertical-rl;
	-webkit-text-orientation: upright;
	        text-orientation: upright;
}

.f-05em {font-size: .5em}
.f-06em {font-size: .6em}
.f-07em {font-size: .7em}
.f-08em {font-size: .8em}
.f-09em {font-size: .9em}
.f-10em {font-size: 1.0em}
.f-11em {font-size: 1.1em}
.f-12em {font-size: 1.2em}
.f-13em {font-size: 1.3em}
.f-14em {font-size: 1.4em}
.f-15em {font-size: 1.5em}
.f-16em {font-size: 1.6em}
.f-17em {font-size: 1.7em}
.f-18em {font-size: 1.8em}
.f-20em {font-size: 2.0em}

.f-10 {font-size: 1.0rem}
.f-11 {font-size: 1.1rem}
.f-12 {font-size: 1.2rem}
.f-13 {font-size: 1.3rem}
.f-14 {font-size: 1.4rem}
.f-15 {font-size: 1.5rem}
.f-16 {font-size: 1.6rem}
.f-17 {font-size: 1.7rem}
.f-18 {font-size: 1.8rem}
.f-20 {font-size: 2.0rem}
.f-22 {font-size: 2.2rem}
.f-24 {font-size: 2.4rem}

.lh-10 {line-height: 1.0;}
.lh-12 {line-height: 1.2;}
.lh-14 {line-height: 1.4;}
.lh-16 {line-height: 1.6;}

.ls-0 {letter-spacing: 0;}
.ls-05 {letter-spacing: .05em;}

small, .small {
	font-size: .8em;
}
big, .big {
	font-size: 1.2em;
}
strong {
	font-weight: bold;
}
sup {
	font-size: .5em;
	vertical-align: .5em;
}
.fuchi2 {
	text-shadow: 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff;
}
.fuchi3 {
	text-shadow: 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff;
}
.fuchi5 {
	text-shadow: 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff;
}

.fw-bold {
	font-weight: bold;
}
.fw-normal {
	font-weight: normal;
}

.txt-left {
	text-align: left;
}
.txt-right {
	text-align: right;
}
.txt-center {
	text-align: center;
}

h1, h2, h3, h4, h5, h6 {
	margin-bottom: .8em;
	line-height: 1.5;
	/* letter-spacing: .04em; */
}
.excerpt {
	font-size: .9em;
}


/* ////////// mobile ////////// */
@media screen and (max-width: 768px) {
	h1 {font-size: 2.8rem;}
	h2 {font-size: 2.6rem;}
	h3 {font-size: 2.3rem;}
	h4 {font-size: 2.1rem;}
	h5 {font-size: 2.0rem;}
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
	h1 {font-size: 3.4rem;}
	h2 {font-size: 2.8rem;}
	h3 {font-size: 2.5rem;}
	h4 {font-size: 2.2rem;}
	h5 {font-size: 2.0rem;}
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:959px) {
}

/*====================================================
//NOTE 装飾系
====================================================*/

.wp-block-button .wp-block-button__link,
main .bodyText .wp-block-button .wp-block-button__link,
.linkBtn,
.formBox input[type="submit"].linkBtn { /* class linkBtn */
	background: #2ac8c7;
	border-radius: 0;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 1em;
	font-weight: bold;
	line-height: 1.4;
	/* overflow: hidden; */
	padding: 15px 30px;
	width: auto;
		max-width: 100%;
		min-width: 360px;
	text-align: center;
	position: relative;
	z-index: 1;
	border: 1px solid #2ac8c7;
}
.wp-block-button .wp-block-button__link:before,
main .bodyText .wp-block-button .wp-block-button__link:before,
.linkBtn:before {
	background: #fc6264;
	content: '';
	margin: auto;
	position: absolute;
		top: 0;
		left: -20px;
		bottom: 0;
	width: 50px;
	height: 1px;
	z-index: 1;
}

.wp-block-button.is-style-linkBtn-red .wp-block-button__link,
main .bodyText .wp-block-button.is-style-linkBtn-red .wp-block-button__link,
.linkBtn.redBtn {
	/* background: #68131c; */
	background: #2ac8c7;/*基調カラー変更*/
	min-width: 200px;
	padding: 10px 30px 10px 40px;
}
.wp-block-button.is-style-linkBtn-red .wp-block-button__link:before,
main .bodyText .wp-block-button.is-style-linkBtn-red .wp-block-button__link:before,
.linkBtn.redBtn:before {
	background: #fff;
	left: 2px;
	width: 20px;
}

.wp-block-button .wp-block-button.is-style-outline .wp-block-button__link,
main .bodyText .wp-block-button.is-style-outline .wp-block-button__link ,
.linkBtn.whiteBtn {
	background: #fff !important;
	border: none;
	min-width: 0px;
	color: #000 !important
}
.wp-block-button .wp-block-button.is-style-outline .wp-block-button__link:before,
main .bodyText .wp-block-button.is-style-outline .wp-block-button__link:before ,
.linkBtn.whiteBtn:before {
	background: transparent;
	border: solid 1px #000;
	top: 0;
	left: 0;
	width: calc(100% - 2px);
	height: calc(100% - 2px);
}

.is-style-linkBtn-small .wp-block-button__link,
main .bodyText .is-style-linkBtn-small .wp-block-button__link,
.linkBtn-small {
	background: transparent;
	border: solid 1px;
	border-radius: 0;
	/* color: #68131c !important; */
	color: #2ac8c7 !important;/*基調カラー変更*/
	cursor: pointer;
	display: inline-block;
	font-size: 1em;
	line-height: 1.3;
	padding: 10px 20px;
	position: relative;
}

.arrow_square {
	display: flex;
		align-items: center;
		justify-content: center;
	position: relative;
	width: 60px;
	height: 60px;
}
.arrow_square:before {
	background: #e9c62c;
	content: '';
	margin: auto;
	position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
	transition: .4s ease-in-out;
	width: 66%;
	height: 66%;
	transform: rotate(45deg);
}
.arrow {
	content: '';
	display: inline-block;
	position: relative;
	transition: .2s ease-in-out;
	vertical-align: -.1em;
	width: 20px;
	height: 1em;
}
.arrow:before ,
.arrow:after {
	content: '';
	margin: auto;
	position: absolute;
}
.arrow:before {
	background: currentColor;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
}
.arrow:after {
	border: solid transparent;
	border-width: 2px 0 2px 6px;
	border-left-color: currentColor;
		top: -5px;
		right: -2px;
		bottom: -5px;
	width: 0;
	height: 0;
}

i.icon {
	margin: -.3em .5em 0 0;
	width: 20px;
	height: 1.5em;
}

dl.accordion dt ,
dl.menu-accordion dt {
	cursor: pointer;
}
dl.accordion dd ,
dl.menu-accordion dd {
	overflow: hidden;
	transition: .2s ease-in-out;
}

.bgBox {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.bgBox img {
	width: 100% !important;
	height: 100% !important;
	-o-object-fit: cover;
	object-fit: cover;

}

.newIcon {
	border-radius: 3px;
	display: inline-block;
	font-size: .8em;
	line-height: 1;
	margin-right: .5em;
	padding: .2em .4em;
}
.opacity-6 {opacity: .6}
.opacity-8 {opacity: .8}
.opacity-10 {opacity: 1}

.stripe_line {
	background: url(img/stripe_line_bg-2.png) center / 12px auto;
	width: 100%;
	height: 13px;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 768px) {
	.wp-block-button:not(.is-style-linkBtn-small):not(.is-style-linkBtn-line) .wp-block-button__link,
	main .bodyText .wp-block-button:not(.is-style-linkBtn-small):not(.is-style-linkBtn-line) .wp-block-button__link,
	.linkBtn { /* class linkBtn mobile */
		width: 90%;
			min-width: 100px;
			max-width: 400px;
	}
}

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

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) { /* NOTE linkBtn pc */
	.wp-block-button:not(.is-style-linkBtn-small):not(.is-style-linkBtn-line) .wp-block-button__link:hover,
	main .bodyText .wp-block-button:not(.is-style-linkBtn-small):not(.is-style-linkBtn-line) .wp-block-button__link:hover,
	.linkBtn:hover ,
	a:hover .linkBtn {
		color: #2ac8c7;
		opacity: 1;
	}
	.wp-block-button:not(.is-style-linkBtn-small):not(.is-style-linkBtn-line) .wp-block-button__link:hover:before,
	main .bodyText .wp-block-button:not(.is-style-linkBtn-small):not(.is-style-linkBtn-line) .wp-block-button__link:hover:before,
	.linkBtn:hover:before {
	}
	.wp-block-button .wp-block-button__link:after,
	main .bodyText .wp-block-button .wp-block-button__link:after,
	.linkBtn:after {
		/* background: #68131c; */
		background: #FFFFFF;/*カラー変更*/
		content: '';
		margin: auto;
		opacity: 0;
		position: absolute;
			top: 0;
			left: 0;
		transition: .3s ease-in-out;
		width: 0;
		height: 100%;
		z-index: -1;
	}
	.wp-block-button:not(.is-style-linkBtn-small):not(.is-style-linkBtn-line) .wp-block-button__link:hover:after,
	main .bodyText .wp-block-button:not(.is-style-linkBtn-small):not(.is-style-linkBtn-line) .wp-block-button__link:hover:after,
	.linkBtn:hover:after {
		opacity: 1;
		width: 100%;
	}
	.wp-block-button.is-style-linkBtn-red .wp-block-button__link:after,
	main .bodyText .wp-block-button.is-style-linkBtn-red .wp-block-button__link:after,
	.linkBtn-red:after {
		background: #94232f;
	}
	.wp-block-button .wp-block-button.is-style-outline .wp-block-button__link:after,
	main .bodyText .wp-block-button.is-style-outline .wp-block-button__link:after ,
	.linkBtn.whiteBtn:after {
		background: #f7f3e5 !important;
		top: 0 !important;
		left: 0 !important;
		z-index: -1
	}
	main .bodyText .wp-block-button.is-style-outline .wp-block-button__link:hover:after ,
	.linkBtn.whiteBtn:hover:after {
		/* width: calc(100% + 1px) !important;
		height: calc(100% + 1px) !important; */
	}
	.is-style-linkBtn-small .wp-block-button__link:hover,
	main .bodyText .is-style-linkBtn-small .wp-block-button__link:hover,
	a:hover .linkBtn-small ,
	.linkBtn-small:hover {
		background: rgba(105, 19, 28, 0.1);
		/* color: #68131c; */
		color: #2ac8c7 ;/*基調カラー変更*/
		opacity: 1;
	}
	.is-style-linkBtn-small .wp-block-button__link:hover:after,
	main .bodyText .is-style-linkBtn-small .wp-block-button__link:hover:after,
	a:hover .linkBtn-small:after ,
	.linkBtn-small:hover:after {
		right: 10px;
	}
	.is-style-linkBtn-line .wp-block-button__link:hover:before,
	main .bodyText .is-style-linkBtn-line .wp-block-button__link:hover:before {
		width: 2px;
	}
	.is-style-linkBtn-line .wp-block-button__link:hover:after,
	main .bodyText .is-style-linkBtn-line .wp-block-button__link:hover:after {
		height: 2px;
	}
	a:hover .arrow {
		margin-left: .2em;
		margin-right: -.2em;
	}
	a:hover .arrow_square:before {
		transform: rotate(225deg);
	}
	a:hover .arrow_square .arrow {
		margin: 0;
	}
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:959px) {
}

@media screen and (min-width:1200px) {
}


ul.markList li {
	position: relative;
	padding-left: 1.2em;
	line-height: 1.5;
	margin: .3em 0;
}
ul.markList li:before {
	position: absolute;
	display: block;
	left: 0;
	top: 0;
}
ul.markList li:after {
	display: none !important;
}
ul.markList.attentionMark li:before {
	content: '\203B';
}
ul.markList.dot li:before {
	content: '\30FB';
}
ul.markList.grd_dot li:before {
	background: linear-gradient(to right, #dcb54d, #ea674a);
	background: linear-gradient(120deg, #dcb54d, #ea674a);
	border-radius: 100px;
	content: '';
	top: calc(.5em - 5px);
	width: 10px;
	height: 10px;
}
ol.number{
	counter-reset:number; /* 名前を付けたカウンターをリセット */
	list-style:none; /* olが数字を付けることをキャンセル */
	margin:0;
	padding:0;
}
ol.number > li{
	padding-left: 1.7em;
	line-height: 1.4;
	margin: .5em 0;
	position: relative;
}
ol.number > li:before{
	counter-increment: number;
	content: counter(number);
	position: absolute;
	top: 0em;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.4em;
	height: 1.4em;
	line-height: 1;
}
ol.number.circleMarkList > li:before{
	border: solid 1px;
	border-radius: 100%;
	font-size: .9em;
	top: .05em;
}

.circleBox {
	border-radius: 100%;
}

.markerline, #contents mark {
	background: linear-gradient(transparent 40%, #fcffb4 45%, #fcffb4 93%, transparent 98%);
	padding: 0 0 0 .3em;
}

.squareMark {
	border: solid 1px;
	border-color: inherit;
	display: inline-block;
	padding: .2em .4em .3em;
	line-height: 1;
}

.circleMark {
	border: solid 1px;
	border-radius: 100px;
}

/* ////////// mobile ////////// */
@media screen and (max-width: 768px) {
}

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


/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
}
/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:959px) {
}

/*====================================================
////NOTE カラー
====================================================*/
.black {
	color: #000;
}
.white {
	color: #fff;
}
.gray {
	color: #EBEBEB;
}
.red {
	/* color: #ab1727; */
	color: #fc6264;/*赤色変更*/
}
.d_red {
	/* color: #68131c; */
	color: #2ac8c7;/*基調カラー変更*/
}
.blue {
	color: #59C2D8;
}
.yellow {
	color: #FFDF4D;
}

.bg-white {
	background: #fff;
}
.bg-gray {
	background: #EBEBEB;
}
.bg-beige {
	background: #fdf8ef;
	background: #fbf9f2;
}
.bg-beige2 {
	background: #f2ece1;
}
.bg-red {
	/* background: #ab1727; */
	background: #fc6264;/*赤色変更*/
	color: #fff;
}
.bg-d_red {
	/* background: #68131c; */
	background: #2ac8c7;/*基調カラー変更*/
	color: #fff;
}
.bg-black {
	background: #000;
	color: #fff;
}

.border-gray {
	border: solid 1px #b9c0c5;
}
.border-d_red {
	/* border: solid 1px #68131c; */
	border: solid 1px #2ac8c7;/*基調カラー変更*/
}
.border-none {
	border: none;
}

/*====================================================
//id form
====================================================*/
input, button, select {
	margin: 0;
	padding: 0;
	background: none;
	background-image: none;
	background-position-x: initial;
	background-position-y: initial;
	background-size: initial;
	background-repeat-x: initial;
	background-repeat-y: initial;
	background-attachment: initial;
	background-origin: initial;
	background-clip: initial;
	background-color: initial;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	color: inherit;
	cursor: pointer;
}
input[type="text"],input[type="email"],input[type="tel"],input[type="search"],input[type="password"],input[type="url"],input[type="number"], select, textarea {
	-webkit-appearance: none;
	/*    border: 1px solid rgba(83, 37, 15, 0.2);*/
	background: #fff;
	border: solid 1px #a7a7a7;
	display: block;
	font-family: semplicitapro, "游ゴシック体 Medium", "YuGothic Medium", "游ゴシック Medium", "Yu Gothic Medium", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
	font-size: 1.6rem;
	line-height: 1.6;
	min-height: 1.8em;
	padding: 10px;
	width: 100%;
	flex: 1;
	transition: .2s ease-in-out;
}
textarea {
	resize: vertical;
	min-height: 80px;
	width: 100%;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, select:focus, textarea:focus {
	border-color: #1d4b88;
	/*
	-webkit-box-shadow: 0 0 5px rgba(83, 37, 15, 0.5);
	box-shadow: 0 0 5px rgba(83, 37, 15, 0.5);
	*/
}
input[type="file"],
label {
	cursor: pointer;
}
form label {
	position: relative;
	line-height: 1.4;
	display: inline-block;
}

input[type="checkbox"] + span ,
input[type="checkbox"] + label {
	position: relative;
	padding-left: 2em;
	display: inline-block;
}
input[type="checkbox"] + span:before ,
input[type="checkbox"] + label:before {
	position: absolute;
	content: '';
	width: 15px;
	height: 15px;
	border: solid 1px;
	border-radius: 3px;
	border-color: rgba(83, 37, 15, 0.2);;
	top: .2em;
	left: 0px;
	background: #fff;
	transition: .2s ease-in-out;
}
input[type="checkbox"] + label:before {
	top: -.15em;
}
input[type="checkbox"] + span:after ,
input[type="checkbox"] + label:after {
	position: absolute;
	content: '';
	width: 11px;
	height: 7px;
	border: solid;
	border-width: 0 0 3px 3px;
	border-color: transparent transparent #b23750 #b23750;
	transform: rotate(-45deg);
	top: .2em;
	left: 3px;
	opacity: 0;
	transition: .2s ease-in-out;
}
input[type="checkbox"] + label:after {
	top: -2px;
}
input[type="checkbox"]:checked + span:after ,
input[type="checkbox"]:checked + label:after {
	opacity: 1;
}
input[type="radio"] + span ,
input[type="radio"] + label {
	position: relative;
	padding-left: 30px;
}
input[type="radio"] + span:before,
input[type="radio"] + label:before {
	position: absolute;
	content: '';
	width: 15px;
	height: 15px;
	border: solid 1px;
	border-radius: 100%;
	border-color: #ccc;
	top: .4em;
	left: 0px;
	background: #fff;
	transition: .2s ease-in-out;
}
input[type="radio"] + span:after,
input[type="radio"] + label:after {
	position: absolute;
	content: '';
	width: 9px;
	height: 9px;
	top: calc(.4em + 4px);
	left: 4px;
	border-radius: 100%;
	opacity: 0;
	transition: .2s ease-in-out;
}
input[type="radio"]:checked + span:after,
input[type="radio"]:checked + label:after {
	opacity: 1;
	background: #b23750;
}
.select {
	position: relative;
}
.select:before {
	position: absolute;
	content: '';
	width: 0;
	height: 0;
	border: solid 4px transparent;
	border-top-color: #53250F;
	border-top-width: 6px;
	border-bottom-width: 0;
	right: 10px;
	top: 0;
	bottom: 0;
	margin: auto;
	pointer-events: none;
	z-index: 100;

}
#confirm .select:before {
	display: none;
}
select {
	cursor: pointer;
}
.tel input[type="text"] {
	width: calc(100% / 3 - 10px);
	max-width: 100px;
}


/*====================================================
////id .yt
====================================================*/

.yt {
	position: relative;
	height: 0;
	padding: 0px 0 56.3%;
	overflow: hidden;
}
.yt iframe {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 100%;
}


/*====================================================
////id  loader
====================================================*/
.is-hide {
	display: none;
}
/* ローディング画面をフェードアウト */
.fadeout-bg {
	transition-property: opacity;
	transition-delay: .4s;
	transition-duration: 1.0s;
	opacity: 0;
	pointer-events: none;
}
/* ローダーをフェードアウト */
.fadeout-loader {
	transition-property: opacity;
	opacity: 0;
	pointer-events: none;
}
/* ローディング画面 */
#loader-bg {
	background: #fbf9f2;
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 100000;
}
#loader {
	height: 120px;
	left: 50%;
	margin-left: -60px;
	margin-top: -60px;
	position: fixed;
	top: 50%;
	width: 120px;
}

/*====================================================
////id 【header】
====================================================*/
header {
	position: relative;
	transition: .3s ease-in-out;
	z-index: 9999;
}
header .btnBox {
	position: absolute;
		top: 0;
		right: -4vw;
}
header .btnBox a {
	justify-content: center;
	width: 100%;
	height: 100%;
}
header .btnBox a:hover {
	filter: brightness(1.15);
	opacity: 1;
}
/* ////////// mobile ////////// NOTE header mobile*/
@media screen and (max-width: 1099px) {
	header {
		height: 70px;
	}
	header .headerBox {
		background: rgba(255, 255, 255, .8);
		position: fixed;
			top: 0;
			left: 0;
		width: 100%;
		height: 70px;
	}
	header .innerBox ,
	header .mainBox {
		height: 70px;
		padding: 0;
	}
	header .mainBox .discription ,
	header .mainBox .information {
		display: none;
	}
	header .mainBox .logo img {
		height: 30px;
		margin: 20px 0;
	}
	header .btnBox {
		position: fixed;
			top: 0;
			right: 0;
	}
	header .btnBox .cartBtn {
		width: 80px;
		height: 70px;
	}
	header .btnBox a {
		font-size: 1.2rem;
		letter-spacing: 0;
		line-height: 1;
	}
	header .btnBox img {
		height: 32px;
		margin: -2px 0 2px;
	}
	header .menuBtn {
		flex-direction: column;
		font-size: 1.2rem;
		letter-spacing: 0;
		line-height: 1;
		position: fixed;
			top: 0;
			right: 80px;
		transition: .2s ease-in-out;
		width: 80px;
		height: 70px;
		cursor: pointer;
		/* z-index: 10; */
	}
	header .menuBtn:hover {
		filter: brightness(1.15);
    opacity: 1;
	}
	header .menuBtn .humberger {
		width: 23px;
		height: 16px;
		position: relative;
		margin: 5px 0 10px;
	}
	header .menuBtn .humberger:before,
	header .menuBtn .humberger:after {
		position: absolute;
		content: '';
		width: 100%;
		height: 3px;
		background: #fff;
		transition: .2s ease-in-out;
		left: 0;
	}
	header .menuBtn .humberger:before {
		top: -1.5px;
		-webkit-transform-origin: left top;
	}
	header .menuBtn .humberger:after {
		bottom: -1.5px;
		transform-origin: left bottom;
	}
	header .menuBtn .humberger span {
		position: absolute;
		content: '';
		height: 3px;
		width: 100%;
		top: 0;
		bottom: 0;
		left: 0;
		margin: auto;
		background: #fff;
		transition: .2s ease-in-out;
		opacity: 1;
	}
	header .maskBox {
		background: rgba(0, 0, 0, .3);
		opacity: 0;
		pointer-events: none;
		position: fixed;
		top: 0;
		left: 0;
		transition: .3s ease-in-out;
		width: 100%;
		height: 100%;
	}
	header .menuBox {
		background: #fff;
		flex-direction: column;
		opacity: 0;
		overflow-y: auto;
		padding: 20px 3% 100px;
		pointer-events: none;
		position: fixed;
			top: 0;
			right: -100%;
			bottom: 0;
		text-align: center;
		transition: .5s ease-in-out;
		width: 100%;
		height: auto;
		min-height: 100vh;
		z-index: 1;

		overflow-y: scroll;
		-ms-overflow-style: none;    /* IE, Edge 対応 */
		scrollbar-width: none;       /* Firefox 対応 */
	}
	header .menuBox::-webkit-scrollbar {  /* Chrome, Safari 対応 */
		display:none;
	}

	header .menuBox .closeBtn {
		cursor: pointer;
		position: absolute;
			top: 0;
			right: 5px;
		width: 70px;
		height: 70px;
	}
	header .menuBox .closeBtn:before,
	header .menuBox .closeBtn:after {
		background: #000;
		content: '';
		margin: auto;;
		position: absolute;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
		width: 40px;
		height: 2px;
	}
	header .menuBox .closeBtn:before {
		transform: rotate(-45deg);
	}
	header .menuBox .closeBtn:after {
		transform: rotate(45deg);
	}
	header .menuBox .menu-title {
		border-bottom: solid 1px #ccc;
		font-size: 2.7rem;
		margin-bottom: 20px;
		padding: 20px 0;
	}
	header .menuBox .menu {
		max-width: 400px;
		margin: auto;
	}

	header .menu-outer.open .maskBox {
		opacity: 1;
		pointer-events: auto;
	}
	header .menu-outer.open .menuBox {
		pointer-events: auto;
		opacity: 1;
		right: 0;
	}

	header .menuBox .menu > li {
		margin-bottom: 15px;
		text-align: left;
	}
	header .menuBox .menu li a {
		font-size: 1.8rem;
		min-width: 6em;
	}
	header .menuBox .menu li li a {
		font-size: .9em;
		padding: 0 0 0 30px;
		position: relative;
	}
	header .menuBox .menu li li a:before {
		/* background: #ab1727; */
		background: #fc6264;/*赤色変更*/
		content: '';
		margin: auto;
		position: absolute;
			top: .8em;
			left: 5px;
		transition: .2s ease-in-out;
		width: 10px;
		height: 2px;
	}

	header .menuBox .information .inqBox a {
		border: solid 1px;
		margin: 20px 0;
		padding: .8em;
		width: 100%;
			max-width: 400px;
	}
	header .menuBox .information .logo {
		margin: 20px auto 10px;
		width: 60%;
			max-width: 300px;
	}
	header .menuBox .information .tel {
		font-size: 3.2rem;
	}

	#menu-pc {
		display: none;
	}

}

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

@media screen and (max-width:500px) {
}
@media screen and (min-width:769px) and (max-width:1099px) {
	header .mainBox .logo img {
		height: 50px;
		margin: 10px 0;
	}
	header .menuBox {
		right: -400px;
		width: 400px;
	}
	header .menuBox .menu li a {
		font-size: 2.0rem;
	}
}


/* ////////// PC ////////// NOTE header pc*/
@media print, screen and (min-width: 1100px) {
	header {
		height: 170px;
	}
	header .innerBox {
		height: 100%;
		max-width: none;
		padding: 25px 0;
	}
	header .header-inner {
		display: flex;
			align-items: flex-end;
			justify-content: space-between;
		padding-right: 90px;
	}
	header .discription {
		font-size: 1.5rem;
		height: 55px;
		position: absolute;
			top: 20px;
			left: 0;
	}
	header .logo {
		margin-top: 50px;
	}
	header .logo img {
		height: 50px;
	}
	header .information {
		position: absolute;
			top: 30px;
			right: 115px;
	}
	header .information .txtBox {
		align-items: center;
		flex-direction: column;
		justify-content: flex-end;
	}
	header .information .tel {
		display: inline-block;
		font-size: 2.7rem;
	}
	header .information .open {
		font-size: 1.6rem;
		margin-top: .2em;
	}
	header .information .inqBox {
		text-align: right;
	}
	header .information .inqBox a {
		border: solid 1px;
		margin-left: 20px;
		padding: 10px 35px;
	}
	header .btnBox .cartBtn {
		width: 120px;
		height: 140px;
	}
	header .btnBox img {
		margin: 0;
		width: 45px;
	}
	header .menu-outer {
		justify-content: flex-end;
		padding-right: 5px;
	}
	header.first:not(.fixed) .menu-outer {
		padding-right: 0;
	}
	header .menu > li {
		font-size: 1.5rem;
		letter-spacing: .05em;
		padding: 0 3px
	}
	header .menu-accordion dt > a ,
	header .menu > li > a {
		padding: 5px 5px;
		position: relative;
	}
	header .menu-accordion dt > a:after ,
	header .menu > li > a:after {
		/* background: #ab1727; */
		background: #fc6264;/*赤色変更*/
		content: '';
		margin: auto;
		opacity: 0;
		position: absolute;
			bottom: 3px;
			left: 0;
		transition: .2s ease-in-out;
		width: 0;
		height: 3px;
	}
	header .menu li ul li a:after {
		bottom: 0;
	}
	header .menu > li a:hover {
		opacity: 1;
	}
	header .menu-accordion dt > a:hover:after ,
	header .menu > li > a:hover:after {
		opacity: 1;
		width: 100%;
	}
	header .menu-accordion {
		position: relative;
	}
	header .menu-accordion dd {
		margin: auto;
		position: absolute;
			top: 100%;
			left: -50vw;
			right: -50vw;
		transition: .4s ease-in-out;
		transition-delay: .1s;
		width: 860px;
	}
	header .menu-accordion dd .whiteBox {
		background: rgba(255, 255, 255, .9);
		padding: 55px 40px 30px;
	}
	header .menu-accordion figure {
		height: 140px;
		margin-bottom: 5px;
	}
	header .menu-accordion dd ul li {
		padding: 0;
		line-height: 1.4;
	}
	header .menu-accordion dd ul a {
		padding: 5px;
	}
	header .menu-accordion dd ul ul {
		margin-top: 5px;
	}
	header .menu-accordion dd ul ul li a {
		font-size: .8em;
		min-width: 6em;
		padding: 0 0 0 30px;
		position: relative;
	}
	header .menu-accordion dd ul ul li a:before {
		/* background: #ab1727; */
		background: #fc6264;/*赤色変更*/
		content: '';
		margin: auto;
		position: absolute;
			top: .6em;
			left: 5px;
		transition: .2s ease-in-out;
		width: 10px;
		height: 2px;
	}
	header .menu-accordion dd ul ul li a:hover:before {
		width: 16px;
	}
	header ul.menu {
		display: flex;
	}

	header.global {

	}
	#menu-mob {
		display: none;
	}
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:959px) {
}

@media screen and (min-width:1100px) and (max-width:1199px) {
	header .discription {
		max-width: 400px;
	}

}

@media screen and (min-width:1300px) {
	header .logo img {
		height: 60px;
	}
	header .btnBox .cartBtn {
		width: 140px;
	}
	header .btnBox {
		/* right: -2vw; */
	}
	header.first:not(.fixed) .menu-outer {
		padding-right: 20px;
	}
	header .menu > li {
		font-size: 1.6rem;
		/* padding: 0 20px; */
	}
}
@media screen and (min-width:1500px) {
	header .innerBox {
		max-width: calc(100% - 100px);
	}
	header .header-inner {
		padding-right: 130px;
	}
	header .information {
		right: 165px;
	}
	header .information .txtBox {
		flex-direction: row;
	}
	header .information .tel {
		margin-right: 20px;
	}
	header .btnBox {
		right: -50px;
	}
	header .btnBox .cartBtn {
		width: 180px;
		height: 140px;
	}
	header.first:not(.fixed) .menu-outer {
		padding-right: 20px;
	}
	header .menu-accordion dd {
		width: 1100px;
	}
	header .menu-accordion dd .whiteBox {
		padding: 65px 50px 40px;
	}
	header .menu-accordion figure {
		height: 280px;
	}
	header .menu > li {
		font-size: 1.7rem;
		padding: 0 8px;
	}
}

/*====================================================
////id header.fixed
====================================================*/
/* ////////// mobile ////////// */
@media screen and (max-width: 768px) {
}

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

/* ////////// PC ////////// */
@media print, screen and (min-width: 1100px) {
	header.fixed .headerBox {
		background: rgba(255, 255, 255, 1);
		position: fixed;
			top: -140px;
			left: 0;
			transition: .4s ease-in-out;
		width: 100%;
		height: 100px;
	}
	header.fixed.global .headerBox {
		top: 0;
	}
	header.fixed .innerBox {
		padding: 15px 0;
	}
	header.fixed .header-inner {
		padding-right: 60px;
	}
	header.fixed .discription {
		display: none;
	}
	header.fixed .logo {
		height: 40px;
		margin: 0;
	}
	header.fixed .information {
		position: unset;
			top: auto;
			right: auto;
	}
	header.fixed .information .txtBox {
		flex-direction: row;
	}
	header.fixed .information .tel {
		font-size: 1.8rem;
		margin-right: 15px;
	}
	header.fixed .information .open {
		font-size: 1.4rem;
		letter-spacing: .05em;
	}
	header.fixed .information .inqBox {
		font-size: 1.6rem;
		position: absolute;
			top: 10px;
			right: 80px;
	}
	header.fixed .btnBox .cartBtn {
		font-size: 1.6rem;
		width: 110px;
		height: 100px;
	}
	header.fixed .menu-accordion dt,
	header.fixed .menu > li {
		font-size: 1.5rem;
		margin-bottom: -8px;
	}
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:959px) {
}

@media screen and (min-width:1200px) {
	header.fixed .information .open {
		letter-spacing: .15em;
	}
	header.fixed .menu-accordion dt,
	header.fixed .menu > li {
		font-size: 1.6rem;
		margin-bottom: -8px;
	}
}

/*====================================================
////class .slick
====================================================*/
.slick-dotted.slick-slider {
	margin-bottom: 0px;
	padding-bottom: 40px;
}
.slick-dots {
	bottom: 10px;
}
.slick-dots li {
	width: auto;
	height: auto;
	margin: 0 3px;
}
.slick-dots li button {
	width: 20px;
	height: 20px;
	padding: 0;
}
.slick-dots li button:before {
	/* background: #928d85; */
	background: transparent;
	border-top: solid 5px #928d85;
	content: '';
	opacity: 1;
	position: absolute;
	top: 4px;
	left: 4px;
	width: 12px;
	height: 12px;
}
.slick-dots li.slick-active button:before {
	/* border-top: solid 5px #68131c; */
	border-top: solid 5px #2ac8c7;/*基調カラー変更*/
	opacity: 1;
}

.slick-prev ,
.slick-next {
	background: transparent !important;
/*	background: #fff !important;*/
	opacity: .8;
	overflow: hidden;
	transition: .2s ease-in-out;
	width: 25px;
	height: 50px;
	z-index: 1000;
}
.slick-prev:hover ,
.slick-next:hover {
/*	background: #fff;*/
	opacity: 1;
}
.slick-prev {
	left: -15px;
}
.slick-next {
	right: -15px;
}

.slick-prev * {
	display: none;
}
.slick-prev:before ,
.slick-next:before {
	background: #000;
	border: none;
	border-radius: 2px;
	bottom: calc(50% - 1px);
	content: '';
	margin: 0;
	position: absolute;
	width: 25px;
	height: 2px;
}
.slick-prev:before {
	left: 5px;
	transform: rotate(-60deg);
	transform-origin: left bottom;
}
.slick-next:before {
	right: 5px;
	transform: rotate(60deg);
	transform-origin: right bottom;
}
.slick-prev:after ,
.slick-next:after {
	background: #000;
	border: none;
	border-radius: 2px;
	content: '';
	position: absolute;
		top: calc(50% - 1px);
	width: 25px;
	height: 2px;
}
.slick-prev:after {
	left: 5px;
	transform: rotate(60deg);
	transform-origin: left top;
}
.slick-next:after {
	right: 5px;
	transform: rotate(-60deg);
	transform-origin: right top;
}


/* ////////// mobile ////////// */
@media screen and (max-width: 768px) {
}

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

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:959px) {
}

@media screen and (min-width:1200px) {
}

/*====================================================
////class .headBox
====================================================*/
#contents .head_en {
	display: flex;
	justify-content: center;
	text-align: center;
}
#contents .head_en .box-inner {
	position: relative;
}
#contents .head_en .f-en:first-letter {
	/* color: #ab1727; */
	color: #fc6264;/*赤色変更*/
}
#contents .head-circle_deco {
	padding-top: 2em;
	position: relative;
}
#contents .head-circle_deco:before {
	background: url(img/head_icon-1.png) no-repeat center / contain;
	content: '';
	display: block;
	filter: none;
	margin: auto;
	position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: auto;
	width: 1em;
	height: 1em;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 768px) {
	#contents .head_en {
		margin-bottom: 30px;
	}
	#contents .head-circle_deco {
		margin-bottom: 5px;
		padding-top: 1.5em;
	}
	#contents .head_en .f-en {
		display: block;
		font-size: 1.1rem;
		letter-spacing: .3em;
	}
	#contents .head_en .f-en::first-letter {
		font-size: 1.2em;
	}
}

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

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
	#contents .head_en .head_txt {
		-ms-writing-mode: tb-rl;
		    writing-mode: vertical-rl;
		-webkit-text-orientation: upright;
		        text-orientation: upright;
	}
	#contents .head_en .f-en {
		font-size: 1.2rem;
		position: absolute;
		 top: 0;
		 left: calc(100% + 20px);
		transform: rotate(90deg);
		transform-origin: top left;
		white-space: nowrap;
	}
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:959px) {
	.head_en h2 {
		font-size: 2.6rem;
	}
}

@media screen and (min-width:1200px) {
}


/*====================================================
////class .mw_wp_form
====================================================*/
.mw_wp_form .backBtn {
	display: inline-block;
	position: relative;
}
.mw_wp_form_input .confirmation ,
.mw_wp_form_input .backBtn {
	display: none !important;
}
.mw_wp_form_confirm .input ,
.mw_wp_form_confirm .select:before ,
.mw_wp_form_confirm .consentBox {
	display: none !important;
}



/*====================================================
////class .formBox
====================================================*/

.formBox {
	/*    text-align: center;*/
	max-width: 700px;
	margin: auto;
}
.formBox .formItem {
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
	width: 100%;
}
.formBox .formItem dt .attentionColor {
	margin-left: .5em;
}
.formBox .formItem .mwform-tel-field {
	display: flex;
	margin-left: -3px;
	align-items: center;
}
.formBox .formItem .mwform-tel-field input{
	margin: 0 3px;
}
.formBox .formItem input[type="number"] {
	width: 100px;
}
.formBox .linkBtn {
	transition: .2s ease-in-out;
	/*    padding: 0;*/
}
.formBox .linkBtn {
	font-size: 1.5rem;
}
.formBox .btn-outer {
	border-radius: 5px;
	display: inline-block;
	overflow: hidden;
	position: relative;
	width: 100%;
	max-width: 400px;
	/*	min-height: 60px;*/
}
.formBox .btn-outer:before {
	background: linear-gradient(to right, #ea674a, #e03a8e, #ea674a);
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	transition: .2s ease-in-out;
	width: 200%;
	height: 100%;
	z-index: -1;
}

/* .formBox input[type="submit"].linkBtn {
	cursor: pointer;
	display: block;
	font-size: 1.2em;
	letter-spacing: .1em;
	margin: 0 auto;
	padding: 12px 35px;
	position: relative;
	transition: .2s ease-in-out;
	width: 100%;
	max-width: 300px;
	height: auto;
} */
.formBox .backBtn {
	margin-top: 30px;
	position: relative;
}
.formBox .backBtn .linkBtn-small {
	padding: 0;
}
.formBox .backBtn .linkBtn-small:after {
	transform: rotate(-135deg);
	right: auto;
	left: 25px;
}
.formBox .backBtn .linkBtn-small:hover:after {
	left: 15px !important;
}
.formBox .backBtn input[type="submit"] {
	background: transparent;
	color: inherit;
	display: inline-block;
	font-size: 1.4rem;
	margin: 0 !important;
	min-width: 140px;
/*	padding: .2em 20px .1em 40px;*/
	transition: .2s ease-in-out;
}
.formBox .linkBtn:hover input {
}
.formBox dd {
	position: relative;
	text-align: left;
}
.mw_wp_form .formBox .error {
	bottom: -3px;
	color: #ea2e3a;
	font-size: 1.2rem;
}
.mw_wp_form .formBox .horizontal-item + .horizontal-item {
	margin-left: 0;
	display: block;
	margin: 5px 0;
}
.formBox .consentBox {
	max-width: 500px;
	margin: 50px auto;
	/*    font-size: 1.3rem;*/
}
.formBox .consentBox div {
	position: relative;
	padding-bottom: 16px;
}
.formBox .error {
	font-weight: bold;
	position: absolute;
	left: 1em;
	bottom: -20px;
	width: 100%;
	min-width: 10em;
}
.formBox .error:before {
	content: '\203B';　/* ※ */
}

/*
.formBox .backBtn {
margin-top: -10px;
}
*/

/* ////////// mobile ////////// */
@media screen and (max-width: 768px) {
	.formBox .formItem dt {
		text-align: left;
		margin: 15px 0 5px;
		font-weight: bold;
		position: relative;
	}
	.formBox .formItem dd {
		text-align: left;
		margin-bottom: 10px;
		padding: 0 0 1em 0 !important;
		width: 100%;
	}
	.mw_wp_form.mw_wp_form_preview .formItem dd {
		padding: 0 0 1em .8em !important;
	}
	.mw_wp_form .formBox .error {
		/*		bottom: -2em;*/
		left: 0;
		display: block;
		width: 100%;
		padding-left: 1em;
	}
	#confirm .formBox dd {
		padding-left: 1em;
	}
	.formBox .consentBox {
		align-items: stretch;
		flex-direction: column;
	}
}

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

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
	.formBox .formItem {
		grid-template: 'dt dd' / 180px 1fr;
	}
	.formBox .formItem dt {
		padding: 20px 0 16px 0;
		position: relative;
		width: 200px;
	}
	.mw_wp_form_confirm .formBox dt:after {
		position: absolute;
		content: '';
		left: 0;
		bottom: 0;
		width: 100vw;
		height: 0;
		border-top: solid 1px #ccc;
	}
	/*
	.mw_wp_form_confirm .formBox dt:last-of-type:after {
	display: none;
}
	*/
	.formBox .formItem dd {
		min-height: 60px;
		padding: 16px 0;
		width: calc(100% - 200px);
	}
	.mw_wp_form_confirm .formBox .formItem dt,
	.mw_wp_form_confirm .formBox .formItem dd {
		padding: 20px 0;
	}
	.formBox dd .dateBox {
		width: calc(50% - 5px);
	}
	.formBox .error {
	}
	.formBox .btn-outer:hover:before {
		left: 0;
	}
	.formBox .backBtn:hover:before ,
	.formBox .backBtn input:hover {
		/*			color: #ea674a;*/
	}
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:959px) {
}

@media screen and (min-width:1200px) {
}

/*====================================================
////id #ui-datepicker-div
====================================================*/
#ui-datepicker-div.ui-widget-content {
	border-radius: 0;
	font-family: 'Kumbh Sans', "游ゴシック体 Medium", "YuGothic Medium", "游ゴシック Medium", "Yu Gothic Medium", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}
#ui-datepicker-div .ui-widget-header {
	border: none;
	background: transparent;
}
#ui-datepicker-div.ui-datepicker .ui-datepicker-prev,
#ui-datepicker-div.ui-datepicker .ui-datepicker-next {
	cursor: pointer !important;
}
#ui-datepicker-div.ui-datepicker .ui-datepicker-prev:before,
#ui-datepicker-div.ui-datepicker .ui-datepicker-next:before {
	border: solid #000;
	content: '';
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	width: 12px;
	height: 12px;
	transform: rotate(45deg);
}
#ui-datepicker-div.ui-datepicker .ui-datepicker-prev:before {
	border-width: 0 0 1px 1px;
	left: 10px;
}
#ui-datepicker-div.ui-datepicker .ui-datepicker-next:before {
	border-width: 1px 1px 0 0;
	right: 10px;
}
#ui-datepicker-div .ui-widget-header .ui-state-hover,
#ui-datepicker-div .ui-widget-header .ui-state-focus {
	border: none;
	background: transparent;
}
#ui-datepicker-div.ui-datepicker .ui-datepicker-prev span,
#ui-datepicker-div.ui-datepicker .ui-datepicker-next span {
	display: none;
}
#ui-datepicker-div .ui-state-default,
#ui-datepicker-div .ui-widget-content .ui-state-default {
	background: #fff;
	border-color: #1792D4;
}
#ui-datepicker-div  {}
#ui-datepicker-div  {}
#ui-datepicker-div  {}
/* ////////// mobile ////////// */
@media screen and (max-width: 768px) {
}

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

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:959px) {
}

@media screen and (min-width:1200px) {
}

/*====================================================
//// class table.responsive
====================================================*/
table th,
table td {
/*	background: #fff;*/
	/*	font-weight: normal;*/
	line-height: 1.4;
	/* text-align: center;
	vertical-align: middle; */
}
table th,
table td {
	/* border-bottom: dotted #a6ccd4;
	border-right: solid #fff;
	border-width: 0 0 1px 0; */
}

table th ,
table td {
	padding: 12px 10px;
}

table.responsive {
	width: 100%;
}
table thead th {
/*
	border-right: solid 1px #f7f5ec;
	border-bottom: 0;
*/
}

/* ////////// mobile ////////// */
@media screen and (max-width: 768px) {
	table.responsive,
	.wp-block-table.responsive table {
		display: block;
	}
	table.responsive thead,
	.wp-block-table.responsive thead {
		display: none;
	}
	table.responsive tbody,
	.wp-block-table.responsive tbody {
		display: block;
	}
	table.responsive tr,
	.wp-block-table.responsive tr {
		background: #fff;
		display: flex;
		flex-wrap: wrap;
		/* margin: 20px 0; */
		padding: 0 10px;
		position: relative;
		width: 100%;
	}
	table.responsive tr.no_head,
	.wp-block-table.responsive tr.no_head {
		margin-top: -20px;
	}
	table.responsive td.sub_head,
	.wp-block-table.responsive td.sub_head {
		background: #e6ddd8;
		border-bottom: 0;
		margin-top: 15px;
		padding-left: 8px;
		text-align: center;
	}
	table.responsive td.blank,
	.wp-block-table.responsive td.blank {
		display: none;
	}
	table.responsive th,
	.wp-block-table.responsive td:first-child {
		/* border-bottom: solid 1px rgba(0, 0, 0, .8); */
		border: none;
		font-weight: bold;
		padding: 15px 0 0;
		width: 100%;
	}
	table.responsive td,
	.wp-block-table.responsive td {
		border-bottom: solid 1px #ccc;
		/* padding: 15px 8px 15px 120px; */
		padding: 15px 0 15px 15px;
		text-align: left;
		transition: .4s ease;
		width: 100%;
	}
	table.responsive td.price,
	.wp-block-table.responsive td.price {
		text-align: right;
	}
	table.responsive td:last-child {
		/* border: none; */
	}
	table.responsive td:before,
	.wp-block-table.responsive td:before {
		color: #000;
		content: attr(data-label);
		font-size: 1.2rem;
		font-weight: normal;
		padding-top: .25em;
		position: absolute;
		left: 18px;
	}
}

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

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
	table th,
	table td {
	}
	table td {
		padding: 15px 20px;
	}

	table thead th:last-child,
	table td:last-child {
		border-right: 0;
	}
	table.responsive td.blank .blank_line {
		background: #fff;
		display: block;
		margin: -8px auto -8px -12px;
		position: relative;
		width: 3px;
		height: calc(100% + 16px);
		z-index: 1;
	}

}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:959px) {
}

/*====================================================
//// class .noimage
====================================================*/
.noimage figcaption {
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	font-weight: bold;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 768px) {
}

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

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:959px) {
}

/*====================================================
//// id other
====================================================*/
/* ////////// mobile ////////// */
@media screen and (max-width: 768px) {
}

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

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:959px) {
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:959px) {
}

/*====================================================
//// id
====================================================*/

/* ////////// mobile ////////// */
@media screen and (max-width: 768px) {
}

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

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:959px) {
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:959px) {
}

/*====================================================
//// id guide
====================================================*/
#guide .box-3 .card_icon {
	-moz-column-gap: 5px;
	     column-gap: 5px;
	justify-content: flex-start;
	margin: 20px 0;
}
#guide .box-3 .card_icon img {
	margin: 0;
}
#guide .box-3 .card_icon:after {
	clear: both;
	content: '';
	display: block;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 768px) {
	#guide .box-2 .imgBox figure {
		margin-bottom: 10px;
		width: 50%;
	}
}

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

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
	#guide .headBox {
		width: 120px;
		justify-content: flex-start;
	}
	#guide .whiteBox {
		padding: 40px 50px;
	}
	#guide .box-1 .imgBox {
		margin-left: 20px;
		width: 40%;
			max-width: 360px;
	}
	#guide .box-2 .imgBox figure {
		width: 20%;
	}
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:959px) {
	#guide .innerBox {
		flex-direction: column;
	}
	#guide .headBox {
		justify-content: center;
		width: 100%;
	}
	#guide .head_en {
		margin-bottom: 30px;
	}
	#guide .head-circle_deco {
		margin-bottom: 5px;
		padding-top: 1.5em;
	}
	#guide .head_en .f-en {
		display: block;
		font-size: 1.1rem;
		letter-spacing: .3em;
		position: static;
		transform: unset;
	}
	#guide .head_en .f-en::first-letter {
		font-size: 1.2em;
	}
	#guide .head_en .head_txt {
	    -ms-writing-mode: unset;
	        writing-mode: unset;
	    -webkit-text-orientation: unset;
	            text-orientation: unset;
	}
	#guide .box-2 .imgBox {
		margin: auto;
		max-width: 500px;
	}
	#guide .box-2 .imgBox figure {
		width: calc(100% / 3);
	}
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:959px) {
}

/*====================================================
////id reserve
====================================================*/
#reserve .whiteBox {
	padding: 60px 30px;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 768px) {
	#reserve .whiteBox {
		position: relative;
		margin-bottom: 50px;
	}
	#reserve .whiteBox .linkBox {
		margin: auto;
		position: absolute;
			left: 0;
			right: 0;
			bottom: -35px;
	}
}

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

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:959px) {
}

@media screen and (min-width:1200px) {
}

/*====================================================
////id sns
====================================================*/
#sns .item {
	align-items: flex-start;
	flex: 1;
	padding: 20px;
}
#sns .item:last-child {
	border: none;
}
#sns figure {
	margin-bottom: 10px;
	width: 60px;
	height: 60px;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 768px) {
	#sns .item {
		border-right: solid 1px #ccc;
	}
}

@media screen and (max-width:600px) {
	#sns .itemBox {
		flex-direction: column;
		margin: auto;
		max-width: 400px;
	}
	#sns .item {
		border-right: 0;
		border-bottom: solid 1px #ccc;
		padding: 20px;
		width: 100%;
	}
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
	#sns .item {
		border-right: solid 1px #ccc;
	}
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:959px) {
}

@media screen and (min-width:1200px) {
}

/*====================================================
////class .pagetop
====================================================*/

.pagetop {
	display: none;
	position: fixed;
		bottom: 10px;
		right: 10px;
	transform: none !important;
	width: 88px;
	height: 88px;
	z-index: 1000;
	/*	border: solid 1px*/
}
.pagetop.stop {
	position: absolute;
		top: 10px;
		bottom: auto;
}
.pagetop a {
	/* background: #68131c; */
	background: #2ac8c7;/*基調カラー変更*/
	border-radius: 100%;
	color: #fff;
	display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
	letter-spacing: 0.08em;
	position: relative;
	/* opacity: .8; */
	width: 100%;
	height: 100%;
}
.pagetop .arrow {
	transform: rotate(-90deg);
}
.pagetop span {
	display: block;
	font-size: 1.0rem;
	padding-top: 8px;
	position: relative;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 768px) {
	.pagetop {
		width: 50px;
		height: 50px;
	}
	.pagetop span {
		display: none;
	}
}

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

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
	.pagetop a:hover {
		/* background: rgba(255, 255, 255, .8); */
		/* color: #68131c; */
		color: #2ac8c7;/*基調カラー変更*/
		/* text-shadow: 0 0 1px #68131c, 0 0 1px #68131c; */
		text-shadow: 0 0 1px #2ac8c7, 0 0 1px #2ac8c7;/*基調カラー変更*/
	}
	.pagetop a:before {
		background: #fff;
		/* border: solid 2px #68131c; */
		border: solid 2px #2ac8c7;/*基調カラー変更*/
		border-radius: 100%;
		content: '';
		margin: auto;
		opacity: 0;
		position: absolute;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
		transition: .3s ease-in-out;
		width: 0;
		height: 0;
	}
	.pagetop a:hover:before {
		opacity: 1;
		width: 100%;
		height: 100%;
	}
	.pagetop a:hover .arrow {
		margin: 0;
	}
	.pagetop a:hover .arrow:before {
		/* background: #68131c; */
		background: #2ac8c7;/*基調カラー変更*/
	}
	.pagetop a:hover .arrow:after {
		/* border-left-color: #68131c; */
		border-left-color: #2ac8c7;/*基調カラー変更*/
	}

}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:959px) {
}

@media screen and (min-width:1200px) {
}

/*====================================================
////shop
====================================================*/
.shop-table {
  width: 100%;
  border-top: 1px solid #b9c0c5;
  border-bottom: 1px solid #b9c0c5;
  text-align: left;
}
.shop-table th{
  font-size: 1.6rem;
  font-weight: 400;
  width: 80px;
  padding: 5px 0 5px 0;
}
.shop-table th{
  width: 180px;
}
.shop-table td{
  font-size: 1.6rem;
  font-weight: 400;
  padding: 5px 0 5px 0;
}
.shop-table tbody tr:first-child th{
  padding-top: 15px;
}
.shop-table tbody tr:first-child td {
  padding-top: 15px;
}
.shop-table tbody tr:last-child th{
  padding-bottom: 15px;
}
.shop-table tbody tr:last-child td{
  padding-bottom: 15px;
}

/*====================================================
////id footer
====================================================*/
footer {
	position: relative;
	transform: none !important;
}
footer .copyBox {
	letter-spacing: .3em;
}
footer .menu li {
	line-height: 1.4;
}
footer .menu li a {
	min-width: 4em;
}
footer .menu > li {
	margin-bottom: 20px;
}
footer .menu > li > a {
	font-weight: bold;
}
footer .menu li ul {
	margin: 13px 0 20px;
}
footer .menu li li {
	letter-spacing: 0.05em;
	margin: 8px 3px;
}
footer .menu li li a {
	font-size: 1.5rem;
	padding-left: 20px;
	position: relative;
}
footer .menu li li a:before {
	/* border-top: solid 1px #ab1727; */
	border-top: solid 1px #fc6264;/*赤色変更*/
	content: '';
	margin: auto;
	position: absolute;
		top: calc(.5em + 5px);
		left: 0;
	width: 10px;
	height: 0px;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 768px) {
	footer .innerBox {
		flex-direction: column;
	}
	footer .box-1 {
		text-align: center;
	}
	footer .box-1 .logo {
		margin: 0 auto 40px;
		width: 200px;
	}
	footer .box-2 {
		display: none;
	}
}

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

}

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
	footer .innerBox {
	}
	footer .box-1 {
		width: 380px;
	}
	footer .box-1 .logo {
		margin-bottom: 40px;
		width: 200px;
	}
	footer .box-2 .menu_item {
		margin-left: 40px;
	}
	footer .box-2 dl:last-child {
	}
	footer .box-2 dl .menu {
		width: 150px;
	}
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:959px) {
	footer .innerBox {
		flex-direction: column;
	}
	footer .box-1 {
		width: 60%;
		max-width: 190px;
		margin: 0 auto 30px;
	}
	footer .box-2 {
		justify-content: center;
	}
}

@media screen and (min-width:1200px) {
	footer .box-2 .menu_item {
		margin-left: 60px;
	}
}

@media screen and (min-width:1500px) {
	footer .box-2 .menu_item {
		margin-left: 80px;
	}
}


/*====================================================
//// id
====================================================*/

/* ////////// mobile ////////// */
@media screen and (max-width: 768px) {
}

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

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:959px) {
}

@media screen and (min-width:1200px) {
}
