@charset "UTF-8";
/* CSS Document */
body {
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
	background-image: url(img/bg_animeation4.gif);
	background-position: top left;
	background-repeat: repeat-y;
	background-size: contain;
}
p{
	line-height: 1.8em;
}

/*ヘッダー*/
.header_head {
	width: 100%;
	min-height: 8vh;
	position: fixed;
	top:0;
	left: 0;
	z-index: 99;
	background: #fff;
	display: flex;
	justify-content: space-between;
}
/*ヘッダー-ロゴ*/
.header_logo {
	width: 60%;
	height: auto;
	min-height: 7vh;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding-top: 0.3vh;
	margin-left: 2.5%;
}
.header_logo img{
	width: 100%;
}
/*タブレットに適用するスタイル*/
@media screen and (min-width:600px) and ( max-width:959px) {
	.header_logo {
		width: 40%;
		height: auto;
		display: inline-flex;
		justify-content: center;
		align-items: center;
		padding-top: 0.5vh;
		margin-left: 2%;
	}
}
/*通常のデスクトップに適用したいスタイル*/
@media screen and (min-width:960px) and ( max-width:1280px) {
	.header_logo {
		/*width: 240px;*/
		width: 340px;
		height: auto;
		min-height: 22px;
		padding-top: 10px;
		margin-left: 30px;
	}

}
/*横幅の広いデスクトップに適用したいスタイル*/
@media screen and (min-width:1281px) {
	.header_logo {
		width: 380px;
		height: auto;
		min-height: 22px;
		padding-top: 6px;
		margin-left: 30px;
	}
}
/* //ヘッダー-ロゴ*/


/*ヘッダー-ナビ*/
/*header {
  padding:10px;
  background: skyblue;
}*/

.header_navi{
	/*margin-right: 2%;*/
	margin-right: 5%;
}
#nav-drawer {
	/*margin-top: 3vh;*/
	margin-top: 2vh;
  position: relative;
	
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display:none;
}

/*アイコンのスペース*/
#nav-open {
    display: inline-block;
    width: 30px;
    height: 22px;
    vertical-align: top;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
    position: absolute;
    /*height: 3px;*//*線の太さ*/
    height: 5px;/*線の太さ*/
    /*width: 25px;*//*長さ*/
    width: 40px;/*長さ*/
    border-radius: 3px;
    background: #555;
    display: block;
    content: '';
    cursor: pointer;
}
#nav-open span:before {
    /*bottom: -8px;*/
	bottom: -10px;
}
#nav-open span:after {
   /* bottom: -16px;*/
	bottom: -20px;
}

/*タブレットに適用するスタイル*/
@media screen and (min-width:600px) and ( max-width:959px) {
	#nav-open span:before {
    	/*bottom: -8px;*/
		bottom: -12px;
	}
	#nav-open span:after {
   		/* bottom: -16px;*/
		bottom: -26px;
	}
}
/*通常のデスクトップに適用したいスタイル*/
@media screen and (min-width:960px) and ( max-width:1280px) {
	#nav-open span:before {
    	/*bottom: -8px;*/
		bottom: -12px;
	}
	#nav-open span:after {
   		/* bottom: -16px;*/
		bottom: -26px;
	}
}
/*横幅の広いデスクトップに適用したいスタイル*/
@media screen and (min-width:1281px) {
	#nav-open span:before {
    	/*bottom: -8px;*/
		bottom: -12px;
	}
	#nav-open span:after {
   		/* bottom: -16px;*/
		bottom: -26px;
	}
}
/*閉じる用の薄黒カバー*/
#nav-close {
    display: none;/*はじめは隠しておく*/
    position: fixed;
    z-index: 99;
    top: 0;/*全体に広がるように*/
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    transition: .3s ease-in-out;
}

/*中身*/
#nav-content {
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;/*最前面に*/
    width: 60%;/*右側に隙間を作る*/
    max-width: 330px;/*最大幅*/
    height: 100%;
    background: #fff;/*背景色*/
    transition: .3s ease-in-out;/*滑らかに表示*/
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%);/*左に隠しておく*/
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
    display: block;/*カバーを表示*/
    opacity: .5;
}

#nav-input:checked ~ #nav-content {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);/*中身を表示*/
    box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

ul.navi_list {
	width: 50%;
	margin: 10% auto 0 auto;
}
ul.navi_list li{
	width: 100%;
	margin: 0 auto;
	padding-bottom: 1em;
}
ul.navi_list li img{
	width: 100%;
}

/*各リンク先ズレ修正*/
a#about,a#study,a#action,a#meeting,a#joinus,a#faq,a#link,a#twitter {
	margin-top:-8vh;
  	padding-top:8vh;
}
/* //ヘッダー-ナビ*/


/*ヘッダー-バナー*/
.header_bnr {
	margin-top: 8vh;
	width: 100%;
	height: 5vh;
	min-height: 5vh;
	background: #ffff00;
}
ul.header_list {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 4vh;
	padding-top: 0.5vh;
}
ul.header_list li.header_bnr_s{
	width: auto;
	height: 4vh;
	display: block;
}
ul.header_list li.header_bnr_s{
	margin-right: 6%;
}
ul.header_list li.header_bnr_s:last-child{
	margin-right: 0%;
}
ul.header_list li.header_bnr_s img{
	height: 100%;
}
ul.header_list li.header_bnr_s a:hover{
	opacity: 0.8;
}
/*タブレットに適用するスタイル*/
@media screen and (min-width:600px) and ( max-width:959px) {
	.header_bnr {
		margin-top: 8vh;
		width: 100%;
		height: 5vh;
		background: #ffff00;
	}
}
/*通常のデスクトップに適用したいスタイル*/
@media screen and (min-width:960px) and ( max-width:1280px) {
	.header_bnr {
		margin-top: 8vh;
		width: 100%;
		height: 5vh;
		background: #ffff00;
	}
}
/*横幅の広いデスクトップに適用したいスタイル*/
@media screen and (min-width:1281px) {
	.header_bnr {
		margin-top: 8vh;
		width: 100%;
		height: 5vh;
		background: #ffff00;
	}
}
/* //ヘッダー-バナー*/
/* //ヘッダー*/


/*01-Top-ビデオ*/
.bgv {
	width: 100%;
	height: 87vh;
	background-image: url(img/top_bg_ver03.jpg);
	background-size: cover;
	background-position:center;
	background-repeat:  no-repeat;
	background-color: #9a9997;
}
.video_title_outer {
	width: 80%;
	height: auto;
	margin: 0 auto;
	padding-top: 25vh;
}
img.video_title {
	width: 100%;
}
/*タブレットに適用するスタイル*/
@media screen and (min-width:600px) and ( max-width:959px) {
	.video_title_outer {
		width: 60%;
		height: auto;
		margin: 0 auto;
		padding-top: 25vh;
	}
}
/*通常のデスクトップに適用したいスタイル*/
@media screen and (min-width:960px) and ( max-width:1280px) {
	.video_title_outer {
		width: 40%;
		height: auto;
		margin: 0 auto;
		padding-top: 25vh;
	}
}
/*横幅の広いデスクトップに適用したいスタイル*/
@media screen and (min-width:1281px) {
	.video_title_outer {
		width: 40%;
		height: auto;
		margin: 0 auto;
		padding-top: 25vh;
	}
}
/* //01-Top-ビデオ*/


/* 共通項目 */

.pcNone {
	display:inherit;
}
.spNone {
	display: none;
}

/*タブレットに適用するスタイル*/
@media screen and (min-width:600px) and ( max-width:959px) {
	.pcNone {
		display:inherit;
	}
	.spNone {
		display: none;
	}
}
/*通常のデスクトップに適用したいスタイル*/
@media screen and (min-width:960px) and ( max-width:1280px) {
	.pcNone {
		display:none;
	}
	.spNone {
		display: inherit;
	}
}
/*横幅の広いデスクトップに適用したいスタイル*/
@media screen and (min-width:1281px) {
	.pcNone {
		display:none;
	}
	.spNone {
		display: inherit;
	}
}


.pix_content_out {
	width: 100%;
	margin: 0 auto;
}
img.pix_content {
	width: 100%;
	height: auto;
	padding: 3% 0;
}

#second,#third,#fourth,#fifth {
	margin-top: 2em;
}

.innerBox {
	width: 90%;
	margin: 1em auto;
}
p.content_tex_head {
	/*text-align: center;*/
	font-size: 120%;
}
ul.cotentBox {
	width: 100%;
	display: block;
	padding:  3em 0;
}
ul.cotentBox li{
	display: flex;
	align-items: center;
}
li.box_l {
	margin-bottom: 1em;
}
li.box_r {
}
img.cotentBox_img {
	width: 100%;
	margin-bottom: 1em;
}
h2.content_title {
	font-size: 150%;
	font-weight: 700;
	text-align: center;
	margin-bottom: 0.5em;
	text-decoration:  underline;
}
p.comment_tex {
}

img.sectionCopy {
	width: 100%;
}

/*JOIN US*/
#joinus_blank {
	width: 10em;
	height: 2em;
	display: block;
}
.joinus {
	width: 80%;
	margin: 0.5em auto;
	border-radius: 10px;
	border: 1px solid black;
	background: white;
}
.joinus p.content_tex_head{
	padding: 2em;
}
img.joinus_title {
	display: block;
	width: 70%;
	margin: -2em auto 0em auto;
}
img.joinus_tex {
	width: 80%;
	margin: 1.5em auto;
	display: block;
}
/*タブレットに適用するスタイル*/
@media screen and (min-width:600px) and ( max-width:959px) {
	#joinus_blank {
		width: 10em;
		height: 6em;
		display: block;
	}
	.joinus {
		width: 50%;
		margin: 0.5em auto;
		border-radius: 10px;
		border: 1px solid black;
		background: white;
	}
	.joinus p.content_tex_head{
		padding: 2em;
	}
	img.joinus_title {
		display: block;
		width: 70%;
		margin: -2em auto 0em auto;
	}
}
/*通常のデスクトップに適用したいスタイル*/
@media screen and (min-width:960px) and ( max-width:1280px) {
	#joinus_blank {
		width: 10em;
		height: 6em;
		display: block;
	}
	.joinus {
		width: 50%;
		margin: 0.5em auto;
		border-radius: 10px;
		border: 1px solid black;
		background: white;
	}
	.joinus p.content_tex_head{
		padding: 2em;
	}
	img.joinus_title {
		display: block;
		width: 70%;
		margin: -5em auto 0em auto;
	}
}
/*横幅の広いデスクトップに適用したいスタイル*/
@media screen and (min-width:1281px) {
	#joinus_blank {
		width: 10em;
		height: 6em;
		display: block;
	}
	.joinus {
		width: 50%;
		margin: 0.5em auto;
		border-radius: 10px;
		border: 1px solid black;
		background: white;
	}
	.joinus p.content_tex_head{
		padding: 2em;
	}
	img.joinus_title {
		display: block;
		width: 70%;
		margin: -5em auto 0em auto;
	}
}
/* //JOIN US*/

/*タブレットに適用するスタイル*/
@media screen and (min-width:600px) and ( max-width:959px) {
	.pcNone {
		display:none;
		visibility:hidden;
	}
	.spNone {
		display: inherit;
		visibility: visible;
	}
	.innerBox {
		width: 90%;
		margin: 0.5em auto;
	}
	ul.cotentBox {
		width: 100%;
		display: flex;
		justify-content: space-between;
	}
	li.box_l {
		width: 48%;
	}
	li.box_r {
		width: 48%;
	}
}
/*通常のデスクトップに適用したいスタイル*/
@media screen and (min-width:960px) and ( max-width:1280px) {
	.pcNone {
		display:none;
		visibility:hidden;
	}
	.spNone {
		display: inherit;
		visibility: visible;
	}
	.innerBox {
		width: 80%;
		margin: 0.5em auto;
	}
	ul.cotentBox {
		width: 100%;
		display: flex;
		justify-content: space-between;
	}
	li.box_l {
		width: 48%;
	}
	li.box_r {
		width: 48%;
	}
}
/*横幅の広いデスクトップに適用したいスタイル*/
@media screen and (min-width:1281px) {
	.pcNone {
		display:none;
		visibility:hidden;
	}
	.spNone {
		display: inherit;
		visibility: visible;
	}
	.innerBox {
		width: 80%;
		margin: 0.5em auto;
	}
	ul.cotentBox {
		width: 100%;
		display: flex;
		justify-content: space-between;
	}
	li.box_l {
		width: 48%;
	}
	li.box_r {
		width: 48%;
	}
}
/* //共通項目 */

/*セカンド-what is ミンセイ*/
#second {
  width: 100%;
  height: auto;
  overflow: hidden;
}
/*スマホに適用するスタイル*/
#second img.tex_content {
	width: 80%;
	height: auto;
	display:block;
	margin: 0 auto;
	padding: 5% 0;
	clear: both;
}
/*コメント欄*/
ul.comment {
	width: 100%;
	height: auto;
	display:block;
	margin: 0 auto;
}
ul.comment li{
	/*width: 100%;*/
	width: 80%;
	height: auto;
	margin: 0 auto;
	padding: 10% 0;
}
ul.comment li img.comment_pic{
	display: block;
	width: 60%;
	margin: 0 auto 10px auto;
}
p.comment_name {
	text-align: center;
	margin-bottom: 1em;
}
p.comment_name span{
	font-size: 120%;
	font-weight: 700;
}
/*タブレットに適用するスタイル*/
@media screen and (min-width:600px) and ( max-width:959px) {
	#second img.tex_content {
  		width: 80%;
  		height: auto;
		padding: 3% 0;
	}
	ul.comment {
		width: 80%;
		margin: 0 auto;
	}
	ul.comment li{
		width: 46%;
		padding-bottom: 2em;
	}
	ul.comment li:nth-child(odd){
		float: left;
	}
	ul.comment li:nth-child(even){
		float: right;
	}
	ul.comment li:nth-child(3){
		clear: both;
		float: none;
		margin: 0 auto;
	}
	ul.comment li img.comment_pic{
		display: block;
		width: 40%;
		margin: 0 auto 10px auto;
	}
	p.comment_name {
		font-size: 120%;
		text-align: center;
		margin-bottom: 1em;
	}
}
/*通常のデスクトップに適用したいスタイル*/
@media screen and (min-width:960px) and ( max-width:1280px) {
	#second img.tex_content {
  		/*width: 50%;*/
		width: 80%;
  		height: auto;
		padding: 3% 0;
	}
	ul.comment {
		width: 80%;
		margin: 0 auto;
	}
	ul.comment li{
		width: 46%;
		padding-bottom: 2em;
	}
	ul.comment li:nth-child(odd){
		float: left;
	}
	ul.comment li:nth-child(even){
		float: right;
	}
	ul.comment li:nth-child(3){
		clear: both;
		float: none;
		margin: 0 auto;
	}
	ul.comment li img.comment_pic{
		display: block;
		width: 40%;
		margin: 0 auto 10px auto;
	}
	p.comment_name {
		font-size: 120%;
		text-align: center;
		margin-bottom: 1em;
	}
}
/*横幅の広いデスクトップに適用したいスタイル*/
@media screen and (min-width:1281px) {
	#second img.tex_content {
  		/*width: 50%;*/
		width: 80%;
  		height: auto;
		padding: 1% 0;
	}
	ul.comment {
		width: 80%;
		margin: 0 auto;
	}
	ul.comment li{
		width: 46%;
		padding-bottom: 2em;
	}
	ul.comment li:nth-child(odd){
		float: left;
	}
	ul.comment li:nth-child(even){
		float: right;
	}
	ul.comment li:nth-child(3){
		clear: both;
		float: none;
		margin: 0 auto;
	}
	ul.comment li img.comment_pic{
		display: block;
		width: 40%;
		margin: 0 auto 10px auto;
	}
	p.comment_name {
		font-size: 120%;
		text-align: center;
		margin-bottom: 1em;
	}
}

/*コメント欄*/
/* //セカンド-what is ミンセイ*/




/*FAQ*/
#faq {
 /*display: flex;*/
/*background-color: white;*/
  /*justify-content: center;
  align-items: center;*/
  width: 100%;
  height: auto;
}


/*テキスト　スマホに適用するスタイル*/

/*#faq div {
	text-align: center;
}*/
#faq div.faq_title {
	text-align: center;
	/*width: 80%;*/
	width: 60%;
	height: auto;
	padding-top: 10%;
	margin: 0 auto;
}
#faq img.title {
	width: 40%;
	height: auto;
	padding-top: 10%;
}
/*テキスト　タブレットに適用するスタイル*/
@media screen and (min-width:600px) and ( max-width:959px) {
	#faq img.title {
  		/*width: 20%;*/
  		width: 25%;
  		height: auto;
	}
}
/*テキスト　通常のデスクトップに適用したいスタイル*/
@media screen and (min-width:960px) and ( max-width:1280px) {
	#faq img.title {
  		width: 18%;
  		height: auto;
	}
}
/*テキスト　横幅の広いデスクトップに適用したいスタイル*/
@media screen and (min-width:1281px) {
	#faq img.title {
  		/*width: 10%;*/
  		width: 14%;
  		height: auto;
	}
}

/*アコーディオン*/
#acMenu dt{
	/*width:467px;
	height:55px;*/
	width:100%;
	max-width: 1060px;
	height:auto;
	min-height: 22px;
	cursor:pointer;
	padding: 0;
	background: #FFFF00;
		border-radius: 30px;
	/*padding-right:15px;	*/
	}
@media screen and (max-width:768px) {
	#acMenu dt{
		width:80%;
		min-height: 22px;
	background: #FFFF00;
		background-repeat: no-repeat;
		background-size: contain;
		margin:2% auto 0 auto;
	}
	#acMenu dt.acMenu_dt_00{
		background-image:url(../ver2_201805/img/faq00_non.png);
	}
	#acMenu dt.acMenu_dt_01{
		background-image:url(../ver2_201805/img/faq01_non.png);
	}
	#acMenu dt.acMenu_dt_02{
		background-image:url(../ver2_201805/img/faq02_non.png);
	}
	#acMenu dt.acMenu_dt_03{
		background-image:url(../ver2_201805/img/faq03_non.png);
	}
}
@media screen and (min-width:600px) {
	#acMenu dt{
		width: 100%;
		max-width: 1060px;
	margin:0 auto 2% auto;
		min-height: 55px;
		background-color: #FFFF00;
		background-repeat: no-repeat;
		border-radius: 50px;
	}
	#acMenu dt.acMenu_dt_00{
		background-image: url(img/faq00_non.png);
	}
	#acMenu dt.acMenu_dt_01{
		background-image: url(img/faq01_non.png);
	}
	#acMenu dt.acMenu_dt_02{
		background-image: url(img/faq02_non.png);
	}
	#acMenu dt.acMenu_dt_03{
		background-image: url(img/faq03_non.png);
	}
}
/* //dt*/
@media screen and (max-width:599px) {
	#acMenu dd{
		width:80%;
		height:auto;
		margin:2% auto 3% auto;
		padding: 0;
		display:none;
	}
	#acMenu dd img{
		width: 100%
	}
}
@media screen and (min-width:600px) {
	#acMenu dd{
		/*width:452px;*/
		width:100%;
		max-width: 1060px;
		height:auto;
		margin:2% auto 2% auto;
		padding: 0;
		display:none;
	}
	#acMenu dd img{
		width: 100%
	}
}
@media screen and (max-width:599px) {
	#acMenu dt.acMenu_dt_00{
		background-image:url(../ver2_201805/img/faq00_non_sp.png);
	}
	#acMenu dt.acMenu_dt_01{
		background-image:url(../ver2_201805/img/faq01_non_sp.png);
	}
	#acMenu dt.acMenu_dt_02{
		background-image:url(../ver2_201805/img/faq02_non_sp.png);
	}
	#acMenu dt.acMenu_dt_03{
		background-image:url(../ver2_201805/img/faq03_non_sp.png);
	}
	#acMenu dt.acMenu_dt_00.active{
		width:80%;
		background-repeat: no-repeat;
		background-image:url(../ver2_201805/img/faq00_act_sp.png);
	}
	#acMenu dt.acMenu_dt_01.active{
		background-image:url(../ver2_201805/img/faq01_act_sp.png);
	}
	#acMenu dt.acMenu_dt_02.active{
		background-image:url(../ver2_201805/img/faq02_act_sp.png);
	}
	#acMenu dt.acMenu_dt_03.active{
		background-image:url(../ver2_201805/img/faq03_act_sp.png);
	}
}
@media screen and (min-width:600px) {
#acMenu dt.active{
		background-repeat: no-repeat;
		background-color: #FFFF00;
		border-radius: 50px;
	}
#acMenu dt.acMenu_dt_00.active{
		background-image: url(img/faq00_act.png);
	}
#acMenu dt.acMenu_dt_01.active{
		background-image: url(img/faq01_act.png);
	}
#acMenu dt.acMenu_dt_02.active{
		background-image: url(img/faq02_act.png);
	}
#acMenu dt.acMenu_dt_03.active{
		background-image: url(img/faq03_act.png);
	}
}
/* //アコーディオン*/
/* //FAQ*/


/*08-Link/Twtter*/

/*Link/Twtter共通*/
#link_twit {
	width: 90%;
	margin: 0 auto;
	display: inherit;
}
#link_outer {
	width: 100%;
	margin-top: 2em;
}
#link_outer img{
	display: block;
	margin: 2em auto;
}
#twit_outer {
	width: 100%;
	margin: 2em auto;
}
#twit_outer img{
	display: block;
	margin: 2em auto;
}
.link_twitt_title {
	width: 50%;
	margin: 0 auto;
} 
.link_twitt_title img {
	width: 100%;
}
/*/*Link/Twtter共通　タブレットに適用するスタイル*/
@media screen and (min-width:600px) and ( max-width:959px) {
	#link_twit {
		width: 90%;
		margin: 0 auto;
		display: flex;
		justify-content: space-around;
	}
	#link_outer {
		width: 48%;
	}
	#link_outer img{
		display: block;
		margin: 2em auto;
	}
	#twit_outer {
		width: 48%;
	}
	#twit_outer img{
		display: block;
		margin: 2em auto;
	}
	.link_twitt_title {
		width: 60%;
		margin: 0 auto;
	} 
}
/*/*Link/Twtter共通　通常のデスクトップに適用したいスタイル*/
@media screen and (min-width:960px) and ( max-width:1280px) {
	#link_twit {
		width: 90%;
		margin: 0 auto;
		display: flex;
		justify-content: space-around;
	}
	#link_outer {
		width: 48%;
	}
	#link_outer img{
		display: block;
		margin: 2em auto;
	}
	#twit_outer {
		width: 48%;
	}
	#twit_outer img{
		display: block;
		margin: 2em auto;
	}
	.link_twitt_title {
		width: 50%;
		margin: 0 auto;
	} 
}
/*Link/Twtter共通　横幅の広いデスクトップに適用したいスタイル*/
@media screen and (min-width:1281px) {
	#link_twit {
		width: 90%;
		margin: 0 auto;
		display: flex;
		justify-content: space-around;
	}
	#link_outer {
		width: 48%;
	}
	#link_outer img{
		display: block;
		margin: 2em auto;
	}
	#twit_outer {
		width: 48%;
	}
	#twit_outer img{
		display: block;
		margin: 2em auto;
	}
	.link_twitt_title {
		width: 40%;
		margin: 0 auto;
	} 
}

/*LINK*/
ul#link_list {
	width: 100%;
}
ul#link_list li{
	text-align: center;
	/*font-size: 100%;*/
	/*font-size: 70%;
	font-weight: 800;*/
	/*line-height: 3em;*/
	padding-bottom: 0px;
}
ul#link_list li img{
	width: 60%;
}
/*ul#link_list li a {
  color: #000;
  font-size: 2em;
  text-decoration: none;
  display: inline-block;
  position: relative;
}*/

/*effect-underline
https://codepen.io/colloque/pen/bDgmx*/
/*ul#link_list li a.effect-underline:after {
	content: '';
  position: absolute;
  left: 0;
  display: inline-block;
  height: 1em;
  width: 100%;
  border-bottom: 1px solid;
  margin-top: 0px;
  opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale(0,1);
	transform: scale(0,1);
}*/

/*ul#link_list li a.effect-underline:hover:after {
  opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}*/

/* //LINK*/

/*SNS*/
#sns {
  width: 100%;
  height: auto;
  overflow: hidden;
}

/*SNS　スマホに適用するスタイル*/
#sns .sns_out {
	width: 90%;
	margin: 0% auto 5% auto;
	text-align: center;
	border: 1px solid black;
	border-radius: 6px;
}
#sns div.sns_in {
	padding: 1em;
}
#sns img.title {
	width: 20%;
	height: auto;
	padding-top: 10%;
}
/*SNS　タブレットに適用するスタイル*/
@media screen and (min-width:600px) and ( max-width:959px) {
	#sns img.title {
  		width: 20%;
  		height: auto;
	}
}
/*SNS　通常のデスクトップに適用したいスタイル*/
@media screen and (min-width:960px) and ( max-width:1280px) {
	#sns div.sns_out {
		width: 90%;
	}
	#sns img.title {
  		width: 20%;
  		height: auto;
	}
}
/*SNS　横幅の広いデスクトップに適用したいスタイル*/
@media screen and (min-width:1281px) {
	#sns div.sns_out {
		width: 90%;
	}
	#sns img.title {
  		width: 20%;
  		height: auto;
	}	
}

.twitter {
	width: 40%;
	margin: 0 auto;
}
/*twitter　通常のデスクトップに適用したいスタイル*/
@media screen and (min-width:960px) and ( max-width:1280px) {
	.twitter {
		width: 30%;
	}
}
/*twitter　横幅の広いデスクトップに適用したいスタイル*/
@media screen and (min-width:1281px) {
	.twitter {
		width: 30%;
	}
}
.twitter img{
	width: 100%;
}
/* //SNS*/

img.faq_tex {
	width: 60%;
	float: left;
}

/* //08-Link/Twtter*/

/*fotter*/
footer {
	/*margin-top: 2em;*/
  width: 100%;
  height: auto;
  overflow: hidden;
	background: #ffff00;
}
footer div{
	padding: 1em 0;
}
/*スマホに適用するスタイル*/
footer ul{
	width: 80%;
	font-size: 70%;
	margin: 1em auto;
	display: inherit;
}
footer ul li.foot_l{
	margin-right: auto;
}
footer ul li span{
	font-size: 120%;
	font-weight: 800;
}
footer ul li a{
	color: black;
}
/*タブレットに適用するスタイル*/
@media screen and (min-width:600px) and ( max-width:959px) {
	footer ul{
		width: 80%;
		font-size: 70%;
		margin: 1em auto;
		display: flex;
	}
	footer ul li.foot_l{
		margin-right: auto;
	}
	footer ul li span{
		font-size: 120%;
		font-weight: 800;
	}
	footer ul li a{
		color: black;
	}
}
/*通常のデスクトップに適用したいスタイル*/
@media screen and (min-width:960px) and ( max-width:1280px) {
	footer ul{
		width: 80%;
		font-size: 70%;
		margin: 1em auto;
		display: flex;
	}
	footer ul li.foot_l{
		margin-right: auto;
	}
	footer ul li span{
		font-size: 120%;
		font-weight: 800;
	}
	footer ul li a{
		color: black;
	}
}
/*横幅の広いデスクトップに適用したいスタイル*/
@media screen and (min-width:1281px) {
	footer ul{
		width: 80%;
		font-size: 70%;
		margin: 1em auto;
		display: flex;
	}	
	footer ul li.foot_l{
		margin-right: auto;
	}
	footer ul li span{
		font-size: 120%;
		font-weight: 800;
	}
	footer ul li a{
		color: black;
	}
}
/* //fotter*/