@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:opsz,wght@6..96,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');

/*
font-family: 'Noto Sans JP', sans-serif;
font-family: 'Noto Serif JP', "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS PMincho", serif;
font-family: 'Bodoni Moda', serif;
font-family: 'Archivo', sans-serif;
font-family: 'Archivo Black', sans-serif;
*/

:root {
	--primary-color: #ee86a1;
	--primary-color-rgb: 238, 134, 161;
	--secondary-color: #204fa2;
	--secondary-color-rgb: 32, 79, 162;
	--white-color: #fff;
	--white-color-rgb: 255, 255, 255;
	--black-color: #000;
	--black-color-rgb: 00, 00, 00;
	--sans-jp: "Noto Sans JP", sans-serif;
	--sans-serif-en: "Oswald", sans-serif;
}

html {
	font-size: 62.5%;
	height: 100%;
	overflow-y: scroll;
}

body {
	position: relative;
	background-color: var(--primary-color);
	color: #333;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	line-height: 1.75;
	color: #333;
	width: 100%;
	height: 100%;
	text-size-adjust: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

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

a {
	color: #fff;
	opacity: 1;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

img.fix {
	width: 100%;
	height: auto;
}

figure img {
	display: block;
}

.content-wrap .content-wrap-inner {
	padding: 0 5% 2.5rem;
	position: relative;
}

@media only screen and (min-width: 480px) {
	.content-wrap .content-wrap-inner {
		padding: 0 2.5% 2.5rem;
	}
}

@media only screen and (min-width: 820px) {
	.content-wrap .content-wrap-inner {
		padding: 0 15px 5rem;
		max-width: 1200px;
		margin: 0 auto;
	}
}

#wrap {
	position: relative;
}

/*--------------------------*/
/* Youtube埋め込み*/
/*--------------------------*/
.youtube-area {
	margin-top: 2rem;
	padding-top: 2rem;
}

.youtube-area .youtube-area-inner span {
	position: relative;
	display: block;
	width: 100%;
	padding-top: 56.25%;
}

.youtube-area .youtube-area-inner span iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}

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


/*--------------------------*/
/* ヘッダー */
/*--------------------------*/
.header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 90px;
	z-index: 9995;
}

#gravure-page .header {
	background-color: rgba(44, 43, 43, 0.9);
}

.header-inner {
	position: relative;
	display: flex;
	width: 100%;
	height: 100%;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
	justify-content: space-between;
	align-items: flex-start;
}

.header-inner .logo,
.header-inner .logo h1 {
	position: absolute;
	top: 0px;
	left: 10px;
	width: auto;
	max-width: 160px;
	height: 90px;
	z-index: 9994;
}

.header-inner .logo h1 img {
	display: block;
	margin-top: 10px;
	width: auto;
	height: 80px;
}

.header-inner .sns-link ul {
	display: flex;
	justify-content: space-around;
	margin: 30px 10px;
}

.header-inner .sns-link ul li a i {
	display: block;
	font-size: 3rem;
	color: var(--black-color);
}

.header-inner .sns-link ul li span {
	display: none;
}

@media only screen and (min-width: 480px) {

	.header-inner .logo,
	.header-inner .logo h1 {
		left: 15px;
	}
}

#menu-button {
	position: fixed;
	top: 15px;
	right: 10px;
	display: grid;
	place-items: center;
	place-content: center;
	width: 50px;
	height: 60px;
	border: none;
	cursor: pointer;
	z-index: 9999;
}

.bar,
.bar::before,
.bar::after {
	width: 36px;
	height: 3px;
	background-color: var(--black-color);
	border-radius: 2px;
	transition: transform 0.5s ease-out;
}

.bar {
	display: grid;
}

.bar::before, .bar::after {
	content: "";
	grid-area: 1/1;
}

.bar::before {
	transform: translateY(-12px);
}

.bar::after {
	transform: translateY(12px);
}

.menu-open .bar {
	background-color: transparent;
}

.menu-open .bar::before {
	transform: rotate(45deg);
}

.menu-open .bar::after {
	transform: rotate(-45deg);
}

.menu-label {
	transform: translateY(16px);
	font-size: 12px;
	color: var(--black-color);
	font-weight: 600;
	font-style: normal;
}

#menu {
	position: fixed;
	width: 100%;
	height: 100%;
	background: rgba(var(--white-color-rgb), 1);
	left: 0;
	top: 0;
	z-index: 9998;
	overflow-y: auto;
	transform: translateY(-100%);
	transition: transform 0.5s ease-out;
}

#menu .gnavi-main {
	margin-top: 110px;
	border-top: 1px solid rgba(var(--black-color-rgb), 0.25);
	text-align: left;
}

#menu .gnavi-main li {
	position: relative;
}

#menu .gnavi-main li a {
	display: block;
	font-size: 1.5rem;
	font-weight: 400;
	padding: 1.5rem 15px;
	border-bottom: 1px solid rgba(var(--black-color-rgb), 0.25);
	color: var(--black-color);
}

#menu .gnavi-main li::before, #menu .gnavi-main li::after {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	right: 15px;
	width: 12px;
	height: 2px;
	border-radius: 9999px;
	background-color: rgba(var(--black-color-rgb), 0.35);
	transform-origin: calc(100% - 1px) 50%;
}

#menu .gnavi-main li::before {
	transform: rotate(45deg);
}

#menu .gnavi-main li::after {
	transform: rotate(-45deg);
}

#menu .gnavi-main li a.img-link img {
	display: block;
	max-width: 150px;
	margin: 0.5rem 0;
}

.menu-open #menu {
	transform: translateY(0);
}

@media only screen and (min-width: 480px) {
	#menu-button {
		right: 15px;
	}

	#menu {
		left: auto;
		right: 0;
		width: 400px;
		overflow-y: auto;
		transform: translateY(0);
		transform: translateX(420px);
		box-shadow: -6px 0px 6px -3px rgba(0, 0, 0, 0.35);
	}

	#menu .gnavi-main {
		margin-top: 90px;
	}

	#menu .gnavi-main li a {
		padding: 2rem 20px 2rem 20px;
	}

	#menu .gnavi-main li::before, #menu .gnavi-main li::after {
		right: 20px;
	}

	.menu-open #menu {
		transform: translateX(0);
	}
}

@media only screen and (min-width: 768px) {
	#menu-button {
		right: 25px;
	}

	#menu .gnavi-main li a:hover {
		background-color: rgba(var(--black-color-rgb), 0.05);
	}
}

/*--------------------------*/
/* ページTOPボタン */
/*--------------------------*/
#page-top {
	position: fixed;
	right: 15px;
	bottom: 15px;
	z-index: 900;
}

#page-top a {
	position: relative;
	display: block;
	width: 42px;
	height: 42px;
	text-decoration: none;
	background-color: rgba(0, 0, 0, 0.85);
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

#page-top a::before {
	position: absolute;
	content: '';
	top: 50%;
	left: 50%;
	width: 14px;
	height: 14px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: translateY(-30%) translateX(-50%) rotate(-45deg);
	transform: translateY(-30%) translateX(-50%) rotate(-45deg);
}

#page-top a:hover {
	text-decoration: none;
	opacity: .5;
}

@media only screen and (min-width: 480px) {
	#page-top a {
		width: 58px;
		height: 58px;
	}

	#page-top a::before {
		width: 16px;
		height: 16px;
	}
}

/*--------------------------*/
/* フッター */
/*--------------------------*/
#footer {
	background-color: #fff;
	padding: 45px 0;
}

#footer h2 {
	width: 40vw;
	max-width: 220px;
	margin: 0 auto 20px;
}

#footer .copy {
	text-align: center;
	font-size: 1.1rem;
	color: #999;
}

#footer .polycy1 ul {
	display: flex;
	justify-content: center;
	gap: 3.5rem;
	font-size: 1.3rem;
	margin-top: 3.5rem;
	margin-bottom: 3.5rem;
}

#footer .polycy1 ul li {
	cursor: pointer;
}

@media only screen and (min-width: 480px) {
	#footer .copy {
		font-size: 1.2rem;
	}
}

@media only screen and (min-width: 768px) {
	#footer {
		padding: 75px 0;
	}
}

/*-------------------------------
		sitepolicy
--------------------------------*/
.sitepolicy_bg {
	background: rgba(247, 248, 248, 1);
	position: fixed;
	width: 100%;
	height: 100%;
	margin: 0;
	padding-bottom: 75px;
	top: 0;
	left: -750px;
	display: block;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	z-index: 9975;
	font-size: 1.5rem;
}

.policyFrame {
	position: relative;
	width: 100%;
	max-width: 1050px;
	height: auto;
	margin: 0 auto;
	padding: 70px 0 0;
}

.pc_show {
	display: none;
}

.sp_show {
	display: block;
}

.sitepolicy ul li {
	text-indent: 1rem;
}

.sp_frame90 {
	width: 90%;
	margin: 0 auto;
}

.sitepolicy_bg .text11,
.sitepolicy_bg .text13 {
	font-size: 1.4rem !important;
}

.sitepolicy_bg .text15 {
	font-size: 1.3em !important;
}

.sitepolicy_bg .text18 {
	font-size: 1.4em !important;
}

.sitepolicy_bg .text25,
.sitepolicy_bg .text30 {
	font-size: 1.6em !important;
}

.sitepolicy_bg .padding_b20 {
	padding-bottom: 1.5rem;
}

.sitepolicy_bg p {
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.sitepolicy_bg a {
	color: #333;
}

.closePolicy {
	position: absolute;
	width: 58px;
	height: 58px;
	top: 15px;
	right: 10px;
	cursor: pointer;
}

@media only screen and (min-width: 768px) {
	.sitepolicy_bg {
		position: absolute;
		height: auto;
		left: 0;
		top: auto;
		bottom: -1000px;
		display: none;
	}

	.policyFrame {
		padding: 35px 0 0;
	}

	.sitepolicy {
		min-height: 50vh;
		max-height: 75vh;
		padding: 50px 0;
		width: 100%;
	}

	.sitepolicy_bg ul li {
		text-indent: 1rem;
	}

	.sp_frame90 {
		width: 100%;
	}

	.pc_show {
		display: block;
	}

	.sp_show {
		display: none;
	}

	.closePolicy {
		position: absolute;
		width: 35px;
		height: 35px;
		top: 0;
		right: 0;
		cursor: pointer;
	}
}