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

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, title, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a{
	text-decoration:none;
	color:#e73562;
}
/* Clearfix */
.clearfix:after{
    content:" ";
    display:block;
    clear:both;
}

.mb1{margin-bottom:1px;}
.mb2{margin-bottom:2px;}
.mb3{margin-bottom:3px;}
.mb5{margin-bottom:5px;}
.mb6{margin-bottom:6px;}
.mb7{margin-bottom:7px;}
.mb8{margin-bottom:8px;}
.mb9{margin-bottom:9px;}
.mb10{margin-bottom:10px;}
.mb13{margin-bottom:13px;}
.mb15{margin-bottom:15px;}
.mb18{margin-bottom:18px;}
.mb20{margin-bottom:20px;}
.mb30{margin-bottom:30px;}
.mb40{margin-bottom:40px;}
.mb50{margin-bottom:50px;}
.mb60{margin-bottom:60px;}
.mb70{margin-bottom:70px;}
.mb80{margin-bottom:80px;}
.mb90{margin-bottom:90px;}
.mb100{margin-bottom:100px;}


.border_bottom{
	border-bottom:1px solid #414548;
	padding-bottom:10px;
	margin-bottom:10px;
}

.text{
	display:inline-block;
}
.text_2{
	display:inline-block;
	text-indent:1em;
}

/*
font-family: 'M PLUS Rounded 1c', sans-serif;　丸ゴシック
weight:300/400/500/700
font-family: 'Noto Sans JP', sans-serif;　ゴシック
weight:300/400/500/700
font-family: 'Noto Serif JP', serif;　明朝
weight:300/400/500/600/700
font-family: 'Josefin Sans', sans-serif;　英字のみ
500/600
*/


/*body
****************************/
html {
 height: 100%;
}

body{
	height: 100%;
	font-family: 'M PLUS Rounded 1c', sans-serif;
    background-color: #;
	color:#414548;
}
/*header
-------------------*/
.logo{
	/*width: 60%;*/
	margin-top: 100px;
	/*margin-bottom: -130px;本来はなし*/
}
.page-heder{
	display: flex;
	justify-content: space-between;
}
.wrapper{
	max-width: 1100px;
	margin: 0 auto; /*中央に配置する指定*/
	padding: 4%; /*スマホ向け余白の指定*/
}


/*ヘッダーメニュー入れるとき-------------------*/
header {
	z-index: 9999;
	padding: 30px 4% 10px;
	position: fixed;
	top: 0;
	width: 100%;
	background-color: #be8f68;
	display: flex;
	align-items: center;
	transition: all .5s ease-out;
	height:100px;
}
header.min-header {
	height:60px;
	padding: 10px 4%;
	background-color: #be8f68 ;
}
header h1 {
	margin: 0;
	padding: 0;
	font-size: 20px;
}
header a {	
	text-decoration: none;
	color: #fff;
}
a {
	text-decoration: none;
}
p {
	line-height: 2;
}
nav {
	margin: 0 0 0 auto;
}
ul {
	list-style: none;
	margin: 10px 0 0;
	display: flex;
}
li {
	margin: 0 0 0 10px;
	font-size: 18px;
}
header .login{
	position: relative;
	display: block;
	max-width:600px;
	width:550px;
	height:35px;
	margin:10px 0 5px;
	background-color:#f39800;
	border-radius:3rem;
	left: 20px;
}

header .login a p{
	font-size:0.8rem;
	line-height:1.5rem;
	font-weight:500;
	padding:.15rem 1rem 1rem;
	color:#fff;
	text-align:center;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	transition: all .3s ease-out;
	border-radius:3rem;
}
/*header .login a p:hover  {
	color: #fff;
	border-radius:3rem;
	background-color: #043c78;
	max-width:600px;
	width:550px;
	height:35px;
}*/


.sp-nav {
	display: none;
}
.pc-nav li {
	font-size: 1rem;
	line-height: 20px;
	font-weight: 500;
	margin: 0px 1.2em;
	padding: 0px;
	font-family: 'Noto Sans JP', sans-serif;
	color: #fff;

}
.pc-nav ul li{
	float: left;
	border-left: 1px solid #fff;
	padding-left: 13px;
	margin-right: 13px;
	left: -50%;
}

@media screen and (max-width: 640px) {
	/**ハンバーガーメニュー	**/
	.pc-nav {
		display: none;
	}
	.sp-nav {
		z-index: 1;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		display: block;
		background: rgba(0, 0, 0, .8);
		opacity: 0;
		transform: translateY(-100%);
		transition: all .2s ease-in-out;
	}
	#hamburger {
		position: relative;
		display: block;
		width: 50px;
		height: 25px;
		margin: 0 0 0 auto;
		left: -20px;

	}
	#hamburger span {
		position: absolute;
		top: 50%;
		left: 0;
		display: block;
		width: 100%;
		height: 2px;
		background-color: #fff;
		transform: translateY(-50%);
	}
	#hamburger::before {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 2px;
		background-color: #fff;
	}
	#hamburger::after {
		content: '';
		display: block;
		position: absolute;
		bottom: 0;
		left: 0;
		width: 70%;
		height: 2px;
		background-color: #fff;
	}
	/*スマホメニュー	*/
	header {
		z-index: 9999;
		padding: 30px 4% 20px;
		position: fixed;
		top: 0;
		width: 100%;
		background-color: #be8f68;
		display: flex;
		align-items: center;
		transition: all .5s ease-out;
		height:70px;
	}
	header.min-header {
		height:70px;
		padding: 30px 4% 20px;
		background-color: #be8f68 ;
	}
	.sp-nav ul {
		padding: 0;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		height: 100%;
	}
	.sp-nav li {
		margin: 0;
		padding: 0;
		line-height: 25px;
		text-align:center;
	}
	
	/*　閉じる	*/
	.sp-nav li span {
		font-size: 15px;
		color: #fff;
	}

	.sp-nav li a, .sp-nav li span {
		display: block;
		padding: 20px 0;
	}

	/*-閉じるアイコンー	*/
	.sp-nav .close {
		position: relative;
		padding-left: 20px;
	}
	.sp-nav .close::before {
		content: '';
		position: absolute;
		top: 50%;
		left: 0;
		display: block;
		width: 16px;
		height: 1px;
		background: #fff;
		transform: rotate( 45deg );
	}
	.sp-nav .close::after {
		content: '';
		position: absolute;
		top: 50%;
		left: 0;
		display: block;
		width: 16px;
		height: 1px;
		background: #fff;
		transform: rotate( -45deg );
	}
	}
	.toggle {
		transform: translateY( 0 );
		opacity: 1;
	}
	.main-visual {
		padding: 0 4%;
	}
	h2 {
		line-height: 1.6;
		text-align: center;
	}
/*スマホログインボタン*/
	header .login-sp{
		position: absolute;
		display: block;
		max-width:100%;
		width:640px;/*350*/
		height:35px;
		margin:110px 0 5px;
		background-color:#f39800;
		left:0rem; /*0.9*/
		bottom:.5rem;
	}
	
	header .login-sp a p{
		font-size:0.8rem;
		line-height:1.5rem;
		font-weight:500;
		padding:.15rem 1rem 1rem;
		text-align:center;
		color:#fff;
		font-family: 'M PLUS Rounded 1c', sans	-serif;
		transition: all .3s ease-out;
		border-radius:3rem;
	}

table {
	max-width: 700px;
	margin: 0 auto;
	color: #aaa;
}

.break {
	margin-bottom:200px;
}
}



/*container
****************************/
#container{
	width: 100%;
	height: 100vh;
	position: relative;
	overflow: hidden;
}
#bg-video{
	object-fit: cover;
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;	
}
#video_area_sp{
	display:none;
}
#text_container{
	position:absolute;
	top:34%;
	left:12%;
}
#text_container h1{
	margin-bottom:20px;
}


/*container2
****************************/
#container2{
	width:100%;
	margin:0 auto;
	padding-top:20px;
}
.menu-container-sp{
	display:none;
}
#menu_btn{
	display:none;
}


/*#text_container2
****************************/
#text_container2{
	width:750px;
	margin:0 auto;
}

/*#text_container2_1（本文）
****************************/
#text_container2_1{
	width:680px;
	margin:0 auto;
	margin-top:60px;
}
#text_container2_1 .space{
	font-size:12px;
	text-align: center;
}
#text_container2_1 .kao{	
	width:100%;
	margin:150px auto 70px;
	text-align:center;
}
#text_container2_1 .kao img{	
	width:80%;
}
#text_container2_1 .kao .name-box{
	position:relative;
	bottom:1px;
	width:100%;
	max-width:543px;
	heigth:100%;
	padding:6px 0 10px;
	background-color:#efefef;
	margin:0 auto;
}
#text_container2_1 .kao .name{	
	font-size:24px;
	font-weight:400;
	text-align:center;
	margin:10px auto 5px;
}
#text_container2_1 .kao .position{	
	font-size:14px;
	line-height:21px;
	font-weight:300;
	text-align:center;
	margin:0 auto 10px;
}
@media screen and (max-width: 750px) {
#text_container2_1 .kao{	
	width:100%;
	margin:70px auto 50px;
	text-align:center;
}
#text_container2_1 .kao img{	
	width:100%;
}
#text_container2_1 .kao .name{	
	font-size:18px;
	font-weight:400;
	text-align:center;
	margin:10px auto 0px;
}
#text_container2_1 .kao .position{	
	font-size:12px;
	line-height:17px;
	font-weight:300;
}
}


#text_container2_1 p{
	font-size:18px;
	font-weight:400;
	line-height:34px;
	text-align: justify;
}
#text_container2_1 #figure{
	/*background-color:pink;*/
	text-align:center;
}
#text_container2_1 #figure .s_cite{
	font-size:18px;
	line-height:23.px;
	font-weight:400;
	font-family: 'Noto Sans JP', sans-serif;
	text-align:left;
	text-indent: -2em;
	padding-left: 3em;
	margin-bottom:20px;
}
#text_container2_1 ul{
	font-size:18px;
	font-weight:400;
	line-height:34px;
	font-family: 'Noto Sans JP', sans-serif;
}
#text_container2_1 ul li{
	text-indent:-18px;
	padding-left:18px;
}
#text_container2_1 .small{
	font-size:12px;
	line-height:23px;
	vertical-align:super;
}
#text_container2_1 .small-14{
	font-size:14px;
	line-height:26px;
	vertical-align:super;
}
#text_container2_1 .small-16{
	font-size:16px;
	line-height:28px;
	margin: 0 0 10px;
	vertical-align:super;
}
#text_container2_1 .round{
	color:#d3d3d3;
}
#text_container2_1 #biography{
	font-size:14px;
	line-height:25px;
	margin:20px 0 50px;
	border-top:1px solid #666;
	border-bottom:1px solid #666;
	padding:20px 0 20px;
	font-family: 'Noto Sans JP', sans-serif;
}
/*記事タイトル*/
#text_container2_1 .title_size35{
	font-size: 2.8rem;
	line-height: 3.2rem;
	font-weight: 500;
	margin-bottom:10px;
	font-family: 'Noto Sans JP', sans-serif;
}
#text_container2_1 .title_size31{
	position:relative;
	font-size: 2.5rem;
	line-height: 3.5rem;
	font-weight: 600;
	margin-bottom:10px;
	font-family: 'Noto Sans JP', sans-serif;
}
#text_container2_1 .title_size21{
	position:relative;
	font-size: 2rem;
	line-height: 2.5rem;
	font-weight: 500;
	margin-bottom:10px;
	font-family: 'Noto Sans JP', sans-serif;
	color: #409ecc;
}
#text_container2_1 .count{
	width:85px;
	font-size: 16px;
	line-height: 18px;
	font-weight: 500;
	margin-bottom:10px;
	padding:10px 15px;
	border-radius: 20px;
	font-family: 'Noto Sans JP', sans-serif;
	background-color:#CCC;
	color: #409ecc;
}
/*本文見出し*/
#text_container2_1 .midashi_center{
	font-size:30px;
	line-height:38px;
	margin: 50px 0 0px 0;
	font-weight:600;
	font-family: "Zen Old Mincho", serif;
  	color:#4e454a;
	text-align:center;
}
#text_container2_1 .midashi{
	font-size:26px;
	line-height:35px;
	margin: 50px 0 0px 0;
	font-weight:6000;
	font-family: "Zen Old Mincho", serif;
	color:#808080 ;
}
.heading_midasahi {
	width:80%;
	border-bottom: solid 5px #eae8e1;
	position: relative;
	padding: 0 0 5px;
	margin:10px auto 30px;
}
.heading_midasahi::after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 5px #bee0c2 ;
  bottom: -5px;
  width: 30%;
}
#text_container2_1 .midashi_m{
	font-size:25px;
	line-height:34px;
	font-weight:500;
	margin: 30px 0 30px 0;
	font-family: 'Noto Sans JP', sans-serif;
	padding: 0.25em 0.5em;/*上下 左右の余白*/
	color: #494949;/*文字色*/
	background: transparent;/*背景透明に*/
	border-left: solid 5px #7db4e6;/*左線*/
}
#text_container2_1 .midashi_s{
	font-size:22px;
	line-height:31px;
	margin: 30px 0 25px 0;
	font-weight:500;
	font-family: 'Noto Sans JP', sans-serif;
	color:#409ecc;
}
#text_container2_1 .midashi_subtitle{
	font-size:17px;
	line-height:20px;
	vertical-align:middle;
	font-weight:500;
	font-family: 'Noto Sans JP', sans-serif;
	color:#494949;
}
#text_container2_1 .accents{
	font-weight:600;
	font-family: 'Noto Sans JP', sans-serif;
	color:#000000;
}
#text_container2_1 .accents_indent{
	line-height:29px;
	font-weight:500;
	font-family: 'Noto Sans JP', sans-serif;
	color:#000000;
	margin: 0 0 15px;
	padding-left:1em;
	text-indent:-1em;
}
#text_container2_1 .accents_indent-2{
	line-height:29px;
	font-weight:500;
	font-family: 'Noto Sans JP', sans-serif;
	color:#000000;
	margin: 0 0 15px;
	padding-left:3em;
	text-indent:-2em;
}


/*図表*/
#text_container2_1 .figure{
	font-size:16px;
	font-weight:600;
	font-family: 'Noto Sans JP', sans-serif;
	color:#000000;
}
#text_container2_1 .figure-text-right{
	font-size:15px;
	line-height:20px;
	font-weight:400;
	text-align:right;
	color:#4e454a;
	margin: 10px 0 0 0 ;
}

/*囲い1*/
#text_container2_1 .casestudy{
	font-size:18px;
	font-weight:400;
	line-height:34px;
	font-family: 'Noto Sans JP', sans-serif;
	color:#666c67;
	background-color: #f8f4e6;
	padding: 30px 40px 30px 40px;
}
#text_container2_1 .casestudy-2{
	font-size:18px;
	font-weight:400;
	line-height:34px;
	font-family: 'Noto Sans JP', sans-serif;
	color:#666c67;
	background-color: #f5f5f5;
	padding: 30px 40px 30px 40px;
}
#text_container2_1 .casestudy-2 .midashi_s{
	color: #008db7;
	margin: 0 0 5px 0;
}

/*囲い2*/
#text_container2_1 .box2 {
    padding: 1em 2em;
    margin: 3em 1;
	background: #FFF;
    border: solid 3px #006eb0;/*線*/
    border-radius: 10px;/*角の丸み*/
}

#text_container2_1 .box2 .p{
	font-size: 18px;
	font-weight: 450;
	line-height:40px;
	color: #006eb0;/*文字色*/
	font-family: 'Noto Sans JP', sans-serif;
	margin-top: 15px; 
	margin-bottom:5px;
}
#text_container2_1 .box-3{
	width:;
	border: solid 2px #008db7;
	border-radius: 15px;
	background-color: #008db7;
	padding: 20px 30px;
	margin: 2rem 0;
}
#text_container2_1 .box-3 p{
	font-size:16px;
	font-weight:400;
	line-height:30px;
	color: #fff;
	font-family: 'Noto Sans JP', sans-serif;
	text-align:justify;
	margin:10px 0;
}
#text_container2_1 .box-3 .accents{
	font-size:16px;
	font-weight:500;
	line-height:35px;
	font-family: 'Noto Sans JP', sans-serif;
	text-indent: -1em;
	padding-left: 1em;
}
#text_container2_1 .box-3 .midashi{
	font-size:24px;
	font-weight:400;
	margin: 10px 0 20px;
	color: #fff;
	line-height:36px;
	text-align:center;
	font-family: 'Noto Sans JP', sans-serif;
}

/*引用・参考文献*/
#text_container2_1 .s_cite{
	position:relative;
	font-size:16px;
	line-height:23px;
    font-style : italic; 
	font-family: 'Noto Sans JP', sans-serif;
	text-align:left;
	text-indent: -2em;
	padding-left: 2em;
	margin-bottom:5px;
}
#text_container2_1 .superscript{
	font-size:12px;
	line-height:20px;
	text-indent: -2em;
	padding-left: 2em;
	margin:0 0 5px;
}
#text_container2_1 .next{
	/*position:relative;*/
	position:;
	font-size:20px;
	text-align:right;
	font-family: 'Noto Sans JP', sans-serif;
	color:;
}
#text_container2_1 .copylight{
	/*position:relative;*/
	position:;
	font-size:18px;
	text-align:right;
	font-family: 'Noto Sans JP', sans-serif;
	color:;
}
#text_container2_1 .box{
color: #ea5532;
background-color: #fff;
border: 4px double #ea5532;
font-size: 100%;
padding: 3px 10px 3px 10px;
}
#text_container2_1 .onepoint{
	font-size:17px;
	line-height:25px;
	font-weight:500;
	font-family: "Yu Gothic", YuGothic, Verdana, 'Hiragino Kaku Gothic ProN','Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'メイリオ', Meiryo, sans-serif;
	color:#0075c2;
    /*font-style : italic;*/ 
	text-align:center;
	padding: 10px 24px;
}
#text_container2_1 .onepoint-2{
	font-size:12px;
	line-height:18px;
	font-weight:400;
	font-family: "Yu Gothic", YuGothic, Verdana, 'Hiragino Kaku Gothic ProN','Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'メイリオ', Meiryo, sans-serif;
	color:#252525;
    /*font-style : italic;*/ 
	text-align:right;
	padding: 10px 24px;
}
.attention{
	width:100%;
	height:50%;
	margin:5px 0 0;
}
.attention p{
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 0.8rem;
	line-height:1.5rem;
	font-weight: 300;
	text-align: center;
	color:#504946;
}




/*
ボタン
*******************/
.container {
  font-family: "Yu Gothic", YuGothic, Verdana, 'Hiragino Kaku Gothic ProN','Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'メイリオ', Meiryo, sans-serif;
  text-align: center;
  padding-top: 40px;
}




/* ここから下がボタンのCSS　*/
#button_all{
	width:750px;
	margin:0 auto;
}
#button{
	width:100%;
	margin:0 auto;
	padding-top:20px;
}
.button_2{
	width: 100%;
	height: ;
	position: center;
	overflow: hidden;
	text-align:center;
}
.button_2 p{
	font-size:18px;
	font-weight:300;
	line-height:34px;
  font-family: "Yu Gothic", YuGothic, Verdana, 'Hiragino Kaku Gothic ProN','Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'メイリオ', Meiryo, sans-serif;
}
.btn-animation-02 {
  display: inline-block;
  width: 80%;
  text-align: center;
  background-color: #9ec34b;
  border: 2px solid #9ec34b;
  font-size: 16px;
  color: #9ec34b;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 24px;
  border-radius: 4px;
  position: relative;
  font-family: "Yu Gothic", YuGothic, Verdana, 'Hiragino Kaku Gothic ProN','Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'メイリオ', Meiryo, sans-serif;
}
.btn-animation-02 span {
  position: relative;
  z-index: 1;
}
.btn-animation-02::before,
.btn-animation-02::after {
  content: "";
  display: block;
  background-color: #FFF;
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  transition: .2s;
}
.btn-animation-02::before {
  left: 0;
}
.btn-animation-02::after {
  right: 0;
}
.btn-animation-02:hover:before,
.btn-animation-02:hover:after {
  width: 0;
  background-color: #FFF;
}
.btn-animation-02:hover {
  color: #FFF;
}




/*
目次
*******************/
#mokuji {
    padding: 2em 2em;
    margin: 3em 1;
	background: #efefef;
    border: solid 3px #fff;/*線*/
    border-radius: 10px;/*角の丸み*/
}
#mokuji .mokuji_m {
	font-size:19px;
    color: #7e837f;/*文字色*/
	font-family: 'Noto Sans JP', sans-serif;
	font-weight:500;
	padding: 5px 10px;
	line-height:25px;
}
#mokuji .mokuji_s {
	font-size:14px;
    color: #7e837f;/*文字色*/
	font-family: 'Noto Sans JP', sans-serif;
	font-weight:350;
	padding: 0px 15px;
	line-height:28px;
}

a:link {
  /*color: #626063;*/
}
a:hover {
  color: #25b7c0;
}
a:active {
  color: #25b7c0;
}
a.no-color-change:link,
a.no-color-change:visited,
a.no-color-change:hover,
a.no-color-change:active {
  color: #e62f8b;
}




/*
footer
*******************/
#footer{
	width:750px;
	margin:0 auto;
	padding-bottom:100px;
	padding-top:60px;
}
#footer_contactcontainer{
	width:680px;
	margin:0 auto;
	margin-top:80px;
}
#footer_contactcontainer p{
	font-size:15px;
	font-weight:300;
	line-height:21px;
	text-align:center;
	font-family: 'Noto Sans JP', sans-serif;
}
#footer_contactcontainer p a{
	color:#414548;
}
#footer_contactcontainer p .freedial{
	font-size:16px;
	font-weight:500;
}
#footer_contactcontainer p .desk{
	color:tomato;
	text-decoration:underline;
}
#footer hr{
	margin:60px 0;
}


/*
ページトップに戻る
********************/
#footer_button{
	width:400px;
	margin:0 auto;
	text-align:center;
	margin-top:0px;
	margin-bottom:60px;
	margin-top:60px;
}
#footer_button a{
	font-size:25px;
	text-align:center;
	color:#414548;
	width:400px;
	height:60px;
	line-height:60px;
	border:1px solid #414548;
	border-radius:10px;
	display:block;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight:400;
}
#footer_button a:hover{
	color:white;
	background-color:#414548;
	transition: 0.5s;
}

/*コピーライト*/
#copywriter{
	width:100%;
	margin:0 auto;
	height:20px;
}
#copywriter2{
	width:60%;
	float:left;
	padding-left:2%;
	font-size:15px;
	font-weight:300;
	line-height:20px;
}
#copywriter1{
	width:35%;
	float:left;
	text-align:right;
	position:relative;
	top:6px;
}



/*
動画
*/
#video_area{
	width: 100%;
	height: ;
	position: relative;
  	overflow: hidden;
}
.video{
  position:relative;
  width:100%;
  padding-top:56.25%;
}
.video iframe{
  position:absolute;
  top:0;
  right:0;
  width:100%;
  height:100%;
}



/* 上からフェードイン */
.slide-top {
	opacity: 0;
	transform: translate(0, -20px);
	transition: all .5s ease-out;
 }

/* 下からフェードイン */
.slide-bottom {
	opacity: 0;
	transform: translate(0, 80px);
	transition: all 1.5s ease-out;
 }

 /* 左からフェードイン */
.slide-left {
	opacity: 0;
	transform: translate(-250px, 0);
	transition: all 0.8s ease-out;
 }

/* 右からフェードイン */
.slide-right {
	opacity: 0;
	transform: translate(15px, 0);
	transition: all 0.5s ease-out;
 }
 
 /* スマホPC表示切り替え */
@media screen and (min-width: 751px) {
  /* 960px以上に適用 */
  /* max-width: 1080px; */

  .pcview {
    display: block;
  }
  .spview {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .pcview {
    display: none;
  }
  .spview {
    display: block;
  }
}