@charset "UTF-8";

/* --------------------------------
 * base
 * -------------------------------- */
html{
    font-size: 62.5%;
}

html :where(img){
	max-width: auto !important;
}

body{
    background-color: #fff;
    color: #353535;
    font-size: 1.2rem;
    font-family: "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

*, *::before, *::after{
    box-sizing: border-box;
}

a:link, a:visited, a:hover, a:active {
	color: #fff;
    text-decoration: none;
}

.about-area01, .about-area02, .about-area03, .about-area04, .about-area05, .about-area06, .about-area07, .about-area08{
	max-width: 900px;
	margin: 0 auto;
	padding: 100px 20px;
}

@media screen and (max-width: 600px){
	.about-area01, .about-area02, .about-area03, .about-area04, .about-area05, .about-area06, .about-area07, .about-area08{
		padding: 50px 20px;
	}
}

/* --------------------------------
 * header
 * -------------------------------- */
header .tel{
	position: fixed;
	top: 25px;
	right: 345px;
	z-index: 9996;
	font-size: 2.5rem;
	font-weight: bold;
	color: #353535;
	transition: ease .2s;
}

header .tel:hover{
	opacity: 0.8;
}

header .tel i{
	margin-right: 5px;
}

header .btn{
	position: fixed;
	top: 12px;
	right: 90px;
	z-index: 9996;
	margin: 0;
	width: 230px;
}

/* 全体調整CSS */
.hamburger-demo-menubox li{
	font-size: 14px;
}
/* hamburgerここから */
	/* inputを非表示 */
.input-hidden{
	display: none;
}
	/* label */
.hamburger-demo-switch{
	cursor: pointer;
	position: fixed;
	right: 0;
	top: 0; /* ハンバーガーアイコンの位置（上から） */
	z-index: 9999;
	width: 4em; /* アイコン（クリック可能領域）の幅 */
	height: 4em; /* アイコン（クリック可能領域の）高さ */
	background: #353535;
}
/* メニュー展開時にハンバーガーアイコンを固定 */
#hamburger-demo1:checked ~ .hamburger-demo-switch{
	position: fixed;
}
/* ハンバーガーアイコン */
.hamburger-switch-line1, .hamburger-switch-line1:before, .hamburger-switch-line1:after{
	width: 25px;
	height: 3px;
	background: #fff; /* ハンバーガーアイコンの色 */
	position: absolute;
	top: 50%;
	left: 50%;
	transition: .3s;
	content: "";
}
.hamburger-switch-line1{
		transform: translate(-50%, -50%);
}
.hamburger-switch-line1:before{
	transform: translate(-50%, -300%);
}
.hamburger-switch-line1:after{
	transform: translate(-50%, 200%);
}
/* ハンバーガーアイコン･アニメーション */
#hamburger-demo1:checked ~ .hamburger-demo-switch .hamburger-switch-line1{
	width: 0;
}
#hamburger-demo1:checked ~ .hamburger-demo-switch .hamburger-switch-line1:before{
	transform: rotate(45deg) translate(-40%, 325%);
}
#hamburger-demo1:checked ~ .hamburger-demo-switch .hamburger-switch-line1:after{
	transform: rotate(-45deg) translate(-40%, -325%);
}
/* メニューエリア */
.hamburger-demo-menuwrap{
	position: fixed;
	height: 100%;
	background: #353535; /* メニューエリアの背景色 */
	padding: 5em 0% 2em;
	z-index: 9998;
	transition: .5s;
	overflow-y: scroll; /* メニュー内容が多い場合に縦スクロールする */
	top: 0;
	left: 100%;
	width: 70%;
}
/* メニューリスト */
.hamburger-demo-menulist{
	margin-right: 3%;
	padding-left: 5% !important; /* !important不要な場合もあり */
	list-style: none;
}
.hamburger-demo-menulist li a{
	text-decoration: none;
	color: #fff; /* メニューリストの文字色 */
	display: block;
	padding: 1em 0;
}
/* メニューエリア･アニメーション */
	/* 右から */
#hamburger-demo1:checked ~ .hamburger-demo-menuwrap{
	left: 80%;
}
	/* コンテンツカバー */
#hamburger-demo1:checked ~ .hamburger-demo-cover{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 9997;
	display: block;
}

@media screen and (max-width: 600px){
	header .tel, header .btn{
		display: none;
	}
	
	.hamburger-demo-menuwrap{
		width: 100%;
	}
	
	#hamburger-demo1:checked ~ .hamburger-demo-menuwrap{
		left: 50%;
	}
}


/* --------------------------------
 * ボタン
 * -------------------------------- */
.btn{
    /*ボタンの形状*/
	text-decoration: none;
	display: block;
	font-size: 1.5rem;
	letter-spacing: 0.05em;
	width: 230px;
	background:#ff6c9a; 
	color:#fff;
	margin: 50px auto 0;
    padding: 15px 40px 15px 30px; 
	border-radius:25px;
    text-align: center;
    outline: none;
	border: none;
    /*アニメーションの指定*/
    transition: ease .2s;
}

.btn:hover{
	opacity: 0.8;
}

@media screen and (max-width: 600px){
	.btn{
		margin-top: 20px;
	}
}

/* --------------------------------
 * ファーストビュー
 * -------------------------------- */
#top{
	position:relative;
}

.top-img{
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
}

.top-img img {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
}

.about-area01 .flex-top {
	position: absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
 	display: flex;
 	justify-content: space-between;
	width:-moz-fit-content;
  	width:fit-content;
}

.about-area01 .item-top{
	width: 50%;
	padding: 30px;
}

.about-area01 .item-top img{
	width: 30vw;
	filter: drop-shadow(5px 5px 5px #aaa);
}

.about-area01 .top-text{
	font-size: 1.4vw;
	font-weight: bold;
	line-height: 1.5;
	margin-top: 20px;
}

.about-area01{
	padding: 0;
}

.about-area01 .item-top .sp{
	display: none;
}

@media screen and (max-width: 600px) {
	#top {
		background: url("../image/top-img.jpg");
		background-position: center;
		background-size: cover;
		width: 100%;
		height: 80vh;
	}
	
	.top-img{
		display: none;
	}
	
	.about-area01 .flex-top{
		display: block;
	}
	
	.about-area01 .item-top{
		width: 100%;
	}
	
	.about-area01 .item-top img{
	width: 80vw;
}
	
	.about-area01 .top-text{
		font-size: 3.7vw;
		margin-top: 10px;
	}
	
	.about-area01 .item-top:nth-of-type(2){
		display: none;
	}
	
	.about-area01 .item-top .pc{
		display: none;
	}
	
	.about-area01 .item-top .sp{
		display: inline-block;
	}
}


/* --------------------------------
 * ラクをしてイベント発注！！
 * -------------------------------- */
.about-area02 .item{
	width: 50%;
}

.about-area02 .flex{
	display: flex;
 	justify-content: space-between;
}

.about-area02 .title-img{
	width: 80%;
}

.about-area02 p{
	font-size: 1.5rem;
	line-height: 1.7;
	margin-top: 20px;
	padding-right: 60px;
}

.about-area02 .illust{
	width: 100%;
}

@media screen and (max-width: 1000px) {
	.about-area02 p{
		padding-right: 30px;
	}
}

@media screen and (max-width: 600px){
	.about-area02 .flex{
		display: block;
	}
	
	.about-area02 .item{
		width: 100%;
	}
	
	.about-area02 .title-img{
		display: block;
		margin: 0 auto;
	}
	
	.about-area02 p{
		padding-right: 0;
		padding-bottom: 20px;
	}
}

/* --------------------------------
 * 実施例
 * -------------------------------- */
.back03{
	width: 100%;
	background: url("../image/bg01.png") repeat;
	background-color: #FF5A7A;
}

.about-area03 img{
	display: block;
	margin: 0 auto;
}

.about-area03 .title{
	width: 70%;
	margin-bottom: 50px;	
}

.about-area03 .title-sp{
	display: none;
}

.about-area03 .flex{
	display: flex;
 	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
}

.about-area03 .item01{
	width: 20%;
}

.about-area03 .item01 img{
	width: 80%;
}

.about-area03 .item01 .text{
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1.3;
	color: #FF5A7A;
	margin-top: 10px;
	text-align: center;
	width: 90%;
	padding: 5px;
	margin: 10px auto 0;
	background-color: #fff;
	border-radius: 50px;
}

.about-area03 .item01 .example{
	font-size: 1.2rem;
	line-height: 1.3;
	color: #fff;
	margin-top: 5px;
	text-align: center;
}


@media screen and (max-width: 600px){
	.about-area03 .title-sp{
		display: block;
		width: 80%;
		margin: 0 auto 20px;
	}
	
	.about-area03 .title{
		display: none;
	}
	
	.about-area03 .item01{
		width: 50%;
		margin-bottom: 15px;
	}
}


/* --------------------------------
 * おすすめイベント
 * -------------------------------- */
.about-area03 .title2 img{
	width: 80%;
	margin: 100px auto 10px;	
}

.about-area03 .title2-sp img{
	display: none;
}

.about-area03 .title2-text{
	color: #fff;
	font-size: 1.8rem;
	text-align: center;
	margin-bottom: 20px;
}

.about-area03 .title3{
	width: 100%;
	margin-bottom: 20px;
}


@media screen and (max-width: 600px){
	.about-area03 .title2-sp img{
		display: block;
		width: 90%;
		margin: 50px auto 20px;
	}
	
	.about-area03 .title2 img{
		display: none;
	}
}

.slider {
	position: relative;
	list-style:none;
	width: 85%;
    height: auto;
    background-color: #fff;
	border-radius: 20px;
	margin: 0 auto 50px;
}

.slider .flex{
	display: flex;
 	justify-content: space-between;
	padding: 50px 30px 30px;
}

.about-area03 .item-left{
	width: 52%;
}

.about-area03 .item-right{
	width: 48%;
	padding-left: 30px; 
}

.about-area03 .item-left .img{
	width: 100%;
}

.about-area03 .item-right .title{
	width: 100%;
	margin: 0 0 20px 0;
}

.about-area03 .item-right p{
	font-size: 1.5rem;
	line-height: 1.7;
}

.about-area03 .item-right .sp{
	display: none;
}

.about-area03 .item-right .event-rei{
	width: 80px;
	margin: 20px 0 7px 0;
}


/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
  	z-index: 3;
    top: 46%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    height: 50px;
    width: 50px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left:-10%;
	background: url("../image/btn-left.png");
	background-size:cover;
}

.slick-next {/*次へ矢印の位置と形状*/
    right:-10%;
	background: url("../image/btn-right.png");
	background-size:cover;
}


/*ドットナビゲーションの設定*/
.slick-dots {
    position: relative;
	bottom: -30px;
    z-index: 3;
    text-align:center;
}

.slick-dots li {
    display:inline-block;
    margin:0 8px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*ドットボタンのサイズ*/
    height:12px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#fff;/*ドットボタンの色*/
	opacity:0.5;
	border: none;
}

.slick-dots .slick-active button{
    background:#fff;/*ドットボタンの現在地表示の色*/
	opacity: 1; 
}

@media screen and (max-width: 600px){
	.slider{
		width: 100%;
		margin: 0 auto;
	}
	
	.slider .flex{
        flex-direction: column-reverse;
		padding: 30px 20px;
	}
	
	.about-area03 .item-left{
		width: 100%;
		padding-top: 20px;
	}

	.about-area03 .item-right{
		width: 100%;
		padding-left: 0;
	}
	
	.slick-prev, 
	.slick-next {
		display: none !important; 
	}
	
	.slick-dots button{
		display: none;
	}
	
	.about-area03 .item-right .sp{
		display: inline;
	}
	
	.about-area03 .item-right .pc{
		display: none;
	}
}



/* --------------------------------
 * こんなご希望・課題をお抱えのお客さまにお勧めです！
 * -------------------------------- */
.back04{
	width: 100%;
	background-color: #a1d1d3;
}

.about-area04 .title{
	width: 80%;
	display: block;
	margin: 0 auto 50px;
}

.about-area04 .title-sp{
	display: none;
}

.list{
	min-width: 700px;
	margin: 0 auto;
	padding: 40px 50px 50px;
	background-color: #fff;
	border-radius: 20px;
	list-style:  none;
}

.list .list-item:before{
	content: "";
	width: 30px;                            /* 幅指定 */
    height: 30px;                           /* 高さ指定 */
    display:  inline-block;                 /* インラインブロックにする */
    position:  relative;                    /* アイコンの位置を調整 */
    top: 20px;                             /* アイコンの位置を調整 */
    background-image:  url("../image/icon01.png");  /* アイコン指定 */
    background-size:  contain;              /* アイコンの大きさ指定 */
    background-repeat:  no-repeat;          /* アイコンをリピートしないようにする */
    vertical-align: top;   
}

.list .list-item {
	width: 100%;
	padding: 0 0 20px 20px;
	font-size: 1.8rem;
	font-weight: bold;
	letter-spacing: 0.05em;
	border-bottom: 1px dotted #353535;
	text-align: left;
}

.list .list-item p{
	padding-left: 40px;
	line-height: 1.3;
}

@media screen and (max-width: 750px){
	.about-area04 .title-sp{
		display: block;
		width: 100%;
		margin: 0 auto 20px;
	}
	
	.about-area04 .title{
		display: none;
	}
	
	
	.list{
		min-width: 100%;
		padding: 10px 20px 30px;
	}
	
	.list .list-item:before{
		top: 30px;
	}
	
	.list .list-item {
		padding-left: 0;
		font-size: 1.5rem;
	}
}


/* --------------------------------
 * 当社に業務を依頼するメリット
 * -------------------------------- */
.back05{
	width: 100%;
	background-color: #fff171;
}

.sankaku{
  width: 0;
  height: 0;
  border-left: 70px solid transparent;
  border-right: 70px solid transparent;
  border-top: 60px solid #a1d1d3;
  margin: 0 auto;
}

.about-area05{
	padding-top: 50px;
}

.about-area05 .title{
	width: 60%;
	display: block;
	margin: 0 auto 50px;
}

.list .list-item2:before{
	content: "";
	width: 30px;                            /* 幅指定 */
    height: 30px;                           /* 高さ指定 */
    display:  inline-block;                 /* インラインブロックにする */
    position:  relative;                    /* アイコンの位置を調整 */
    top: 20px;                             /* アイコンの位置を調整 */
    background-image:  url("../image/icon02.png");  /* アイコン指定 */
    background-size:  contain;              /* アイコンの大きさ指定 */
    background-repeat:  no-repeat;          /* アイコンをリピートしないようにする */
    vertical-align: top;   
}

.list .list-item2 {
	width: 100%;
	padding: 0 0 20px 20px;
	font-size: 1.8rem;
	font-weight: bold;
	letter-spacing: 0.05em;
	border-bottom: 1px dotted #353535;
	text-align: left;
}

.list .list-item2 p{
	padding-left: 40px;
	line-height: 1.2;
}

.list .list-item2 span{
	color: #ff8c00;
}

@media screen and (max-width: 600px){
	.sankaku{
		border-left: 50px solid transparent;
		border-right: 50px solid transparent;
		border-top: 40px solid #a1d1d3;
	}
	
	.about-area05{
		padding-top: 20px;
	}
	
	.about-area05 .title{
		width: 100%;
		margin-bottom: 20px;
	}
	
	.list .list-item2:before{
		top: 30px;
	}
	
	.list .list-item2 {
		padding-left: 0;
		font-size: 1.5rem;
	}
}


/* --------------------------------
 * 企業イベント事業
 * -------------------------------- */
.back06{
	width: 100%;
	background-color: #fff8cf;
	background-image:
    	radial-gradient(#fff 20%, transparent 20%),
    	radial-gradient(#fff 20%, transparent 20%);
 	background-size: 20px 20px;
 	background-position: 0 0, 10px 10px;
}

.about-area06{
	padding-bottom: 0;
}

.about-area06 .title01{
	width: 80%;
	display: block;
	margin: 0 auto 50px;
}

.about-area06 .title01-sp{
	display: none;
}

.about-area06 p{
	font-size: 1.5rem;
	line-height: 1.7;
	margin-bottom: 100px;
}

.about-area06 .title02{
	width: 30%;
	display: block;
	margin: 0 auto 50px;
}

.illust .pc{
	display: block;
	max-width: 900px;
	padding: 100px 20px;
	margin: 0 auto;
}

.illust .sp{
	display: none;
}

.illust img{
	width: 100%;
}

@media screen and (max-width: 600px){
	.about-area06 .title01-sp{
		display: block;
		width: 90%;
		margin: 0 auto 20px;
	}
	
	.about-area06 .title01{
		display: none;
	}
	
	.about-area06 p{
		margin-bottom: 50px;
	}
	
	.about-area06 .title02{
		width: 60%;
		margin-bottom: 20px;
	}
	
	.illust .sp{
		display: block;
		padding: 50px 20px 50px;
	}

	.illust .pc{
		display: none;
	}
}

/*==================================================
スライダーのためのcss
===================================*/
.event img {
	width: 200px;
	height: auto;
}

.event .slick-slide {
	margin-bottom: 20px;
}

.eventsecond img {
	max-width: 200px !important;
	height: auto;
}
.eventsecond .slick-slide {
	margin-left: 120px;
}

@media screen and (min-width: 2400px) {
	.event img {
		width: 200px;
		height: auto;
	}

	.event .slick-slide {
		margin-bottom: 20px;
	}

	.eventsecond .slick-slide {
		margin-left: 140px;
	}
}

@media screen and (max-width: 420px){
.slider .flex {	
	flex-direction: column-reverse;
	padding: 30px 20px;
	 height: 1030px;
	}
}

@media screen and (max-width: 300px){
.slider .flex {	
	flex-direction: column-reverse;
	padding: 30px 20px;
	 height: 950px;
	}
}


/* --------------------------------
 * よくあるQ&A
 * -------------------------------- */
.back07{
	width: 100%;
	background-color: #fff4f4;
}

.about-area07 .title{
	width: 20%;
	display: block;
	margin: 0 auto 50px;
}

.cp_qa *, .cp_qa *:after, .cp_qa *:before {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_qa {
	overflow-x: hidden;
	margin: 0 auto;
	color: #333333;
}
.cp_qa .cp_actab {
	padding: 20px 0;
	border-bottom: 1px dotted #595757;
}
.cp_qa label {
	font-size: 1.8rem;
	line-height: 1.3;
	position: relative;
	display: block;
	width: 100%;
	margin: 0;
	padding: 10px 10px 0 48px;
	cursor: pointer;
}
.cp_qa .cp_actab-content {
	font-size: 1.8rem;
	line-height: 1.3;
	position: relative;
	overflow: hidden;
	height: 0;
	margin-left: 40px;
	padding: 0 14px;
	-webkit-transition: 0.4s ease;
	        transition: 0.4s ease;
	opacity: 0;
}
.cp_qa .cp_actab input[type=checkbox]:checked ~ .cp_actab-content {
	height: auto;
	padding: 14px;
	opacity: 1;
}
.cp_qa .cp_plus {
	font-size: 2.4em;
	line-height: 100%;
	position: absolute;
	z-index: 5;
	margin: 3px 0 0 10px;
	-webkit-transition: 0.2s ease;
	        transition: 0.2s ease;
}
.cp_qa .cp_actab input[type=checkbox]:checked ~ .cp_plus {
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
}
.cp_qa .cp_actab input[type=checkbox] {
  display: none;
}

.q-design{
	color: #ff6c9a;
}

.a-design{
	color: #595757;
}

@media screen and (max-width: 600px){
	.about-area07 .title{
		width: 40%;
		margin-bottom: 20px;
	}
	
	.cp_qa label{
		font-size: 1.5rem;
	}
	
	.cp_qa .cp_actab-content{
		font-size: 1.5rem;
	}
}

/* --------------------------------
 * お問い合わせ
 * -------------------------------- */
.back08{
	width: 100%;
	background-color: #f6f4ed;
	background: url("../image/bg02.jpg") repeat;
}

.about-area08 .title{
	width: 35%;
	display: block;
	margin: 0 auto 20px;
}

.about-area08 .title2{
	width: 20%;
	display: block;
	margin: 0 auto 50px;
}

@media screen and (max-width: 600px){
	.about-area08 .title{
		width: 70%;
		margin-bottom: 10px;
	}
	
	.about-area08 .title2{
		width: 40%;
		margin-bottom: 20px;
	}
}

/************************************
** お問い合わせフォームの入力
************************************/
.Form {
margin-left: auto;
margin-right: auto;
max-width: 1000px;
}
@media screen and (max-width: 480px) {
.Form {
margin-top: 40px;
}
}
.Form-Item {
border-bottom: 1px dotted #595757;
padding-top: 24px;
padding-bottom: 24px;
width: 100%;
display: flex;
align-items: center;
justify-content: space-around;
}
@media screen and (max-width: 480px) {
.Form-Item {
padding-left: 14px;
padding-right: 14px;
padding-top: 16px;
padding-bottom: 16px;
flex-wrap: wrap;
}
}
.Form-Item-Label {
width: 100%;
max-width: 248px;
letter-spacing: 0.05em;
font-weight: bold;
font-size: 1.8rem;
}
@media screen and (max-width: 480px) {
.Form-Item-Label {
max-width: inherit;
display: flex;
align-items: center;
font-size: 15px;
}
}
.Form-Item-Label.isMsg {
margin-top: 8px;
margin-bottom: auto;
}
@media screen and (max-width: 480px) {
.Form-Item-Label.isMsg {
margin-top: 0;
}
}
.Form-Item-Label-Required {
border-radius: 6px;
margin-left: 10px;
padding-top: 8px;
padding-bottom: 8px;
width: 48px;
display: inline-block;
text-align: center;
background: #ff6c9a;
color: #fff;
font-size: 1.4rem;
}
@media screen and (max-width: 480px) {
.Form-Item-Label-Required {
border-radius: 4px;
padding-top: 4px;
padding-bottom: 4px;
width: 32px;
font-size: 10px;
}
}
.Form-Item-Input {
border: 1px solid #ddd;
border-radius: 6px;
padding-left: 1em;
padding-right: 1em;
height: 48px;
flex: 1;
width: 450px;
max-width: 800px;
background: #fff;
font-size: 1.8rem;
}
@media screen and (max-width: 480px) {
.Form-Item-Input {
margin-left: 0;
margin-top: 18px;
height: 40px;
flex: inherit;
font-size: 15px;
width: 100% !important;
}
}
.Form-Item-Textarea {
border: 1px solid #ddd;
border-radius: 6px;
padding-left: 1em;
padding-right: 1em;
height: 216px;
flex: 1;
width: 450px;
max-width: 800px;
background: #fff;
font-size: 1.8rem;
}
@media screen and (max-width: 480px) {
.Form-Item-Textarea {
margin-top: 18px;
margin-left: 0;
height: 200px;
flex: inherit;
font-size: 15px;
width: 100% !important;
}
}

.wpcf7-form-control{
	-webkit-appearance: none;
}


/************************************
** お問い合わせ完了画面
************************************/
form.sent .Form{
display:none;
}

/* --------------------------------
 * footer
 * -------------------------------- */
.footer{
	max-width: 800px;
	margin: 0 auto;
	padding: 60px 0;
}

.footer .flex{
	display: flex;
 	justify-content: space-between;
}

.footer .item{
	width: 50%;
}

.footer .item img{
	width: 80%;
	display: block;
	margin: 0 auto;
}

.footer .item p{
	font-size: 1.5rem;
	line-height: 1.5;
}

.footer .item .tel{
	color: #353535;
	text-decoration: underline;
}

.footer .item .url{
	display: inline-block;
	font-size: 1.2rem;
	color: #FF5A7A;
	border: 1px solid #FF5A7A;
	background-color: #fff;
	padding: 10px 20px;
	border-radius: 50px;
	margin-top: 10px;
}

.footer .item .url:hover{
	opacity: 0.8;
}

.copyright{
	max-width: 100%;
	color: #fff;
	font-size: 1.0rem;
	text-align: center;
	background-color: #000;
	padding: 20px 0;
}

@media screen and (max-width: 600px){
	.footer{
		padding: 40px 0;
	}
	
	.footer .flex{
		display: block;
	}
	
	.footer .item{
		width: 100%;
		padding: 0 20px;
	}
	
	.footer .item p{
		font-size: 1.5rem;
		line-height: 1.2;
	}
	
	.footer .item img{
		margin-bottom: 20px;
	}
}