@charset "utf-8";

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

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




/* 背景、文字 */
body , html { overflow-x: hidden; }

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



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


}

section{
padding:0 0 0 0;
}



#base {}


.inner {width: auto; max-width: 1120px; margin: 0 auto 0 auto;}
.inner-md {width: auto; max-width: 960px; margin: 0 auto 0 auto;}
.inner-sm {width: auto; max-width: 815px; 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: #fff;
	text-align: center;
	padding: 0 0 3px 80px;
	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 80px 0 0;
  right: 0;
  position: absolute;
}
nav.pagination-container {
  margin: 0;
  right: auto;
  position: static;
}


nav ul{
list-style: none;
display: flex;
justify-content:end;
align-items: center;
}
nav.pagination-container ul{
list-style: none;
display: flex;
justify-content:center;
align-items: unset;
padding-top: 50px;
}

.pagination-container {
  display: block;
}

nav ul li a{
  text-decoration: none;
  color: rgb(90, 90, 90);
  padding:30px 10px;
  margin:0 15px;
}
nav.pagination-container ul li a {
  text-decoration: none;
  margin:0;
}


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 { margin:15px 0 15px 0;}
header h1 img { width:100%;}

nav ul li .img-btn {
  margin: 0;
}

.page-link {
  color: #fff;
  background-color: #ddd;
}

.page-link.page-link-arrow {
  background-color: #0d6efd;
  color: #fff;
}
.page-item.active .page-link {
  background-color: #646262;
}


@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: -400px; /* 右から出てくる */
    top: 0;
    width: 320px; /* スマホに収まるサイズ */
    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:last-child {
  border-bottom:1px dotted #ccc;
}
nav ul li .img-btn {
	display: block;
  border: none;
  margin-bottom: 0;
}

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: #196465;
    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: -80px;
  }
  .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 */

@media screen and (max-width: 576px) {
  #header{
    padding-left: 10px;
  }
}




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








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

.mainv { display: flex; justify-content: space-between; padding-top: 80px;}
.mainv img { width: 100%; height: auto; }
.mainv-copy { display: flex; justify-content: flex-end; padding: 5% 5% 5% 0; }
.mainv-txt { display: flex; color: #c45f24; font-size: 2.25rem; padding: 5% 0; }
.mainv-r { align-self: flex-end; padding-bottom: 5%; }
.mainv-l, .mainv-r { width: 100%; overflow: hidden; }
.top-box-l.concept { 
  background-image: url('img/bg-concept.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
 }

@media only screen and (max-width: 768px) {
  .access-img { width: 50px !important; }
  .mainv-copy { padding-left: 5%; }
  .mainv-txt { font-size: 1.125rem; }
}


/*
 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 img { width: 100%; }
.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:500; font-size:1.5rem; color: #196465; margin:0 0 35px 0;}
.top-txt { margin:0 0 45px 0;}

.top-box-l {}
.top-box-l li.topimg { float:left; width:52%; max-width:585px;}
.concept.top-box-l li { padding-left: 10%; }
.concept.top-box-l li.topimg { width:32%; }
.top-box-l li.topimg img { margin:0 7% 0 0; }
.top-box-l li.topcon { float:right; width:41%; max-width:460px; margin:0 0 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:1.375rem; font-weight: 500; padding-left:12px;}

.concept.top-box-l li { padding-left: 0; }
.concept.top-box-l li.topimg { width: 100%; }
	
}

.cont-ti { text-align: center; margin: 3rem 0; color: #196465;}
.cont-ti .cont-ti-txt { display: block; font-size: 2rem; font-weight: 500; position: relative; margin-bottom: .25em; }
.cont-ti .cont-ti-txt--lg { font-size: 2.125rem;}
.cont-ti .cont-ti-txt--md { font-size: 1.25rem; font-weight: 300;}
.cont-ti .cont-ti-txt--sm { font-size: 1.125rem; font-weight: 300;}

@media only screen and (max-width: 576px) {
  .cont-ti .cont-ti-txt { font-size: 1.5rem; }
  .cont-ti .cont-ti-txt--sm { font-size: 1rem; }
}

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

.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: #e9e4de; padding:70px 0;}
.area-common li { float:left;}
.area-common li.left { width:56%; text-align:left; line-height:1.6; font-size:90%; color: #fff; box-sizing:border-box; margin: 28px 0 0 0; }
.area-common li.left img { width:420px; margin:0 auto 0 auto;}
.area-common li.left p { padding-left: 6%; padding-right: 6%; }
.area-common li.left .tel { align-items: center; padding-bottom: 3%; }
.area-common li.left .tel-icon { width:40px; }
.area-common li.left .tel-txt { color:#196465; font-size: 35px; line-height: 0; font-weight: 500; padding-left: .5rem; }
p.area-common-t1 { color:#196465; font-weight:400; font-size:90%; margin:0 0 50px 0; }
.tell-btn { position:absolute; top:-10px; left:-20px;}

.area-common li.right { width:44%; text-align:center; padding:0 50px 0 50px; 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;}
  .area-common li.left .tel-txt { font-size: 20px; }
  .area-common li.left .tel-icon { width: 30px; }
}

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



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

footer { background: #646262; padding:20px 0 20px 0; margin-top: 80px; text-align:center;}
.footer_contents {
	color:#fff;
	margin:80px auto 20px auto;
	text-align:left;
	width:632px;
	}
  .footer_contents_title { font-weight: 600; margin-bottom: 20px; }
	.footer_contents ul { margin:0 0 30px 0;}
	.footer_contents ul li { float:left; margin-bottom: 20px; }
	.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:20px 15% 20px 15%; text-align: center;}	
.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;}

.px50 { padding: 0 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;
  align-items: center;
  gap: 30px;
}
.justify-content-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 80px 0 1rem 0;
}
.justify-content-left {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 30px;
}
.justify-content-center .item {
  flex: 1;
}

@media screen and (max-width: 768px) { 
  .justify-content-between {
    padding: 0 0 1rem 0;
  }
}

/* 背景ぼかし */
.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;}

.justify-content-center { display: block; }



/* 全体 ---------------------------- */
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 */


/*
 カード
---------------------------------------------------------------------- */
.list-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2%; }
.list-grid--col1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2%;
  justify-items: center;
  align-items: center;
}
.list-grid--col2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2%;
  justify-items: center;
  align-items: center;
}
.list-grid--col5 {
  display: grid;
  grid-template-columns: 1fr 0.2fr 1fr 0.2fr 1fr;
  gap: 2%;
  justify-items: center;
  align-items: center;
}

.card { border-top: 2px solid #196465; border-bottom: 2px solid #196465; padding: 4%; display: flex; flex-direction: column; justify-content: space-between; height: 100%; }
.card-body { align-self: flex-end; }
.card-img-wrapper { text-align: center; padding: 5% 0; }
.card-img-wrapper--icon { position: relative; }
.step-icon {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.card-img { width: auto; height: 70px }
.card-body { }
.card-body > *:last-child { margin-bottom: 0; }
.card-title { font-size: 1.5rem; color: #196465; }
.card-text {  }
.card-text ul { text-align: left; padding: 2% 10%; }
.emphasis { font-size: 150%; color: #189ffc; padding-left: 1%; padding-right: 1%; }

.guide .card { padding: 0 0 4% 0; }

.price .card {
  text-align: center;
  background-color: #fff;
  border-color: #fff;
  border-radius: 12px;
  border-top: #f4f3ed;
  padding: 0;
}
.price .card-header {
  background-color: #c45f24;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.price .card-img { width: 100%; height: auto; }
.price .card-title {
  color: #fff;
  padding: 5% 0;
}
.price .card-body { padding-bottom: 10%; align-self: auto; }
.price-copy { color: #c45f24; padding-top: 5%; }
.price-value-row { font-size: 1.25em; }
.price-value { font-size:1.875em; font-weight: 500; }
.price .card-text { padding: 5% 0; }

.price.facilities .card-title{ padding: 2% 0; }
.price.facilities .card-body{ padding-top: 5%; }
.facilities-item { 
  display: flex;
  justify-content: space-between;
  align-items: center;
 }

.price-detail { margin-bottom: 3rem; }
.price-detail .card-body { width: auto; max-width: 800px; margin: 0 auto 0 auto; }
.price.price-detail .card-title { padding: 2% 0; }
.price.price-detail .card-text { padding: 4% 0 2% 0; }
.price.price-detail .price-value-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #d6d6d6;
  padding: 2% 1%;
}
.price.price-detail .price-value { color: #196465; }

/* SP */
@media (max-width: 560px) {
	.list-grid { display: block; }
  .list-grid--col5 { display: block; }
	.card { padding: 5%; margin-bottom: 40px; }
  .right-arrow { transform: rotate(90deg); padding-right: 20px; }
  .price.price-detail .price-value-row { display: block; }
  .price.price-detail .price-value { display: block; font-size:1.25em; }
}

/*
 CTAエリア
------------------------------------------------------- */
.img-btn-wrapper { text-align: center; margin-top: 70px; }
.img-btn { display: inline-block; width: 231px; max-width: 100%; }
.img-btn--s { width: 220px !important; }
.img-btn--xs { width: 100px; }
.img-btn img { width: 100%; height: auto; }
.img-btn--reserve img { width: 100%; height: 57.766px; }

.btn-list { display: flex; justify-content: center; flex-wrap: wrap }
.btn-list > *:last-child { margin-right: 0; }
.btn-list-item { flex: 1 1 0; max-width: 700px; margin-right: 2px; background: linear-gradient(180deg, #25A9FB 0%, #77CBFF 100%); padding: 2rem; }
.btn-list-item li { text-align: center; }
.contact .btn-list-item,
.service .btn-list-item { max-width: 300px; background: none; display: flex;
  justify-content: center; padding: 0; }
  
.btn-list-item-right { background: linear-gradient(180deg, #027CC8, #1DA0F1); }


.cta-area { padding: 100px 0 40px 0; background-color: transparent; text-align: center; }
.cta-area-title { margin-bottom: 30px; color: #fff; font-size: 1.5rem; font-weight: 500; }
.cta-area-text { margin-bottom: 30px; }

.news .img-btn-wrapper { margin-top: 0; }

/* SP */
@media only screen and (max-width: 768px) {
  /* .btn-list { display: block; text-align: center; } */
  .btn-list { gap: 1.5rem; }
  .btn-list-item { max-width: 100%; margin: 0 10px; margin-bottom: 20px; }
  .main .img-btn,
  .contact .img-btn,
  .service .img-btn
  { width: 100%; }
  .service .img-btn
  { width: 100%; }
  .service .btn-list-item, .contact .btn-list-item { max-width: 100%; margin-right: 0; margin-bottom: 20px; }
  .cta-area { padding-left: 0; padding-right: 0; }
  .cta-area-title { font-size: 1.25rem; }
  .access .img-btn-wrapper { margin: 50px 0; text-align: left; }
}

/*
 アコーディオン
---------------------------------------------------------------------- */
/* .accordion-body + .accordion-title { margin-top: 20px; }
.accordion .item:last-of-type { margin-top: 20px; }
.accordion-title {
  border-top: 1px solid #196465;
  border-bottom: 1px solid #196465;
}
.faq-row {
  position: relative;
	min-height: 74px;
}

.accordion-btn {
  display: block;
  width: 100%;
  padding: 1.5rem 2.5rem 1.5rem 5.75rem;
  background-color: #f4f3ed;
  border: 2px solid #f4f3ed;
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: .25s;
}

.accordion-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 27px;
  transform: translateY(-50%);
  display: block;
  width: 20px;
  height: 2px;
  background-color: currentColor;
	color: #196465;
}

.accordion-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 36px;
  transform: translateY(-50%);
  display: block;
  width: 2px;
  height: 20px;
  background-color: currentColor;
	color: #196465;
}

.accordion-btn--active::after { content: none; }
.accordion-body { display: none; padding: 1.5rem 2.5rem .25rem 5.75rem; }
.accordion-body > *:last-child { margin-bottom: 0; }
.accordion-body--active { display: block; }
.accordion-text { margin-top: 12px; margin-bottom: 20px; }
.accordion-text--answer { font-size: 1rem; font-weight: 500; }
.faq-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 74px;
	height: 74px;
	line-height: 74px;
	text-align: center;
  font-size: 2em;
  margin-left: .25em;
  
} */
/* .faq-icon--question { font-size: 2em; color: #0E612C; } */
/* .faq-icon--answer { font-size: 2em; color: #0096FF; } */

/* SP */
/* @media (max-width: 560px) {
	.accordion-btn { padding: .75rem 3.75rem 1rem 5rem; }
	.accordion-body { padding: 1.5rem 3.75rem .25rem 4.5rem; }
	.faq-icon { width: 50px; height: 50px; } */
  /* .accordion-body + .accordion-title { margin-top: 0; border-top: 1px; } */
/* } */

/*
 ACCESS
---------------------------------------------------------------------- */
/* メディア */
.c-media { display: flex; }
.c-media-iframe-wrapper { flex: 0 1 50%; margin: 0 4% 0 0; }
.c-media-iframe { width: 100%; }
.c-media-body { flex: 1; }
.c-media-body > *:last-child { margin-bottom: 0; }
.c-media-title { color: #196465; margin-bottom: 10px; font-size: 1.25rem; font-weight: 600; }
.c-media-text { margin-bottom: 36px; }

/* SP */
@media (max-width: 768px) {
  .c-media { flex-direction: column-reverse; }
  .c-media-iframe-wrapper { margin: 0; }
  .c-media-body > *:last-child { margin-bottom: 40px; }
  .c-media-button { display: block; margin-left: auto; margin-right: auto; }
}

