@charset "UTF-8";
body {
	margin: 0;
	background-color: #fff;
	font-family: 'Source Sans Pro', 'メイリオ', 'Hiragino kaku Gothic Pro', sans-serif;
}
html {
overflow-x: hidden;
  padding: 0;
}
div, li, p {
  margin: 0;
  padding: 0;
}
ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
a {
	text-decoration: none
}
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;
}
*,::before,::after {
  box-sizing: border-box;
}

/* レスポンシブ表示・非表示用 */
/*　～_h→以上 　～_l→以下　～_hf,～_lf→表示時のdisplayがflex　*/

/*　TOPメイン左寄せ、他ページ左右余白消える　*/
.medium_h { display: block!important; }
.medium_l { display: none!important; }
@media(max-width:1120px){
	.medium_h { display: none!important; }
	.medium_l { display: block!important; }
}
/*　ヘッダー消失　*/
.small_h { display: block!important; }
.small_hf { display: flex!important; }
.small_l { display: none!important; }
.small_lf { display: none!important; }
@media(max-width:1000px){
	.small_h { display: none!important; }
	.small_hf { display: none!important; }
	.small_l { display: block!important; }
	.small_lf { display: flex!important; }
}
/*　タブレット～スマホまで　*/
.tb_h { display: block!important; }
.tb_l { display: none!important; }
@media(max-width:899px){
	.tb_h { display: none!important; }
	.tb_l { display: block!important; }
}
/*　スマホ　*/
.sp_h { display: block!important; }
.sp_l { display: none!important; }
@media(max-width:750px){
	.sp_h { display: none!important; }
	.sp_l { display: block!important; }
}
/* レスポンシブ表示・非表示用ここまで */

/* 基本 */
.main_page{
	position: absolute;
	width: 100%;
}
.center_column {
  width: 950px;
}
.page_base {
	width: 100%;
	min-height: 100vh;
	background-color: #fff;
	background-image: url("img/main_backg.png");
	background-position: -10px -10px;
	background-attachment: fixed;
	overflow: hidden;
}
@media(max-width:1119px){
	.center_column{
		width: 90%;
	}
}
/* 基本ここまで */

/* top追従ボタン */
.page_top {
  z-index: 99;
  position: fixed;
  right: 45px;
  bottom: 45px;
  opacity: 0.5;
}
.page_top img {
  height: 65px;
  width: 65px;
}
.page_top:hover {
  opacity: 0.3;
}
@media(max-width:1275px){ /* 右側追従メニュー位置移動で被るため逃がす */
	.page_top{
		right: 31px;
		bottom: 65px;
	}
}
@media(max-width:899px) { /* スマホ */
  .page_top {
    right: 20px;
    bottom: 10px;
  }
  .page_top img {
    height: 50px;
    width: 50px;
  }
}
/* top追従ボタンここまで */

/* リンク先下ずらし用 */
a.anchor {
  display: block;
  margin-top: -90px;
  padding-top: 90px;
}
@media(max-width:899px){
	a.anchor {
	  margin-top: -14vw;
	  padding-top: 14vw;
	}
}

/* リンク先下ずらし用ここまで */

/*　ヘッダーメニュー関係 */
.header_blank {
	width: 100%;
	height: 50px;
}
@media(max-width:1119px){
	.header_blank {
		height: 57px;
	}	
}
@media(max-width:1000px){
	.header_blank {
		width: 100%;
		height: 10vw;
	}
}
/*　ヘッダーメニュー関係ここまで */

/* ページタイトル */
.page_title{
	display: flex;
	height: 90px;
	margin: 30px auto 20px auto;
}
.title_line{
	width: 8px;
}
.title_line div {
	width: 100%;
	height: 70%;
	background-color: #000;
}
.title_line div:first-of-type{
	height: 30%;
	background-color: #98e2d6;
}
.title_text{
	display: flex;
	flex-direction: column;
	height: 100%;
	margin-left: 9px;
}
.title_text p{
	color: #000;
	font-size: 1em;
    font-weight: bold;
    letter-spacing: -0.01em;
    font-family: 'Mukta', sans-serif;
}
.title_text_h{
	height: 60%;
	width: 100%;
}
.title_text_h p{
	font-size: 2.8em;
}
.title_text_l{
	display: flex;
	width: 100%;
	height: 40%;
	align-items: center;
}
.title_text_l div{
	margin-left: 20px;
}
.title_text_l div p{   
	font-size: 1.2em;
}
.title_text_l div:first-of-type p{
	font-size: 1.5em;
}
@media(max-width:899px) {
	.page_title {
    	height: 20vw;
		margin: 8vw auto 3vw auto;
	}
	.title_text{
		margin-left: 1vw;
	}
	.title_text_h p{
		font-size: 9vw;
	}
	.title_text_l div{
		margin-left: 2vw;
	}
	.title_text_l div p{   
		font-size: 4vw;
	}
	.title_text_l div:first-of-type p{   
		font-size: 4.5vw;
	}
 }
/* ページタイトルここまで */


/* 各カテゴリ内容_項目 */
.par_block{
	margin: 30px auto 3em auto;
	color: #3a3a3a;
}
.par_block:last-of-type{
	margin-bottom: 40px;
}
.par_title{
	width: 100%;
	margin-bottom: 30px;
}
.par_title p{
	position: relative;
	padding-left: 1.6em;
	font-size: 1.87em;
	font-weight: bold;
	text-indent: -1.6em;
}
.par_title p::before {
	padding: 0px 7px 0px 10px;
	color: #98e2d6;
	font-weight: 400;
	font-family: 'FontAwesome';
	content: "\f0c8";
}
.par_title p::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	border-bottom: 2px solid #98e2d6;
	content: "";
}
.par_main{
	display: flex;
	flex-wrap: wrap;
}
.par_contents{
	width:100%;
	font-size: 15px;
	text-align: left;
}
.par_contents > p, .par_contents ul{
	margin: auto;
	width: 90%;
	line-height: 1.4em;
}
.par_contents_inner{
	width: 90%;
	margin: 0 auto;
}
.par_contents .link_text{
	font-weight:bold;
	color: #00cbb1;
}
.par_contents .link_text:hover{
	color: #1becd2;
}
.icon_button{
	display: block;
	margin: 1em;
	height: 3em;
	width: 15em;
	cursor: pointer;
	background-color:black;
	border-radius:0.5em;
	border: none;
}
.icon_button:hover{
	background-color: #555;
}
.icon_button div{
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.button_center{
	margin-left: auto;
	margin-right: auto;
}
.icon_button p{
	margin: 1em 1em 1em 0.5em;
	color: white;
	font-size:1.2em;
	font-weight: bold;
}
.icon_button p.line::before{
	border-left: 1px solid white;
	padding-right: 1em;
	content: "";
}
.par_contents .icon_button img, .icon_button img{
	margin: 1em 0.5em 1em 1em;
	display: block;
	height: 60%;	
}
.par_harf{
	width:50%
}
.par_harf > p, .par_harf ul{
	margin: auto;
	width: 86%;
}

.par_4{
	width:40%;
}
.par_6{
	width:60%;
}
.par_6 ul{
	width:100%;
}
.par_contents > p:first-of-type, .par_contents ul{
	margin-top:10px;
}
.par_contents img{
	display: block;
	margin: auto;
	margin-top: 1.5em;
}
.txt_center{
	text-align: center;
}
p.top_space_m,img.top_space_m{
	margin-top:30px;
}
.indent{
	text-indent: 1em;
}
@media(max-width:1119px){
	.par_contents img{
		width: 95%;
		height: auto;
	}
}
@media(max-width:899px) {
	.par_block{
		margin: 4vw auto;
	}
	.par_title {
		margin-bottom: 3vw;
	}
	.par_harf{
		width: 100%;
	}
	.par_contents > p, .par_contents ul{
		width: 95%;
		padding: 0 1%;
		font-size: 0.85em;
	}
	.par_contents > p:first-of-type, .par_contents ul{
		margin-top:2vw;
	}
	.par_contents_inner{
		width: 96%;
	}
	.par_title p::before {
    	padding: 0 1.5vw 0 2vw;
	}
	.par_contents img{
		margin-top: 2vw;
	}
	.par_4{
		width:100%;
	}
	.par_6{
		width:100%;
	}
	.par_6 ul{
		width:90%;
	}
	p.top_space_m,img.top_space_m{
		margin-top:4vw;
	}
	.icon_button{
			margin: 2vw;
			height: 8vw;;
			width: 40vw;
			border-radius:1vw;
	}
	.button_center{
		margin-left: auto;
		margin-right: auto;
	}
	.par_contents .icon_button img, .icon_button img{
	margin-right: 2vw;
	height: 60%;
	width:auto;
	}
	.icon_button p{
	margin-left: 1vw;
	font-size:3.5vw;
}
.icon_button p.line::before{
	padding-right: 2vw;
}
}
@media(max-width:750px) {
	.par_title p{
	 	font-size: 5vw;
	}
	.par_contents{
		font-size: 3.8vw;
	}
}
/* 各カテゴリ内容_項目ここまで */



/* リスト系 */
.list_dia{
	width: 100%;
    margin: 10px 0px;
    padding: 5px;
}
.list_dia li{
	position: relative;
	width: 100%;
	margin: 0;
	margin-bottom: 0.7em;
	padding-left: 1.4em;
	line-height: 1.3em;
}
.list_dia li::before {
    position: absolute;
    top: .4em;
    left: .4em;
    width: 7px;
    height: 7px;
    content: "";
    background-color: #ccc;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.list_dia li:last-of-type {
	margin-bottom: 0;
}
.list_line{
	border-left: 1px solid #aaa;
	border-right: 1px solid #aaa;
    font-size: 0.9em;
}
.list_line li{
	margin-bottom: 0;
}
ul.list_space {
	width: 100%;
}
.list_space li {
	margin-top: 30px;
}
.list_space li:first-child {
 	margin: 0;
}
.list_narrow {
	width: 90%;
	margin: 0.1em auto;
}
.list_narrow li {
	margin-top: 0.5em;
}
.list_narrow li:first-of-type {
	margin-top: 0;
}
.komelist {
	padding: 10px 15px 0 15px;
}
.komelist li {
	margin-top: 10px;
}
.komelist li:first-child {
	margin-top: 0px;
}
.komelist li::before {
	top: 0;
	left: 0;
	background-color: transparent;
	font-weight: 400;
	content: "※";
	-webkit-transform: none;
	transform: none;
}
.l2_list_h, .l2_list{
	width: 88%;
	margin: 0 auto;
	padding: 1em;
	border: dashed 1px #888;
	font-size: 0.9em;
}
.l2_list_h {
	margin-top: 20px;
	border-bottom: none;
	background-color: rgba(255, 255, 255, 0.7);
}
.l2_list_h p {
	font-size: 1.2em;
	font-weight: bold
}
.l2_list_h p span {
  margin-left: 0.8em;
  font-weight: normal;
  font-size: 0.8em;
}
.l2_list div {
	display: flex;
	border-bottom: solid 1px #888;
}
.l2_list div:last-child {
	border-bottom: none;
}
.l2_list div p:first-child {
	width: 28%;
}
.l2_list div p {
	width: 72%;
	padding: 0.5em 0;
}
@media(max-width:899px) {
	.list_space li {
		margin-top: 2.5vw;
	}
}
@media(max-width:750px) {
	.list_space li {
		font-size: 3vw;
	}
	.l2_list_h, .l2_list{
		width: 95%;
		padding: 3vw;
		font-size: 3vw;
	}
	.l2_list_h{
		margin-top: 2vw;
	}
}
/* リスト系ここまで */

/* 強調枠 */
.kyocho_waku{
	width: 90%;
	margin: 2em auto 1em auto;
	padding-bottom: 1.2em;
	border: 2px solid #fa5294;
	border-radius: 1em;
}
.kyocho_waku div{
	margin-bottom: 1.2em;
	padding: 1em;
	background-color: #fa5294;
	border-radius: 0.6em 0.6em 0 0;
	color: #FFF;
	font-size: 1.2em;
	text-align: center;
	font-weight: bold;
}
.kyocho_waku span{
	/*
	color: #fa5294;
	font-weight:bold;
	*/
	  background: linear-gradient(transparent 0%, transparent 50%, #f7ff00 50%, #f7ff00 100%);
  font-weight: bold;
}
.kyocho_waku ul.contents_txt {
    width: 95%;
}
/* 強調枠ここまで */


/* ●見出し */
p.midashi_sub {
	position: relative;
	margin: 2em 0 0.5em 0;
	font-size: 1.6em;
	font-weight: bold;
}
p.midashi_sub:first-child{
	margin-top:0; 
}
p.midashi_sub:before {
	position: relative;
	top: 0.05em;
	padding: 0px 0.1em;
	font-size: 120%;
	font-weight: 400;
	font-family: 'FontAwesome';
	content: "\f111";
}
p.midashi_sub_s_line {
	border-bottom: solid 1px #777;
	margin: 2.5em auto 1.5em auto;
}
@media(max-width:750px) {
	p.midashi_sub{
		margin:3vw 0 2vw 0;
		font-size: 3.3vw;
	}
	p.midashi_sub:first-child{
		margin: 2vw 0;
	}
	p.midashi_sub_s_line{
		margin: 0;
		margin-top: 7vw;
		font-size: 5vw;
	}
}
/* ●見出しここまで */

/* 納期枠 */
ul.harf_frame{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 95%;
	margin: 0 auto;
	padding: 0 5%;
}
.harf_frame li {
	width: 48%;
	text-align: center;
}
.harf_frame li div:nth-of-type(1) {
	display: table;
	width: 100%;
	height: 80px;
	background-color: #5a5a5a;
	border-radius: 20px 20px 0 0;
	font-size: 1.1em;
}
.harf_frame li div:nth-of-type(1) p {
	display: table-cell;
	color: #fff;
	font-weight: bold;
	line-height: 1.2em;
	vertical-align: middle;
}
.harf_frame .blu div:nth-of-type(1) {
	background-color: #32a3fd;
}
.harf_frame li.blu div {
	border: solid 3px #32a3fd;
}
.harf_frame .or div:nth-of-type(1) {
	background-color: #ff8e12;
}
.harf_frame li.or div {
	border: solid 3px #ff8e12;
}
.harf_frame li div:nth-of-type(2) {
	width: 100%;
	padding: 1em 0;
	border-radius: 0 0 20px 20px;
	border-top: 0;
}
.harf_frame li div:nth-of-type(2) p:first-of-type{
	margin: 1em 0;
}
.harf_frame li div:nth-of-type(2) p:last-of-type {
	margin: 0.5em 0 1em 0;
	font-size: 1.5em;
	font-weight: bold;
}
.harf_frame li div:nth-of-type(2) p:last-of-type span {
	background: linear-gradient(transparent 50%, yellow 50%);
}
@media(max-width:750px) {
	ul.harf_frame {
		margin-top: 3vw;
		padding: 0;
	}
	.harf_frame li {
		width: 49%;
	}
	.harf_frame li div:nth-of-type(1) {
		height: 15vw;
		font-size: 2.9vw;
		border-radius: 10px 10px 0 0;
	}
	.harf_frame li div:nth-of-type(2) {
		padding: 2vw 0;
		border-radius: 0 0 10px 10px;
		font-size: 3vw;
	}
	.harf_frame li div:nth-of-type(2) p:last-of-type {
		margin: 0.5em 0;
	}
}
/* 納期枠ここまで */

/* カレンダー */
.calendar {
	display : flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 70%;
	height: 280px;
	margin: auto;
	margin-bottom: 1.5em;
}
.calendar div{
	width: 50%;
	height: 100%;
	text-align:center; 
}
.calendar img{
	height: 100%;;
	width: auto;
	margin: auto;
}
.cale_tex{
	margin:auto;
	margin-bottom: 1em;
	font-size: 1.2em;
	font-weight: bold;
}
.kyugyou, .hensoku{
	font-size: 1.2em;
}
.kyugyou{
	color: #ffb2d9;
}
.hensoku{
	color:#18b18b;
}
.rinzitxt{
	color:#ff4189;
	font-weight: bold;
}
@media(max-width:750px){
	.calendar {
		width: 80%;
		height: 120vw;
	}
	.calendar div{
		width: 100%;
		height: 48%;
	}
	
	
}

/* カレンダーここまで */


/* 副見出し(背景色有) */
.midashi_bg{
	position: relative;
	width:100%;
	margin: 40px auto 0 auto;
	padding: 0.3em 1em 0.2em 2.3em;
	background-color: #00cbb1;
	border-radius: 10px;
	color: #FFF;
	font-size: 1.4em;
	font-weight: bold;
}
.midashi_bg::before{
	position: absolute;
	left: 0;
	font-weight: 400;
	opacity: 0.7;
}
div.midashi_bg:first-child {
	margin-top: 5px;
}
.midashi_check_n::before{
	top: 0.18em;
	padding: 0px 0.3em 0px 0.5em;
	font-size: 150%;
	font-family: 'FontAwesome';
	content: "\f058";
}
.midashi_chu_n::before {
	top: 0.2em;
	padding: 0px 0.3em 0px 0.5em;
	font-size: 150%;
	font-family: 'FontAwesome';
	content: "\f06a";
}
.midashi_ruler_n::before{
    content: "";
    display: inline-block;
    height: 30px;
	width: 30px;
    background-image: url('img/i_ruler.png');
    background-position: center;
    background-size: contain;
	background-repeat:no-repeat;
	margin-top: 1px;
	margin-left: 15px;
}
.midashi_truck_n::before{
	top: 0.24em;
	padding: 0px 0.3em 0px 0.5em;
	font-size: 128%;
	font-family: 'FontAwesome';
	content: "\f0d1";
}
.midashi_clock_n::before{
	top: 0.12em;
	padding: 0px 0.3em 0px 0.5em;
	font-size: 140%;
	font-family: 'FontAwesome';
	content: "\f1da";
}
.midashi_chu_n + p{
	margin: 15px;
}
.midashi_atten_r {
	margin: 60px auto 0 auto;
	background: #df0658;
}
.midashi_atten_subline {
	width: 95%;
	background: #f14873;
	font-size: 1.3em;
}
.midashi_atten_simple::before {
	top: 50%;
	margin-top:-0.5em;
	padding: 0px 0.3em 0px 0.7em;
	font-size: 150%;
	font-family: 'FontAwesome';
	content: "\f12a";
}
.midashi_atten_subline:first-of-type {
	margin-top: 20px;
}
.midashi_atten_subline + p {
	margin: 0.7em 3em;
	padding: 0;
}
@media(max-width:750px) {
	.midashi_bg{
		margin-top: 5vw;
		font-size: 3.4vw;
		line-height: 1.4em;
	}
	.midashi_chu_n + p{
		margin: 2vw;
		font-size: 3vw;
	}
	.midashi_ruler_n::before{
    height: 4vw;
	width: 4vw;
	margin-top: 0.1vw;
	margin-left: 2.5vw;
}
	.midashi_atten_subline + p {
		margin: 2vw 4vw;
		font-size: 3vw;
	}
	.midashi_atten_simple::before {
		top: 50%;
		margin-top: -2vw;
	}
}
/* 副見出し(背景色有)ここまで */

/* 左項目右説明(原稿作成について) */
.lmain_rsub li {
	display: flex;
	margin: 8px 5px;
}
.lmain_rsub li:first-child {
 	margin: 25px 5px 8px 5px;
}
.lmain_rsub li:last-child {
 	margin: 8px 5px 15px 5px;
}
.lmain_rsub div {
	display: flex;
	align-items: center;
	margin: 0px 5px;
	padding-left: 5px;
}
.lmain_rsub div:first-child {
	height: 3em;
	min-width: 120px;
	margin: 0;
	padding: 0 22px;
	border: 2px solid #00cbb1;
	border-radius: 10px;
	text-align: center;
}
.lmain_rsub p {
	width: 100%;
 	font-size:　1em;
	line-height: 1.3em;
}
.lmain_rsub div:first-child p {
	margin-top: 0.15em;
	color: #008a7e;
	font-size: 1.1em;
	font-weight: bold;
}
li.lmain_rsub_wide div:first-child {
	height: 4em;
	min-width: 16em;
}
li.lmain_rsub_wide div:first-child p {
	font-size: 1em;
}
li.lmain_rsub_wide_il {
	display: block;
	margin-top: 10px;
}
li.lmain_rsub_wide_il div:last-child p{
	margin-bottom: 10px;
}
li.lmain_rsub_wide_il div:first-child {
	width: 85%;
	min-width: 20em;
	height: auto;
	margin: 0 auto;
	padding: 1em 0.8em;
}
li.lmain_rsub_wide_il div:first-child p {
	font-size: 1.1em;
}
li.lmain_rsub_wide_il div {
	width: 75%;
	margin: 8px auto 0 auto;
}
@media(max-width:899px) {
	.lmain_rsub li {
		flex-flow: column;
	}
	.lmain_rsub li::after{
		margin-bottom: 1vw;
		border-bottom: solid 1px #ccc;
		content: "";
	}
	.lmain_rsub div:first-child {
		width: 50%;
	}
	.lmain_rsub li:first-child {
		margin: 2vw 1vw;
	}
	.lmain_rsub div:last-child p {
		margin: 1vw 0 2vw 0;
	}
}
@media(max-width:750px) {
	.lmain_rsub p{
		font-size: 3vw;
	}
	li.lmain_rsub_wide_il div:first-child {
		width: 95%;
		padding: 2vw 1vw;
	}
	li.lmain_rsub_wide_il div {
		width: 85%;
		margin: 1vw auto 0 auto;
	}
}
/* 左項目右説明(原稿作成について)ここまで */

/* 二行画像 スマホで改行 */
.hibt_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 20px auto;
	font-size: 15px;
}
.hibt_middle {
	width: 70%;
}
.hibt_list li {
	width: 50%;
	height: 100%;
}
.hibt_list div {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	text-align: center;
}
.hibt_list img {
	margin: 0 auto;
}
.hibt_list p {
	width: 100%;
	padding: 5px;
}
li.hibt_list_full {
	width: 100%;
}
@media(max-width:899px) {
	.hibt_list li {
		width: 100%;
		height: 100%;
		margin-bottom: 1vw;
	}
	.hibt_list img {
		width: 90%;
		max-width: 400px;
		height: auto;
	}
	.hibt_list p {
		margin-top:0.4vw;
		padding: 0em;
		font-size: 1em;
	}
}
@media(max-width:750px) {
	.hibt_list p {
		margin-bottom: 1vw;
		font-size: 2.3vw;
	}
}
/* 二行画像 スマホで改行ここまで */

/* 料金表 */
.price_out{
	margin-bottom: 3em;
}
.price_tab {
	width: 90%;
	height: 28em;
	margin: 0.8em auto;
	font-size: 18px;
}
.price_tab ul {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	height: 100%;
}
.price_tab li {
	width: 27%;
	height: 100%;
}
.price_tab li:first-of-type {
	width: 73%;
}
.price_tab table {
	width: 100%;
	height: 100%;
	table-layout: fixed;
}
.price_tab tr, td, th {
	padding: 0 0.4em;
	vertical-align: middle;
}
.price_tab th, td {
	font-weight: bold;
}
.price_tab th {
	height: 5em;
	background-color: #ff7789;
	color: #fff;
	font-size: 0.9em;
	text-align: center;
	line-height: 1.2em;
}
.price_tab th.pr_op {
	background-color: #41bebe;
}
.price_tab th.pr_size {
	background-color: #777777;
}
.price_tab tr.h_tr {
	height: 1em;
	font-size: .9em;
	vertical-align: bottom;
}
.price_tab tr.b_tr {
	height: 5em;
	font-size: .65em;
	vertical-align: top;
	line-height: 1.1em;
}
.price_tab tr.b_tr td {
	vertical-align: top;
}
.price_tab span {
	font-size: 0.72em;
	line-height: 0.7em;
}
.price_t1, .price_t2{
	background-color: rgba(150, 150, 150, 0.9);
	color: #fff;
	font-size: 0.9em;
}
.price_t3, .price_t5{
	background-color: rgba(150, 150, 150, 0);
	font-size: 1.5em;
	font-weight: bold;
	text-align: center;
	vertical-align: middle;
}
.price_t1 {
	text-align: right;
}
.price_t2 {
	text-align: center;
}
.price_t3 {
	width: 1.9em;
}
.price_t4 {
	width: 6em;
}
.price_t5 {
	width: 3em;
}
.price_t6 {
	background-color: #868686;
}
.price_sample{
	width: 90%;
	height: auto;
	margin: 1.5em auto 0 auto;
	padding: 1.2em 1em;
	border: 2px solid #00cbb1;
	border-radius: 10px;
}
.price_sample p{
	font-size: 0.9em;
}
.price_sample p span{
	color: #00b79e;
	font-size: 1.5em;
	font-weight: bold;
}
.price_sample .list_dia{
	width:100%;
}
.price_sample .list_dia span.small{
	font-size: 0.85em;
}
.price_sample .list_dia span.kyocho{
	color:#ff4189;
	font-weight: bold;
}
.newprice .price_sample{
	margin: 0.5em auto;
	padding: 1em;
	border: 10px solid #ff4189;
}
.newprice .price_sample p,.newprice .price_sample p a{
	margin: 0.3em 0;
	color: #ff4189;
	font-size: 1.1em;
	font-weight: bold;
	text-align: center;
}
.newprice .price_sample p a,.newprice p.text_link_ly{
	color: #777777;
}
.newprice .price_sample p.np_top{
	color: #ff4189;
	font-size: 1.6em;
}
.newprice .price_sample p span{
	background: linear-gradient(transparent 0%, transparent 50%, #f7ff00 50%, #f7ff00 100%);
	font-weight: bold;
	color: #ff4189;
	font-size: 1.1em;
}

@media(max-width:899px) {
	.price_tab {
		height: 40em;
		width: 99%;
		font-size: 3vw;
	}
	.price_tab li {
		width: 100%;
		height: 30%;
	}
	.price_tab li:first-of-type {
		height: 70%;
		width: 100%;
	}
	.price_tab .price_t3 {
		width: 2em;
		font-size: 1.2em;
	}
	.newprice .price_sample{
		padding: 0.8em;
		border: 5px solid #ff4189;
	}
	.newprice .price_sample p,.newprice .price_sample p a{
		font-size: 0.8em;
	}
	.newprice .price_sample p.np_top{
		font-size: 1.2em;
	}
	.newprice .price_sample p span{
		font-size: 1em;
	}
}
/* 料金表ここまで */

/* 文字装飾 */
.text_bf_c{
	position: relative;
	font-weight: 400;
}
.ya_bottom{
	margin: 20px 10px 0 10px;
}
.ya_bottom::before {
	padding: 0px 8px;
	font-size: 120%;
	font-family: 'FontAwesome';
	content: "\f063";
}
.mail_ad {
	margin-top:10px; 
	display: inline-block;
	color: #00cbb1;
	font-size: 1.2em;
}
.mail_ad::before {
	padding: 0px 8px;
	font-size: 120%;
	font-family: 'FontAwesome';
	content: "\f0e0";
}
.mail_ad:hover,.mail_ad:hover::before  {
	color: #98e2d6;
}
.text_link_ly{
	color:#00cbb1;
	font-size:1.2em;
	font-weight: bold;
}
.text_link_ly::before{
	padding: 0px 8px;
	font-size: 120%;
	font-family: 'FontAwesome';
	content: "\f101"
}
.text_link_ly:hover{
	opacity: 0.6;
}

a.txt_link{
	display: block;
	width:90%;
	margin: auto;
}
.return_link{
	margin-top: 30px;
	color: #3a3a3a;
}
.return_link:hover {
	color: #32dec8;
}
.return_link p{
	display: inline-block;
	position: relative;
	padding-left: 1.2em;
}
.return_link p::before {
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 1em;
	height: 1em;
	margin: auto;
	font-size: 1.5em;
	font-weight: 400;
	padding-right: 0.2em;
	line-height: 1em;
	font-family: 'FontAwesome';
	content: "\f100";
}
.asterisk {
	padding-left: 1em;
}
.asterisk::before {
	content: "※";
	margin-left: -1em;
}
.spancolor span{
	color: #ff4189;
	font-weight: bold;
}

@media(max-width:750px) {
	.mail_ad::before {
		padding: 0 1vw;
	}
	.mail_ad {
		margin-top:1vw;
	}
	.return_link{
		font-size:0.9em;
	}
}
/* 文字装飾ここまで */

/* テキストコピー用 */
.mail_template{
	width:88%;
	margin: 10px auto 0 auto;
}
.mail_template textarea{
  resize: none;
  width: 500px;
  height: 100px;
}
.mail_template textarea:focus,button:focus{
  outline: 0; 
}
/*
::moz-selection{
  background: none;
}
::selection{
  background: none;
}
*/
@media(max-width:750px) {
	.mail_template{
		width:95%;
		margin: 1vw auto 0 auto;
	}
	.mail_template textarea{
		resize: none;
		width: 100%;
		height: 30vw;
		font-size: 3vw;
	}
	.mail_template button{
		font-size: 3vw;
	}
}
/* テキストコピー用ここまで */

/* コンテンツ_ほか */
ul.contents_txt{
	width: 95%;
}
@media(max-width:1119px) {
	ul.contents_txt{
		width: calc(900px * 0.8);
		padding: 0;
	}
}
@media(max-width:899px) {
	ul.contents_txt{
		width: 95%;
	}
}
/* コンテンツ_ほかここまで*/

/* コンテンツ_アーカイブ */
.acv_link {
	width: 900px;
	margin: 0 auto 70px auto;
}
.acv_linktxt {
	position: relative;
	margin: 10px 0px;
	padding: 0 1.5em 0 2.7em;
	background-color: #00cbb1;
	border-radius: 2em;
	-webkit-border-radius: 2em;
	-moz-border-radius: 2em;
	color: #fff;
	font-size: 1.1em;
	line-height: 2.5em;
	transition: 0.2s;
	-webkit-transition: 0.2s;
}
.acv_linktxt::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0.5em;
	font-size: 170%;
	font-weight: 400;
	font-family: 'FontAwesome';
	content: "\f059";
}
.acv_linktxt:hover {
	background-color: #32dec8;
}
.acv_link ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	width: 900px;
	margin: 5px auto 40px auto;
}
.acv_link li {
	position: relative;
	width: 447px;
	height: 110px;
	margin: 8px 6px 0 0;
}
.acv_pigure li:nth-of-type(4n-1) {
	margin-right: 0;
}
.acv_link div {
	width: 447px;
	height: 110px;
	overflow: hidden;
}
.acv_link img {
	margin-top: 0;
}
.acv_on {
	z-index: 50;
	position: absolute;
	top: 0;
	left: 0;
	transition: 0.2s;
	-webkit-transition: 0.2s;
}
.acv_on:hover {
	z-index: 51;
	top: -4px;
	left: -4px;
}
.acv_on img {
	position: absolute;
	left: 0;
	top: 0;
}
.acv_sub {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
}
.acv_sub img {
	position: relative;
	top: 0;
	left: 100%;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.acv_on:hover .acv_sub img {
	left: 0;
}
.acv_txh img {
	z-index: 53;
	transition: 0.3s;
	-webkit-transition: 0.3s;
}
.acv_txhbg img {
	z-index: 52;
	transition: 0.2s;
	-webkit-transition: 0.2s;
}
.acv_txm img {
	z-index: 53;
	transition: 0.35s;
	-webkit-transition: 0.35s;
}
.acv_txb img {
	z-index: 53;
	transition: 0.4s;
	-webkit-transition: 0.4s;
}
.acv_txbg img {
	z-index: 52;
	transition: 0.3s;
	-webkit-transition: 0.3s;
}
.acv_off{
	z-index: 47;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0.8;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-ms-filter: blur(2px);
	filter: blur(2px);
}
.acv_off img {
	position: absolute;
	overflow: hidden;
}
.acv_off span {
	z-index: 48;
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.2);
	opacity: 1;
}
.acv_link_other ul {
	justify-content: stretch;
	margin: 5px auto 40px auto;
}
.acv_link_other li {
	position: relative;
	width: 172px;
	height: auto;
	margin: 8px calc(40px / 4) 0 0;
	box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.3);
	transition: .3s;
}
.acv_link_other li:nth-of-type(5n) {
	margin-right: 0;
}
.acv_link_other a {
	display: flex;
	justify-content: stretch;
	align-items: flex-start;
}
.acv_link_other img {
	width: 100%;
	height: auto;
}
.acv_link_other li:hover {
	opacity: 0.7;
}
.number p {
	z-index: 3;
	position: absolute;
	bottom: 0;
	left: 0;
	margin: 0.2em 0.3em;
	color: #fff;
	font-size: 1.6em;
	font-weight: 600;
	line-height: 0.8em;
	font-family: 'Teko', sans-serif;
}
.number li:after{
	z-index: 2;
	position: absolute;
	bottom: 0;
	left: 0;
	border-top: 2em solid transparent;
	border-right: 2em solid transparent;
	border-bottom: 2em solid rgba(170,170,170,0.8);
	border-left: 2em solid rgba(170,170,170,0.8);
	content: "";
}
.number li:hover:after{
	border-bottom: 2em solid rgba(0,203,177,0.8);
	border-left: 2em solid rgba(0,203,177,0.8);
}
@media(max-width:1119px){
	.acv_link, .acv_link ul {
		width: calc(900px * 0.8);
	}
	.acv_link img {
		width: 100%;
		height: auto;
	}
	.acv_pigure li,.acv_pigure div{
		height: calc(110px * 0.8);
		width: calc(447px * 0.8);
	}
	.acv_pigure li {
		margin: 8px calc(6px * 0.8) 0 0;
	}
	.acv_link_other {
		margin-left: auto;
		margin-right: auto;
		margin-top: 20px;
		width: calc(900px * 0.8);
	}
	.acv_link_other li:nth-of-type(5n) {
		margin-right: calc(1.33333%);
		/*margin-right: calc(40px/4);*/
	}
	.acv_link_other li:nth-of-type(4n) {
		margin-right: 0;
	}
}
@media(max-width:899px) {
	.acv_link {
		width: 100%;
		margin: 0 auto 3vw auto;
	}
	.acv_linktxt {
		max-width: calc(900px * 0.7);
		margin: 2vw auto;
		font-size: 1em;
	}
	.acv_link ul {
		width: 95%;
		max-width: calc(900px * 0.7);
		height: auto;
		margin: 1vw auto 6vw auto;
	}
	.acv_pigure li {
		width: 100%;
		height: auto;
	}
	.acv_link div {
		width: 100%;
		height: auto;
	}
	.acv_link_other {
		max-width: calc(900px * 0.7);
		width: 95%;
		height: auto;
	}
	.acv_link_other ul {
		width: 100%;
		height: auto;
	}
	.acv_link_other li {
		width: 24%;
		height: auto;
		margin: 8px calc(4% / 3) 0 0;
	}
	.number p {
		margin: 0.2em 0.3em;
		font-size: 3.2vw;
		line-height: 0.8em;
	}
	.number li:after{
		border-top: 4vw solid transparent;
		border-right: 4vw solid transparent;
		border-bottom: 4vw solid rgba(0,203,177,0.8);
		border-left: 4vw solid rgba(0,203,177,0.8);
	}
	.number li:hover:after{
		border-bottom: 4vw solid rgba(0,203,177,0.8);
		border-left: 4vw solid rgba(0,203,177,0.8);
	}
}
/* コンテンツ_アーカイブここまで */

/* スライドボタン */
.slide_link{
	position: relative;
	border-radius: 8px;
	width: 86%;
	height: 4em;
	margin: 25px auto;
    background-color:#00cbb1;
    border:2px solid #00cbb1;
	font-size: 1em;
	text-align: center;
	overflow: hidden;
}
.slide_link div{ 
	position: absolute;
    left: -3px;
    top: -3px;
	width: 200%;
	height: 110%;
	background: #fff;
	transform-origin: right top;
	transform: skewX(-30deg) scale(0, 1);
	transition: transform 0.9s;
	background: rgb(0,203,177); /* Old browsers */
	background: -moz-linear-gradient(left,  rgba(0,203,177,1) 0%, rgba(255,255,255,1) 7%, rgba(255,255,255,1) 77%, rgba(0,203,177,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left,  rgba(0,203,177,1) 0%,rgba(255,255,255,1) 7%,rgba(255,255,255,1) 77%,rgba(0,203,177,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right,  rgba(0,203,177,1) 0%,rgba(255,255,255,1) 7%,rgba(255,255,255,1) 77%,rgba(0,203,177,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00cbb1', endColorstr='#00cbb1',GradientType=1 ); /* IE6-9 */
}
.slide_link:hover div {
	z-index: 20;
	transform-origin: left top;
	transform: skewX(-30deg) scale(1, 1);
}
.slide_link a{
	color:#fff;
}
.slide_link p{
	display: inline-block;
    z-index: 21;
    position: relative;
    top: 50%;
    color: #fff;
    text-align: center;
	-webkit-transform: translateY(-50%); 
	transform: translateY(-50%);
}
.slide_link p::before {
	position: absolute;
	top: -0.1em;
	left: -0.8em;
	padding: 0px 0.5em 0 0;
	font-size: 170%;
	font-weight: 400;
	font-family: 'FontAwesome';
	content: "\f101";
}
.slide_link:hover p{
	color: rgb(0,203,177);
}
@media(max-width:750px){
	.slide_link{
		width: 94%;
		margin: 4vw auto;
		font-size: 3.5vw;
	}
	.slide_link p::before {
		top: 50%;
		left: -4vw;
		transform: translateY(-50%);
	}
}
/* スライドボタンここまで */

/* コラムブログカード */
ul.column_link{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width:95%;
	margin: 1.5em auto 0 auto;
}
.par_contents ul.column_link{
	margin-top: 50px;
}
ul.column_link li{
	width: 49%;
	margin-bottom: 1.5em;
}
.link-box {
	display: flex;
	position: relative;
	padding: 10px;
	border: 1px solid #bbb;
	align-items: center;
}
.link-box:hover {
	opacity: 0.6;
	-webkit-transition:  .2s;
	transition: .2s
}
.day_box{
	position: absolute;
	top: -1em;
	right: 0.5em;
	padding: 0.4em 0.4em;
	background-color: #00cbb1;
	color:#fff;
	font-size: 0.8em;
	line-height: 1em;
}

.par_contents li:first-of-type .day_box{
	background-color: #fa5294;
	padding-right: 3.4em;
}
.par_contents li:first-of-type .day_box::after{
	position: absolute;
	right: 0.5em;
	content:"New!"
}
.img-box {
	width: 25%;
	float: left;
}
.img-box div {
	width : 100% ;
	padding-top : 100% ;
	background-size: cover;
	background-position: center center;
}
.text-box {
	float: left;
	width: 75%;
	padding-left: 1em;
	box-sizing: border-box;
	line-height: 1.7;
}
.text-box .title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
	width: 100%;
	color: #428bca;
	font-size: 1.1em;
	font-weight: 600;
	overflow: hidden;
}
.text-box .description {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
	overflow: hidden;
	color: #333;
	font-size: 0.9em;
}
ul.column_link li.column_more{
	width:100%;
}
ul.column_link li.column_more p{
	color: #5a5a5a;
    font-size: 0.9em;
}
ul.column_link li.column_more a {
    display: block;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: #00cbb1;
}
ul.column_link li.column_more i {
    font-size: 1.5em;
    color: #5a5a5a;
    margin: 0 3px;
}
ul.column_link li.column_more a:hover p, ul.column_link li.column_more a:hover i{
	color: #00cbb1;
	-webkit-transition:  .2s;
	transition: .2s
}
@media(max-width:750px){
	.par_contents ul.column_link{
		margin-top:7vw;
	}
	ul.column_link li{
		width: 100%;
		font-size: 0.9em;
	}
	ul.column_link li:nth-child(4){
		margin-bottom:1vw;
	}
	.link-box {
		padding: 2vw;
	}
	.day_box{
		font-size: 3vw;
	}	
	.text-box{
		padding-left: 3.5vw;
		line-height:inherit;
	}
	.img-box{
		width:25%;
	}
}
	/* TOP用 */
ul.topcolumn{
	z-index: 51;
    position: absolute;
    bottom: 130px;
    left: 0;
    width: 400px;
}
ul.topcolumn li{
	width: 100%;
}
.topcolumn .text-box .title {
	font-size: 1em;
}
.topcolumn .text-box .description {
	font-size: 0.75em;
	line-height: 1.7em;
}
@media(max-width:1000px){
	ul.topcolumn{
		position: static;
		width: 100%;
		margin: 3vw 0 1vw 0;
	}
	ul.topcolumn li{
		margin: 0;
		width: 100%;
		max-width: 530px;
	}
	.topcolumn .text-box .title {
		font-size: 1.2em;
	}
	.topcolumn .text-box .description {
		font-size: 0.9em;
		line-height: 1.5em;
	}
}
@media(max-width:899px) {
	ul.topcolumn{
   		margin-top: 5vw;
	}
	.topcolumn .text-box .description {
		font-size: 2.5vw;
		line-height: 4vw;
	}
}
@media(max-width:750px){
	.topcolumn .text-box .title {
		margin-bottom: 1vw;
		font-size: 4vw;
	}
}
/* コラムブログカードここまで */

/* コンテンツ_イベント出展情報ここまで */
.event_list input {
    display: none; 
}
.event_y,.event_y_last{
	display: flex;
	align-items:center;
	width: 100%;
    max-width: 900px;
	font-weight: bold;
	cursor: pointer;
	cursor: hand;
}
.event_y{
	justify-content:space-between;
	margin: 1em auto 0 auto;
	padding: 0.8em 1.5em;
	background-color:#00cbb1;
	color:#fff;
	font-size: 1.1em;
}
.event_y:hover{
	opacity: 0.7;
}
.event_y p{
	font-size: 1.2em;
}
.event_y span{
	position: relative;
	font-size: 1.5em;
}
.event_y span:before, .event_y_last span:before{
	display: block;
	width: 1em;
	height: 1em;
	margin: auto;
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
}
.event_y_last span:before {
	content: '\f106';
}
.event_list input:checked ~ .event_y span:before {
	content: '\f106';
}
.event_y_last{
	justify-content:flex-end;
	margin: 0 auto 1em auto;
	padding: 0 1.5em;
	color:#555;
	font-size: 1em;
}
.event_y_last:hover{
	opacity: 0.5;
}
.event_y_last p{
	padding: 0 0.5em;
}
.event_y_last span{
	position: relative;
	font-size: 1.5em
}
.event_y span:before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	content: '\f107';
}
.event_main{
	width: 100%;
    height: 0;
    max-width: 900px;
	margin: 0;
    overflow: hidden;
    transition: 0.8s;
	opacity: 0;
}
.event_list input:checked ~ .event_main{
    height: auto;
	margin: 1em auto;
	opacity: 1;	
}
.single{
	display: flex;
	flex-wrap:wrap;
	width: 100%;
	margin-bottom: 1em;
	padding: 2em 0;
	border-bottom: 2px solid #ccc;
}
.single .left{
	width: 22%;
}
.single .left > a{
	display: flex;
}
.single .left > a > div{
	position: relative;
	width: 100%;
	height: auto;
	padding-bottom: 100%;
	background-color:#00cbb1;
}
.single .left > a > div::after{
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-size: cover;
	background-position: center center;
	background-image:url("img/main_backg_s.png");
	content: "";
	opacity: 0.3;
}
.single .left > a > div > div{
	display: flex;
	flex-wrap:wrap;
	flex-direction: column;
	justify-content: space-between;
	position: absolute;
	width: 100%;
	height: 100%;
	padding: 0.7em;
}
.single .left > a :hover > div > div{
	opacity: 0.2;
    transition: 0.3s;
}
.single .left > a:hover > div::after{
	opacity: 0;
    transition: 0.3s;
}
.single .left > a >div>div:after{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left:0;
	height: 2.4em;
	margin: auto;
	color: #fff;
	font-size: 1.3em;
	font-weight: 700;
	text-align: center;
	line-height: 1.2em;
	white-space: pre;
	font-family: 'M PLUS 1p', sans-serif;
	content: "イベント\A公式ページへ";
	opacity: 0;
}
.single .left > a:hover > div > div:after{
	opacity: 1;
    transition: 0.3s;
}
.single .left > a > div > div div{
	width: 100%;
}
.single .left  p{
	color:#fff;
	font-family: 'Poppins', sans-serif;
}
.eventname_top{
	font-size: 2.3em;
	line-height: 0.9em;	
}
.eventname_top span{
	font-size: 0.6em;
	vertical-align:top;
	font-family: 'Poppins', sans-serif;
}
.eventname_bottom p:nth-of-type(1){
	font-size: 1em;
	line-height: 1em;
	font-weight: 700;
	font-family: 'M PLUS 1p', sans-serif;
}
.eventname_bottom p:nth-of-type(2){
	font-size: 1.6em;
	line-height: 1.2em;
}
.eve_acm .left .eventname_top p{
	font-size: 0.9em;
	font-weight: 700;
	line-height: 1.2em;
	font-family: 'M PLUS 1p', sans-serif;
}
.single .right{
	padding-left: 1.5em;
}
.single .right p{
	display: inline-block;
	margin-top: 1em;
	padding: 0.2em 0.8em;
	background: #00cbb1;
	color: #fff;
	font-size: 0.9em;
	font-weight:bold;
}
.single .right p:first-of-type{
	margin-top: 0;
}
.single .right p.eve_att{
	font-size: 1.1em;
	background: #fa5294;
}
.single .right p.eve_att i{
	margin-right: 0.3em;	
}
.single .right p.eve_att span{
	font-size: 0.8em;
	font-weight: normal;
}
.single .right ul{
	list-style: square;
	margin: 0.5em 2em;
}
.single .right ul a{
	color: #3a3a3a;
	font-size: 0.95em;
}
.single .right ul a:hover{
	opacity: 0.5;
}
.new{
	color: #ff5f74;
}
.new::after{
	margin-left: 0.5em;
	font-size: 0.9em;
	font-weight: bold;
	content:"New!";
}
	/* ワンフェス カラー */
.eve_wf .left > a > div, .eve_wf .right p{
	background-color:#f3980f;
}
.eve_wf .left > a > div > div::after{
	text-shadow: 0 0 0.2em #f3980f;
}
	/* コミケ カラー */
.eve_cmk .left > a > div, .eve_cmk .right p{
	background-color:#2e68f4;
}
.eve_cmk .left > a > div > div::after{
	text-shadow: 0 0 0.2em #2e68f4;
}
	/* エアコミケ カラー */
.eve_acm .left > a > div, .eve_acm .right p{
	background-color:#15b8f6;
}
.eve_acm .left > a > div > div::after{
	text-shadow: 0 0 0.2em #15b8f6;
}
	/* AK-GARDEN カラー */
.eve_ak .left > a > div, .eve_ak .right p{
	background-color:#3aced0;
}
.eve_ak .left > a > div > div::after{
	text-shadow: 0 0 0.2em #3aced0;
}
@media(max-width:899px) {
	.event_list input:checked ~ .event_main {
		margin: 3vw auto;
	}
	.single {
	    padding: 2vw 0;
	}
	.single .left {
    	width: 100%;
		font-size: 0.9em;
	}
	.single .left > a > div {
		width: 95%;
		margin: 0 auto 1em auto;
		padding-bottom: 14%;
		font-size: 2.5vw;
	}
	.single .left > a > div > div {
		flex-direction: row;
	}
	.single .left p{
		display:inline-block;
	}	
	.eventname_bottom{
		text-align: right;
	}
	.eventname_top span{
		vertical-align:middle;
		margin-left: 0.2em;
	}
	.eve_acm .left .eventname_top p {
		line-height: 1em;
	}
	.single .right {
		width: 95%;
		margin: 0 auto;
		padding-left: 0;
	}
	.single .right ul{
		margin: 0.5em 1.5em;
	}
	.single .right ul li{
		width: 92%;
		font-size: 2.8vw;
		line-height: 1em;
	}
	.new::after{
		font-size: 2.3vw;
	}	
}
/* コンテンツ_イベント出展情報ここまで */

/* Pi.gure企画ページ_企画名 */
.pigure_name {
	margin: 20px auto 30px auto;
}
.pigure_name p{
	display: block;
	width: 100%;
	padding: 0.4em;
	background-color: #fff;
	border-radius: 1.3em;
	border: solid 2px #ccc;
	color: #5a5a5a;
	font-size: 1.3em;
	font-weight: bold;
	text-align: center;
}
span.pop {
  color: #f8b73d;
}
span.ill {
  color: #88ccc1;
}
span.fig {
  color: #6c8fbb;
}
@media(max-width:899px) {
	.pigure_name {
		font-size: 4vw;
		margin: 3vw auto 4vw auto;
	}
	.pigure_name p{
		border-radius: 3.5vw;
	}
 }
/* Pi.gure企画ページ_企画名ここまで */

/* Pi.gure企画ページ_画像 */
.abo_imgbox {
	z-index: 1;
	width: 100%;
	height: auto;
	margin: 3vw auto;
	background-color: #ECECEC;
	border-radius: 3vw;
	box-shadow: 1vw 1vw 1vw #ccc;
	overflow: hidden;
}
.abo_imgbox_h, .abo_imgbox_b{
	width: 100%;
	padding: 4vw;
	color: #FFF;
	text-align: center;
}
.abo_imgbox_h{
	background-color: #00cbb1;
	font-weight: bold;
}
.abo_imgbox_b{
	background-color: #585858;
	font-size: 2.8vw;
}
img.abo_imgbox_i{
	width:100%;
	margin-top: 0;
	padding:2vw;
}
img.abo_ya{
	width:100%;
	margin: 3vw 0;
	padding: 0 30vw;
}
/* Pi.gure企画ページ_画像ここまで */

/* Pi.gure企画ページ_アーカイブ縦 */
.abo_link {
	width: 100%;
}
.abo_link ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: auto;
}
.abo_link li{
	position: relative;
	width: 161px;
	height: 413px;
	margin: 10px 3px;
}
.abo_link img{
	margin:0;
	width: 100%;
	height: auto;
}
.k_on {
	z-index: 50;
	position: absolute;
	top: 0;
	left: 0;
	transition: 0.2s;
	-webkit-transition: 0.2s;
}
.k_on:hover {
	z-index: 51;
	position: absolute;
	left: -6px;
	top: -6px;
}
.k_off {
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-ms-filter: blur(5px);
	filter: blur(5px);
}
.k_off img {
	position: absolute;
}
.k_on span {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.k_on span img {
	display: block;
	position: relative;
	top: 100%;
	left: 0;
	width: 100%;
	height: 100%;
}
.k_on:hover span img {
	top: 0;
}
.k_tx_sub img {
	z-index: 54;
	transition: 0.4s;
	-webkit-transition: 0.4s;
}
.k_txbg_sub img {
	z-index: 53;
	transition: 0.2s;
	-webkit-transition: 0.2s;
}
.k_txbg img {
	z-index: 53;
	transition: 0.3s;
	-webkit-transition: 0.3s;
}
.k_tx img {
	z-index: 54;
	transition: 0.5s;
	-webkit-transition: 0.5s;
}
@media(max-width:750px) {
	.abo_link ul {
	  flex-wrap: wrap;
	  height: auto;
	  margin: 2vw auto 4vw auto;
	}
	.abo_link li {
	  width: 24%;
	  height: auto;
	  margin: 2vw 1% 2vw 0;
	}
	.abo_link li:nth-child(4n) {
	  margin-right: 0;
	}
	.abo_link li:hover img {
	  opacity: 0.7;
	}
}
/* Pi.gure企画ページ_アーカイブ縦ここまで */

/* アーカイブ_概要 */
.acv_tit{
	margin-top: 3vw;
	font-size: 3vw;
}
.acv_topbox {
	margin-top: 5px;
	background-color: rgba(0, 0, 0, 0.7);
	background-image: url(img/acv2d3d_02_top.png);
	background-repeat: no-repeat;
	background-position: right 0 top 0;
	background-size: cover;
	color: #FFF;
}
.acv_topbox_in {
	padding: 30px;
	width: 100%;
}
.acv_toptxt{
	font-size: 3.4em;
	font-weight: bold;
	line-height: 50px;
}
.acv_toptxt span {
	font-size: 1.2em;
}
.acv_bottomtxt{
	display: flex;
	justify-content: space-between;
	align-items:flex-end;
	margin-top: 20px;
}
.acv_b_ltxt{
	width: 65%;
	font-size: 0.9em;
	line-height: 1.4em;
}
.acv_b_ltxt p:first-of-type{
	margin-bottom: 10px;
}
ul.acv_b_rlink{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 35%;
	margin: 0;
	padding-left: 20px;
}
ul.acv_b_rlink li{
	width: 100%;
	margin-top: 0.6em;
}
ul.acv_b_rlink div {
	padding: 10px;
	background-color: #555;
	border-radius: 10px;
	color: #FFF;
	font-size: 1em;
	line-height: 1.2em;
}
ul.acv_b_rlink div:hover {
	background-color: #666;
}
ul.acv_b_rlink div::before {
	position: relative;
	top: 3px;
	padding: 0px 10px;
	font-weight: 400;
	font-family: 'FontAwesome';
}
ul.acv_b_rlink div.acv_twitter {
	background-color: #1da1f2;
}
ul.acv_b_rlink div.acv_twitter:hover {
	background-color: #45beff;
}
ul.acv_b_rlink div.acv_twitter::before {
	font-size: 140%;
	content: "\f099";
}
ul.acv_b_rlink div.acv_tuhan {
	background-color: #ffa104;
}
ul.acv_b_rlink div.acv_tuhan:hover {
	background-color: #ffbd52;
}
ul.acv_b_rlink div.acv_tuhan::before {
	font-size: 140%;
	content: "\f07a";
}
/* アーカイブ_概要ここまで */

/* アーカイブ_メイン画像 */
.acv_mainimg{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
	margin: auto;
	margin-top: 20px;
}
.acv_swiimg{
	width: 65%;
	margin: 0 auto;
}
.acv_swiimg img{
	width: unset;
}
.acv_smn{
	width: 33%;
	height: auto;
	margin: 10px auto;
}
.acv_smn ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
	height: auto;
}
.acv_smn li {
	position: relative;
	width: 96px;
	height: 96px;
	margin-bottom: 2%;
	overflow: hidden;
}
.acv_smn a:hover {
	opacity: 0.7;
}
.acv_smn img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: auto;
	margin: 0;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.acv_subimg {
	width: 100%;
	height: auto;
	margin: 15px auto 100px auto;
}
.acv_subimg ul {
	display: flex;
	position: relative;
	margin-bottom: 12px;
	width: 100%;
	height: 200px;
	overflow: hidden;
}
.acv_subimg li {
	position: relative;
	margin-right: 12px;
}
.acv_subimg li:hover{
	opacity: 0.7;
}
.acv_subimg li:last-of-type{
	margin-right: 0;
}
.acv_subimg a {
  width: 100%;
}
.acv_subimg img {
	position: relative;
	top: 50%;
	left: 50%;
	width: 100%;
	height: auto;
	margin: 0;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.acv_subimg li.fit_height img {
	height: 100%;
}
.acv_subimg figure {
	height: 200px;
	margin: 0;
	padding: 0;
}
.acv_subimg figure div {
	z-index: 20;
	position: absolute;
	bottom: 0;
	width: 100%;
	padding: 3px 15px;
	background-color: rgba(0, 0, 0, 0.5);
	color: #FFF;
	pointer-events: none;
}
@media(max-width:1119px){
	.acv_swiimg{
		width: 700px;
	}
	.acv_smn{
		width: 800px;
	}
	.acv_smn ul {
		width: 100%;
		justify-content: flex-start;
	}
	.acv_smn div.acv_1x1_in {
		width: 0px;
		height: 0px;
		padding-bottom: 100%;
	}
	.acv_smn ul.acv_1x1 li {
		position: relative;
		width: 16%;
		height: inherit;
		margin: 8px calc(4% / 5) 0 0;
		overflow: hidden;
	}
	.acv_smn ul.acv_1x1 li:nth-child(6n) {
		margin-right: 0;
	}
	.acv_subimg {
		width: 800px;
	}
	.acv_subimg ul, .acv_subimg figure  {
		height: 180px;
	}
}

@media(max-width:899px) {
	.acv_mainimg {
		width: 100%;
	}
	.acv_swiimg, .acv_smn{
		width: 100%;
		max-width: 700px;
	}
	.acv_swiimg  img {
		width: 85%;
		max-width: 510px;
		height: auto;
	}
	.acv_smn ul{
		padding: 0;
	}
	.acv_smn ul.acv_1x1 li {
		position: relative;
		width: 19%;
		height: auto;
		margin: 8px calc(5% / 4) 0 0;
		overflow: hidden;
	}
	.acv_smn ul.acv_1x1 li:nth-child(6n) {
		margin-right: calc(5% / 4);
	}
	.acv_smn ul.acv_1x1 li:nth-child(5n) {
		margin-right: 0;
	}
	.acv_smn div.acv_1x1_in {
		width: 0px;
		height: 0px;
		padding-bottom: 100%;
	}
	.acv_smn img {
		width: 100%;
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		height: auto;
	}
	.swiper-wrapper{scroll-snap-type:y mandatory}:root{--swiper-navigation-size:10vw}
	.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    	margin: 0 1vw;
	}
	.swiper-pagination-bullet {
		width: 2vw;
		height: 2vw;
	}
	.acv_subimg{
		width: 100%;
		max-width: 700px;
		margin: 1vw auto 2vw auto;
	}
	.acv_subimg ul {
		flex-wrap: wrap;
		height: auto;
		margin: 0;
		padding: 0;
	}
	.acv_subimg li {
		width: 100%;
		height: inherit;
		margin: 0;
		margin-bottom: 1vw;
		overflow: hidden;
	}
	.acv_subimg li.fit_height img, .acv_subimg li.fit_half img {
	  width: 100%;
		height: auto;
	}
	.acv_subimg figure {
		height: auto;
	}
	.acv_1x3_5 li {
		position: relative;
		width: 100%;
		height: inherit;
		margin-bottom: 1vw;
		overflow: hidden;
	}
	.acv_1x3_5 img {
		position: absolute;
	}
	.acv_1x3_5_in {
		width: 0px;
		height: 0px;
		padding-bottom: 25%;
	}
	.acv_topbox{
		max-width: 700px;
		margin: auto;
		margin-bottom: 3vw;
	}
	.acv_topbox_in{
		padding: 3vw;
	}
	.acv_toptxt {
		font-size: 5vw;
		line-height: 1em;
	}
	.acv_bottomtxt {
		margin-top: 2.5vw;
		flex-wrap: wrap;
	}
	.acv_b_ltxt{
		font-size: 2.8vw;	
	}
	.acv_b_ltxt, ul.acv_b_rlink{
		width: 100%;
	}
	ul.acv_b_rlink{
		margin: 0;
		padding: 0;
	}
	ul.acv_b_rlink div{
		padding: 2vw;
	}
	ul.acv_b_rlink div::before{
		padding: 0px 2vw;
	}
}
/* アーカイブ_メイン画像ここまで */

/* アーカイブ_企画進行中 */
.acv_inp {
	margin: 10px 0;
	width: 100%;
	padding: 1.5em;
	background: #00cbb1;
	border-radius: 10px;
	font-size: 1.2em;
	text-align: center;
}
.acv_inp p {
	color: #fff;
	font-weight: bold;
	margin-bottom: 0.4em;
}
.acv_inp p:last-of-type {
	margin-bottom: 0;
}
.acv_inp a {
	color: #fff;
	text-decoration: underline;
}
.acv_inp a:hover {
	color: #b5f0e8;
}
p.acv_inp_sub {
	font-weight: normal;
	font-size: 0.8em;
}
@media(max-width:899px) {
  .acv_inp {
	  font-size: 1em;
	}
  .swipe_none img {
    width: 85%;
    max-width: 510px;
    height: auto;
  }
}
/* アーカイブ_企画進行中ここまで */

/* その他アーカイブ(社内制作物・制作事例) */
.acv_other_box {
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
	flex-wrap: wrap;
	height: auto;
	width: 95%;
	margin: 0 auto 20px auto;
}
.acv_other_mainimg {
	width: 52%;
	height: auto;
}
.acv_other_mainimg img {
	width: 100%;
	max-width: 500px;
	margin: 0;
}
.acv_txtsmn {
	position: relative;
	width: 380px;
	max-width: 600px;
	padding-top: 30px;
}
.acv_other_smn {
	width: 100%;
	height: auto;
}
.acv_txt_h {
	padding: 20px 30px 10px 30px;
	background-color: rgba(0, 0, 0, 0.6);
	color: #FFF;
	font-size: 20px;
	font-weight: bold;
	font-family: sans-serif;
}
.acv_txt_h span {
	font-size: 50px;
}
.acv_txt_h span.acv_txt_h_other {
	font-size: 25px;
}
.acv_txt_b {
	height: auto;
	padding: 20px 30px;
	background-color: rgba(0, 0, 0, 0.5);
	color: #FFF;
	font-size: 0.8em;
}
.acv_txt_b a {
	position: relative;
	margin: 10px 0px;
	padding-left: 1em;
	color: #6bcce6;
	line-height: 1.2em;
}
.acv_txt_b a::before {
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -0.4em;
	padding: 0 0.5em 0 0;
	font-weight: 400;
	font-size: 170%;
	font-family: 'FontAwesome';
	content: "\f101";
}
.acv_txt_b a:hover {
	color: #fff;
}
.acv_other_smn ul {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
}
.acv_other_smn li{
	position: relative;
	width: 89px;
	height: 89px;
	margin: 8px 8px 0 0;
	overflow: hidden;
}
.acv_other_smn li:nth-child(4n) {
	margin-right: 0;
}
.acv_other_smn li:hover {
	opacity: 0.7;
}
.acv_other_smn img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: auto;
	margin: 0;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.oval_page {
	width: 100%;
	padding: 10px 0;
}
.oval_page ul {
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin: 0 auto 15px auto;
	padding: 0;
}
.oval_page div {
	display: flex;
	align-items: center;
}
.oval_page li:last-of-type div {
	justify-content: flex-end;
}
.oval_page div:hover {
	opacity: 0.6;
}
.oval_page img {
	width: 70px;
	height: auto;
	margin: 0 10px;
	box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.3);
	border-radius: 50%;
}
.oval_page i {
	font-size: 1.5em;
	color: #3a3a3a;
	margin: 3px;
}
.oval_page p {
	color: #3a3a3a;
	font-size: 0.9em;
}
@media(max-width:1119px){
	.acv_other_mainimg {
		width: 100%;
		text-align: center;
	}
	.acv_other_mainimg img {
		margin: auto;
	}
	.acv_txtsmn {
		width: 100%;
		padding-top: 3vw;
		margin-left: auto;
		margin-right: auto;
	}
	.acv_txt_h {
		font-size: 13px;
		padding: 25px 30px 15px 30px;
	}
	.acv_txt_h span {
		font-size: 30px;
	}
	.acv_other_smn ul.acv_1x1 li {
		width: 23%;
		height: inherit;
		margin: 8px calc(8% / 3) 0 0;
	}
	.acv_other_smn ul.acv_1x1 li:nth-child(4n) {
		margin-right: 0;
	}
	.acv_1x1_in {
		width: 0px;
		height: 0px;
		padding-bottom: 100%;
	}
	.oval_page img {
		width: 50px;
	}
}
@media(max-width:899px) {
	.acv_other_box{
		margin-bottom:4vw;
	}
	.acv_other_smn ul.acv_1x1 li {
		margin-top: 2vw;
	}
	.acv_txt_h {
		padding: 4vw 5vw 3vw 5vw;
		font-size: 3vw;
	}
	.acv_txt_h span {
		font-size: 5vw;
	}
	.acv_txt_h span.acv_txt_h_other {
		font-size: 4.5vw;
	}
	.acv_txt_b {
		font-size: 3vw;
		line-height: 3.2vw;
		padding: 5vw;
	}
	.oval_page {
		padding: 2vw 0;
	}
	.oval_page img {
		width: 10vw;
		margin: 0 2vw;
	}
	.oval_page i {
		margin: 2vw;
	}
}
@media(max-width:750px) {
	.oval_page p {
		font-size: 2.8vw;
	}
}
/* その他アーカイブ(社内制作物・制作事例)ここまで */



.indent{
	text-indent: -1em;
	padding-left: 1em;
}
.rinji_priceimg img {
  display: block;
  margin: auto;
    margin-top: auto;
  margin-top: 1.5em;
}

@media(max-width:1119px){
	.rinji_priceimg img{
		width: 95%;
		height: auto;
	}
}
@media(max-width:899px) {
	.rinji_priceimg img{
		margin-top: 2vw;
	}
}