@charset "UTF-8";

/* CSS全体定義 */

/* imgタグ装飾設定 */
img.slant_box_l {
	transform: rotate(-5deg);
}
img.slant_box_r {
	transform: rotate(5deg);
}
img.shadow_box_black {
	box-shadow:3px 3px 10px #000000;
}
img.shadow_box_gray {
	box-shadow:3px 3px 10px #aaaaaa;
}
img.frame_box_gray {
border:solid 2px #aaaaaa;
}
img.frame_box_black {
border:solid 6px #aaaaaa;
}
img.radius_box {
	        border-radius: 15px;
	-webkit-border-radius: 15px;
	   -moz-border-radius: 15px;
}
img.circle_box {
	        border-radius: 50%;
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
}

img {
  box-sizing:border-box;
}


/* LINK設定 */
div.extlinkbox {
	text-align: left;
}
div.extlinkbox.dispcenter {
	text-align: center;
}
div.extlinkbox.dispright {
	text-align: right;
}
div.extlinkbox img {
	height: 30px;
	margin: 2px 5px 2px 2px;
}

/*!
 * html5doctor.com Reset Stylesheet v1.6.1 (http://html5doctor.com/html-5-reset-stylesheet/)
 * Richard Clark (http://richclarkdesign.com)
 * http://cssreset.com
 */
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,
article, 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;
}

/* CSS全体定義 -END- */

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* -------------------------------------
	PC用スタイル
------------------------------------- */
/* -------------------------------------
	要素
------------------------------------- */
html {
  overflow-y: scroll;
  font-size: 62.5%;
}

body {
  min-width: 850px;
  line-height: 1.231;
  background: #fff;
  color: #333;
  font-size: 16px;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", "Meiryo", verdana, "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
  -webkit-text-size-adjust: none;
}

textarea,
input {
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", "Meiryo", verdana, "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
  }

iframe,
img {
  vertical-align: top;
}

ul {
  list-style: none;
}

small {
  font-size: 80%;
}

a {
  color: blue;
}

a:hover {
  color: skyblue;
}

sup {
  vertical-align: top;
  font-size: 65%;
}

sub {
  vertical-align: bottom;
  font-size: 65%;
}

iframe {
  max-width: 100%;
}

.scrollbar::-webkit-scrollbar {
  overflow: hidden;
  width: 5px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.scrollbar::-webkit-scrollbar:horizontal {
  height: 5px;
}
.scrollbar::-webkit-scrollbar-button {
	display: none;
}
.scrollbar::-webkit-scrollbar-piece {
  background: #EEE;
}
.scrollbar::-webkit-scrollbar-piece:start {
	background: #EEE;
}
.scrollbar::-webkit-scrollbar-piece {
  background: transparent;
}
.scrollbar::-webkit-scrollbar-piece:start {
	background: transparent;
}
.scrollbar::-webkit-scrollbar-thumb {
  overflow: hidden;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  background: #666;
}
.scrollbar::-webkit-scrollbar-corner {
  overflow:hidden;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  background: #666;
}

/* -------------------------------------
	各サイズ設定
------------------------------------- */
/*.inner {
  width: 1024px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1020px) and (min-width: 768px) {
body {
    min-width: auto;
    overflow: hidden;
    }
.inner {
    width: 768px;
    padding-left: 10px;
    padding-right: 10px; 
    margin: 0 auto;
}}

@media only screen and (max-width: 767px) {
body {
    min-width: auto;
    overflow: hidden;
    }
.inner {
    width: auto;
}
main .inner {
    width: auto;
    padding: 0 10px 0;
    margin: 0 auto;
}}*/

/* -------------------------------------
	トップ＆下層共通
------------------------------------- */
.contents {
  line-height: 1.8;
}

section {
  margin: 0 0 60px;
}

section .section-body p, section .section-body ul, section .section-body ol, section .section-body table {
  margin-bottom: 1em;
}

/* トップページのコンテンツ
------------------------------------- */


/* -------------------------------------
	下層ページ
------------------------------------- */

main .contents .article-body {
	padding-top: 40px;
}

/*article > header {
  margin-bottom: 40px;
  background: #330033;
}

article > header .inner {
  position: relative;
}

article > header .inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 87px;
  z-index: 1;
  width: 100px;
  height: 100%;
  background: -moz-linear-gradient(left, #330033 0%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-linear-gradient(left, #330033 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to right, #330033 0%, rgba(255, 255, 255, 0) 100%);
}

article  header .inner:after {
  content: "";
  position: absolute;
  top: 0;
  right: 87px;
  z-index: 1;
  width: 100px;
  height: 100%;
  background: -moz-linear-gradient(right, #330033 0%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-linear-gradient(right, #330033 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to left, #330033 0%, rgba(255, 255, 255, 0) 100%);
}

article > header > .inner > h1 {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  transform: translate(0, -50%);
  font-size: 32px;
  color: #f7f7f7;
  line-height: 1.2;
  font-weight: normal;
  text-align: center;
}

article > header .qw-mainvisual {
  text-align: center;
  overflow: hidden;
}

article > header .qw-mainvisual img {
  opacity: .5;
}
*/
article .article-body p + table {
  margin-top: 30px;
margin-bottom: 50px;
}

article .article-body .lead {
  margin-bottom: 40px;
}

article .article-body .tR {
  text-align: right;
}

article .article-body .imgC {
  text-align: center;
}

article .article-body .note {
  font-size: 85%;
}

article .article-body .note p {
  margin-bottom: 10px;
}
/*
article .article-body table {
  width: 100%;
  background: white;
}

article .article-body table th {
  width: 36%;
  padding: 15px 20px;
  border: 1px solid #ffccff;
  text-align: left;
/*  color: #cc0066;*/
}
/*
article .article-body table td {
  padding: 15px 20px;
  border: 1px solid #ffccff;
/*  color: #cc0066;*/
}
	.newsInWrap p.dateIn {
		color: #666;/*#cc0066;*/
		font-size:12px;
	}

/* -------------------------------------
	各サイズ設定
------------------------------------- */

.inner {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}

main { 
    min-width: 850px;
    }

@media (max-width: 1020px) and (min-width: 768px) {
body {
    min-width: auto;
    overflow: hidden;
    }
.inner {
    width: 768px;
    padding-left: 10px;
    padding-right: 10px; 
    margin: 0 auto;
}}

@media only screen and (max-width: 767px) {
body {
    min-width: auto;
    overflow: hidden;
    }
.inner {
    width: auto;
}
main .inner {
    width: auto;
    padding: 0 10px 0;
    margin: 0 auto;
}}


@media (max-width: 1024px) and (min-width: 641px) {
body {
    min-width: auto;
    }
main { 
    width:auto;
    min-width: auto;
    }
.inner {
    width: auto;
    padding-left: 10px;
    padding-right: 10px; 
    margin: 0 auto;
    }
/*article > header .inner:before {
    left: 0;  
    }
article header .inner:after {
    right: 0;
    }*/
}
@media only screen and (max-width: 640px) {
body {
    min-width: auto;
    }
.inner {
    width: auto;
}
main { 
    width:auto;
    min-width: auto;
    }
main .inner {
    width: auto;
    padding: 0 10px 0;
    margin: 0 auto;
}
}


@media (max-width: 1024px) and (min-width: 768px) { 
  /* -------------------------------------
	PC・タブレット用スタイル
------------------------------------- */

/*article > header .inner:before {
  left: 0px;
}

article  header .inner:after {
  right: 0px;
}*/
}

@media only screen and (max-width: 640px) {
  /* -------------------------------------
	スマホ用スタイル 375px
------------------------------------- */
  /* -------------------------------------
	要素
------------------------------------- */
  body {
    min-width: 0;
  }
  img {
    max-width: 100%;
    height: auto;
  }
section {
  margin: 0 0 30px;
}

  /* -------------------------------------
	全体
------------------------------------- */
main .contents .article-body {
	padding-top: 20px;
}

/* LINK設定 */
div.extlinkbox.linkft {
	text-align: left;
    border-bottom: 1px solid rgba(255, 204, 255, 0.4);
}
div.extlinkbox.dispcenter.linkft {
	text-align: center;
    border-bottom: 1px solid rgba(255, 204, 255, 0.4);
}
div.extlinkbox.dispright.linkft {
	text-align: right;
    border-bottom: 1px solid rgba(255, 204, 255, 0.4);
}
div.extlinkbox.linkft img {
	height: 30px;
	margin: 2px 5px 2px 2px;
}

  /* -------------------------------------
	トップ＆下層共通
------------------------------------- */
  /* -------------------------------------
	トップページ
------------------------------------- */
  /* メインビジュアル
------------------------------------- */
/*article > header .inner:before {
  left: 0px;
}
article  header .inner:after {
  right: 0px;
}*/
  /* トップページのコンテンツ
------------------------------------- */

  /* -------------------------------------
	下層ページ
------------------------------------- */
/*  .contents article > header {
    margin-bottom: 20px;
  }
  .contents > article > header > .inner > h1 {
    padding: 0 10px;
    text-align: center;
    font-size: 26px;
  }*/
  /*.contents article .article-body > .inner {
    margin: 0 10px;
  }*/
/*
  .contents article .article-body table th {
    width: auto;/*50%;*/
/*    padding: 15px;
  }
  .contents article .article-body table td {
    padding: 15px;
  }
 */
}
