/* css */

@charset "UTF-8";

:root {
	--inner-padding: 10px;
}

/*--------------------- reset ---------------------*/

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, art, aside, canvas, details, figcaption,
figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

hr {
	display: block;
	height: 2px;
	border: 0px;
	border-top: 1px solid #ccc;
	margin: 5px 0px;
	padding: 0px;
}

/*--------------------- style ---------------------*/

html {
	font-size: 62.5%;             /* デフォルト文字サイズ10px (通常の16pxの62.5%) */
}

body {
	background-color: #fff;
	color: #000;
	text-align: center;
	font-size: 1.5rem;
	font-family: "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;  /* MacとWinのフォント指定 */
	-webkit-text-size-adjust: 100%;                                /* スマホ対応 */
	        text-size-adjust: 100%;
}

*, *::before, *::after {
	box-sizing: border-box;       /* paddingとborder含めたサイズ指定 */
}

a:link, a:visited, a:hover, a:active {
	color: #191970;
	text-decoration: none;        /* ホバー時の下線解除 */
}

/*--------------------- section ---------------------*/

/*-----------
	header
-----------*/
.header {
 	position: fixed;              /* 固定ヘッダ (auto -> fixed) */
 	top: 0;
 	left: 0;
	width: 100%;
	height: 40px;
	padding: 5px 0px;
	overflow: hidden;             /* はみ出た領域の削除 */
	z-index: 1;                   /* fixedのheaderを一番前に表示 */
}
.header .header-box {
	width: 100%;
	text-align: left;
	margin: 0px auto;
}
.header .header-box .logo1 {
	display: block;
	float: left;
	margin: 0px 5px;
	width: 30px;
	height: 30px;
}
.header .header-box .logo2 {
	display: block;
	float: right;
	margin: 0px 5px;
	width: 30px;
	height: 30px;
}
.header .header-box .logokz {
	display: block;
	float: left;
	margin: 0px 5px;
	width: 170px;
	height: 30px;
}

.header .header-box .site1 {
	height: 30px;
	line-height: 32px;
	color: #ffff00;
	font-size: 2.2rem;
	font-weight: bold;
	letter-spacing: 0px;
	text-shadow: 1.0px 1.0px 0px black;
}
.header .header-box .site2 {
	height: 30px;
	line-height: 43px;
	color: #c3d825;
	font-size: 1.2rem;
	font-weight: bold;
	letter-spacing: 0px;
	text-shadow: 0.5px 0.5px 0px black;
}
.header .header-box .site3 {
	height: 30px;
	line-height: 32px;
	color: #c3d825;
	font-size: 2.2rem;
	font-weight: bold;
	letter-spacing: 0px;
	text-shadow: 1.0px 1.0px 0px black;
}

/*-----------
	home
-----------*/
.home {
	position: relative;
	margin-top: 40px;             /* 固定ヘッダ (0px -> 40px) */
	padding-top: 10px;
	width: 100%;
	height: 415px;
	background-image: url("../img/img01.jpg");   /* デフォルト画像を指定 */
	background-size: cover;
	background-position: center;
	overflow: hidden;             /* はみ出た領域の削除 */
}
.home .home-box {
	position: relative;
	top: 0px;
	left: -50px;
	padding-left: 100px;
	text-align: left;
	width: 500px;
	height: 90px;
	line-height: 40px;
	font-size: 0;
	background-color: rgba(0, 0, 0, 0.5);
	-webkit-transform: skewX(-30deg);        /* boxの傾斜指定 */
	    -ms-transform: skewX(-30deg);
	        transform: skewX(-30deg);
}
.home .home-box .desc1 {
	position: relative;
	font-size: 2.5rem;
	font-weight: bold;
	letter-spacing: 1px;
	color: #fff;
	text-shadow: 1.5px 1.5px 0px black;
}
.home .home-box .desc2 {
	position: relative;
	font-size: 5.0rem;
	font-weight: bold;
	letter-spacing: 1px;
	color: #fff;
	text-shadow: 2.0px 2.0px 0px black;
}

.home .button-box {
 	position: relative;
 	display: table;
 	width: 768px;                 /* ボタンボックス幅（固定） */
	margin: 200px auto 0px;
	border-collapse: separate;
	border-spacing: 20px 0px;
	table-layout: fixed;
}

.home .button1 {
	display: table-cell;
	padding: 10px;
	border-radius: 3px;
	background-color: rgba(25, 25, 112, 0.7);
}
.home .button1 .bt-desc1 {
	font-size: 2.2rem;
	font-weight: bold;
	color: #fff;
	text-shadow: 1.0px 1.0px 0px black;
}
.home .button1 .bt-desc2 {
	font-size: 1.6rem;
	font-weight: bold;
	color: #fff;
	text-shadow: 1.0px 1.0px 0px black;
}
.home .button1 .bt-desc3 {
	width: 10px;
	height: 10px;
	margin: 5px auto 5px;
	border: 2px solid;                        /* 矢印の太さ指定 */
	border-color: transparent transparent #fff #fff;
	-webkit-transform: rotate(-45deg);        /* 矢印の傾斜指定 */
	    -ms-transform: rotate(-45deg);
	        transform: rotate(-45deg);
}

.home .button1:hover {
	transition: 0.25s;
	background-color: rgba(255, 215, 0, 0.7);
}

.home .bkimg {
 	position: absolute;
 	top: 0;
 	left: 0;
 	bottom: 0;
 	right: 0;
 	opacity: 0;
 	animation: bkani 80s infinite;      /* トータルアニメ時間（96secアニメ = 8sec x 10枚） */
}
.home .img01 {
	background-image: url("../img/img01.jpg");
	background-size: cover;
	background-position: center;
	-webkit-animation-delay: 0s;
	    -ms-animation-delay: 0s;
	        animation-delay: 0s;
}
.home .img02 {
	background-image: url("../img/img02.jpg");
	background-size: cover;
	background-position: center;
	-webkit-animation-delay: 8s;
	    -ms-animation-delay: 8s;
	        animation-delay: 8s;
}
.home .img03 {
	background-image: url("../img/img03.jpg");
	background-size: cover;
	background-position: center;
	-webkit-animation-delay: 16s;
	    -ms-animation-delay: 16s;
	        animation-delay: 16s;
}
.home .img04 {
	background-image: url("../img/img04.jpg");
	background-size: cover;
	background-position: center;
	-webkit-animation-delay: 24s;
	    -ms-animation-delay: 24s;
	        animation-delay: 24s;
}
.home .img05 {
	background-image: url("../img/img05.jpg");
	background-size: cover;
	background-position: center;
	-webkit-animation-delay: 32s;
	    -ms-animation-delay: 32s;
	        animation-delay: 32s;
}
.home .img06 {
	background-image: url("../img/img06.jpg");
	background-size: cover;
	background-position: center;
	-webkit-animation-delay: 40s;
	    -ms-animation-delay: 40s;
	        animation-delay: 40s;
}
.home .img07 {
	background-image: url("../img/img07.jpg");
	background-size: cover;
	background-position: center;
	-webkit-animation-delay: 48s;
	    -ms-animation-delay: 48s;
	        animation-delay: 48s;
}
.home .img08 {
	background-image: url("../img/img08.jpg");
	background-size: cover;
	background-position: center;
	-webkit-animation-delay: 56s;
	    -ms-animation-delay: 56s;
	        animation-delay: 56s;
}
.home .img09 {
	background-image: url("../img/img09.jpg");
	background-size: cover;
	background-position: center;
	-webkit-animation-delay: 64s;
	    -ms-animation-delay: 64s;
	        animation-delay: 64s;
}
.home .img10 {
	background-image: url("../img/img10.jpg");
	background-size: cover;
	background-position: center;
	-webkit-animation-delay: 72s;
	    -ms-animation-delay: 72s;
	        animation-delay: 72s;
}
/* 100% = トータルアニメ時間（80secで8sec表示切替だと10%だけon「1」を立てる） */
@-webkit-keyframes bkani {
	0% {opacity:0}
	2.5% {opacity:1}
	12.5% {opacity:1}
	15% {opacity:0}
	100% {opacity:0}
}
@-ms-keyframes bkani {
	0% {opacity:0}
	2.5% {opacity:1}
	12.5% {opacity:1}
	15% {opacity:0}
	100% {opacity:0}
}
@keyframes bkani {
	0% {opacity:0}
	2.5% {opacity:1}
	12.5% {opacity:1}
	15% {opacity:0}
	100% {opacity:0}
}

/*-----------
	whatsnew
-----------*/
.whatsnew {
	width: 100%;
	margin: 0px auto;
	padding: 0px 0px;
}

.whatsnew .whatsnew-box {
	width: 100%;
	margin: 0px auto;
	padding: 0px 10px;
	text-align: center;
	font-size: 0;                 /* 子要素内の空白(改行)を排除 */
}


/*-----------
	base
-----------*/
.base {
	width: 1600px;                   /* width 固定 */
	margin: 0px auto;
	padding: 0px 0px;
}

.base .parent-wrapper {
	width: 100%;
	padding: 0px 0px;
	margin: 0px auto;
}

.base .parent-box {
	float: left;
	display: table;
	width: 50%;
	margin: 0px auto;
	border-collapse: separate;
	border-spacing: 0px 0px;
	table-layout: fixed;
}

.base .inner-box {
	display: table-cell;
	padding: 0px 4px;
	text-align: left;
	font-size: 0;                 /* 子要素内の空白(改行)を排除 */
}

.base .top1-box {
	display: block;
	width: 100%;
	margin: 0px auto;
	padding: 0px 0px;
	text-align: center;
}

.base .top2-box {
	display: none;
	width: 100%;
	margin: 0px auto;
	padding: 0px 0px;
	text-align: center;
}

.base .top3-box {
	display: none;
	width: 100%;
	margin: 0px auto;
	padding: 0px 0px;
	text-align: center;
}

/*-----------
	menu
-----------*/
.menu {
	width: 1600px;                   /* width 固定 */
	margin: 0px auto;
	padding: 0px 0px;
}

.menu .menu-wrapper {
	width: 100%;
	margin: 0px auto;
	padding: 0px 0px;
}

.menu .left-box {
	width: 100%;
	float: left;
	padding: 0px 0px;
}

.menu .right-box {
	width: 100%;
	float: right;
	padding: 0px 0px;
}

.menu .left-box2 {
	width: 100%;
	float: left;
	padding: 0px 0px;
}

.menu .right-box2 {
	width: 100%;
	float: right;
	padding: 0px 0px;
}

.menu .menu-box {
	width: 100%;
	/*width: 768px;*/
	padding: 0px 5px 20px;
	text-align: left;
	font-size: 0;                 /* 子要素内の空白(改行)を排除 */
}

.menu .profile-img {
	display: block;
	float: left;
	width: 50px;
	border-radius: 50%;           /* 丸pic */
	margin-right: 5px;
	margin-bottom: 1px;
}

.menu .child-box {
	float: left;
	display: table;
	width: 25%;                   /* 3pic -> 33.33%, 4pic -> 25%, 5pic -> 20% */
	margin: 0px auto;
	border-collapse: separate;
	border-spacing: 0px 0px;
	table-layout: fixed;
}

.menu .child-box2 {
	float: left;
	display: table;
	width: 33.33%;                /* 3pic -> 33.33%, 4pic -> 25%, 5pic -> 20% */
	margin: 0px auto;
	border-collapse: separate;
	border-spacing: 0px 0px;
	table-layout: fixed;
}

.menu .child-box-l {
	float: left;
	display: table;
	width: 20%;                   /* 3pic -> 33.33%, 4pic -> 25%, 5pic -> 20% */
	margin: 0px auto;
	border-collapse: separate;
	border-spacing: 0px 0px;
	table-layout: fixed;
}
.menu .child-box-n {
	float: left;
	display: table;
	width: 20%;                   /* 3pic -> 33.33%, 4pic -> 25%, 5pic -> 20% */
	margin: 0px auto;
	border-collapse: separate;
	border-spacing: 0px 0px;
	table-layout: fixed;
}

.menu .inner-box {
	display: table-cell;
	padding: 0px 4px;
	text-align: left;
	font-size: 0;                 /* 子要素内の空白(改行)を排除 */
}

.menu .art-mov-l {
	width: 768px;
	height: 432px;
}

.menu .mov-box-l {
	display: block;
	position: relative;
	padding-top: 56.25%;          /* 768:432のアスペクト比維持 */
	width: 100%;                  /* 768px -> 100% */
	height: 100%;                 /* 432px -> 100% */
	margin: 0px auto;
}

.menu .mov-box-l iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;                  /* 768px -> 100% */
	height: 100%;                 /* 432px -> 100% */
}

.thum-img {
	display: block;
	width: 100%;                  /* 親max-width設定 */
	margin: 0px auto;
}

.thum-img:hover {
	transition: 0s;
	opacity: 0.75;
}

/*-----------
	master
-----------*/
.master {
	margin: 0px auto;
	margin-top: 40px;             /* 固定ヘッダ (0px -> 40px) */
	width: 100%;
	padding: 0px 0px;
}

.master .master-box {
	width: 100%;
	padding: 0px 0px;
	text-align: left;
	font-size: 0;                 /* 子要素内の空白(改行)を排除 */
}

.master .main-box {
	width: 800px;                 /* ボックス幅 (800px) */
	float: left;
	padding: 0px 0px;
	text-align: left;
	font-size: 0;                 /* 子要素内の空白(改行)を排除 */
}

.master .slave-box {
	width: 100%;
	margin: 0px auto;
	padding: 0px 10px 20px;
	text-align: left;
	font-size: 0;                 /* 子要素内の空白(改行)を排除 */
}

.master .movpic-box {
	width: 100%;
	margin: 0px auto;
	padding: 0px 10px 20px;
	margin: 0px auto;
	font-size: 0;                 /* 子要素内の空白(改行)を排除 */
}

.master .car-img {
	display: block;
	width: 100%;                  /* 親max-width設定 */
	margin: 0px auto;
}

.master .mov-box-l {
	display: block;
	width: 768px;
	height: 432px;
	margin: 0px auto;
}

.master .art-mov-l {
	width: 768px;
	height: 432px;
}

.master .mov-box-n {
	display: block;
	width: 640px;
	height: 360px;
	margin: 0px auto;
}

.master .art-mov-n {
	width: 640px;
	height: 360px;
}

.master .mov-box-s {
	display: block;
	width: 360px;
	height: 640px;
	margin: 0px auto;
}

.master .art-mov-s {
	width: 360px;
	height: 640px;
}

.master .map-box-l {
	display: block;
	width: 768px;
	height: 640px;
	margin: 0px auto;
}

.master .art-map-l {
	width: 768px;
	height: 640px;
}

.master .map-box-n {
	display: block;
	width: 640px;
	height: 640px;
	margin: 0px auto;
}

.master .art-map-n {
	width: 640px;
	height: 640px;
}

.master .info-table {
	width: 640px;                 /* ボックス幅 (640px) */
	margin: 0px auto;
}

.back-box {
	width: 50px;
	height: 50px;
	text-align: center;
	margin: 0px auto;
}
.back-img {
	width: 40px;
	height: 40px;
	margin: 5px auto;
}

/*-----------
	footer
-----------*/
.footer {
	width: 100%;
	padding: 0px 0px;
}

.footer .footer-box {
	display: block;
	width: 100%
	padding: 5px 0px;
}

.footer .footer-box .copyright {
	height: 100px;
	line-height: 60px;
	color: #fff;
	font-family: verdana, droid-sans;
	font-size: 1.7rem;
	letter-spacing: 0px;
}

/*--------------------- id ---------------------*/

#news,
#car,
#clog,
#slog,
#tlog,
#pro,
#fd2,
#z33,
#s14,
#s13 {
	display: inline-block;
	margin-top: -35px;            /* 固定ヘッダ (0px -> 35px) */
	padding-top: 35px;
	/*
	background-color: rgba(0, 0, 0, 0.2);
	*/
}

#mycar,
#circuit,
#street,
#spinoff,
#kako_fd2,
#kako_z33,
#kako_s14,
#kako_s13,
#kako_cir,
#kako_sfr,
#kako_nml,
#kako_tc1,
#kako_tc2,
#kako_tlm,
#kako_htt,
#kako_kkt,
#kako_tkt,
#kako_hct,
#kako_kst,
#kako_mtb,
#kako_ovb {
	display: inline-block;
	margin-top: -70px;            /* 固定ヘッダ (0px -> 70px) */
	padding-top: 70px;
}

/*--------------------- parts ---------------------*/

/* floatの回り込み解除 */
.clearfix::after {
	content: "";
	display: block;
	clear: both;
}

/* ショートワイド幅 */
.sw {
	width: 800px;
}

/* ミドルワイド幅 */
.mw {
	width: 1000px;
}

/*--------------------- mark ---------------------*/

.mark-new {
	font-size: 1.6rem;
	font-weight: bold;
	font-style: oblique;          /* 斜体 */
	color: #ff0000;
	margin-left: 5px;
}

.mark-wet {
	font-size: 1.6rem;
	font-weight: bold;
	font-style: oblique;          /* 斜体 */
	color: #a3a3ff;
	margin-left: 5px;
}

.mark-mov {
	display: inline-block;
	margin-right: 5px;
	padding: 1px 3px 0px;
	border-radius: 0px;
	background-color: #ff0000;
	color: #fff;
	text-align: center;
	font-size: 1.1rem;
	vertical-align: 3px;          /* inlineの高さ指定 */
	letter-spacing: 0px;
}

.mark-tra {
	display: inline-block;
	margin-right: 5px;
	padding: 1px 3px 0px;
	border-radius: 0px;
	background-color: #ffffa3;
	color: #000;
	text-align: center;
	font-size: 1.1rem;
	vertical-align: 3px;          /* inlineの高さ指定 */
	letter-spacing: 0px;
}

.mark-cir {
	display: inline-block;
	margin-right: 5px;
	padding: 1px 3px 0px;
	border-radius: 0px;
	background-color: #a3a3ff;
	color: #000;
	text-align: center;
	font-size: 1.1rem;
	vertical-align: 3px;          /* inlineの高さ指定 */
	letter-spacing: 0px;
}

.mark-car {
	display: inline-block;
	margin-right: 5px;
	padding: 1px 3px 0px;
	border-radius: 0px;
	background-color: #ffa3a3;
	color: #000;
	text-align: center;
	font-size: 1.1rem;
	vertical-align: 3px;          /* inlineの高さ指定 */
	letter-spacing: 0px;
}

.mark-ove {
	display: inline-block;
	margin-right: 5px;
	padding: 1px 3px 0px;
	border-radius: 0px;
	background-color: #a3ffa3;
	color: #000;
	text-align: center;
	font-size: 1.1rem;
	vertical-align: 3px;          /* inlineの高さ指定 */
	letter-spacing: 0px;
}

.mark-oth {
	display: inline-block;
	margin-right: 5px;
	padding: 1px 3px 0px;
	border-radius: 0px;
	background-color: #c3c3c3;
	color: #000;
	text-align: center;
	font-size: 1.1rem;
	vertical-align: 3px;          /* inlineの高さ指定 */
	letter-spacing: 0px;
}

.mark-gry {
	display: inline-block;
	margin-right: 5px;
	padding: 1px 3px 0px;
	border-radius: 0px;
	background-color: #7f7f7f;
	color: #fff;
	text-align: center;
	font-size: 1.1rem;
	vertical-align: 3px;          /* inlineの高さ指定 */
	letter-spacing: 0px;
}

.mark-rmore {
	display: block;
	font-size: 1.5rem;
	font-weight: bold;
	float: right;
}

.mark-lmore {
	display: block;
	font-size: 1.5rem;
	font-weight: bold;
	float: left;
}

.mark-sign {
	display: block;
	width: 10px;
	height: 10px;
	margin: 0px auto;
	border: 2px solid;
	border-color: transparent transparent #191970 #191970;
	-webkit-transform: rotate(-45deg);        /* 矢印の傾斜指定 */
	    -ms-transform: rotate(-45deg);
	        transform: rotate(-45deg);
}

.mark-right {
	display: block;
	width: 10px;
	height: 10px;
	float: right;
	margin: 5px 5px 0px;
	border: 2px solid;
	border-color: transparent transparent #191970 #191970;
	-webkit-transform: rotate(-135deg);       /* 矢印の傾斜指定 */
	    -ms-transform: rotate(-135deg);
	        transform: rotate(-135deg);
}

.mark-left {
	display: block;
	width: 10px;
	height: 10px;
	float: left;
	margin: 5px 5px 0px;
	border: 2px solid;
	border-color: transparent transparent #191970 #191970;
	-webkit-transform: rotate(45deg);         /* 矢印の傾斜指定 */
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
}

.site-count {
	display: block;
	margin: 10px auto;         /* countの上下に10px */
}

/*--------------------- デザイン統一 ---------------------*/

/*-----------
	フォントの統一
-----------*/
.title0 {
}
.title1 {
	display: inline-block;
	width: 100%;
	font-size: 3.0rem;
	margin: 10px 0px;
	box-shadow: 0 3px 3px -3px #000;
	background-color: #fff;        /* androidブラウザ対策 */
}
.title2 {
	display: inline-block;
	width: 100%;
	height: 40px;
	text-align: center;
	margin: 5px 0px;
	line-height: 42px;
	color: #fff;
	font-size: 2.4rem;
	letter-spacing: 0px;
	text-shadow: 1.0px 1.0px 0px black;
}
.title3 {
}
.title4 {
	display: inline-block;
	width: 100%;
	font-size: 2.0rem;
	margin: 5px 0px;
	box-shadow: 0 3px 3px -3px #000;
	background-color: #fff;        /* androidブラウザ対策 */
}

.t1 {
	width: 75px;
	text-align: right;
	font-size: 1.6rem;
	background-color: #fff;        /* androidブラウザ対策 */
}
.t2 {
	text-align: center;
	font-size: 1.6rem;
	background-color: #fff;        /* androidブラウザ対策 */
}
.t3 {
	text-align: left;
	font-size: 1.6rem;
	background-color: #fff;        /* androidブラウザ対策 */
}

/*-----------
	テキストの統一
-----------*/
.text-date {
	font-size: 1.6rem;
	background-color: #fff;        /* androidブラウザ対策 */
}

.text-head {
	font-size: 1.6rem;
	font-weight: bold;
	padding: 2px 0px;
	background-color: #fff;        /* androidブラウザ対策 */
}

.text-head1 {
	font-size: 1.6rem;
	font-weight: bold;
	padding: 2px 0px;
	padding-left: 15px;
	background-color: #fff;        /* androidブラウザ対策 */
}

.text-head2 {
	font-size: 1.6rem;
	font-weight: bold;
	padding: 2px 0px;
	color: #7F7F7F;
	padding-left: 15px;
	background-color: #fff;        /* androidブラウザ対策 */
}

.text-mark {
	font-size: 1.6rem;
	font-weight: bold;
	padding: 2px 0px;
	color: #7F7F7F;
	padding-right: 15px;
	background-color: #fff;        /* androidブラウザ対策 */
	float: right;
}

.text-time {
	font-size: 1.4rem;
	color: #808080;
	vertical-align: 5px;
	background-color: #fff;        /* androidブラウザ対策 */
}

.text-time-r {
	font-size: 1.4rem;
	text-align: right;
	color: #808080;
	vertical-align: 5px;
	background-color: #fff;        /* androidブラウザ対策 */
}

.text-desc {
	font-size: 1.6rem;
	padding: 5px 0px;
	background-color: #fff;        /* androidブラウザ対策 */
}

.text-desc-c {
	font-size: 1.6rem;
	text-align: center;
	padding: 5px 0px 15px;
	background-color: #fff;        /* androidブラウザ対策 */
}

.text-pad {
	padding-left: 15px;
	background-color: #fff;        /* androidブラウザ対策 */
}

/*-----------
	画像（max-width）の統一
-----------*/
.img-box-t {
	display: block;
	max-width: 240px;
	margin: 0px auto;
}
.img-box-s {
	display: block;
	max-width: 360px;
	margin: 0px auto;
}
.img-box-m {
	display: block;
	max-width: 480px;
	margin: 0px auto;
}
.img-box-n {
	display: block;
	max-width: 640px;
	margin: 0px auto;
}
.img-box-l {
	display: block;
	max-width: 768px;              /* default 800px -> 768px */
	margin: 0px auto;
}
.img-box-sum {
	display: block;
	max-width: 120px;
	margin-left: 5px;
	float: right;
}

/*-----------
	帯の背景色統一
-----------*/
.header,
.footer,
.title2,
.back-box {
	background: #191970 url("../img/bck.png") repeat;
}

/*--------------------- デバッグ ---------------------*/

.debug {
	border: 0px solid blue;
	background-color: rgba(0, 0, 0, 0.2);  /* rgba指定 色:0～255、透明度:0～1 */
}

/*--------------------- レスポンシブ対応 ---------------------*/

/*-----------
	1920px
-----------*/
@media (max-width: 1920px) {

.base .parent-box {
	width: 50%;                   /* 固定 -> 50% */
}

.menu .left-box,
.menu .right-box {
	width: 100%;                  /* 固定 -> 100% */
}

.menu .left-box2,
.menu .right-box2 {
	width: 100%;                  /* 固定 -> 100% */
}

} /* media end */

/*-----------
	1366px
-----------*/
@media (max-width: 1600px) {

.menu,
.base {
	width: 100%;                  /* 固定 -> 100% */
}

} /* media end */

/*-----------
	1020px
-----------*/
@media (max-width: 1020px) {

.master {
	width: 800px;                  /* 100% -> 800px */
}


} /* media end */

/*-----------
	815px
-----------*/
@media (max-width: 815px) {

.header,
.home .button-box,
.whatsnew .whatsnew-box,
.master,
.master .main-box,
.footer {
	width: 100%;                  /* 固定 -> 100% */
}

.home .button1:hover {
	background-color: rgba(25, 25, 112, 0.7);  /* rgba(255, 215, 0, 0.7) */
}

.thum-img:hover {
	opacity: 1;                  /* 0.75 -> 1 */
}

.master .mov-box-l {
	position: relative;
	padding-top: 56.25%;          /* 768:432のアスペクト比維持 */
	width: 100%;                  /* 768px -> 100% */
	height: 100%;                 /* 432px -> 100% */
}

.master .mov-box-l iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;                  /* 768px -> 100% */
	height: 100%;                 /* 432px -> 100% */
}

.master .map-box-l {
	position: relative;
	padding-top: 83.33%;          /* 768:640のアスペクト比維持 */
	width: 100%;                  /* 768px -> 100% */
	height: 100%;                 /* 640px -> 100% */
}

.master .map-box-l iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;                  /* 768px -> 100% */
	height: 100%;                 /* 640px -> 100% */
}

.base .inner-box,
.menu .inner-box {
	padding: 0px 2px;
}

.master .slave-box,
.master .movpic-box {
	padding: 0px 5px 20px;
}

} /* media end */

/*-----------
	750px
-----------*/
@media (max-width: 750px) {

.base .top1-box {
	display: none;                  /* top1 -> 非表示 */
}

.base .top2-box {
	display: block;                 /* top2 -> 表示 */
}

.base .top3-box {
	display: none;                  /* top3 -> 非表示 */
}

} /* media end */

/*-----------
	660px
-----------*/
@media (max-width: 660px) {

.home .home-box {
	left: -100px;                 /* -50px -> -100px */
	padding-left: 130px;          /* 100px -> 130px */
	width: 410px;                 /* 500px -> 410px */
	height: 70px;                 /* 90px -> 70px */
	line-height: 30px;            /* 40px -> 30px */
}
.home .home-box .desc1 {
	font-size: 1.7rem;            /* 2.5rem -> 1.7rem */
}
.home .home-box .desc2 {
	font-size: 3.5rem;            /* 5.0rem -> 3.5rem */
}

.home .button-box {
	margin: 250px auto 0px;       /* 200px -> 250px */
	border-spacing: 5px 0px;      /* 20px -> 5px */
}

.home .button1 {
	padding: 10px 0px;            /* 10px 10px -> 10px 0px */
	line-height: 20px;            /* 0px -> 20px */
}

.home .button1 .bt-desc1 {
	font-size: 1.6rem;            /* 2.2rem -> 1.6rem */
}
.home .button1 .bt-desc2 {
	display: none;                /* 1.6rem -> 非表示 */
}
.home .button1 .bt-desc3 {
}

.master .mov-box-n {
	position: relative;
	padding-top: 56.25%;          /* 640:360のアスペクト比維持 */
	width: 100%;                  /* 640px -> 100% */
	height: 100%;                 /* 360px -> 100% */
}

.master .mov-box-n iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;                  /* 640px -> 100% */
	height: 100%;                 /* 360px -> 100% */
}

.master .map-box-n {
	position: relative;
	padding-top: 100%;            /* 640:640のアスペクト比維持 */
	width: 100%;                  /* 640px -> 100% */
	height: 100%;                 /* 640px -> 100% */
}

.master .map-box-n iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;                  /* 640px -> 100% */
	height: 100%;                 /* 640px -> 100% */
}

.master .mov-box-s {
	display: block;
	width: 240px;
	height: 427px;
	margin: 0px auto;
}

.master .art-mov-s {
	width: 240px;
	height: 427px;
}

.master .info-table {
	width: 100%;                  /* 640px -> 100% */
}

.base .parent-box {
	float: none;                  /* left/right -> none */
	width: 100%;                  /* 50% -> 100% */
}

.menu .left-box2,
.menu .right-box2 {
	width: 100%;                  /* 100% -> 100% */
}

.menu .child-box,
.menu .child-box-n {
	width: 50%;                   /* xx% -> 50% */
}

.menu .child-box2,
.menu .child-box-l {
	width: 100%;                  /* xx% -> 100% */
}

.title0 {
}
.title1 {
	font-size: 2.2rem;            /* 3.0rem -> 2.2rem */
}
.title2 {
	font-size: 2.0rem;            /* 2.4rem -> 2.0rem */
}
.title3 {
}
.title4 {
	font-size: 1.8rem;            /* 2.0rem -> 1.8rem */
}

.text-date {
	font-size: 1.6rem;            /* 1.6rem -> 1.6rem */
}
.text-time {
	font-size: 1.4rem;            /* 1.4rem -> 1.4rem */
}
.text-desc {
	font-size: 1.6rem;            /* 1.6rem -> 1.6rem */
}
.text-head1,
.text-head2,
.text-pad {
	padding-left: 5px;            /* 15px -> 5px */
}

.t1,
.t2,
.t3 {
	font-size: 1.6rem;            /* 1.6rem -> 1.6rem */
}

.img-box-s {
	max-width: 240px;             /* 360px -> 240px */
}

.img-box-sum {
	max-width: 100px;             /* 120px -> 100px */
}

} /* media end */

/*-----------
	480px
-----------*/
@media (max-width: 480px) {

.base .top1-box {
	display: none;                  /* top1 -> 非表示 */
}

.base .top2-box {
	display: none;                  /* top2 -> 非表示 */
}

.base .top3-box {
	display: block;                 /* top3 -> 表示 */
}

} /* media end */

/* css end */
