﻿@import url(pc.css) screen and (min-width: 800px);
@import url(sp.css) screen and (max-width: 799px);
@import url(pc.css) print;
@charset "utf-8";
body{
	-webkit-text-size-adjust: 100%;
	margin:0px 0 0px 0;
	text-align:center;
	color:#333;
	font-family: "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", Sans-Serif;
	font-size: 0.95em;
	line-height:1.8em;
	overflow-x: hidden;
	position:relative;
}
    .swiper-container {
      width: 100%;
      height: 100%;
    }
    .swiper-slide {
      text-align: center;
      font-size: 18px;
      width: 100%;
      height: 100%;
      /* Center slide text vertically */
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
    }

/* アコーディオン内 iframe レスポンシブ対応 */
.accordion-content iframe,
.accordion-inner iframe,
.yt-container iframe {
    max-width: 100%;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9; /* 16:9 比率に対応。古いブラウザでは無視されます */
    display: block;
}

details {
    overflow: hidden;
    position: relative;
}

details iframe {
    max-width: 100%;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}


span.gt-lang-code {
    display: none;
}

/*********** 重要なお知らせ ***********/

.important {
	color: #F44336;
	width: 80%;
	margin: 0 auto 2em;
	border: 2px solid #F44336;
	padding: 0em 0;
}

.important p {
	color: #000;
	font-size: .8em;
}

.important h2 {
	margin: 0 !important;
	font-size: 1em !important;
	color: #F44336;
}

.important h1 {
	margin: .5em 0 0 0;
	font-size: 1.2em;
}
@media screen and (max-width: 768px) {
	.important {
		width: 80%; 
		margin: 1em auto;
		padding: .5em 1.5em;
		border-width: 3px;
	}

	.important h2 {
		margin: 0 !important;
		font-size: 1em !important;
		color: #F44336 !important;
	}

	.important h1 {
		font-size: 1em;
	}

	.important p {
		font-size: .8em;
		line-height: 1.6em;
		text-align: left;
	}
}
/* スクロール時にトップページへ戻るボタン */
.toTop{
	position:fixed;
	right:20px;
	bottom:20px;
	width:48px;
	height:48px;
	border-radius:50%;
	background:#000;
	display:none;
	z-index:9999;
	text-decoration:none;
}
.toTop:before{
	content:"";
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-60%);
	width:0;
	height:0;
	border-left:9px solid transparent;
	border-right:9px solid transparent;
	border-bottom:14px solid #fff;
}
.toTop:hover{
	opacity:0.8;
}
/* スマホ時のみ少し上に */
@media screen and (max-width: 799px) {
	.toTop {
		bottom: 80px;
	}
}
/* GoogleMAPをグレーに */
.access_map iframe{
	filter: grayscale(100%);
}