@charset "utf-8";

/* ---------------------------------------- 
 - html
---------------------------------------- */
html,
body {
 /* background:#fff;*/
  margin: 0;
  padding: 0;
}
html{
    font-size: 62.5%;
}
html.hamburger-active { /* ハンバーガーメニュー */
	height: 100%;
	overflow: hidden;
	touch-action: none;
}
@media screen and (max-width: 320px) {
	html{
		font-size: 52.5%;
	}
}

/* ---------------------------------------- 
 - img
---------------------------------------- */
img {
	width: 100%;
}

/* ---------------------------------------- 
 - body
---------------------------------------- */
body{
	font-family: 'Lato', -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
	font-size:16px;
	font-size:1.6em;
	color:#222;
	line-height:2.0;
	letter-spacing: 0.05em;
	-webkit-text-size-adjust: 100%; /* 文字の拡大縮小を防ぐ */
	text-size-adjust: 100%; /* 文字の拡大縮小を防ぐ */
}
@media screen and (max-width: 768px) {
	body{
		font-size:14px;
		font-size:1.4em;
	}
}

/* font */
.ft-cormorant {
    font-family: 'Cormorant', serif;
}

/* inview */
.inview {
    transition: 0.8s;
    opacity: 0;
    transform: translate(0,20px);
    -webkit-transform: translate(0,20px);
}
.inview.mv {
    opacity: 1.0;
    transform: translate(0,0);
    -webkit-transform: translate(0,0);
}

/* telLink（スマホ用電話リンク） */
.telLink a {
	text-decoration: underline;
}

/* ---------------------------------------- 
 - #slide_loading（下層ページのみ）
---------------------------------------- */
body.slide_loading .slide_bg{
	display: block;
	content: "";
	position:fixed;
	z-index: 999;
	width: 100%;
	height: 100vh;	
	height: 0;	
	top: 0;
	left: 0;
	background-color: #222;
}
body.slide_loading .slide_logo{
	position:fixed;
	width: 65%;
    max-width: 300px;
	top:50%;
	left:50%;
	margin: auto;
	-webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
	opacity: 0;
}
body.slide_loading.is-active .slide_bg{
	animation: loading-slideIn 0.6s 0.1s ease-in-out, loading-slideOut 0.6s 0.9s ease-in-out;
    animation-fill-mode: both;
}
body.slide_loading.is-active .slide_logo{
	animation: loading-logo 0.8s 0.25s ease-in-out;
	animation-fill-mode: both;
}
@keyframes loading-logo {
    0% {
      opacity: 0;
    }
    30% {
      opacity: 1;
    }
	90% {
      opacity: 1;
    }
	100% {
      opacity: 0;
    }
}
@keyframes loading-slideIn {
    0% {
      height: 0;
    }
    100% {
      height: 100%;
    }
}
@keyframes loading-slideOut {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(102%);
    }
}
body.slide_loading #container{
	opacity: 0;
	animation-name:container-fadeIn; /* 5秒後表示 */
	animation-duration:0.1s; /* 5秒後表示 */
	animation-delay: 5s; /* 5秒後表示 */
	animation-fill-mode:forwards; /* 5秒後表示 */
}
body.slide_loading.is-active #container{
	animation-name:loading-fadeIn;
	animation-duration:1s;
	animation-delay: 0.8s;
	animation-fill-mode:forwards;
}
@keyframes loading-fadeIn{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
	}
}
@keyframes container-fadeIn { /* 5秒後表示 */
	0% {
	opacity: 1;
	}
	100% {
	opacity: 1;
	}
}

/* ---------------------------------------- 
 - #container
---------------------------------------- */
#container {
	width:100%;
	margin:0 auto;
	position: relative;
    overflow: hidden;
}
#container .ta_l {
	text-align: left;
}
#container .ta_c {
	text-align: center;
}
#container .ta_r{
	text-align: right;
}
#container .mt_0{
	margin-top: 0;
}
#container .mb_0{
	margin-bottom: 0;
}
#container .mt_50{
	margin-top: 50px;
}
#container .mb_50{
	margin-bottom: 50px;
}
@media screen and (min-width: 769px) {
	#container .sp {
		display:none !important;
	}
}
@media screen and (max-width: 768px) {
	#container .pc {
		display:none !important;
	}
}

/* ---------------------------------------- 
 - header
---------------------------------------- */
#header{
	position:relative;
	top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
	height: 90px;
	background: #fff;
}
header #header_wrapper {
    width: 100%;
    height: 90px;
    text-align: center;
    -webkit-transition: .3s;
    transition: .3s;
    position: absolute;
}
#header #header_wrapper.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}
#header #header_inner{
	width:100%;
	height:100%;
	margin:0 auto;
	background:#fff;
	position:relative;
	display: -webkit-flex;
   	display: flex;
	-webkit-flex-wrap: nowrap;
   	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
}
#header .header_logo{
	width: 75%;
    max-width: 425px;
	margin-left: 35px;
	line-height: 0;
}
#header .header_logo a{
	display:block;
	-webkit-transition: .3s;
    transition: .3s;
}
#header .header_logo a:hover{
	opacity: 0.6;
}
#header .header_logo a img{
	display: inline-block;
	backface-visibility: hidden;
}
@media screen and (max-width: 768px) {
	#header .header_logo {
		margin-left: 3%;
	}
	#header .header_language{
		display: none;
	}
}
@media screen and (max-width: 480px) {
	#header,
	header #header_wrapper {
		height: 65px;
	}
}

/* header_menu */
ul.header_menu {
	display: -webkit-flex;
   	display: flex;
	font-family: 'Noto Serif JP', serif;
	font-size: 1.1rem;
}
body.hamburger-active ul.header_menu li.request,
body.hamburger-active ul.header_menu li.access,
body.hamburger-active ul.header_menu li.search{
	display: none;
}
ul.header_menu li {
	width: 90px;
	border-left:solid 1px #e5e5e5;
	padding-top: 5px;
}
ul.header_menu li .link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
	position: relative;
	cursor: pointer;
	-webkit-transition: .3s;
    transition: .3s;
	text-decoration: none;
}
ul.header_menu li .link:hover {
	opacity:0.6;
}
ul.header_menu li .link > img {
    width: 22px;
}
ul.header_menu li .link .txt {
    margin-top: 3px;
}
/* hamburger */
ul.header_menu li .hamburger {
	position: relative;
	z-index: 1000;
}
ul.header_menu li .hamburger i {
	position: absolute;
    top: 4px;
	left: 50%;
    display: block;
    width: 25px;
    height: 2px;
    background: #222;
	-webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}
ul.header_menu li .hamburger i::before,
ul.header_menu li .hamburger i::after{
	display: block;
    width: 25px;
    height: 2px;
    margin-top: 6px;
    content: '';
    -webkit-transition: .3s;
    transition: .3s;
    background: #222;
}
ul.header_menu li .hamburger i::before{
    margin-top: 8px;
}
ul.header_menu li .hamburger.active i {
	margin-top: 7px;
	-webkit-transform: translate(-50%, 0) rotate(-45deg);
    transform: translate(-50%, 0) rotate(-45deg);
	background: #fff;
}
ul.header_menu li .hamburger.active i::before {
	display: none;
}
ul.header_menu li .hamburger.active i::after {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	margin-top: 0;
	background: #fff;
}
ul.header_menu li .hamburger .txt {
	position: absolute;
    bottom: 0;
}
ul.header_menu li .hamburger.active .txt {
	opacity: 0;
}
ul.header_menu li .hamburger .txt {
	position: absolute;
    bottom: 0;
}
ul.header_menu li .hamburger.active i {
	position: fixed;
    top: 30px;
    right: 35px;
    left: auto;
}
@media screen and (max-width: 768px) {
	ul.header_menu li {
		width: 70px;
		border-left:none;
	}
	ul.header_menu li.request,
	ul.header_menu li.access,
	ul.header_menu li.search,
	ul.header_menu li.language{
		display: none;
	}
	ul.header_menu li .link {
		height: 45px;
	}	
	ul.header_menu li .hamburger.active i {
		top: 24px;
		right: 2.5%;
	}	
}

/* ---------------------------------------- 
 - gnavi
---------------------------------------- */
#gnavi{
	background:#fff;
	margin:0 auto;
	position: fixed;
	top: 0;
	left: 0;	
	text-align:left;
	overflow: auto;
	width: 100%;
    height: 100%;
	-webkit-transition: .5s;
    transition: .5s;
	opacity: 0;
    z-index: 1;
    visibility: hidden;
}
#gnavi.active{
	opacity: 1;
    z-index: 900;
    visibility: visible;
}
#gnavi a{
	-webkit-transition: .3s;
    transition: .3s;
	text-decoration: none;
}
#gnavi a:hover{
	opacity: 0.6;
}
#gnavi #gnavi_visual{
	width:35%;
	margin:0 auto;
	position: fixed;
	border-right: solid 1px #ccc;
	height: 100%;
	display: flex;
    align-items: center;
    justify-content: center;
	opacity: 0;
}
#gnavi.active #gnavi_visual{
	opacity: 1;
}
#gnavi #gnavi_visual .gnavi_logo{
	width:70%;
	max-width: 250px;
	margin:0 auto;
	margin-top: -15%;
	text-align: center;
}
#gnavi #gnavi_inner{
	background-color: #222;
	width:65%;
	min-height: 100vh;
	margin-left: auto;
	text-align: center;
	position: relative;
	display: none;
	padding: 0 4%;
}
#gnavi.active #gnavi_inner{
	display: block;    
}
/* gnavi_list */
.gnavi_list{
	border-right: dashed 1px rgba(255,255,255,0.3);
	border-left: dashed 1px rgba(255,255,255,0.3);
	padding: 80px 0;
	min-height: 100vh;
}
.gnavi_list ul.list{
	font-size: 2.6rem;
	line-height: 1.8;
	margin-bottom: 35px;	
	height: 100%;
	border-top: dashed 1px rgba(255,255,255,0.3);
	border-bottom: dashed 1px rgba(255,255,255,0.3);
}
.gnavi_list ul.list > li{
	border-top: dashed 1px rgba(255,255,255,0.3);
	font-size: 3.0rem;
	line-height: 1.0;
    letter-spacing: 0.1em;
	text-align: left;
	position: relative;
}
.gnavi_list ul.list > li > a,
.gnavi_list ul.list > li > span{
	width: 100%;
	color: #fff;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	padding: 25px 30px;
}
.gnavi_list ul.list > li > ul.sub_list{
	display: flex;
	flex-wrap: wrap;
	padding: 0 35px;
	margin-bottom: 15px;
	color: #fff;
}
.gnavi_list ul.list > li > ul.sub_list > li {
	width: 100%;
	font-size: 2.0rem;
	margin-bottom: 20px;
	position: relative;
	padding-left: 25px;
	box-sizing: border-box;
}
.gnavi_list ul.list > li > ul.sub_list > li::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
    width: 15px;
    height: 1px;
    border-top: 1px solid rgba(255,255,255,0.3);
}
/* gnavi_language */
#gnavi .gnavi_language{
	text-align: center;
	font-size:1.5rem;
	text-decoration: none;
	position: relative;
	display: inline-block;
    padding-left: 35px;
	color: #fff;
}
#gnavi .gnavi_language::after {
    content: '';
    display: inline-block;
    background-size: contain;
    vertical-align: text-bottom;
    background-position: left top;
    background-repeat: no-repeat;
    position: absolute;
	top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
	width: 20px;
    height: 20px;
    background-image: url(/~NUBSenglish/wp-content/themes/nubsenglish/assets/images/common/ico_language_wht.svg);    
}
:lang(ja) #gnavi .gnavi_language .ja {
    opacity: 0.6;
    pointer-events: none;
}
:lang(en) #gnavi .gnavi_language .en {
	opacity: 0.6;
}
@media screen and (max-width: 1240px) {
	#gnavi #gnavi_visual {
		display: none;
	}
	#gnavi #gnavi_inner {
		width: 100%;
	}
}
@media screen and (max-width: 768px) {	
	/* gnavi_list */
	.gnavi_list{
		padding: 70px 0;
	}
	.gnavi_list ul.list{
		margin-bottom: 20px;
	}
	.gnavi_list ul.list > li{
		font-size: 1.8rem;
	}
	.gnavi_list ul.list > li > a,
	.gnavi_list ul.list > li > span{
		padding: 20px 5%;
	}
	.gnavi_list ul.list > li > ul.sub_list{
		padding: 0 5%;
		margin-bottom: 30px;
	}
	.gnavi_list ul.list > li > ul.sub_list > li{
		font-size: 1.5rem;
		padding-left: 15px;
	}
	.gnavi_list ul.list > li > ul.sub_list > li::before {
    	width: 5px;
	}
}

/* ---------------------------------------- 
 - #contents
---------------------------------------- */
#contents {
	width:100%;
	height: auto !important;
	margin:0 auto;
	box-sizing:border-box;
	position: relative;
    z-index: 1;
	background: #fff;
}
#contents #contents_inner {
	position: relative;
	margin:0 auto;
	overflow:hidden;	
	text-align:left;
	width:100%;
}

/* ---------------------------------------- 
 - contents（共通ボタン）
---------------------------------------- */
/* btn_more */
.btn_more {
	margin: 0 auto;
}
.btn_more a {
    position: relative;
    padding-right: 30px;
    line-height: 1.4;
    border-bottom: solid 1px #222;
    display: inline-block;
    -webkit-transition: .3s;
    transition: .3s;
	text-decoration: none;
}
.btn_more a::after {
    content: '';
    display: inline-block;
    background-size: contain;
    vertical-align: text-bottom;
    background-position: left top;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: 0;
	width: 24px;
    height: 10px;
    margin-top: -1px;
    background-image: url(/~NUBSenglish/wp-content/themes/nubsenglish/assets/images/common/ico_arw_next.svg);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
.btn_more a:hover {
    border-bottom: none;
}
.btn_more.blank a::after {
    right: 0;
	width: 12px;
    height: 12px;
    background-image: url(/~NUBSenglish/wp-content/themes/nubsenglish/assets/images/common/ico_blank.svg);
}
@media screen and (max-width: 768px) {
	.btn_more a::after {
		width: 20px;
		height: 7px;
	}
	.btn_more.blank a {
		padding-right: 20px;
	}
}

/* section_btn */
.section_btn {
	margin: 0 auto;
	text-align: center;
}
.section_btn a {
    position: relative;
    padding: 12px 60px 12px 40px;
	font-size: 1.8rem;
    border: solid 1px #222;
    display: inline-block;
    -webkit-transition: .3s;
    transition: .3s;
	text-decoration: none;
	min-width: 350px;
}
.section_btn a::after {
    content: '';
    display: inline-block;
    background-size: contain;
    vertical-align: text-bottom;
    background-position: left top;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: 20px;
	width: 24px;
    height: 10px;
    background-image: url(/~NUBSenglish/wp-content/themes/nubsenglish/assets/images/common/ico_arw_next.svg);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
.section_btn a:hover {
    opacity: 0.6;
}
.section_btn.prev a {
    padding: 12px 40px 12px 60px;
}
.section_btn.prev a::after {
	right: auto;
    left: 20px;
    background-image: url(/~NUBSenglish/wp-content/themes/nubsenglish/assets/images/common/ico_arw_prev.svg);
}
.section_btn.blank a {
    padding-right: 50px;	
}
.section_btn.blank a::after {
    right: 30px;
	width: 12px;
    height: 12px;
    background-image: url(/~NUBSenglish/wp-content/themes/nubsenglish/assets/images/common/ico_blank.svg);
}
@media screen and (max-width: 768px) {
	.section_btn {
		margin: 0 auto;
	}
	.section_btn:last-child {
		margin-bottom: 0;
	}
	.section_btn a {
		padding: 7px 35px 7px 20px;
		font-size: 1.6rem;
	}
	.section_btn a::after {
		right: 15px;
    	width: 20px;
		height: 7px;
	}
	.section_btn.blank a {
		padding-right: 35px;	
	}
	.section_btn.blank a::after {
		right: 20px;
	}
}

/* ---------------------------------------- 
 - contents（下層ページ共通）
---------------------------------------- */
/* page_title */
#page_title{
	text-align: center;
}
#page_title #page_title_inner{
	width: 90%;
	margin: 100px auto 65px;
	text-align: center;
	display: inline-block;
}
#page_title .ttl {
    font-size: 5.6rem;
    line-height: 1.2;
	letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
	#page_title #page_title_inner{
		margin: 30px auto;
	}
	#page_title .ttl {
		font-size: 6.0vw;
	}
}

/* page_lead */
#page_lead {
	width:90%;	
	max-width: 1010px;
	margin: 0 auto 100px;
	text-align: center;
}
#page_lead .visual{
	width:100%;	
	max-width: 950px;
	margin: 0 auto 30px;
}
#page_lead .lead{
	display: inline-block;
	text-align: left;
	font-size: 1.8rem;
}
#page_lead .lead strong{
	font-weight: bold;
}
@media screen and (max-width: 768px) {
	#page_lead {
		margin-bottom: 50px;
	}
	#page_lead .visual{
		margin-bottom: 15px;
	}
	#page_lead .lead{
		font-size: 1.4rem;
	}
}

/* page_section */
.page_section {
	margin: 120px auto;
}
.page_section.bg-gry {
	background: #f6f6f6;
	padding: 100px 0;
}
.page_section_inner {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}
.page_section .ttl-h2 {
	font-size: 3.8rem;
    line-height: 1.4;
	margin: 1.0em auto;
}
.page_section .ttl-h3 {
	font-size: 2.4rem;
    line-height: 1.6;
	margin: 2.0em auto 0.5em;
}
.page_section .ttl-h4 {
	font-size: 1.8rem;
	font-weight: bold;
    line-height: 1.6;
	margin: 1.0em auto;
	padding-left: 60px;
	position: relative;
}
.page_section .ttl-h4::before {
    background: #ccc;
    content: "";
    position: absolute;
    width: 45px;
    height: 1px;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.page_section .ttl-h2:first-child,
.page_section .ttl-h3:first-child,
.page_section .ttl-h4:first-child {
	margin-top: 0;
}
.page_section_inner > .txt,
.page_section_inner > .visual {
	margin: 1.0em auto;
}
.page_section_inner > .txt:last-child,
.page_section_inner > .visual:last-child{
	margin-bottom: 0;
}
/* text-link */
.page_section .txt-link a {
	text-decoration:none;
	transition: .3s;
}
.page_section .txt-link a:hover {
	text-decoration: underline;
}
.page_section p.txt-link {
	margin: 1.0em 0.2em;
}
.page_section p.txt-link,
.page_section ul.txt-link li {
	font-size: 1.7rem;
	line-height: 1.6;	
	position: relative;
    padding-left: 20px;
    box-sizing: border-box;
    background: url(/~NUBSenglish/wp-content/themes/nubsenglish/assets/images/common/ico_list_arw.svg) no-repeat left 7px;
    background-size: 7px;
}
.page_section ul.txt-link li.noLink {
    padding-left: 0;
    background: none;
}
.page_section ul.txt-link {
    margin: 1.5em auto;
}
.page_section ul.txt-link:last-child {
	padding-bottom: 0;
}
.page_section ul.txt-link li {
	margin: 0.7em 0.2em;
}
.page_section p.txt-link a.blank,
.page_section ul.txt-link li a.blank { /* blank */
	background: url(/~NUBSenglish/wp-content/themes/nubsenglish/assets/images/common/ico_blank.svg) no-repeat right center;
    padding-right: 20px;
	background-size: 12px;
}
/* btn_more,section_btn */
.page_section .btn_more{
	margin: 25px auto 50px;
}
.page_section .section_btn {
	margin: 50px auto;
}
.page_section .btn_more:last-child,
.page_section .section_btn:last-child{
	margin-bottom: 0;
}
@media screen and (max-width: 768px) {
	.page_section{
		margin: 60px auto;
	}
	.page_section.bg-gry {
		padding: 50px 0;
	}
	.page_section .ttl-h2 {
		font-size: 2.4rem;
	}
	.page_section .ttl-h3 {
		font-size: 1.8rem;
	}
	.page_section .ttl-h4 {
		font-size: 1.6rem;
		padding-left: 30px;
	}
	.page_section .ttl-h4::before {
		width: 20px;
	}
	.page_section .txt {
		font-size: 1.4rem;
	}
	/* text-link */
	.page_section p.txt-link,
	.page_section ul.txt-link li {
		font-size: 1.6rem;
		background-position: left 7px;
	}
	/* btn_more,section_btn */
	.page_section .btn_more{
		margin: 20px auto 40px;
	}
	.page_section .section_btn {
		margin: 20px auto 40px;
	}
}

/* table_box */
.table_box {
	width:100%;
	margin: 30px auto;
}
.table_box:last-child {
	margin-bottom: 0;
}
.table_box .w100 {
	width:100%;
}
.table_box .w90 {
	width:90%;
}
.table_box .w80 {
	width:80%;
}
.table_box .w70 {
	width:70%;
}
.table_box .w60 {
	width:60%;
}
.table_box .w50 {
	width:50%;
}
.table_box .w40 {
	width:40%;
}
.table_box .w30 {
	width:30%;
}
.table_box .w20 {
	width:20%;
}
.table_box table { 
	margin:0 auto;
	text-align:left;
	border-top:solid 1px #ccc;
	border-left:solid 1px #ccc;
	border-spacing: 0;
}
.table_box table th {
	padding:0.7em 0.7em;
	text-align:center;
	border-right:solid 1px #ccc;
	border-bottom:solid 1px #ccc;
	vertical-align: middle;
	font-weight: bold;
}
.table_box table td {
	padding:0.7em 0.7em;
	text-align:center;
	border-right:solid 1px #ccc;
	border-bottom:solid 1px #ccc;
	vertical-align: middle;
}
.table_box .notice-top {
	margin: 0 auto 0.5em;
}
.table_box .notice-btm {
	margin: 1.0em auto 0;
}
@media screen and (max-width: 768px) {
	.table_box {
		margin: 15px auto;
	}
	.table_box table.w100,
	.table_box table.w90,
	.table_box table.w80,
	.table_box table.w70,
	.table_box table.w60,
	.table_box table.w50,
	.table_box table.w40,
	.table_box > .w100,
	.table_box > .w90,
	.table_box > .w80,
	.table_box > .w70,
	.table_box > .w60,
	.table_box > .w50,
	.table_box > .w40 {
		width:100%;
	}
	/* table_scroll */
	.table_box .table_scroll {
		width: 100%;
		overflow-x:auto;
		overflow-y:hidden;
		background: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(56, 56, 56, 0.2)) 0 0/10px 100%, linear-gradient(to right, rgba(255, 255, 255, 0), rgba(56, 56, 56, 0.2)) right/10px 100%;
		background-repeat: no-repeat;
		background-attachment: scroll;
	}
	.table_box .table_scroll table {
		background: linear-gradient(to left, hsla(0,0%,100%,0), white 15px) 0 0 / 50px 100%, linear-gradient(to right, hsla(0,0%,100%,0), white 15px) right / 50px 100%;
		background-repeat: no-repeat;
		background-attachment: local;
		border-collapse: collapse;
	}
	.table_box .table_scroll th {
		white-space: nowrap;
	}
	.table_box .table_scroll td {
		white-space: nowrap;
	}
}

/* ---------------------------------------- 
 - footer
---------------------------------------- */
#footer {
	position: relative;
	width:100%;
	background:#fff;
	padding:65px 0 30px;
	border-top: solid 7px #e6e6e6;
}
#footer #footer_inner{
	width: 94%;
    max-width: 1100px;
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}
#footer  a {
	-webkit-transition: .3s;
    transition: .3s;
	text-decoration: none;
}
#footer a:hover {
	opacity: 0.6;
}
#footer .footer_add {
	display: inline-block;
	text-align: right;
	font-size: 1.4rem;
	line-height: 1.6;
    letter-spacing: 0.1em;
	width: 48%;
    max-width: 550px;
}
#footer .footer_add .logo {
	width:100%;
	max-width: 255px;
	margin-bottom: 15px;
    margin-left: auto;
}
#footer .logo_nu {
	width: 48%;
    max-width: 385px;
}
#footer .logo_nu img {
	width: 100%;
}
#footer .copy {
	font-size: 1.1rem;
    color: #aaa;
    width: 100%;
    margin-top: 50px;
    text-align: center;
}
@media screen and (max-width: 768px) {
	#footer {
		padding:50px 0 35px;
		border-width: 4px;
	}
	#footer #footer_inner{
		width: 90%;
		display: block;
	}
	#footer .logo_nu {
		width: 80%;
		margin: 0 auto 30px;
	}
	#footer .footer_add {
		width: 100%;
		max-width: 100%;
		font-size: 1.4rem;
		text-align: center;
	}
	#footer .footer_add .logo {
		width:80%;
		margin: 0 auto 15px;		
	}
	#footer .copy {
		font-size: 1.0rem;
		text-align: center;
		position: static;
		margin-top: 20px;
	}
}