/*****************************************
	nomon base.css
	共通レイアウトスタイル定義
*****************************************/
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}
/* Reset ------------------------------ */
html {font-size: 10px;overflow-y: scroll;}h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd {margin: 0;padding: 0;border: 0;outline: 0;font-size: 1em;}address,caption,cite,code,dfn,em,strong,th,var {font-style: normal;}a,a:hover,a:active,a:visited {outline: none;}img {vertical-align: bottom;-webkit-user-select: none;-moz-user-select: none;-khtml-user-select: none;-webkit-user-drag: none;-khtml-user-drag: none;}
/* normalize.css --END-- */


/* --------------------------------------
  Base
--------------------------------------- */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
	box-sizing: border-box;
}
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
html {-webkit-font-smoothing: antialiased;}
body {
  color: #404040;
  font-family: 'Noto Sans JP', "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", verdana, "Meiryo", "Osaka", sans-serif, "Noto Serif JP";
	font-size: 15px;
	line-height: 1.7;
}
h1,h2,h3,h4,h5 {
	margin-bottom: 1em;
	font-weight: bold;
	line-height: 1em;
}
p,dl,ol,ul,menu,pre {margin-bottom: 1em;}
ol,ul,menu {padding: 0;}
ul {list-style: none;}
ol {margin-left: 1.5em;}
fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}
textarea {resize: vertical;}
img, object, embed {max-width: 100%;}
img {
	height: auto;
	vertical-align: bottom;
}
small {font-size: 12px;}

@media only screen and (max-width: 768px) {
	body {
		font-size: 16px;
		line-height: 1.7;
	}
	small {	font-size: 10px;}
}

/* --------------------------------------
  Link
--------------------------------------- */
a:link {
	color: #fff;
	text-decoration: none;
}
a:visited {
	color: #fff;
	text-decoration: none;
}
a:hover {
	color: #fff;
	text-decoration: none;
}

/* --------------------------------------
  Common
--------------------------------------- */
.wrap {
   /* ※背景固定追従のposition stickyを使うときは指定NG */
  overflow: hidden;
}

/*----- Title -----*/
/*----- Text -----*/
/*----- Button -----*/
/*----- Label -----*/
/*----- Line -----*/
/*----- accordion -----*/

@media screen and (min-width: 769px) and (max-width: 1080px){}

@media (max-width: 768px) {}



/* --------------------------------------
  Layout
--------------------------------------- */
/* ↓ 変な左右の空間確認用 */
/* *{
  outline: 2px red solid;
} */

.section_inn {
	padding: 50px 0;
}

h2,h3,p {
	font-family: 'Noto Serif JP', serif;
  color: #404040;
  font-weight: 400;
}

/* ↓ スライドのタイマーラインの表示非表示 */
.vegas-timer {
  display: none;
}

@media only screen and (max-width: 768px) {
	.section_inn {
		padding: 10px 0;
	}
}




/* --------------------------------------
  footer
--------------------------------------- */

/*----- morelink -----*/
.more_link_area {
  overflow:hidden;
  position:relative
}
.more_link_area::after {
  content:"";
  background-image:url(image/nomon_bgimg.jpg);
  background-position:center top;
  background-size:cover;
  position:absolute;
  top:0;
  right:0;
  left:0;
  bottom:0;
  z-index:-1;
  /* ↓ bgimageの明るさ調整 暗0→通100→明101 */
  -webkit-filter:brightness(40%);
  filter:brightness(40%);
}
.footer_info {
  padding-top: 150px;
  padding-bottom: 150px;
}
.footer_info img {
margin-bottom: 50px;
}
.footer_info p {
  color: #fff;
  font-size: 1.8rem;
}
.contact {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 4px 10px 4px 8px;
  border-radius: 5px;
  margin-top: 8px;
  display: inline-block;
  line-height: 1;
}

.contact:hover {
  color: #fff;
	text-decoration: none;
  opacity: 0.8;
}


/* 背景が流れる（下から上） */
.bg-bottom:before {
  content: '';
  position: absolute;
  bottom:0;
  left: 0;
  z-index: 2;
  background-color: #485858;
  width: 100%;
  height: 0;
  transition:.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
}
.bg-bottom:hover:before{
  height: 100%;  
  background-color: #D7D8D8;
}


/*----- copyright -----*/
.footer_copy {
  font-family: 'Noto Serif JP', serif;
  background: #160b0b;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 1px;
}
.footer_copy a {
	color: #fff;
	text-decoration: none;
}

/* ---------*/

@media screen and (max-width: 991px) {

  .footer_info img {
    width: 70%;
  }
  .footer_info p {
    font-size: 1.8rem;
  }
  .contact {
    font-size: 1.4rem;
  }


}

@media (max-width: 768px) {

  .footer_info img {
    width: 75%;
    padding-bottom: 0;
  }
  .footer_info {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .footer_info p {
    font-size: 1.4rem;
    padding-top: 10px;
  }
  .more_link_box {
    padding-bottom: 35%;
  }
  .footer_copy {
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 1.3rem;
  }

}


/*アニメーション*/
.fadeitem {
  opacity: 0.9;
}
.fadeitem.active {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes fadeInUp20 {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp20 {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes kenburnsDownLeft {
	0% {
	-ms-transform: scale(1.1);
	-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}
	100% {
	-ms-transform: scale(1);
	-webkit-transform: scale(1);
		transform: scale(1);
	}
}




/* --------------------------------------
  Generic class
--------------------------------------- */
.section:after,
.container:after,
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}
.section,
.container,
.clearfix {zoom:1;}

.only_pc {display: block;}
.only_pc_tb {display: block;}
.only_tb {display: none;}
.only_tb_sp {display: none;}
.only_sp {display: none;}
@media screen and (min-width: 769px) and (max-width: 1080px){
	.only_pc {display: none;}
	.only_pc_tb {display: block;}
	.only_tb {display: block;}
	.only_tb_sp {display: block;}
	.only_sp {display: none;}
}
@media only screen and (max-width: 768px) {
	.only_pc {display: none;}
	.only_pc_tb {display: none;}
	.only_tb {display: none;}
	.only_tb_sp {display: block;}
	.only_sp {display: block;}
}

/* margin -----------------------------*/
.mg00 {margin: 0!important;}
.mga {margin: auto!important;}
/* 中央揃え */
.mg0a {margin: 0 auto!important;}
/* 右寄せ */
.mg0r { margin-left: auto!important;
  margin-right: 0!important;}
/* 左寄せ */
.mgl0 { margin-left: 0!important;
  margin-right: auto!important;}
/* margin-top */
.mgt00 {margin-top: 0!important;}
.mgt05 {margin-top: 5px!important;}
.mgt10 {margin-top: 10px!important;}
.mgt15 {margin-top: 15px!important;}
.mgt20 {margin-top: 20px!important;}
.mgt25 {margin-top: 25px!important;}
.mgt30 {margin-top: 30px!important;}
.mgt40 {margin-top: 40px!important;}
.mgt50 {margin-top: 50px!important;}
.mgt100 {margin-top: 100px!important;}
/* margin-right */
.mgr00 {margin-right: 0!important;}
.mgr05 {margin-right: 5px!important;}
.mgr10 {margin-right: 10px!important;}
.mgr15 {margin-right: 15px!important;}
.mgr20 {margin-right: 20px!important;}
.mgr25 {margin-right: 25px!important;}
.mgr30 {margin-right: 30px!important;}
.mgr40 {margin-right: 40px!important;}
.mgr50 {margin-right: 50px!important;}
/* margin-bottom */
.mgb00 {margin-bottom: 0!important;}
.mgb05 {margin-bottom: 5px!important;}
.mgb10 {margin-bottom: 10px!important;}
.mgb15 {margin-bottom: 15px!important;}
.mgb20 {margin-bottom: 20px!important;}
.mgb25 {margin-bottom: 25px!important;}
.mgb30 {margin-bottom: 30px!important;}
.mgb35 {margin-bottom: 35px!important;}
.mgb40 {margin-bottom: 40px!important;}
.mgb45 {margin-bottom: 45px!important;}
.mgb50 {margin-bottom: 50px!important;}
.mgb55 {margin-bottom: 55px!important;}
.mgb60 {margin-bottom: 60px!important;}
.mgb65 {margin-bottom: 65px!important;}
.mgb70 {margin-bottom: 70px!important;}
.mgb75 {margin-bottom: 75px!important;}
.mgb80 {margin-bottom: 80px!important;}
.mgb85 {margin-bottom: 85px!important;}
.mgb90 {margin-bottom: 90px!important;}
.mgb100 {margin-bottom: 100px!important;}
/* margin-left */
.mgl00 {margin-left: 0!important;}
.mgl05 {margin-left: 5px!important;}
.mgl10 {margin-left: 10px!important;}
.mgl15 {margin-left: 15px!important;}
.mgl20 {margin-left: 20px!important;}
.mgl25 {margin-left: 25px!important;}
.mgl30 {margin-left: 30px!important;}
.mgl40 {margin-left: 40px!important;}
.mgl50 {margin-left: 50px!important;}


/* padding ----------------------------- */
.pd00 {padding: 0!important;}
/* padding-top */
.pdt00 {padding-top: 0!important;}
.pdt10 {padding-top: 10px!important;}
.pdt50 {padding-top: 50px!important;}
.pdt150 {padding-top: 150px!important;}
/* padding-right */
.pdr00 {padding-right: 0!important;}
/* padding-bottom */
.pdb00 {padding-bottom: 0!important;}
.pdb10 {padding-bottom: 10!important;}
.pdb50 {padding-bottom: 50!important;}
/* padding-left */
.pdl00 {padding-left: 0!important;}

.flr {float: right;}
.fll {float: left;}
.clb {clear: both;}
.cll {clear:left;}
.clr {clear:right;}

.tac {text-align: center!important;}
.tar {text-align: right!important;}
.tal {text-align: left!important;}

.fwb {font-weight: 700!important;}
.fwm {font-weight: 500!important;}
.fwn {font-weight: 400!important;}

.wsn {white-space: nowrap!important;}

/* font ------------------------------- */
.font01 {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
}
.font02 {
  font-family: 'Cormorant Garamond', serif;
}
.font03 {
  font-family: 'EB Garamond', serif;
}

/* font-size */
.f_size14 { font-size: 1.4rem; }
.f_size15 { font-size: 1.5rem; }
.f_size16 { font-size: 1.6rem; }
.f_size18 { font-size: 1.8rem; }
.f_size23 { font-size: 2.3rem; }
.f_size26 { font-size: 2.6rem; }
.f_size30 { font-size: 3rem; }

/* color-list ----------------------------- */
.color01 {color: #a30000;}/*red*/
.color02 {color: #404040;}/*gray01*/
.color03 {color: #808080;}/*gray02*/
.color04 {color: #f3f3f3;}

/* Generic class --END-- */




