@charset "utf-8";

/* ページの初期値設定 ///
////////////////////////////////////////////////*/

@font-face {
    font-family: "NotoSansJP";
    font-style: normal;
    font-weight: normal;
	src: url("../font/NotoSansJP/NotoSansJP-Light.woff") format("woff"),
	   url("../font/NotoSansJP/NotoSansJP-Light.otf") format("opentype");
}
@font-face {
    font-family: "NotoSansJP";
    font-style: normal;
    font-weight: bold;
	src: url("../font/NotoSansJP/NotoSansJP-Bold.woff") format("woff"),
	   url("../font/NotoSansJP/NotoSansJP-Bold.otf") format("opentype");
}

html, body {
	width: 100%;
}
html {
	min-height: 100%;
	position: relative;
}
body {
	color: #333;
	font-family: Arial, NotoSansJP, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 14px;
	text-align: center;
	line-height: 1;
	vertical-align: top;
	-webkit-text-size-adjust: 100%;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
    animation: fadeIn 2s ease 0s 1 normal;/*ページ全体ふわっと表示させる(1/3)*/
}
@keyframes fadeIn {/*ページ全体ふわっと表示させる(2/3)*/
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {/*ページ全体ふわっと表示させる(3/3)*/
    0% {opacity: 0}
    100% {opacity: 1}
}
a {
	color: #999;
	transition: all 0.3s ease;
}
.op:hover, .op:hover img{	
    opacity: 0.8;
    filter: alpha(opacity=80);
    -ms-filter: "alpha(opacity=80)";
    -moz-opacity: 0.8;
    -khtml-opacity: 0.8;
}

/* フェードイン */
.fadeInUp {
	 opacity : 0;
	 transform: translateY(40px);
	 transition: 1s;
}

/* 列 */
.colBase {
	width: 100%;
	display:-webkit-box;
  display:-ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.col-2 > .col {
	width: 50%;
}
.col-3 > .col {
	width : 32% ;
}

/* リスト */
.listBase {
	width: 100%;
}
.listBase > li {
    text-indent: -1em;
    margin-left: 1em;
}
.listBase > li:before {
	content: "・";
	display: inline-block;
    width: 1em;
    text-indent: 0;
}

/* マーカー */
.noteBase {
	background: linear-gradient(transparent 50%, #ffe4b4 50%);
}

/* アイコン */
.icnS {
	margin-left: 4px;
	position: relative;
}
.icnS:after {
  content: "";
  width: 1em;
  height: 1em;
	display: inline-block;
	vertical-align: middle;
}
.icn_win:after {
  background: url(../img/icn_win.svg) left top / 100% auto no-repeat;
}


/* チャートリスト */
.chartBase {
	width: 100%;
  	display:-webkit-box;
  	display:-ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.chartBase .ttl,
.chartBase .txt {
	padding: 2%;
	box-sizing: border-box;
}
.chartBase .ttl {
	font-weight: bold;
  	display:-webkit-box;
  	display:-ms-flexbox;
    display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
    justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #eee;
}
.chartBase .txt {
	width: 70%;
	border-bottom: 1px solid #eee;
	background-color: #fff;
}

/* テキスト */
.txtBase {
	line-height: 1.8;
}

/* ボタン */
.btnBase {
	text-align: center;
}
.btnBase > a {
	position: relative;
	display: inline-block;
	border-radius: 100px;
	background-color: #ffa200;
	color: #fff;
	font-weight: bold;
}
.btnBase > a:hover {
	background-color: #fec149;
}
.btnBase > a:after {
	content: "";
  width: 10px;
  height: 10px;
	top:50%;
	margin-top: -5px;
	position: absolute;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*重なり回避*/
.zi10{
	z-index: 10;
}

/*文字色*/
.fcO {
	color: #f29500;
}
.fcR {
	color: #c80a00;
}

/*文字間*/
.lcSS {
	letter-spacing: -0.1em;
}
.lcS {
	letter-spacing: -0.04em;
}
.lcW {
	letter-spacing: 0.04em;
}

/*背景*/
.bgBe {
	background-color: #ffedcf;
}
.bgPi {
	background-color: #ffe9e9;
}
.bgGr {
	background-color: #f6f6f6;
}


/* header ///
////////////////////////////////////////////////*/
#header,
#header.scroll {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	padding: 0;
	line-height: 1;
	background-color: #fff;
	border-bottom:solid 1px #eee;
	z-index: 100;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}
#p-top #header:not(.scroll) {
	background-color:transparent;
	border-bottom:none;
}
#header .headerIn {
	width: 100%;
	position: relative;
}
#header .headerIn:after {
	content: "";
	display: block;
	clear: both;
}
#header .header-logo {
	float: left;
}
#header .header-logo .logo_uriaga-ru,
#header.scroll .header-logo .logo_uriaga-ru {
	background-image: url("../img/logo_uriaga-ru_b.png") ;
	background-repeat: no-repeat;
	background-position: top left;
	background-size: contain;
	text-indent: -100000px;
	overflow: hidden;
	box-sizing: border-box;
}
#p-top #header:not(.scroll) .header-logo .logo_uriaga-ru {
	background-image: url("../img/logo_uriaga-ru_w.png") ;
}


/* nav関連 ///
////////////////////////////////////////////////*/
#gloval-nav {
	color: #333;
	font-size: 18px;
}

/* contents ///
////////////////////////////////////////////////*/
#contents {
	width: 100%;
	position: relative;
	overflow: hidden;
}

/* secBase */
.secBase {
	width: 100%;
	position: relative;
}

/* secIn */
.secIn {
	margin: 0 auto;
	box-sizing: border-box;
	text-align: left;
	position: relative;
}
.secIn.wFull {
	width: 100%;
	padding: 0;
}

/* secTtl */
.secTtl {
	margin-bottom: 20px;
	text-align: center;
	position: relative;
	font-weight: bold;
	line-height: 150%;
}
.secTtl:before {
	width: 50px;
	height: 5px;
	margin-left: -25px;
	position: absolute;
	content: "";
	bottom: -20px;
	left: 50%;
	background:#c80a00;
}

/* conBase */
.conBase {
	padding-top: 50px;
}

/* conTtl */
.conTtl {
	margin-bottom: 30px;
}
.conTtl .ttl {
	font-size: 2em;
}
.conTtl .ttl:before {
	content: "";
    width: 30px;
	height: 6px;
	display: inline-block;
	margin-right: 10px;
	vertical-align: middle;
	background-color: #2cbfef;
}

/* footer ///
////////////////////////////////////////////////*/
#footer {
    background: -webkit-linear-gradient(left, #c80a00, #f39700);
    background: -o-linear-gradient(left, #c80a00, #f39700);
    background: linear-gradient(to right, #c80a00, #f39700);
	color: #fff;
}
#footer .footerIn {
	margin: 0 auto;
}
#footer .copyTxt {
	text-align: left;
}
#footer .copyTxt .ttl {
	margin-bottom: 30px;
	font-weight: bold;
	line-height: 120%;
}
#footer .copyTxt .tel {
	margin-bottom: 10px;
	font-weight: bold;
	background: url("../img/icn_footer_01.png") no-repeat center left;
	background-size: contain;
	line-height: 0.8;
}
#footer .copyTxt .tel a {
	color: #fff;
}
.noFotBtn #footer .con_link {
	display: none;
}
#footer .linkIn a{
	border: 2px solid #fff;
}
#footer .linkIn a:hover {
	background-color: #fec149;
	border: 2px solid #fec149;
	color: #fff;
}
#footer .linkIn a:hover:after {
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
}
#footer .linkIn_01 a{
	background-color: transparent;
}
#footer .linkIn_02 a{
	background-color: #fff;
	color: #c80a00;
}
#footer .linkIn_02 a:after {
    border-top: 1px solid #c80a00;
    border-right: 1px solid #c80a00;
}
#footer .con_nav a{
	color: #fff;
}
#footer .con_nav .navIn {
	padding: 0 10px;
	display: inline-block;
	border-left: 1px solid #fff;
	line-height: 100%;
}
#footer .con_nav .navIn:last-child {
	border-right: 1px solid #fff;
}

/*==== PC ====
============================================================================*/	
@media all and (min-width: 960px){

	body,
	#wrapper {
		display:-webkit-box;
		display:-ms-flexbox;
		display: flex;
  		-webkit-box-orient: vertical;
  		-webkit-box-direction: normal;
  		-ms-flex-direction: column;
		flex-direction: column;
		min-height: 100vh;	
	}
	
	.noPc {
		display: none;
	}
	.tel{
		pointer-events:none;
	}
	
	/* チャートリスト */
	.chartBase .ttl {
		width: 30%;
		border-bottom: 1px solid #fff;
	}
	.chartBase .txt {
		width: 70%;
	}
	.chartBase .txt:first-of-type {
		border-top: 1px solid #eee;
	}
	
	/* ボタン */
	.btnBase > a {
		padding: 20px 60px;
		font-size: 1.6em;
	}
	.btnBase > a:after {
		right: 30px;
	}

	/* header ///
	////////////////////////////////////////////////*/
	#header {
		height: 100px;
	}
	#header a,
	#header.scroll a {
		color: #999;
	}
	#p-top #header:not(.scroll) a {
		color: #fff;
	}
	#header .header-logo {
		padding: 25px 0 0 30px;
	}
	#header .header-logo .logo_uriaga-ru  {
		width: 200px;
		padding-top: 15%;
	}
	#header .header-nav {
		padding: 0 30px 0 0;
	}
	#header .header-nav .nav {
		float: left;
	}
	#header .header-nav .btn {
		float: right;
	}

	
	/* nav関連 ///
	////////////////////////////////////////////////*/
	#gloval-nav .nav,
	#gloval-nav .btn{
		height: 100px;
		display: flex;
		align-items: center;
	}
	#gloval-nav .nav .navIn:nth-child(1) {
		padding: 0 0 0 40px;		
	}
	#gloval-nav .nav .navIn:nth-child(n+2) {
		padding: 0 0 0 25px;
	}
	#gloval-nav .btn .btnIn:nth-child(n+2) {
		margin-left: 10px;
	}
	#gloval-nav .btn .btnIn > a {
		padding: 15px 35px;
		position: relative;
		display: inline-block;
		border-radius: 100px;
		font-weight: bold;
		box-sizing: border-box;
	}
	
	#gloval-nav .btn_01 a,
	#gloval-nav.scroll .btn_01 a{
		color: #f39700;	
		border: 2px solid #f39700;
	}
	#p-top #gloval-nav:not(.scroll) .btn_01 a {
		color: #fff;
		border: 2px solid #fff;
	}

	#gloval-nav .btn_01 a:hover,
	#gloval-nav.scroll .btn_01 a:hover {
		border: 2px solid #fec149;
		background-color: #fec149;
		color: #fff;
	}
	#p-top #gloval-nav:not(.scroll) .btn_01 a:hover {
		border: 2px solid #fec149;
	}

	#gloval-nav .btn_02 a,
	#gloval-nav.scroll .btn_02 a {
		background-color: #f39700;
		color: #fff;
	}
	#p-top #gloval-nav:not(.scroll) .btn_02 a {
		background-color: #fff;
		color: #f39700;	
	}

	#gloval-nav .btn_02 a:hover,
	#gloval-nav.scroll .btn_02 a:hover,
	#p-top #gloval-nav:not(.scroll) .btn_02 a:hover {
		background-color: #fec149;
		color: #fff;
	}
	
	/* contents ///
	////////////////////////////////////////////////*/
	#contents {
		padding-top: 100px;
	}
	
	/* .secBase */
	.secBase {
		margin-top: -100px;
		padding-top: 100px;
	}

	/* .secIn */
	.secIn {
		width: 960px;
		padding: 100px 0;
	}
	
	/* secTtl */
	.secTtl {
		font-size: 40px;
	}

	/* footer ///
	////////////////////////////////////////////////*/
	#footer .footerIn {
		width: 960px;
	}
	#footer .con_copy,
	#footer .con_nav {
		display: flex;
		justify-content: space-between;
	}
	#footer .con_copy {
		padding: 80px 0;
	}	
	#footer .copyTxt .ttl {
		margin-bottom: 30px;
		font-size: 50px;
	}
	#footer .copyTxt .txt {
		margin-bottom: 50px;
	}
	#footer .copyTxt .tel {
		padding-left: 30px;
		font-size: 40px;
	}
	#footer .copyTxt .tel:before {
		width: 20px;
		height: 30px;
		margin-right: 10px;
	}
	#footer .copyImg {
		width: 630px;
	}
	#footer .con_link {
		margin-bottom: 70px;
	}
	#footer .con_link .linkIn {
		margin-right: 20px;
		display: inline-block;
	}
	#footer .con_link .linkIn:last-child{
		margin-right: 0;
	}
	#footer .linkIn a{
		padding: 20px 100px;
	}
	#footer .con_nav {
		margin-bottom: 30px;
	}

}


/*==== SP ====
============================================================================*/	
@media all and (max-width: 959px) {

	.noSp {
		display: none;
	}
	
	/* テキスト */
	.txtBase {
		font-size: 4vw;
	}
	
	/* チャートリスト */
	.chartBase .ttl,
	.chartBase .txt {
		width: 100%;
	}
	.chartBase .ttl {
		padding: 0 5%;
		justify-content:flex-start;
	}
	.chartBase .txt {
		padding: 2% 5% 5%;
		border-right: 1px solid #eee;
		border-left: 1px solid #eee;
	}	

	/* 列 */
	.col-2 > .col,
	.col-3 > .col {
		width: 100%;
	}
	.col-sp-2 > .col {
		width: 50%;
	}
	.col-sp-3 > .col {
		width : 33.33333% ;
		width: calc(100% / 3);
	}
	
	/* ボタン */
	.btnBase > a {
		padding: 20px 40px;
		font-size: 5vw;
	}
	.btnBase > a:after {
		right: 20px;
	}
	
	/* header ///
	////////////////////////////////////////////////*/
	#header {
		height: 70px;
	}
	#header .header-logo {
		padding: 20px 0 0 20px;
	}
	#header .header-logo .logo_uriaga-ru  {
		width: 150px;
		padding-top: 12%;
	}

	#header .header-logo .logo_ar  {
		width: 50px;
	}

	/* nav関連 ///
	////////////////////////////////////////////////*/
	#nav-toggle {
	  height: 32px;
	  position: fixed;
	  top: 20px;
	  right: 20px;
	  cursor: pointer;
	  z-index: 1000;
	}
	#nav-toggle > div {
	  width: 36px;
	  position: relative;
	}
	#nav-toggle span,
	#nav-toggle.scroll span{
	  width: 100%;
	  height: 1px;
	  left: 0;
	  display: block;
	  background-color: #333;
	  position: absolute;
	  transition: transform 0.6s ease-in-out, top 0.5s ease;
	}
	#p-top #nav-toggle:not(.scroll) span {
		background-color: #fff;
	}
	#nav-toggle span:nth-child(1) {
	  top: 0;
	}
	#nav-toggle span:nth-child(2) {
	  top: 14px;
	}
	#nav-toggle span:nth-child(3) {
	  top: 28px;
	}
	#nav-toggle:hover span:nth-child(1) {
	  top: 4px;
	}
	#nav-toggle:hover span:nth-child(3) {
	  top: 23px;
	}	
	
	.open #nav-toggle span {
	  background: #333;
	}
	.open #nav-toggle span:nth-child(1) {
	  top: 15px;
	  transform: rotate(45deg);
	}
	.open #nav-toggle span:nth-child(2) {
	  top: 15px;
	  width: 0;
	  left: 50%;
	}
	.open #nav-toggle span:nth-child(3) {
	  top: 15px;
	  transform: rotate(-45deg);
	}
	
	#gloval-nav {
	  background: #fff;
	  position: fixed;
	  top: 0;
	  left: 0;
	  right: 0;
	  bottom: 0;
	  z-index: 990;
	  text-align: center;
	  display: flex;
	  visibility: hidden;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
	  flex-direction: column;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
	  justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
	  align-items: center;
	  font-size: 2em;
	  opacity: 0;
	  transition: opacity 0.6s ease, visibility 0.6s ease;
	}
	#gloval-nav a {
	  display: block;
	  color: #333;
	  text-decoration: none;
	  padding: 15px 0;
	  transition: color 0.6s ease;
	}
	#gloval-nav a:hover {
	  color: #666;
	}
	#gloval-nav ul {
	  list-style: none;
	}
	#gloval-nav ul li {
	  opacity: 0;
	  transform: translateY(50px);
	  transition: transform 0.6s ease, opacity 0.2s ease;
	}
	
	/* open */
	.open {
	  overflow: hidden;
	}
	.open #gloval-nav {
	  visibility: visible;
	  opacity: 1;
	}
	.open #gloval-nav li {
	  opacity: 1;
	  transform: translateX(0);
	  transition: transform 1s ease, opacity 0.9s ease;
	}
	
	/* contents ///
	////////////////////////////////////////////////*/
	#contents {
		padding-top: 70px;
	}
	
	/* .secBase */
	.secBase {
		margin-top: -70px;
		padding-top: 70px;
	}
	
	/* secIn */
	.secIn {
		width: 100%;
		padding: 50px 20px;
	}
	
	/* secTtl */
	.secTtl {
		font-size: 6vw;
	}

	/* footer ///
	////////////////////////////////////////////////*/
	#footer .footerIn {
		padding: 50px 20px 30px;
	}
	#footer .copyTxt {
		margin-bottom: 8vw;
	}
	#footer .copyTxt .ttl {
		margin-bottom: 4vw;
		font-size: 10vw;
	}
	#footer .copyTxt .txt {
		margin-bottom: 6vw;
	}
	#footer .copyTxt .tel {
		padding-left: 6vw;
		font-size: 10vw;
	}
	#footer .copyImg {
		width: 100%;
		margin-bottom: 8vw;
	}
	#footer .con_link {
		margin-bottom: 50px;
	}
	#footer .con_link .linkIn {
		display: block;
	}
	#footer .con_link .linkIn:nth-child(n+2) {
		margin-top: 30px;
	}
	#footer .linkIn a{
		width: 100%;
		padding: 20px 0;
	}
	#footer .con_nav .nav {
		margin-bottom: 30px;
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	#footer .con_nav .navIn{
		width: 50%;
		box-sizing: border-box;
	}
	#footer .con_nav .navIn:nth-child(2n) {
		border-right: 1px solid #fff;
	}
	#footer .con_nav .navIn:nth-child(n+3) {
		margin-top: 20px;
	}
	#footer .con_nav .copy {
		font-size: 3vw;
	}

	
}



/*==== SP（SE対策） ====
============================================================================*/	
@media all and (max-width: 320px) {

	#footer .con_nav .nav {
		font-size: 3.8vw;
	}
	
}

