@charset "utf-8";

@import url("default.css");
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);

/*
 ページ全体のスタイル
---------------------------------------------------------------------- */




/* 背景、文字 */
body , html {}

body {
	margin: 0px;
	padding: 0px;
	width: 100%;
	color: rgb(90, 90, 90);
	font-family: 'Noto Sans Japanese', sans-serif;
}



#wrapper {
	margin: 0 auto;
	width: 100%;
	padding: 0;


}

section{
padding:0 0 150px 0;
}



#base {}


.inner {width: auto; max-width: 1120px; margin: 0 auto 0 auto;}
.bg1 { background:url(img/bg1.gif); width: 100%; padding:70px 0;}
.bg2 { background:#f5f5f5; width: 100%; padding:20px 0;}
.bg3 { background:#f5f5f5; width: 100%; padding:50px 0;}
.bg4 { background:url(img/bg2.jpg); width: 100%; padding:70px 0;}

.nobg {background-color:#f5f5f5; width: 100%;}

p {font-size	: 100%; line-height:180%;}
p em {
background:url(img/bg_border_y.gif) repeat-x left 60%;
font-style: normal;
}


/* テキストカラー */
.bk {color:#333!important;}
.white {color:#fff!important;}
.green {color:#006633!important;}
.blue {color:#000099!important;}
.red { color:#CC0000!important;}
.redb { color:#CC0000!important; font-weight:500;}
.red2 { color:#ff0000!important;}

/* テキストサイズ */
.t50 { font-size:50%!important;}
.t60 { font-size:60%!important;}
.t70 { font-size:70%!important;}
.t80 { font-size:80%!important;}
.t90 { font-size:90%!important;}
.t120 { font-size:120%!important;}
.t130 { font-size:130%!important;}
.t140 { font-size:140%!important;}
.t150 { font-size:150%!important;}
.t160 { font-size:160%!important;}

/* ライン */
.tline { border-top:1px #ccc solid; padding-top:10px;}
.tline_d { border-top:1px #ccc dotted; padding-top:10px;}
.bline { border-bottom:1px #ccc solid; padding-bottom:10px;}
.bline_d { border-bottom:1px #ccc dotted; padding-bottom:10px;}
.line_t{text-decoration: line-through;}



/*
 header
------------------------------------------------------- */
#header{
    /*fixedで上部固定*/
	position: fixed;
	height: 80px;
	width:100%;
    z-index: 999;/*最前面へ*/
	/*以下はレイアウトのためのCSS*/
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: rgba(56, 100, 116, 0.9);
	text-align: center;
	padding: 0 0 3px 20px;
	box-sizing: border-box;
}

/*　上に上がる動き　*/

#header.UpMove{
	animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime{
  from {
    opacity: 1;
	transform: translateY(0);
  }
  to {
    opacity: 0;
	transform: translateY(-100px);
  }
}

/*　下に下がる動き　*/

#header.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 0;
	transform: translateY(-100px);
  }
  to {
  	opacity: 1;
	transform: translateY(0);
  }
}

/* 以下は検証用のレイアウトのための CSS*/
nav { margin:0 0 0 0;
right: 0;
    position: absolute;
}


nav ul{
list-style: none;
display: flex;
justify-content: center;
}

nav ul li a{
text-decoration: none;
color: #fff;
padding:30px 10px;
margin:0 15px;
}

nav ul li.contact-btn a {
  color: rgba(56, 100, 116, 1);
  background-color: rgba(255, 255, 255, 0.7);
  font-weight:600;
  padding:30px 40px 30px 40px;
  margin:0;
  position:relative;
}

header h1 { width:35%; max-width:200px; margin:15px 0 15px 0;}
header h1 img { width:100%;}


@media only screen and (max-width: 1000px) {
	
#header{
	height: 60px;
}
header h1 { width:35%; max-width:200px; margin:8px 0 8px 0;}	
	
	
	
	
	
	
  .nav {
    position: fixed;
    right: -320px; /* 右から出てくる */
    top: 0;
    width: 300px; /* スマホに収まるサイズ */
    height: 100vh;
    padding-top: 60px;
    background-color: #fff;
    transition: all .6s;
    z-index: 200;
    overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  }
  .hamburger {
    position: absolute;
    right: 15px;
    top: 8px;
    width: 40px; /* クリックしやすい幅 */
    height: 40px; /* クリックしやすい高さ */
    cursor: pointer;
    z-index: 300;
  }
  nav ul{
list-style: none;
display: block;
width:80%;
margin:auto 10%;
justify-content: flex-start;
}

nav ul li a{
	display: block;
	text-align:left;
text-decoration: none;
color: rgba(56, 100, 116, 1);
padding:0 0 20px 0;
margin:0 0 20px 0;
border-bottom:1px dotted #ccc;
}

nav ul li.contact-btn a { background-color: rgba(255, 255, 255, 0.7); color: rgba(56, 100, 116, 1); padding:20px 0 20px 0;  margin:0; position:relative; border-bottom:none; text-align:center; font-weight: 500;}



  .hamburger_border {
    position: absolute;
    left: 11px;
    width: 18px;
    height: 2px;
    background-color: #fff;
    transition: all .6s;
  }
  .hamburger_border_top {
    top: 14px;
  }
  .hamburger_border_center {
    top: 20px;
  }
  .hamburger_border_bottom {
    top: 26px;
  }
  .black_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all .6s;
    cursor: pointer;
  }

  /* 表示された時用のCSS */
  .nav-open .nav {
    right: 0;
  }
  .nav-open .black_bg {
    opacity: .8;
    visibility: visible;
  }
  .nav-open .hamburger_border_top {
    transform: rotate(45deg);
    top: 20px;
  }
  .nav-open .hamburger_border_center {
    width: 0;
    left: 50%;
  }
  .nav-open .hamburger_border_bottom {
    transform: rotate(-45deg);
    top: 20px;
  }
}/* sp */




/*
 ナビ
------------------------------------------------------- */








/*
 メイン
------------------------------------------------------- */

.mainv {
  height: 100vh;
  background: url(img/main2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
}

.mainv .first_title_top,
.mainv .first_title_bottom {
  position: absolute;
  top: 56%;
  left: 64%;
  right: 0;
  margin: auto; padding: 20px 28px;
  color: rgba(56, 100, 116, 0.9); font-size: 46px; font-weight: 500; line-height: 1.5;
}

.mainv .first_title_bottom {
  top: 72%;
  left: 50%;
}

@media only screen and (max-width: 768px) {
  .mainv {
    background-position: 20% center;
  }

  .mainv .first_title_top,
  .mainv .first_title_bottom {
    left: auto;
    width: 80%;
    font-size: 24px; line-height: 1.6;
    padding: 4px 8px;
  }

  .mainv .first_title_bottom {
    width: 90%;
  }
}


/*
 about
------------------------------------------------------- */
section.about { background:#f1f8ff; text-align:center; padding:100px 0;}
section.about .inner { position:relative;}


section.about .inner::before {
	position:absolute;
 content: '';
  display: inline-block;
  width: 411px;
  height: 532px;
  background: url(img/about-bg1.png) no-repeat;
  /*left:0;*/
  left:-50px;
  top:-70px;  	

	}
section.about .inner::after {
	position:absolute;
 content: '';
  display: inline-block;
  width: 411px;
  height: 532px;
  background: url(img/about-bg2.png) no-repeat;
  /*right:-10px;*/
  right:-60px;
  top:-50px;  	

	}


.about-t1 { font-size:36px; font-weight:700; line-height:1.6; margin:0 0 50px 0;}
.about-t1,.about-t2  { z-index:100;}

@media only screen and (max-width: 1000px) {
section.about .inner::before,section.about .inner::after { position:static; display:none; background: none;}	
}


@media only screen and (max-width: 768px) {
section.about {padding:60px 0;}	
.about-t1 { font-size:28px; font-weight:700; line-height:1.6; margin:0 0 35px 0;}	
	

section.about .inner::before { background:none;}
section.about .inner::after { background:none;}	




section.about {
  background-image:url(img/about-bg1-sp.png), url(img/about-bg2-sp.png);
  background-position: -10% 5%,120% 95%;
  background-repeat: no-repeat, no-repeat;
  

	}
	
p.about-t2 { font-size:90%;}
	
}


/*
 guide
------------------------------------------------------- */

.top-box-r {}
.top-box-r li.topimg { float:left; width:52%; max-width:585px;}
.top-box-r li.topimg img { margin:0 0 0 -175px;}
.top-box-r li.topcon { float:right; width:41%; max-width:460px; margin:0 0 0 7%;}
.top-icon { margin:32px 0 32px 0; text-align: center;}
.top-icon img { width:40px;}
.topcon .top-icon { width:160px; margin:0 0 40px 0;}
.topcon .top-icon img { width:100%;}
.top-icon p { color: #386474; font-weight: 500; }
.top-ti { font-weight:800; font-size:46px; color: #386474; border-left:solid 2px #386474; padding-left:30px; margin:0 0 35px 0;}
.top-txt { margin:0 0 45px 0;}

.top-box-l {}
.top-box-l li.topimg { float:right; width:52%; max-width:585px;}
.top-box-l li.topimg img { margin:0 -175px 0 0;}
.top-box-l li.topcon { float:left; width:41%; max-width:460px; margin:0 7% 0 0;}


@media only screen and (max-width: 1500px) {
.top-box-r li.topimg img,.top-box-l li.topimg img { margin:0 0 0 0; width:100%;}
}

@media only screen and (max-width: 768px) {

.top-box-r li.topimg,
.top-box-l li.topimg { float:none; width:100%; max-width:100%; margin:0 0% 25px 0%;}	

.top-box-r li.topcon,
.top-box-l li.topcon { float:none; width:100%; max-width:100%; margin:0 0 30px 0;}

.topcon .top-icon { width:110px; margin:0 0 10px 0;}
.top-icon { margin:20px 0 16px 0; }
.top-ti { font-size:28px; font-weight: 500; padding-left:12px;}
	
}

/*
 ラインナップ
------------------------------------------------------- */

.photo-booth-list { margin-top:80px;}
.photo-booth-list ul {}
.photo-booth-list li { float:left; width: calc(33.33% - 10px); margin: 0 5px; text-align:center;}
.photo-booth-list li a { color:#000;}
.photo-booth-list li img { width:100%; height:auto;}
.photo-booth-list li p.photo-booth-list-p { font-size:28px; font-weight:500;}
.photo-booth-list li p { color: #3C3C3C; }
.photo-booth-list li p.photo-booth-list-price { font-size:120%; font-weight:400;}
.photo-booth-list li p.photo-booth-list-price span { font-size:80%;}

@media only screen and (max-width: 768px) {
	
.photo-booth-list { margin-top:40px;}
.photo-booth-list li { float:none; width:90%; margin:0 5% 10% 5%; text-align:center;}
.photo-booth-list li p.photo-booth-list-p { font-size:21px; font-weight:600;}
}


/*
 ページトップ
------------------------------------------------------- */
#pagetop {
	width: 100%;
	height: 1px;
	text-align: right;
	margin-right: auto;
	margin-left: auto;
	padding-bottom:0px;
	z-index: 1;
}

#page-top {
	position: fixed;
	bottom: 70px;
	right: 50px;
	font-size: 100%;
	z-index: 1;
}
#page-top a {

	text-decoration: none;

	width: 70px;

	text-align: center;
	display: block;
	border-radius: 5px;
		filter: alpha(opacity=80);
    /* Safari Opera */
    opacity:0.80;
    /* Firefox Netscape */
    -moz-opacity:0.80;
}
#page-top a:hover {

}


/*
 下部共通エリア
------------------------------------------------------- */

.area-common { background: #386474; padding:70px 0;}
.area-common li { float:left;}
.area-common li.left { width:48%; text-align:center; line-height:1.6; font-size:90%; color: #fff; box-sizing:border-box; margin-top: 28px;}
.area-common li.left img { width:328px; margin:0 auto 0 auto;}
p.area-common-t1 { color:#fff; font-weight:400; font-size:90%; margin:0 0 50px 0;}
.tell-btn { position:absolute; top:-10px; left:-20px;}

.area-common li.right { width:52%; text-align:center; padding:0 50px 0 70px; box-sizing:border-box;}
p.area-common-t2 { color: #fff; margin:25px 0 0 0;}
p.area-common-t2 span a { color:#000; font-weight:600; font-size:34px; color: #fff; margin-top:10px;}

@media only screen and (max-width: 768px) {
  .area-common li { float: none;}
  .area-common li.left,.area-common li.right { width:100%; border:none; padding:0;}
  .area-common li.left { margin-bottom:40px; margin-top:0}
  .area-common li.right { padding:0 48px;}
  p.area-common-t2 span a { display:block;}
  p.area-common-t1 {margin:0 0 20px 0;}
}

@media only screen and (max-width: 576px) {
  .area-common li.left img { width:64%;}
  .area-common li.right { padding:0 16px;}
}



/*
 フッタ
------------------------------------------------------- */
/* エリア */

footer { background:#282828; padding:70px 0 20px 0; text-align:center;}
.footer_contents {
	color:#fff;
	margin:80px auto 80px auto;
	text-align:left;
	width:632px;
	
	
	}
	.footer_contents ul { margin:0 0 30px 0;}
	.footer_contents ul li { float:left;}
	.footer_contents ul li a { color:#d1cece; margin-right:40px; font-size:90%;}
	.footer_contents ul li:last-child a {margin-right:0;}
	p.f-title { font-weight:600;}
	
	.f-logo { width:200px; margin:30px auto 40px auto;}
	.f-logo img { width:100%;}
	
	.copy { color:#fff; font-size:70%;}

/* SNS */
.sns_box {
	display:block;
  margin: auto;
  height: 50px;
  width: 192px;
  position:absolute;
  left:50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%); 
}
.sns_box {

    width: auto;

}

.sns_button {
  float: left;
  /*box-shadow: inset 0 0 0 2px #fff;*/
  border-radius: 100%;
  -moz-transition: all 280ms ease;
  -o-transition: all 280ms ease;
  -webkit-transition: all 280ms ease;
  transition: all 280ms ease;
  background:#c9c9c9;
}
.sns_button a {
  display: table-cell;
  width: 44px;
  height: 44px;
  color: #282828;
  text-align: center;
  vertical-align: middle;
  -moz-transition: all 280ms ease;
  -o-transition: all 280ms ease;
  -webkit-transition: all 280ms ease;
  transition: all 280ms ease;
}
.sns_button i {
  font-size: 24px;
  vertical-align: middle;
}
.sns_button:hover {
  box-shadow: inset 0 0 0 22px #fff;
}

.sns_button + .sns_button {
  margin: 0 0 0 30px;
}

.twitter:hover a {
  color: #1B95E0;
}

.facebook:hover a {
  color: #3B5999;
}

.google:hover a {
  color: #dd4b39;
}

.instagram:hover a {
  color: #2b5c84;
}

.pocket:hover a {
  color: #EE4056;
}

ul.insta { margin-bottom: 30px;}
ul.insta li { color: #fff; font-size: 80%; margin: 0 0 5px 0;}
ul.insta li img { width: 50px;}


@media only screen and (max-width: 768px) {
	
.footer_contents { width:70%; margin:80px 15% 20px 15%;}	
.footer_contents ul { margin:0 auto 30px auto;}
	.footer_contents ul li { float:none; margin-bottom:20px;}
	.footer_contents ul li a { color:#d1cece; margin: 0 0 auto 0; font-size:90%;}
	.footer_contents ul li:last-child a {margin-right:0;}
	p.f-title { font-weight:600; margin:0 0 15px 0;}
	
	.f-logo { width:140px; margin:30px auto 40px auto;}
}




/* =====================================
 6. 汎用プロパティ
===================================== */

.fl { float: left;}
.fr { float: right;}

.mt05 { margin-top: 5px !important;}
.mt10 { margin-top: 10px !important;}
.mt15 { margin-top: 15px !important;}
.mt20 { margin-top: 20px !important;}
.mt25 { margin-top: 25px !important;}
.mt30 { margin-top: 30px !important;}
.mt35 { margin-top: 35px !important;}
.mt40 { margin-top: 40px !important;}
.mt45 { margin-top: 45px !important;}
.mt50 { margin-top: 50px !important;}
.mt100 { margin-top: 100px !important;}
.mt150 { margin-top: 150px !important;}

.mr05 { margin-right: 5px !important;}
.mr10 { margin-right: 10px !important;}
.mr15 { margin-right: 15px !important;}
.mr20 { margin-right: 20px !important;}
.mr25 { margin-right: 25px !important;}
.mr30 { margin-right: 30px !important;}
.mr35 { margin-right: 35px !important;}
.mr40 { margin-right: 40px !important;}
.mr45 { margin-right: 45px !important;}
.mr50 { margin-right: 50px !important;}

.mb05 { margin-bottom: 5px !important;}
.mb10 { margin-bottom: 10px !important;}
.mb15 { margin-bottom: 15px !important;}
.mb20 { margin-bottom: 20px !important;}
.mb25 { margin-bottom: 25px !important;}
.mb30 { margin-bottom: 30px !important;}
.mb35 { margin-bottom: 35px !important;}
.mb40 { margin-bottom: 40px !important;}
.mb45 { margin-bottom: 45px !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;}

.ml05 { margin-left: 5px !important;}
.ml10 { margin-left: 10px !important;}
.ml15 { margin-left: 15px !important;}
.ml20 { margin-left: 20px !important;}
.ml25 { margin-left: 25px !important;}
.ml30 { margin-left: 30px !important;}
.ml35 { margin-left: 35px !important;}
.ml40 { margin-left: 40px !important;}
.ml45 { margin-left: 45px !important;}
.ml50 { margin-left: 50px !important;}

.pt05 { padding-top: 5px !important;}
.pt10 { padding-top: 10px !important;}
.pt15 { padding-top: 15px !important;}
.pt20 { padding-top: 20px !important;}
.pt25 { padding-top: 25px !important;}
.pt30 { padding-top: 30px !important;}
.pt35 { padding-top: 35px !important;}
.pt40 { padding-top: 40px !important;}
.pt45 { padding-top: 45px !important;}
.pt50 { padding-top: 50px !important;}

.pr05 { padding-right: 5px !important;}
.pr10 { padding-right: 10px !important;}
.pr15 { padding-right: 15px !important;}
.pr20 { padding-right: 20px !important;}
.pr25 { padding-right: 25px !important;}
.pr30 { padding-right: 30px !important;}
.pr35 { padding-right: 35px !important;}
.pr40 { padding-right: 40px !important;}
.pr45 { padding-right: 45px !important;}
.pr50 { padding-right: 50px !important;}

.pb05 { padding-bottom: 5px !important;}
.pb10 { padding-bottom: 10px !important;}
.pb15 { padding-bottom: 15px !important;}
.pb20 { padding-bottom: 20px !important;}
.pb25 { padding-bottom: 25px !important;}
.pb30 { padding-bottom: 30px !important;}
.pb35 { padding-bottom: 35px !important;}
.pb40 { padding-bottom: 40px !important;}
.pb45 { padding-bottom: 45px !important;}
.pb50 { padding-bottom: 50px !important;}
.pb55 { padding-bottom: 55px !important;}
.pb60 { padding-bottom: 60px !important;}
.pb65 { padding-bottom: 65px !important;}
.pb70 { padding-bottom: 70px !important;}
.pb75 { padding-bottom: 75px !important;}
.pb80 { padding-bottom: 80px !important;}

.pl05 { padding-left: 5px !important;}
.pl10 { padding-left: 10px !important;}
.pl15 { padding-left: 15px !important;}
.pl20 { padding-left: 20px !important;}
.pl25 { padding-left: 25px !important;}
.pl30 { padding-left: 30px !important;}
.pl35 { padding-left: 35px !important;}
.pl40 { padding-left: 40px !important;}
.pl45 { padding-left: 45px !important;}
.pl50 { padding-left: 50px !important;}

.tal { text-align:left;}
.tac { text-align:center;}
.tar { text-align:right;}

@media screen and (min-width: 1000px) {
	a:hover img {
		filter: alpha(opacity=70);
	    /* Safari Opera */
	    opacity:0.70;
	    /* Firefox Netscape */
	    -moz-opacity:0.70;
	}

}

a:hover img {
 *zoom: 1;
	cursor:pointer;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all  0.6s ease;
	}

.noto100 {font-weight:100;}
.noto200 {font-weight:200;}
.noto300 {font-weight:300;}
.noto400 {font-weight:400;}
.noto500 {font-weight:500;}
.noto600 {font-weight:600;}
.noto700 {font-weight:700;}
.noto800 {font-weight:800;}
.noto900 {font-weight:900;}




.pc_con {display:block!important;}
.sp_con {display:none!important;}


/* Flexbox */
.justify-content-center {
  display: flex;
  justify-content: center; 
}

/* 背景ぼかし */
.backdrop {
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  background-color: rgba(255, 255, 255, 0.5);
}
/* backdrop-filter 非対応ブラウザ用 */
@supports not ((-webkit-backdrop-filter: blur(30px)) or (backdrop-filter: blur(30px))) {
  .backdrop {
    background: rgba(255, 255, 255, 0.5);
  }
}






/* ----------------------------------------------------------
■ スマホ
----------------------------------------------------------- */
@media screen and (max-width: 768px) {

.pc_con {display:none!important;}
.sp_con {display:block!important;}



/* 全体 ---------------------------- */
body {
	
}
#wrapper {
	padding: 0 0 0 0;
}

section{
padding:0 0 100px 0;
}


.inner {width: auto; padding: 0 20px; box-sizing: border-box;}

.top-box-r.mt150 { margin-top:100px!important;}

/*
 ページトップ
------------------------------------------------------- */
#page-top {
	position: fixed;
	bottom: 25px;
	right: 10px;
	font-size: 100%;
	z-index: 500;
}


p.maintext { position:absolute; bottom:40px; left:0; right:0; z-index:2; font-weight:700; color:#fff; font-size:120%; text-align:center;}





}


/*
 フロート要素の適正な解除（Clearfix）
---------------------------------------------------------------------- */
.clearfixadd:after{content:'.'; display:block; height:0; clear:both; visibility:hidden;}
.clearfixadd{display:inline-block;}

/* Hides from IE-mac \*/
* html .clearfixadd{height:1%;}
.clearfixadd{display:block;}
/* End hide from IE-mac */

