@charset "UTF-8";

/* Base
---------------------------------------------------*/
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: -pre-wrap;/* Opera 4-6 */
	white-space: -o-pre-wrap;/* Opera 7 */
	white-space: pre-wrap;/* CSS3 */
	word-wrap: break-word;/* IE 5.5+ */
}


/* 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: #262626;
	font-size: 1.4rem;
	font-size: 14px;
	font-family: 'Noto Sans JP','Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3',sans-serif;
	font-weight: 400;
	letter-spacing: 0.05em;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	background-color: #fff;
}

*{-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}

*{outline: none!important;}

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

/* < 1366px */
@media screen and (max-width: 1366px) {
	body {
/*
		font-size: 1.25vw;
*/
		-webkit-text-size-adjust: 100%;
	}
}

/* < 960px */
@media screen and (max-width: 960px) {
	body {
/*
		font-size: 1.72vw;
*/
	}
}

/* < 768px */
@media screen and (min-width:1px) and (max-width: 768px) {
	body {
		font-size: 2.8125vw;
		letter-spacing: 0;
	}
	.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: #262626;
}
a:hover {
	color: #000;
}
a.u {
	text-decoration: underline;
}
a,
a:hover,
.hover {
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.hover:hover {
	filter: alpha(opacity=80);
	opacity: 0.8;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

a.underline {
	position: relative;
	-webkit-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
}
a.underline:after {
	position: absolute;
	content: '';
	top: 50%;
	top: 1.2em;
	left: 0;
	width: 100%;
	height: 3px;
	height: 0.05em;
	background-color: #232323;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: -webkit-transform .4s cubic-bezier(.39,.575,.565,1),-webkit-transform-origin .4s cubic-bezier(.39,.575,.565,1);
	transition: -webkit-transform .4s cubic-bezier(.39,.575,.565,1),-webkit-transform-origin .4s cubic-bezier(.39,.575,.565,1);
	transition: transform .4s cubic-bezier(.39,.575,.565,1),transform-origin .4s cubic-bezier(.39,.575,.565,1);
	transition: transform .4s cubic-bezier(.39,.575,.565,1),transform-origin .4s cubic-bezier(.39,.575,.565,1),-webkit-transform .4s cubic-bezier(.39,.575,.565,1),-webkit-transform-origin .4s cubic-bezier(.39,.575,.565,1);
	pointer-events: none;
}

a.underline:hover:after {
	transition: none;
	-webkit-animation: line_animation .4s cubic-bezier(.445,.05,.55,.95);
	animation: line_animation .4s cubic-bezier(.445,.05,.55,.95);
}
@-webkit-keyframes line_animation {
	0%{
		-webkit-transform-origin:top right;
		transform-origin:top right;
		-webkit-transform:scaleX(1);
		transform:scaleX(1)
	}
	50%{
		-webkit-transform-origin:top right;
		transform-origin:top right;
		-webkit-transform:scaleX(0);
		transform:scaleX(0)
	}
	51%{
		-webkit-transform-origin:top left;
		transform-origin:top left;
		-webkit-transform:scaleX(0);
		transform:scaleX(0)
	}
	to{
		-webkit-transform-origin:top left;
		transform-origin:top left;
		-webkit-transform:scaleX(1);
		transform:scaleX(1)
	}
}
@keyframes line_animation {
	0%{
		-webkit-transform-origin:top right;
		transform-origin:top right;
		-webkit-transform:scaleX(1);
		transform:scaleX(1)
	}
	50%{
		-webkit-transform-origin:top right;
		transform-origin:top right;
		-webkit-transform:scaleX(0);
		transform:scaleX(0)
	}
	51%{
		-webkit-transform-origin:top left;
		transform-origin:top left;
		-webkit-transform:scaleX(0);
		transform:scaleX(0)
	}
	to{
		-webkit-transform-origin:top left;
		transform-origin:top left;
		-webkit-transform:scaleX(1);
		transform:scaleX(1)
	}
}
.scale {
	display: block;
	overflow: hidden;
}
.scale > img {
	-webkit-transform: scale(1.01);
	transform: scale(1.01);
	-webkit-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
}
.scale:hover > img {
	-webkit-transform: scale(1.03);
	transform: scale(1.03);
}


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

/* 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;
}


/* INPUT
---------------------------------------------------*/
input, button, select, textarea {
	font-family: inherit;
	font-size: 1em;
	color: inherit;
	margin: 0;
}

input, button {
	border: 0;
	line-height: normal;
	vertical-align: inherit;
	*vertical-align: middle;
}

input::-moz-focus-inner,
button::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input[type="submit"],
input[type="reset"],
input[type="button"],
button {
	cursor: pointer;
	-webkit-appearance: button;
	*overflow: visible;
	border: 0;
	outline: none;
	background: transparent;
}

input[type="text"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="email"],
textarea,
select {
	overflow : hidden;
	outline : none;
}

input:focus{ outline: 0 none black; }

/* ------ */
input[type="text"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="email"],
textarea {
	font-size: 1em;
	border: 0;
	vertical-align: middle;
	padding: 1em;
	line-height: 1.0em;
	background-color: #E9E2CF;
}
textarea {
	overflow: auto;
}

select {
	border: 0;
	vertical-align: middle;
	padding: 5px;
	line-height: 1.0em;
}

.w100 {width: 100%;}
.w90 {width: 90%;}
.w85 {width: 85%;}
.w80 {width: 80%;}
.w60 {width: 60%;}
.w40 {width: 40%;}
.w20 {width: 20%;}


/** placeholder **/
.placeholder {color: #9A9A9A;}
:placeholder-shown{color:#9A9A9A;}
/* Google Chrome, Safari, Opera 15+, Android, iOS */
::-webkit-input-placeholder{color:#9A9A9A;}
/* Firefox 18- */
:-moz-placeholder{color:#9A9A9A; opacity:1;}
/* Firefox 19+ */
::-moz-placeholder{color:#9A9A9A; opacity:1;}
/* IE 10+ */
:-ms-input-placeholder{color:#9A9A9A !important;}


/* 768px以下 */
@media screen and (min-width:1px) and (max-width: 768px) {
	input[type="text"],
	input[type="password"],
	input[type="number"],
	input[type="tel"],
	input[type="email"],
	textarea,
	select {
		font-size: 1em;
	}
}


/* =.radio
-------------------------------------------------------------- */
input[type="radio"] {
  display: none;
}
.radio {
	position: relative;
	display: inline-block;
	min-width: 180px;
	text-align: center;
	font-size: 20px;
	padding: 1em 2em;
	cursor: pointer;
	background-color: #C9C9C1;
	-webkit-border-radius: 2em;
	border-radius: 2em;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
input[type="radio"]:checked + .radio {
	background-color: #fff;
}

/* < 768px */
@media screen and (min-width:1px) and (max-width: 768px) {
	/* radio */
	.radio {
		min-width: 23.4375vw;
		font-size: 3.75vw;
		padding: 0.75em 0.5em;
	}
}


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


/* Header
---------------------------------------------------*/
#Header {
	position: absolute;
	width: 100%;
	padding: 0;
}
#Header > .inner {
	position: relative;
	width: 80%;
	max-width: 1100px;
	padding-top: 25px;
	padding-left: 40px;
}
#Header > .inner .logo {
	width: 67.2%;
	max-width: 740px;
}

#Header > .navi-wrap {
	position: static;
	top: -80px;
	left: 0;
	width: 100%;
	z-index: 99999;
}
#Header.active > .navi-wrap {
	position: fixed;
	top: 0;
	z-index: 9999999;
}

/* gnavi */
#gnavi {
	display: none;
	width: auto;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: #F2EEE2;
	z-index: 9999;
}
#gnavi.active {
	z-index: 999999;
}

#gnavi > .inner {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 80%;
	max-width: 1100px;
}
#gnavi .logo {
	width: 260px;
	margin-bottom: 60px;
}
#gnavi ul.menu {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-items: center;
	align-items: center;
	width: 100%;
	margin-bottom: 20px;
}
#gnavi ul.menu li {
	margin-right: 3em;
}
#gnavi ul.menu li:last-of-type {
	margin-right: 0;
}
#gnavi ul.menu li.br {
	width: 100%;
}
#gnavi ul.menu li a {
	position: relative;
	line-height: 1.4em;
	font-size: 58px;
	font-weight: 500;
	cursor: pointer;
}

/* sns-menu */
#gnavi ul.sns-menu {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-items: center;
	align-items: center;
	width: 100%;
}
#gnavi ul.sns-menu li.whois {
	margin-right: 41px;
}
#gnavi ul.sns-menu li.whois img {
	width: 118px;
}
#gnavi ul.sns-menu li.youtube {
	margin-right: 46px;
}
#gnavi ul.sns-menu li.youtube img {
	width: 57px;
}
#gnavi ul.sns-menu li.instagram img {
	width: 46px;
}

/* btnMenu */
#btnMenu {
	position: absolute;
	top: 0;
	right: 0;
	width: 138px;
	height: 80px;
	z-index: 999;
	cursor: pointer;
}
#btnMenu .menu-trigger {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 48px;
	height: 30px;
	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: 2px;
	-webkit-border-radius: 1px;
	border-radius: 1px;
	background-color: #262626;
}
#btnMenu .menu-trigger span:nth-of-type(1) {
	width: 100%;
	top: 0;
}
#btnMenu .menu-trigger span:nth-of-type(2) {
	top: calc(50% - 1px);
}
#btnMenu .menu-trigger span:nth-of-type(2)::after {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #262626;
	transition: all 0.15s;
}
#btnMenu .menu-trigger span:nth-of-type(3) {
	top: auto;
	bottom: 0;
}
#btnMenu .menu-trigger.active span {
	/*background-color: #262626;*/
}
#btnMenu .menu-trigger.active span:nth-of-type(1) {
	transform: translate(50%) scale(0);
}
#btnMenu .menu-trigger.active span:nth-of-type(2) {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
#btnMenu .menu-trigger.active span:nth-of-type(2)::after {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}
#btnMenu .menu-trigger.active span:nth-of-type(3) {
	transform: translate(-50%) scale(0);
}


/* scroll action */
#Header > .navi-wrap.scroll {
	position: fixed;
	top: 0;
	height: 80px;
	background-color: #F2EEE2;
	-webkit-transition: top 0.5s;
	transition: top 0.5s;
}


/* fixed-logo */
#fixed-logo {
	display: none;
	position: absolute;
	top: 25px;
	left: 40px;
	width: 290px;
	height: 30px;
}
#Header.active #fixed-logo {
	display: none;
}

#fixed-logo img {
	width: 100%;
}
.scroll #fixed-logo {
	display: block;
}
.scroll #btnMenu {
	width: 138px;
	height: 80px;
}



/* < 1024px */
@media screen and (max-width: 1024px) {
	/* logo */
	#Header .logo {
		width: 30%;
	}
}

/* < 768px */
@media screen and (min-width:1px) and (max-width: 768px) {
	#Header {
	}
	#Header > .inner {
		width: 87.5vw;
		padding-top: 8.90625vw;
		padding-left: 0;
		margin: 0 auto;
	}
	#Header > .inner .logo {
		width: 67.1875vw;
		max-width: 740px;
	}

	#Header > .navi-wrap {
	}

	/* gnavi */
	#gnavi {
		height: 100vh;
		overflow: auto;
	}
	#gnavi > .inner {
		position: relative;
		top: 0;
		left: 0;
		-webkit-transform: translate(0);
		transform: translate(0);
		width: 80vw;
		margin: 0 auto;
		padding: 15vw 0 25vw;
	}

	/* scrollbar */
	#gnavi::-webkit-scrollbar {
		width: 3px;
	}
	#gnavi::-webkit-scrollbar-track {
		border-radius: 10px;
		margin: 10px 0;
	}
	#gnavi::-webkit-scrollbar-thumb {
		background-color: rgba(38, 38, 38, 0.4);
		border-radius: 10px;
	}

	#gnavi .logo {
		width: 40.625vw;
		margin-bottom: 9.375vw;
	}
	#gnavi ul.menu {
		display: block;
		margin-bottom: 9.375vw;
	}
	#gnavi ul.menu li {
		margin-right: 0;
	}
	#gnavi ul.menu li.br {
		display: none;
	}
	#gnavi ul.menu li a {
		font-size: 10.9375vw;
	}
	#gnavi ul.menu li a:after {
		height: 0.46875vw;
	}

	/* sns-menu */
	#gnavi ul.sns-menu li.whois {
		margin-right: 11.5625vw;
	}
	#gnavi ul.sns-menu li.whois img {
		width: 23.4375vw;
	}
	#gnavi ul.sns-menu li.youtube {
		margin-right: 11.40625vw;
	}
	#gnavi ul.sns-menu li.youtube img {
		width: 11.40625vw;
	}
	#gnavi ul.sns-menu li.instagram img {
		width: 9.375vw;
	}

	/* btnMenu */
	#btnMenu {
		width: 17.1875vw;
		height: 12.5vw;
	}
	#btnMenu .menu-trigger {
		width: 7.5vw;
		height: 4.6875vw;
	}

	/* scroll action */
	#Header > .navi-wrap.scroll {
		height: 12.5vw;
	}

	/* fixed-logo */
	#fixed-logo {
		top: 3.90625vw;
		left: 4.6875vw;
		width: 45.3125vw;
		height: 4.6875vw;
	}
	.scroll #btnMenu {
		width: 17.1875vw;
		height: 12.5vw;
	}
}


/* main-wrap
---------------------------------------------------*/
#main-wrap {
	position: relative;
	padding-top: 190px;
	z-index: 10;
}

/* < 768px */
@media screen and (min-width:1px) and (max-width: 768px) {
	#main-wrap {
		padding-top: 28.125vw;
	}
}


/* Footer
---------------------------------------------------*/
#Footer {
	position: relative;
	background-color: #fff;
	padding: 100px 0;
	z-index: 999;
}
#Footer .inner {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
	align-items: center;
	max-width: 1040px;
	width: 80%;
	margin: 0 auto;
}

/* logo */
#Footer .logo {
	width: 25.9%;
}
#Footer .logo img {
	width: 100%;
}

/* information */
#Footer .information {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	width: 500px;
}
#Footer .information dl {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	line-height: 1.6em;
}
#Footer .information dl.address {
	width: 320px;
}
#Footer .information dl.address dt {
	width: 70px;
}
#Footer .information dl.address dd {
	width: calc(100% - 70px);
}
#Footer .information dl.address dd span {
	display: block;
}

#Footer .information dl.contact {
	width: 180px;
}
#Footer .information dl.contact dt {
	width: 45px;
}
#Footer .information dl.contact dd {
	width: calc(100% - 45px);
}

/* copy */
#Footer .copy {
	width: 100%;
	text-align: right;
	font-size: 10px;
	letter-spacing: 0.05em;
	margin-top: 2.5em;
}

/* fnavi */
#fnavi {
	margin-bottom: 100px;
}
#fnavi ul.menu {
	width: 100%;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: center;
	justify-content: center;
}
#fnavi ul.menu li {
	margin-right: 6em;
}
#fnavi ul.menu li:last-of-type {
	margin-right: 0;
}
#fnavi ul.menu li a {
	color: #fff;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.15em;
}

/* < 1366px */
@media screen and (max-width: 1366px) {
	#fnavi ul.menu li a {
		font-size: 1.04vw;
	}
	#Footer .copy {
		font-size: 1.04vw;
	}
}

/* < 768px */
@media screen and (min-width:1px) and (max-width: 768px) {
	#Footer {
		padding: 10.9375vw 0 10.625vw;
	}
	#Footer .inner {
		display: block;
		width: 87.5vw;
	}

	/* logo */
	#Footer .logo {
		width: 36.40625vw;
		margin-bottom: 5.46875vw;
	}

	/* information */
	#Footer .information {
		display: block;
		width: 100%;
	}
	#Footer .information dl.address {
		width: 100%;
	}
	#Footer .information dl.address dt {
		width: 12.5vw;
	}
	#Footer .information dl.address dd {
		width: calc(100% - 12.5vw);
	}

	#Footer .information dl.contact {
		width: 100%;
	}
	#Footer .information dl.contact dt {
		width: 6.25vw;
	}
	#Footer .information dl.contact dd {
		width: calc(100% - 6.25vw);
	}
	#Footer .information dl.address dd span {
		display: inline;
	}
	#Footer .information dl.address dd span:first-of-type {
		margin-right: 0.5em;
	}
	/* copy */
	#Footer .copy {
		text-align: left;
		font-size: 2.1875vw;
	}
}



/* fixed-navi
---------------------------------------------------*/
#fixed-navi {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #fff;
	z-index: 99999;
	padding: 20px 0;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
#fixed-navi.hide {
	bottom: -80px;
}

#fixed-navi .inner {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
	align-items: center;
	width: 80%;
	max-width: 1100px;
	padding: 0 30px;
	margin: 0 auto;
}

/* information */
#fixed-navi ul.information {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-align-items: center;
	align-items: center;
}
#fixed-navi ul.information li {
	line-height: 1.6em;
	margin-right: 30px;
	white-space: nowrap;
}

/* sns-menu */
#fixed-navi ul.sns-menu {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
}
#fixed-navi ul.sns-menu li.instagram {
	margin-right: 18px;
}
#fixed-navi ul.sns-menu li.instagram img {
	width: 18px;
}
#fixed-navi ul.sns-menu li.youtube img {
	width: 20px;
}

/* < 768px */
@media screen and (min-width:1px) and (max-width: 768px) {
	#fixed-navi {
		padding: 1.5625vw 0;
	}
	#fixed-navi .inner {
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		width: 100%;
		padding: 0 6.25vw;
	}

	/* information */
	#fixed-navi ul.information {
		width: 68.75vw;
	}
	#fixed-navi ul.information li {
		margin-right: 4.6875vw;
		font-size: 2.1875vw;
	}

	/* sns-menu */
	#fixed-navi ul.sns-menu li.instagram {
		margin-right: 2.65625vw;
	}
	#fixed-navi ul.sns-menu li.instagram img {
		width: 3.28125vw;
	}
	#fixed-navi ul.sns-menu li.youtube img {
		width: 3.59375vw;
	}
}




/* Common
---------------------------------------------------*/

/* font-family */
.en {
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
}
.gothic {
	font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif !important;
}

/* font-size */
.sTxt {
	font-size: 14px;
}
.mTxt {
	font-size: 17px;
}
.lTxt {
	font-size: 23px;
}
.mainTitleJp {
	font-size: 30px;
}
.mainTitle {
	font-size: 36px;
}
.strongTitleJp {
	font-size: 40px;
}
.strongTitle {
	font-size: 48px;
}
.exTitle {
	font-size: 60px;
}

/* < 1366px */
@media screen and (max-width: 1366px) {
	.sTxt {
		font-size: 1.04vw;
	}
	.mTxt {
		font-size: 1.25vw;
	}
	.lTxt {
		font-size: 1.67vw;
	}
	.mainTitleJp {
		font-size: 2.19vw;
	}
	.mainTitle {
		font-size: 2.6vw;
	}
	.strongTitleJp {
		font-size: 2.92vw;
	}
	.strongTitle {
		font-size: 3.54vw;
	}
	.exTitle {
		font-size: 4.38vw;
	}
}

/* < 960px */
@media screen and (max-width: 960px) {
	.sTxt {
		font-size: 1.41vw;
	}
	.mTxt {
		font-size: 1.72vw;
	}
	.lTxt {
		font-size: 2.19vw;
	}
	.mainTitleJp {
		font-size: 2.66vw;
	}
	.mainTitle {
		font-size: 3.13vw;
	}
	.strongTitleJp {
		font-size: 3.13vw;
	}
	.strongTitle {
		font-size: 3.75vw;
	}
	.exTitle {
		font-size: 4.69vw;
	}
}

/* < 768px */
@media screen and (min-width:1px) and (max-width: 768px) {
	.sTxt {
		font-size: 2.81vw;
	}
	.mTxt {
		font-size: 3.44vw;
	}
	.lTxt {
		font-size: 4.38vw;
	}
	.mainTitleJp {
		font-size: 5.31vw;
	}
	.mainTitle {
		font-size: 6.25vw;
	}
	.strongTitleJp {
		font-size: 6.25vw;
	}
	.strongTitle {
		font-size: 7.5vw;
	}
	.exTitle {
		font-size: 9.38vw;
	}
}


/* font-weight */
.bold {
	font-weight: bold;
}
.light {
	font-weight: 300;
}
.regular {
	font-weight: 400;
}
.medium {
	font-weight: 500;
}

/* line */
.under {
	border-bottom: 1px solid;
}

/* color */
.red {
	color: #9a1919;
}

/* btn-link, btn-submit */
.btn-link,
.btn-submit {
	text-align: center;
}
.btn-link a,
.btn-submit input[type="submit"] {
	display: inline-block;
	min-width: 360px;
	line-height: 1;
	text-align: center;
	color: #fff;
	font-size: 20px;
	background-color: rgba(157,157,157,1.0);
	border: 1px solid #9D9D9D;
	-webkit-border-radius: 2em;
	border-radius: 2em;
	padding: 1em 3.5em;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.btn-link a:hover,
.btn-submit input[type="submit"]:hover {
	background-color: rgba(157,157,157,0.8);
}


/* title */
.ttl-page {
	font-size: 80px;
	font-weight: 300;
	margin-bottom: 1em;
}
.ttl-content {
	line-height: 1.45em;
	font-size: 40px;
	font-weight: 400;
	margin-bottom: 0.6em;
}

ul.disc li {
	list-style-type: disc;
	margin-left: 1.5em;
}
ol.decimal li {
	list-style-type: decimal;
	margin-left: 1.5em;
}

/* < 1366px */
@media screen and (max-width: 1366px) {
	/* title */
	.ttl-content {
		font-size: 3.54vw;
	}
}

/* < 960px */
@media screen and (max-width: 960px) {
	/* title */
	.ttl-content {
		font-size: 3.75vw;
	}
}

/* < 768px */
@media screen and (min-width:1px) and (max-width: 768px) {
	/* btn-link, btn-submit */
	.btn-link a,
	.btn-submit input[type="submit"] {
		min-width: 53.125vw;
	}

	/* title */
	.ttl-page {
		font-size: 12.5vw;
	}
	.ttl-content {
		font-size: 7.5vw;
	}
}



/* input design
---------------------------------------------------*/

/* select-label */
.select-label {
	position: relative;
}
.select-label:after {
	position: absolute;
	content: '';
	top: 50%;
	right: 0.5em;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	width: 11px;
	height: 6px;
	background-image: url('../img/arrow_select.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	pointer-events: none;
	z-index: 99;
}

/* select-box */
select.select-box {
	width: 100%;
	line-height: 1.85em;
	border: 0;
	border-bottom: 1px solid rgba(38,38,38,0.3);
	background-color: transparent;
	padding: 0.5em;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

/* < 768px */
@media screen and (min-width:1px) and (max-width: 768px) {
	/* select-label */
	.select-label:after {
		width: 1.71875vw;
		height: 0.9375vw;
	}
}


/* page-loader
---------------------------------------------------*/
body.nowloading #wrapper {
	filter:alpha(opacity=0);
	opacity: 0.0;
	height: 100vh;
	overflow: hidden;
}

#page-loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: #f2eee2;
	z-index: 999999;
}
#page-loader .inner {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 300px;
}

/* < 768px */
@media screen and (min-width:1px) and (max-width: 768px) {

	#page-loader .inner {
		width: 40vw;
	}

}
