﻿@charset "UTF-8";
/*--------------------------------

/common/css/base.css

--------------------------------*/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
/* stylelint-disable */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: "";
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* stylelint-enable */
* {
	box-sizing: border-box;
}

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

html {
	font-size: 62.5%;
	font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
	background-color: #fff;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

body, html {
	color: #333;
	height: 100%;
}

input, textarea, select, button {
	font-family: inherit;
}

@media print {
	body {
		width: 1000px;
		margin: auto;
	}
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

a {
	color: #002f7b;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

.clearfix::after {
	content: "";
	display: block;
	clear: both;
}

.is-pc {
	display: none;
}

@media print, screen and (min-width: 769px) {
	.is-pc {
		display: block;
	}
}

.is-sp {
	display: block;
}

@media print, screen and (min-width: 769px) {
	.is-sp {
		display: none;
	}
}

br.is-pc {
	display: none;
}

@media print, screen and (min-width: 769px) {
	br.is-pc {
		display: inline;
	}
}

br.is-sp {
	display: inline;
}

@media print, screen and (min-width: 769px) {
	br.is-sp {
		display: none;
	}
}

/* stylelint-disable */
@media print {
	.is-printAlways {
		page-break-before: always;
	}
}

@media print and (-webkit-min-device-pixel-ratio: 0) {
	.is-printAlways--webkit {
		page-break-before: always;
	}
}

@media print {
	@-moz-document url-prefix() {
		.is-printAlways--ff {
			page-break-before: always;
		}
	}
}

@media print and (-ms-high-contrast: none) {
	.is-printAlways--ie {
		page-break-before: always;
	}
}

/* stylelint-enable */
.wrapper {
	position: relative;
	overflow: hidden;
}

.wrapper::after {
	content: "";
	position: fixed;
	width: 100vw;
	height: 100vh;
	background: #fff;
	left: 0;
	bottom: 0;
	transition: all .25s ease 0s;
	will-change: auto;
	opacity: 0;
	visibility: hidden;
	z-index: 25;
}

.wrapper.is_menu-open::after {
	opacity: 1;
	visibility: visible;
}

.is_menu-open .header {
	position: fixed;
}

@media screen and (min-width: 769px) and (max-width: 1200px) {
	.is_menu-open .header {
		position: static;
	}
}

.main {
	display: block;
	padding-top: 66px;
}

@media screen and (min-width: 1200px) {
	.main {
		padding-top: 88px;
	}
}

@media screen and (min-width: 769px) and (max-width: 1200px) {
	.main {
		padding-top: 134px;
	}
}

.main.is_fixed {
	position: fixed;
	width: 100%;
}

@media print {
	.main {
		padding: 0;
	}
}

.header {
	background-color: #fff;
	position: fixed;
	z-index: 50;
	width: 100%;
}

@media screen and (min-width: 769px) and (max-width: 1200px) {
	.header {
		padding-bottom: 46px;
	}
}

@media print {
	.header {
		position: static;
	}
}

.header.is_scrolled {
	position: fixed;
}

@media print {
	.header.is_scrolled {
		position: static;
	}
}

.header__wrap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 66px;
	padding: 15px 0;
	border-bottom: 2px solid #efb81b;
}

@media print, screen and (min-width: 769px) {
	.header__wrap {
		height: 88px;
		border-bottom: 0;
	}
}

.header__logo {
	width: 218px;
	margin-left: 17px;
}

@media print, screen and (min-width: 769px) {
	.header__logo {
		width: 392px;
	}
}

@media screen and (min-width: 769px) and (max-width: 1200px) {
	.header__logo {
		width: 307px;
	}
}

.header__nav {
	display: none;
}

@media print, screen and (min-width: 769px) {
	.header__nav {
		display: block;
		margin-left: auto;
	}
}

@media print {
	.header__nav {
		display: none;
	}
}

@media print, screen and (min-width: 769px) {
	.header__subnav {
		display: flex;
	}
	.header__subnavItem {
		position: relative;
		padding: 0 20px 0 30px;
	}
	.header__subnavItem:first-of-type {
		margin-left: auto;
	}
	.header__subnavItem:before {
		position: absolute;
		display: block;
		content: "";
		width: 29px;
		height: 1px;
		background-color: #dcdcdc;
		transform: rotate(-60deg);
		top: 9px;
		left: -7px;
	}
	.header__subnavItem:last-of-type:after {
		position: absolute;
		display: block;
		content: "";
		width: 29px;
		height: 1px;
		background-color: #dcdcdc;
		transform: rotate(-60deg);
		top: 9px;
		right: -14px;
	}
	.header__subnavItem a {
		font-size: 1.4rem;
		color: #333;
	}
	.header__subnavItem a:hover {
		opacity: .8;
	}
	.header__subnavItem img {
		margin-right: 10px;
	}
	.header__gnav {
		display: flex;
		margin-top: 15px;
	}
	.header__gnavItem + .header__gnavItem {
		margin-left: 50px;
	}
	.header__gnavItem a {
		position: relative;
		color: #333;
		font-size: 1.6rem;
		font-weight: bold;
	}
	.header__gnavItem a:before {
		position: absolute;
		content: "";
		width: 0;
		height: 6px;
		background-color: #efb81b;
		bottom: -15px;
		left: 0;
		right: 0;
		margin: 0 auto;
		transition: .3s;
	}
	.header__gnavItem a:hover {
		text-decoration: none;
	}
	.header__gnavItem a[aria-label*="current"]::before, .header__gnavItem a:hover::before {
		width: 49px;
	}
}

@media screen and (min-width: 769px) and (max-width: 1200px) {
	.header__gnav {
		justify-content: space-between;
		position: absolute;
		max-width: 940px;
		width: calc(100% - 34px);
		margin: auto;
		left: 0;
		right: 0;
		bottom: -33px;
	}
	.header__gnavItem a:before {
		bottom: -9px;
	}
}

.header__contact {
	display: none;
}

@media print, screen and (min-width: 769px) {
	.header__contact {
		display: block;
		margin-left: 20px;
	}
	.header__contact a {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 200px;
		height: 88px;
		padding-left: 40px;
		background-color: #002f7b;
		color: #fff;
		font-size: 1.6rem;
		font-weight: bold;
		overflow: hidden;
		transition: 1s;
	}
	.header__contact a:before {
		content: "";
		position: absolute;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 88px 40px 0 0;
		border-color: #fff transparent transparent transparent;
		top: 0;
		left: 0;
	}
	.header__contact a:hover {
		opacity: .8;
	}
}

@media screen and (min-width: 769px) and (max-width: 1200px) {
	.header__contact {
		margin-left: 7px;
	}
}

@media print {
	.header__contact {
		display: none;
	}
}

.pagetop {
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	right: 6px;
	bottom: 15px;
	z-index: 20;
}

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

@media print, screen and (min-width: 769px) {
	.pagetop {
		width: 45px;
		height: 45px;
		right: 20px;
		bottom: 20px;
	}
}

@media print {
	.pagetop {
		display: none;
	}
}

@media print, screen and (min-width: 769px) {
	.sp_header__menu {
		display: none;
	}
}

.sp_header__menuBtn {
	display: block;
	position: relative;
	width: 31px;
	height: 22px;
	margin: 2px 25px 0 auto;
	cursor: pointer;
}

.sp_header__menuBtn[aria-expanded="true"] .sp_header__menuBtnLine:nth-of-type(1) {
	bottom: 0;
	margin: auto 0;
	transform: rotate(45deg);
}

.sp_header__menuBtn[aria-expanded="true"] .sp_header__menuBtnLine:nth-of-type(2) {
	background-color: transparent;
}

.sp_header__menuBtn[aria-expanded="true"] .sp_header__menuBtnLine:nth-of-type(3) {
	top: 0;
	margin: auto 0;
	transform: rotate(-45deg);
}

.sp_header__menuBtn[aria-expanded="true"] + .sp_header__menuBtnText {
	display: none;
}

.sp_header__menuBtn[aria-expanded="true"] + .sp_header__menuBtnText + .sp_header__menuBtnText {
	display: block;
}

.sp_header__menuBtnLine {
	display: block;
	width: 100%;
	height: 4px;
	background-color: #002f7b;
	position: absolute;
	left: 0;
	transition: all .25s cubic-bezier(.74, 0, .32, 1);
}

.sp_header__menuBtnLine:nth-of-type(1) {
	top: 0;
}

.sp_header__menuBtnLine:nth-of-type(2) {
	top: 0;
	bottom: 0;
	margin: auto 0;
}

.sp_header__menuBtnLine:nth-of-type(3) {
	bottom: 0;
}

.sp_header__menuBtnText {
	display: block;
	width: 41px;
	margin: 5px 0 0 -5px;
	font-size: 1rem;
	font-weight: bold;
	text-align: center;
	transform: scale(.8);
}

.sp_header__menuBtnText:nth-of-type(2) {
	display: none;
}

.sp_header__menuWrap {
	position: absolute;
	width: 100%;
	height: calc(100vh - 66px);
	overflow-x: hidden;
	overflow-y: scroll;
	display: block;
	top: 66px;
	left: 0;
	z-index: 100;
}

.sp_header__menuWrap[aria-hidden="true"] {
	max-height: 0;
	transition: all .45s cubic-bezier(0, 1, .6, 1);
}

.sp_header__menuWrap[aria-hidden="false"] {
	max-height: 9999px;
	padding-bottom: 76px;
	transition: max-height 1.25s ease-in;
}

.sp_header__gnavItem {
	border-bottom: 1px solid #dcdcdc;
}

.sp_header__gnavItem a {
	display: block;
	color: #333;
	font-size: 1.5rem;
	padding: 24px 35px;
	background-color: #fff;
	background-image: url("/common/images/common_arrow_right_03.png");
	background-repeat: no-repeat;
	background-size: 6px auto;
	background-position: center right 35px;
	text-decoration: none;
}

.sp_header__subnavItem {
	border-bottom: 1px solid #dcdcdc;
}

.sp_header__subnavItem:last-child {
	border-bottom: 0;
}

.sp_header__subnavItem a {
	display: block;
	color: #333;
	font-size: 1.3rem;
	padding: 20px 35px 20px 50px;
	background-color: #fff;
	background-image: url("/common/images/common_arrow_right_04.png");
	background-repeat: no-repeat;
	background-size: 6px auto;
	background-position: center left 35px;
	text-decoration: none;
}

.footer {
	margin-top: 40px;
}

@media print, screen and (min-width: 769px) {
	.footer {
		margin-top: 60px;
	}
}

@media print {
	.footer {
		display: none;
	}
}

.footer__wrap {
	display: flex;
	flex-direction: column;
}

.footer__block01 {
	background-color: #333;
}

@media print, screen and (min-width: 769px) {
	.footer__block01 {
		order: 2;
		padding-top: 20px;
	}
}

.footer__subnavList {
	display: flex;
	flex-wrap: wrap;
	border: 1px solid #fff;
	border-top: 0;
}

@media print, screen and (min-width: 769px) {
	.footer__subnavList {
		border: 0;
		justify-content: center;
	}
}

.footer__subnavListItem {
	width: 50%;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
}

.footer__subnavListItem:nth-of-type(2n) {
	border-right: 0;
}

.footer__subnavListItem a {
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	color: #fff;
	text-align: center;
	line-height: 1.286;
}

@media print, screen and (min-width: 769px) {
	.footer__subnavListItem {
		width: auto;
		padding: 0 25px;
		border: 0;
		border-right: 2px solid #e5e5e5;
	}
	.footer__subnavListItem:nth-of-type(2n) {
		border-right: 2px solid #e5e5e5;
	}
	.footer__subnavListItem:first-of-type {
		border-left: 2px solid #e5e5e5;
	}
	.footer__subnavListItem a {
		height: auto;
		font-size: 1.2rem;
	}
	.footer__subnavListItem a br {
		display: none;
	}
}

.footer__block02 {
	background-color: #e5e5e5;
}

@media print, screen and (min-width: 769px) {
	.footer__block02 {
		order: 1;
		display: flex;
		padding: 60px 0 100px;
	}
}

@media print, screen and (min-width: 769px) {
	.footer__block02__cols {
		max-width: 1200px;
		width: calc(100% - 30px);
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		margin: auto;
	}
}

.footer__sitemap {
	display: none;
}

@media print, screen and (min-width: 769px) {
	.footer__sitemap {
		display: flex;
	}
}

@media print, screen and (min-width: 769px) {
	.footer__sitemapList {
		width: 210px;
		margin-left: 40px;
	}
	.footer__sitemapList:first-of-type {
		margin-left: 0;
	}
}

@media screen and (min-width: 769px) and (max-width: 890px) {
	.footer__sitemapList {
		width: auto;
	}
}

@media print, screen and (min-width: 769px) {
	.footer__sitemapListItem {
		margin-top: 30px;
	}
	.footer__sitemapListItem:first-of-type {
		margin-top: 0;
	}
	.footer__sitemapListItemLink {
		color: #333;
		font-size: 1.4rem;
		font-weight: bold;
	}
	.footer__sitemapListItemLink:before {
		content: "";
		display: inline-block;
		width: 10px;
		height: 11px;
		margin-right: 5px;
		background-image: url(/common/images/common_arrow_right_05.png);
		background-repeat: no-repeat;
		background-size: contain;
	}
	.footer__sitemapListItemLink:hover {
		color: #002f7b;
	}
	.footer__sitemapInListItem {
		margin-top: 15px;
	}
	.footer__sitemapInListItemLink {
		position: relative;
		padding-left: 15px;
		color: #333;
		font-size: 1.2rem;
	}
	.footer__sitemapInListItemLink:before {
		content: "";
		position: absolute;
		display: inline-block;
		width: 4px;
		height: 1px;
		background-color: #333;
		top: 8px;
		left: 4px;
	}
	.footer__sitemapInListItemLink:hover {
		color: #002f7b;
	}
	.footer__sitemapInListItemLink:hover:before {
		background-color: #002f7b;
	}
}

.footer__logo {
	padding: 40px 0 25px;
}

@media print, screen and (min-width: 769px) {
	.footer__logo {
		padding: 0;
	}
}

.footer__logoImg {
	display: block;
	width: 176px;
	margin: auto;
	padding: 15px 0 12px;
	background-color: #fff;
	text-align: center;
}


.footer__logoImg img {
	width: 105px;
}

@media print, screen and (min-width: 769px) {
	.footer__logoImg {
		width: 240px;
	}
	.footer__logoImg img {
		width: 115px;
	}
}

.footer__SNS {
	margin: 0 auto;
	text-align: center;
}

.footer__FB, 
.footer__IG {
	display: inline-block;
	margin: auto;
}

.footer__SNS img {
	width: 50px;
}



.footer__logoText {
	margin: 25px auto 0;
	font-size: 1rem;
	text-align: center;
	line-height: 1.8;
}

@media print, screen and (min-width: 769px) {
	.footer__logoText {
		width: 230px;
		margin: 10px 0 0;
		text-align: left;
	}
	.footer__logoText br {
		display: none;
	}
}

.footer__block03 {
	padding: 25px 0;
	background-color: #fff;
}

@media print, screen and (min-width: 769px) {
	.footer__block03 {
		order: 3;
		padding: 10px 0 20px;
		background-color: #333;
	}
}

.footer__copy {
	text-align: center;
}

.footer__copy small {
	font-size: 1.2rem;
}

@media print, screen and (min-width: 769px) {
	.footer__copy small {
		color: #fff;
	}
}

/*footer住所追加*/
.footer__block04 {
	padding: 25px 0 0 0;
	background-color: #fff;
}

@media print, screen and (min-width: 769px) {
	.footer__block04 {
		order: 3;
		padding: 10px 0 0 0;
		background-color: #333;
	}
}

.footer__access {
	color: #000;
	text-align: center;
	font-size: 1.2em;
	line-height: 1.6em;
}

.footer__access:first-child {
	padding-bottom: 8px;
}

@media print, screen and (min-width: 769px) {
	.footer__access {
		color: #fff;
		text-align: center;
		font-size: 1.2em;
		line-height: 1.2em;
	}
	.footer__access:first-child {
		padding-bottom: 8px;
	}
}

@media print, screen and (min-width: 769px) {
	.footer__block04 .br-pc {
		display: none;
	}
}
