@charset "UTF-8";
/* CSS Document */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

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

fieldset, img {
    border: 0;
}

address,caption,cite,code,dfn,em,strong,th,var {
    font-style:normal;
    font-weight:normal
}

ol, ul {
    list-style: none;
}

caption, th {
    text-align: left;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}


/* common */
/* CSS Document */


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

PC設定 1370px以上の場合に適用

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

/* 全体の設定 */

/**@import url(//fonts.googleapis.com/earlyaccess/notosansjapanese.css);*/

/*
* Noto Sans Japanese (japanese) http://www.google.com/fonts/earlyaccess
 */

html {
    color: #000;
}

body {
    width: 100%;
    font-family: 'Noto Sans Japanese',YuGothic,'Yu Gothic',"meiryo","sans-serif","lucida grande","hiragino kaku gothic proN";
    font-weight: 400;
    -webkit-text-size-adjust: 100%;
    min-width: 1370px;
    font-size: 20px;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: #000;
}

p {
    color: #000;
    line-height: 1.8;
}

img {
    border: none;
}

* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

.wrapper {
    width: 95%;
    max-width: 1370px;
    margin: 0 auto;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

.h2 {
    font-size: 30px;
    font-weight: 500;
    text-align: center;
    color: #036EB7;
    margin-bottom: 50px;
}



/* header */
.header {
    width: 100%;
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #FFF;
    z-index: 9000;
}

.header__wrapper {
    height: 100px;
    position: relative;
}

.header__txt {
    font-size: 14px;
    position: absolute;
    left: 0;
    top: 20px;
}

.header__link {
    position: absolute;
    left: 0;
    bottom: 20px;
    transition: .2s;
}

.header__link:hover {
    opacity: .7;
}

.header__logo {
    display: block;
    width: auto;
    height: 30px;
}

.globalNav {
    position: absolute;
    right: 0;
    top: 0;
    height: 100px;
}

.globalNav__box {
    display: flex;
    justify-content: space-between;
}

.globalNav__item {
    width: 230px;
    height: 100px;
    position: relative;
    text-align: center;
}

.globalNav__item::before {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background-color: #036EB7;
    position: absolute;
    opacity: 0;
    transition: .2s;
}

.globalNav__item:hover::before {
    opacity: 1;
}

.globalNav__item:hover .globalNav__link {
    color: #FFF;
}

.globalNav__link {
    display: block;
    font-weight: 500;
    color: #000!important;
    width: 100%;
    height: 100px;
    padding-top: 22px;
    transition: .2s;
    position: relative;
}

.globalNav__link::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 50px;
    background-color: #E6E6E6;
    position: absolute;
    left: 0;
    top: 25px;
}

.globalNav__item:last-child .globalNav__link::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 50px;
    background-color: #E6E6E6;
    position: absolute;
    right: 0;
    top: 25px;
}

.globalNav__en {
    display: block;
    font-size: 15px;
    font-family: futura;
}

.globalNav__link:hover::before,
.globalNav__item:last-child .globalNav__link:hover::after {
    background-color: #036EB7;
}



/* breadcrumb */
.breadcrumb {
    margin-top: 130px;
    margin-bottom: 70px;
}

.breadcrumb__box {
    display: flex;
}

.breadcrumb__item {
    margin-right: 15px;
}

.breadcrumb__item::after {
    display: inline-block;
    content: ">";
    color: #888;
    font-weight: 500;
    margin-left: 15px;
}

.breadcrumb__item:last-child::after {
    content: "";
}

.breadcrumb__link,
.breadcrumb__link h1 {
    color: #888;
    font-weight: 500;
}



/* footer */
.footer {
    width: 100%;
    background-color: #F7F7F7;
    padding-top: 80px;
}

.footer__wrapper {
    display: flex;
    justify-content: space-between;
    padding-bottom: 70px;
}

.footer__left {
    width: 320px;
}

.footer__right {
    width: 430px;
}

.footer__logo {
    display: block;
    width: auto;
    height: 40px;
    margin-bottom: 20px;
}

.footer__txt {
    margin-bottom: 25px;
    font-size: 15px;
}

.footer__instagram {
    color: #888888;
    position: relative;
    transition: .2s;
    font-family: futura;
}

.footer__instagram:hover {
    opacity: .8;
}

.footer__instagram::after {
    display: inline-block;
    content: "";
    width: 40px;
    height: 40px;
    background-image: url("/img/common/icon_footer_instagram.png");
    background-size: cover;
    vertical-align: -14px;
    margin-left: 15px;
}

.footer__box {
    display: flex;
    justify-content: space-between;
}

.footer__item {
    width: 50%;
}

.footerChildren__item {
    margin-bottom: 20px;
}

.footer__link {
    color: #888;
    font-weight: 500;
    transition: .2s;
}

.footer__link:hover {
    color: #000;
}

.footer__copyright {
    border-top: 1px solid #CDCDCD;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #888;
    font-size: 10px;
}




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

タブレットの設定 768px~1369pxの場合に適用

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

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

    /* 全体の設定 */
    body {
        max-width: 1369px;
        min-width: 100%;
    }










}



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

SPの設定 767px以下の場合に適用

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

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

/* 全体の設定 */
body {
	max-width: 767px;
	font-size: 12px;
}


.pc {
	display: none;
}

.sp {
	display: block;
}

.wrapper,
.wrapper_small {
	width: calc(100% - 30px);
}

.h2 {
	font-size: 16px;
	margin-bottom: 20px;
}



/* header */
.header {
	height: 60px;
}

.header__wrapper {
	width: 100%;
	height: 60px;
	position: relative;
}

.header__txt {
	font-size: 10px;
	left: 15px;
	top: 7px;
}

.header__link {
	position: absolute;
	left: 15px;
	bottom: 10px;
}

.header__logo {
	height: 23px;
}

.globalNav {
	display: none;
}



/* caution */
.caution {
	width: 100%;
	text-align: center;
}

.caution__line {
	width: 100%;
	height: 25px;
	background-image: url("/img/common/line_caution.png");
	background-size: cover;
}

.caution__icon {
	display: block;
	width: 40px;
	height: auto;
	margin: 80px auto 25px auto;
}

.caution__txt {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 80px;
	color: #E81919;
}



/* footer */
.footer {
	border-top: 1px solid #CDCDCD;
	padding-top: 30px;
}

.footer__wrapper {
	display: block;
	padding-bottom: 20px;
	width: 100%;
	padding-bottom: 0;
}

.footer__left {
	width: 100%;
	text-align: center;
}

.footer__logo {
	height: 25px;
	margin: 0 auto 10px auto;
}

.footer__txt {
	font-size: 10px;
	margin-bottom: 15px;
}

.footer__instagram {
	font-size: 15px;
}

.footer__instagram:hover {
	opacity: .8;
}

.footer__instagram::after {
	width: 30px;
	height: 30px;
	vertical-align: -11px;
	margin-left: 10px;
}

.footer__copyright {
	border-top: none!important;
	height: auto;
	line-height: 1.4;
	transform: scale(0.8);
	padding-bottom: 10px;
}

.footer__right {
	width: 100%;
}

.footer__box {
	width: 100vw;
	border-top: 1px solid #CDCDCD;
	padding-top: 10px;
	margin-top: 20px;
	margin-bottom: -15px;
}
.footer__item:nth-of-type(1) {
	display: none;
}

.footer__item:nth-of-type(2) {
	margin: 0 auto!important;
	padding: 0;
	width: auto;
}

.footer__item:nth-of-type(2) .footer__children {
	display: flex;
	justify-content: center;
}

.footer__item:nth-of-type(2) .footerChildren__item {
	padding: 0 7px;
	border-right: 1px solid #CDCDCD;
	font-size: 10px;
}

.footerChildren__item a {
	font-weight: normal;
}

.footer__item:nth-of-type(2) .footerChildren__item:last-child {
	border: none;
}
	


	
	

/** 追加 */
.globalNav__link {
    color: #888888;
}
.globalNav__link::before {
    background-color: #E6E6E6;
}
.globalNav__item:last-child .globalNav__link::after {
    background-color: #E6E6E6;
}
	
	

/* drawerNav */
.drawerNav {
	display: block;
	}

.drawerNav .toggleBtn {
	position: fixed;
	right: 0;
	top: 0;
	background: transparent;
	width: 60px;
	height: 60px;
	z-index: 9001;
	}

.drawerNav .toggleBtn:hover {
	cursor: pointer;
	}

.toggleBtnIcon {
	width: 30px;
	height: 2px;
	background: #036EB7;
	position: relative;
	display: block;
	top: 30px;
	left: 15px;
	}

.toggleBtnIcon::before {
	content: '';
	width: 30px;
	height: 2px;
	background: #036EB7;
	display: block;
	position: absolute;
	top: 9px;
	transition: .2s;
	-webkit-transition: .2s;
	}

.toggleBtnIcon::after {
	content: '';
	width: 30px;
	height: 2px;
	background: #036EB7;
	display: block;
	position: absolute;
	top: -9px;
	transition: .2s;
	-webkit-transition: .2s;
	}
	
.openBtn .toggleBtnIcon::after {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 0; 
	}

.openBtn .toggleBtnIcon::before {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: 0; 
	}

.openBtn .toggleBtnIcon {
	background-color: transparent;
	}

.drawerNav .open {
	height: 100vh;
	padding-top: 60px;
	}

.drawerNav > ul {
	height: 0;
	width: 100%;
	background: #FFF;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	overflow-y: scroll;
	z-index: 8000;
	transition: .3s;
	-webkit-transition: .3s;
	}

.drawerNav > ul > li {
	border-bottom: 1px solid #DDD;
	width: 100%;
	margin: 0 auto;
	}

.drawerNav > ul > li > a,
.drawerNav > ul > li > span {
	font-size: 18px;
	font-weight: 500;
	background-color: #ecf3f7;
	display: block;
	padding: 12px 10%;
}
	
.drawerNav > ul > li > a {
	text-decoration: underline;
}

.drawerNav ul li ul {
	padding: 20px 10%;
}
	
.drawerNav ul li ul li {
	height: 100px;
	border-radius: 7px;
	box-shadow: 3px 3px 5px #EEE;
	background-size: cover!important;
	background-position: center center!important;
	text-align: center;
}
	
.drawerNav ul li ul li:nth-of-type(1) {
	margin-bottom: 20px;
	background: linear-gradient(rgba(0,0,0,.4), rgba(0,0,0,.4)),url("/img/index/img_localNav_background.jpg");
}
	
.drawerNav ul li ul li:nth-of-type(2) {
	background: linear-gradient(rgba(0,0,0,.4), rgba(0,0,0,.4)),url("/img/index/img_localNav_scrapbook.jpg");
}
	
.drawerNav ul li ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 100%;
}
	
.drawerNav ul li ul li p {
	font-size: 24px;
	font-weight: 500;
	color: #FFF;
	line-height: 1.4;
}
	
.drawerNav ul li ul li a span {
	display: block;
	font-weight: normal;
	font-size: 16px;
	font-family: futura;
	line-height: 1.4;
	color: #FFF;
}


/** spin */
#loadingOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(128, 128, 128, 0.5);
    z-index: 200000;
}

.loader {
    border: 16px solid #f3f3f3;
    /*border-top: 16px solid #3498db;*/
    border-top: 16px solid #888;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 0.5s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
	
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}