@import url(http://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
body{
	overflow-x: hidden;
	max-width: 100%;
	position: relative;
}

p,a,small,address{
	font-family: a-otf-ryumin-pr6n, serif;
	font-weight: 300;
	font-style: normal;
}

.font_serif{
	font-family: a-otf-ryumin-pr6n, serif;
	font-weight: 300;
	font-style: normal;
}

h1,h2,.more_btn_area a,.more_btn_area_right a{
	font-family: sans-serif;
	font-weight: 700;
}

.font_sans-serif{
	font-family: sans-serif;
	font-weight: 700;
}

a{
	color:inherit;
  text-decoration: none;
  cursor: pointer;

}

.wrap{
	overflow: hidden;
}

.float_left{
	float: left;
}

.float_right{
	float: right;
}

.clear{
	clear: both;
}

.hide{
	display: none;
}

.input{padding: 18px;
    border: solid #aaa 2px;
    border-radius: 5px;
    font-size: 16px;
}

.font_vertical{
	writing-mode: vertical-rl;
}

.transition{
	transition: .5s;
}

.text-center{
	text-align: center;
}

.text-left{
	text-align: left;
}

.text-right{
	text-align: right;
}

.vertical-middle{
	vertical-align: middle;
}

.margin_0_auto{
	margin: 0 auto;
}

.color_white{
	color: #fff;
}

.close_area{
	right: -20%;
}

.contents_area_left{
	position: absolute;
	bottom: 20px;
}

.contents_area_right{
	position: absolute;
	bottom: 20px;
}

.nav_sns_logo{
	position: relative;
}


#area1{
	position: relative;
  width: 100%;
  min-height: 100vh;
}

.more_btn_area{
	margin-top: 15px;
	margin-left: 10px;
	background-color: #fff;
	width:-moz-fit-content; /* Firefox */
  width:fit-content; /* other browsers */
  border-left: solid  #000 10px;
}


.more_btn_area a, .more_btn_area_right a{
	width: 100px;
	height: 50px;
	text-align: center;
	line-height: 50px;
}

.scroll_area{
	width: 50px;
	position: absolute;
	margin: 0 auto;
}

.scroll_linear_area_top{
	width: 5%;
	float: right;
	position: relative;
  bottom: 275px;
}

.scroll_linear_area_right{
	width: 5%;
	float: right;
	position: absolute;
  bottom: 10px;
  right: 0;
}


.scroll_linear_type1{
	background: linear-gradient(0deg, #000000, #ffffff);
	width: 1px;
	height: 200px;
}

#area2{
	position: relative;
  width: 100%;
  min-height: calc(100vh - 80px);
  background-size: cover;
	background-image: url("../img/reSIze_iStock-2155672333.jpg");
}

/* 画像を暗くするオーバーレイ */
#area2::before{
  content: '';
  /* ↓暗いオーバーレイを半透明で配置 */
  background-color: rgba(0, 0, 0, .3);
  /* ↓全体を覆うように配置 */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.sub_contents_area_right, .sub_contents_area_left{
	-ms-writing-mode: tb-rl;
  line-height: 48px;
  position: absolute;
}



#scroll_linear_area2{
  width: 5%;
  float: right;
  position: absolute;
  bottom: 10px;
	right: 0
}

.scroll_linear_type2{
	background: linear-gradient(0deg, #ffffff, #000000);
	width: 1px;
	height: 200px;
}

#area3{
	position: relative;
  width: 100%;
  min-height: calc(100vh - 80px);
  background-size: cover;
	background-image: url(../img/79331237.jpg);
}

/* 画像を暗くするオーバーレイ */
#area3::before{
  content: '';
  /* ↓暗いオーバーレイを半透明で配置 */
  background-color: rgba(0, 0, 0, .3);
  /* ↓全体を覆うように配置 */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

#area3_contents_area_inner{
	position: relative;
}

.more_btn_area_right{
	float: right;
	margin-top: 15px;
	margin-right: 10px;
	background-color: #fff;
	width:-moz-fit-content; /* Firefox */
  width:fit-content; /* other browsers */
  border-right: solid #000 10px;
}

.scroll_linear_area_left{
    width: 5%;
    float: right;
    position: absolute;
    bottom: 10px;
    left:  0;
}

/*モーダルを開くボタン*/
.modal-open{
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  font-weight: bold;
  background: #000;
  margin: auto;
  cursor: pointer;
}
/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0,0,0,50%);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
}
/*モーダル本体の擬似要素の指定*/
.modal-container:before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active{
  opacity: 1;
  visibility: visible;
  z-index: 9999999;
}
/*モーダル枠の指定*/
.modal-body{
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 500px;
  width: 90%;
}
/*モーダルを閉じるボタンの指定*/
.modal-close{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -40px;
  right: -40px;
  width: 40px;
  height: 40px;
  font-size: 40px;
  cursor: pointer;
}
/*モーダル内のコンテンツの指定*/
.modal-content{
  background: #fff;
  text-align: left;
  padding: 30px;
}

.sns_icon{
	margin: 8px 9px;
}

/*
.sns_div_area{
	position: relative;
	width: 240px;
	height: 40px;
	float: left;
}
*/

.sns_div_area_child{
	position: absolute;
	top: 18px;
  left: 56px;
  font-size: 12px;
}

#footer_icon_img_mobile{
	position: absolute;
	top: -10px;
	left: 0;
	margin: auto;
	width: 150px;
}

#footer_adr_mobile{
	position: absolute;
	right: 0;
	font-size: 14px;
}

#footer_icon_area_mobile{
	position: relative;
	width: 90%;
	padding-bottom: 30px;
	margin-top: 20px;
}

.sns_div_area_mobile{
	position: relative;
	width: 240px;
}

.sns_div_area_mobile_child{
	position: absolute;
	top: 20px;
	left: 80px;
}

#sns_icon_area_mobile{
	width: 300px;
	padding-top: 60px;
}

