<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Roboto:500,900,100,300,700,400');
@import url('https://fonts.googleapis.com/css?family=Cardo:400,400i,700');
@import url(//use.fontawesome.com/releases/v5.14.0/css/all.css);

/*初期設定
----------------------------------------------------*/
body {
	width:100%;
	min-width: 320px;
	color: #333;
	background: #fff;
	*font-size:small;
	*font:x-small;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
body .sans {
	font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif; 
}
body .eng {
}

a {
	color: #dc6425;
	text-decoration: none;
    transition: all 0.5s ease;
}
a:hover {
	color: #de6d98;
}
a img {
    transition: all 0.5s ease;
}
a:hover img {
	opacity: 0.6;
}


/*
Page Loader
*/
#loader_base {
	width: 100vw;
	height: 100vh;
	background-color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100000;
}

#loader img{
	width: 50px;
	height: auto;
}
#loader p {
	font-family: "Times New Roman", serif;
	font-size:12px;
	text-align: center;
	margin-top: 20px;
}



/*
header
*/
header {
	text-align: center;
	width:100%;
	height: 60px;
	margin: 0px auto;
	box-sizing: border-box;
	position: fixed;
	background: rgba(255,255,255,0.0);
	z-index:1000;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
header .titleArea {
	margin-top: 12px;
	float: left;
	display: flex;
	text-align: left;
    transition: all 0.5s ease;
	opacity: 0;
	transform : translate(10px, -50px);
	z-index:1001;
	margin: 20px 0 0 10px;
}

header .titleArea.title_active {
  opacity: 1;
  transform: translate(0, 0);
}
header .titleArea h1 {
	font-family: "Times New Roman", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 20px;
	text-align: left;
	display: flex;
	align-items: center;
}
header .titleArea h1 span.ttl {
	position: relative;
	padding: 0 20px;
}
header .titleArea h1 span.ttl::before,
header .titleArea h1 span.ttl::after {
	content: '';
	width: 5px;
	height: 10px;
	position: absolute;
}
header .titleArea h1 span.ttl::before {
	top: 0;
	left: 10px;
	border-top: 1px solid #000;
	border-left: 1px solid #000;
}
header .titleArea h1 span.ttl::after {
	bottom: 0;
	right: 10px;
	border-bottom: 1px solid #000;
	border-right: 1px solid #000;
}
header .titleArea h1 span.ss {
	font-size: 75%;
	margin-left: 10px;
	padding-left: 10px;
	border-left: 1px solid #000;
}
header .titleArea img {
	width:auto;
	max-height: 37px;
	margin-right: 15px;
	vertical-align: middle;
}

#overlay {
	width: 100%;
	height:100%;
	background: rgba(255,255,255,0.9);
	position: absolute;
	top:0px;
	z-index:10003;
}

#navBtn {
	width: 60px;
	height: 60px;
	overflow: hidden;
	float: left;
}

.btnBody {
	width: 50px;
	height: 50px;
	display: block;
	cursor: pointer;
	position: absolute;
	left:5px;
	top:5px;
	text-align: center;
	z-index: 10006;
	border:3px solid #000;
	border-radius: 50%;
}

.btnBody span {
	width: 20px;
	height: 1px;
	display: block;
	border-radius: 1px;
	background: #333;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -10px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
}
#navBtn .btnBody span {
}

.btnBody .top {
	-webkit-transform: translateY(-5px);
	-ms-transform: translateY(-5px);
	transform: translateY(-5px);
}

.btnBody .bottom {
	-webkit-transform: translateY(5px);
	-ms-transform: translateY(5px);
	transform: translateY(5px);
}

.btnBody .middle {

}

.nav_open .middle {
	background: rgba(51, 51, 51, 0);
}
.nav_open .top {
	-webkit-transform: rotate(-45deg) translateY(0px);
	-ms-transform: rotate(-45deg) translateY(0px);
	transform: rotate(-45deg) translateY(0px);
}
.nav_open .bottom {
	-webkit-transform: rotate(45deg) translateY(0px);
	-ms-transform: rotate(45deg) translateY(0px);
	transform: rotate(45deg) translateY(0px);
}

#navigation1 {
	padding: 8px 0px;
	list-style-type: none;
	width: 100%;
	z-index:10004;
	position: absolute;
}
#navigation1 ul {
	width: 100%;
	margin: 20px 0px 0px 0px;
}
#navigation1 li {
	color:#666;
	text-align:center;
	font-weight:700;
	font-size:16px;
	line-height:180%;
	list-style: none;
}
#navigation1 li.sns {
	font-size: 20px;
	line-height:20px;
	margin: 9px 5px 0px 0px;
	float: left;
	color:#666;
	display: block;
	text-decoration: none;
}
#navigation1 li a {
	color:#666;
	font-weight: 400;
	display: block;
	text-decoration: none;
	padding: 5px;
	margin: 5px 0px 5px 0px;
}
#navigation1 li a:hover {
	color: #f6a28c;
}

#navBtn2 {
	height: 60px;
	float: right;
}

#navigation2 {
	list-style-type: none;
	margin: 15px 0px 0px 0px;
	position: absolute;
	right:0px;
	top:0px;
	z-index:10006;
}
#navigation2 ul {
	width: 100%;
	margin: 0px 0px 0px 0px;
	z-index:10007;
}
#navigation2 li {
	text-align:center;
	font-size:20px;
	line-height:120%;
	list-style: none;
	display: block;
	float: left;
	margin-right: 5px;
}
#navigation2 li a {
	color: #333;
}

.a_instagram:hover {
	color:#405de6 !important;
}
.a_twitter:hover {
	color:#1da1f2 !important;
}
.a_facebook:hover {
	color:#3b5998 !important;
}
.a_line:hover {
	color:#00c300 !important;	
}
.a_tiktok:hover {
	color:#00c300 !important;	
}

/*
Buttons
*/
.btn {
	border: none;
	display: inline-block;
	vertical-align: middle;
	-webkit-tap-highlight-color: transparent;
	outline: 0;
}

.text_link {
	color:#de6d98;
	color:#333;
	font-size: 14px;
	margin: 5px 0px 5px 0px;
	display: inline-block;
	padding-bottom: 2px;
	position: relative;
}
.text_link:before {
	font-size: 12px;
	color:#999;
	content: "\f101";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-right: 5px;
}
.text_link:after{
	background-color:#de6d98;
	bottom: 0;
	content: '';
	display: block;
	height: 1px;
	left: 0;
	position: absolute;
	transition: .2s all;
	width: 0;
}
.text_link:hover::after {
	color:#ff9999;
	width: 100%;
}

#totop {	font-family: "Times New Roman", serif;
text-align: center;
	position: fixed;
	bottom: 10px;
	right: 10px;
	z-index: 100;
}
#totop a {
	font-family: "Times New Roman", serif;
	font-size: 14px;
	line-height:64px;
	font-weight: 600;
	color: #fff;
	display: block;
	background: #333;
	border: none;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	box-shadow: 0 2px 5px 0 rgba(0,0,0,.26);
}
#totop a:hover {
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-o-transition: all .2s ease;
	color:#fff;
	opacity: .8;
}


footer {
	font-family: "Times New Roman", serif;
	text-align: center;
	width:100%;
	padding:20px 0px 25px 0px;
	background: #f3f2ed;
}

footer p {
	color:#000;
	font-size:14px;
	line-height:150%;
	margin: 10px 0px 10px 0px;
}
footer p a {
	color:#000;
	border-bottom: 1px solid #fff; 
}

.sp {
	display: none;
}
.sp2 {
	display: none;
}
.pc {
	display: block;
}





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

.sp {
	display: none;
}
.sp2 {
	display: block;
}
.sp3 {
	display: block;
}
.pc {
	display: none;
}

}



@media screen and (max-width: 480px) {
/*
header
*/
header {
	height: 50px;
}
header .titleArea {
	margin: 5px 0px 0px 10px;
}
header .titleArea h1 {
	font-size: 16px;
	line-height: 120%;
	display: block;
}
header .titleArea h1 span.ttl {
	position: relative;
	padding: 0 20px;
	margin-left: -10px;
}

header .titleArea h1 span.ss {
	display: none;
}
header .titleArea img {
	display: none;
}

header .titleArea {
	left: 40px;
}

#navBtn {
	width: 50px;
	height: 50px;
}

.btnBody {
	width: 40px;
	height: 40px;
}

.btnBody span {
	width: 20px;
	height: 2px;
	margin-left: -10px;
}

#navigation2 li {
	margin-right: 5px;
}


.sp {
	display: block;
}
.sp2 {
	display: none;
}
.sp3 {
	display: block;
}
.pc {
	display: none;
}

}



/*
*/
header:after, section:after, .contentsBody:after, footer:after, .clearfix:after {
	content: "";
	clear: both;
	display: block;
}
</pre></body></html>