@charset "utf-8";


/* ----------------------------------------
	common
---------------------------------------- */
body {
font-size:13px;
font-family: 'Noto Sans JP', sans-serif;
line-height:1.5;
}

/*
img {
	width:100%;
	max-width: 100%;
	height: auto;
	display: block; //ブロック要素化
	margin: 0 auto; //中央寄せ
}

*/
.img-orig-size {
	width: auto;
}
.img-fixed-400px { width: 400px; }

a {text-decoration:none;}

a:hover {
	text-decoration: transparent;
}

.pc_area { display: block !important; }
.sp_area { display: none !important; }
@media only screen and (max-width: 750px) {
	.pc_area { display: none !important; }
	.sp_area { display: block !important; }
}

@media screen and (max-width: 640px) {
.spbr_none_box br {
	display: none;
	}
}

.link_img01 a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
  transition-duration: .1s;
}


.row { margin: 0; padding: 0 ; width: auto; overflow: hidden; }

@media (min-width: 750px){
	.row {
		max-width: 1280px;
		margin: 0 auto;
		padding: 0;
	}
	.grid-12, .grid-9, .grid-7, .grid-6, .grid-5, .grid-4, .grid-3, .menu_grid-4 {
		float: left;
		padding: 0 0;
	}
	.grid-12 {
		width: 100%;
	}
	.grid-9 {
		width: 75%;
	}

	.grid-7 {
		width: 58.3333%;
	}

	.grid-6 {
		width: 50%;
	}

	.grid-5 {
		width: 41.6666%;
	}

	.grid-4 {
		width: 33.3333%;
	}
	.grid-3 {
		width: 25%;
	}
	.menu_grid-4 {
		width: 33.3333%;
	}
	.grid-center {
		margin-left: auto;
		margin-right: auto;
	}
}

	.block-grid {
	width: auto;
	  overflow: hidden;
	  list-style: none;
	  margin: 0 -1% 30px;
		padding: 0;
	}
	.block-grid li {
		float: left;
	  margin: 0 1% 30px;
	  padding: 0;
	}
	.block-grid a {
		text-decoration: none;
	}

	@media (min-width: 750px){
		.block-grid-2 li {
			width: 48%;
		}
		.block-grid-3 li:nth-child(2n+1) {
			clear: both;
		}
	}

		@media (min-width: 480px){
		.block-grid-3 li {
			width: 48%;
		}
		.block-grid-3 li:nth-child(2n+1) {
			clear: both;
		}
	}
	@media (min-width: 750px){
		.block-grid-3 li {
			width: 31.3333%;
		}
		.block-grid-3 li:nth-child(2n+1) {
			clear: none;
		}
		.block-grid-3 li:nth-child(3n+1) {
			clear: both;
		}
	}



/* PCで電話番号リンクを無効に */
@media (min-width: 651px) {
    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}


.fo_color01{color:#ff0000;}

/* ----------------------------------------
	header-nemu
---------------------------------------- */

/* pc */
.inner {
	max-width: 1280px;
	margin: 0 auto;
	position: relative;
}

.inner:after {
    content: "";
    clear: both;
    display: block;
}

/* header */
#top-head {
    top: -100px;
    position: absolute;
    width: 100%;
    height: 65px;
    margin: 100px auto 0;
    padding: 30px 0 0 0;
    border-top: 25px solid #6e1537;
    background-color:rgba(255,255,255,0.8);
    line-height: 1;
    z-index: 999;
			box-sizing: content-box;
}
#top-head a,
#top-head {
    color: #fff;
    text-decoration: none;
}

#top-head a:hover {
	transition: 1.0s ;
}


#top-head .inner {
    position: relative;
}
#top-head .logo {
	max-width: 250px;
}
#global-nav ul {
    list-style: none;
    position: absolute;
    right: 0;
    top: 20px;
    font-size: 14px;
}
#global-nav ul li {
    float: left;
}
#global-nav ul li a {
    padding: 0;
    margin: 0 20px;
}

#global-nav li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #000;
}
#global-nav li a::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #000;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}
#global-nav li a:hover::after {
  bottom: -4px;
  opacity: 1;
  visibility: visible;
}


/* Fixed */
#top-head.fixed {
    margin-top: 0;
    top: 0;
    position: fixed;
    padding-top: 30px;
    height: 65px;
    background-color:rgba(255,255,255,0.8);
    transition: top 0.65s ease-in;
    -webkit-transition: top 0.65s ease-in;
    -moz-transition: top 0.65s ease-in;
}
#top-head.fixed .logo {
    max-width: 250px;
}
#top-head.fixed #global-nav ul li a {
    color: #000;
    padding: 0;
}

/* Toggle Button */
#nav-toggle {
    display: none;
    position: absolute;
    right: 12px;
    top: 14px;
    width: 34px;
    height: 36px;
    cursor: pointer;
    z-index: 101;
}
#nav-toggle div {
    position: relative;
}
#nav-toggle span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #000;
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
    top: 0;
}
#nav-toggle span:nth-child(2) {
    top: 11px;
}
#nav-toggle span:nth-child(3) {
    top: 22px;
}
#nav-toggle .sp01 {
    top: 30px;
    font-size: 11px;
    text-align:center;
}

/* pc-sp */
@media screen and (max-width: 1280px) {
	#global-nav ul {
	    right: 0;
	    top: 20px;
	}

	#global-nav ul li a {
	    padding: 0;
	    margin: 0 10px 0 0;
	}
	#top-head .logo {
	margin: 0 0 0 15px;
	}
}


@media screen and (max-width: 1000px) {
	#global-nav ul {
	    right: 0;
	    top: 20px;
	}

	#global-nav ul li a {
	    padding: 0 15px;
	}

	#top-head.fixed {
    height: 55px;
	}
}


/* sp */
@media screen and (max-width: 750px) {
    #top-head,
    .inner {
        width: 100%;
        padding: 0;
    }
    #top-head {
        top: 0;
        position: fixed;
        margin-top: 0;
        padding: 0 0 0 0;
        height: 55px;
        border-top: 15px solid #6e1537;
        border-bottom: 1px solid #ffffff;
    }
    /* Fixed reset */
    #top-head.fixed {
    padding: 0 0 0 0;
    height: 55px;
    background-color:rgba(255,255,255,0.8);
    transition: top 0.1s ease-in;
    -webkit-transition: top 0.65s ease-in;
    -moz-transition: top 0.65s ease-in;
    }
    #mobile-head {
        width: 100%;
        z-index: 999;
        position: relative;
    }
    #top-head.fixed .logo,
    #top-head .logo {
        position: absolute;
        top: 10px;
		left: 12px;
		bottom: 0;
		margin: auto;
        max-width: 170px;
    }
    #global-nav {
        position: absolute;
         /* 開いてないときは画面外に配置 */
        top: -500px;
        background-color:#fff;
        width: 100%;
        text-align: left;
        padding: 10px 0 10px 0;
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
    }
    #global-nav ul {
        list-style: none;
        position: static;
        right: 0;
        bottom: 0;
        font-size: 14px;
    }
    #global-nav ul li {
        float: none;
        position: static;

    }
    #top-head #global-nav ul li a,
    #top-head.fixed #global-nav ul li a {
        width: 100%;
        display: block;
        color: #000;
        padding: 18px 0;
        margin: 0 5% 0 5%;
    }
    #nav-toggle {
        display: block;
    }
    /* #nav-toggle 切り替えアニメーション */
    .open #nav-toggle span:nth-child(1) {
        top: 11px;
        -webkit-transform: rotate(315deg);
        -moz-transform: rotate(315deg);
        transform: rotate(315deg);
    }
    .open #nav-toggle span:nth-child(2) {
        width: 0;
        left: 50%;
    }
    .open #nav-toggle span:nth-child(3) {
        top: 11px;
        -webkit-transform: rotate(-315deg);
        -moz-transform: rotate(-315deg);
        transform: rotate(-315deg);
    }
    /* #global-nav スライドアニメーション */
    .open #global-nav {
        /* #global-nav top + #mobile-head height */
        -moz-transform: translateY(556px);
        -webkit-transform: translateY(556px);
        transform: translateY(556px);
    }

	#global-nav li a {
	  position: relative;
	  display: inline-block;
	  text-decoration: none;
	  color: #000;
	}
	#global-nav li a::after {
	  position: absolute;
	  bottom: 3px;
	  left: 0;
	  content: '';
	  width: 90%;
	  height: 1px;
	  background: #000;
	  opacity: 0;
	  visibility: hidden;
	  transition: .3s;
	}
	#global-nav li a:hover::after {
	  bottom: 3px;
	  opacity: 1;
	  visibility: visible;
	}

}


/* ----------------------------------------
	Wrapper
---------------------------------------- */

#wrapper {
	width: 100%;
	text-align: left;
	background: #fff;
	position: relative;
	z-index: 120;
}

#wrapper_sub {
	width: 100%;
	text-align: left;
	background: #fff;
	position: relative;
	z-index: 120;
	margin: 120px 0 0 0;
}

@media screen and (max-width: 740px) {
	#wrapper_sub{
	margin: 70px 0 0 0;
	}
}

/* ----------------------------------------
	title
---------------------------------------- */

.ttl_box01{
	text-align:center;
	font-size: 40px;
	font-weight:bold;
	color: #666666;
    padding: 40px 0 10px 0;
}


@media screen and (max-width: 640px) {
	.ttl_box01{
	font-size: 20px;
	padding: 30px 0 10px 0;
	}
}


.ttl_box02{
	text-align:center;
	font-size: 40px;
	font-weight:bold;
	color: #666666;
    padding: 20px 0 15px 0;
}


@media screen and (max-width: 640px) {
	.ttl_box02{
	font-size: 20px;
	padding: 20px 0 10px 0;
	}
}

/* ----------------------------------------
	button
---------------------------------------- */

.btn_box{
	display: flex;
	justify-content: center;
	align-items: center;
	text-align:center;
	padding:10px 0 10px 0;
}


.s_square_btn {
    display: inline-block;
    padding: 10px 25px 10px 25px;
    width: 250px;
    font-size: 17px;
    text-decoration: none;
    color: #000000;
    border: solid 1px #000;
    transition: .4s;
}

.s_square_btn:hover {
    background: #666666;
    border: solid 1px #000000;
    color: #fff;
}

.s_map_btn {
    display: inline-block;
    padding: 10px 25px 10px 25px;
    width: 200px;
    font-size: 14px;
    text-decoration: none;
    color: #000000;
    border: solid 1px #000;
    transition: .4s;
}

.s_map_btn:hover {
    background: #666666;
    border: solid 1px #000000;
    color: #fff;
}

.simplenote_btn {
    display: inline-block;
    padding: 10px 0 10px 0;
    width: 100%;
    font-size: 25px;
    font-weight:bold;
    text-align:center;
    text-decoration: none;
    color: #000000;
    background: #f0f0f0;
    transition: .4s;
}

.simplenote_btn:hover {
    background: #666666;
    color: #fff;
}

@media screen and (max-width: 640px) {
	.simplenote_btn{font-size: 15px;}
}




/* ----------------------------------------
	news
---------------------------------------- */


.news_list{
	margin: 10px 0 10px 0;
	padding: 5px 0 5px 0;
	max-width: 100%;
	font-size: 14px;
	color: #666666;
}

.news_list_box{
	max-width: 90%;
	padding: 0;
	margin: 0 auto;
}

.news_list_box a {text-decoration:none; color: #666666; transition: all .3s;}

.news_list_box a:hover {
	text-decoration: underline; color: #000;
}

.news_list_box li{
	padding: 15px 0 15px 0;
}


.news_list_box02{
	padding: 5px 0 5px 0;
	border-bottom: dashed 1px #666666;
}

.news_day{
	width: 10%;
	font-size: 16px;
}

@media screen and (max-width: 1000px) {
	.news_day{
		width: 15%;
	}
}

.news_ca{
	margin: 0 10px 0 0;
	padding: 0 0 0 0;
	width: 15%;
	color: #666666;
	text-align:center;
	text-decoration:none;
	background: #f0f0f0;
	font-size: 14px;
	line-height:20px;
}



.news_come{
	width: 70%;
	font-size: 16px;
}



.news_row {
    display: flex;
    margin: 0 0 0 5px;
}
.news_col {
    width: 100%;
    margin: 0;
}
@media screen and (max-width: 750px) {
    .news_row { flex-wrap: wrap; }
    .news_col-sm-50 {  width: calc( 50% - 5px ); }
    .news_col-sm-100 {  width: calc( 100% - 5px ); padding: 5px 0 0 0;}
    .news_col-sm-none { display: none !important; }
}



.news_ttl{
	font-size: 20px;
	font-weight:bold;
	border-bottom: solid 1px #666666;
	padding: 10px 0 5px 5px;
	margin: 0;
}

.news_box00{
	padding: 0 20px 25px 0;
}

@media screen and (max-width: 750px) {
	.news_box00{
		padding: 0 0 20px 0;
	}
}

.news_box01{
	padding: 0 5px 0 5px;
}

.news_box02{
	padding: 25px 5px 0 5px;
	font-size:15px;
	line-height:24px;
}

@media screen and (max-width: 750px) {
	.news_box02{
	font-size:14px;
	line-height:22px;
	}
}


.news_side_ttl{
	font-size: 17px;
	border-bottom: solid 1px #666666;
	padding: 34px 5px 5px 5px;
	margin: 0;
}

.news_side_box00{
	border-bottom: solid 1px #666666;
	padding: 10px 0 3px 0;
}

.news_side_box01{
	padding: 0 5px 0 5px;
}

.news_side_box02{
	padding: 0 5px 0 5px;
}



/* ----------------------------------------
	contact
---------------------------------------- */

.contact_ttl{
	font-size: 32px;
	font-weight:bold;
	border-bottom: solid 1px #666666;
	text-align:center;
	padding: 30px 0 5px 0;
	margin: 0;
}

@media screen and (max-width: 750px) {
	.contact_ttl{font-size: 20px; padding: 15px 0 5px 0;}
}

.contact_ttl02{
	font-size: 25px;
	font-weight:bold;
	text-align:center;
	background:#f0f0f0;
	padding: 5px 0 5px 0;
	margin: 15px 0 15px 0;
}

@media screen and (max-width: 750px) {
	.contact_ttl02{font-size: 20px; padding: 15px 0 5px 0;}
}

.contact_ttl02_01{font-size: 18px;}

.contact_box01{
	padding: 10px 0 10px 0;
	font-size: 15px;
	text-align:center;
}

.contact_box02{
	padding: 10px 5% 10px 5%;
}

@media screen and (max-width: 750px) {
	.contact_box02{
		padding: 20px 0 20px 0;
	}
}


.contact_box03{
	padding: 10px 0 10px 0;
	font-size: 17px;
}


.contactform_box01{
	padding: 10px 0 10px 0;
	font-size: 15px;
}

.contactform_box02{
	padding: 10px 5% 10px 5%;
}

.contactform_box02 table{
  border-collapse:collapse;
  margin:0 auto;
  width:100%;
}

.contactform_box02 th{
  width:150px;
  text-align: left;
  padding: 5px 0 15px 0;
}

.contactform_box02 td{
  padding: 5px 0 15px 0;
}

.wi01{width: 50px;}

@media only screen and (min-width:641px){
.contactform_box02 th{
  width:250px;
  text-align: left;
  vertical-align: middle;
  padding: 5px 20px 5px 10px;
}
.contactform_box02 td{
  vertical-align: top;
  padding: 20px 0 20px 0;
}
}
@media only screen and (max-width:640px){
	.contactform_box02 { margin: 0; }
	.contactform_box02 th,
	.contactform_box02 td{
		display: block;
		width: auto;
		padding: 5px 0 5px 0;
    }
  }
.nece{
	margin: 0 0 0 0;
	padding: 5px 0 5px 0;
	display:inline-block;
	float: right;
	width: 50px;
	color: #000;
	text-align:center;
	text-decoration:none;
	background: #e8989b;
	font-size: 14px;
	line-height:20px;
}

@media only screen and (max-width:640px){
.nece{	margin:5px 0 5px 0;}
}

.c-chek{padding: 5px 0 5px 0;}

.c-date{padding: 10px 0 10px 20px; line-height:55px;}

@media only screen and (max-width:640px){
	.c-date{padding: 10px 0 10px 5px; line-height:55px;}
}

.c-date_text01{padding: 0 0 0 30px;}

@media only screen and (max-width:640px){
	.c-date_text01{padding: 0 0 0 0;}
}

.c-txarea{padding: 5px 0 5px 0; line-height:30px;}

@media only screen and (max-width:640px){
	.c-txarea{padding: 5px 5px 5px 5px;}
}

.c-menu{
	display: inline-block;
	padding: 4px 0 4px 0;
}


.wpcf7-text {
	padding: 5px 0 5px 0;
	max-width: 100%;
	width: 100%;
}

span.wpcf7-list-item {
display: block;
}

.c-text03{
	width: 80px;
	margin: 0 10px 0 10px;
}
.c-text04{
	width: 100px;
}

.c-text05{
	width: 40px;
	margin: 0 10px 0 10px;
}

textarea.wpcf7-textarea{ width: 100%;}
@media only screen and (max-width:640px){
	textarea.wpcf7-textarea{ width: 100%;}
}

.contact_botan {
  text-align: center;
	margin: 15px 0 15px 0;
}
  .contact_botan input{
    border: 1px solid;
    background: #f0f0f0;
    width: 250px;
    padding: 0.5em;
    color: #000;
    font-size: 18px;
    transition: .4s;
}

.contact_botan inpt:hover {
    background: #ffffff;
    color: #000;
}

span.wpcf7-list-item{
 margin:10px 0 10px 0;
}

@media only screen and (max-width:1280px){
	span.wpcf7-list-item{
		margin-left: 50px;
	}
}

.c-btn{padding: 5px 0 5px 0;}

.study-box{
	border-bottom: solid 1px #666666;
	border-top: solid 1px #666666;
	padding:5px 0 30px 0;
	
}

.study-subbox{
	line-height: 300%;
	padding-left: 1%;
	}
/* ----------------------------------------
	Company
---------------------------------------- */

.company_box01{
	padding: 5px 8% 5px 8%;
}

@media screen and (max-width: 750px) {
	.company_box01{
	padding: 5px 5px 5px 5px;
	}
}

.company_box02{
	padding: 5px 0 55px 0;
	font-size: 20px;
	line-height:35px;
	border-bottom: solid 1px #666666;
}

@media screen and (max-width: 750px) {
	.company_box02{
	padding: 5px 5px 5px 5px;
	font-size: 14px;
	line-height:30px;
	}
}

.company_box03{
	padding: 5px 0 5px 0;
	font-size: 20px;
	line-height:35px;
}

@media screen and (max-width: 750px) {
	.company_box03{
	padding: 5px 5px 5px 5px;
	font-size: 14px;
	line-height:30px;
	}
}

.company_tb01{
	padding: 40px 8% 5px 8%;
}

@media screen and (max-width: 750px) {
	.company_tb01{
	padding: 5px 5px 5px 5px;
	}
}

.company_tb01 a{ color: #000000; transition: .4s;}
.company_tb01 a:hover { color: #666666;}

.company_tb01 table{
  border-collapse:collapse;
  margin:0 auto;
  width:100%;
}
.company_tb01 th{
	border-bottom:1px solid #000;
	border-right:15px solid #fff;
	padding:15px 0 15px 0;
	text-align: center;
	width:25%;
}
.company_tb01 td{
	border-bottom:1px solid #000;
	padding:15px 0 15px 0;
	text-align: left;
}
.company_tb01 tr:first-child th{
  border-top:1px solid #000;
}
.company_tb01 tr:first-child td{
  border-top:1px solid #000;
}



/* ----------------------------------------
	footer
---------------------------------------- */

#footer_box{
	padding:25px 0 50px 0;
	margin: 0 0 0 0;
}

.footer_box01{
	display: flex;
	justify-content: center;
	align-items: center;
	text-align:center;
	padding:20px 0 20px 0;
}

.footer_box02{ width: 150px;}

.footer_box03{ font-size: 60px; line-height:60px;}
.footer_box03 a{ color: #000000; transition: .4s;}
.footer_box03 a:hover { color: #666666;}

.footer_box04{
	font-size: 18px;
	padding: 5px 0 0 0;
}


.footer_box05{
	border-top: 10px solid #6e1537;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align:center;
	padding:25px 0 10px 0;
	margin: 30px 0 0 0;
}



.footer_box06{
	max-width: 300px;
}

.footer_box07{padding: 5px 0 5px 0; font-size: 14px;}
.footer_box07 a{ color: #000000; transition: .4s;}
.footer_box07 a:hover { color: #666666;}

.footer_copy{
	text-align:center;
	color: #000000;
	font-size: 12px;
	padding: 15px 0 0 0;
}

@media screen and (max-width: 750px) {
	.footer_copy{font-size: 10px;}
}



#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 0;
  bottom: 50px;
  background-color:rgba(0,0,0,0.5);
  border-radius: 50%;
  z-index: 999;
}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: FontAwesome;
  content: '\f106';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 5px;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

@media (max-width: 750px){
	#page_top{
		right: 5%;
		bottom: 5%;
	}
}



/* ----------------------------------------
	simplestage-izumo用
---------------------------------------- */


.stg_logo_box01 {
	display: flex;
}

.stg_logo_box02 {
	margin: 10px 0 10px 20px;
}

@media screen and (max-width:1000px){
.stg_logo_box02 {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 10000;
	background-color: rgba( 255, 255, 255, 0.9 );
	justify-content: center;
	align-items: center;
	text-align:center;
	padding: 5px 0 5px 0;
	margin: 0 0 0 0;
	}
}

.stg_btn01 {
    display: inline-block;
    padding: 10px 20px 10px 20px;
    width: 160px;
    font-size: 20px;
    text-decoration: none;
    text-align:center;
    color: #000000 !important;
    border: solid 1px #000;
    transition: .4s;
}

.stg_btn01:hover {
    background: #ffffff;
    border: solid 1px #000000;
    color: #666666 !important;
}

.stg_ttl_box01{
	text-align:center;
	font-size: 40px;
	font-weight:bold;
	color: #666666;
	background: #f0f0f0;
    padding: 5px 0 5px 0;
    margin: 20px 0 10px 0;
}

@media screen and (max-width: 640px) {
	.stg_ttl_box01{
	font-size: 20px;
	padding: 5px 0 5px 0;
	margin: 20px 0 10px 0;
	}
}


.stg_ttl_box02{
	text-align:center;
	font-size: 40px;
	font-weight:bold;
	color: #666666;
	background: #f0f0f0;
    padding: 5px 0 5px 0;
    margin: 20px 5% 10px 5%;
}

@media screen and (max-width: 640px) {
	.stg_ttl_box02{
	font-size: 20px;
	padding: 5px 0 5px 0;
	margin: 20px 0 10px 0;
	}
}

.stg_ttl_box03{
	text-align:center;
	font-size: 40px;
	font-weight:bold;
	background: #f0f0f0;
    padding: 5px 0 5px 0;
    margin: 0 5% 0 5%;
}

@media screen and (max-width: 640px) {
	.stg_ttl_box02{
	font-size: 20px;
	padding: 5px 0 5px 0;
	margin: 0 0 0 0;
	}
}

.stg_cont_box01{margin: 20px 0 20px 0;}

@media screen and (max-width: 640px) {
	.stg_cont_box01{margin: 20px 5px 20px 5px;}
}

.stg_cont_box02{margin: 0 15% 20px 15%;}

@media screen and (max-width: 640px) {
	.stg_cont_box02{margin: 5px 5px 5px 5px;}
}

.stg_cont_box03{margin: 0 10% 10px 10%; text-align:center; font-size: 38px; font-weight:bold; color: #6e1537;}

@media screen and (max-width: 640px) {
	.stg_cont_box03{margin: 5px 5px 5px 5px; font-size: 20px;}
}

.stg_cont_box04{margin: 10px 10% 10px 10%; text-align:center; font-size: 20px; color: #666666;}

@media screen and (max-width: 640px) {
	.stg_cont_box04{margin: 5px 5px 5px 5px; font-size: 15px;}
}

.stg_cont_box05{margin: 10px 14% 10px 14%; font-size: 18px; line-height:30px;}

@media screen and (max-width: 640px) {
	.stg_cont_box05{margin: 5px 5px 5px 5px; font-size: 13px; line-height:22px;}
}



.stg_cont_box06{margin: 20px 5% 20px 5%;}

@media screen and (max-width: 640px) {
	.stg_cont_box06{margin: 20px 5px 20px 5px;}
}

.stg_cont_box07{margin: 20px 5% 20px 5%;}

@media screen and (max-width: 640px) {
	.stg_cont_box07{margin: 20px 5px 20px 5px;}
}

.stg_cont_box08{margin: 20px 5% 20px 5%;}

@media screen and (max-width: 640px) {
	.stg_cont_box08{margin: 20px 5px 20px 5px;}
}

.stg_cont_box09{margin: 20px 30% 20px 30%;}

@media screen and (max-width: 640px) {
	.stg_cont_box09{margin: 20px 5px 20px 5px;}
}

.stg_cont_box10{margin: 20px 5% 20px 5%;}

@media screen and (max-width: 640px) {
	.stg_cont_box10{margin: 20px 5px 20px 5px;}
}

.stg_cont_box11{margin: 0 15px 0 15px;}

@media screen and (max-width: 640px) {
	.stg_cont_box11{margin: 0 0 0 0;}
}

.stg_cont_box12{margin: 20px 15px 0 15px}

@media screen and (max-width: 640px) {
	.stg_cont_box12{margin: 15px 0 0 0;}
}

.stg_cont_box13{margin: 20px 5% 30px 5%; font-size: 18px; line-height:30px;}

@media screen and (max-width: 640px) {
	.stg_cont_box13{margin: 20px 5px 20px 5px; font-size: 13px; line-height:22px;}
}

.stg_cont_box14{margin: 0 10% 10px 10%; text-align:center; font-size: 38px; font-weight:bold; color: #6e1537;}

@media screen and (max-width: 640px) {
	.stg_cont_box14{margin: 5px 5px 5px 5px; font-size: 20px;}
}

.stg_cont_box15{margin: 10px 10% 10px 10%; text-align:center; font-size: 20px; color: #666666;}

@media screen and (max-width: 640px) {
	.stg_cont_box15{margin: 5px 5px 5px 5px; font-size: 15px;}
}

.stg_cont_box16{margin: 0 30% 20px 30%;}

@media screen and (max-width: 640px) {
	.stg_cont_box16{margin: 0 5px 20px 5px;}
}

.stg_cont_box17{margin: 25px 20% 0 20%;}

@media screen and (max-width: 640px) {
	.stg_cont_box17{margin: 25px 15% 0 15%;}
}

.stg_fon01{color: #6e1537;}
.stg_fon02{background-color: #fff100;}

@media screen and (max-width: 640px) {
	.br-sp { display:none; }
}

.link-t-a {
position: relative;
top: -200px;
display: block;
}

@media screen and (max-width: 640px) {
	.link-t-a{top: -150px;}
}

/************************************
** 表示非表示
************************************/

.toggle-wrap .toggle-button {
display: block;
cursor: pointer;
font-family: "ヒラギノ角ゴ Std W3","Hiragino Kaku Gothic Pro";
font-size:22px;
padding: 8px 10px 5px 10px;
background: #ffffff;
color: #000000;
border: 1px solid #000000;
font-weight:normal ;
text-align: center;
margin: 0 35% 0 35%;
transition: .4s;
}

@media screen and (max-width: 1500px) {
	.toggle-wrap .toggle-button {margin: 0 30% 20px 30%;}
}

@media screen and (max-width: 740px) {
	.toggle-wrap .toggle-button {margin: 0 5% 0 5%;}
}

.toggle-wrap .toggle-button:hover {
background: #666666;
color: #fff;
}

.toggle-wrap .toggle-button:after {
content: ""; 
}

/*中身を非表示にしておく*/
.toggle-wrap .toggle-content{
height: 0;
padding: 0;
overflow: hidden;
opacity: 0;
transition: 0.6s;
}


.toggle-wrap > input[type="checkbox"] {
display: none;
}

.toggle-wrap > input[type="checkbox"]:checked ~ .toggle-button:after {
content: ""; 
}

/*クリックで中身表示*/
.toggle-wrap > input[type="checkbox"]:checked ~ .toggle-content {
display: block;
height: auto;
opacity: 1;
padding: 10px 0;
}
