@charset "utf-8";

/* CSS Document */

/*------------------------------
[制作ガイド]
////////////////モバイルファーストで作成//////////////
min-width:491px~
min-width: 769px~
min-width: 1025px~
それぞれのクラス名は下記「★使い分け★」参照
--------------------------------*/

body {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", sans-serif;
  letter-spacing: 0.1em;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "pkna" 1;
  font: 13px/1.231;
}

/*------------------------------
SEO対策 h1 
	htmlの構造上、h1はページ上部に必ず入れること。
	cssで下部に移動させるため、.seoでページ全体を囲っている。
--------------------------------*/
.seo {
	display : flex;
	-ms-flex-direction:column; /*IE10*/
	-webkit-flex-direction:column; /*old webkit browser*/
	flex-direction:column;
	box-sizing:border-box;
	margin:0;
	padding:0;
	/* margin-bottom: 80px; */
}

.seo *{
	min-height: 0%; /*IE11で変なpaddingが入らないように*/
	}
	
h1.lead {
		padding: 10px 10px 20px;
		text-align: left;
		line-height: 1.8em;
		background:#222;
		font-size: 12px;
		order: 2;
		color:#FFF;
}

@media screen and (min-width: 769px){
.seo {margin:0;}
h1.lead {
	text-align: center;
	padding: 10px;
}
}

.nohover:hover {
opacity: 1!important;
}
/*------------------------
br
--------------------------*/
br.br_fix {display: block;}
@media screen and (max-width: 768px){
br.br_fix {display: block;}
}
/*------------------------
PC,TB,SP　★使い分け★
--------------------------*/

.tb-sp {
  display: block;
}

.sp-only {
  display: block;
}

.pc-tb {
  display: none;
}

.pc-only {
  display: none;
}

.tb-only {
  display: none;
}

.wrapper {
  width: 90%;
  margin: 0 auto;
  overflow: hidden;
}

.wrapper1200 {
  width: 90%;
  margin: 0 auto;
  overflow: hidden;	
}

.wrapper1400 {
  width: 90%;
  margin: 0 auto;
  overflow: hidden;	
}

@media screen and (min-width:1025px){
.wrapper {
  width: 1024px;
  margin: 0 auto;
  overflow: hidden;
}

.wrapper1200 {
  width: 1200px;
	height:auto;
  margin: 0 auto;
  overflow: hidden;	
}

.wrapper1400 {
  width: 1400px;
  margin: 0 auto;
  overflow: hidden;	
}
}

.graybg {
	background:#111111;
	width:100%;
	color:#FFF;
	margin:0;
}

.graybg .topcontent-area { color:#FFF;}

.relative{
	position: relative;
	box-sizing:border-box;
	padding:0;
	box-shadow:4px 6px 15px -2px #999999;	
}

.figure-caption {
	position:absolute;
	background: rgba(0,0,0,0.8);
	padding:5px 7px;
	color:#FFF;
	font-size:12px;
	font-weight: normal;
	bottom:0;
	left:0;
	line-height: 1;
	
}

@media screen and (min-width:769px) {
  .tb-sp {
    display: block;
  }
  .sp-only {
    display: none;
  }
  .pc-tb {
    display: block;
  }
  .pc-only {
    display: none;
  }
  .tb-only {
    direction: block;
  }
}

@media screen and (min-width:1025px) {
  .tb-sp {
    display: none;
  }
  .sp-only {
    display: none;
  }
  .pc-tb {
    display: block;
  }
  .pc-only {
    display: block;
  }
  .tb-only {
    direction: none;
  }
}

header {
  position: fixed;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  z-index: 98;
  top: 0;
  left: 0;
}

.gnavpc {
  display: none;
}

.hnavpc {
  display: none;
}

.logo {
  width: 150px;
  height: 50px;
  padding-left: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
	margin: auto;
}

.logo img {
  width: 100%;
  height: auto;
}


/*------------------------
menu sp
--------------------------*/

.menu {
  height: 18px;
  position: absolute;
  right: 20px;
  top: 15px;
  width: 22px;
  z-index: 99; /*99*/
  cursor:pointer;
}

.menu__line {
  background: #000;
  display: block;
  height: 2px;
  position: absolute;
  transition: transform .3s;
  width: 100%;
}

.menu__line--center {
  top: 8px;
}

.menu__line--bottom {
  top: 16px;
}

.menu__line--top.active {
  top: 8px;
  background: #FFF;
  transform: rotate(45deg);
}

.menu__line--center.active {
  top: 8px;
  transform: rotate(135deg);
  background: #FFF;
}

.menu__line--bottom.active {
  top: 8px;
  transform: rotate(135deg);
  background: #FFF;
}

@media screen and (min-width: 491px) and (max-width: 1023px) {
  .menu__line--top.active, .menu__line--center.active, .menu__line--bottom.active {
    background: #FFF;
  }
}

@media screen and (min-width: 1025px) {
.menu {
  height: 18px;
  position: absolute;
  left: 20px;
  top: 15px;
  width: 18px;
  z-index: 99;
}
}


/*------------------------
gnav sp
--------------------------*/

.gnav {
  background: rgba(0, 0, 0, 1);
  display: none;
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 98;
  top: 0;
}

.gnav__wrap {
  align-items: center;
  height: 100%;
  position: absolute;
  width: 100%;
  padding-top: 52px;
}

.gnav__menu, .gnav__menu2 {
  display: flex;
  flex-wrap: wrap;
  max-width: 600px;
  margin: auto;
  justify-content: space-around;
  height: calc(62.5% - 80px);
}

.gnav__menu2 {
  height: 37.3%;
  background: #FFF;
  color: #000;
}

.gnav__menu__item {
  width: 50%;
  height: 33.333%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/*.gnav__menu__item.reserve {
width: 100%;
}*/
.gnav__menu2 .gnav__menu__item {
  height: 50%;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.gnav__menu__item a {
  padding: 8% 0;
  color: #fff;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: .5s;
  font-size: 2.8vw;
  text-align: center;
  height: 100%;
  letter-spacing: 0.1em;
  font-family: 'Noto Serif', serif;
}

.gnav__menu2 .gnav__menu__item a {
  color: #000;
  font-size: 2.5vw;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
}

.gnav__menu__item a:hover {
  color: #666;
}

@media screen and (min-width: 491px) {
  .gnav {
    height: 100%;
    width: 200px;
	  right:0;
	  left:auto;
  }
  .gnav__wrap {
    padding-right: 10px;
    padding-left: 20px;
    box-sizing: border-box;
  }
  .gnav__menu, .gnav__menu2 {
    display: block;
    height: auto;
    margin: 0;
    background: inherit;
  }
  .gnav__menu {
    margin-top: 65px;
  }
  .gnav__menu .gnav__menu__item, .gnav__menu2 .gnav__menu__item {
    width: 90%;
    height: 35px;
  }
  .gnav__menu2 .gnav__menu__item a, .gnav__menu .gnav__menu__item a {
    width: 100%;
    color: #FFF;
    padding: 0;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    font: 12px/1.8 游ゴシック, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", mmfont, Zawgyi-One, Helvetica, Arial, sans-serif;
    font-weight: bold;
  }
  .gnav__menu2 .request, .gnav__menu2 .reserve {
    border: 1px solid #FFF;
    max-width: 100%;
    margin: auto;
    margin-bottom: 15px;
    height: 40px;
  }
  .gnav__menu2 .request a, .gnav__menu2 .reserve a {
    text-align: left;
    justify-content: flex-start;
    padding-left: 15px;
  }
  .gnav__menu2 .request:hover, .gnav__menu2 .reserve:hover {
    background: #555;
  }
  .menu__line {
    background: #000;
  }
  /*白い部分*/
  .gnav__menu__item, .gnav__menu2 .gnav__menu__item {
    box-shadow: none;
  }
}



/*------------------------------------
スマホフッター
--------------------------------------*/
.sp-footer {
display: flex;
justify-content: space-between;
position: fixed;
bottom:0;
left:0;
right:0;
z-index:5000;
background: rgba(255,255,255,0.95);
padding-top: 5px;
font-size: 9px;
height: 80px;
}

.sp-footer li {
width: 25%;
margin: 2px;
border: 1px solid #9A9FAF;
text-align: center;
padding: 5px;
letter-spacing: 0;
}


.sp-footer li.reserve {
border:1px solid #A4A43D;
color: #A4A43D;
}
.sp-footer span {
display: block;
}
.sp-footer img {
width: 50px;
margin: auto;
}

/*------------------------------------
PC版ナビゲーション
--------------------------------------*/

@media screen and (min-width: 1025px) {
  header {
    position: static;
	  background:#FFF;
  }
  header .wrapper {
    height: 75px;
  }
	
.pcHeadWrapper {
	width:100%;
	max-width:1024px;
	margin:auto;
	overflow: hidden;
	padding:10px;
}
  .logo {
    height: 100%;
	  text-align: center;
	  vertical-align: middle;
	  float: left;
  }
  .menu-bar-area {
    display: none;
  }
  .menu-bar {
    position: relative;
    display: none;
  }
  .fixed_menu {
    display: block;
    position: fixed;
    top: 0;
    right: 0px;
    transition: all .5s;
    z-index: 100;
background: rgba(151,150,240,0.8);  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, rgba(251,199,212,0.9), rgba(151,150,240,0.8));  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, rgba(251,199,212,0.9),  rgba(151,150,240,0.8)); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  background: rgba(188, 180, 221, 0.9);
    height: 55px;
    width: 200px;
    margin-top: 0px;
    cursor: pointer;
  }
	
	.fixed_menu.active {
		background:#000;
	}
	.fixed_menu:after {
		content:"MENU";
		color:#FFF;
		display: block;
		position:absolute;
		left: 50px;
		top:17px;
		height:15px;
		font-family: Georgia, 'Times New Roman', Times, 'serif';
		
	}
	
		/*親要素いっぱいにリンク効かせたい*/
	.fixed_menu a.menu {
	width:100%;
	height:50px; /*親の高さと等しい*/
}
  
  /*ﾒﾆｭｰの横棒たち*/
  .fixed_menu .menu__line {
    display: block;
	max-width: 20px;
  }
	
  .menu__line {
    display: none;
    background: #FFF;
  }
  .fixed_menu .menu__line {
    display: block;
  }
	
  .hnavpc, .gnavpc {
    display: block;
    font-family: 'Noto Serif', "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
  }
  .hnavpc a, .gnavpc a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 100%;
  }
  .gnavpc a {
    height: 40px;
  }
  .hnavpc a {
    font-size: 12px;
	  font-weight:bold;
	  letter-spacing: 0.1em;
   font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", sans-serif;
	}
  .hnavpc {
	float: right;
	width: 400px;
	height:100%;
	}
  .hnavpc__menu {
    display: flex;
    justify-content: flex-end;
  }
  .hnavpc__menu li {
    width: 70px;
  }
  .hnavpc__menu li i {
    margin-right: 3px;
  }
  .hnavpc__menu li:hover{
    opacity: 0.5;
  }
  .hnavpc__menu .request, .hnavpc__menu .reserve {
    background: #DDD;
    margin-left: 10px;
    font-size: 13px;
    width: 110px;
  }
  .gnavpc {
    background: #111;
    clear: both;
    color: #FFF;
    font-size: 14px;
  }
  .gnavpc__menu {
    width: 100%;
    max-width: 1024px;
    margin: auto;
    display: flex;
    justify-content: space-between;
  }
  .gnavpc__menu li {
    width: 14.2%;
  }

	.gnavpc__menu li:hover {
		background-color: #333;
	}
}


/*------------------------------------
インフォメーション
--------------------------------------*/

.info-area {
  background: #111;
  text-align: center;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", serif;
  color: #FFF;
}

.info-area h2,
#topcontent-concept h2 {
  color: #FFF;
  letter-spacing: 0.15em;
  font-weight: normal;
  font-family: "Adobe Garamond Pro", "Roboto Slab", Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ 明朝", "MS PMincho", serif;
  padding-bottom: 1.5em;
}

.info-area h2{ margin-top: 20px;}

#topcontent-concept h2 {
  color: #000;
}

.info-area {
  padding: 0px 0;
	box-sizing: border-box;
}


.info-area .upper,
.info-area .under {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  box-sizing: border-box;
  overflow: hidden;
  padding: 0 0 1em;
  color: #FFF;
}


.info-area .upper {
  border-bottom: 1px solid #333;
  margin-bottom: 30px;
}

.info-area .upper p {
  margin: 0px 0;
  font-size: 4.3vw;
  line-height: 1.7;
box-sizing: border-box;
}
.info-area .upper span {
  font-size: 2.2vw;
  }
.info-area .under span {
	font-size: 15px;
	letter-spacing: 0;
}

.info-area .under p {
  font-size: 4vw;
  line-height: 2.5;
  letter-spacing: 0.05em;
box-sizing: border-box;
}

.info-area  .linkplan{
	background:white;
	padding :5px 8px;
	margin-left:15px;
	color:black;
	font-size:16px;
	letter-spacing: 0.1em;
}

.info-nav {
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
}

.info-nav li {
  width: 80%;
  max-width: 480px;
  background:rgba(188, 180, 221, 0.9);
  margin: 5px auto;
  padding: 1.2em 10px;
  font-size: 13px;
  color: #FFF;
  cursor: pointer;
  transition: .2s;
}

.info-nav li:hover {
  background: #EEE;
	color: #000;
}

@media screen and (min-width: 491px) {
	
.info-area {padding: 20px 0;}
  .info-area .upper p {
    font-size: 28px;
	margin:20px 0;
	}
  .info-area .under p {
    font-size: 22px;
	  line-height: 2;
  }
  .info-nav {
    justify-content: center;
    margin-top: 35px;
  }
  .info-nav li {
    width: 40%;
    max-width: 250px;
    margin-right: 5px;
    margin-left: 5px;
    padding: 1.4em 10px;
	  box-sizing: border-box;
  }
}

/*------------------------------------
コンテンツ
--------------------------------------*/

.contentbg {
  background: url(../img/cmn/contentbg.png);
	background-size: 120px;
}

/*------------------------------------
トップ+下層ページでも使用。英語+日本語+英語のタイトル
マージンの調整は#title01,#tilte02...でかけること
--------------------------------------*/

.topcontent-area {
  margin-top: 50px;
  color: #555;
  font-size: 4.8vw;
  text-align: center;
  letter-spacing: 0.05em;
  font-weight: normal;
  font-family: "Adobe Garamond Pro", "Roboto Slab", Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ 明朝", "MS PMincho", serif;
  line-height: 1.8;
	box-sizing: border-box;
}

.top-text-eng {
  font-size: 70%;
	color: #888;
}

.top-title-eng {
  font-size: 70%;
  letter-spacing: 5px;
  font-weight: normal;
  padding-bottom: 7px;
}

.top-title {
  padding-bottom: 5px;
  letter-spacing: -0.05em;
	font-weight: normal;
  font-family: "Adobe Garamond Pro", "Roboto Slab", Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ 明朝", "MS PMincho", serif;
  font-feature-settings: "palt";
}

.top-title br {
  display: block;
}

.topcontent-area figure {
  width: 90%;
  margin: auto;
  margin-bottom: 30px;
  margin-top: 40px;
}

/*------------------------------------
トップページコンセプトでのみ使用
--------------------------------------*/
#topcontent-concept {
  text-align: center;
  font-size: 12px;
  line-height: 3;
  letter-spacing: 0;
  padding: 3em 0;
  margin-top: 0;
  padding-top: 50px;
}

@media screen and (min-width:491px) {
  #topcontent-concept {
    font-size: 17px;
  }
  .topcontent-area {
    margin-top: 50px;
    color: #555;
    font-size: 28px;
  }
.top-text-eng {
  font-size: 50%;
}

.top-title-eng {
	padding-bottom:15px;
	}
.top-title {
	font-weight:normal;
	}
  .top-title br {
    display: none;
  }
}


/*------------------------------------
コンテンツクリックボタン
--------------------------------------*/

.click {
  display: inline-block;
  position: relative;
  font-size: 17px;
  margin: 3% 0;
  overflow: hidden;
  cursor: pointer;
}

.click::after {
  content: "";
  position: absolute;
  display: block;
  right: 25px;
  top: 50%;
  margin-top: -7px;
  width: 9px;
  height: 14px;
  background: url(../img/cmn/arrow.fw.png) no-repeat right center;
  background-size: 100%;
  animation: click_arrow 1.5s linear infinite;
}

@keyframes click_arrow {
	0% {
		right:25px
	}
	100% {
		right: 5px;
	}
}
.click span {
  display: block;
  padding: 15px 80px 15px 15px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: #555;
  text-decoration: none;
  transition: all .5s;
  letter-spacing: 2px;
}

.click span:hover {
  background: #222;
  color: #fff;
  letter-spacing: 4px;
}

.click, #contents_wrap section:nth-child(2n) .inner .click {
  font-size: 11px;
}


/*------------------------------------
コンタクト
--------------------------------------*/

#contact h2 {
	padding-top:25px;
	padding-bottom:10px;
}

.contactArea {
  background-position: center;
  background-size: 100%;
  padding: 10px 0 20px;
  font-size: 2vw;
  /*border-top: 1px solid #555;*/
  width: 90%;
  margin: auto;
  max-width: 490px;
	margin-bottom:20px;
}

.telArea {
  background: #f2f9cb;
  text-align: center;
  font-size: 1.5em;
  padding-top: 30px;
  padding-bottom: 50px;
  letter-spacing: 0;
  marign-top: 30px;
}

.toiawase {
	font-size: 1.9em;
	letter-spacing: -0.02em;
	line-height: 1.6em;
	margin-top: 30px;
}
.telArea h2 {
  font-size: 2.4em;
  margin-bottom: 15px;
  letter-spacing: 0.3em;
}

.tel {
  font-size: 4.5em;
  margin-top: 15px;
}

.teikyu {
  width: 350px;
  margin:auto;
  text-align: center;
	line-height: 1.5em;
}

.gclogo {
  width: 200px;
  margin: 25px auto;
}

.gccopy {
  font-size: 1.2em;
}

@media screen and (min-width: 491px) {
  .contactArea {
    font-size: 10px;
    max-width: 600px;
	margin-bottom:0;
	padding:0;
  }
}

/*#mainvisual {display: none;}
#mainvisual-sp {display: block;}*/

/*------------------------------------
ページトップ
--------------------------------------*/

div.tothetopfixed {
  position: fixed;
  left: 15px;
  bottom: 30px;
  z-index: 90;
  width: 40px;
  text-align: right;
  margin-right: auto;
  margin-left: auto;
  display: inline;
}

div.tothetopfixed img {
  widht: 48px;
  height: 40px;
}

/*------------------------------------
下層ページのメインコンテンツ
--------------------------------------*/

/*パララックス風*/
#content-mv-area{
	position: relative;
	height:45vh;
	background-size:contain;
  margin-top: 50px;
  color: #555;
  font-size: 4.5vw;
  text-align: center;
  letter-spacing: 0.05em;
  font-weight: normal;
  font-family: "Adobe Garamond Pro", "Roboto Slab", Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ 明朝", "MS PMincho", serif;
  line-height: 1.6;
	box-sizing: border-box;
}

.mainvisual-fixed{
	height:100vh;
	z-index:-500;
  background-position: top center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: auto 460px;
	background-color: #464646;
}

@media screen and (min-width:491px){
	#content-mv-area {
		height:40vh;
	}
}
@media screen and (min-width:769px){
.mainvisual-fixed{
  background-position: top left;
background-size: 120% auto;
}

}
@media screen and (min-width:1201px){
	.mainvisual-fixed{
  background-position: center center;
		background-size: cover; 	
	}
}
#content-mv-area .overlay,
#content-mv-area .content-title {
	position:absolute;
	top:0;
	right:0;
	left:0;
	bottom:0;
	width:100%;
	height:100%;
	color:#FFF;
	display: flex;
	justify-content: center;
	align-items: center;
}

#content-mv-area .content-title{
	text-align: center;
}

#content-mv-area .overlay {
	background: rgba(0,0,0,0.2);
}
#content-mv-area figcaption{
	position: absolute;
	font-size: 13px;
	color:#FFF;
	bottom: 3px;
	left: 8px;
	z-index: 3;
}



#content-mv-area .top-text-eng {
  font-size: 40%;
}

#content-mv-area .top-title-eng {
  font-size: 70%;
  letter-spacing: 5px;
  font-weight: normal;
  padding-bottom: 0px;
	color:#FFF;
  font-family: "Adobe Garamond Pro", "Roboto Slab", Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ 明朝", "MS PMincho", serif;
  font-feature-settings: "palt";
}

#content-mv-area .top-title br {
  display: block;
}

#content-mv-area .topcontent-area figure {
  width: 90%;
  margin: auto;
  margin-bottom: 30px;
  margin-top: 40px;
}

@media screen and (min-width:491px) {
#content-mv-area  {
    color: #555;
    font-size: 28px;
  }
#content-mv-area .top-text-eng {
  font-size: 50%;
}

#content-mv-area .top-title-eng {
	padding-bottom:15px;
	}
#content-mv-area .top-title {
	font-weight:normal;
	}
 #content-mv-area .top-title br {
    display: none;
  }
}

@media screen and (min-width:1025px) {
#content-mv-area  {
	margin:0;
	height:90vh;
	font-size:37px;
	letter-spacing: 0.05;
	}
	
	#content-mv-area .top-title-eng {
		font-size: 50%;
		letter-spacing: 0.01;
	}
}


/*------------------------------------
下層ページ 定型ボックス
*box-areaはフォントのみ指定。親要素に付属。
　　box-title 相対サイズ指定
   box-text　相対サイズ指定
*box+数字でレイアウト
*box01は左右で文章+写真のとき
*box02は文章だけのとき
--------------------------------------*/
.box-area {
	font-size:14px;
	line-height: 2em;
	letter-spacing: 0;	
}

.box-area .box-title {
	margin: 20px 0 10px;
	font-size:16px;
	font-weight: bold;
font-feature-settings: "pkna" 1;
}
.box-area .box-text br {display: none;}

/*box01 文章+写真のレイアウト*/
.box01 .box-title {margin-top: 40px;}
.box01 .box-text {margin-bottom: 40px;}
.box01 figure {margin-bottom:20px;}

.box02 {text-align: justify;}
.box02 br {display: none;}
@media screen and (min-width: 769px){
	.box01 {
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
	}
	
	.box01 div {width: 44%; margin-right: 40px;}
	
	.box01 .text {
	padding-right: 25px;
	margin-top: 20px;}
	
	.box02-text {
		margin-top:20px;
	}
	.box02 {text-align: left;}
.box02 br {display: block;}
	.box-area br {display: block;}
	
}

/*--------------------
txt-main
----------------------*/
.box-area .txt-main {
	width: 90%;
	margin: 0px auto;
	text-align:justify;
	margin-bottom: 40px;
	}

	.box-area .txt-main br {
		display: none;
	} 

@media screen and (min-width: 769px){
.box-area .txt-main {
	max-width: 960px;
	margin: 50px auto;
	text-align:center;
	font-size:1em;
	line-height: 3.0em;
	}
	
	.box-area .txt-main br {
		display: block;
	} 
}


/*------------------------------------
下層ページ 定型ボックス②　ホワイト
--------------------------------------*/
.white-box-area {
	background:#FFF;
	padding: 20px 20px 40px;
	color: #111111;
	max-width:1200px;
	margin:auto;
	width:100%;
	box-sizing:border-box;
	text-align: justify;
}
@media screen and (min-width: 769px){
	.box01 br {display: block;}
	.white-box-area {
	padding: 40px 100px 60px;
}
}
/*------------------------------------
下層ページ 定型ボックス③　ブラック
--------------------------------------*/
.black-box-area {
	background:#000;
	padding: 20px 20px 40px;
	color: #DDD;
	max-width:1200px;
	margin:auto;
	}
	
@media screen and (min-width: 769px){
.black-box-area {
	background:#000;
	padding: 60px;
	color: #DDD;
	max-width:1200px;
	margin:auto;
	}

	.box01 br {display: block;}
}

/* ------------------------
pagenavigation
------------------------ */
.pagenavigation-area {
	border-top: 1px solid #AAA;
	border-bottom: 1px solid #AAA;
	height: 137px;
		font-family: Georgia, 'Times New Roman', Times, 'serif';
	font-size: 19px;
	letter-spacing: 0;
	position: static;
}

.pagenavigation {
	display: flex;
	justify-content: center;
	align-items:center;
	height: 100%;
	margin:auto;
	position: relative;
}

.pagenavigation span {
	display: block;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", sans-serif;
	font-size:13px;
	color:#999;
	margin-top:10px;
}

.pagenavigation .left,
.pagenavigation .right {
	height: 100%;
	width:100%;
	display: flex;
	align-items:center;
	justify-content: space-around;
	text-align : left;
}


.pagenavigation a {
	width:100%;
	height:100%;
}
.pagenavigation .btn {
	width:100%;
	display: flex;
	justify-content: space-around;
	padding: 0 30%;
	align-items: center;
	height:100%;

}
.pagenavigation .left .btn{
	flex-direction: row-reverse;
}

.pagenavigation li:hover {
	cursor: pointer;
}
.pagenavigation .left {
	position:relative;
}
.pagenavigation .right{
	position: relative;
}

.pagenavigation .left::after {
	content:"";
	background: #AAA;
	width: 1px;
	height: 70%;
	display: block;
	position:absolute;
	top:20px;
	bottom:0;
	right:0;
}

.pagenavigation .right
.pagenavigation .left{
  position: relative;
  display: inline-block;
  color: #333;
  text-align: center;
  text-decoration: none;
  transition: .3s;
}

.pagenavigation .right:before,
.pagenavigation .left:before{
 position: absolute;
  top: 17px;
  bottom: 17px;
  left: 4;
  z-index: -1;
  content: '';
  background: url(../img/cmn/pagenavbg.png);
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.5s;
	width:95%;
	margin: auto;

}

.pagenavigation .left:before{
	transform-origin: left top;
}
.pagenavigation .right:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.pagenavigation .left:hover::before {
	transform-origin: right top;
  	transform: scale(1, 1);
}

.arrow-left,
.arrow-right{
    transition: -webkit-transform 0s linear;
    transition: transform 1.3s ease;
    transition: transform 1.3s ease,
		-webkit-transform 1.3s ease;
}

.pagenavigation .left:hover .arrow-left {
	transition-delay: 0s; 
	-webkit-transform: scale(1, 1) translateX(-70px); 
	    -ms-transform: scale(1, 1) translateX(-70px); 
	        transform: scale(1, 1) translateX(-70px);
}

.pagenavigation .right:hover .arrow-right {
	transition-delay: 0s; 
	-webkit-transform: translateX(70px); 
	    -ms-transform: translateX(70px); 
	        transform: translateX(70px);
}

@media screen and (max-width: 768px){
	.pagenavigation {display: block;}
	
	.pagenavigation .left::after {
	display: none;
}
	
	.pagenavigation .left {display: none;}

}

/*---------------------------
ふわふわ
-----------------------------*/
.fuwafuwa {
-webkit-animation:fuwafuwa 1.5s infinite linear alternate;
animation:fuwafuwa 1.5s infinite linear alternate;
}

@-webkit-keyframes fuwafuwa {
0% {-webkit-transform:translate(0, 0) rotate(-5deg);}
50% {-webkit-transform:translate(0, -5px) rotate(0deg);}
100% {-webkit-transform:translate(0, 0)rotate(5deg);}
}

@keyframes fuwafuwa {
0% {transform:translate(0, 0) rotate(-5deg);}
50% {transform:translate(0, -5px) rotate(0deg);}
100% {transform:translate(0, 0)rotate(5deg);}
}



/*---------------------------
仲介バナー
-----------------------------*/
.user-link-area {
	background: #EEE;
	padding: 20px;
}
.user-link-area ul {
	display: flex;
	justify-content: center;
	max-width: 1024px;
	margin: auto;
}

.user-link-area ul li {
	width: 48%;
	margin: 0.8%;
	transition: .1s;
}

.user-link-area ul li:hover {
	opacity: 0.6;
}

@media screen and (max-width: 768px){
.user-link-area ul {
	display: block;
	}
	.user-link-area ul li {
	width: 93%;
	margin: 10px auto 15px;
	}
}


 
.attention {
	font-size: 12px;
	opacity: 0.6;
	letter-spacing: 0;
	line-height: 1.8em;
	/*border-top: 1px solid #999;*/
	padding: 10px;
	margin: 40px auto;
}