@charset "utf-8";

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
共通
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
リセットCSS
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
* {
	box-shadow: none;
	outline: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

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

html, body, div, span, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, address, cite, em, small, img, picture, dl, dt, dd, ol, ul, li, label, fieldset, legend, table, tr, th, td, hr, input, textarea,
main, article, aside, details, figure, figcaption, header, footer, hgroup, menu, nav, section, time { 
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
	font-style: inherit;
	font-size: 100%;
	vertical-align: baseline;
}

iframe, cite, main, article, aside, details, figure, figcaption, header, footer, hgroup, menu, nav, section, picture, audio, video { 
	display: block;
}

body {
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

a {
	display: inline-block;
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	image-rendering: -webkit-optimize-contrast;
}

svg {
	overflow: hidden;
	max-width: 100%;
	vertical-align: middle;
}

ol, ul {
	list-style: none;
	list-style-type: none;
}

table {
	border-spacing: 0;
}

input, textarea, select, button {
	border: 0;
	border-radius: inherit;
	background: none;
	color: inherit;
	font-weight: inherit;
	font-size: inherit;
	font-family: inherit;
	line-height: inherit;
	letter-spacing: inherit;
}

textarea {
	overflow: auto;
}

input:not([type="checkbox"]):not([type="radio"]), textarea, button {
	-webkit-appearance: none;
}

time {
	display: inline-block;
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ベース
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
:root {
	--color_main:       #f789a5;
	--color_main_rgb:   247, 137, 165;
	--color_main_light: #fbd9e2;
	--font_main:        "Noto Sans CJK JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "BIZ UDPGothic", Meiryo, sans-serif;
	--font_english:     Lato, "Helvetica Neue", Arial, Roboto, sans-serif;

	--opacity:          0.7;
	--content-width:    1080px;
	--padding:          6.6%;
	--transition:       0.3s ease-in-out;
}

@media (min-width: 768px) {
:root {
	--padding:          30px;
}
}

@font-face {
	font-family: "Hiragino Sans";
	src: local("HiraginoSans-W3");
	font-weight: 400;
}

@font-face {
	font-family: "Hiragino Sans";
	src: local("HiraginoSans-W4");
	font-weight: 500;
}

@font-face {
	font-family: "Hiragino Sans";
	src: local("HiraginoSans-W5");
	font-weight: 600;
}

@font-face {
	font-family: "Hiragino Sans";
	src: local("HiraginoSans-W6");
	font-weight: 700;
}

html {
	font-size: 62.5%;
}

body {
	overflow: hidden scroll;
	color: #4b4b4b;
	font-size: 1.3em;
	font-family: var(--font_main);
	line-height: 1.6;
	letter-spacing: 0.075em;
	font-feature-settings: "palt";
}

main {
	overflow: hidden;
}

section,
.section {
	padding: 50px 0;
}

.inner {
	max-width: calc(var(--content-width) + var(--padding) * 2);
	margin: 0 auto;
	padding: 0 var(--padding);
}

span:not([class]) {
	display: inline-block;
}

h1,
h2,
h3 {
	line-height: 1.4;
}

p:not([class]) + p:not([class]) {
	margin-top: 1.5em;
}

a,
a::before,
a::after {
	transition: var(--transition);
}

a[href^="http"] {
	word-break: break-all;
}

@media (min-width: 768px) {
body {
	font-size: 1.6em;
}

section,
.section {
	padding: 105px 0;
}

a[href^="tel:"] {
	pointer-events: none;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
アニメーション
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
@keyframes fade {
0% {
	opacity: 0;
}

100% {
	opacity: 1;
}
}

@keyframes fade-up {
0% {
	opacity: 0;
	transform: translateY(30px);
}

100% {
	opacity: 1;
	transform: translateY(0);
}
}

@keyframes fade-down {
0% {
	opacity: 0;
	transform: translateY(-30px);
}

100% {
	opacity: 1;
	transform: translateY(0);
}
}

@keyframes fade-right {
0% {
	opacity: 0;
	transform: translateX(30px);
}

100% {
	opacity: 1;
	transform: translateX(0);
}
}

@keyframes fade-left {
0% {
	opacity: 0;
	transform: translateX(-30px);
}

100% {
	opacity: 1;
	transform: translateX(0);
}
}

@keyframes fade-zoom-in {
0% {
	opacity: 0;
	transform: scale(0.9);
}

100% {
	opacity: 1;
	transform: scale(1);
}
}

@keyframes fade-zoom-out {
0% {
	opacity: 0;
	transform: scale(1.1);
}

100% {
	opacity: 1;
	transform: scale(1);
}
}

@keyframes show-bottom {
0% {
	-webkit-clip-path: inset(100% 0 0 0);
	clip-path: inset(100% 0 0 0);
}

100% {
	-webkit-clip-path: inset(0);
	clip-path: inset(0);
}
}

@keyframes show-left {
0% {
	-webkit-clip-path: inset(0 100% 0 0);
	clip-path: inset(0 100% 0 0);
}

100% {
	-webkit-clip-path: inset(0);
	clip-path: inset(0);
}
}

.animation {
	animation-duration: 0.6s;
	animation-timing-function: ease-out;
	animation-delay: 0.3s;
	animation-fill-mode: both;
}

.fade,
.fade-up,
.fade-down,
.fade-right,
.fade-left,
.fade-zoom-in,
.fade-zoom-out {
	opacity: 0;
}

.show-bottom {
	-webkit-clip-path: inset(100% 0 0 0);
	clip-path: inset(100% 0 0 0);
}

.show-left {
	-webkit-clip-path: inset(0 100% 0 0);
	clip-path: inset(0 100% 0 0);
}

.load .animation.fade {
	animation-name: fade;
}

.load .animation.fade-up {
	animation-name: fade-up;
}

.load .animation.fade-down {
	animation-name: fade-down;
}

.load .animation.fade-right {
	animation-name: fade-right;
}

.load .animation.fade-left {
	animation-name: fade-left;
}

.load .animation.fade-zoom-in {
	animation-name: fade-zoom-in;
}

.load .animation.fade-zoom-out {
	animation-name: fade-zoom-out;
}

.load .animation.show-bottom {
	animation-name: show-bottom;
}

.load .animation.show-left {
	animation-name: show-left;
}

.delay05 {
	animation-delay: 0.5s;
}

.delay06 {
	animation-delay: 0.6s;
}

.delay07 {
	animation-delay: 0.7s;
}

.delay09 {
	animation-delay: 0.9s;
}

.delay12 {
	animation-delay: 1.2s;
}

@media (min-width: 768px) {
@keyframes fade-right {
0% {
	opacity: 0;
	transform: translateX(40px);
}

100% {
	opacity: 1;
	transform: translateX(0);
}
}

@keyframes fade-left {
0% {
	opacity: 0;
	transform: translateX(-40px);
}

100% {
	opacity: 1;
	transform: translateX(0);
}
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
見出し
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.heading_section {
	margin-bottom: 30px;
	color: var(--color_main);
	font-size: 4.5rem;
	font-family: var(--font_english);
	line-height: 1;
	letter-spacing: 0.04em;
	text-align: center;
}

.heading_subsection {
	margin-bottom: 25px;
	padding: 0.3em;
	background: var(--color_main);
	color: #fff;
	font-size: 2rem;
	text-align: center;
}

@media (min-width: 768px) {
.heading_section {
	margin-bottom: 35px;
	font-size: 7rem;
}

.heading_subsection {
	margin-bottom: 50px;
	font-size: 2.8rem;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
リンク
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.button_white,
.button_pink,
.button_gray {
	display: flex;
	position: relative;
	width: 275px;
	max-width: 100%;
	height: 60px;
	margin: 30px auto 0;
	border: 2px solid var(--color_main);
	border-radius: 50px;
	font-weight: 700;
	font-size: 1.7rem;
	justify-content: center;
	align-items: center;
}
.button_gray {
	border-color: #888;
}
.button_white::after,
.button_pink::after,
.button_gray::after,
 {
	position: absolute;
	top: 0.1em;
	right: 1.5em;
	bottom: 0;
	width: 0.5em;
	height: 0.5em;
	margin: auto;
	border-top: 3px solid;
	border-right: 3px solid;
	content: "";
	transform: rotate(45deg);
}

.button_white:hover::after,
.button_pink:hover::after,
.button_gray:hover::after {
		transform: translateX(4px) rotate(45deg);
}

.button_white {
	background: #fff;
	color: var(--color_main);
}

.button_white:hover {
	background: var(--color_main);
	color: #fff;
}

.button_pink {
	background: var(--color_main);
	color: #fff;
}

.button_pink:hover {
	background: #fff;
	color: var(--color_main);
}

.button_gray {
	background: #888;
	color: #fff;
}

.button_gray:hover {
	background: #fff;
	color: #888;
}

@media (min-width: 768px) {
.button_white,
.button_pink,
.button_gray {
	width: 390px;
	height: 86px;
	margin-top: 50px;
	font-size: 2.4rem;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
コンポーネント
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.description_section {
	margin-bottom: 35px;
	font-size: 1.8rem;
	text-align: center;
}

.scroll-x {
	overflow-x: auto;
	-ms-overflow-style: none;
	scrollbar-width: none; 
	-webkit-overflow-scrolling: touch;
	user-select: none;
}

.scroll-x::-webkit-scrollbar {
	display: none;
}

.scroll-x > *::after {
	padding-right: 0.1px;
	content: "";
}

@media (min-width: 768px) {
.description_section {
	margin-bottom: 60px;
	font-size: 2rem;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ローダー
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.loader {
	display: flex;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 10;
	background: #fff;
	transition: 0.8s ease-in-out;
	justify-content: center;
	align-items: center;
}

.loader.hide {
	visibility: hidden;
	opacity: 0;
}

.loader-bar {
	position: relative;
	width: 80px;
	height: 80px;
}

@keyframes loader {
0%,
100% { 
	transform: scale(0);
} 50% { 
	transform: scale(1);
}
}

.loader-bar::before,
.loader-bar::after {
	opacity: 0.3;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: 50%;
	background: var(--color_main);
	content: "";
	animation: loader 2s ease-in-out infinite;
}

.loader-bar::after {
	animation-delay: -1s;
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ヘッダー
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
header {
	position: relative;
	z-index: 3;
	height: 60px;
}

.header-inner {
	display: flex;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	max-width: none;
	height: 60px;
	box-shadow: 0 4px 19px rgba(var(--color_main_rgb), 0.07);
	background: #fff;
	justify-content: space-between;
	align-items: center;
}

.header-nct-logo:hover {
	opacity: var(--opacity);
}

.header-nav {
	position: fixed;
	overflow-y: auto;
	visibility: hidden;
	opacity: 0;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 55px var(--padding);
	background: #fff;
	transform : scale3d(0.9, 0.9, 0.9);
	transition: var(--transition);
}

header.open .header-nav {
	visibility: visible;
	opacity: 1;
	transform : scale3d(1, 1, 1);
}

.header-nav-inner {
	opacity: 0;
	max-width: var(--content-width);
	margin: 0 auto;
	transition: var(--transition) 0.3s;
}

header.open .header-nav-inner {
	opacity: 1;
}

.header-menu-back {
	display: none;
}

.header-menu-heading {
	margin-bottom: 15px;
	color: var(--color_main);
	font-weight: 700;
	font-size: 3.6rem;
	font-family: var(--font_english);
}

.header-menu-container {
	padding-bottom: 50px;
}

.header-menu-dt {
	margin-bottom: 0.7em;
	color: var(--color_main);
	font-weight: 700;
	font-size: 2.6rem;
	font-family: var(--font_english);
}

.header-menu-dt:not(:first-child) {
	margin-top: 1.2em;
}

.header-menu-dt a:hover {
	opacity: var(--opacity);
}

.header-menu-dd {
	margin: 0 0 1.4em 0.7em;
	font-size: 1.6rem;
}

.header-menu-dd a {
	display: block;
	padding: 4px 2px;
}

.header-menu-dd a:hover {
	color: var(--color_main);
}

.header-menu-ul {
	display: flex;
	margin: 0 -0.2em -0.6em;
	flex-flow: wrap;
	justify-content: center;
}

.header-menu-li {
	min-width: 6em;
	margin: 0 0.2em 0.6em;
}

.header-menu-li a {
	display: block;
	padding: 0.5em;
	border: 1.5px solid var(--color_main);
	border-radius: 25px;
	color: var(--color_main);
	font-weight: 700;
	text-align: center;
}

.header-menu-li a:hover {
	background: var(--color_main);
	color: #fff;
}

.header-toggle {
	position: relative;
	width: 50px;
	height: 50px;
	cursor: pointer;
	transition: var(--transition);
}

.header-toggle:hover {
	opacity: var(--opacity);
}

.header-toggle-bar {
	position: absolute;
	right: 0;
	left: 0;
	width: 28px;
	margin: auto;
	border-top: 2px solid var(--color_main);
	transition: var(--transition);
}

.header-toggle-bar:nth-child(1) {
	top: 14px;
}

.header-toggle-bar:nth-child(2) {
	top: 24px;
}

.header-toggle-bar:nth-child(3) {
	top: 34px;
}

header.open .header-toggle-bar:nth-child(1) {
	top: 24px;
	transform: rotate(-45deg);
}

header.open .header-toggle-bar:nth-child(2) {
	transform: scaleX(0);
}

header.open .header-toggle-bar:nth-child(3) {
	top: 24px;
	transform: rotate(45deg);
}

.header-overlay {
	visibility: hidden;
	opacity: 0;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	background: var(--color_main);
	transition: var(--transition);
}

.header-overlay.show {
	visibility: visible;
	opacity: 0.1;
}

@media (min-width: 768px) {
header {
	height: 70px;
}

.header-inner {
	height: 70px;
}

.header-nav {
	top: 70px;
}

.header-nav-inner {
	display: flex;
}

.header-menu-heading {
	margin-bottom: 0.8em;
	font-size: 3rem;
}

.header-menu-dl,
.header-menu-ul {
	margin-left: 1.5em;
}

.header-menu-dt {
	font-size: 2rem;
}

.header-menu-dd,
.header-menu-li {
	font-size: 1.4rem;
}

.header-menu-lineup {
	margin-right: 10%;
}

.header-menu-member {
	flex: 1;
}

.header-toggle-bar {
	width: 38px;
}

.header-toggle-bar:nth-child(1) {
	top: 10px;
}

.header-toggle-bar:nth-child(3) {
	top: 38px;
}
}

@media (max-width: 767.9px) {
.header-inner {
	padding: 0 10px 0 20px;
}

.header-nct-logo img {
	width: 105px;
}

.header-nav-inner {
	position: relative;
	padding-top: 42px;
}

.header-menu-back {
	margin-bottom: 0.5em;
	color: var(--color_main);
	font-size: 2rem;
	font-family: var(--font_english);
	cursor: pointer;
	transition: var(--transition);
}

.header-menu-back::before {
	display: inline-block;
	width: 0.5em;
	height: 0.5em;
	margin-right: 0.5em;
	border-bottom: 2px solid;
	border-left: 2px solid;
	vertical-align: 2px;
	content: "";
	transform: rotate(45deg);
}

.header-menu-back:hover {
	opacity: var(--opacity);
}

.header-menu-heading {
	display: flex;
	cursor: pointer;
	transition: var(--transition);
	justify-content: space-between;
	align-items: center;
}

.header-menu-heading::after {
	width: 0.4em;
	height: 0.4em;
	border-top: 2px solid;
	border-right: 2px solid;
	content: "";
	transform: translateX(-10px) rotate(45deg);
	transition: var(--transition);
}

.header-menu-heading:hover {
	opacity: var(--opacity);
}

.header-menu-heading:hover::after {
	transform: translateX(-6px) rotate(45deg);
}

.header-menu-container {
	display: none;
}

.header-menu.show {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	background: #fff;
	transition: 0.2s ease-in-out;
}

.header-menu.show .header-menu-back {
	display: inline-block;
}

.header-menu.show .header-menu-heading {
	pointer-events: none;
}

.header-menu.show .header-menu-heading::after {
	display: none;
}

.header-menu.show .header-menu-container {
	display: block;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
フッター
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
footer {
	padding: 65px 0 30px;
	background: #fff;
	text-align: center;
}

.footer-sns-ul {
	display: flex;
	margin-bottom: 30px;
	justify-content: center;
	align-items: center;
}

.footer-sns-li:not(:last-child) {
	margin-right: 55px;
}

.footer-sns-li a:hover {
	opacity: var(--opacity);
}

.footer-copyright {
	display: block;
	margin-bottom: 35px;
	font-size: 1.2rem;
	line-height: 2;
}

.footer-prize-logo {
	margin-bottom: 15px;
}

.footer-prize-logo:hover {
	opacity: var(--opacity);
}

.footer-menu-ul {
	display: flex;
	margin-bottom: 30px;
	line-height: 1.2;
	flex-flow: wrap;
	justify-content: center;
}

.footer-menu-li {
	margin-bottom: 0.4em;
}

.footer-menu-li:not(:last-child) {
	border-right: 1.5px solid #4b4b4b;
}

.footer-menu-li a {
	padding: 0 0.6em;
}

.footer-menu-li a:not(:hover) {
	color: #004ea2;
}

.footer-furyu-logo:hover {
	opacity: var(--opacity);
}

@media (min-width: 768px) {
footer {
	padding-top: 105px;
}

.footer-sns-ul {
	margin-bottom: 45px;
}

.footer-sns-li:not(:last-child) {
	margin-right: 70px;
}

.footer-copyright {
	margin-bottom: 55px;
}

.footer-prize-logo {
	margin-bottom: 30px;
}

.footer-menu-ul {
	margin-bottom: 55px;
}
}

@media (max-width: 767.9px) {
.footer-sns-li img {
	width: 36px;
}
}
