/* CSS Document */

@charset "UTF-8";

/* -------------------------------------------------- */
/* グローバルナビゲーション */
/* -------------------------------------------------- */

@media only screen and (min-width: 769px) {
nav ul li:nth-of-type(5) a {
	border-bottom: 4px solid #FFF;
}
}

/* -------------------------------------------------- */
/* ヘッダー */
/* -------------------------------------------------- */

header {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	top: 0;
	left: 0;
	background-color: #FFF;
	z-index: 10;
}
@media only screen and (min-width: 769px) {
header {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	position: relative;
	background-color: #FFF;
}
}

header #main {
    height: 20vh;
    background-image: url(../img/common/dot.gif),url(../img/access/bg_main_01.jpg);
    background-repeat: repeat, no-repeat;
    background-blend-mode: overlay;
    background-size: auto, cover;
    background-position: center 80%;
    display: flex;
    flex-wrap: wrap;
    /*flex-direction: column;*/ /* 子要素をflexboxにより縦方向に揃える */
    justify-content: center; /* 子要素をflexboxにより中央に配置する */
    align-items: center;  /* 子要素をflexboxにより中央に配置する */
    position: relative;
    padding-top: 90px;
}
@media only screen and (min-width: 769px) {
header #main {
    height: 360px;
    padding-top: 0px;
    background-position: center 80%;
}
}


header #pmain {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 90px;
    background-color: #000;
}
@media only screen and (min-width: 769px) {
header #pmain {
    position: inherit;
    background-color:  transparent;
    height: auto;
}
}


h1 {
    /*border: 1px solid #FFF;*/
    margin: 8vw auto 1vw auto;
    width: 50vw;
    height: auto;
    text-align: left;
    /*padding: 10vw;*/
    z-index: 10;
}
@media only screen and (min-width: 769px) {
h1 {
    margin: 80px auto 0 auto !important;
    width: 600px;
    height: auto;
    /*padding: 10vw;*/
}
}


header h2 {
    position: absolute;
    text-align: center;
    bottom:0;
    width: 100%;
    background-color: #000;
    color: #FFF;
    font-size: 26px;
    padding: 2vw 0;
}
@media only screen and (min-width: 769px) {
header h2 {
    position: relative;
    width: auto;
    background-color: transparent;
    /*border: 1px solid #FFF;*/
    color: #FFF;
    font-size: 30px;
    font-weight: bold;
    text-shadow: 0px 0px 10px #3d3d3d;
    padding: 0;
}
}

header div.boldtext {
    margin-top: -30px;
    font-size: 40px !important;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #FFF;
    font-weight: bold;
    text-shadow: 0px 0px 10px #3d3d3d;
}
@media only screen and (min-width: 769px) {
header div.boldtext {
    display: none;
}
}

main {
    width: 100%;
    padding: 4vw 0;
    line-height: 160%;
	/*border: 10px solid #CCC;*/
}

main article {
    margin: 0 4vw 30px 4vw;
}

main article.inside {
    margin: 0 4vw 30px 4vw;
}
@media only screen and (min-width: 769px) {
main article.inside {
    margin: 0 14vw 30px 14vw;
}
}

main article .date {
    color: #999;
}
main article h2 {
    font-size: 26px;
    font-weight: bold;
    padding-bottom: 10px;
    border-bottom: 1px solid #999;
}

main article strong {
    font-size: 20px;
    font-weight: bold;
}

main article p:not(.checklist) a {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    width: 100%;
    background-color: #000;
    padding: 2vw;
    text-align: center;
}

main article p:not(.checklist) a:link { color:#FFF; text-decoration: none; }
main article p:not(.checklist) a:visited { color:#FFF; text-decoration: none; }
main article p:not(.checklist) a:hover { color:#FFF; text-decoration: none; }
main article p:not(.checklist) a:active { color:#FFF; text-decoration: none; }
main article p:not(.checklist) a:focus { outline:none;}

main article table {
    width: 100%;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	text-align: center;
}
main article table th {
	margin: 0px 0px 0px 0px;
	padding: 4px;
	font-weight: bold;
	text-align: center;
	background-color: #55B9F5;
    color: #FFF;
	border: 1px solid #FFF;
    font-size: 18px;
}
main article table td {
	margin: 0px 0px 0px 0px;
	padding: 4px;
	font-weight: bold;
	text-align: center;
	border: 1px solid #FFF;
    font-size: 18px;
    position: relative;
}
main article table td.top {
    color: #1CA0F2;
    background-color: #DDF1FC;
}
main article table td.bottom {
    background-color: #BAE3F9;
}

main article .price {
    text-align: right;
}

main article p.checklist {
	width: 100%;
	background-color: #FFF;
}
main article p.checklist img {
	width: 100%;
}
