@charset "utf-8";
/* CSS Document */

/*●基本的な共通宣言*/
body {text-align:justify;}
* {margin:0; padding:0;}
main,section,nav,article,aside,header,footer{display:block}
*,#marchat_area *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
			margin:0;
			padding:0px;
}
img {
	vertical-align:top;
	max-width:100%;
}
ul {list-style:none;}

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:#ccc;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:#ccc;
}
::placeholder{ /* Others */
 color:#ccc
}
.clear {clear:both;}
.clearfix:after {
	content:"";
	display:block;
	clear:both;
}
a:hover {
	transform:.3s;
	animation: mouseOverfade 0.7s ease 0s 1 normal;
	-webkit-animation: mouseOverfade 0.7s ease 0s 1 normal;
}
@keyframes mouseOverfade {
    0% {opacity: 0.3}
    100% {opacity: 1}
}

@-webkit-keyframes mouseOverfade {
    0% {opacity: 0.3}
    100% {opacity: 1}
}




/*●パソコンだけ、スマホだけに表示させる場合のクラス*/
@media print, screen and (min-width: 960px){
	.sp_only{display:none !important;}
}
@media print, screen and (max-width: 959px){
	.pc_only{display:none !important;}
}





/*
●強制的にその要素だけに例外適用したい場合などに使用可
（クラスなどで宣言して複数個所に共通利用できる場合は基本的にはそちらで宣言する）
*/
.ta_c {text-align:center !important;}
.ta_j {text-align:justify !important;}
.ta_l {text-align:left !important;}
.ta_r {text-align:right !important;}

.font_b {font-weight:bold !important;}

.font9 {font-size:9px !important;}
.font10 {font-size:10px !important;}
.font12 {font-size:12px !important;}
.font14 {font-size:14px !important;}
.font16 {font-size:16px !important;}
.font18 {font-size:18px !important;}
.font24 {font-size:24px !important;}
.font26 {font-size:26px !important;}
.font36 {font-size:36px !important;}

.font_s {font-size:90% !important;}
.font_ss {font-size:80% !important;}
.font_sss {font-size:70% !important;}
.font_l {font-size:110% !important;}
.font_ll {font-size:120% !important;}
.font_lll {font-size:130% !important;}

.bg_white { background-color:#FFF !important;}
.no_disp {display:none !important;}

.mt0 {margin-top:0px !important;}
.mt1 {margin-top:1px !important;}
.mt2 {margin-top:2px !important;}
.mt3 {margin-top:3px !important;}
.mt4 {margin-top:4px !important;}
.mt5 {margin-top:5px !important;}
.mt10 {margin-top:10px !important;}
.mt15 {margin-top:15px !important;}
.mt20 {margin-top:20px !important;}
.mt25 {margin-top:25px !important;}
.mt30 {margin-top:30px !important;}
.mt40 {margin-top:40px !important;}
.mt50 {margin-top:50px !important;}
.mt60 {margin-top:60px !important;}
.mt70 {margin-top:70px !important;}
.mt80 {margin-top:80px !important;}
.mt90 {margin-top:90px !important;}
.mt100 {margin-top:100px !important;}

.mb0 {margin-bottom:0px !important;}
.mb10 {margin-bottom:10px !important;}
.mb20 {margin-bottom:20px !important;}
.mb30 {margin-bottom:30px !important;}
.mb40 {margin-bottom:40px !important;}
.mb50 {margin-bottom:50px !important;}

.ml0 {margin-left:0px !important;}
.ml10 {margin-left:10px !important;}
.ml20 {margin-left:20px !important;}
.ml30 {margin-left:30px !important;}
.ml40 {margin-left:40px !important;}
.ml50 {margin-left:50px !important;}

.pt0 {padding-top:0px !important;}
.pt10 {padding-top:10px !important;}
.pt20 {padding-top:20px !important;}
.pt30 {padding-top:30px !important;}
.pt40 {padding-top:40px !important;}
.pt50 {padding-top:50px !important;}

.pb0 {padding-bottom:0px !important;}
.pb10 {padding-bottom:10px !important;}
.pb20 {padding-bottom:20px !important;}
.pb30 {padding-bottom:30px !important;}
.pb40 {padding-bottom:40px !important;}
.pb50 {padding-bottom:50px !important;}

.pl0 { padding-left:0px !important;}
.pl10 { padding-left:10px !important;}
.pl20 { padding-left:20px !important;}
.pl30 { padding-left:30px !important;}
.pl40 { padding-left:40px !important;}
.pl50 { padding-left:50px !important;}

.fl_left {float:left !important;}
.fl_right {float:right !important;}

.w10 {width:10% !important;}
.w20 {width:20% !important;}
.w30 {width:30% !important;}
.w40 {width:40% !important;}
.w50 {width:50% !important;}
.w60 {width:60% !important;}
.w70 {width:70% !important;}
.w80 {width:80% !important;}
.w90 {width:90% !important;}
.w100 {width:100% !important;}





/*●その他便利クラス*/
.orikaesi {word-break: break-all;}
.t_indent {text-indent:-1em; padding-left:1em;}
.flex {
	display: flex;
	flex-wrap: wrap;
	list-style:none;
}
.jus_around {
	justify-content: space-around;
}
.jus_between {
	justify-content: space-between;
}
.jus_center {
	justify-content: center;
}
.jus_end {
	justify-content: flex-end;
}
.img_box {/*サイズを各要素で指定して利用*/
	position:relative;
	overflow:hidden;
}
.img_box img {
	max-width:100%;
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
}




/*●そのサイトに応じて変更して利用可*/

.def_width {
	width:calc(100% - 20px);
	max-width:960px;
	margin-left:auto;
	margin-right:auto;
}
.def_section {
	width:calc(100% - 20px);
	max-width:960px;
	margin-left:auto;
	margin-right:auto;
	padding:60px 0 90px;
}
.def_width.ptn2,
.def_section.ptn2 {
	max-width:600px;
}
@media print, screen and (max-width: 959px){
	.def_width {
		width:90%;
	}
	.def_section {
		width:90%;
		padding:30px 0 40px;
	}
}

