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

/***********************
基本スタイル
***********************/
html * {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
*, *:after, *:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
html{
	font-size: 62.5%;
}
body {
	line-height: 2.6rem;
	max-width: 1600px;
	margin:0 auto;
}
body, th, td, h1, h2, h3, h4, h5, h6, pre, input, textarea, option, div, p, dt, dd, li, address {
	font-family: Futura, 'Avenir Next', "Helvetica Neue", Helvetica, Arial, Verdana, 游ゴシック, 'Yu Gothic', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, sans-serif;
	font-size: 1.2rem;
	font-weight: normal;
	font-style: normal;
	color: #333333;
}
body, html {
	/* important */
	height: 100%;
}
a {
	color: #333333;
	text-decoration: none;
}
.ef {
	font-family: Futura, Trebuchet MS, Arial, sans-serif;
}
.jf {
	font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
}
.tx-s {
	font-size: 1.2rem;
}
.tx-m {
	font-size: 1.4rem;
}
.tx-l {
	font-size: 1.6rem;
}
.fw-b {
	font-weight: bold;
}
.color1 {
	color: #333333 !important;
}
.color2 {
	color: #cccccc;
}
.wid {
	width: 100%;
}
.pad {
	padding-left: 20px !important;
	padding-right: 20px !important;
}
.imgtxt {
	text-indent: -9999px;
	overflow: hidden;
}
.clr, .clear {
	clear: both;
}
.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
.clearfix {
	min-height: 1px;
}
* html .clearfix {
	height: 1px;/*¥*//*/
	height: auto;
	overflow: hidden;
	/**/
}
.center {
	text-align: center;
}
.right {
	text-align: right;
}
.left {
	text-align: left !important;
}
.mawarikomi-l {
	float: left;
}
.mawarikomi-r {
	float: right;
}
.margin-b20{
	margin-bottom: 20px;
}
.margin-b40{
	margin-bottom: 40px;
}
.spview {
	display: none;
}
.pcview {
	display: block;
}
img { 
	pointer-events: none;
}
img {
	-webkit-touch-callout:none;
	-webkit-user-select:none;
	-moz-touch-callout:none;
	-moz-user-select:none;
	touch-callout:none;
	user-select:none;
}

/***********************
共通スタイル
***********************/
.wrapper {
	width: 100%;
	height: 100vh;
}
header {
	width: 100%;
	height: 80px;
	position: absolute;
	z-index: 2;
	background-color: rgba(255,255,255,.7);
}
.logo {
	width: 9%;
	padding: 15px 0 0 40px;
}
.logo h1 img{
	width: 100%;
	height: auto;
}
.logo h1 a{
	display: block;
}

/* モーダルウィンドウメニュー */
.menu-btn {
    position: fixed;
    top: 25px;
    right: 40px;
    width: 40px;
    height: 30px;
    line-height: 50px;
    font-size: 1.2rem;
    text-align: center;
    cursor: pointer;
    z-index: 3;
}
.menu-btn span {
    color: #000;
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #000;
	border-radius: 4px;
}
.menu-btn span:nth-of-type(1) {
	top: 0;
}
.menu-btn span:nth-of-type(2) {
	top: 14px;
}
.menu-btn span:nth-of-type(3) {
	bottom: 0;
}
/*.menu-btn a::after {
	position: absolute;
	left: 0;
	bottom: -40px;
	content: 'MENU';
	display: block;
	width: 100%;
	color: #000;
	font-size: 1.2rem;
	text-decoration: none;
	text-align: center;
	transition: all .4s;
}
.open .menu-btn a::after {
	content: 'CLOSE';
	bottom: -45px;
	font-size: 1.2rem;
}*/
.open .menu-btn span:nth-of-type(1) {
	-webkit-transform: translateY(14px) rotate(-45deg);
	transform: translateY(14px) rotate(-45deg);
}
.open .menu-btn span:nth-of-type(2) {
	opacity: 0;
}
.open .menu-btn span:nth-of-type(3) {
	-webkit-transform: translateY(-14px) rotate(45deg);
	transform: translateY(-14px) rotate(45deg);
}
.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,1);
    -webkit-transition: all .5s;
    transition: all .5s;
    visibility: hidden;
    opacity: 0;
	z-index: 2;	
	display: flex;
	flex-wrap: wrap;
	padding: 100px 20px;
}
.menu ul {
	width: 100%;
    vertical-align: middle;	
	display: flex;
	flex-wrap: wrap;
	margin: 0 auto;
}
.menu li {
	width: 48%;
	height: auto;
    line-height: 80px;
    margin: 0 auto 20px;
    text-align: center;
}
.menu li a {
    display: block;
    font-size: 1.6rem;
    color: #333;	
	border: 1px solid #ccc;
	transition: all .5s ease 0s;
}
.menu li a:hover {
	background: #333333;
	color: #fff;
}
.open .menu {
    -webkit-transition: all .5s;
    transition: all .5s;
    visibility: visible;
    opacity: 1;
	overflow: scroll;
}
/* モーダルウィンドウメニューここまで */
.flex-01{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.flex-02{
	display: flex;
	justify-content: space-between;
}
.flex-01::after{
	content:"";
	display: block;
	width:30%;
}
.button-1{
	width: 40%;
    height: 50px;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: #333333;
	border: 1px solid #333333;
	margin: 0 auto;
}
.button-1 a{
    display: block;
    font-size: 1.2rem;
    color: #ffffff;
    text-decoration: none;
    line-height: 50px;
    transition: all .5s ease;
    z-index: 5;
    position: relative;
}
.eff-1{
	width: 100%;
    height: 50px;
    left: -320px;
    top: -50px;
    background: #5b5b5b;
    position: absolute;
    transition: all .2s ease;
    z-index: 4;
}
.button-1:hover .eff-1{
	left:0;
	top:0;
}
.button-1:hover a{
	color:#fff;
}
footer .sns-box{
	width: 980px;
	margin: 0 auto 60px;
}
footer .sns-box ul{
	display: flex;
	justify-content: space-between;
}
footer .sns-box ul li{
	width: 30%;
    text-align: center;
    padding: 10px 0 0;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
footer .sns-box ul li a{
	display: block;
	transition: 0.3s;
}
footer .sns-box ul li a:hover{
	opacity: 0.7;
}
footer .sns-box ul li a img{
	width: 8%;
	height: auto;
}
footer .f-inner{
	margin-bottom: 20px;
}
footer .f-inner h3{
	text-align: center;
	margin-bottom: 40px;
}
footer .f-inner h3 img{
	width: 10%;
}
footer .f-inner ul{
	text-align: center;
	margin-bottom: 20px;
}
footer .f-inner p{
	text-align: center;
}
footer .f-contact{
	margin-bottom: 20px;
}
footer .f-contact a{
	display: block;
	text-align: center;
	padding: 10px 0;
	color: #fff;
	background: #333;
	transition: 0.3s;
}
footer .f-contact a:hover{
	opacity: 0.7;
}
footer .f-contact a img{
	width: 2.4%;
    height: auto;
    padding-right: 10px;
    vertical-align: middle;
    padding-bottom: 3px;
}
footer p.copy{
	text-align: center;
	padding-bottom: 20px;
}
/* pagetop */
#pageTop {
	position: fixed;
	bottom: 20px;
	right: 10px;
}
#pageTop a {
	display: block;
	z-index: 999;
	padding: 6px;
	border-radius: 30px;
	width: 40px;
	height: 40px;
	background-color: #333333;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
	transition: 0.3s;
}
#pageTop a:hover {
	text-decoration: none;
	opacity: 0.7;
}
/* web-contact */
#web-contact {
	position: fixed;
	/*bottom: 60px;
	left: 20px;*/
	top: 160px;
	right: -5px;
}
#web-contact a {
	display: block;
	z-index: 999;
	padding: 6px;
	text-decoration: none;
	text-align: center;
	transition: 0.3s;
}
#web-contact a:hover {
	text-decoration: none;
	opacity: 0.7;
}
/* web-insta */
#web-insta {
	position: fixed;
	/*bottom: 200px;
	left: 20px;*/
	top: 340px;
	right: -5px;
}
#web-insta a {
	display: block;
	z-index: 999;
	padding: 6px;
	text-decoration: none;
	transition: 0.3s;
}
#web-insta a:hover {
	text-decoration: none;
	opacity: 0.7;
}
#web-insta a img{
}
/* web-fb */
#web-fb {
	position: fixed;
	/*bottom: 200px;
	left: 20px;*/
	top: 406px;
	right: -5px;
}
#web-fb a {
	display: block;
	z-index: 999;
	padding: 6px;
	text-decoration: none;
	transition: 0.3s;
}
#web-fb a:hover {
	text-decoration: none;
	opacity: 0.7;
}
#web-fb a img{
}
/* web-line */
#web-line {
	position: fixed;
	/*bottom: 200px;
	left: 20px;*/
	top: 472px;
	right: -5px;
}
#web-line a {
	display: block;
	z-index: 999;
	padding: 6px;
	text-decoration: none;
	transition: 0.3s;
}
#web-line a:hover {
	text-decoration: none;
	opacity: 0.7;
}
#web-line a img{
}
.bg-01{
	background-color: #eeeeee;
	padding: 60px 0;
}
/***********************
top
***********************/
/* メイン画像 */
#top .mainvis {
	height: 100%;
	max-width:1600px;
	margin:0 auto 60px;
}
/* コンテンツ */
#top .contents-box-01{
	margin-bottom: 60px;
}
#top .contents-box-01 h3{
	text-align: center;
	margin-bottom: 40px;
}
#top .contents-box-01 h3 img{
	width: 10%;
}
#top .contents-box-01 p{
	text-align: center;
}
#top .contents-box-01 p img{
	width: 32%;
}
#top .banner-box{
	width: 980px;
	margin: 0 auto;
}
#top .banner-box h2{
	margin-bottom: 40px;
}
#top .banner-box h2 img{
	width: 56%;
	height: auto;
}
#top .banner-box h3 a{
	display: block;
}
#top .banner-box h3 a img{
	width: 100%;
	height: auto;
}
#top .contents-box-02{
	position: relative;
	margin-bottom: 60px;
}
#top .contents-box-02 p.vis{
	margin-bottom: 60px;
}
#top .contents-box-02 .contents-inner{
	width: 980px;
	margin: 0 auto;
}
#top .contents-box-02 .contents-inner h2{
	margin-bottom: 40px;
}
/*#top .contents-box-02 .contents-inner h2 img{
	width: 24%;
}*/
#top .contents-box-02 p.line_side{
	position: absolute;
	top: 10px;
	right: 40px;
}
#top .contents-box-03{
	margin-bottom: 60px;
}
#top .contents-box-03 p img{
	width: 100%;
	height: auto;
}
#top .contents-box-04{
	margin-bottom: 60px;
}
#top .contents-box-04 h2{
	margin-bottom: 40px;
	text-align: center;
}
/*#top .contents-box-04 h2 img{
	width: 28%;
}*/
#top .contents-box-04 .contents-inner{
	width: 980px;
	margin: 0 auto;
}
#top .contents-box-04 .menu-box{
	width: 30%;
	margin-bottom: 40px;
}
#top .contents-box-04 .menu-box a{
	display: block;
	transition: 0.3s;
}
#top .contents-box-04 .menu-box a:hover{
	opacity: 0.7;
}
#top .contents-box-04 .menu-box a img{
	width: 100%;
	height: auto;
}
#top .contents-box-04 .menu-box h3{
	font-size: 1.6rem;
}
#top .contents-box-05{
	position: relative;
	margin-bottom: 60px;
}
#top .contents-box-05 p.vis{
	margin-bottom: 60px;
}
#top .contents-box-05 .contents-inner{
	width: 980px;
	margin: 0 auto;
}
#top .contents-box-05 h2{
	margin-bottom: 40px;
	text-align: center;
}
#top .contents-box-05 h2 img{
	width: 64%;
}
#top .contents-box-05 p.line_side{
	position: absolute;
	top: 10px;
	right: 40px;
}

/*テスト用*/
#top .contents-box-05 .menu-box{
	width: 30%;
	margin-bottom: 40px;
}
#top .contents-box-05 .menu-box a{
	display: block;
	transition: 0.3s;
}
#top .contents-box-05 .menu-box a:hover{
	opacity: 0.7;
}
#top .contents-box-05 .menu-box a img{
	width: 100%;
	height: auto;
}
#top .contents-box-05 .menu-box h3{
	font-size: 1.6rem;
}
/*テスト用ここまで*/

#top .contents-box-06{
	margin-bottom: 60px;
}
#top .contents-box-06 h2{
	margin-bottom: 40px;
	text-align: center;
}
/*#top .contents-box-06 h2 img{
	width: 28%;
}*/
#top .contents-box-06 p{
	margin-bottom: 40px;
}
#top .contents-box-06 p img{
	width: 100%;
	height: auto;
}
/* お知らせ */
#top .contents-box-information{
	margin-bottom: 60px;
}
#top .contents-box-information h2{
	margin-bottom: 20px;
	text-align: center;
}
#top .contents-box-information h2 img{
	width: 16%;
	height: auto;
}
#top .contents-box-information .news-contents{
	width: 980px;
	margin: 0 auto;
}
#top .contents-box-information .news-contents .news-list{
	width: 30%;
	margin: 0px 10px 40px;
}
#top .contents-box-information .news-contents .news-list .news-text{
	margin-bottom: 10px;
}
#top .contents-box-information .news-contents .news-list .news-text ul{
	flex-direction: column;
}
#top .contents-box-information .news-contents .news-list .news-text ul li{
	color: #333;
	text-align: left;
}
#top .contents-box-information .news-contents .news-list a{
	display: block;
	transition: 0.3s;
}
#top .contents-box-information .news-contents .news-list a:hover{
	opacity: .7;
}
#top .contents-box-information .news-contents .news-list p img{
	width: 100%;
	height: auto;
	padding-bottom: 20px;
}
#top .gallery ul{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;	
}
#top .gallery{
	margin-bottom: 40px;
}
#top .gallery ul::after {
	content: "";
	display: block;
	width: 32%;
	height: 0;
}
#top .gallery ul li{
	width: 20%;
	margin-bottom: -10px;
}
#top .gallery ul li a{
	display: block;
	transition: all .3s ease 0s;
}
#top .gallery ul li a:hover{
	opacity: .5;
}
#top .gallery ul li a img{
	width: 100%;
	height: auto;
}

/***********************
second
***********************/
/* コンテンツ */
#second .container{
	padding-top: 200px;
}
#second .contents-box-01{
	margin-bottom: 80px;
}
#second .contents-box-02,
#second .contents-box-03,
#second .contents-box-04,
#second .contents-box-05,
#second .contents-box-06,
#second .contents-box-07,
#second .contents-box-08,
#second .contents-box-09,
#second .contents-box-10,
#second .contents-box-11{
	margin-bottom: 60px;
}
#second .contents-box-03,
#second .contents-box-04,
#second .contents-box-05,
#second .contents-box-07,
#second .contents-box-08,
#second .contents-box-09,
#second .contents-box-10{
	width: 980px;
	margin: 0 auto 60px;
}
#second .banner-box{
	width: 980px;
	margin: 0 auto 60px;
}
#second .banner-box p a{
	display: block;
}
#second p.ttl-01{
	font-size: 1.6rem;
	color: #c8c8c8;
}
#second p.ttl-01_01{
	color: #333333;
}
#second p.ttl-02{
	font-size: 2.4rem;
	color: #c8c8c8;
}
#second .contents-box-01 .s-box-01 h2{
	text-align: center;
}
#second .contents-box-01 .s-box-01 p{
	text-align: center;
	padding-bottom: 24px;
}
#second .contents-box-01 .s-box-02 p{
	text-align: center;
}
#second .contents-box-02 p img,
#second .contents-box-06 p img,
#second .contents-box-11 p img{
	width: 100%;
	height: auto;
}
#second .contents-box-03 .s-box-01,
#second .contents-box-04 .s-box-01,
#second .contents-box-05 .s-box-01,
#second .contents-box-07 .s-box-01,
#second .contents-box-08 .s-box-01,
#second .contents-box-09 .s-box-01{
	margin-bottom: 40px;
}
#second .contents-box-03 .s-box-01 h3,
#second .contents-box-04 .s-box-01 h3,
#second .contents-box-05 .s-box-01 h3,
#second .contents-box-07 .s-box-01 h3,
#second .contents-box-08 .s-box-01 h3,
#second .contents-box-09 .s-box-01 h3{
	text-align: center;
}
#second .contents-box-03 .s-box-01 p,
#second .contents-box-04 .s-box-01 p,
#second .contents-box-05 .s-box-01 p,
#second .contents-box-07 .s-box-01 p,
#second .contents-box-08 .s-box-01 p,
#second .contents-box-09 .s-box-01 p{
	text-align: center;
	padding-bottom: 16px;
}
#second .contents-box-03 .s-box-03,
#second .contents-box-04 .s-box-03,
#second .contents-box-07 .s-box-03{
	display: flex;
	margin-bottom: 40px;
}
#second .contents-box-03 .s-box-03 .s-box-l,
#second .contents-box-04 .s-box-03 .s-box-l,
#second .contents-box-07 .s-box-03 .s-box-l{
	width: 40%;	
}
#second .contents-box-03 .s-box-03 .s-box-r,
#second .contents-box-04 .s-box-03 .s-box-r,
#second .contents-box-07 .s-box-03 .s-box-r{
	width: 60%;	
}
#second .contents-box-03 .s-box-03 .s-box-l p,
#second .contents-box-04 .s-box-03 .s-box-l p,
#second .contents-box-07 .s-box-03 .s-box-l p{
    background: #aaaaaa;
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    color: #fff;
    display: grid;
    place-items: center;
	padding: 16px 0;
}
#second .contents-box-03 .s-box-03 .s-box-r ul,
#second .contents-box-04 .s-box-03 .s-box-r ul,
#second .contents-box-07 .s-box-03 .s-box-r ul{
	text-align: center;
}
#second .contents-box-03 .s-box-03 .s-box-r ul li,
#second .contents-box-07 .s-box-03 .s-box-r ul li{
	font-size: 2rem;
	font-weight: bold;
	padding: 16px 0;
}
#second .contents-box-03 .s-box-03 .s-box-r ul li span,
#second .contents-box-07 .s-box-03 .s-box-r ul li span{
	font-size: 1.2rem;
	padding: 0 10px;
}
#second .contents-box-03 .s-box-04{
	padding: 20px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
#second .contents-box-03 .s-box-04 h4{
	font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 8px;
}
#second .contents-box-04 .s-box-03 .s-box-r ul li{
	font-size: 1.4rem;
}
#second .contents-box-05 .s-box-03{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#second .contents-box-05 .s-box-03 .step-box{
	width: 30%;
	padding-bottom: 40px;
}
#second .contents-box-05 .s-box-03 .step-box .center p.ttl-03{
	color: #c8c8c8;
	padding-bottom: 10px;
}
#second .contents-box-05 .s-box-03 .step-box .center p img{
	width: 16%;
	height: auto;
	padding-bottom: 10px;
}
#second .contents-box-05 .s-box-03 .step-box .center p.ttl-04{
	font-size: 1.4rem;
	font-weight: bold;
	margin-bottom: 20px;
}
#second .contents-box-08 .s-box-04 .flex-01{
	margin-bottom: 40px;
}
#second .contents-box-08 .s-box-04 .flex-01 .s-box-l{
	width: 30%;
}
#second .contents-box-08 .s-box-04 .flex-01 .s-box-r{
	width: 70%;
}
#second .contents-box-08 .s-box-04 .flex-01 .s-box-r h4{
	font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 10px;
}
#second .contents-box-10 p{
	padding-top: 40px;
}

/* -----gallery----- */
#second .gallery ul{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;	
}
#second .gallery ul::after {
	content: "";
	display: block;
	width: 32%;
	height: 0;
}
#second .gallery ul li{
	width: 32%;
	margin-bottom: 10px;
}
#second .gallery ul li a{
	display: block;
	transition: all .3s ease 0s;
}
#second .gallery ul li a:hover{
	opacity: .5;
}
#second .gallery ul li a img{
	width: 100%;
	height: auto;
}
#swipebox-slider .slide .swipebox-inline-container, #swipebox-slider .slide .swipebox-video-container, #swipebox-slider .slide img {
    max-height: 80%;
    max-width: 90%;
}
#swipebox-close {
    top: 40px;
}

/***********************
gallery
***********************/
/*.gallery .contents-box-01 .s-box-01 h2 img{
	width: 32%;
	height: auto;
}*/
.gallery .contents-box-04 .contents-inner{
	width: 980px;
	margin: 0 auto;
}
.gallery .contents-box-04 .menu-box{
	width: 30%;
	margin-bottom: 40px;
}
.gallery .contents-box-04 .menu-box a{
	display: block;
	transition: 0.3s;
}
.gallery .contents-box-04 .menu-box a:hover{
	opacity: 0.7;
}
.gallery .contents-box-04 .menu-box a img{
	width: 100%;
	height: auto;
}
.gallery .contents-box-04 .menu-box h3{
	font-size: 1.6rem;
}

/***********************
photomenu
***********************/
/*.photomenu .contents-box-01 .s-box-01 h2 img{
	width: 32%;
	height: auto;
}*/
.photomenu .contents-box-04 .contents-inner{
	width: 980px;
	margin: 0 auto;
}
.photomenu .contents-box-04 .menu-box{
	width: 30%;
	margin-bottom: 40px;
}
.photomenu .contents-box-04 .menu-box a{
	display: block;
	transition: 0.3s;
}
.photomenu .contents-box-04 .menu-box a:hover{
	opacity: 0.7;
}
.photomenu .contents-box-04 .menu-box a img{
	width: 100%;
	height: auto;
}
.photomenu .contents-box-04 .menu-box h3{
	font-size: 1.6rem;
}

/***********************
profile
***********************/
/*.profile .contents-box-01 .s-box-01 h2 img{
	width: 20%;
	height: auto;
}*/
.profile .contents-box-03 .contents-table{
	margin-bottom: 60px;
}
.profile .contents-box-03 .contents-table table{
	width: 100%;
}
.profile .contents-box-03 .contents-table table,
.profile .contents-box-03 .contents-table table td,
.profile .contents-box-03 .contents-table table th{
	border: 1px solid #ccc;
}
.profile .contents-box-03 .contents-table table td,
.profile .contents-box-03 .contents-table table th{
	padding: 10px 20px;
}
.profile .contents-box-03 .contents-table table th{
	background: #aaaaaa;
	color: #ffffff;
	font-weight: bold;
}
.profile .contents-box-03 .contents-table table th{
	color: #ffffff;
}
.profile .contents-box-03 .s-box-01{
	width: 48%;
}
.profile .contents-box-03 .s-box-01 p img{
	width: 100%;
	height: auto;
}

/***********************
makeshift-studio
***********************/
.makeshift-studio .flex-01 .s-box-01{
	width: 48%;
}
.makeshift-studio .flex-01 .s-box-01 p img{
	width: 100%;
	height: auto;
}

/***********************
qa
***********************/
/*.qa .contents-box-01 .s-box-01 h2 img{
	width: 9%;
	height: auto;
}*/
.qa .contents-box-03 h2{
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	margin-bottom: 20px;
}

/***********************
contact
***********************/
input{
    text-indent: 1em;
    height: 40px;
    line-height: 3rem;
    font-size: 1.4rem;
    vertical-align: middle;
    border:1px solid #ccc;
    margin-bottom:20px;
	border-radius: 0px;
	width: 100%;
}
textarea{
    height: 140px;
    line-height: 2rem;
    font-size: 1.4rem;
    vertical-align: middle;
    border:1px solid #ccc;
    margin-bottom:20px;
	border-radius: 0px;
	width: 100%;
}
p.contact-tx-01{
	width: 80%;
	margin: 0 auto 40px;
}
.contact-box{
	width: 980px;
	margin: 0 auto 60px;
}
.contact-box table{
	margin: 20px auto;
	width: 80%;
}
.contact-box th{
	font-size: 1.4rem;
	text-align: left;
	vertical-align: top;
	width: 30%;
}
.contact-box td{
	width: 70%;
}
p.policy-link{
	margin-bottom: 20px;
	text-align: center;
}
p.form-btn{
	display: flex;
	justify-content: space-between;
}
p.form-btn input{	
	background: #333333;
	color: #fff;
    transition: all .2s ease;
}
p.form-btn input:hover{	
	background: #fff;
	border: 1px solid #333333;
	color: #333333;
}
.contact-box h2{
	font-size: 2rem;
    line-height: 4rem;
    border-bottom: 1px solid #cccccc;
    margin-bottom: 8px;
}

/***********************
information
***********************/
.information .news-box ul li a{
	display: block;
    font-size: 1.4rem;
    border-bottom: 1px dotted #ccc;
    padding: 20px 20px;
	transition: all .3s ease 0s;
}
.information .news-box ul li a:hover{
	color: #fff;
	background: #333333;
	border-bottom: 1px solid #333333;
}
.information .contents-box-03 h2{
	font-size: 1.8rem;
	font-weight: bold;
	margin-bottom: 40px;
	text-align: center;
}
.information .contents-box-03 p img{
	width: 100%;
	height: auto;
}
.information .contents-box-03 p.img80{
	text-align: center;
}
.information .contents-box-03 p.img80 img{
	width: 80%;
	height: auto;
}


@media screen and (max-width: 1020px) {
	header {
		height: 60px;
	}
	.logo {
		padding: 12px 0 0 20px;
	}
	.menu-btn {
		top: 15px;
		right: 20px;
	}
	.menu li {
		width: 100%;
	}
	.button-1{
		width: 100%;
	}
	.wid90{
		width: 90%;
	}
	footer .sns-box{
		width: 90%;
	}
	#web-contact {
		right: -10px;
	}
	#web-contact a img{
		width: 80%
	}
	#web-insta {
		right: -16px;
		top: 300px;
	}
	#web-insta a img{
		width: 80%;
	}
	#web-fb {
		right: -16px;
		top: 352px;
	}
	#web-fb a img{
		width: 80%;
	}
	#web-line {
		right: -16px;
		top: 352px;
	}
	#web-line a img{
		width: 80%;
	}
	#top .contents-box-01 h3 {
		margin-bottom: 20px;
	}
	#top .banner-box{
		width: 90%;
		margin: 0 auto;
	}
	#top .banner-box h2{
		margin-bottom: 10px;
	}
	#top .contents-box-02 p.vis img{
		width: 80%;
		height: auto;
	}
	#top .contents-box-02 .contents-inner{
		width: 90%;
	}
	#top .contents-box-02 .contents-inner h2{
		margin-bottom: 10px;
	}
	#top .contents-box-02 .contents-inner h2 img{
		width: 56%;
	}
	#top .contents-box-02 .contents-inner .flex-01 p{
		margin-bottom: 20px;
	}
	#top .contents-box-02 p.line_side{
		top: -60px;
		right: 10px;
	}
	#top .contents-box-04 h2 img{
		width: 56%;
	}
	#top .contents-box-04 .contents-inner {
		width: 90%;
	}
	#top .contents-box-05 p.vis img{
		width: 80%;
		height: auto;
	}
	#top .contents-box-05 .contents-inner{
		width: 90%;
	}
	/*#top .contents-box-05 .contents-inner h2{
		margin-bottom: 10px;
	}
	#top .contents-box-05 .contents-inner .flex-01 p{
		margin-bottom: 20px;
	}*/
	#top .contents-box-05 p.line_side{
		top: -60px;
		right: 10px;
	}
	#top .contents-box-06 h2 img {
		width: 56%;
	}
	#top .contents-box-information .news-contents{
		width: 90%;
	}
	#top .contents-box-information h2 img {
		width: 35%;
	}
	#second .contents-box-03,
	#second .contents-box-04,
	#second .contents-box-05,
	#second .contents-box-07,
	#second .contents-box-08,
	#second .contents-box-09,
	#second .contents-box-10{
		width: 90%;
	}
	#second .banner-box{
		width: 90%;
	}
	#second .contents-box-03 .s-box-03 .s-box-l,
	#second .contents-box-04 .s-box-03 .s-box-l,
	#second .contents-box-07 .s-box-03 .s-box-l{
		width: 30%;	
	}
	#second .contents-box-03 .s-box-03 .s-box-r,
	#second .contents-box-04 .s-box-03 .s-box-r,
	#second .contents-box-07 .s-box-03 .s-box-r{
		width: 70%;	
	}
	#second .contents-box-08 .s-box-04 .flex-01 .s-box-l{
		width: 40%;
	}
	#second .contents-box-08 .s-box-04 .flex-01 .s-box-r{
		width: 60%;
	}
	.photomenu .contents-box-04 .contents-inner {
		width: 90%;
	}
	.gallery .contents-box-04 .contents-inner {
		width: 90%;
	}
	.contact-box {
		width: 90%;
	}
	p.contact-tx-01 {
		width: 100%;
	}
	.contact table {
		width: 100%;
	}
}
@media only screen and (max-width: 767px) {
	.spview {
		display: block;
	}
	.pcview {
		display: none!important;
	}
	.display-none-sp{
		display: none;
	}
	.tx-left{
		text-align: left;
	}
	header {
		height: 50px;
	}
	.logo {
		width: 14%;
		padding: 10px 0 0 10px;
	}
	.menu-btn {
		top: 10px;
		right: 10px;
	}
	.button-1{
		height: 80px;
	}
	.button-1 a{
		font-size: 1.6rem;
		line-height: 80px;
	}
	.eff-1{
		height: 80px;
		left: -350px;
		top: -80px;
	}
	#top .contents-box-01 h3 img{
		width: 32%;
	}
	#top .contents-box-01 p img{
		width: 80%;
	}
	#top .contents-box-02 p.vis img{
		width: 100%;
	}
	#top .contents-box-04 .menu-box{
		width: 100%;
	}
	#top .contents-box-05 .menu-box{
		width: 100%;
	}
	#top .contents-box-05 p.vis img{
		width: 100%;
	}
	footer .sns-box ul{
		flex-wrap: wrap;
	}
	footer .sns-box ul li{
		width: 100%;
		margin-bottom: 10px;
	}
	footer .f-inner h3 img {
		width: 32%;
	}
	.footer_fix_btn {
		position: fixed;
		bottom: 0;
		width: 100%;
		text-align: center;
		background: #f8f8f8;
		box-shadow: 0px -2px 11px 0px #ccc;
	}
	.footer_fix_btn ul {
		display: flex;
	}
	.footer_fix_btn ul li {
		width: 100%;
		border-right: 1px solid #ffffff;
		background-color: #333;
	}
	.footer_fix_btn ul li a {
		display: block;
		padding: 10px 0 0;
		width: 100%;
		text-decoration: none;
	}
	#pageTop {
		bottom: 60px;
	}
	#top .contents-box-information .news-contents a ul li {
		font-size: 1rem;
	}
	#top .contents-box-information .news-contents a p {
		font-size: 1rem;
	}
	#top .gallery ul li {
		width: 50%;
	}
	#second .container{
		padding-top: 140px;
	}
	#second .contents-box-01{
		width: 80%;
		margin: 0 auto 80px;
	}
	#second .contents-box-01 .s-box-01 h2 img{
		width: 72%;
		height: auto;
	}
	#second .contents-box-01 .s-box-01 p img{
		width: 100%;
		height: auto;
	}
	#second .contents-box-01 .s-box-01 p.separator_01 img{
		width: 32%;
		height: auto;
	}
	#second .contents-box-01 .s-box-02 p {
		text-align: left;
	}
	#second .contents-box-03 .s-box-03,
	#second .contents-box-04 .s-box-03,
	#second .contents-box-07 .s-box-03 {
		flex-wrap: wrap;
	}
	#second .contents-box-03 .s-box-03 .s-box-l,
	#second .contents-box-04 .s-box-03 .s-box-l,
	#second .contents-box-07 .s-box-03 .s-box-l {
		width: 100%;
		margin-bottom: 20px;
	}
	#second .contents-box-03 .s-box-03 .s-box-r,
	#second .contents-box-04 .s-box-03 .s-box-r,
	#second .contents-box-07 .s-box-03 .s-box-r {
		width: 100%;
	}
	#second .contents-box-04 .s-box-03 .s-box-r ul li {
		text-align: left;
	}
	#second .contents-box-05 .s-box-03 .step-box {
		width: 100%;
	}
	#second .contents-box-05 .s-box-03 .step-box .center p img {
		width: 12%;
	}
	#second .contents-box-08 .s-box-04 .flex-01 .s-box-l {
		width: 100%;
	}
	#second .contents-box-08 .s-box-04 .flex-01 .s-box-r {
		width: 100%;
	}
	#second .contents-box-08 .s-box-04 .flex-01 .s-box-l p img{
		margin-bottom: 10px;
	}
	#second .gallery ul li {
		width: 49%;
	}
	/*.photomenu .contents-box-01 .s-box-01 h2 img {
		width: 64% !important;
	}*/
	.photomenu .contents-box-04 .menu-box{
		width: 100%;
	}
	.gallery .contents-box-04 .menu-box{
		width: 100%;
	}
	/*.qa .contents-box-01 .s-box-01 h2 img {
		width: 24% !important;
	}*/
	.profile .contents-box-03 .contents-table table th {
		text-align: left;
	}
	.profile .contents-box-03 .contents-table table td,
	.profile .contents-box-03 .contents-table table th {
		display: block;
		border: none;
	}
	.profile .contents-box-03 .s-box-01 {
		width: 100%;
	}
	.makeshift-studio .flex-01 .s-box-01{
		width: 100%;
	}
	.contact-box th {
		display: block;
		width: 100%;
	}
	.contact-box td {
		display: block;
		width: 100%;
	}
	p.policy-link{
		text-align: left;
	}
	.information .contents-box-03 h2{
		text-align: left;
	}
	.information .contents-box-03 p.img80 img{
		width: 100%;
	}
}