@charset "UTF-8";

/* -----------------------------------------------
 *  	         component.css
 * ----------------------------------------------- */



/* SwiperSetting 強制上書き */
.swiper-container{
    padding-bottom: 30px!important;
}
.swiper-pagination-bullet-active{
    background-color: #464646!important;
}


/* =====================flexBox===================== */
/*flex_center 1段 中央 */
.flex_center{
	display: flex;
	align-items: center;
	justify-content: center;
}
.flex_center > div.flex_center_inner{
	width: 100%;
}


/*flex_1A 1段 50→100 */
.flex_1A{
	display: flex;
	justify-content: center;
}
.flex_1A div:first-child{
	width: 49%;
}
@media only screen and (max-width: 30em) {
.flex_1A{
	display: block;
}
.flex_1A div:first-child{
	width: 100%;
	margin: 0 0 30px 0;
}
}

/*flex_2A 2段 48:48 */
.flex_2A{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.flex_2A > div, .flex_2A > section{
    width: 48%;
}

@media only screen and (max-width: 48em) {
.flex_2A{
}
.flex_2A > div, .flex_2A > section{
	width: 100%;
	margin: 0 0 0 0;
}
}

/*flex_2B 2段 50:30*/
.flex_2B{
	display: flex;
	justify-content: space-between;
}
.flex_2B .flex_2B_innerA{
	width: 57%;
    order: 1;
}
.flex_2B .flex_2B_innerB{
	width: 40%;
    order: 2;
}
@media only screen and (max-width: 48em) {
.flex_2B{
	display: block;
}
.flex_2B .flex_2B_innerA{
	width: 100%;
	margin: 0 0 10px 0;
}
.flex_2B .flex_2B_innerB{
	width: 100%;
}
}


/*flex_2C 2段 55:45 */
.flex_2C{
	display: flex;
}
.flex_2C div:first-child{
	width: 45%;
}
.flex_2C div:nth-child(2){
	width: 55%;
}
@media only screen and (max-width: 30em) {
.flex_2C{
	display: block;
}
.flex_2C div:first-child{
	width: 100%;
}
.flex_2C div:nth-child(2){
	width: 100%;
}
}

/*flex_2D 2段 50:50 中央寄せ JobTypeで使用*/
.flex_2D{
	display: flex;
    flex-wrap: wrap;	
}
.flex_2D > div, .flex_2D > section{
	width: 50%;
}

@media only screen and (max-width: 30em) {
.flex_2D{
	display: block;
}
.flex_2D > div, .flex_2D > section{
	width: 100%;
}
}

/*flex_2E 2段 48:48→100 */
.flex_2E{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.flex_2E div.flex_2E_inner, .flex_2E section.flex_2E_inner{
	width: 49.9%;
	margin: 2px 0 2px 0;
}
@media only screen and (max-width: 30em) {
.flex_2E{
}
.flex_2E div.flex_2E_inner, .flex_2E section.flex_2E_inner{
	width: 49.6%;
	margin: 2px 0 20px 0;
}
}


/*flex_2D 2段 30:30 中央寄せ */
.flex_2F{
	display: flex;
	align-items: center;
	justify-content: center;	
}
.flex_2F div.flex_2F_inner, .flex_2F section.flex_2F_inner{
	width: 30%;
    margin-left: 1%;
    margin-right: 1%;
}

@media only screen and (max-width: 48em) {
.flex_2F{
}
.flex_2F div.flex_2F_inner, .flex_2F section.flex_2F_inner{
	width: 40%;
    margin-left: 2%;
    margin-right: 2%;
}
}

@media only screen and (max-width: 30em) {
.flex_2F{
	display: block;
}
.flex_2F div.flex_2F_inner, .flex_2F section.flex_2F_inner{
	width: 90%;
    margin: 0 auto;
}
}


/*flex_2G 2段 48:48 変動なし */
.flex_2G{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.flex_2G > div, .flex_2G > section{
    width: 48%;
}


/*flex_2H 2段 48:48→100 */
.flex_2H{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.flex_2H div.flex_2H_inner, .flex_2H section.flex_2H_inner{
	width: 49.9%;
	margin: 2px 0 2px 0;
}
@media only screen and (max-width: 30em) {
.flex_2H{
}
.flex_2H div.flex_2H_inner, .flex_2H section.flex_2H_inner{
	width: 100%;
	margin: 2px 0 20px 0;
}
}




/*flex_3A 3段 32%左右均等配置*/
.flex_3A{
	display: flex;
	flex-wrap: wrap;
	justify-content:space-between;
}
.flex_3A > div, .flex_3A > li , .flex_3A > section{
	width: 31%;
	margin: 0 0 10px 0;
}

@media only screen and (max-width: 48em) {
.flex_3A{
	display: block;
}
.flex_3A > div, .flex_3A > li , .flex_3A > section{
	width: 100%;
	margin: 0 0 10px 0;
}
}


/*flex_3B 3段 32% 左寄せ配置右空き ソート対策用*/
.flex_3B{
	display: flex;
	flex-wrap: wrap;
	justify-content:flex-start;
}
.flex_3B > div, .flex_3B > li , .flex_3B > section{
	width: 31%;
	margin: 0 2% 10px 0;
}

@media only screen and (max-width: 48em) {
.flex_3B{
	display: block;
}
.flex_3B > div, .flex_3B > li , .flex_3B > section{
	width: 100%;
	margin: 0 0 10px 0;
}
}

/*flex_3C 3段 32%左右均等配置 変動なし*/
.flex_3C{
	display: flex;
	flex-wrap: wrap;
	justify-content:space-between;
}
.flex_3C > div, .flex_3C > li , .flex_3C > section{
	width: 31%;
	margin: 0 0 0 0;
}

@media only screen and (max-width: 48em) {
}

/*flex_3D 3段 32%左右均等配置 スマホ時2段*/
.flex_3D{
	display: flex;
	flex-wrap: wrap;
	justify-content:space-between;
}
.flex_3D > div, .flex_3D > li , .flex_3D > section{
	width: 32%;
	margin: 0 0 10px 0;
	position: relative;
}

@media only screen and (max-width: 48em) {
.flex_3D > div, .flex_3D > li , .flex_3D > section{
	width: 49%;
	margin: 0 0 10px 0;
}
}



/* ===========txtBox=========== */
/*01 クチコミエリア*/
.textbox_01{
    margin: 0 0 20px 0;
    padding: 10px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
    background-color: #fff;
}
.textbox_01 div{
    width: 25%;
}
.textbox_01 p{
    width: 73%;
}

/*02 Jobtypeのリンクボックス*/
.textbox_02{
    align-items: center;    
    width: 90%;
    padding: 0 15px;
    margin: 70px/*15px→70px*/ auto 0;
    box-sizing: border-box;
	text-align: center;
    /*background: radial-gradient(#F2B9A1, #EA6264);*/
}
@media only screen and (max-width: 48em) {
.textbox_02{
	width: 100%;
    margin: 40px auto 0;
}
}

.textbox_03{
	margin: 0 0 5px 0;
    padding: 10px 0;
	font-size: 18px;
    text-align: center;
    font-weight: bold;
    border: solid 2px #f15fa8;
	color: #f15fa8;
}
.textbox_03 p{
	margin: 0 0 5px 0;
	font-size: 12px;
    text-align: center;
    font-weight: bold;
	color: #f15fa8;
}

/* leyout_2 ニュースインデックス用 */
.leyout_2{
	display: flex;
	flex-wrap: nowrap;
	background-color: #fff;
	margin-bottom: 30px;
	padding: 30px;
/*    border: 1px solid #c7bc97; */
    border-radius: 10px;
    box-shadow: 0 2px 8px -1px rgb(200 200 200 / 10%), 0 0 12px #c7bc97;
	}
.leyout_2 .leyout_2_img{
	width: 20%;
	margin: 0 30px 0 0;
	}
.leyout_2 .leyout_2_txt{
	width: 80%;
	}
.leyout_2 .leyout_2_txt span.leyout_2_cat{
	display: inline-block;
	margin-bottom: 10px;
	padding-bottom: 5px;
	border-bottom: solid 3px var(--color-blue-gray);
	font-weight: bold;
	font-size: 1.4rem;
    letter-spacing: 0.2rem;
	}

.leyout_2 .leyout_2_img_tate{
	width: 15%;
	margin: 0 70px 0 0;
	}

/* 480px */
@media only screen and (max-width: 30em) {
	.leyout_2{
		display: block;
		margin-bottom: 30px;
		padding: 30px;
		}
	.leyout_2 .leyout_2_img{
		width: 100%;
		margin: 0 0 20px 0;
		}
	.leyout_2 .leyout_2_txt{
		width: 100%;
		}

.leyout_2 .leyout_2_img_tate{
	width: 60%;
	margin: auto;
	}
}


/* ===========article=========== */

/* ===========section=========== */

/* ===========heading1=========== */
/*001*/
h1.heading1_001{

}



/* ===========heading2=========== */
/*001 メイン 背景Blue*/
h2.heading2_001{
    position: relative;
    margin: 0 0 50px 0;
    font-size: 48px;
    text-align: center;
    line-height: 1.4;
    color: #beae7d;
    font-family: "cinzel-decorative", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-shadow:0 0 15px #c7bc97; 
	}
h2.heading2_001 span{
    display: block;
    font-size: 18px;
    text-align: center;
    font-style: normal;
    font-weight: normal;
    font-family: YakuHanJP,"Noto Sans Japanese","メイリオ", "Meiryo", "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", sans-serif;
    letter-spacing: normal;
    margin: 10px 0 20px ;
	}
h2.heading2_001::after{
    content: "";
    display: block;
    position: absolute;
    /*bottom: 2px; */
    left: 0;
    right: 0;
    margin: 0 0 40px ;
    width: 100%;
    background:linear-gradient(transparent 75%, #beae7d 75%);
    z-index: -1;
    border-bottom: 2px solid #beae7d ;
}
/* 見出しにsvgロゴ */
h2.heading2_001 img{
	width: 200px;
	}
/* 768px */
@media only screen and (max-width: 48em) {
h2.heading2_001{
    margin: 0 0 30px 0;
    font-size: 36px;
	}
h2.heading2_001::after{
    /*height: 10px;
    bottom: -20px; */
	}
}
/* 480px */
@media only screen and (max-width: 30em) {
h2.heading2_001{
	}
}



/* ===========heading3=========== */
/* 001 背景帯 */
h3.heading3_001{
	position: relative;
	margin: 0 0 20px 0;
	padding: 10px 0;
	font-size: 18px;
    font-weight: normal;
	line-height: 1;
	text-align: center;
    color: #fff;
    background-color: #231815;
    background-image: url("../img/title_bg1_l.png"),url("../img/title_bg1_r.png");
    background-position: left center,right center;
    background-size: contain;
    background-repeat: no-repeat,no-repeat;
	}
h3.heading3_001 span{
	display: block;
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: normal;
	}
h3.heading3_001 span.h3_01icon{
    display: block;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    left: 60px;
    background-color: #4f9955;
    border-radius: 50%;
    padding: 8px 0 0 0;
    box-sizing: border-box;
    color: #000;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    transform: translateY(-10%);
}

/* 768px */
@media only screen and (max-width: 48em) {
h3.heading3_001{
	font-size: 16px;
	font-size: 1.6rem;
	}
}
/* 480px */
@media only screen and (max-width: 30em) {
h3.heading3_001 span.h3_01icon{
    left: 30px;
}
}


/* 002 サブに背景青 */
h3.heading3_002{
	position: relative;
	margin: 10px 0 10px 0;
	padding: 0;
	font-size: 28px;
    font-weight: bold;
    text-align: center;
    color: #beae7d;
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif" ;
	}
 h3.heading3_002 span{
    display: block;
    width: 100%;
	position: relative;
	margin: 0;
	padding: 0;
    line-height: 1;
	font-size: 14px;
    font-weight: bold;
   /* background-color: #4f9955; */
	}
/* 768px */
@media only screen and (max-width: 48em) {

}
/* 480px */
@media only screen and (max-width: 30em) {
h3.heading3_002{
	font-size: 18px;
	}
}   
    

/* ===========txt=========== */

/* 01=通常テキスト */
.txt_01{
	margin: 5px 0;
	font-size: 14px;
    letter-spacing: 1.2px;
    font-weight: normal;
    text-align: center;
	}
.txt_01 span{
	font-size: 12px;
	}    
    
.txt_01l{
	margin: 5px 0;
	font-size: 14px;
    letter-spacing: 1.2px;
    font-weight: normal;
    text-align: left;
	}
.txt_01l span{
	font-size: 12px;
	}  
    
.txt_01b{
	margin: 5px 0;
	font-size: 14px;
    letter-spacing: 1.2px;
    font-weight: bold;
    text-align: center;
	}
.txt_01b span{
	font-size: 12px;
	}  
    
/* 02=予約テキスト */
.txt_02{
	margin: 0 0 5px 0;
	font-size: 18px;
    text-align: center;
    font-weight: bold;
	border: #ff0000 2px solid;
	color: #ff0000;
	}
.txt_02.comingsoon{
	margin: 0 0 5px 0;
	font-size: 18px;
    text-align: center;
    font-weight: bold;
	border: #c0c0c0 2px solid;
	color: #c0c0c0;
	}
.txt_02.end{
	margin: 0 0 5px 0;
	font-size: 18px;
    text-align: center;
    font-weight: bold;
	background-color: #808080;
	border: #808080 2px solid;
	color: #ffffff;
	}
    
/* 768px */
@media only screen and (max-width: 48em) {
.txt_01{
	font-size: 12px;
	}
.txt_01l{
    text-align: center;
	}
}
.txt_01s{
	margin: 5px 0;
	font-size: 14px;
    letter-spacing: 1.2px;
    font-weight: normal;
    text-align: left;
	}

/* 03=約款用テキスト */

.privacy_box ul, ol{
  padding-left: 1em;
}
.privacy_box  li > ul, li > ol {
  padding-left: 1em;
}

.privacy_txt_01{
	margin: 5px 0;
	font-size: 14px;
    letter-spacing: normal;
    font-weight: bold;
    text-align: left;
	}
.privacy_txt_02{
	margin: 5px 0;
	font-size: 14px;
    letter-spacing: bold;
    font-weight: normal;
    text-align: left;
	}
/*
.privacy_box li{
 list-style: none;
} */


/* ===========leadTxt=========== */
/*01*/
.lead_txt_01{
	margin: 0 0 10px 0;
	font-size: 60px;
    text-align: center;
    color: #beae7d;
    font-family: "cinzel-decorative", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-shadow:0 0 15px #c7bc97; 
 /*     display: inline-block;
  margin:0 auto 5%;
  background: linear-gradient(90deg, #58c6ff 0%, #076ad9 40%, #ff3bef 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
	}

/* 768px */
@media only screen and (max-width: 48em) {
.lead_txt_01{
    font-size: 40px;
    line-height: 46px;
	}
}

/*02*/
.lead_txt_02{
	font-size: 22px;
    text-align: center;
/*    font-weight: bold; */
    line-height: normal;
	}
.lead_txt_02 span{
    font-weight: normal;
	font-size: 16px;
	}

/* 768px */
@media only screen and (max-width: 48em) {
.lead_txt_02{
	margin: 0 0 5px 0;
	font-size: 22px;
	}
.lead_txt_02 span{
	font-size: 14px;
	}
}

/*03 bold 通常文章の見出し等*/
.lead_txt_03{
	margin: 0 0 5px 0;
	font-size: 20px;
    text-align: center;
    font-weight: bold;
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif" ;
	}

/* 768px */
@media only screen and (max-width: 48em) {
.lead_txt_03{
	font-size: 16px;
	}
}
/*04*/
.lead_txt_04{
	margin: 0 0 5px 0;
	font-size: 39px;
    text-align: center;
	line-height: 1.5;
    letter-spacing: 2px;
    color: #beae7d;
    font-family: "cinzel-decorative", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-shadow:0 0 15px #c7bc97; 
}
.lead_txt_04 span{
	font-size: 35px;
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif" ;
}
/* 768px */
@media only screen and (max-width: 48em) {
.lead_txt_04{
	margin: 0 0 5px 0;
	font-size: 30px;
    line-height: 36px;
}
.lead_txt_04 span{
	font-size: 27px;
}
}
/*05*/
.lead_txt_05{
	margin: 0 0 5px 0;
	font-size: 48px;
    text-align: center;
    font-weight: bold;
	line-height: 1.5;
	margin-bottom: 50px;
}
/* 768px */
@media only screen and (max-width: 48em) {
.lead_txt_05{
	margin: 0 0 5px 0;
	font-size: 28px;
	margin-bottom: 0;
}
}


/* ===========figure=========== */
/* 001 JobType */
figure.figure_001{
	margin: 0 0 20px 0;
	}
figure.figure_001 img{
	margin: 0 0 10px 0;
	}
figure.figure_001 figcaption{
	text-align: left;
	font-size: 13px;
	}
figure.figure_001 figcaption strong{
	display: block;
	padding: 2px 10px;
	font-size: 12px;
	text-align: center;
	margin-bottom: 10px;
    border: solid 1px #000;
	}
figure.figure_001 figcaption span{
	font-weight: bold;
	display: block;
}


/* ===========a=========== */
a.a_01{
	text-decoration: underline;
}
a.a_01:hover{
	text-decoration: none;
}


/* ===========BTNsetting=========== */
a.btn_01{
	display: block;
	width: 100%;
    max-width: 300px;
    margin: 0 auto;
	font-size: 14px;
	padding: 15px 0;
	letter-spacing: 1.3px;
	line-height: 1;
	text-align: center;
    text-decoration: none;
	background-color: #00c300;
    border-radius: 10px;
	vertical-align: middle;
	color: #fff;
    /*	background-image: url(../svg/icon_btn_01.svg);*/
	background-image: url(../img/line_bt.png);
	background-repeat:no-repeat;
	background-position: right 10px center;
	/*background-size: 15px 30px; */
	transition: all 0.3s;
    cursor: pointer;
	}
a.btn_01:hover{
	background-position: right 3px center;
	}

a.btn_02{
	display: block;
	width: 100%;
    max-width: 300px;
    margin: 0 auto;
	font-size: 14px;
	padding: 15px 0;
	letter-spacing: 1.3px;
	line-height: 1;
	text-align: center;
    text-decoration: none;
	background-color: #000;
	vertical-align: middle;
	color: #fff;
    /*	background-image: url(../svg/icon_btn_02.svg);*/
	background-image: url(../img/line_bt.png);
    background-image:rotateZ(90deg);
	background-repeat:no-repeat;
	background-position: right 10px center;
    /*
	background-size: 30px 15px; */
	transition: all 0.1s;
    cursor: pointer;
	}
a.btn_02:hover{
	background-position: right 10px bottom 9px;
	}
    
a.btn_03{
	display: block;
	width: 100%;
    max-width: 300px;
    margin: 0 auto;
	font-size: 14px;
	padding: 15px 0;
	letter-spacing: 1.3px;
	line-height: 1;
	text-align: center;
    text-decoration: none;
	background-color: #000;
	vertical-align: middle;
	color: #fff;
    background-image: url(../svg/icon_btn_01.svg);
	background-repeat:no-repeat;
	background-position: right 10px center;
	background-size: 15px 30px;
	transition: all 0.3s;
    cursor: pointer;
    border-radius:10px;
	}
a.btn_03:hover{
	background-position: right 3px center;
	}

.line_white{
position: absolute;
float: left;
margin-left:5px;
}
.line_white img{
 width: 30px;
}

a.btn_04{
	display: block;
	width: 100%;
    max-width: 300px;
    margin: 0 auto;
	font-size: 14px;
	padding: 15px 0;
	letter-spacing: 1.3px;
	line-height: 1;
	text-align: center;
    text-decoration: none;
	background-color: #c1b180;
	vertical-align: middle;
	color: #fff;
    /*	background-image: url(../svg/icon_btn_02.svg);*/
	background-image: url(../img/twitter_bt.png);
    background-image:rotateZ(90deg);
	background-repeat:no-repeat;
	background-position: right 10px center;
    /*
	background-size: 30px 15px; */
	transition: all 0.1s;
    cursor: pointer;
	}
a.btn_04:hover{
	background-position: right 10px bottom 9px;
	}



/* =====================UL TXT LIST===================== */
/* txt_list_01 リスト前にチェックボックス */
ul.txt_list_01{
	line-height: 1.8;
	list-style-type: none;
	text-align: center;
}
ul.txt_list_01 li{
	position: relative;
	padding-left: 25px;
	display: inline-block;
	font-size: 24px;
	font-size: 2.4rem;
	font-weight: bold;
}
ul.txt_list_01 li:before {
	content: "";
	position: absolute;
	width: 7px;
	height: 18px;
	top: 5px;
	left: 8px;
	-webkit-transform: rotate(50deg);
	-ms-transform: rotate(50deg);
	transform: rotate(50deg);
	border-right: 2px solid #000000;
	border-bottom: 2px solid #000000;
}
ul.txt_list_01 li:after {
	content: "";
	position: absolute;
	top: 13px;
	left: 0;
	width: 15px;
	height: 15px;
	border: 1px solid #000000;
	border-radius: 2px;
}
ul.txt_list_01 li+li {
	margin-top: 5px;
}

/* txt_list_02 リスト前に# */
ul.txt_list_02{
	line-height: 1.8;
	list-style-type: none;
	text-align: center;
}
ul.txt_list_02 li{
	position: relative;
	padding-left: 25px;
	display: inline-block;
	font-size: 24px;
	font-size: 2.4rem;
	font-weight: bold;
	margin-right: 10px;
}
ul.txt_list_02 li:before {
	content: "#";
}

/* 480px */
@media only screen and (max-width: 30em) {
ul.txt_list_01{
	text-align: left;
}
ul.txt_list_01 li{
	padding-left: 20px;
	font-size: 14px;
	font-size: 1.4rem;
}
ul.txt_list_01 li:before {
	content: "";
	position: absolute;
	width: 5px;
	height: 12px;
	top: 2px;
	left: 6px;
	-webkit-transform: rotate(50deg);
	-ms-transform: rotate(50deg);
	transform: rotate(50deg);
	border-right: 2px solid #000000;
	border-bottom: 2px solid #000000;
}
ul.txt_list_01 li:after {
	content: "";
	position: absolute;
	top: 7px;
	left: 0;
	width: 10px;
	height: 10px;
	border: 1px solid #000000;
	border-radius: 2px;
}
ul.txt_list_02 li{
	padding-left: 0;
	font-size: 14px;
	font-size: 1.4rem;
}
}

/* =====================UL INDEX LIST===================== */
/*  */
ul.index_list_01{

	}





/* =====================OL SLIDER LIST===================== */
/* Ordered List */
/* 01募集要項 */
ol.ordered_list_01{
    list-style: none;
}
ol.ordered_list_01 li{

}


/* =====================Definition List===================== */
dl.definition_list_01{
	}
dl.definition_list_01 dt{
    font-size: 14px;
    font-weight: bold;
	}
dl.definition_list_01 dd{
    font-size: 14px;
    margin: 0 0 20px 0;
	}

/* ===========アコーディオン用=========== */
dl.definition_list_06{
	}
dl.definition_list_06 dt{
    position: relative;
	display:block;
	margin:0 0 5px 0;
	padding:10px 0;
	font-size:16px;
	font-size:1.6rem;
    font-weight: bold;
	letter-spacing:1.2px;
	transition:all 0.6s;
    text-align: center;
	cursor:pointer;
	background-color:#fff100;
	}
dl.definition_list_06 dt::before{
    position: absolute;
    right: 5px;
    top: 0;
    bottom: 0;
    height: 5px;
    margin: auto;
	content:"▼";
    display: block;
    line-height: 0;
	}
dl.definition_list_06 dt.isshow::before{
	content:"▲" !important;
	}
dl.definition_list_06 dt.isshow{
	border:none !important;
	}
dl.definition_list_06 dt:hover{
	background-color:#fff100;
	}
dl.definition_list_06 dd{
	margin:0 0 1% 0;
	padding:0;
	font-size:14px;
	font-size:1.4rem;
	letter-spacing:0.6px;
	}




/* =====================image_box setting===================== */

/* 画像が3つ、1つめだけ100%、2と3は50%*/
.imagebox_1 img{
    outline: solid #fff 3px;
    margin: 0;
    padding: 0;
    line-height: 0;
}
.imagebox_1 img:first-child{
    width: 100%;
}
.imagebox_1 img:nth-child(2),.imagebox_1 img:nth-child(3){
    width: 50%;
}


/* 画像の右に説明文字 */
.imagebox_2{

}
.imagebox_2 img{
    display: inline-block;
    width: 40%;
    margin: 0 10px 0 0;
}
.imagebox_2 p{
    display: inline-block;
    vertical-align: top;
    width: 50%;
}

/* 画像2つ　横並び　50% スタッフ紹介の画像部分*/
.imagebox_3{
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
    justify-content: space-between;
}
.imagebox_3 div{
    display: block;
    width: 48%;
}
.imagebox_3 div img{
    width: 100%;
}

/* LifeTimeHappiness */
.imagebox_4{
    max-width: 320px;
    margin: 0 auto;
}
.imagebox_4 img{
    width: 80%;
}
/* 480px */
@media only screen and (max-width: 30em) {
.imagebox_4{
    max-width: 80%;
}
}

/* 背景に画像 */
.imagebox_5{
    display: flex;
	position: relative;
    align-items: flex-start;
    flex-wrap: nowrap;
    justify-content: space-between;
	background-repeat:no-repeat;
	background-size:cover;
	height: 300px;
}
.imagebox_5 p{
	position: absolute;
	color: #fff;
	font-size: 28px;
	font-weight: bold;
	margin: auto;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	text-align: center;
	line-height: 1.2;
	width: 100%;
}
.imagebox_5 p span{
	font-size: 14px;
}
.imagebox_5:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.5);
  }
.imagebox_5.image_hotel { background-image: url("../../img/event_01.jpg"); }
.imagebox_5.image_wedding { background-image: url("../../img/event_02.jpg"); }
.imagebox_5.image_dress { background-image: url("../../img/event_03.jpg"); }
.imagebox_5.image_food { background-image: url("../../img/event_04.jpg"); }
.imagebox_5.image_realestate { background-image: url("../../img/event_05.jpg"); }
.imagebox_5.image_movie { background-image: url("../../img/event_06.jpg"); }
  /* 768px */
@media only screen and (max-width: 48em) {
.imagebox_5 p{
	font-size: 24px;
}
.imagebox_5{
	height: 170px;
}
}

/* HAPPINESS+FESTA */
.imagebox_6{
	width: 100%;
}
.imagebox_6 img{
    width: 100%;
}
/* 480px */
@media only screen and (max-width: 30em) {
.imagebox_6{
    width: 80% !important;
}
}


/* =====================split box===================== */
/* split_box_list PC=ホバー　SP=クリック　で文字領域出現 */
ul.split_box_list{
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	justify-content: center;
	}
ul.split_box_list li.split_box{
	position: relative;
	width: calc(100%/3 - 20px);
	margin: 0 10px 20px 10px;
	}
.split_box::after{
	position: absolute;
	top: 0; left: 0;
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.6);
	z-index: 3;
	opacity: 0;
	transition: all 0.3s;
}

/*img*/
.split_box .split_box_img{
	position: relative;
	padding-top: 100%;
	cursor: pointer;
	transition: all 0.3s;
}
.split_box .split_box_img img{
	position: absolute;
	top: 0; bottom: 0; left: 0; right: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform:scale(1);
	transition: all 0.3s;
}
.split_box .split_box_img h3{
	position: absolute;
	top: 0; bottom: 0; left: 0; right: 0;
	width: 100%; height:30px;
	text-align: center;
    margin: auto;
    font-size: 1.6rem;
    line-height: 1.3;
    color: #FFF;
    font-weight: bold;
    letter-spacing: 2px;
    font-family: 'Roboto Condensed', sans-serif;
    text-shadow: 0 0 40px #000;
}
/*txt*/
.split_box .split_box_txt{
	display: none;
	position: absolute;
	top: 0; bottom: 0; left: 0; right: 0;
	width: 100%;
	height: 100%;
	padding: 10px;
	color: #fff;
	box-sizing: border-box;
	text-align: center;
	z-index: 4;
}
.split_box .split_box_txt p{
	font-size: 1.4rem;
}
/* hover - over - 480px */
@media only screen and (min-width: 30em) {
	/* hover */
	.split_box:hover::after{
		opacity: 1;
	}
	.split_box:hover .split_box_txt{
		display: flex;
		justify-content: center;
		align-items: center;
	}
}

/* 480px */
@media only screen and (max-width: 30em) {
ul.split_box_list li.split_box{
	position: relative;
	width: 100%;/* calc(50% - 20px) */
	margin: 0 10px 20px 10px;
	}
	.split_box::after{
		display: none;
	}
	.split_box .split_box_txt{
		display: none;
		position: static;
		align-items: flex-start;
		width: 100%;
		height: auto;
		padding: 10px 0;
		color: #000;
	}
}

/* split_box_leyout_type1 */

/*img_type1*/
div.split_box_img.split_img_type1{
}
div.split_box_img.split_img_type1 h3{
	font-size: 30px;
}
div.split_box_img.split_img_type1 h3 span{
	display: block;
	font-size: 12px;
}
/*txt_type1*/
div.split_box_txt.split_txt_type1{
}
div.split_box_txt.split_txt_type1 p{
	font-size: 11px;
	line-height: 2.5;
}
div.split_box_txt.split_txt_type1 p strong{
	display: block;
	font-size: 20px;
	line-height: 2.5;
}
div.split_box_txt.split_txt_type1 p a{
	display: block;
	margin: 10px auto 0 auto;
	text-decoration: none;
	width: 150px;
	height: 30px;
	background-color: #fff;
	border: solid 1px #fff;
}
/* 480px */
@media only screen and (max-width: 30em) {
	div.split_box_img.split_img_type1 h3{
		font-size: 20px;
	}
	div.split_box_txt.split_txt_type1 p{
		font-size: 11px;
		line-height: 1.8;
	}
	div.split_box_txt.split_txt_type1 p strong{
		display: block;
		font-size: 15px;
	}
	div.split_box_txt.split_txt_type1 p a{
		display: block;
		margin: 10px auto 0 auto;
        padding: 10px 0 10px;    
		text-decoration: none;
		width: auto;
		background-color: #000;
		color: #fff;
		font-size: 12px;
		line-height: 2.5;
	}
}

/* split_box_leyout_type2 */
/*img_type2*/
div.split_box_img.split_img_type2{
	position: relative;
}
div.split_box_img.split_img_type2::after{
	position: absolute;
	top: 0; left: 0;
	display: block;
	content: "";
	width: 100%; height: 100%;
	background-color: rgba(0,0,0,0.3);
	z-index: 2;
}
div.split_box_img.split_img_type2 h3{
	position: absolute;
	bottom: 10px; top: auto;
	left: 0; right: 0;
	width: 80%;
	margin: auto;
	padding: 0;
	font-size: 11px;
	letter-spacing: 1px;
	line-height: 2.6;
	border: solid 1px #fff;
	z-index: 3;
}
div.split_box_img.split_img_type2 img.logo{
	display: block;
	width: 100%;
	padding: 20px;
	box-sizing: border-box;
    z-index: 3;
}
/*txt_type2*/
div.split_box_txt.split_txt_type2{
}
div.split_box_txt.split_txt_type2 p{
	font-size: 11px;
}
div.split_box_txt.split_txt_type2 p strong{
	display: block;
	font-size: 16px;
}
div.split_box_txt.split_txt_type2 p span{
	display: block;
	font-size: 11px;
}
div.split_box_txt.split_txt_type2 p img{
	position: relative;
	width: 80%;
	margin: 10px 0;
}
div.split_box_txt.split_txt_type2 p a{
	display: block;
	margin: 10px auto 0 auto;
	text-decoration: none;
	width: 150px;
	line-height: 2.4;
	background-color: #fff;
	border: solid 1px #fff;
}
/* 480px */
@media only screen and (max-width: 30em) {
	/*img_type2*/
	div.split_box_img.split_img_type2 h3{
		display: none;
	}
	div.split_box_txt.split_txt_type2 p a{
		display: block;
		margin: 10px auto 0 auto;
        padding: 10px 0 10px;
		text-decoration: none;
		width: auto;
		background-color: #000;
		color: #fff;
		font-size: 12px;
		line-height: 2.5;
	}
	/*txt_type2*/
	div.split_box_txt.split_txt_type2 p strong{
		font-size: 12px;
	}
	div.split_box_txt.split_txt_type2 p span{
		font-size: 10px;
	}
}


/* =====================BRAND LOGO ===================== */
article.brand_logo_arti{
	}

@media only screen and (min-width: 30em) {
/* 見出し */
article.brand_logo_arti h3.heading3_002{
	margin:0 0 0 0;
	font-size:16px;
	}
}
	
/* 半分 */
article.brand_logo_arti.logo_arti_harf{
	float:left;
	width:50%;
	}
/* デフォルト背景白 */
section.brand_logo_sect{
	padding:20px 20px;
	background-color:#faf8f3;
	}
/* 背景色変更 */
article.brand_logo_arti.logo_bg01 section.brand_logo_sect{
	margin:0 0 1% 0;
	background-color:#faf8f3;
	}
ul.brand_logo_list{
	list-style:none;
	text-align:center;
	}
ul.brand_logo_list li{
	display:inline-block;
	position:relative;
	width:19%;
	margin-right:8%;
	margin-bottom:3%;
	text-align:center;
	margin:0 auto;
	}
	
.in_content_area ul.brand_logo_list li{
	border:solid 1px #c5c1bf;
	margin-bottom:5px;
	}
/* 半分 */
article.brand_logo_arti.logo_arti_harf ul.brand_logo_list li{
	width:50%;
	}
ul.brand_logo_list li:nth-child(4n){
	margin-right:0%;
	}
ul.brand_logo_list li:hover{
	background-color:#faf8f3;
	transition:0.6s;
	}
/* 768px */
@media only screen and (max-width: 48em) {
ul.brand_logo_list li{
	width:24%;
	}
ul.brand_logo_list li:nth-child(4n){margin-right:2%;}
ul.brand_logo_list li:nth-child(2n){margin-right:0%;}

article.brand_logo_arti.logo_arti_harf{
	float:none;
	width:100%;
	}
article.brand_logo_arti.logo_arti_harf ul.brand_logo_list li{
	width:24%;
	}
}
/* 480px */
@media only screen and (max-width: 30em) {
ul.brand_logo_list li{
	width:48%;
	}
ul.brand_logo_list li:nth-child(4n){margin-right:2%;}
ul.brand_logo_list li:nth-child(2n){margin-right:0%;}

article.brand_logo_arti.logo_arti_harf{
	float:none;
	width:100%;
	}
article.brand_logo_arti.logo_arti_harf ul.brand_logo_list li{
	width:48%;
	}
}

/* hover_effect01 */
.hover_effect01:after,
.hover_effect01:before,
.hover_effect01_inner:after,
.hover_effect01_inner:before {
    background-color: #d8d6d5;
    content: '';
    display: block;
    position: absolute;
    z-index: 10;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.hover_effect01:after {
    height: 1px;
    left: -1px;
    top: -1px;
    width: 0px;
}
.hover_effect01:before {
    bottom: -1px;
    height: 1px;
    right: -1px;
    width: 0px;
}
.hover_effect01_inner:after {
    bottom: -1px;
    height: 0px;
    left: -1px;
    width: 1px;
}
.hover_effect01_inner:before {
    height: 0px;
    right: -1px;
    top: -1px;
    width: 1px;
}
/* hover */
.hover_effect01:hover:after,
.hover_effect01:hover:before {
    width: 100%;
    width: calc(100% + 1px);
}
.hover_effect01:hover .hover_effect01_inner:after,
.hover_effect01:hover .hover_effect01_inner:before {
    height: 100%;
    height: calc(100% + 1px);
}
/* hover_effect01 */




/* ===================== SNS固定 ===================== */
.sns_box{
	position: fixed;
    top: 120px;
    right: 30px;
    height: 80px;
    width: 80px;
    cursor: pointer;
    z-index: 3;
	background: linear-gradient(90deg, rgb(230, 0, 46), rgb(190, 1, 165));
	box-shadow: 1px 1px 5px rgb(0 0 0 / 20%);
	border-radius: 50%;
}
.sns_label {
    font-size: 12px;
    color: #ffffff;
	text-align: center;
	padding-top: 10px;	
}
.sns_box a svg {
    fill: #ffffff;
    display: inline-block;
}
/* 480px */
@media only screen and (max-width: 30em) {
.sns_box{
	position: fixed;
	top: 100px;
	right: 10px;
	height: 80px;
	width: 80px;
	cursor: pointer;
}
}

    
a.btn_03{
	display: block;
	width: 100%;
    max-width: 500px;
    margin: 0 auto;
	font-size: 14px;
	padding: 30px 0;
	letter-spacing: 1.3px;
	line-height: 1;
	text-align: center;
    text-decoration: none;
	background-color: #4f9955;
	vertical-align: middle;
	color: #fff;
    background-image: url(../svg/icon_btn_01.svg);
	background-repeat:no-repeat;
	background-position: right 10px center;
	background-size: 15px 30px;
	transition: all 0.3s;
    cursor: pointer;
	box-shadow: 1px 1px 5px rgb(0 0 0 / 20%)
	}
/* 480px */
@media only screen and (max-width: 30em) {
.btn_03{
	max-width: 95% !important;
}
}
a.btn_03:hover{
	background-position: right 3px center;
	}

.line_white{
position: absolute;
float: left;
margin-left:5px;
}
.line_white img{
 width: 30px;
}


.button {
width: 300px;
padding: 20px 10px;
display: block;
margin: auto;
text-decoration: none;
}

a.button {
text-decoration: none;
}

.button:hover {
  box-shadow    : none;        /* カーソル時の影消去 */
  color         : #000066;     /* 背景色     */
  background    : #ffffff;     /* 文字色     */
}


/* ===================== INSTAGRAM ===================== */
.instagram_area{
	text-align: center;
	width: 100%;
}
.instagram_area a {
	display: block;
	font-size: 28px;
	font-weight: bold;
	color: #fff;
	background: linear-gradient(90deg, rgb(230, 0, 46), rgb(190, 1, 165));
	padding: 15px;
	margin: auto;
	line-height: 1.5;
	text-decoration: none;
	border: #e6002e 2px solid;
	transition: all 0.3s;
	box-shadow: 1px 1px 5px rgb(0 0 0 / 20%);
}
.instagram_area a span{
	font-size: 21px;
	display: block;
}
.instagram_area a svg {
    fill: #ffffff;
    display: inline-block;
}
.instagram_area a:hover{
	color: #e6002e;
	background: #fbf8f3;
	border: #e6002e 2px solid;
	transition: all 0.3s;
}
/* 480px */
@media only screen and (max-width: 30em) {
.instagram_area{
	width: 80%;
}
.instagram_area a {
	font-size: 18px;
	border: none;
}
.instagram_area a span{
	font-size: 16px;
}
}



/* ===================== YouTube ===================== */
.post_movie-outer {
    max-width: 1024px;
    margin: 50px auto;
    position: relative;
    overflow: hidden;
    transition-timing-function: linear;
    transition-duration: 0.15s;
    transition-property: opacity;
}
.movie-wrap {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}
.movie-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* CSSアニメーションの指定 */

.fade01 {
  opacity: 0;
  animation: 3s fadeIn forwards;
  animation-iteration-count: 1;/* 1回 */
}
.sample01.fadeIn.is-animated {
  animation: fadeOut 0.6s forwards;/* なめらかに */
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}



.Headline{
  animation: SlideIn 1.6s;
}
@keyframes SlideIn {
  0% {
    opacity: 0;
    transform: translateY(64px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ============================■■共通CLASS■■============================ */
/* clearfix */
.clearfix::after {
  display: block;
  visibility: hidden; 
  clear: both;
  height: 0;
  content: "";
}


/* ===========bgColor=========== */
.bg_color1{
	background-color: #fffbf3;
}


/* =========== flexSetting =========== */
/*flex-direction*/
.row-reverse{flex-direction: row-reverse !important;}
.column{flex-direction: column !important;}
.column-reverse{flex-direction: column-reverse !important;}



/* =========== br =========== */
/* 768px */
@media only screen and (max-width: 48em) {
br.erase768{
	display:none;
	}
}

/* 480px */
@media only screen and (max-width: 30em) {
br.erase480{
	display:none;
	}
}

/* =========== color =========== */
.white{ color:white !important;}

.red{color: red !important;}

/* =========== marker =========== */
.marker {
	background:linear-gradient(transparent 75%, #ff0000 75%);
}

.new01{
display: block;
padding: 0 10px;
margin: auto;
background-color:#ff0000;
font-size: 28px;
text-align: center;
line-height: 1.5;
font-weight: 100;
letter-spacing: 2px;
color: #fff;
font-family: 'Kanit', sans-serif;
}
.new01_box{
padding: 20px;
border: 3px solid #beae7d;
}

.new02{
  padding: 0.5rem 1rem;
  font-size: 28px;
  text-align: center;
  font-weight: 100;
  letter-spacing: 2px;
  font-family: 'Kanit', sans-serif , "Noto Sans Japanese";
  color: #fff;
  background-image: -webkit-gradient(linear, left top, right top, from(#fa709a), to(#fee140));
  background-image: -webkit-linear-gradient(left, #fa709a 0%, #fee140 100%);
  background-image: linear-gradient(to right, #fa709a 0%, #fee140 100%);
}

/* 480px */
@media only screen and (max-width: 30em) {
.new01{
width: 95%;
font-size: 20px;
	}
.new01_box{
padding: 10px;
border: 3px solid #ff0000;
}
.new02{
  font-size: 20px;
  padding: 0.3rem 1rem;
}

}

/* =========== キラキラグラデ =========== */
.silver{
 background: linear-gradient(45deg, #757575 0%, #9E9E9E 45%, #E8E8E8 70%, #9E9E9E 85%, #757575 90% 100%);
   background-size: 800% 400%;
  animation: gradient 5s infinite cubic-bezier(.62, .28, .23, .99) both;
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}
.matgold{
  background: linear-gradient(45deg, #c0b283 0%, #c0b283 45%, #FEE9A0 70%, #c0b283 85%, #c0b283 90% 100%);
  background-size: 800% 400%;
  animation: gradient 10s infinite cubic-bezier(.62, .28, .23, .99) both;
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}
/* =========== キラキラグラデ =========== */

/* =========== arrow =========== */
.arrow1{
  width: 30px;
  height: 30px;
  border: 2px solid;
  border-color:  transparent transparent #000 #000;
  transform: rotate(-45deg);
  margin: auto;
}

/* =========== limit =========== */
.limited{width:96%; margin:0 auto;}
@media only screen and (max-width: 48em) {
.limited{width:95%; margin:0 auto;}
}

.limit1600{max-width:1600px; margin:0 auto;}
.limit1400{max-width:1400px; margin:0 auto;}
.limit1200{max-width:1200px; margin:0 auto;}
.limit1050{max-width:1050px; margin:0 auto;}
.limit1024{max-width:1024px; margin:0 auto;}
.limit960{max-width:960px; margin:0 auto;}
.limit768{max-width:768px; margin:0 auto;}
.limit480{max-width:480px; margin:0 auto;}
.limit320{max-width:320px; margin:0 auto;}
.limit200{max-width:200px; margin:0 auto;}

/* ========== marginBottom ========== */
.mb0{ margin-bottom:0 !important; }
.mb5{ margin-bottom:5px !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; }
.mb60{ margin-bottom:60px !important; }
.mb70{ margin-bottom:70px !important; }
.mb80{ margin-bottom:80px !important; }
.mb90{ margin-bottom:90px !important; }
.mb100{ margin-bottom:100px !important; }

@media only screen and (max-width: 48em) {
.mb10_test{ margin-bottom:15px !important; }
}

/* ========== marginBottomParcent ========== */
.mb0p{ margin-bottom:0 !important; }
.mb01p{ margin-bottom:1% !important; }
.mb02p{ margin-bottom:2% !important; }
.mb03p{ margin-bottom:3% !important; }
.mb05p{ margin-bottom:5% !important; }
.mb10p{ margin-bottom:10% !important; }
.mb15p{ margin-bottom:15% !important; }
.mb20p{ margin-bottom:20% !important; }
.mb30p{ margin-bottom:30% !important; }
.mb40p{ margin-bottom:40% !important; }
.mb50p{ margin-bottom:50% !important; }
.mb60p{ margin-bottom:60% !important; }
.mb70p{ margin-bottom:70% !important; }
.mb80p{ margin-bottom:80% !important; }
.mb90p{ margin-bottom:90% !important; }
.mb100p{ margin-bottom:100% !important; }


/* ========== paddingTop&BottomParcent ========== */
.pdtb0p{ padding-top:0%!important; padding-bottom:0%!important; }
.pdtb01p{padding-top:1%!important; padding-bottom:1%!important;}
.pdtb02p{padding-top:2%!important; padding-bottom:2%!important;}
.pdtb03p{padding-top:3%!important; padding-bottom:3%!important;}
.pdtb05p{padding-top:5%!important; padding-bottom:5%!important;}
.pdtb10p{padding-top:10%!important; padding-bottom:10%!important;}
.pdtb15p{padding-top:15%!important; padding-bottom:15%!important;}
.pdtb20p{padding-top:20%!important; padding-bottom:20%!important;}
.pdtb30p{padding-top:30%!important; padding-bottom:30%!important;}
.pdtb40p{padding-top:40%!important; padding-bottom:40%!important;}
.pdtb50p{padding-top:50%!important; padding-bottom:50%!important;}
.pdtb60p{padding-top:60%!important; padding-bottom:60%!important;}
.pdtb70p{padding-top:70%!important; padding-bottom:70%!important;}
.pdtb80p{padding-top:80%!important; padding-bottom:80%!important;}
.pdtb90p{padding-top:90%!important; padding-bottom:90%!important;}
.pdtb100p{padding-top:100%!important; padding-bottom:100%!important;}


/* ========== txt-align ========== */
.txt_left{text-align:left !important;}
.txt_center{text-align:center !important;}
.txt_right{text-align:right !important;}
.txt_just{text-align:justify !important;}

/* スマホ時のみ */
/* 768px */
@media only screen and (max-width: 48em) {
.txt_left_768{text-align:left !important;}
}


/* ========== width ========== */
.wd100{width: 100%!important;}

/* ========== br ========== */
/*本文 スマホ時のみbr有り*/
br.mb_show{
	display: none;
}
/*本文 PC時のみbr有り*/
br.pc_show{
	display: block;
}
/* 768px */
@media only screen and (max-width: 48em) {
br.del768{ display:none;}
/*本文 スマホ時のみbr有り*/
br.mb_show{
	display: block !important;
}
br.pc_show{
	display: none !important;
}
}

/* 下からふわっとアニメーション設定 */
.animation {
  opacity: 0;
  transform: translate3d(0, 50px, 0);
}
.animation.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: 0.8s;
}


/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
 .pc { display: none !important; }
 .sp { display: block !important; }
}


/* ============================■■共通CLASS■■============================ */

/* ●↑汎用スタイル */



/* ======================parts====================== */

/* 1400px */
@media only screen and (max-width: 87.5em) {
}
/* 1200px */
@media only screen and (max-width: 75em) {
}
/* 1024px */
@media only screen and (max-width: 64em) {
}
/* 960px */
@media only screen and (max-width: 60em) {
}
/* 768px */
@media only screen and (max-width: 48em) {
}
/* 720px */
@media only screen and (max-width: 45em) {
}
/* 600px */
@media only screen and (max-width: 37.5em) {
}
/* 480px */
@media only screen and (max-width: 30em) {
}
/* 320px */
@media only screen and (max-width: 20em) {
}