@charset "UTF-8";
@import url('//fonts.googleapis.com/css?family=Lato&display=swap');

/* Rausu Town css style ver 3.2 
0. Reset Section
1. Layout Section
2. Basic Tag Section       
3. Element Section       
	3-1 button
	3-2 title
	3-3 some styles
	3-4 commons
4. header section       
	4-2 Ground Navigation
5. side section    
6. footer section 
7. flash section  
8. form section
9. shared blocks
	9-1 topic (index and doc/topic)
	9-5 banner ( index, present/index and event/index) 	9-6 faq (faq inquiry)
	9-7 member
10. sub blocks
11. responsive
*/

/* -----------------------------------------------------------------------------------------------
	0. Reset Section
-------------------------------------------------------------------------------------------------- */
* { margin: 0; padding: 0; }
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, header, footer, aside, address { margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; }
html { background: #FFF; color: #000; }
* html body { font-size: small; }
*:first-child + html body { font-size: small; }
img { border: 0; margin: 0; vertical-align: bottom; }
h1, h2, h3, h4, h5, h6 { font-size: 100%; font-weight: bold; height: 100%; }
ul, dl, ol { text-indent: 0; }
li { list-style: none; }
address, caption, cite, code, dfn, em, strong, th, var { font-style: normal; font-weight: normal; }
sup { vertical-align: text-top; }
sub { vertical-align: text-bottom; }
input, textarea, select { font-family: inherit; font-size: inherit; font-weight: inherit; }
* html input, * html textarea, * html select { font-size: 100%; }
*:first-child + html + input, *:first-child html + textarea, *:first-child + html select { font-size: 100%; }
table { border-collapse: collapse; border-spacing: 0; font-size: inherit; }
th, td { text-align: left; vertical-align: top; }
caption { text-align: left; }
pre, code, kbd, samp, tt { font-family: monospace; }
* html pre, * html code, * html kbd, * html samp, * html tt { font-size: 100%; line-height: 100%; }
*:first-child + html pre, *:first-child html + code, *:first-child html + kbd, *:first-child + html + samp, *:first-child + html tt { font-size: 108%; line-height: 100%; }
input, select, textarea { font-size: 100%; font-family: Verdana, Helvetica, sans-serif; }
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary { display: block; }
*, *:before, *:after { box-sizing: border-box; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -o-box-sizing: border-box; -ms-box-sizing: border-box; }

/* -----------------------------------------------------------------------------------------------
	1. Layout Section
-------------------------------------------------------------------------------------------------- */
html {
	color: #333333;
	background: #ffffff;
	font-family: 'Lato', "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 62.5%;
	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt";
}

body {
	font-size: 15px;
	font-size: 1.5rem;
	line-height: 15px;
	line-height: 2.0rem;
	text-align: center;
}

.wrapper {
	max-width: 1200px;
	margin: 0 auto;
	text-align: left;
	position: relative;
	padding: 0 30px;
}

.header {
	padding: 0 0 8px 0;
	overflow: hidden;
	position: relative;
}
.pageHeader {
	margin-bottom: 35px;
}


/*  .main
        .contents
            .pageHeader
            .contentsFlex
                .contentBlock
                .sideBlock
*/
.main {
	width: 100%;
	text-align: left;
	margin-bottom: 65px;
}
.contentsFlex {
    display: flex;
	min-height: 1300px;
}

.sideBlock {
    flex: 1 0 auto;
	width: 20%;
	margin-right: 35px;
}

.contentBlock {
	flex: 1 0 auto;
	width: 70%;
}

.footer {
	clear: both;
	overflow: hidden;
}



.smp {
	display: none;
}

/* -----------------------------------------------------------------------------------------------
	2. Basic Tag Section       
-------------------------------------------------------------------------------------------------- */
a, a:visited {
	color: #3683EE;
	text-decoration: none;
	transition: 0.5s;
}

a:hover {
	color: #33ccff;
	text-decoration: none;
}

a:hover img {
	filter: alpha(opacity=80);
	-moz-opacity: 0.80;
	opacity: 0.80;
	transition: 0.5s;
}





img {
	vertical-align: bottom;
	line-height: 1.0;
}

table th img, table td img {
	vertical-align: middle;
}

.clear {
	clear: both;
}

.click {
	cursor: pointer;
}

br.clear {
	clear: both;
	height: 0;
}

strong {
	font-weight: bold;
}

label {
	display: inline-block;
	vertical-align: middle;
}

input[type='text'], textarea {
	color: #06C;
}

input:focus, textarea:focus, select:focus {
	background-color: #FFC;
}

/* -----------------------------------------------------------------------------------------------
	3. Element Section       
-------------------------------------------------------------------------------------------------- */

/* 3-1 button */
.btn {
	width: 100%;
	margin: 8px auto;
	background-color: #d8d8d8;
	color: #000000;
	border-radius: 4px; -webkit-border-radius: 4px; -moz-border-radius: 4px;
	border: 1px solid #c8c8c8;
	text-align: center;
	padding: 12px 0 10px 0;
	font-size: 1.6rem;
}

.btn a, .btn a:visited {
	color: #000000;
}

.btn:hover {
	background-color: #eeeeee;
	color: #009999;
	transition-duration: 0.5s;
	cursor: pointer;
}

.btn:hover a {
	color: #009999;
	text-decoration: none;
	transition-duration: 0.5s;
}

.btn_40 {
	width: 40%;
}
.btn_30 {
	width: 30%;
}
.btn_20 {
	width: 20%;
}



.btn_thin {
	padding: 6px 0 4px 0;
	font-size: 13px;
	font-size: 1.3rem;
}

.btn_orange {
	background-color: #ee6633;
	color: #ffffff;
	border: none;
}

.btn_orange a {
	color: #ffffff;
}

.btn_orange:hover a {
	color: #ee6633;
}

.btn_narrow {
	width: 20%;
	float: left;
	margin-right: 15px;
}

.btn_bar {
	width: 100%;
	background-color: #a0a0a0;
	color: #ffffff;
	text-align: center;
	padding: 18px 0 16px 0;
	border-radius: 5px; -webkit-border-radius: 5px; -moz-border-radius: 5px;
	font-size: 18px;
	font-size: 1.8rem;
	border: none;
}

.btn_bar a {
	color: #ffffff;
	display: block;
}

.btn_bar:hover {
	background-color: #eeeeee;
	color: #444444;
	transition-duration: 0.5s;
	cursor: pointer;
}

.btn_bar:hover a {
	color: #444444;
	text-decoration: none;
	transition-duration: 0.5s;
}

.btn_bar_low {
	padding: 8px 0 6px 0;
	font-size: 14px;
	font-size: 1.4rem;
}

.btn_submit {
	width: 100%;
	background-color: #009999;
	color: #ffffff;
	text-align: center;
	padding: 18px 0 16px 0;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	font-size: 18px;
	font-size: 1.8rem;
	border: none;
	margin-bottom: 15px;
}

.btn_submit a {
	color: #ffffff;
	display: block;
}

.btn_submit:hover {
	background-color: #eeeeee;
	color: #009999;
	transition-duration: 0.5s;
	cursor: pointer;
}

.btn_submit:hover a {
	color: #009999;
	text-decoration: none;
	transition-duration: 0.5s;
}

.btn_redit {
	background: #b0b0b0;
	padding: 5px 0;
}



.other_site .wrapper {
    display: flex;
    justify-content: space-around;
    margin-bottom: 40px;
}
.other_site .wrapper div {
    flex: 0 1 auto;
    width: 38%;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}
.other_site img {
    width: 100%;
 	border-radius: 4px; -webkit-border-radius: 4px; -moz-border-radius: 4px;
}

/* 3-3 wig styles */

.view {
    font-size: 1.6rem;
	line-height: 1.5;
    
}
.view p {
	font-size: 1.6rem;
	line-height: 2;
	margin-bottom: 8px;
}
.view h3 {
	background: #E7E5E7;
	border-radius: 6px;
	padding: 25px 15px;
	font-size: 2.5rem;
    margin-top: 60px;
	margin-bottom: 30px;
}
.view h3:first-child {
    margin-top: 0;
}

.view h4 {
    margin: 25px 0 15px 0;
    font-size: 1.8rem;
    line-height: 1.5;
    padding: 2px 0;
}
.view h4:before {
    content: '●';
}
.view h5 {
	font-size: 1.5rem;
	margin: 15px 0 10px 0;
}
.view table {
	border: 1px solid #808080;
}
.view th, .view td {
	border: 1px solid #c0c0c0;
	padding: 4px 8px;
}

.view p a, .view li a, .view dd a, .view td a {
   background-image: url(/img/images/common/icon_link.png);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 20px;
    padding: 5px 0 5px 24px; 
}

.view p a[href $='.pdf'], .view li a[href $='.pdf'], .view dd a[href $='.pdf'], .view td a[href $='.pdf'] {
   background-image: url(/img/images/common/icon_pdf.png);
}
.view p a[href $='.doc'], .view li a[href $='.doc'], .view dd a[href $='.doc'], .view td a[href $='.doc'],
.view p a[href $='.docx'], .view li a[href $='.docx'], .view dd a[href $='.docx'], .view td a[href $='.docx']
{
   background-image: url(/img/images/common/icon_word.png);
}
.view p a[href $='.xls'], .view li a[href $='.xls'], .view dd a[href $='.xls'], .view td a[href $='.xls'] {
   background-image: url(/img/images/common/icon_xls.png);
}

/*
.view p a, .view li a, .view td a  {
    background-image: url(/img/images/common/icon_link.png);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 15px;
    padding-left: 18px;
} */
.link_line {
   background-image: url(/img/images/common/icon_link.png);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 15px;
    padding-left: 18px; 
}

/* 3-6 list */



.view ul {
    margin: 15px 0 5px 20px;
}
.view ul > li {
    color: #000;
    list-style: disc;
	list-style-position: outside;
	line-height: 1.5;
    margin: 6px 0;
}
.view ol {
	margin: 0 0 10px 50px;
}
.view ol li {
	margin-bottom: 6px;
	color: #000;
	list-style: decimal;
	list-style-position: outside;
	line-height: 1.5;
}
.view li > ol {
	margin-bottom: 20px;
	line-height: 1.0;
}
.view li > ol li {
	margin-bottom: 0;
	line-height: 1.0;
}
.view dt {
	margin: 25px 0 15px 13px;
    	font-size: 15px;
	font-size: 1.5rem;
	font-weight: bold;
}
.view dd {
	margin: 0 0 10px 32px;
	line-height: 1.5;
	line-height: 1.75;
	text-align: justify;
	margin: 0 15px 0 40px;
}
.view dd > dl dd {
	margin-left: 30px;
	margin-bottom: 0;
}

.ul_pdf > li {
	background-image: url(/img/images/common/icon_pdf.png);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 24px;
	line-height: 135%;
	margin: 0 0 10px 10px;
}


/* 3-4 some styles */

/* header tag  */
.h3_line {
	width: 240px;
	margin: 25px auto;
	font-size: 2.4rem;
	font-weight: bold;
	padding-bottom: 12px;
	border-bottom: 3px solid #008C7A;
	text-align: center;
	letter-spacing: 0.1rem;
}



.block {
	overflow: hidden;
	padding: 8px;
	border: 1px solid #e7e7e7;
	background: #ffffff;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	margin-bottom: 20px;
}

.page_title {
	font-size: 18px;
	font-size: 1.8rem;
	margin-bottom: 30px;
	padding: 3px 0 0 0;
}

.section {
	margin-bottom: 50px;
}

.section p {
	line-height: 1.5;
}

.link_inner {
	background: url(/img/images/common/icon_linkinner.png);
	background-repeat: no-repeat;
	background-position: center left;
	padding-left: 17px;
	padding-top: 2px;
}

.paging {
	margin: 0 0 20px 20px;
	line-height: 150%;
}

.notfound {
	margin: 0;
}

.error-message, .red {
	color: #ff0000;
}

.freedial {
	background-image: url(/img/images/common/icon_freedial.png);
	background-repeat: no-repeat;
	background-position: left center;
	padding: 3px 0 0 22px;
}

.fixed {
	position: fixed;
	top: 20px;
	right: 25px;
	z-index: 10000;
}

.highlight {
	background: #ffff00;
	padding: 2px 1px 1px 1px;
}


.mt-image-none {
    width: 100%;
}


/* 3-4 commons */
.common {
	margin: 0 auto 30px auto;
	width: 80%;
}




.dl_horizontal {
	margin: 10px 0 10px 0;
	width: 100%;
	overflow: hidden;
}

.dl_horizontal dt {
	clear: left;
	width: 30%;
	float: left;
	padding: 0 20px 4px 10px;
	margin-bottom: 15px;
	overflow: hidden;
	color: #404040;
	border-bottom: 1px dotted #808080;
}

.dl_horizontal dd {
	width: 70%;
	margin-bottom: 15px;
	padding-bottom: 4px;
	overflow: hidden;
}

.dl_pic {
	width: 25%;
	float: left;
	padding-right: 20px;
	margin-bottom: 20px;
}

.dl_pic:nth-of-type(4n+1) {
	clear: left;
}

.dl_pic img {
	width: 100%;
}

.dl_pic dd {
	text-align: center;
	margin-top: 8px;
}

/* page nation */


/* page nation */
.page_count {
	margin-bottom: 5px;
	padding: 0;
	font-size: 12px; font-size: 1.2rem;
	color: #888888;
}
.page_nation, .paginator {
	margin: 0 0 20px 0;
	overflow: hidden;
}
.paginator p {
	clear: both;
}
.page_nation ul, .pagination {
	list-style-type: none;
	padding: 0;
	text-align: center;
	margin-bottom: 12px;
	overflow: hidden;
}
.page_nation .pn, .pagination > li {
	float: left;
	width: 32px;
	padding: 8px 0 6px 0;
	margin: 0;
	background: #ffffff;
	border-top: 1px solid #c2c2c2;
	border-bottom: 1px solid #c2c2c2;
	border-left: 1px solid #c2c2c2;
	font-size: 16px; font-size: 1.6rem;
	color:#159e92;
    list-style: none!important;
}
.page_nation .current, .pagination .active {
	background: #159e92;
	color: #ffffff;
} 
.page_nation .current a, .pagination .active a {
    color: #ffffff;
}
.page_nation .pn:hover, .pagination > li:hover {
	background: #9acfb5;
	transition-duration: 0.5s;
	cursor: pointer;
}
.page_nation .pn:hover a, .pagination > li:hover a {
	transition-duration: 0.5s;
	color: #ffffff;
}

.pn_prev, .pagination .prev {
	width: 120px;
	-webkit-border-top-left-radius: 4px; 
	-moz-border-radius-topleft: 4px;  
	-webkit-border-bottom-left-radius: 4px; 
	-moz-border-radius-bottomleft: 4px;
}
.pn_next, .pagination .next {
	width: 110px;
	border: 1px solid #c2c2c2;
	-webkit-border-top-right-radius: 4px; -moz-border-radius-topright: 4px;  
	-webkit-border-bottom-right-radius: 4px; -moz-border-radius-bottomright: 4px;
}
.pagination .first, .pagination .last {
	width: 70px;
}
.page_nation + *, .paginator + *  {
	clear: both;
}




.section_block {
    border-top: 3px solid #e8e8e8;
    border-bottom: 3px solid #e8e8e8;
    padding: 5px 20px 15px 20px;
}

.section_block_name {
    font-size: 2.6rem!important;
    font-weight: bold;
    margin-left: 16px;
}


.disabled {
	display: none;
}

/* -----------------------------------------------------------------------------------------------
	4. header section       
-------------------------------------------------------------------------------------------------- */
.header {
	background: #ffffff;
    margin-bottom: 20px;
	position: relative;
}

.header_frex {
    display: flex;
    justify-content: space-between;
	margin-bottom: 10px;
    
    width: 100%;
    background: rgba(255,255,255, 0.4);
    padding: 6px 10px;
}
.header_frex a {
	color: #000000;
}
.header_frex_child {
	flex: 0 1 auto;
    position: relative;
}
.header_frex_child > p, .header_frex_child > ul {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);  -webkit-transform: translateY(-50%);
}

.header_cityName {
   width: 25%;
}
    .header_cityName img {
        width: 100%;
    }
.header_siteName {
	width: 15%;
}
.header_siteName p {
    border-radius: 5px; -webkit-border-radius: 5px; -moz-border-radius: 5px;
    padding: 5px 10px;
    background: #ffffff; 
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
}

.header_siteSelect {
    width: 25%;
}
.header_siteSelect a {
    background: url(/img/images/common/icon_link.png) left top no-repeat;
    background-size: 16px;
    padding-left: 18px;
}

.header_snsSelect {
    width: 15%;
}
.header_snsSelect img {
    width: 20%;
}

.header_contact {
    width: 15%;
}
.header_contact_phone p {
    font-size: 1.6rem;
    font-weight: bold;
    background: url(/img/images/common/icon_phone.png) left top no-repeat;
    background-size: 16px;
    padding-left: 22px;
}




.mobileMenuBtn {
    display: none;
}

.search_box {
	background: #E7E5E7;
	border-radius: 6px;
	padding: 15px;
	overflow: hidden;
	width: 100%;
}
.search_box .text {
	width: 88%;
	float: left;
	margin:0 2% 0 0;
}
.search_box_submit {
	width: 10%;
	float: right;
	border: none;
	background-color: #303030;
	color: #ffffff;
	border-radius: 4px;
	text-align: center;
	padding: 5px 0;
	font-size: 1.6rem;
	transition-duration: 0.5s;
}
.search_box_submit a {
	color: #000000;
}
.search_box_submit:hover {
	background-color: #ffffff;
	color: #009999;
	transition-duration: 0.5s;
	cursor: pointer;
}
.search_box_submit:hover a {
	color: #009999;
	text-decoration: none;
	transition-duration: 0.5s;
}

.search_box_pc {
    display: block;
}
.search_box_smp {
    display: none;
}

.breadmenu {
	margin-bottom: 50px;
}
.breadmenu_sep {
	width: 20px;
}
.breadmenu_sep img {
	width: 100%;
}

.page_title {
	text-align: center;
	font-size: 3.0rem;
	color: #4A4A4A;
	line-height: 1.2;
	padding-bottom: 25px;
	 border-bottom: 4px solid #4A4A4A;
	margin-bottom: 20px;
	 }
.page_summary {
	color: #808080;
	font-size:1.6rem;
	line-height: 1.5;
}

.reqMessage {
    background: #ff6c00;
    color: #ffffff;
    font-size: 1.3rem;
    padding: 3px 8px 2px 8px;
    border-radius: 2px;
}

/* -----------------------------------------------------------------------------------------------
	5. side section 
-------------------------------------------------------------------------------------------------- */
.sideMenu {
	background: #E7E5E7;
	border-radius: 6px;
	padding: 20px 20px 10px 20px;
	margin-bottom: 20px;
    width: 100%;
}
/* .sideMenu_fixed {
    position: fixed;
    top:0;
} */


.sideMenu_L1 {
    
    margin-bottom: 10px;
}
.sidemenu_L1_h {
    background: #666666;
    color: #ffffff;
	border-radius: 5px; -webkit-border-radius: 5px; -moz-border-radius: 5px;
	font-size: 1.8rem;
	line-height: 1.2;
    padding: 7px 10px 5px 10px;
    margin-bottom: 10px;
}

.sideMenu_L2 {
    margin: 18px 0 18px 10px;
}
.sideMenu_L2_h {
   border-left: 4px solid #4A4A4A;
	padding-left: 8px;
	font-size: 1.8rem;
	line-height: 1.2;
    margin-bottom: 15px;
}
.sideMenu_L2_h:hover {
    background: #bbbbbb;
    transition: 0.5s;
}
.sideMenu_L2_h a {
    color: #333333;
}
.sideMenu_L3 {
    margin: 18px 0 20px 10px;
}
.sideMenu_L3_h {
    margin: 12px 0;
	font-size: 1.7rem;
	line-height: 1.2;
    padding-bottom: 6px;
    border-bottom: 1px dotted #999999;
    color: #888888;
}
.sideMenu_L3_h:first-child {
    border-top: 1px dotted #999999;
    padding-top: 10px;
}
.sideMenu_L3_h a {
    color: #333333;
}

ol.sideMenu_L3 li {
    list-style: decimal;
    margin-left: 13px;
}

/* -----------------------------------------------------------------------------------------------
	6. footer section 
-------------------------------------------------------------------------------------------------- */
/* inquiryBtn */

.inquiryBtn {
	position: fixed;
	bottom: 10px;
	left: 10px;
	overflow: hidden;
	width: 120px;
	height: 40px;
    background: rgba(0,0,0,0.5);
	border-radius: 5px; -webkit-border-radius: 5px; -moz-border-radius: 5px;
    text-align: center;
    padding-top: 10px;
    z-index: 100;
}
.inquiryBtn a, .inquiryBtn a:visited {
    color: #ffffff;
}

/* pagetop */
.pagetop {
	position: fixed;
	bottom: 0px;
	right: 10px;
	display: none;
	overflow: hidden;
	width: 50px;
	height: 50px;
    z-index: 100;
}

.pagetop a {
	filter: alpha(opacity=30);
	-moz-opacity: 0.3;
	opacity: 0.3;
}

.pagetop a:hover {
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}

/* footer */
.footer_menu {
	text-align: center;
}

.footer {
	margin: 20px 0 0 0;
	background: #008C7A;
	color: #ffffff;
	padding: 40px;
	font-size: 1.4rem;
	text-align: left;
	overflow: hidden;
}
.footer a, .footer a:visited {
    color: #ffffff;
}

.footer_info {
	width: 40%;
	float: left;
}

.footer_name {
    background-image: url(/img/images/common/icon_lg_ra_white.png);
    background-size: 36px;
    background-repeat: no-repeat;
    height: 36px;
    
	font-weight: bold;
	font-size: 2.0rem;
    padding: 8px 0 0 40px;
	margin-bottom: 20px;
}

.footer_jinko {
	width: 55%;
	float: right;
}
.footer_jinko p {
	margin-bottom: 10px;
}

.table_jinko {
	width: 100%;
}
.table_jinko th, .table_jinko td {
	padding: 10px;
	border: 2px solid #008C7A;
    width: 25%;
}
.table_jinko th {
	background: #FFFFA1;
	text-align: center;
	color: #2C3C40;
}
.table_jinko td {
	background: #ffffff;
	text-align: center;
	color: #2C3C40;
}

.table_jinko span {
    font-size: 1.6rem;
    font-weight: bold;
}
.footer_copyright {
	clear: left;
	padding: 22px 0;
	background: #2C3C40;
}
.footer_copyright p {
	text-align: center;
	font-size: 1.1rem;
	color: #ffffff;
}

/* -----------------------------------------------------------------------------------------------
	7. flash section 
-------------------------------------------------------------------------------------------------- */
#flashMessage {
	display: none;
	position: fixed;
	top: 70px;
	left: 0;
    right: 0;
    margin: 0 auto;
	background: #444;
	filter: alpha(opacity=70);
	-moz-opacity: 0.80;
	opacity: 0.80;
	width: 80%;
	min-height: 140px;
	border-radius: 10px; -webkit-border-radius: 10px; -moz-border-radius: 10px;
	padding: 130px 20px 130px 20px;
	text-align: center;
	color: #fff;
	z-index: 10;

	font-size: 2.4rem!important;
	line-height: 2.0;
}

#flashMessage a {
	color: #fff;
}

/* -----------------------------------------------------------------------------------------------
	8. form section
-------------------------------------------------------------------------------------------------- */
.caution_info {
	margin-bottom: 20px;
}

.cautionBlock {
	width: 100%;
	margin: 0px 0px 20px 0px;
	padding: 0px;
	border: 1px solid #FC6;
	background: #FFFFF5;
	font-size: 13px;
	font-size: 1.3rem;
}

.cautionBlock h3 {
	border-bottom: 1px solid #FC6;
	padding: 4px;
	color: #FF6666;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: bold;
	background: #FFFFEE;
}

.cautionBlock ul {
	margin: 10px 15px 8px 15px;
}

.cautionBlock li {
	list-style: disc;
	margin: 8px 0px 0px 20px;
}

input.radio {
	margin-right: 5px;
}

#formBlock {
	width: 100%;
	margin: 20px 0;
}

#formBlock table {
	border-collapse: collapse;
	list-style-position: inside;
	margin-bottom: 10px;
	width: 100%;
	font-size: 15px;
	font-size: 1.5rem;
}

#formBlock td {
	text-align: left;
	border: solid 1px #CCCCCC;
	padding: 10px;
	line-height: 150%;
}

#formBlock th {
	background: #F5F5F5;
	color: #333333;
	border: solid 1px #CCCCCC;
	padding: 12px 10px 10px 10px;
	line-height: 150%;
	width: 30%;
}

#formBlock th.head {
	background: #FFEEEE;
	color: #FF6666;
	font-size: 13px;
	font-size: 1.3rem;
	border: solid 1px #CCCCCC;
	padding: 3px;
	font-size: 15px;
	font-size: 1.5rem;
}

input[type='text'], input[type='email'], input[type='password'], textarea {
	font-size: 16px;
	font-size: 1.6rem;
	color: #06F;
	padding: 6px;
	border: 1px solid #DDD;
	margin: 0;
	width: 100%;
}

.error {
	color: #FF0000;
}

label {
	margin-right: 5px;
}

#policy {
	font-size: 11px;
	font-size: 1.1rem;
	margin: 30px 0 0 0;
}

.eventtitle {
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	font-size: 24px;
	font-size: 2.4rem;
	line-height: 1.2;
	padding: 32px 4px;
	text-align: center;
	margin-bottom: 15px;
	color: #808080;
	background: #f9f9ed;
}

#formBlock .submit {
	margin: 15px 0;
	color: #ff8888;
}

/* -----------------------------------------------------------------------------------------------
	9. table blocks
-------------------------------------------------------------------------------------------------- */
table, .table {
	border-collapse: collapse;
	list-style-position: inside;
	margin: 15px 0;
	width: 100%;
	font-size: 15px;
	font-size: 1.5rem;
}

td, .table td {
	text-align: left;
	border: solid 1px #CCCCCC;
	padding: 15px 15px;
	line-height: 150%;
	vertical-align: middle;
}

th, .table th {
	background: #F5F5F5;
	color: #333333;
	border: solid 1px #CCCCCC;
	padding: 12px 10px 10px 10px;
	line-height: 150%;
	width: 30%;
	vertical-align: middle;
	text-align: center;
	font-weight: bold;
}

.table th.head {
	background: #FFEEEE;
	color: #FF6666;
	font-size: 13px;
	font-size: 1.3rem;
	border: solid 1px #CCCCCC;
	padding: 3px;
	font-size: 15px;
	font-size: 1.5rem;
}



/* -----------------------------------------------------------------------------------------------
	9. shared blocks
-------------------------------------------------------------------------------------------------- */

/* dekigoto navi */
.dekigoto_section {
	margin-bottom: 60px;
	overflow: hidden;
}
.dekigoto_block_flex {
	width: 100%;
    overflow: hidden;
	background: #ebebeb;
	padding: 10px 10px 0 10px;
    
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.dekigoto_block {
	width: 23%;
	flex: 0 1 auto;
    margin-bottom: 15px;
	background: #ffffff;
	border-radius: 8px;
	background-image: url(/img/images/common/icon_event_a.png);
	background-repeat: no-repeat;
	background-size: 35%;
	background-position: left center;
	transition: 0.5s;
}
.dekigoto_block:hover {
	background-color: #FEF27A;
	transition: 0.5s;
}
.dekigoto_block_label {
	text-align: center;
	margin: 50px 0 0 30%;
	height: 70px;
	font-size: 2.4rem;
	font-weight: bold;
    line-height: 1.24;
}
.dekigoto_block_label a, .dekigoto_block_label a:visited {
	color:#000000;
}
.dekigoto_block_1 {background-image: url(/img/images/common/icon_event_a.png); }
.dekigoto_block_2 {background-image: url(/img/images/common/icon_event_b.png); }
.dekigoto_block_3 {background-image: url(/img/images/common/icon_event_c.png); }
.dekigoto_block_4 {background-image: url(/img/images/common/icon_event_d.png); }
.dekigoto_block_5 {background-image: url(/img/images/common/icon_event_e.png); }
.dekigoto_block_6 {background-image: url(/img/images/common/icon_event_f.png); }
.dekigoto_block_7 {background-image: url(/img/images/common/icon_event_g.png); }
.dekigoto_block_8 {background-image: url(/img/images/common/icon_event_h.png); }
.dekigoto_block_9 {background-image: url(/img/images/common/icon_event_i.png); }
.dekigoto_block_10 {background-image: url(/img/images/common/icon_event_j.png); }




/* dekigoto index */
.dekigoto {
    margin-bottom: 60px!important;
}
.dekigoto_pagelink {
    background: #009999;
    padding: 8px 20px;
    margin-bottom: 30px!important;
	border-radius: 5px; -webkit-border-radius: 5px; -moz-border-radius: 5px;
    color: #ffffff;
}
.dekigoto_pagelink a, .dekigoto_pagelink a:visited {
    color: #ffffff;
}

/* bunrui navi */
.bunrui_section {
	margin-bottom: 60px;
	overflow: hidden;
}

.bunrui_block_flex {
	width: 100%;
    display: flex;
	flex-wrap: wrap;
    justify-content: space-between;
}
.bunrui_block {
    flex: 0 1 auto;
    width: 22.75%;
    margin-bottom: 40px;
}

.bunrui_block_label {
	background: #8BCBC2;
	color: #ffffff;
	padding: 9px 10px 7px 10px;
	border-radius: 4px;
	margin-bottom: 8px;
	font-size: 1.6rem;
	letter-spacing: 0.1rem;
    height: auto;
}
.bunrui_block_list > li {
	border-bottom: 1px solid #9C9C9C;
	padding: 5px 0 5px 24px;
	background-image: url(/img/images/common/icon_li25.png);
	background-repeat: no-repeat;
	background-size: 16px;
	background-position: left center;
}
.bunrui_block_list > li a {
	color: #000000;
	 }
.bunrui_block_list > li a:hover {
	color:deepskyblue;
}


/* top_banners */

.top_banners {
	margin-bottom: 40px;
	overflow: hidden;
}
.top_banners_flex{
    width: 100%;
    display: flex;
	flex-wrap: wrap;
    justify-content: space-between;
}

.top_banner {
    flex: 0 1 auto;
    width: 19%;
    background-image: url(/img/images/common/banner_back.jpg);
    background-size: cover;
}
.top_banner p {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
	line-height: 1.5;
    margin: 6px;
    padding: 20px 8px;
    border: 2px solid #000000;
}
.top_banner a, .top_banner a:visited {
    color: #000000;
}
.top_banner p:hover a {
    color: #009999;
}
.top_banner img {
	width: 100%;
}

.coverwrap {
    position: fixed;
    z-index: 100;
    top:0;
	left:0;
    width:100%;
    height: 100%;
    background: rgba(0,0,0,0.04);
}


/* 3-2 cats styles */
.cats {
	margin-bottom: 70px;
}
.cats_title {
	background: #E7E5E7;
	border-radius: 6px;
	padding: 15px;
	font-size: 2.5rem;
	margin-bottom: 30px;
	line-height: 1.5;
    transition: 0.5s;
}
.cats_title:hover {
    background: #009999;
    transition: 0.5s;
    cursor: pointer;
}
.cats_title a {
    color: #000000;
}
.cats_title a:hover,.cats_title:hover a {
    color: #ffffff;
    transition: 0.5s;
}
.cats_summary {
	padding-bottom: 10px;
	border-bottom: 1px dashed #808080;
	margin-bottom: 10px;
	color: #808080;
	font-size:1.6rem;
	line-height: 1.5;
}
.cats_continue {
	margin: 15px 0 0 0;
	text-align: right;
	font-size: 1.5rem;
	padding: 2px 30px 5px 0;
	background-image: url(/img/images/common/icon_continue.png);
	background-repeat: no-repeat;
	background-size: 26px;
	background-position: right top;
}

.cats h3 {
	font-size: 1.6rem;
	padding-bottom: 6px;
	border-bottom: 1px dashed #808080;
	margin-bottom: 10px;
}
.cats p {
	line-height: 1.75;
	margin-bottom: 10px;
}
.cats_next {
    text-align: center;
}
.cats_next img {
    width:dekigoto_pagelink 50px;
}
.dekigoto:last-child .cats_next {
    display: none;
}

/* fin */

