@charset "utf-8";


/******************************************************************** structure
*/
html {
	overflow-y: scroll;
}

body {
	font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
	box-sizing: border-box;
	text-align: justify;
	text-justify: inter-ideograph;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: #333;
	font-size: 1.7rem;
	overflow-x: hidden;
	line-height: 1.6;
}

a {
	-webkit-transition: all .3s;
	transition: all .3s;
}

a:link {
	color: #A28D00;
}

a:visited {
	color: #A28D00;
}

a:hover {
	text-decoration: none;
	opacity: 0.5;
}

.red {
	color: #D51720;
}

.blue {
	color: #182C79;
}

.green {
	color: #43B19F;
}

.wrapper {
	width: 92%;
	max-width: 1400px;
	text-align: left;
	margin: 0 auto;
	position: relative;
}

#header {
	position: relative;
	height: auto;
	width: 100%;
}

#footer {
	clear: both;
}

.loader-wrap {
	background: #FFF;
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 130;
}

.loader-animation,
.loader-animation:before,
.loader-animation:after {
	border-radius: 50%;
	width: 2em;
	height: 2em;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation: load7 1.8s infinite ease-in-out;
	animation: load7 1.8s infinite ease-in-out;
}

.loader-animation {
	color: #AFAFAF;
	font-size: 10px;
	margin: -1em auto 0;
	position: absolute;
	left: 50%;
	top: 50%;
	text-indent: -9999em;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}

.loader-animation:before,
.loader-animation:after {
	content: '';
	position: absolute;
	top: 0;
}

.loader-animation:before {
	left: -3.5em;
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}

.loader-animation:after {
	left: 3.5em;
}

@-webkit-keyframes load7 {

	0%,
	80%,
	100% {
		box-shadow: 0 2.5em 0 -1.3em;
	}

	40% {
		box-shadow: 0 2.5em 0 0;
	}
}

@keyframes load7 {

	0%,
	80%,
	100% {
		box-shadow: 0 2.5em 0 -1.3em;
	}

	40% {
		box-shadow: 0 2.5em 0 0;
	}
}



/******************************************************************** header
*/

.header {
	position: relative;
	padding: 101px 0 0;
}

.index .header {
	position: relative;
	padding-top: 0;
	padding-bottom: calc(16vmin + 101px);
}

.mv {
	box-sizing: border-box;
	/*height: calc(100vh - 24px);*/
	position: relative;
	/*overflow: hidden;*/
	padding: 160px 0;
}

.mv h1 {
	font-size: 4vmin;
	letter-spacing: 0.2em;
	line-height: 1;
	font-weight: bold;
	text-align: center;
}

.mv h1 span.mask {
	background: #FFF;
	padding: 0.32em 0.64em;
}

.unit .logo {
	display: none;
}

.breadcrumb {
	position: relative;
	z-index: 1;
	line-height: 32px;
	font-size: 1.2rem;
}

.breadcrumb .wrapper {
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	text-align: center;
}

.breadcrumb li {
	display: inline;
}

.breadcrumb li:after {
	display: inline;
	content: ">";
	margin: 0 0.5em;
}

.breadcrumb li:last-child:after {
	display: none;
}

.breadcrumb li a:link,
.breadcrumb li a:visited {
	color: #FFF;
}

.breadcrumb li a:hover {
	text-decoration: none;
}


/******************************************************************** globalNav
*/
.nav-button {
	display: none;
}

.nav-wrap {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	background: #FFF;
}

.index .nav-wrap {
	top: inherit;
	bottom: 8vmin;
	position: absolute;
}

.nav-wrap.fixed {
	position: fixed;
	top: 0;
	bottom: inherit;
	z-index: 99;
}

.nav {
	display: flex;
	justify-content: space-around;
	position: relative;
	align-items: center;
}

.nav>li {
	background: #FFF;
	text-align: center;
	box-sizing: border-box;
	/*border-left: #DBDBDB 1px solid;*/
	flex-grow: 1;
	position: relative;
	-webkit-transition: all .3s;
	transition: all .3s;
}

/*.nav > li:first-child{border-left: none;}*/
.header .nav>li {
	width: auto;
}

.header .nav>li.home {
	display: none;
}

.index .header .nav>li.home {
	display: block;
}

.header .nav>li:after {
	content: "";
	display: inline-block;
	background: #E2E2E2;
	width: 1px;
	height: 32px;
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -16px;
}

.header .nav>li:last-child:after,
.header .nav>li.logo:after {
	display: none;
}

.header .nav>li.logo {
	margin-right: 10%;
}

.nav a {
	background: url("../img/common/ico_arrow_under.svg") no-repeat center 90%;
	background-size: 11px auto;
	text-decoration: none;
	color: #121212;
	font-weight: bold;
	display: block;
	padding: 3.2rem 0;
	font-size: 1.8rem;
	line-height: 1;
	letter-spacing: 0.05em;
}

.header .nav>li.logo a {
	background: none;
	padding: 0;
}

.nav a span {
	display: block;
	margin: 0.64em auto 0;
	font-size: 1.2rem;
	color: #999;
}

.fixed .nav a {
	padding: 2.4rem 0;
}

.nav a:hover {
	opacity: 1;
}

.header .nav>li.logo img {
	max-width: 140px;
}

.nav>li:hover {
	background: #EFEFEF;
}

.nav>li.logo:hover {
	background: transparent;
	opacity: 0.5;
}

.nav-wrap.open {
	display: block;
}

.nav-wrap.close {
	display: none;
}

@media screen and (min-width: 961px) {
	.nav-wrap {
		display: block !important;
	}
}


/******************************************************************** container
*/
.main>section {
	padding: 104px 0;
	position: relative;
}

.main>section .txt {
	line-height: 1.8;
}

.catch {
	width: 100%;
	position: relative;
}

#container h2 {
	font-size: calc(1rem + 2vmin);
	font-weight: bold;
	letter-spacing: 0.2em;
	margin-bottom: 40px;
	text-align: center;
}

.btn {
	width: 100%;
	position: relative;
	line-height: 1;
	max-width: 320px;
}

.btn a {
	display: inline-block;
	line-height: 64px;
	text-align: center;
	position: relative;
	z-index: 2;
	width: 100%;
	border: #333 1px solid;
	box-sizing: border-box;
	font-size: 1.6rem;
	font-weight: bold;
	letter-spacing: 0.1em;
}

.btn a:before {
	display: block;
	content: " ";
	position: absolute;
	z-index: 10;
	right: -40px;
	top: 50%;
	margin-top: -7px;
	width: 70px;
	height: 8px;
	background: url("../img/common/ico_btn.svg") no-repeat;
	background-size: 100% auto;
	box-sizing: border-box;
}

.btn,
.btn a:before,
.btn a:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}

.btn a:link,
.btn a:visited {
	text-decoration: none;
	color: #333;
}

.btn a:hover:before {
	right: -64px;
}

.back a:before {
	background: url("../img/common/ico_btn_reverse.svg") no-repeat;
	background-size: 100% auto;
	right: inherit;
	left: -40px;
}

.back a:hover:before {
	left: -64px;
	right: inherit;
}

.news-list {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.news-list li {
	width: 31%;
	box-sizing: border-box;
	padding: 0 1%;
	margin: 3.5% 3.5% 0 0;
}

.news-list li:nth-child(3n) {
	margin: 3.5% 0 0;
}

.news-list li>a {
	display: block;
}

.news-list li figure {
	width: 107.1473%;
	margin: 0 -3.57365%;
	line-height: 0;
}

.news-list li figure img {
	width: 100%;
}

.news-list li .date {
	letter-spacing: 0.1em;
	padding: 1em 0 0.5em;
}

.news-list li h3 {
	font-size: calc(1rem + 1vmin);
	letter-spacing: 0.1em;
	margin-bottom: 0.5em;
}

.news-list li .btn {
	max-width: 160px;
	margin: 24px 0 0 auto;
}

.news-list li .btn a {
	line-height: 38px;
	font-size: 1.5rem;
}

.news-list li .btn a:before {
	right: -24px;
	width: 40px;
	background: url("../img/common/ico_btn_short.svg") no-repeat;
	background-size: 100% auto;
}

.news-list li .btn a:hover:before {
	right: -36px;
}

.news-list li>a:link,
.news-list li>a:visited {
	color: #121212;
	text-decoration: none;
}

.news-list li>a:link .date,
.news-list li>a:visited .date {
	color: #182D7A;
}

.list a {
	background: #333;
}

.list a:before {
	display: none;
}

.list a:link,
.list a:visited {
	color: #FFF;
}

.list a:hover {
	color: #333;
}

.list a:hover:after {
	background: #FFF;
}

.blog-nav {
	display: flex;
	justify-content: center;
}

.blog-nav li {
	margin-right: 4%;
}

.blog-nav li:last-child {
	margin-right: 0;
}


table {
	border-collapse: collapse;
	width: 100%;
}

table tr th {
	background: #F8F8FA;
	padding: 1.5em 1em;
	border-right: #FFF 2px solid;
}

table tr th:last-child {
	border-right: none;
}

table tr td {
	padding: 1.5em 1em;
	border-bottom: #CCC 1px solid;
}

/******************************************************************** footer
*/
footer {
	background: url("../img/common/bg_footer.jpg") no-repeat center center;
	background-size: cover;
	position: relative;
}

footer:after {
	display: block;
	content: "";
	background: #FFF;
	position: absolute;
	right: 0;
	bottom: 0;
	width: 80px;
	height: 100%;
	z-index: 2;
}

.info-area {
	padding: 104px 0 0;
	color: #FFF;
}

.info-area a:link,
.info-area a:visited {
	color: #FFF;
}

.info-area .wrapper {
	text-align: center;
}

.info-area .wrapper h2 {
	padding: 40px 0 64px;
	font-size: 2rem;
	letter-spacing: 0.1em;
}

.info-area .wrapper .second {
	letter-spacing: 0.1em;
}

.info-area .wrapper .second .address {
	font-size: 1.6rem;
	margin-bottom: 16px;
}

.info-area .wrapper .second ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 16px;
}

.info-area .wrapper .second ul li {
	font-size: 1.6rem;
}

/* .info-area .wrapper .second ul li:first-child{
	border-right: #FFF 1px solid;
	padding-right: 1em;
	margin-right: 1em;
} */

.info-area .wrapper .third {
	display: none;
	box-sizing: border-box;
	text-align: center;
}

.info-area .wrapper .third .txt {
	margin-top: 1rem;
}

.foot-nav {
	color: #FFF;
}

.foot-nav a:link,
.foot-nav a:visited {
	color: #FFF;
	text-decoration: none;
}

.foot-nav a:hover {
	opacity: 0.5;
}

.foot-nav .nav a {
	font-size: 1.6rem;
	padding: 0;
}

.foot-nav .nav {
	padding: 104px 0;
	justify-content: center;
}

.foot-nav .nav>li {
	background: transparent;
	border-left: none;
	text-align: center;
	flex: auto;
}

.foot-nav .nav>li:hover {
	background: transparent;
}

.foot-nav .nav>li a:before {
	content: "";
	display: inline-block;
	background: url("../img/common/ico_arrow.svg") no-repeat center center;
	background-size: 100% auto;
	width: 5px;
	height: 11px;
	margin-right: 0.5em;
}

.foot-nav .nav li.has-child .child {
	top: auto;
	visibility: inherit;
	opacity: 1;
	position: relative;
	background: transparent;
	display: block;
	padding: 0;
}

.foot-nav .nav li.has-child:hover .child {
	top: auto;
}

.foot-nav .nav li.has-child .child li {
	width: auto;
	margin: 0.6em 0 0 1.6em;
	list-style: disc;
	border-right: none;
}

.foot-nav .nav li.has-child .child li a {
	line-height: 1.4;
	font-size: 1.5rem;
	font-weight: normal;
	text-align: left;
	padding: 0;
}

.foot-nav .nav li.has-child .child li a:before,
.foot-nav .nav li.has-child>a:after {
	display: none;
}

.foot-copy {
	background: #182D7A;
	color: #FFF;
	text-align: center;
	font-size: 1.6rem;
	padding: 1em 0;
	letter-spacing: 0.05em;
}

.pc_none {
	display: none !important;
}

.sp_none {
	display: block !important;
}

.pageup {
	position: absolute;
	right: 0;
	bottom: 0;
	font-size: 1.6rem;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	letter-spacing: 0.1em;
	width: 80px;
	height: 100%;
	z-index: 3;
}

.pageup a {
	background: url("../img/common/ico_upper_arrow_white.svg") no-repeat center 40px #FFF;
	background-size: 20px auto;
	display: block;
	width: 100%;
	height: 100%;
	line-height: 80px;
	padding-top: 96px;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}

.pageup a:before {
	display: block;
	content: "";
	position: absolute;
	right: 50%;
	top: -40px;
	width: 8px;
	height: 70px;
	background: url("../img/common/ico_btn_over.svg") no-repeat;
	background-size: 100% auto;
	-webkit-transition: all .3s;
	transition: all .3s;
}

.pageup a:hover:before {
	top: -64px;
}

.foot-nav .pageup a:link,
.foot-nav .pageup a:visited {
	color: #121212;
}


@media screen and (max-width:1480px) {
	.foot-nav .wrapper {
		padding-right: 80px;
		box-sizing: border-box;
	}
}

/*************************************************************************************************************************

■ タブレット(960px以下)向けスタイル

*************************************************************************************************************************/

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

	/******************************************************************** structure
*/
	.pc_none {
		display: block !important;
	}

	.sp_none {
		display: none !important;
	}

	.wrapper {
		width: 92%;
	}

	/******************************************************************** header
*/

	.header {
		padding-top: 0;
	}

	.index .header {
		padding-bottom: 0;
	}

	header .wrapper {
		padding: 0;
	}

	/*.mv {border: #FFF 16px solid;}*/
	.mv {
		padding-top: calc(60px + 16vmin);
		padding-bottom: 16vmin;
	}

	.mv .ttl-area {
		padding: 16vmin 4%;
	}

	.mv .ttl-area h2 {
		font-size: 4.8rem;
	}

	.unit .logo {
		display: block;
		background: #FFF;
		position: absolute;
		left: 0;
		top: 0;
		z-index: 9;
		width: 100%;
		height: 60px;
		text-align: center;
	}

	.unit .logo img {
		width: auto;
		height: 52px;
		padding-top: 4px;
	}

	/******************************************************************** globalNav
*/
	.scroll-prevent {
		position: fixed;
		z-index: -1;
		width: 100%;
		height: 100%;
	}

	.nav-button {
		display: block;
		cursor: pointer;
	}

	.nav-wrap {
		position: fixed;
		left: 0;
		top: 0;
		display: none;
		z-index: 100;
		background-color: #1a2f70;
		width: 100%;
		height: 100%;
	}

	.index .nav-wrap {
		top: 0;
		bottom: inherit;
		position: fixed;
	}

	.nav-wrap .nav {
		height: 100%;
		position: relative;
		/*overflow-x: hidden;
	overflow-y: auto;*/
		display: block;
		padding: 60px 0;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
	}

	.nav a {
		background: transparent;
	}

	.nav a,
	.fixed .nav a {
		padding: 0.5em 1em;
	}

	.nav>li {
		width: 100%;
		text-align: left;
		border-bottom: #2D51A4 1px solid;
		background: transparent;
	}

	.nav>li:first-child {
		border-top: #2D51A4 1px solid;
	}

	.header .nav>li.logo {
		display: none;
	}

	.header .nav>li.home {
		display: block;
	}

	.header .nav>li:after {
		display: none;
	}

	.nav>li.privacy {
		display: block;
	}

	.nav>li>a {
		position: relative;
		color: #FFF;
	}

	.nav>li>a:after {
		display: inline-block;
		content: "";
		background: url("../img/common/ico_next_arrow_white.svg") no-repeat center center;
		background-size: 100% auto;
		width: 8px;
		height: 15px;
		position: absolute;
		right: 1.35em;
		top: 50%;
		margin-top: -7.5px;
	}

	.nav>li:after,
	.nav>li:first-child:before {
		display: none;
	}


	/*メニューボタンのエフェクト*/
	.nav-button,
	.nav-button span {
		display: inline-block;
		transition: all 0.4s;
		box-sizing: border-box;
	}

	.nav-button {
		z-index: 120;
		position: fixed;
		right: 8px;
		top: 8px;
		width: 44px;
		height: 44px;
		background: #1a2f70;
		text-decoration: none;
	}

	.nav-button:after {
		display: inline-block;
		content: "メニュー";
		color: #FFF;
		font-size: 8px;
		position: absolute;
		bottom: 2px;
		left: 0;
		width: 100%;
		text-align: center;
	}

	.nav-button span {
		position: absolute;
		left: 20%;
		width: 60%;
		height: 3px;
		background-color: #fff;
		border-radius: 2px;
	}

	.nav-button span:nth-of-type(1) {
		top: 8px;
	}

	.nav-button span:nth-of-type(2) {
		top: 15px;
	}

	.nav-button span:nth-of-type(3) {
		bottom: 19px;
	}

	.nav-button.active span:nth-of-type(1) {
		-webkit-transform: translateY(7px) rotate(-45deg);
		transform: translateY(7px) rotate(-45deg);
	}

	.nav-button.active span:nth-of-type(2) {
		opacity: 0;
	}

	.nav-button.active span:nth-of-type(3) {
		-webkit-transform: translateY(-7px) rotate(45deg);
		transform: translateY(-7px) rotate(45deg);
	}

	.nav-button.active:after {
		content: "閉じる";
	}

	.nav-button:hover,
	.nav-button:active {
		opacity: 1;
	}


	/******************************************************************** container
*/
	.main>section {
		padding: 16vmin 0;
	}

	#container .ttl-area {
		margin-bottom: 4vmin;
	}

	#container .ttl-area .en {
		margin-bottom: 1.2vmin;
	}

	#container h2 {
		margin-bottom: 4vmin;
	}

	.btn {
		width: 80%;
		max-width: 320px;
		margin: 0 auto;
	}

	.btn a span {
		display: none;
	}

	.blog-nav {
		display: block;
	}

	.blog-nav li {
		margin: 0 auto 2vmin;
	}

	.blog-nav li:last-child {
		margin: 0 auto;
	}


	/******************************************************************** footer
*/

	footer .wrapper {
		width: 92%;
	}

	footer:after {
		display: none;
	}

	.info-area {
		padding: 8vmin 0;
	}

	.info-area .wrapper {
		display: block;
		flex-wrap: wrap;
	}

	.info-area .wrapper h2 {
		width: 100%;
		margin: 0 auto 2vmin;
		padding: 4vmin 0 6vmin;
		text-align: center;
	}

	.info-area .wrapper .second {
		width: 100%;
		text-align: center;
		margin-bottom: 4vmin;
	}

	.info-area .wrapper .second .address {
		margin-bottom: 2.5vmin;
	}

	.info-area .wrapper .second ul {
		justify-content: center;
		margin-bottom: 2.5vmin;
	}

	.info-area .wrapper .second ul li:first-child {
		margin-right: 1em;
	}

	.foot-nav .wrapper {
		width: 100%;
		padding: 0;
	}

	.foot-nav ul.nav {
		background: -moz-linear-gradient(-45deg, rgba(28, 72, 191, 0.4) 0%, rgba(24, 45, 122, 0.6) 100%);
		/* FF3.6-15 */
		background: -webkit-linear-gradient(-45deg, rgba(28, 72, 191, 0.4) 0%, rgba(24, 45, 122, 0.6) 100%);
		/* Chrome10-25,Safari5.1-6 */
		background: linear-gradient(135deg, rgba(28, 72, 191, 0.4) 0%, rgba(24, 45, 122, 0.6) 100%);
		/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#991c48bf', endColorstr='#99182d7a', GradientType=1);
		/* IE6-9 fallback on horizontal gradient */
		flex-wrap: wrap;
		width: 100%;
		padding: 0;
	}

	.foot-nav .nav a {
		/*background: rgba(24,45,122,0.6);*/
		padding: 0.6em 1em;
		font-size: 2rem;
	}

	.foot-nav .nav>li {
		text-align: left;
	}

	.foot-nav .nav li.has-child .child {
		bottom: auto;
		top: auto;
		display: block;
		padding: 0;
		background: #222;
	}

	.foot-nav .nav li.has-child .child li {
		width: 100%;
		border-radius: 0;
		margin: 0;
		list-style: none;
	}

	.foot-nav .nav li.has-child .child li:last-child {
		border-bottom: none;
	}

	.foot-nav .nav li.has-child .child li a {
		text-align: left;
		font-size: 1.8rem;
		padding: 0.6em 1.5em;
	}

	.foot-nav .nav li.has-child .child li a:before {
		display: none;
	}

	.foot-nav .nav li.has-child:hover .child {
		bottom: auto;
		top: auto;
	}

	.foot-nav .nav li.has-child>a:after {
		display: inline-block;
		content: "";
		background: url("../img/common/ico_next_arrow_white.svg") no-repeat center center;
		background-size: 100% auto;
		width: 8px;
		height: 15px;
		position: absolute;
		right: 1.35em;
		top: 50%;
		margin-top: -7.5px;
	}

	.lang-nav li {
		font-size: 1.5rem;
	}

	.foot-copy {
		font-size: 1.5rem;
	}

	.pageup {
		display: none;
	}
}

/*************************************************************************************************************************

■ スマホ(600px以下)向けスタイル

*************************************************************************************************************************/

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

	/******************************************************************** structure
*/
	.wrapper {
		width: 92%;
	}

	/******************************************************************** header
*/

	.mv {
		border: none;
	}

	.mv h1 {
		font-size: calc(2.4rem + 1.6vmin);
	}


	.mv .ttl-area h2 {
		font-size: 8vmin;
	}

	.breadcrumb {
		margin: 0;
		line-height: 1.2;
		font-size: 3.2vmin;
	}

	/******************************************************************** globalNav
*/
	.nav a,
	.fixed .nav a {
		font-size: 4.8vmin;
		padding: 0.6em 1em;
	}

	.nav li.has-child .child {
		display: none;
	}

	.nav li.has-child.products .child {
		display: block;
	}

	.nav li.has-child .child li a {
		font-size: 4.4vmin;
	}

	/******************************************************************** container
*/

	.txt {
		font-size: calc(0.6rem + 2vmin);
	}

	.btn a,
	.btn02 a,
	.btn03 a {
		line-height: 56px;
	}

	#container h2 {
		font-size: calc(2.4rem + 1.6vmin);
		margin-bottom: 8vmin;
	}

	.news-list {
		display: block;
		width: 92%;
		margin: 0 auto;
	}

	.news-list li {
		width: 100%;
		padding: 0 0 8vmin;
		margin: 0;
	}

	.news-list li:nth-child(3n) {
		margin: 0;
	}

	.news-list li figure {
		width: 100%;
		margin: 0;
	}

	.news-list li h3 {
		font-size: calc(1.6rem + 1vmin);
	}


	/******************************************************************** footer
*/
	.info-area {
		padding: 16vmin 0;
	}

	.info-area .wrapper h2 {
		font-size: calc(0.8rem + 2vmin);
	}

	.info-area .wrapper .second {
		margin-bottom: 8vmin;
	}

	.info-area .wrapper .second .address {
		font-size: calc(0.6rem + 2vmin);
	}

	.info-area .wrapper .second ul li.tel {
		display: block;
	}

	.info-area .wrapper .third {
		display: block;
	}

	.info-area .wrapper .third .btn a {
		border: none;
		background: #A28D00;
		font-size: 1.8rem;
	}

	.info-area .wrapper .third .btn a:before {
		background: url("../img/common/ico_mail_white.svg") no-repeat center center;
		background-size: 20px auto;
		box-sizing: border-box;
		content: "";
		width: 28px;
		height: 22px;
		position: relative;
		left: inherit;
		right: inherit;
		top: inherit;
		display: inline-block;
		vertical-align: -0.25em;
		margin-right: 0.5em;
	}

	.info-area .wrapper .third .tel-btn a:before {
		background: url("../img/common/ico_tel_black.svg") no-repeat center center;
		background-size: 20px auto;
		box-sizing: border-box;
		content: "";
		width: 28px;
		height: 22px;
		position: relative;
		left: inherit;
		right: inherit;
		top: inherit;
		display: inline-block;
		vertical-align: -0.25em;
		margin-right: 0.5em;
	}

	.info-area .wrapper .tel-btn {
		display: block;
		width: 80%;
		margin: 0 auto;
		max-width: 320px;
		margin-bottom: 4vmin;
		line-height: 1;
	}

	.info-area .wrapper .tel-btn a {
		background: #FFF;
		font-size: 1.8rem;
		display: inline-block;
		line-height: 56px;
		text-align: center;
		position: relative;
		z-index: 2;
		overflow: hidden;
		width: 100%;
		border: #333 1px solid;
		box-sizing: border-box;
	}

	.info-area .wrapper .tel-btn a:link,
	.info-area .wrapper .tel-btn a:visited {
		color: #121212;
		text-decoration: none;
	}

	.info-area .wrapper .tel-btn a b {
		font-size: 3rem;
	}

	.foot-nav .nav a {
		font-size: 4.8vmin;
		padding: 0.8em 1em;
	}

	.foot-nav .nav li.has-child .child li a {
		font-size: 4.4vmin;
	}

}