@charset "UTF-8";
/* CSS Document */

/* color */
:root{
	--main-color: #f6a600;
	--blue: #007dc3;
	--blue-sky: #00b2ee;
	--blue-light: #e1f6fd;
	--orange:#f6a600;
	--orange-light:#fdedcc;
}

.blue {color: #0068b6}/* primary */
.sky_blue {color: #00a3e9}/* secondary */
.white {color:#fff}
.black {color:#2b2b2b}
.orange {color:#ff6633}/* */



header {
	position: fixed;
	z-index: 1001; 	
	width:100%; 
	background:#fff; 
	padding: 10px 15px;
	height: 80px;
	box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
	font-family: "Noto Sans JP", sans-serif;
}
header.agent {
	background:transparent; 
	box-shadow: 0px 0px 0px rgba(0,0,0,0)
}

/* ---------------------------------------------------- header 
*/

.head__inner {
	display:flex;
	justify-content: space-between;
	align-items: center;
	height: 100%
}
.head__logo {
	display: flex;
	flex-flow: row;
	align-items: center;
}
.head__logo h1 {margin-right: 1em;  font-size: 2rem}
/*.head__logo p {font-size:  1.4rem}*/

/* nav */
.head__nav {display: flex; flex-flow: row; }
.head__nav li {margin-right: 10px!important; }
.head__nav li:first-child {margin-right: 10px;}
.head__nav li:last-child {margin-right: 0em;}
.head__nav li a {
	color:#333;
	padding: 5px 15px; 
	width: 180px; 
	display: block; 
	text-align: center; 
	font-weight: 700; 
	border:1px solid #ccc; 
	border-radius: 8px;
	transition: 0.18s all ease
	}
.head__nav li a:hover {
	color: var(--main-color); 
	border-top:1px solid var(--main-color);
	border-right:1px solid var(--main-color);
	border-bottom:1px solid var(--main-color);
	border-left:1px solid var(--main-color);
}

@media screen and (max-width:834px){
	.head__nav li a {font-size: 1.3rem; width: auto;}
}

@media screen and (max-width:667px){
	/*body {font-size: 1.5rem}*/
	
	header {height: 60px; }
	main {padding-top: 60px;}
	header nav {display: none;}	
	
  .head__logo {
	width:80vw
  }
  .head__logo h1 {width:120px; height: auto; line-height: 1; margin-right: 0.5em}
	
  .head__nav {display: block;}
  .head__nav li {margin-right: 0em; width: 100%; padding: 0; border-bottom:0px solid #ccc;}
	.head__nav li:first-child {margin-right: 0px;}
	.head__nav li a {
		padding: 15px 15px 15px 32px;
		text-align: left;
		width: 100%;
		border-radius: 0px;
		border-bottom:1px solid #ccc;
		border-top: 0px solid #ccc;
		border-left: 0px solid #fff;
		border-right: 0px solid #fff;
	}
	.head__nav li a:hover {
	border-top:0px solid var(--main-color);
	border-right:0px solid var(--main-color);
	border-bottom:1px solid #ccc;
	border-left:0px solid var(--main-color);
	}
  /*.head__nav li {border-bottom:1px solid #ccc; padding: 10px 0; width: 90% }	*/
	
	.head__nav li.ic a {
		position: relative;
		font-size: 15px !important
	}
	.head__nav li.ic a::before {
		position: absolute;
		content: "\f0a9";
		font-family:'Font Awesome 5 Free';
		font-weight: 900;
			top:50%;
		left:15px;
		transform: translateY(-50%)
	}	
	.head__nav li.ic_sec a {
		position: relative;
	}
	.head__nav li.ic_sec a::before {
		position: absolute;
		content: "・";
			top:50%;
		left:15px;
		transform: translateY(-50%)
	}	
	
  header nav {
	position: fixed;
    right: 0px;
    width: 100%;
	height: 100vh;
    background: #f7f7f7;
	box-shadow: 0px 1px 4px rgba(0,0,0,0.3);
    top: 60px;
	z-index: 1000;
    transition: all 0.3s ease;
    opacity: 0;
    display: none;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  header nav.active {
    opacity: 1;
  }
  header nav.block {
    display: block;
  }		

  header #menu-button {
    position: absolute;
    top: 10px;
    right: 0px;
    width: 45px;
    height: 35px;
	display: block;
  }
  header #menu-button > div {
    width: 25px;
    height: 1px;
    background: #999;
    position: absolute;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  header #menu-button > div:nth-child(1) {
    top: 25%;
    left: 6px;
    -webkit-transform: translate(0%, 0%);
    -moz-transform: translate(0%, 0%);
    -ms-transform: translate(0%, 0%);
    -o-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }
  header #menu-button > div:nth-child(2) {
    top: 50%;
    left: 6px;
  }
  header #menu-button > div:nth-child(3) {
    top: 75%;
    left: 6px;
    -webkit-transform: translate(0%, 0%);
    -moz-transform: translate(0%, 0%);
    -ms-transform: translate(0%, 0%);
    -o-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }
  header #menu-button.active > div:nth-child(1) {
    top: 50%;
    -webkit-transform: translate(-5%, -50%) rotate(45deg);
    -moz-transform: translate(-5%, -50%) rotate(45deg);
    -ms-transform: translate(-5%, -50%) rotate(45deg);
    -o-transform: translate(-5%, -50%) rotate(45deg);
    transform: translate(-5%, -50%) rotate(45deg);
  }
  header #menu-button.active > div:nth-child(2) {
    opacity: 0;
  }
  header #menu-button.active > div:nth-child(3) {
    top: 50%;
    -webkit-transform: translate(-5%, -50%) rotate(-45deg);
    -moz-transform: translate(-5%, -50%) rotate(-45deg);
    -ms-transform: translate(-5%, -50%) rotate(-45deg);
    -o-transform: translate(-5%, -50%) rotate(-45deg);
    transform: translate(-5%, -50%) rotate(-45deg);
  }	
	
}




/* -------------------------- footer 
*/
footer {
	border-top: solid 1px #E6E6E6;
	font-family: "Roboto", "Noto Sans JP", sans-serif !important;
}
.footer__inner__wrap {
	background: #333;
}
.footer__inner {
	padding: 20px 15px;
	display: flex;
	flex-flow: row;
	justify-content: space-between;
	margin-bottom: 20px;
	margin-left: auto;
	margin-right: auto;
	color:#fff;
	max-width: 1100px;
}
.footer__inner a {
	color:#fff;	
}
.footer__inner > div{
	width: 25%;
	padding: 10px 20px
}


.ft__link__box {
	border-right: 1px solid #666;
}
.ft__link li {
	/*line-height: 3;*/
	font-size: 1.3rem;
	padding: 7px 0
}
.ft__link li a:hover {
	color:var(--orange)
}
.ft__sns__box {
	display: flex;
	flex-flow: column;
	justify-content: flex-end
}
.ft__sns {
	display: flex;
	flex-flow: row;
	/*border:1px solid #f00;*/
}

.ft__contact__box {
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center
}

.ft__contact i {margin-right: 10px}
.ft__contact {
	/*font-size: 2.0rem;*/
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	border:1px solid #ccc;
	border-radius: 24px;
	height: 60%;
	width: 80%;
	padding:10px;
	transition: 0.2s all ease
}
.ft__contact:hover {
	background: #444;
	border:1px solid #444;
}

.footer__logo {
	display: flex;
	flex-flow: row;
	align-items:flex-end
}
.footer__logo h1 {margin-right: 2em; margin-bottom: 0.2em; margin-left: 1em}
.footer__logo p {font-size: 1.4rem; line-height: 1.5;}

.footer__address {
	display: flex;
	flex-flow: row;
	justify-content: space-between;
	padding: 10px;
}


.footer__copy { font-size: 1.2rem; padding-right: 15px; text-align: right;}

@media screen and (max-width:834px){
	.footer__inner > div{
		width: 26%;
		padding: 10px
	}
.footer__inner > div:nth-child(3) {
	width: 17%;
}
}

@media screen and (max-width:667px){
	
	.footer__inner {
		display: flex;
		flex-flow: column
	}
	
	.footer__inner > div {
		width: 100%
	}
.footer__inner > div:nth-child(3) {
	width: 100%;
}	
	
	.ft__link__box {
	border-right: 0px solid #666;
		border-bottom: 1px solid #666;
	}
	
	.footer__address {
	display: flex;
	flex-flow: column;
	justify-content: space-between;
		align-items: center
	}
	
	.footer__logo {
		flex-flow: column;
		align-items:center;
	}
	.footer__logo h1 {margin-right: 0em; margin-bottom: 0.5em; margin-left: 0em; width: 42vw; text-align: center}
	.footer__logo p {font-size: 1.3rem; line-height: 1.7; text-align: center; margin-bottom: 20px}

	
	.footer__copy { padding-right: 0px;text-align: center;}
}


/* ----------------------------------------- show and hide 
*/
.pc {display: block}
.sp {display: none}
@media screen and (max-width:667px){
	.pc {display: none}
	.sp {display: block}	
}


/* ----------------------------------------- Side Banner 
*/

.bnr__wrap {
	display: none;
	position: fixed;
	z-index: 10;
	right: 10px;
	bottom:10px;
	padding: 0;
}
.bnr__wrap .close {
	position: absolute;
	right:1px;
	top:5px;
}
.bnr__wrap .close i {
	background: #fff;
	border-radius: 50%;
}
@media screen and (max-width:667px){
	.bnr__wrap {
		right: 1px;
	}
	.bnr__wrap img {
		width:50vw;
	}
}
@media (orientation: landscape) and (max-width: 667px){
		.bnr__wrap img {
		width:30vw;
	}
}