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

/*---------------------------- PC向けのスタイル ----------------------------*/
@media print, screen and (min-width: 780px) {

/*---------- ページ全体の指定 -----------*/
html{
  font-size: 100%;    /* 16px */
}

body {
  width: 100%;
    font-family: 'メイリオ', Meiryo, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', Helvetica, Arial, Roboto, 'Droid Sans', sans-serif;
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: white;
  background-color: black;
  -webkit-text-size-adjust: none;
}

a{
  text-decoration: none;  /* link時の下線なし */
}

p{
  font-size: 1.3rem;    /* 16pxの1.3倍 */
}

/*---------- メイン ----------*/

/* header
----------------------------------------*/
.header {
    position: fixed;         /*絶対位置で固定*/
    top: 0px;                /*上に配置*/
    left: 0px;               /*左の隙間をなくす*/
    padding: 0px 10px;       /*範囲内の余白（上下、左右）*/
    width: 100%;             /*幅*/
    height: 80px;            /*高さ*/
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    color: white;
    z-index: 90;
}

.header_left {
    position: fixed;          /*絶対位置で固定*/
    left: 0px;                /*左の隙間をなくす*/
    padding: 0px 10px;        /*範囲内の余白（上下、左右）*/
    height: 80px;             /*高さ*/
    display: flex;
    justify-content: start;
    align-items: center;
    z-index: 90;
}

.header_right {
    top: 0px;                  /*上に配置*/
    left: 0px;                 /*左の隙間をなくす*/
    padding: 0px 5px;          /*範囲内の余白（上下、左右）*/
    height: 80px;              /*高さ*/
    display: flex;
    justify-content: start;
    align-items: center;
    z-index: 90;
}

.header_right img {
    left: 0px;                 /*左の隙間をなくす*/
    padding: 10px 8px 0 0;          /*範囲内の余白（上下、左右）*/
    align-items: center;
    z-index: 90;
}

/* language select popup表示 ここから*/
#popup {
    display: none;     /* label でコントロールするので input は非表示に */
}

.popup-open {
    cursor: pointer;   /* マウスオーバーでカーソルの形状を変える */
}

.popup-overlay {
    display: none;     /* input にチェックが入るまでは非表示に */
}

#popup:checked ~ .popup-overlay {
    display: block;
    z-index: 99999;
    background-color: #00000080;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
}

.popup-window {
    width: 90vw;
    max-width: 100px;
    height: 60px;
    padding: 10px;
    background-color: #000;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    position: fixed;
    top: 90px;
    left: 90%;
    transform: translate(-50%, -50%);
}

.popup-text {
    margin: 0;
    font-size: 16px; 
}

.popup-text:not(:last-of-type) {
    margin-bottom: 1em;
}

.popup-close {
    cursor: pointer;
    position: absolute;
    top: -26px;
    right: 0;
}

#languagemenu ul {
    margin: 0;
    list-style: none;
    align-self: auto;     /*フッターメニューを自動で配置する。*/
}

#languagemenu a:hover {
     color: #6cf;         /*言語選択時に文字を青色にする。*/
}

/* language select popup表示 ここまで*/

/*PC表示の時はSP用ロゴを表示しない*/
.img_sp {
    display: none; 
}

.logo {
    font-size: 14px; 
    padding:  0 10px;
    padding: 20px 5px 0px;      /*範囲内の余白（上下、左右）*/
}

/*メニューリスト・カーソルオーバー・通常時の背景色
---------------------------------------*/
.cursor {
    background-color: black;
}

/* マウスオーバー時の背景色
----------------------------------------*/
.cursor:hover {
    background-color: blue;
}

/* 共通
----------------------------------------*/
#infomation h3,
#map h3 {
    background-color: #c0c0c0;
    width: 250px;
    text-align: center;
    color: black;
    padding: 10px;
    margin: 80px auto 40px;
}

/*---------- Area ----------*/
#area {

    margin-top: 90px;
    color: white;
    padding: 0 5px 0 5px;
}
#area h1 {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0;
    font-size: 1.6rem;
    color: #2ff;
    padding-left: 60px;
    text-align: left;
}

/*---------- 赤い縦の棒線 ----------*/
#area h1::after {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    width: 8px;
    height: 100%;
    background-color: #e4007f;
}

/*---------- Infomation ----------*/
#infomation {
    overflow: auto;
    padding: 0px 40px;
    margin: 0px auto 20px;
}

.data_l {
    float: left;
    width: 49%;
    max-width: 500px;
    padding: 10px 5px;
    margin: 20px auto;
}

.data_r {
    float: right;
    width: 49%;
    max-width: 500px;
    padding: 10px 5px;
    margin: 20px auto;
}

.p1 {
    font-size: 1.0rem;
    line-height: 1.5;
    text-align: left;
    max-width: 800px;
    margin: 10px auto;
}

.p2 {
    font-size: 0.9rem;
    line-height: 1.4;
    text-align: left;
    max-width: 440px;
    margin: 10px auto;
}

.p3 {
    font-size: 0.75rem;
    line-height: 1.4;
    text-align: center;
    color: #ddd;
    max-width: 440px;
    margin: 0px auto;
}

/*---------- Map ----------*/

#map {
    overflow: auto;
    padding: 0px 40px;
    margin: 0px auto 20px;
}

.s_map {
    width: 100%;
    padding: 2px;
    text-align: center;
    margin: auto auto;
}

.map_l {
    float: left;
    width: 49%;
    max-width: 500px;
    padding: 10px 5px;
    margin: 20px auto;
}

.map_r {
    float: right;
    width: 50%;
    margin-top: 30px;
}

.access {
    width: fit-content;
    margin: 10Px 0px 10px 30px;
}

.access p {
    font-size: 1.2rem;
    text-align: center;
    max-width: 200px;
    color: #6cc;
    margin: 0px auto 10px;
}

.map_r ul {
    list-style: disc;
}

.map_r li {
    text-align: left;
    font-size: 0.85rem;
}

::marker {
    color: blue;
}

/*フッターメニュー設定
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
#footermenu {
  	background: #333;    	    /*背景色*/
  	color: #bbb;        		/*文字色*/
  	font-size: 0.8rem;           /*文字サイズ*/
  	padding: 20px 55px;          /*上下、左右へのボックス内の余白*/
  	display: flex;        	     /*flexボックスを使う指定*/
  	justify-content: space-between;	  /*並びかたの種類の指定*/
  	margin-top: 40px;
}

/*フッター右側の装飾画像*/
#footermenu .disp1 {
  	display: block;     		/*非表示から表示に。*/
}
#footermenu .disp2 {
  	display: block;     		/*非表示から表示に。*/
  	max-width: 200px;       	/*画像の最大幅。これ以上大きくならないように。*/
  	margin: 20px 0 0 0;
}

/*ボックス内のリンクテキスト設定*/
#footermenu a {
  	text-decoration: none;
  	color: #bbb;              /*文字色*/
}

/*リンクテキストのマウスオン時*/
#footermenu a:hover {
  	color: #fff;              /*文字色*/
}

/*ulタグ（列単位）*/
#footermenu ul {
  	margin: 0;
  	list-style: none;
  	align-self: auto;          /*フッターメニューを自動で配置する。*/
}

/*title*/
#footermenu .title {
  	font-weight: bold;      	 /*太字にする*/
  	color: #ccc;            	/*文字色*/
  	padding-bottom: 5px;  	     /*下に空けるスペース*/
}

/*PC表示の際はボトムメニューは表示しない*/
.bottom-menu {
    display:none; 
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
  	font-size: 0.7rem;	         /*文字サイズ*/
  	background: black;	        /*背景色*/
  	color: white;	    	    /*文字色*/
  	text-align: center;   	     /*内容をセンタリング*/
  	padding: 10px;	      	     /*ボックス内の余白*/
}

}  /*------- PC向けのスタイル 780px以上 ここまで ----------------------------*/

/* CSS Document */

/*---------------------------- 共通部分 ----------------------------*/
html, body, header, nav, section, aside, footer,
div, span, p, h1, h2, h3, h4, h5,
ul, li, dl, dt, dd,
table, tr, th, td {
    margin: 0;
    padding: 0;
}

header, nav, section, aside, footer {
    display: block;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border: 0;
}

/*---------------------------- スマートフォン向けのスタイル ----------------------------*/
@media only screen and (max-width: 779px) {


/*---------------------------- ページ全体の指定 ----------------------------*/
body {
    width: 100%;
    font: 87.5%  'メイリオ', Meiryo, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', Helvetica, Arial, Roboto, 'Droid Sans', sans-serif;
    color: white;
    background-color: black;
    letter-spacing: 0.05em;
    -webkit-text-size-adjust: 100%;
}

a {
  text-decoration: none;  /* link時の下線なし */
}

p {
  font-size: 1.2rem;    /* 16pxの1.2倍 */
}

/* header
----------------------------------------*/

/*PC表示（780Px）以上はPC用ログを表示しない*/

.logo,
.img_pc {
    display: none; 	  /*表示から非表示に。*/
}

.img_sp {
    display: block; 	/*非表示から表示に。*/
}

.header {
    position: fixed;    /*絶対位置で固定*/
    top: 0px;           /*上に配置*/
    padding: 0px 6px;   /*範囲内の余白（上下、左右）*/
    width: 100%;        /*幅*/
    height: 60px;       /*高さ*/
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    color: white;
    z-index: 90;
}

.header_left {
    position: fixed;     /*絶対位置で固定*/
    padding: 0px 4px;    /*範囲内の余白（上下、左右）*/
    left: 0px;           /*左の隙間をなくす*/
    height: 60px;        /*高さ*/
    z-index: 90;
}

.header_right {
    height: 60px;        /*高さ*/
    display: flex;
    justify-content: start;
    align-items: center;
    z-index: 90;
}

.header_right img {
    left: 0px;                 /*左の隙間をなくす*/
    padding: 6px 10px 0 0;          /*範囲内の余白（上下、左右）*/
    align-items: center;
    z-index: 90;
}

/* language select popup表示 ここから*/
#popup {
    display: none;    /* label でコントロールするので input は非表示に */
}

.popup-open {
    cursor: pointer;   /* マウスオーバーでカーソルの形状を変える */
}

.popup-overlay {
    display: none;      /* input にチェックが入るまでは非表示に */
}

#popup:checked ~ .popup-overlay {
    display: block;
    z-index: 99999;
    background-color: #00000080;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
}

.popup-window {
    width: 90vw;
    max-width: 100px;
    height: 60px;
    padding: 10px;
    background-color: #000;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    position: fixed;
    top: 76px;
    left: 85%;
    transform: translate(-50%, -50%);
}

.popup-text {
    margin: 0;
    font-size: 16px; 
}

.popup-text:not(:last-of-type) {
    margin-bottom: 1em;
}

.popup-close {
    cursor: pointer;
    position: absolute;
    top: -26px;
    right: 0;
}

#languagemenu ul {
    margin: 0;
    list-style: none;
    align-self: auto;     /*フッターメニューを自動で配置する。*/
}

#languagemenu a:hover {
     color: #6cf;         /*言語選択時に文字を青色にする。*/
}


/* language select popup表示 ここまで*/

/*メニューリスト・カーソルオーバー・通常時の背景色
---------------------------------------*/
.cursor {
    background-color: black;
}

/* マウスオーバー時の背景色
----------------------------------------*/
.cursor:hover {
    background-color: blue;
}

/* 共通
----------------------------------------*/
#infomation h3,
#map h3 {
    background-color: #c0c0c0;
    width: 180px;
    text-align: center;
    color: black;
    padding: 10px;
    margin: 40px auto 20px;
}

/* Area
----------------------------------------*/
#area{
    margin-top: 60px;
    padding: 0 auto;
}
#area h1 {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0;
    font-size: 1.2rem;
    color: #2ff;
    padding-left: 35px;
    text-align: left;
}

/*---------- 赤い縦の棒線 ----------*/
#area h1::after {
    content: '';
    position: absolute;
    top: 0;
    left: 15px;
    width: 6px;
    height: 100%;
    background-color: #e4007f;
}

/* Infomation
----------------------------------------*/
#infomation {
    overflow: auto;
    padding: 20px 10px 10px;
    margin: 0px auto 10px;
}

.data_l, 
.data_r {
    float: left;
    width: 100%;
    padding: 20px 20px 0px;
    text-align: center;
}

.p1 {
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: left;
    max-width: 480px;
    padding: 10px 24px;
    margin: 10px auto;
}

.p2 {
    font-size: 0.8rem;
    line-height: 1.4;
    text-align: left;
    max-width: 420px;
    margin: 10px auto;
}

#infomation a,
.p3 {
    font-size: 0.7rem;
    line-height: 1.4;
    text-align: center;
    color: #ddd;
    max-width: 400px;
    margin: 0px auto;
}

/*---------- Map ----------*/
#map {
    overflow: auto;
    padding: 20px 40px;
    margin: 0px auto 20px;
}

/*---------- Googleマップ ----------*/

/* Google Mapを囲う要素 */
.s_map {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 75%; /* 比率を4:3に固定 */
}
 
/* Google Mapのiframe */
.s_map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.map_l,
.map_r {
    float: left;
    width: 100%;
    margin-top: 20px;
}

.map_l img {
    width: 600px;
    height: auto;
    text-align: center;
}

.access {
    width: fit-content;
    margin: 0Px 0px 10px 20px;
}

.access p {
    font-size: 1.0rem;
    text-align: center;
    max-width: 200px;
    color: #6cc;
    margin: 0px auto 10px;
}

.map_r ul {
    list-style: disc;
}

.map_r li {
    text-align: left;
    font-size: 0.75rem;
}

::marker {
    color: blue;
}

/*フッターメニュー設定
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
#footermenu {
    background: #333;	    /*背景色*/
    color: #bbb;	        /*文字色*/
    font-size: 0.7rem;	     /*文字サイズ*/
    padding: 10px 25px;   	 /*上下、左右へのボックス内の余白*/
    display: flex;           /*flexボックスを使う指定*/
    justify-content: space-between;	  /*並びかたの種類の指定*/
    margin-top: 20px;
}

/*ボックス内のリンクテキスト設定*/
#footermenu a {
    text-decoration: none;
    color: #bbb;	          /*文字色*/
}

/*リンクテキストのマウスオン時*/
#footermenu a:hover {
    color: #fff;	          /*文字色*/
}

/*ulタグ（列単位）*/
#footermenu ul {
    margin: 0;
    list-style: none;
    align-self: center;     	/*フッターメニューをブロックの上下中央に配置する*/
}

/*title*/
#footermenu .title {
    font-weight: bold;      	/*太字にする*/
    color: #ccc;              /*文字色*/
    padding-bottom: 5px;	/*下に空けるスペース*/
}

/*フッター右側の装飾画像*/
#footermenu .disp1 {
    display: none;            /*スペースが狭いので非表示にしておく*/
}

#footermenu .disp2 {
    display: none;	      /*スペースが狭いので非表示にしておく*/
}

/*SP表示（480Px）以上はボトムメニューは表示しない*/
.bottom-menu{
    display:none; 
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
    font-size: 0.6rem;	/*文字サイズ*/
    background: #000;         /*背景色*/
    color: #fff;              /*文字色*/
    text-align: center;     	/*内容をセンタリング*/
    padding: 8px;	          	/*ボックス内の余白*/
}

} /*--------------- スマートフォン向け（779px以下）のスタイルここまで ----------*/


/*ボトルメニュー設定  スクリーンサイズが480px以下の場合に適用
---------------------------------------------------------------------------*/
@media screen and (max-width: 480px) {

/*フッターメニュー設定
---------------------------------------------------------------------------*/
#footermenu {
    display: none;		/*表示から非表示に*/
}

.pagetop {
    display: none;		/*表示から非表示に*/
}

.bottom-menu{
    display: block;		/*非表示から表示に*/
}

/*ボトルメニュー設定
---------------------------------------------------------------------------*/
.mini-text {
    font-size: 12px;   /*文字大きさ*/
}

ul.bottom-menu {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 40px;                        /*高さ*/
    margin: 0;
    padding: 0;
    background-color:#333;             /*背景色*/
    border-top: 2px solid #808080;     /*バーの上の線*/
    border-bottom: 2px solid #808080;  /*バーの下の線*/
    z-index: 30;
}

ul.bottom-menu li {
    float: left;
    width: 25%;
    background-color: #333;            /*背景色*/
    list-style-type: none;
    text-align: center;
    font-size: 25px;                     /*アイコンのサイズ*/
}

.bottom-menu li a {
    display: block;
    color: #ccc;                       /*アイコン＆文字の色*/
    padding-top: 10px;
    padding-bottom: 5px;
    line-height: 10px;
    text-decoration: none;
}

.bottom-menu li a:hover {
    color: #fff;                      /*マウスオーバー時の色*/
}


/* === 展開メニュー === */
ul.menu-second-level {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}

ul.menu-second-level li a {
    border-top: 1px dashed #a9a9a9;   /*展開の枠点線*/
    font-size: 14px;                    /*展開メニューの文字サイズ*/
    line-height: 20px;                  /*文字の縦幅*/
}

.menu-second-level li a:hover {
    height: 100%;
    background: lightgrey;            /*マウスオーバーの色*/
    color: #222;                      /*アイコン＆文字の色*/
}

li.menu-width-max ul.menu-second-level {
    position: absolute;
    bottom: 47px;/*高さ*/
    left: 0;
    box-sizing: border-box;
    width: 100%;
    padding: 0;
}

li.menu-width-max:hover ul.menu-second-level {
    bottom: 47px;/*高さ*/
    visibility: visible;
    opacity: 1;
}

li.menu-width-max ul.menu-second-level li {
    float: left;
    width: 100%;
    border: none;
}

} /*----- スクリーンサイズが480px以下の設定ここまで ---------------*/