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




/**
 *
 * リセット ～ デフォルトセットアップ
 *
 */

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-style: normal;
	font-weight: normal;
	font-size: 100%;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, main, nav, section {
	display: block;
}

html {
	font-size: 62.5%;
    overflow-y: scroll;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

*,
*: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;
}

body {
}

input, textarea {
	margin: 0;
	padding: 0;
}

ol, ul {
    list-style:none;
}

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

caption, th, td {
    text-align: left;
}

blockquote, q {
	quotes: none;
}

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

a:focus {
	outline:none;
}

a img {
	border: 0;
}

/* --- リセット end --- */


/* --- Typography ---*/
body,
button,
input,
select,
textarea {
	color: #333;
	font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
	clear: both;
	font-weight: 700;
}

p {
	margin-bottom: 1em;
}

b,
strong {
	font-weight: 700;
}

small {
	font-size: 75%;
}

big {
	font-size: 125%;
}


/* --- Elements --- */
hr {
	background-color: #eaeaea;
	background-color: rgba(51, 51, 51, 0.1);
	border: 0;
	height: 1px;
	margin-bottom: 1.6em;
}

ul,
ol {
	margin: 0 0 1.6em 0;
}

ul {
	list-style: none;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
}

dl {
	margin-bottom: 1.6em;
}

dt {
	font-weight: bold;
}

dd {
	margin-bottom: 1.6em;
}

table,
th,
td {
	border: 1px solid #eaeaea;
	border: 1px solid rgba(51, 51, 51, 0.1);
}

table {
	border-collapse: collapse;
	border-width: 1px 0 0 1px;
	margin: 0 0 1.6em;
	table-layout: fixed; /* テーブルのセル幅、割合の設定 */
	/* width: 100%; */
}

caption,
th,
td {
	font-weight: normal;
	text-align: left;
}

th {
	border-width: 0 1px 1px 0;
	font-weight: 700;
}

td {
	border-width: 0 1px 1px 0;
}

th, td {
	padding: 0.4em;
}

img {
	-ms-interpolation-mode: bicubic; /* IE8で画像を縮小したとき汚く見える→きれいに見せる */
	border: 0;
	height: auto;
	max-width: 100%;
	vertical-align: bottom;
}




/* --- その他追加CSS --- */

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

.inline_block {  
	display: inline-block;  
	/* *display: inline; */
	/* *zoom: 1; */
}

a {
	text-decoration: none;
}

a,a:hover {
	/*
	-webkit-transition: 0.7s;
	-moz-transition: 0.7s;
	-o-transition: 0.7s;
	transition: 0.7s;
	*/
}

a img:hover {
	filter: alpha(opacity=75);
	-moz-opacity:0.75;
	opacity:0.75;
}


.textL {text-align: left;}
.textR {text-align: right;}
.textC {text-align: center;}
.mT0 {margin-top: 0;} .mT5 {margin-top: 5px;} .mT10 {margin-top: 10px;} .mT15 {margin-top: 15px;} .mT20 {margin-top: 20px;} .mT25 {margin-top: 25px;} .mT30 {margin-top: 30px;}
.mB0 {margin-bottom: 0;} .mB5 {margin-bottom: 5px;} .mB10 {margin-bottom: 10px;} .mB15 {margin-bottom: 15px;} .mB20 {margin-bottom: 20px;} .mB25 {margin-bottom: 25px;} .mB30 {margin-bottom: 30px;}
.mL0 {margin-left: 0;} .mL5 {margin-left: 5px;} .mL10 {margin-left: 10px;} .mL15 {margin-left: 15px;} .mL20 {margin-left: 20px;} .mL25 {margin-left: 25px;} .mL30 {margin-left: 30px;}
.mR0 {margin-right: 0;} .mR5 {margin-right: 5px;} .mR10 {margin-right: 10px;} .mR15 {margin-right: 15px;} .mR20 {margin-right: 20px;} .mR25 {margin-right: 25px;} .mR30 {margin-right: 30px;}
.pT0 {padding-top: 0;} .pT5 {padding-top: 5px;} .pT10 {padding-top: 10px;} .pT15 {padding-top: 15px;} .pT20 {padding-top: 20px;} .pT25 {padding-top: 25px;} .pT30 {padding-top: 30px;}
.pB0 {padding-bottom: 0;} .pB5 {padding-bottom: 5px;} .pB10 {padding-bottom: 10px;} .pB15 {padding-bottom: 15px;} .pB20 {padding-bottom: 20px;} .pB25 {padding-bottom: 25px;} .pB30 {padding-bottom: 30px;}
.pL0 {padding-left: 0;} .pL5 {padding-left: 5px;} .pL10 {padding-left: 10px;} .pL15 {padding-left: 15px;} .pL20 {padding-left: 20px;} .pL25 {padding-left: 25px;} .pL30 {padding-left: 30px;}
.pR0 {padding-right: 0;} .pR5 {padding-right: 5px;} .pR10 {padding-right: 10px;} .pR15 {padding-right: 15px;} .pR20 {padding-right: 20px;} .pR25 {padding-right: 25px;} .pR30 {padding-right: 30px;}
.lineH10 {line-height: 1em} .lineH12 {line-height: 1.2em} .lineH14 {line-height: 1.4em} .lineH20 {line-height: 2.0em}

.center {
	text-align: center;
}
.alignleft {
	display: inline;
	float: left;
}
.alignright {
	display: inline;
	float: right;
}
.aligncenter {
	display: block;
	margin-right: auto;
	margin-left: auto;
}


.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
}


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

.clearText {
	text-indent:100%;
	white-space:nowrap;
	overflow:hidden;
}

.textblock,
.br {
	display: inline-block;  
	*display: inline;  
	*zoom: 1;  
}

.kome {
	font-size: 0.4em;
}
.note {
	font-size: 0.8em;
}
.jisage {
	padding-left: 1em;
	text-indent: -1em;
}


.gothic {
	font-family: "游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",メイリオ,Meiryo,sans-serif;
}




/* --- 時々使うCSS3 start -----------------------------

テキストシャドウ {
	text-shadow: 1px 1px 3px #000;
}

テキストシャドウ {
	text-shadow: 1px 1px 3px #000;
}

ボックスシャドウ {
	-moz-box-shadow: 1px 1px 3px #000;
	-webkit-box-shadow: 1px 1px 3px #000;
	box-shadow: 1px 1px 3px #000;
}

ボックスシャドウ内側 {
	-moz-box-shadow: inset 1px 1px 3px #000;
	-webkit-box-shadow: inset 1px 1px 3px #000;
	box-shadow: inset 1px 1px 3px #000;
}

角丸 {
	border-radius: 8px; 
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px; 
}

トランジション {
	-webkit-transition: 1.5s;
	-moz-transition: 1.5s;
	-o-transition: 1.5s;
	transition: 1.5s;
}

透明 {
	filter: alpha(opacity=25);
	-moz-opacity:0.25;
	opacity:0.25;
}

背景のみ透明 {
	background-color:rgba(255,255,255,0.2);
}

グラデーション {
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#000000');
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#000000')";
	background-image: -moz-linear-gradient(top, #ffffff, #000000);
	background-image: -ms-linear-gradient(top, #ffffff, #000000);
	background-image: -o-linear-gradient(top, #ffffff, #000000);
	background-image: -webkit-gradient(linear, center top, center bottom, from(#ffffff), to(#000000));
	background-image: -webkit-linear-gradient(top, #ffffff, #000000);
	background-image: linear-gradient(top, #ffffff, #000000);
}

スマホ対応
@media screen and (max-width: 480px){
	
}
@media screen and (max-width: 320px){
	
}

時々使うCSS3 end  --------------------------------------- */

h1 {
	font-size: 3em;
	line-height: 1.4;
}
h2 {
	font-size: 2em;
	line-height: 1.4;
}
h3 {
	font-size: 1.2em;
	line-height: 1.4;
}
h4 {
}
h5 {
}
h6 {
}

a,
a:hover {
	color: #e53434;
}


figcaption {
	font-size: 0.8em;
	line-height: 1.4;
	font-family: "游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",メイリオ,Meiryo,sans-serif;
}


.wrap-wide {
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
	padding: 0;
}
.wrap-wide:after {
	content: "";
	clear: both;
	display: block;
}
.wrap-wide2 {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 50px;
}
.wrap-wide2:after {
	content: "";
	clear: both;
	display: block;
}



.box-wrap {
}
.box-wrap:after {
	content: "";
	clear: both;
	display: block;
}
.box66 {
	float: left;
	width: 66.6%;
}
.box33 {
	float: left;
	width: 33.3%;
}
.box32 {
	float: left;
	width: 32%;
	margin-right: 2%;
}
.box32:nth-child(3n) {
	margin-right: 0;
}
.box50 {
	float: left;
	width: 50%;
}
.box48 {
	width: 48%;
	float: left;
	margin-right: 4%;
}
.box48:nth-child(2n) {
	margin-right: 0;
}
.space-left {
	padding-left: 20px;
}
.space-right {
	padding-right: 20px;
}






ol {
  counter-reset: my-counter;
  list-style: none;
  padding: 0;
}

ol > li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}
ol > li:before {
  content: counter(my-counter);
  counter-increment: my-counter;
  background-color: #0077bb;
  color: #ffffff;
  display: block;
  float: left;
  line-height: 22px;
  margin-left: -30px;
  text-align: center;
  height: 22px;
  width: 22px;
  border-radius: 50%;
	margin-top: 3px;
}



/* ヘッダー */

header {
	position: relative;
	z-index: 100;
	height: 0;
}
.head-line {
	padding: 20px 20px;
	text-align: center;
	position: absolute;
	top: 0;
    left: 0;
    right: 0;
	/*
	background-color: rgba(255,255,255,0.3);
	*/
}
h1.site-title {
	font-size: 1.1em;
	margin-top: 0;
}
h1.site-title img {
	margin-right: 40px;
}






/* コンテンツ */

section {
	margin-bottom: 80px;
}
.content h1 {
	font-size: 3em;
	line-height: 1.4;
	font-weight: bold;
	color: #666666;
}
.content h2 {
	font-size: 2em;
	line-height: 1.4;
	font-weight: normal;
	margin-top: 1em;
	margin-bottom: 0.7em;
	text-align: center;
}
.content h3 {
	margin-top: 1.0em;
	margin-bottom: 0.3em;
}
.sec-title {
	text-align: center;
	padding: 10px 10px;
	margin-top: 2em;
	margin-bottom: 0.8em;
}



.top-main-visual {
	position: relative;
	width: 100%;
	height: 100vh;
	background: url("../images/top_main-visual01.jpg") no-repeat top center;
	background-size: cover;
}
.catch {
	position: absolute;
	top: 50%;
    left: 50%;
	transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	text-align: center;
	font-size: 3.75em;
	letter-spacing: 5px;
	width: 100%;
	text-shadow:0 0 10px #ffffff;
}


.service-sec {
	padding: 50px 0 0;
}
.servicelist {
	margin: 0 auto;
	padding: 0 5%;
}
.servicelist li {
	float: left;
	width: 22%;
	margin: 0 1.5% 2%;
	text-align: center;
}
.servicelist li img {
	width: 100%;
}
.servicelist li figure {
	background-color: #000;
}
.servicelist li figcaption {
	font-size: 1em;
	font-weight: bold;
}
.servicelist li a figcaption {
	display: block;
	color: #ffffff;
	padding: 5px;
}
.servicelist li a:hover figure {
	background-color: #eecc33;
}
.servicelist li a:hover figcaption {
	color: #333333;
}








.gmap {
	position: relative;
	/* padding-bottom: 56.25%; */
	padding-bottom: 40%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 30px;
}
 
.gmap iframe,
.gmap object,
.gmap embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}









/* 料金 */








/* ACCESS MAP */







.site-footer {
	border-top: 1px solid rgba(51, 51, 51, 0.1);
	font-size: 14px;
	font-size: 1.4rem;
}
.group-info {
	background-color: #eaeaea;
	padding: 20px 0;
}
.group-logo {
	float: left;
	margin-bottom: 15px;
    width: 200px;
    text-align: center;
}
.group-list {
	margin-left: 230px;
}
.group-list dl {
	padding-bottom: 0.5em;
	margin-bottom: 1em;
	border-bottom: 1px dashed #ccc;
}
.group-list dl:last-child {
	border-bottom: none;
	margin-bottom: 0;
}
.group-list dd {
	display: inline-block;
	margin-right: 1em;
	margin-bottom: 0;
	background: url(../images/arrow01.png) no-repeat left center;
	padding-left: 9px;
	line-height: 1.5;
}
.group-list dt a {
	font-weight: bold;
}
.group-list dt a,
.group-list dd a {
	color: #666;
}
.group-list dt a:hover,
.group-list dd a:hover {
	color: #f29600;
}

.copyright {
	text-align: center;
	font-size: 12px;
	padding: 5px 0;
	background-color: #eecc33;
}
.copyright p {
	margin: 0;
}




/* 言語スイッチャー */
.language {
	position: relative;
	height: 0;
}
.lang-switcher {
    /* max-width: 120px;/*最大幅*/
	width: 90px;
	font-size: 0.8em;
	text-align: center;
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 100;
}
.lang-switcher .acd-label {
    display: block;
	padding : 2px 5px;
    color: #333333;
    background: #ffffff;
    cursor :pointer;
	border: 1px solid #333333;
    transition: all 0.5s;
}
.lang-switcher .acd-label:before {
    content: '▶︎';
	font-size: 0.5em;
	vertical-align: middle;
    padding-right: 8px;
}
.lang-switcher .acd-label:hover {
    background :#c1e1f1;
}
.acd-check {
    display: none;
}
.acd-content {
    height: 0;
	opacity: 0;
    overflow: hidden;
	padding: 0;
    /* transition: 0.8s; */
}
.acd-check:checked + .acd-label + .acd-content {
    height: auto;
	opacity: 1;
    padding: 3px;
    background: #eaeaea;
}
.acd-check:checked + .acd-label:before {
    content: '▼';
}

.lang-nav {
	margin-bottom: 0;
}
.lang-nav li {
	margin-bottom: 2px;
}
.lang-nav li:last-child {
	margin-bottom: 0;
}
.lang-nav li a {
	display: block;
	background-color: #ffffff;
	padding: 5px;
	color: #0077bb;
}
.lang-nav li a:hover {
	background-color: #c1e1f1;
}






/** ===========================================================================================
 *
 *  Media Queries
 *
 *  =========================================================================================== */
	

@media screen and (max-width: 1200px) {
	.wrap-wide {
		max-width: 1100px;
		padding-left: 50px;
		padding-right: 50px;
	}
}
	
@media screen and (max-width: 1000px) {
	.wrap-wide {
		padding-left: 20px;
		padding-right: 20px;
	}
		
}

@media screen and (max-width: 960px) {
		
}
	
@media screen and (max-width: 768px) {
		
}
	
@media screen and (max-width: 560px) {
	body,
	button,
	input,
	select,
	textarea {
		font-size: 15px;
		font-size: 1.5rem;
	}
	.wrap-wide {
		padding-left: 10px;
		padding-right: 10px;
	}
	
	.head-line {
		padding-top: 40px;
	}
	
	.catch {
		font-size: 3em;
		letter-spacing: 0px;
	}
	
	.servicelist li {
		float: left;
		width: 46%;
		margin: 0 2% 15px;
	}
	
	
	.group-logo {
		float: none;
		margin-bottom: 20px;
		width: 100%;
		text-align: center;
	}
	.group-list {
		margin-left: 0;
	}
		
	
}


