/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
 
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, li {
    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;
}


/* --------------------------------------------------- GENERAL SETTING */
*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}
html {
	font-size: 14px;
	letter-spacing: 1px;
	color: #333;
}
body {
	font-family: "Open Sans" , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
	-webkit-font-smoothing: antialiased;
}
a:link {
	color: #333;
	text-decoration: none;
}
a:visited {
	color: #333;
}
a:hover {
	cursor: pointer;
	color: #0C3768;
	opacity: .6;
	-webkit-transition: all .5s;
	transition: all .5s;
}
a:active {
	color: #333;
}
p {
	line-height: 1.5em;
	margin-bottom: .5rem;
}
img {
	max-width: 100%;
	height: auto;
	display: block;
}
.col {
	overflow: hidden;
	zoom: 1;
}


/* --------------------------------------------------- ICON FONTS */
@font-face {
  font-family: 'icomoon';
  src:  url('../fonts/icomoon.eot?f3w35j');
  src:  url('../fonts/icomoon.eot?f3w35j#iefix') format('embedded-opentype'),
    url('../fonts/icomoon.ttf?f3w35j') format('truetype'),
    url('../fonts/icomoon.woff?f3w35j') format('woff'),
    url('../fonts/icomoon.svg?f3w35j#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-blog:before {
  content: "\e900";
}
.icon-facebook:before {
  content: "\e901";
}
.icon-instagram:before {
  content: "\e902";
}
.icon-line:before {
  content: "\e903";
}
.icon-phone:before {
  content: "\e942";
}


@import url('https://fonts.googleapis.com/css?family=Crimson+Text:400,700');


/* --------------------------------------------------- HEADER */
header {
	position: fixed;
	top: 0;
	width: 100%;
	height: 50px;
	z-index: 1000;
}
.mobile-logo {
	width: 90px;
	margin: 15px 0;
}

/* NAVIGATION */
.nav-btn,
.nav-btn span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}
.nav-btn {
	position: fixed;
	top: 15px;
	right: 15px;
	width: 30px;
	height: 23px;
	z-index: 2000;
}
.nav-btn span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 3px;
	background: #000;
	border-radius: 3px;
}
.nav-btn.active span {
	background: #fff;
}
.nav-btn span:nth-of-type(1) {
	top: 0;
}
.nav-btn span:nth-of-type(2) {
	top: 10px;
}
.nav-btn span:nth-of-type(3) {
	bottom: 0;
}
.nav-btn.active span:nth-of-type(1) {
	-webkit-transform: translateY(10px) rotate(-45deg);
	transform: translateY(10px) rotate(-45deg);
}
.nav-btn.active span:nth-of-type(2) {
	opacity: 0;
}
.nav-btn.active span:nth-of-type(3) {
	-webkit-transform: translateY(-10px) rotate(45deg);
	transform: translateY(-10px) rotate(45deg);
}
.mobile-menu {
    display:none;
    position:absolute;
    top:0;
    left:0;
    width:100%;
	height: 100vh;
    background:rgba(0,0,0,.8);
}
nav {
    display:block;
    width:100%;
    margin:0 auto;
}
nav ul {
    padding: 50px 20px;
}
nav li a:link {
    display: block;
    width: 100%;
    color: #FFF;
    padding: 1.5rem .5rem;
    position: relative;
    border-bottom: 1px solid #999;
}
nav li a:visited {
	color: #FFF;
}
nav li a:hover {
	color: #FFF;
}
nav li a:active {
	color: #FFF;
}
.clone-nav {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 900;
	width: 100%;
	transition: .5s;
	transform: translateY(-100%);
	height: 60px;
	background: rgba(255,255,255,.8);
}
.is-show {
	transform: translateY(0);
}


/* --------------------------------------------------- CONTENTS */
.row {
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}
.row.another {
	padding-right: 5px;
	padding-left: 5px;
	margin-right: auto;
	margin-left: auto;
}
section {
	padding-top: 3rem;
	padding-bottom: 3rem;
}
.sec-title {
	margin-bottom: 2rem;
	text-align: center;
	font-family: 'Crimson Text', serif;
	font-weight: 700;
	font-size: 1.25rem;
	margin-right: auto;
	margin-left: auto;
	overflow: hidden;
}
.sec-title span {
	position: relative;
	display: inline-block;
	margin: 0 2.5em;
	padding: 0 1em;
	text-align: left;
}
.sec-title span::before,
.sec-title span::after {
	position: absolute;
	top: 50%;
	content: '';
	width: 25px;
	height: 2px;
	background-color: #0C3768;
}
.sec-title span::before {
	right: 100%;
}
.sec-title span::after {
	left: 100%;
}
.large-text {
	font-size: 1.25rem;
	font-weight: bold;
	margin-bottom: 1rem;
}

/* sec01 */
.sec-01 {
	background: #f5f5f5;
	padding-top: 0;
	padding-bottom: 0;
}
#slider #skippr-slider {
	height: 70vh;
	max-width: 1700px;
	margin-right: auto;
	margin-left: auto;
}
#slider #skippr-slider div {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

/* sec02 */
.sec-02 .container .col.photo-box {
	padding-top: 2rem;
}

/* sec03 */
.sec-03 .container .row .news-box,
.sec-04 .container .row .blog-box {
	margin-bottom: 2rem;
}
.sec-03 .container .row .news-box .news-box-inner {
	margin-bottom: .75rem;
	padding-bottom: .75rem;
	border-bottom: solid #dcdcdc 1px;
}
.sec-03 .container .row .news-box .news-box-inner .post-in-box {
	margin-bottom: .5rem;
}
.sec-03 .container .row .news-box .news-box-inner .post-in-box span {
	font-size: .9rem;
	padding-right: .5rem;
}
.sec-03 .container .row .news-box .news-box-inner .title-box {
	font-weight: bold;
	line-height: 125%;
}
.sec-03 .container .row .more-box p a,
.sec-04 .container .row .more-box p a {
	width: 200px;
	padding: .5rem .75rem;
	display: block;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	border: solid #dcdcdc 1px;
    -webkit-border-radius: 30px;
       -moz-border-radius: 30px;
			border-radius: 30px;
}

/* sec04 */
.sec-04 {
	background: #f5f5f5;
}
.sec-04 .container .row .col.blog-box .col-33 .blog-box-inner {
	background: #fff;
	padding: 10px;
	margin-bottom: 1rem;
	box-shadow: 0 0 4px #cccccc;
}
.sec-04 .container .row .col.blog-box .col-33 .blog-box-inner .i-catch {
	margin-top: .5rem;
	margin-bottom: 1.5rem;
	min-height: 215px;
	position: relative;
	overflow: hidden;
}
.sec-04 .container .row .col.blog-box .col-33 .blog-box-inner .i-catch img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translateY(-50%) translateX(-50%);
			transform: translateY(-50%) translateX(-50%);
}
.sec-04 .container .row .col.blog-box .col-33 .blog-box-inner .blog-title {
	font-size: 1.15rem;
	font-weight: bold;
	margin-bottom: .75rem;
	line-height: 125%;
	height: 20px;
	overflow: hidden;
}
.sec-04 .container .row .col.blog-box .col-33 .blog-box-inner .post-in-box {
	margin-bottom: .5rem;
}
.sec-04 .container .row .col.blog-box .col-33 .blog-box-inner .blog-text {
    height: 65px;
	overflow: hidden;
	margin-bottom: 1rem;
}
.sec-04 .container .row .col.blog-box .col-33 .blog-box-inner .post-in-box span {
	font-size: .9rem;
	padding-right: .5rem;
}

/* sec05 */
.sec-05 .container .row .col.staff-box .col-33 .staff-box-inner {
	margin-bottom: 2rem;
}
.sec-05 .container .row .col.staff-box .col-33 .staff-box-inner .staff-img {
	width: 200px;
	height: 200px;
	overflow: hidden;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 2rem;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
			border-radius: 50%;
}
.sec-05 .container .row .col.staff-box .col-33 .staff-box-inner .staff-name {
	font-size: 1.25rem;
	font-weight: bold;
	color: #0C3768;
	margin-bottom: 1rem;
}
.sec-05 .container .row .col.staff-box .col-33 .staff-box-inner .staff-lank {
	font-size: .9rem;
}

/* sec06 */
.sec-06 {
	background: #f5f5f5;
}
.sec-06 .container .row .col.menu-box {
	border-bottom: solid #ccc 1px;
	padding-bottom: 1rem;
	margin-bottom: 1rem;
}
.sec-06 .container .row .col.menu-box .col-50 .menu-box-inner {
	margin-bottom: 2rem;
}
.sec-06 .container .row .col.menu-box .col-50 .menu-box-inner .menu-title {
	font-size: 1.25rem;
	font-weight: bold;
	color: #0C3768;
	margin-bottom: 1.5rem;
}
.sec-06 .container .row .col.menu-box .col-50 .menu-box-inner .menu-title span {
	font-size: .85rem;
	font-weight: normal;
	color: #333;
	padding-left: .5rem;
}
.sec-06 .container .row .col.menu-box .col-50 .menu-box-inner table {
	width: 100%;
}
.sec-06 .container .row .col.menu-box .col-50 .menu-box-inner table tr td {
	width: 100%;
	line-height: 1.5rem;
	display: block;
}
.sec-06 .container .row .col.menu-box .col-50 .menu-box-inner table tr td span.sub_txt {
	font-size: 11px;
	color: #666666;
}
.sec-06 .container .row .col.menu-box .col-50 .menu-box-inner table tr td:nth-child(1) {
	border-bottom: solid #dcdcdc 1px;
	margin-bottom: .5rem;
	padding-bottom: .5rem;
}
.sec-06 .container .row .col.menu-box .col-50 .menu-box-inner table tr td:nth-child(2) {
	padding-bottom: .75rem;
	text-align: right;
}
.sec-06 .container .row .menu-box-hosoku p {
    font-size: .85rem;
}

/* sec07 */
.sec-07 .container .row .info-box {
	margin-bottom: 2rem;
}
.sec-07 .container .row .info-box .col-50 .info-photo {
	margin-bottom: 2rem;
}
.sec-07 .container .row .info-box .col-50 .info-box-inner .info-name {
	margin-bottom: 1rem;
}
.sec-07 .container .row .info-box .col-50 .info-box-inner .info-tel {
	font-size: 1.5rem;
	font-weight: bold;
	color: #0C3768;
	margin-bottom: 1rem;
}
.sec-07 .container .row .info-box .col-50 .info-box-inner .info-tel a {
	color: #0C3768;
}
.sec-07 .container .row .info-box .col-50 .info-box-inner .open-box {
	overflow: hidden;
	zoom: 1;
	margin-bottom: .5rem;
}
.sec-07 .container .row .info-box .col-50 .info-box-inner .open-box ul li {
	float: left;
	line-height: 1.5em;
}
.sec-07 .container .row .info-box .col-50 .info-box-inner .open-box ul li:nth-child(1) {
	width: 25%;
}
.sec-07 .container .row .info-box .col-50 .info-box-inner .open-box ul li:nth-child(2) {
	width: 75%;
}
.sec-07 .container .row .info-box .text-box {
	border-bottom: solid #dcdcdc 1px;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
}
.sec-07 .container .row .info-box .text-box .text-box-title {
	font-size: 1.25rem;
	font-weight: bold;
	color: #0C3768;
	margin-bottom: 1rem;
}
.sec-07 .container .row .info-box .map {
	margin-bottom: 2rem;
}
.sec-07 .container .row .info-box .access {
	margin-bottom: 1rem;
}
.sec-07 .container .row .info-box .access .access-title {
	font-size: 1.25rem;
	font-weight: bold;
	color: #0C3768;
	margin-bottom: 1rem;
}
.sec-07 .container .row .info-box .access .access-text {
	font-weight: bold;
}

/* OVERLAY */
.clear-bg {
	padding-bottom: 0;
}
.overlay-box {
	position: relative;
}
.overlay {
	background: url(../img/slider_1.jpg) no-repeat center;
	background-size: cover;
	background-attachment: fixed;
	height: 300px;
}
.overlay-on {
	background: #0C3768;
	opacity: .5;
	height: 300px;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
}


/* --------------------------------------------------- FOOTER */
footer {
	background: #333;
	padding-top: 3rem;
	padding-bottom: 3rem;
}
footer .container .row .footer-box .col-50 {
	float: left;
	width: 50%;
}
footer .container .row .footer-box .col-50 ul li a {
	display: block;
	border-bottom: dotted #dcdcdc 1px;
	margin-bottom: .75rem;
	padding-bottom: .5rem;
	color: #999;
}
footer .container .row .footer-box .col-50 .footer-logo img {
	width: 125px;
	margin-left: auto;
}
footer .container .row .footer-box .copy {
	color: #fff;
	font-size: .9rem;
	text-align: center;
	margin-top: 3rem;
}


/* --------------------------------------------------- SINGLE PAGE */
.page-header {
	margin-bottom: 3rem;
}
.page-header h1 {
	font-size: 1.5rem;
	font-weight: bold;
	color: #999;
}
.single-page {
	margin-top: 8rem;
	margin-bottom: 3rem;
}
.single-page .single-content {
	padding-bottom: 3rem;
}
article .entry-title {
	font-size: 1.25rem;
	font-weight: bold;
	margin-bottom: 1rem;
	line-height: 125%;
}
article .entry-meta {
	font-size: .9rem;
	padding: .75rem 0;
	border-top: solid #dcdcdc 1px;
	border-bottom: solid #dcdcdc 1px;
	margin-bottom: 1rem;
}
article .entry-content {
	margin-bottom: 5rem;
}
article .entry-content a {
	text-decoration: underline;
}
article .entry-content table {
	width: 100% !important;
	border: solid #BABABA 1px;
}
article .entry-content table tr td {
	border: solid #BABABA 1px;
	vertical-align: middle;
	text-align: center;
}

aside .aside-section {
	margin-bottom: 2rem;
}
aside .aside-title {
	font-size: 1.25rem;
	margin-bottom: 2rem;
	position: relative;
}
aside .aside-title:after {
	position: absolute;
	left: 0;
	bottom: -10px;
	content:'';
	width: 50px;
	height: 2px;
	background-color: #0C3768;
}
aside .aside-section ul li {
	line-height: 1.5em;
	border-bottom: solid #dcdcdc 1px;
	margin-bottom: .75rem;
}
aside .aside-section ul li a {
	padding-bottom: .75rem;
	display: block;
}
aside .aside-section.ano ul li {
	padding-bottom: .75rem;
}
aside .aside-section.ano ul li a {
	display: inline;
}
aside .aside-section ul li span {
	display: block;
	font-size: .9rem;
}
.aside-section .more-box {
	margin-top: 1rem;
}
.aside-section .more-box .more-text a {
	font-size: .9rem;
	width: 200px;
    padding: .5rem .75rem;
    display: block;
    margin-left: 15px;
	position: relative;
}
.aside-section .more-box .more-text a:before {
	position: absolute;
	content: '>>';
	top: .5rem;
	left: -10px;
}
.single-content .navigation {
	margin-top: 3rem;
	margin-bottom: 2rem;
	padding-top: 1rem;
	padding-bottom: 1rem;
}
.single-content .navigation .alignright {
	text-align: right;
	line-height: 125%;
}
.single-content .navigation .alignleft {
	margin-bottom: 1rem;
	line-height: 125%;
}
.single-content .navigation .alignleft a {
	position: relative;
	margin-left: 1.5rem;
}
.single-content .navigation .alignright a {
	position: relative;
	margin-right: 1.5rem;
}


/* --------------------------------------------------- TEXT EDITOR */
article .entry-content img {
	margin-bottom: 1rem;
}
article .entry-content h1 {
	font-size: 2rem;
}
article .entry-content h2 {
	font-size: 1.75rem;
}
article .entry-content h3 {
	font-size: 1.5rem;
}
article .entry-content h4 {
	font-size: 1.25rem;
}
article .entry-content h5 {
	font-size: 1rem;
}
article .entry-content h6 {
	font-size: .85rem;
}
article .entry-content h1,
article .entry-content h2,
article .entry-content h3,
article .entry-content h4,
article .entry-content h5,
article .entry-content h6 {
	font-weight: bold;
	margin-bottom: 1rem;
	line-height: 1.25em;
}
article .entry-content strong {
	font-weight: bold;
}
article .entry-content em {
	font-style: italic;
}
article .entry-content .size-thumbnail {
	width: auto;
	height: auto;
}
article .entry-content .alignleft {
	float: left;
	margin-right: 1rem;
	margin-bottom: 1rem;
}
article .entry-content .aligncenter {
	display: inherit;
	margin-right: auto;
	margin-left: auto;
}
article .entry-content .alignright {
	float: right;
	margin-left: 1rem;
	margin-bottom: 1rem;
}


/* --------------------------------------------------- 404 PAGE */
.n404-title {
	font-size: 2rem;
	margin-bottom: 2rem;
}
.n404-text {
	font-size: 1.25rem;
	font-weight: bold;
	margin-bottom: 1rem;
}


/* --------------------------------------------------- ARCHIVE PAGE */
article .entry-content.archive {
    margin-bottom: 3rem;
}
.article-inner .inner-img {
	margin-bottom: 1rem;
	min-height: 215px;
	overflow: hidden;
	position: relative;
}
.article-inner .inner-img img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translateY(-50%) translateX(-50%);
			transform: translateY(-50%) translateX(-50%);
}
.navigation.posts-navigation {
	display: none;
}
.pagination{
    text-align: center;
	margin-top: 3rem;
	margin-bottom: 3rem;
}
a.page-numbers,
.pagination .current{
    background: #fff;
    border: solid 1px #ccc;
    padding:5px 8px;
    margin:0 2px;
    text-decoration: none;
}
.pagination .current{
    background: #333;
    border: solid 1px #333;
    color: #fff;
}


/* --------------------------------------------------- MEDIA QUERY */
@media (min-width: 375px) {
}

@media (min-width: 768px) {
	/* GENERAL SETTING */
	html {
		font-size: 14px;
	}
	
	
	
	/* CONTENTS */
	.row {
    	padding-right: 25px;
    	padding-left: 25px;
	}
	.row.another {
    	padding-right: 10px;
    	padding-left: 10px;
	}
	.row.tablet {
    	padding-right: 10px;
    	padding-left: 10px;
	}
	section {
    	padding-top: 5rem;
    	padding-bottom: 5rem;
	}
	.sec-title {
    	margin-bottom: 3rem;
	}
	
	/* SEC-02 */
	.sec-02 .container .col.photo-box .col-25 {
    	float: left;
		width: 50%;
	}
	.sec-02 .container .col.photo-box {
    	padding-top: 5rem;
	}
	
	/* SEC-03 */
	.sec-03 .container .row .news-box,
	.sec-04 .container .row .blog-box {
    	margin-bottom: 3rem;
	}
	.sec-03 .container .row .news-box .news-box-inner .post-in-box {
    	float: left;
		width: 170px;
	}
	.sec-03 .container .row .news-box .news-box-inner .text-box {
    	float: left;
		width: auto;
	}
	
	/* SEC-04 */
	.sec-04 .container .row .col.blog-box .col-33 {
    	float: left;
		width: 50%;
	}
	.sec-04 .container .row .col.blog-box .col-33 .blog-box-inner {
    	padding: 10px;
		margin-right: 5px;
		margin-left: 5px;
	}
	
	/* SEC-05 */
	.sec-05 .container .row .col.staff-box .col-33 {
		float: left;
		width: 50%;
	}
	.sec-05 .container .row .col.staff-box .col-33 .staff-box-inner {
    	margin-right: 15px;
		margin-left: 15px;
	}
	
	/* SEC-06 */
	.sec-06 .container .row .col.menu-box .col-50 {
    	float: left;
		width: 50%;
	}
	.sec-06 .container .row .col.menu-box .col-50 .menu-box-inner {
		margin-right: 15px;
		margin-left: 15px;
		margin-bottom: 3rem;
	}
	.sec-06 .container .row .col.menu-box {
    	padding-bottom: 2rem;
    	margin-bottom: 2rem;
	}
	.sec-06 .container .row .menu-box-hosoku {
    	margin-right: 15px;
		margin-left: 15px;
	}
	
	/* SEC-07 */
	.sec-07 .container .row .info-box .col-50 {
    	float: left;
		width: 50%;
	}
	.sec-07 .container .row .info-box .col-50:nth-child(1) {
    	padding-right: 15px;
	}
	.sec-07 .container .row .info-box .col-50:nth-child(2) {
    	padding-left: 15px;
	}
	.sec-07 .container .row .info-box {
    	margin-bottom: 3rem;
	}
	.sec-07 .container .row .info-box .col-50 .info-photo {
    	margin-bottom: 0;
	}
	
	
	
	/* FOOTER */
	footer .container .row .footer-box .col-50 .footer-logo img {
    	width: 150px;
		margin-left: auto;
	}
	
	/* SINGLE PAGE */
	.single-content {
		float: left;
		width: 70%;
	}
	aside {
		float: left;
		width: 25%;
		padding-left: 5%;
	}
	aside .aside-title {
    	font-size: 1rem;
	}
	
	/* ARCHIVE PAGE */
	.article-inner .inner-img {
    	float: left;
		width: 30%;
	}
	.article-inner .inner-content {
    	float: left;
		width: 65%;
		padding-left: 5%;
	}
	article .entry-content.archive {
    	margin-bottom: 0;
	}
	.article-inner {
		margin-bottom: 2rem;
	}
	.article-inner .inner-img {
		min-height: 100px;
	}
	
}

@media (min-width: 920px) {
	/* CONTENTS */
	.row {
		width: 780px;
	}
	
}

@media (min-width: 1200px) {
	/* GENERAL SETTING */
	html {
		font-size: 15px;
	}
	
	/* NAVIGATION */
	.mobile-menu {
    	display: block;
    	position: absolute;
    	top: 0;
    	left: 0;
    	width: 100%;
    	height: auto;
    	background: rgba(0,0,0,0);
	}
	.nav-btn {
		display: none;
	}
	.mobile-logo {
		float: left;
		width: 25%;
	}
	.mobile-logo img {
		width: 125px;
	}
	.mobile-menu {
		float: left;
		width: 75%;
		margin-top: 5px;
		position: static;
	}
	nav {
		width: 100%;
		margin-left: auto;
	}
	nav ul {
    	padding: 0;
	}
	nav li {
    	float: left;
		width: 14.285%;
		text-align: center;
	}
	nav li a:link {
    	border-bottom: none;
	}
	nav li a:link,
	nav li a:visited {
		color: #333;
	}
	.clone-nav {
		height: 70px;
	}
	
	/* NAVIGATION */
	.mobile-logo {
    	width: 40%;
	}
	.mobile-menu {
    	width: 60%;
	}
	
	/* CONTENTS */
	.row {
		width: 1170px;
	}
	.row.another {
    	padding-right: 0;
    	padding-left: 0;
	}
	.row.tablet {
    	padding-right: 5px;
    	padding-left: 5px;
	}
	.sec-title {
    	font-size: 1.5rem;
		margin-bottom: 4rem;
	}
	.sec-title span::before,
	.sec-title span::after {
		width: 50px;
	}
	
	#slider #skippr-slider {
		height: 80vh;
	}
	
	/* SEC-02 */
	.sec-02 .container .col.photo-box .col-25 {
    	width: 25%;
	}
	
	/* SEC-04 */
	.sec-04 .container .row .col.blog-box .col-33 {
    	width: 33.3333%;
	}
	.sec-04 .container .row .col.blog-box .col-33 .blog-box-inner {
    	padding: 10px;
		margin-right: 15px;
		margin-left: 15px;
	}
	.sec-04 .container .row .col.blog-box .col-33 .blog-box-inner .blog-text {
    	height: 70px;
	}
	
	/* SEC-05 */
	.sec-05 .container .row .col.staff-box .col-33 {
    	width: 33.3333%;
	}
	.sec-05 .container .row .col.staff-box .col-33 .staff-box-inner {
    	margin-right: 20px;
		margin-left: 20px;
	}
	
	/* SEC-06 */
	.sec-06 .container .row .col.menu-box .col-50 .menu-box-inner {
		margin-right: 20px;
		margin-left: 20px;
	}
	
	/* SEC-07 */
	.sec-07 .container .row .info-box .col-50:nth-child(1) {
    	padding-right: 20px;
	}
	.sec-07 .container .row .info-box .col-50:nth-child(2) {
    	padding-left: 20px;
	}
	.sec-07 .container .row .info-box .col-50 .info-box-inner .open-box ul li:nth-child(1) {
		width: 15%;
	}
	.sec-07 .container .row .info-box .col-50 .info-box-inner .open-box ul li:nth-child(2) {
		width: 85%;
	}
	
	/* FOOTER */
	footer .container .row .footer-box .col-50 ul li {
    	float: left;
    	width: 31.8333%;
		margin-right: 1.5%;
	}
	footer .container .row .footer-box .col-50 ul li a {
    	margin-bottom: 1rem;
	}
	footer .container .row .footer-box .copy {
    	margin-top: 5rem;
	}
	
	/* SINGLE PAGE */
	aside .aside-title {
    	font-size: 1.25rem;
	}
	
	.article-inner .inner-img {
		min-height: 150px;
	}
	
}





/* 追加css */
.h_sns_box {
	padding: 70px 10px 0 20px;
}
.h_sns_box ul {
	overflow: hidden;
}
.h_sns_box ul li {
	float: left;
	margin-right: 15px;
}
.h_sns_box ul li a {
	color: #fff;
	font-size: 21px;
}

.f_sns_box {
	margin-top: 4rem;
}
.f_sns_box ul {
	overflow: hidden;
	width: 120px;
	margin: 0 auto;
}
.f_sns_box ul li {
	float: left;
	width: 30px;
	text-align: center;
}
.f_sns_box ul li a {
	color: #fff;
	font-size: 18px;
}
footer .container .row .footer-box .copy {
    margin-top: 2rem;
}

@media (min-width: 1200px) {
	.mobile-logo {
    	width: 15%;
	}
	.mobile-menu {
    	width: 85%;
		overflow: hidden;
	}
	.h_sns_box {
		float: left;
		width: 23%;
		padding: 1.25rem 1rem;
	}
	.h_sns_box ul li a {
		color: #333;
		font-size: 21px;
	}
	.mobile-menu nav {
		float: right;
		width: 77%;
	}
	nav ul {
    	overflow: hidden;
	}
	
	.f_sns_box ul {
		width: 200px;
	}
	.f_sns_box ul li {
		width: 50px;
	}
	.f_sns_box ul li a {
		font-size: 21px;
	}
}




