@charset "UTF-8";

/* base (reset)
---------------------------------------------------*/
body {
	width: 100%;
	height: 100%;
	margin: 0 auto;
	padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
	padding: 0;
	font-weight: 400;
}

ul,
ol,
dl,
dt,
dd {
	margin: 0;
	padding: 0;
}

ol,
li {
	list-style: none;
}

img {
	border: none;
	line-height: 0;
	font-size: 0;
	vertical-align: middle;
	max-width:100%;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

/* ---------- */
a {
	margin: 0;
	padding: 0;
	font-size: inherit;
	background: transparent;
}

th,
td {
	font-style: normal;
	font-weight: normal;
	font-size: inherit;
	empty-cells: show;
}

input,
select {
	vertical-align: middle;
}

input,
textarea,
select {
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	/*-webkit-appearance: none;*/
	border-radius: 0;
}

pre {
	white-space: -moz-pre-wrap;/* Mozilla */
	white-space: -o-pre-wrap;/* Opera 7 */
	white-space: pre-wrap;/* CSS3 */
	word-wrap: break-word;/* IE 5.5+ */
}


/* color
---------------------------------------------------*/
:root {
	--main-color: #F36ECB;
	--primary-color: #000;
	--secondary-color: #f7c5e8;
	--background-color: #f9f9f9;
	--font-color: #666666;
	--white-color: #ffffff;
	--black-color: #000000;
	--gray-color: #cccccc;
	--red-color: #d30038;
	--blue-color: #106ad3;
	--orange-color: #f47208;

	--font-size-xl: 48px;
	--font-size-x: 36px;
	--font-size-l: 24px;
	--font-size-m: 18px;
	--font-size-n: 16px;
	--font-size-s: 12px;
}

/* < 768px */
@media screen and (max-width: 768px) {
	:root {
		--font-size-xl: 7.5vw; /* 48px; */
		--font-size-x: 5.625vw; /* 36px; */
		--font-size-l: 4.375vw; /* 28px; */
		--font-size-m: 3.125vw; /* 20px; */
		--font-size-n: 2.8125vw; /* 18px; */
		--font-size-s: 2.5vw; /* 16px; */
	}
}

/* Selected Text
---------------------------------------------------*/
::selection {
	background: #191919;
	/* Safari */
	color: #FFFFFF;
}


/* HTML
---------------------------------------------------*/
html {
	margin: 0;
	padding: 0;
	height: 100%;
	font-size: 62.5%;
	overflow-y: scroll;
}

body {
	position: relative;
	width: 100%;
	line-height: 1;
	color: var(--font-color);
	font-size: var(--font-size-n);
	font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', arial, helvetica, sans-serif;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	background-color: var(--main-color);
}

*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:before,
:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}

.spno {display:block;}
br.spno {display: inline;}
.pcno {display:none;}
br.pcno {display:none;}

svg {
	display: block;
	width: 100%;
	height: auto;
	fill: var(--black-color);
}

.jp-maru {
	font-family: "Kosugi Maru", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.en {
	font-family: "DM Serif Text", serif;
	font-weight: 400;
	font-style: normal;
}

/* 768px */
@media screen and (min-width:1px) and (max-width: 768px) {
	body {
		-webkit-text-size-adjust: 100%;
	}
	.pcno {display: block;}
	br.pcno {display: inline;}
	.spno {display: none;}
	br.spno {display: none;}
}


/* link
---------------------------------------------------*/
a {
	text-decoration: none;
}
a:link,
a:visited,
a:active {
	color: #333;
}
a:hover {
	color: #333;
}
a.u {
	text-decoration: underline;
}
a,
.hover {
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.hover:hover {
	opacity: 0.8;
	filter: alpha(opacity=80);
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

@media screen and (min-width: 769px) {
	a[href^="tel:"] {
		pointer-events: none;
		cursor: default;
	}
}

/* clearfix
---------------------------------------------------*/
.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: '';
	clear: both;
	height: 0;
}
.clearfix {
	min-height: 1px;
}

* html .clearfix {
	height: 1px;
	/**/
	height: auto;
	overflow: hidden;
	/**/
}
.clearfix {
	zoom: 1;
}


/* wrapper
---------------------------------------------------*/
#wrapper {
	position: relative;
	width: 100%;
	background-color: #fff;
	margin: 0 auto;
}

#main {
	position: relative;
	background-color: #fff;
	z-index: 1;
}

/* contents-wrap */
.contents-wrap {
	position: relative;
	width: 96%;
	max-width: 1000px;
	margin: 0 auto;
}

/* 900 */
@media screen and (max-width: 768px) {
	.contents-wrap {
		width: 93.75vw;
	}
}


/* Header
---------------------------------------------------*/
#Header {
	position: relative;
	width: 100%;
	z-index: 999;
	margin-bottom: 40px;
}
/* inner */
#Header .inner {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	background-color: var(--main-color);
	box-shadow: 0 0 3px 0 rgb(204, 204, 204);
	margin: 0 auto;
	padding: 10px 3%;
}
#Header .logo {
	display: flex;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
	width: 156px;
}
#Header .logo img {
	width: 100%;
}
#Header .information {
	color: var(--white-color);
}
#Header .information .name {
	font-size: var(--font-size-n);
	font-weight: bold;
	margin-bottom: 20px;
}
#Header .information .address {
	font-size: var(--font-size-l);
	font-weight: bold;
	margin-bottom: 10px;
}
#Header .information .tel {
	font-size: var(--font-size-x);
	font-weight: bold;
}
#Header .information .tel a {
	color: var(--white-color);
}
#Header .information .tel span {
	font-size: 0.6em;
}

/* g-nav */
#g-nav {
	width: 100%;
}
#g-nav ul.menu {
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 1000px;
	margin: 0 auto;
}
#g-nav ul.menu > li {
	flex: 1;
	position: relative;
	padding-left: 1px;
}
#g-nav ul.menu > li:last-of-type {
	padding-right: 1px;
}
#g-nav ul.menu > li::before,
#g-nav ul.menu > li:last-of-type::after {
	position: absolute;
	content: '';
	top: 50%;
	transform: translate(0, -50%);
	width: 1px;
	height: 60%;
	background-color: var(--main-color);
}
#g-nav ul.menu > li::before {
	left: 0;
}
#g-nav ul.menu > li:last-of-type::after {
	right: 0;
}
#g-nav ul.menu > li > a {
	display: block;
	text-align: center;
	color: var(--main-color);
	font-size: var(--font-size-n);
	letter-spacing: 0.1em;
	white-space: nowrap;
	padding: 1.5em 0.5em;
}
#g-nav ul.menu > li > a:has(> :nth-child(2)) span:first-of-type {
	display: inline;
}
#g-nav ul.menu > li > a:has(> :nth-child(2)) span:last-of-type {
	display: none;
}
#g-nav ul.menu > li > a:hover {
	color: var(--white-color);
	background-color: var(--secondary-color);
}
#g-nav ul.menu > li > a:has(> :nth-child(2)):hover span:first-of-type {
	display: none;
}
#g-nav ul.menu > li > a:has(> :nth-child(2)):hover span:last-of-type {
	display: inline;
}


/* btnMenu */
#btnMenu {
	display: none;
	position: absolute;
	top: 0;
	right: 0;
	width: 80px;
	height: 80px;
	cursor: pointer;
	z-index: 999;
}
#btnMenu .menu-trigger {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 40px;
	height: 40px;
	z-index: 10;
}
#btnMenu .menu-trigger,
#btnMenu .menu-trigger span {
	transition: all 0.5s;
	box-sizing: border-box;
}
#btnMenu .menu-trigger span {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 4px;
	background-color: var(--white-color);
	border-radius: 2px;
}
#btnMenu .menu-trigger span:nth-of-type(1) {
	width: 100%;
	top: 0;
}
#btnMenu .menu-trigger span:nth-of-type(2) {
	top: calc(50% - 2px);
}
#btnMenu .menu-trigger span:nth-of-type(2):after {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background-color: var(--white-color);
	border-radius: 2px;
	transition: all 0.15s;
}
#btnMenu .menu-trigger span:nth-of-type(3) {
	top: auto;
	bottom: 0;
}
#btnMenu .menu-trigger.active span {
	background-color: var(--white-color);
}
#btnMenu .menu-trigger.active span:nth-of-type(1) {
	transform: translate(50%) scale(0);
}
#btnMenu .menu-trigger.active span:nth-of-type(2) {
	transform: rotate(45deg);
}
#btnMenu .menu-trigger.active span:nth-of-type(2)::after {
	transform: rotate(90deg);
	background-color: var(--white-color);
}
#btnMenu .menu-trigger.active span:nth-of-type(3) {
	transform: translate(-50%) scale(0);
}

/* 768px */
@media screen and (min-width:1px) and (max-width: 768px) {
	/* btnMenu */
	#btnMenu {
		display: block;
	}

	#Header {
		margin-bottom: 6.25vw;
	}
	#Header .inner {
		height: 20.3125vw;
		justify-content: flex-start;
		padding: 0;
	}
	#Header .inner .logo {
		width: 18.75vw;
		margin: 0 3.125vw;
	}
	#Header .information {
		width: 59.375vw;
		color: var(--white-color);
		text-align: right;
	}
	#Header .information .name {
		font-size: var(--font-size-s);
		margin-bottom: 1.5625vw;
	}
	#Header .information .address {
		font-size: var(--font-size-m);
		margin-bottom: 1.5625vw;
	}
	#Header .information .tel {
		font-size: var(--font-size-l);
	}


	/* btnMenu */
	#btnMenu {
		width: 12.5vw;
		height: 100%;
	}
	#btnMenu .menu-trigger {
		width: 6.875vw;
		height: 5.625vw;
	}

	/* g-nav */
	#g-nav {
		display: none;
		position: absolute;
		top: 20.3125vw;
		left: 0;
		width: 100%;
		background-color: rgba(243, 110, 203, 0.9);
	}
	#g-nav ul.menu {
		display: block;
		border-top: 1px solid #fff;
	}
	#g-nav ul.menu > li {
		border-bottom: 1px solid #fff;
		padding: 0;
	}
	#g-nav ul.menu > li:last-of-type {
		padding: 0;
	}
	#g-nav ul.menu > li::before,
	#g-nav ul.menu > li:last-of-type::after {
		display: none;
	}
	#g-nav ul.menu > li > a {
		position: relative;
		line-height: 1em;
		text-align: left;
		color: var(--white-color);
		font-size: var(--font-size-l);
		padding: 4.6875vw;
	}
	#g-nav ul.menu > li > a:after {
		position: absolute;
		content: '';
		top: 50%;
		right: 4.6875vw;
		transform: translate(0, -50%) rotate(45deg);
		width: 1.875vw;
		height: 1.875vw;
		border-top: 0.46875vw solid var(--white-color);
		border-right: 0.46875vw solid var(--white-color);
	}
}


/* Footer
---------------------------------------------------*/
#pageTop {
	position: absolute;
	width: 60px;
	height: 60px;
	right: 5px;
	top: 5px;
	background-color: var(--white-color);
	cursor: pointer;
	text-indent: -999px;
	overflow: hidden;
}
#pageTop:after {
	position: absolute;
	content: "";
	width: 10px;
	height: 10px;
	top: 50%;
	left: 50%;
	border-top: 3px solid var(--main-color);
	border-right: 3px solid var(--main-color);
	transform: translate(-48%, -48%) rotate(-45deg);
}

#Footer {
	position: relative;
	background-color: var(--main-color);
	padding-top: 50px;
	margin-top: 120px;
	z-index: 1;
}

/* navigation */
#Footer .navigation {
	margin: 0 auto 40px;
}
#Footer .navigation .logo {
	text-align: center;
	margin-bottom: 10px;
}
#Footer .navigation .name {
	color: var(--white-color);
	text-align: center;
	margin-bottom: 20px;
}
/* information */
#Footer .information {
	line-height: 2em;
	text-align: center;
	color: var(--white-color);
	font-size: var(--font-size-s);
	letter-spacing: 0.08em;
}
#Footer .information .number,
#Footer .information .number a {
	color: var(--white-color);
}
/* menu */
#Footer ul.menu {
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	-webkit-justify-content: center;
	width: 50%;
	letter-spacing: 0.08em;
	margin: 0 auto 40px;
}
#Footer ul.menu li {
	margin-right: 2em;
}
#Footer ul.menu li:last-child {
	margin-right: 0;
}
#Footer ul.menu li a {
	color: var(--white-color);
}
#Footer ul.menu li a:hover {
	text-decoration: underline;
}
#Footer .copy {
	text-align: center;
	color: #fff;
	border-top: 1px solid var(--white-color);
	background-color: var(--main-color);
	font-size: var(--font-size-s);
	padding: 2em 0;
}

/* 768px */
@media screen and (min-width:1px) and (max-width: 768px) {
	#pageTop {
		background-color: var(--secondary-color);
		position: relative;
		right: 0;
		top: 0;
		width: 100%;
		height: 14.625vw;
		margin-bottom: 9.375vw;
	}
	#pageTop:after {
		width: 3.125vw;
		height: 3.125vw;
	}

	#Footer {
		padding-top: 0;
		margin-top: 18.75vw;
	}

	/* navigation */
	#Footer .navigation {
		margin: 0 auto 6.25vw;
	}
	#Footer .navigation .logo {
		margin-bottom: 3.125vw;
	}
	#Footer .navigation .logo img {
		width: 24.375vw;
	}
	#Footer .navigation .name {
		margin-bottom: 3.125vw;
	}

	/* menu */
	#Footer ul.menu {
		display: block;
		width: 100%;
		margin-bottom: 0;
	}
	#Footer ul.menu > li {
		border-top: 1px solid var(--white-color);
		margin-right: 0;
	}
	#Footer ul.menu li a {
		position: relative;
		display: block;
		padding: 3.125vw 4.6875vw;
	}
	#Footer ul.menu > li > a:after {
		position: absolute;
		content: '';
		top: 50%;
		right: 4.6875vw;
		transform: translate(0, -50%) rotate(45deg);
		width: 1.5625vw;
		height: 1.5625vw;
		border-top: 0.3125vw solid var(--white-color);
		border-right: 0.3125vw solid var(--white-color);
	}
}


/* Common
---------------------------------------------------*/
ul.disc > li {
	list-style-type: disc;
	margin-left: 1.5em;
	text-indent: 0;
}
ol.decimal > li {
	list-style-type: decimal;
	margin-left: 1.5em;
	text-indent: 0;
}

/* ttl-section */
.ttl-section {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: var(--font-size-n);
	border-top: 1px solid var(--main-color);
	border-bottom: 1px solid var(--main-color);
	padding: 0.8em 0.5em;
	margin-bottom: 20px;
}
.ttl-section span {
	position: relative;
	color: var(--main-color);
}
.ttl-section span.en {
	font-size: 1.4em;
	font-weight: 700;
	letter-spacing: 0.1em;
}

/* ttl-content */
.ttl-content {
	position: relative;
	color: var(--black-color);
	font-size: var(--font-size-m);
	font-weight: 500;
	margin-bottom: 1em;
	padding: 0.5em 1em 0.5em 1.5em;
	letter-spacing: 0.2em;
}
.ttl-content::before {
	position: absolute;
	content: '';
	top: 50%;
	left: 0;
	transform: translate(0, -50%);
	width: 1em;
	height: 1em;
	background-color: var(--black-color);
	clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);

}

/* 768px */
@media screen and (min-width:1px) and (max-width: 768px) {
	/* ttl-section */
	.ttl-section {
		padding: 0.8em 0.5em;
		margin-bottom: 6.25vw;
	}

	/* ttl-content */
	.ttl-content {
		font-size: 4.0625vw;
	}
}


/* table
---------------------------------------------------*/
/* tbl-info */
.tbl-info {
	width: 100%;
	line-height: 2em;
	border: 0;
	border-top: 1px solid var(--secondary-color);
	border-collapse: collapse;
	margin: 0 auto;
	letter-spacing: 0.1em;
}
.tbl-info th {
	width: 20%;
	text-align: left;
	color: var(--main-color);
	font-weight: normal;
	border-bottom: 1px solid var(--secondary-color);
	padding: 1em;
	vertical-align: top;
}
.tbl-info td {
	width: auto;
	border-bottom: 1px solid var(--secondary-color);
	padding: 1em;
	vertical-align: top;
}

/* Below 768px */
@media screen and (max-width: 768px) {
	.tbl-info,
	.tbl-info tr,
	.tbl-info th,
	.tbl-info td,
	.tbl-info tbody {
		display: block;
		width: 100%;
	}
	.tbl-info {
		/*font-size: 4.375vw;*/
		font-size: var(--font-size-m);
	}
	.tbl-info th {
		border-bottom: 0;
		/*padding: 4.6875vw 0 1.5625vw;*/
		padding: 1em 1em 0.5em 1em;
	}
	.tbl-info td {
		/*font-size: 3.75vw;*/
		/*padding: 0 0 4.6875vw;*/
		padding: 0 1em 1em 1em;
	}
}


/* Slider
---------------------------------------------------*/
.slick-slider {
	position: relative;
	display: none;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}
.slick-slider.slick-initialized {
	display: block;
}
.slick-list {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0;
}
.slick-list:focus {
	outline: none;
}
.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.slick-track {
	position: relative;
	top: 0;
	left: 0;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.slick-track:before,
.slick-track:after {
	display: table;
	content: '';
}
.slick-track:after {
	clear: both;
}
.slick-loading .slick-track {
	visibility: hidden;
}
.slick-slide {
	display: none;
	float: left;
	height: 100%;
	min-height: 1px;
}
[dir='rtl'] .slick-slide {
	float: right;
}
.slick-slide img {
	display: block;
}
.slick-slide.slick-loading img {
	display: none;
}
.slick-slide.dragging img {
	pointer-events: none;
}
.slick-initialized .slick-slide {
	display: block;
}
.slick-loading .slick-slide {
	visibility: hidden;
}
.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
	display: none;
}

/* Slider */
.slick-loading .slick-list {
	background: #fff;
}
/* Arrows */
.slick-prev,
.slick-next {
	font-size: 0;
	line-height: 0;
	position: absolute;
	top: 50%;
	display: block;
	width: 20px;
	height: 20px;
	padding: 0;
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	cursor: pointer;
	color: transparent;
	border: none;
	outline: none;
	background: transparent;
	z-index: 1;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
	outline: none;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
	opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
	opacity: .25;
}
.slick-prev:before,
.slick-next:before {
	display: block;
	content: '';
	width: 20px;
	height: 20px;
	border-top: 1px solid var(--main-color);
	opacity: .75;
}
.slick-prev {
	left: 20px;
}
.slick-prev:before {
	border-left: 1px solid var(--main-color);
	transform: rotate(-45deg);
}
.slick-next {
	right: 20px;
}
.slick-next:before {
	border-right: 1px solid var(--main-color);
	transform: rotate(45deg);
}

/* Dots */
.slick-dots {
	position: absolute;
	bottom: -30px;
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	justify-content: center;
	-webkit-justify-content: center;
	-webkit-align-items: center;
	align-items: center;
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
}
.slick-dots li {
	position: relative;
	width: 10px;
	height: 10px;
	margin: 0 10px;
	padding: 0;
	cursor: pointer;
}
.slick-dots li button {
	font-size: 0;
	line-height: 0;
	display: block;
	width: 10px;
	height: 10px;
	padding: 0;
	cursor: pointer;
	color: transparent;
	border: 0;
	outline: none;
	background: #ccc;
	border-radius: 50%;
	-webkit-border-radius: 50%;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
	outline: none;
}
.slick-dots li.slick-active button {
	background-color: var(--secondary-color);
}

/* Below 768px */
@media screen and (min-width:1px) and (max-width: 768px) {
	/* Dots */
	.slick-dots {
		bottom: -6.25vw;
	}
	.slick-dots li {
		width: 1.875vw;
		height: 1.875vw;
		margin: 0 1.5625vw;
	}
	.slick-dots li button {
		width: 1.875vw;
		height: 1.875vw;
	}
}
