@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');

html{
	font-size: 62.5%;
/*16px*62.5%=10px*/
}
body{
	font-size: 1.8rem;
	font-family: "Roboto", "Zen Kaku Gothic New", "sans-serif";
	line-height: 2.4;
	font-weight: 400;
	letter-spacing: 1.2px;
	background-color: #fff;
	color: #37210e;
}
p{
	line-height: 2.8;
}
/*pc_tab(横)のみ*/
.d_tab {
	display: none !important;
}
/*SP(481～767px)のみ*/
.d_sp {
	display: none !important;
}
/*SSP(～480px)のみ*/
.d_ssp {
	display: none !important;
}
/*SP以外*/
.d_pc_but{
	display: none !important;
}
@media print, screen and (max-width: 999px) {
	.d_pc_tab{
		display: block !important;
	}
	.d_pc {
		display: none !important;
	}
	.d_tab{
		display: block !important;
	}
	.d_sp {
		display: none !important;
	}
	.d_ssp {
		display: none !important;
	}
	.d_pc_but{
		display: block !important;
	}
}
@media print, screen and (max-width: 767px) {
	/*PC,tab*/
	.d_pc_tab{
		display: none !important;
	}
	.d_pc {
		display: none !important;
	}
	.d_tab{
		display: none !important;
	}
	.d_sp {
		display: block!important;
	}
	.d_ssp {
		display: none!important;
	}
	.d_pc_but{
		display: block !important;
	}
}
@media print, screen and (max-width: 480px) {
	.d_pc {
		display: none !important;
	}
	.d_tab{
		display: none !important;
	}
	.d_sp {
		display: none !important;
	}
	.d_ssp {
		display: block!important;
	}
	/*SP以外*/
	.d_sp_but{
		display: none !important;
	}
	/*PC以外*/
	.d_pc_but{
		display: block !important;
	}
}
/* ===== * reset * =====*/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td,figure {
	margin: 0;
	padding: 0;
}
address,caption,cite,code,dfn,em,strong,th,var {
	font-style: normal;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
section{
	padding: 20rem 0;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
}
q:before,q:after {
	content: '';
}
object,embed {
	vertical-align: top;
}
hr,legend {
	display: none;
}
img,abbr,acronym,fieldset {
	border: 0;
}
ol,ul {
	list-style-type: none;
}
img{
	width: 100%;
	height: auto;
	display: block;
}
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
*:before,
*:after {
	font-family: "Font Awesome 5 free";
	font-weight: bold;
}
section{
	overflow: hidden;
}
.te_left {
	text-align: left !important;
}
.te_right {
	text-align: right !important;
}
.te_center {
	text-align: center !important;
}
.inb{
	display: inline-block;
}
.flex {
	display: flex !important;
	flex-wrap: wrap;
}
.reverse {
	flex-flow: row-reverse;
}
.a_center {
	align-items: center;
}
.j_center {
	justify-content: center;
}
.j_sb{
	justify-content: space-between;
}
small {
	font-size: 90%;
	font-weight: normal;
}
a {
	outline: none;
	text-decoration: none;
	color: #37210e;
	transition: .4s;
}
a:hover {
	opacity: 0.8;
/*	color: #ff7d00;*/
	filter: alpha(opacity=80);
/* ie lt 8 */
	-ms-filter: alpha(opacity=80);
/* ie 8 */
	-moz-opacity: 0.8;
/* FF lt 1.5, Netscape */
	-khtml-opacity: 0.8;
/* Safari 1.x */
}
.button {
    position: relative;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
	font-weight: 400;
    line-height: 2rem;
    display: inline-block;
	z-index: 100;
	background-color: #727f00;
	padding: 1.5rem 0 1.5rem;
	min-width: 200px;
	text-align: center;
	border: 2px solid #727f00;
	margin: 4rem auto 0;
	box-shadow: 0 0 4px 0 #707068;
}
.button:hover{
	background-color: rgba(143,149,90,1);
}
span.anchorlink {
	position: relative;
	top: -180px;
	display: block;
}
.b{
	font-weight: bold;
}
.im_txt{
	font-size: 2rem;
	font-weight: 800;
}
.im_line{
	background-image: -webkit-gradient(linear,left top,right top,color-stop(rgba(255,0,0,.3)),#ffe640);
    background-image: linear-gradient(90deg,rgba(255,232,0,.7),#ffcb33);
    background-repeat: no-repeat;
    background-size: 200% 40%;
    background-position: 0 bottom;
    -webkit-animation: marker 5s ease 0s;
    animation: marker 5s ease 0s;
    font-weight: 800;
}
.fadeInTrigger{
	opacity: 0;
}
.fadeIn{
	animation: fadeInAnime 1.2s forwards;
}
@keyframes fadeInAnime{
  from {
	  opacity: 0;
  }
  to {
	  opacity: 1;
  }
}
/* ぼかしから出現 */
.blur{
	animation: blurAnime 1.2s forwards;
}
@keyframes blurAnime{
  from {
	  filter: blur(10px);
	  transform: scale(1.02);
	  opacity: 0;
  }
  to {
	  filter: blur(0);
	  transform: scale(1);
	  opacity: 1;
  }
}
.blurTrigger{
    opacity: 0;
}
/*color*/
.black{
	color: #000;
}
.red{
	color: #ff0000;
}
.blue {
	color: #34698d;
}
.pink {
	color: #268600 !important;
}
.green{
	color: #268600;
}
.yellow {
	color: #ffff00;
}
.gray{
	color: #888;
}
.white {
	color: #fff !important;
}
.brown {
	color: #411700;
}
.gold {
	color: #927700;
}
.gold_l {
	color: #d7b77d;
}
.orange {
	color: #ff6200;
}
/*size*/
.small{
	font-size: 80%;
}
.big{
	font-size: 130%;
}
/* ===== * fadeIn * =====*/
.fade {
	opacity : 0;
	transition: 1s;
}
.fadein{
	animation: fadeIn 1s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
	opacity: 1;
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* 画面内に入った状態 */
.scrollin {
	opacity : 1;
	transform : translate(0, 0);
}
/* 2つ目の要素に200msのdelayをかける */
.fadein:nth-of-type(2) {
	-moz-transition-delay:600ms;
	-webkit-transition-delay:600ms;
	-o-transition-delay:600ms;
	-ms-transition-delay:600ms;
	}
/* 3つ目の要素に400msのdelayをかける */
.fadein:nth-of-type(3) {
	-moz-transition-delay:400ms;
	-webkit-transition-delay:400ms;
	-o-transition-delay:400ms;
	-ms-transition-delay:400ms;
	}
/*--header--*/
.header {
	z-index: 1000;
	position: fixed;
	width: 100%;
}
#top-head.slidein {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
	background: rgba(255,255,255,.9);
	height: 90px;
	left: 0;
}
#top-head.slidein .logo-slidein {
	display: block;
}
@media screen and (min-width: 1100px) {
	@keyframes slideIn {
	  0% {
		transform: translateY(-180px);
		opacity: 0;
	  }
	  100% {
		transform: translateY(0);
	  }
	  40%,100% {
		opacity: 1;
	  }
	}
}
/*青丸がついているリスト*/
ul.list02 li {
	display: flex;
	padding-bottom: 0.2rem;
	padding-top: 0.5rem;
}
ul.list02 li:before {
	content: "\f111";
	color: #34698d;
	display: block;
	font-size: 0.9rem;
	position: relative;
	top: 5px;
	margin: 0 0.5rem;
}
/* box01 */
.box01 {
	box-shadow: 0px 0px 3px #2d4b69;
	margin: 2rem 0.5rem;
	padding: 2rem ;
	border-radius: 1rem;
}
.box02 {
	background: rgba(0,0,0,.7);
	margin: 0.5rem 0.5rem;
	padding: 2rem 3rem;;
	border-radius: 0.5rem;
}
@media print, screen and (max-width: 1199px) {
	body{
		font-size: 1.4rem;
	}
}
@media print, screen and (max-width: 999px) {

}
@media print, screen and (max-width: 480px) {
	p{
		line-height: 2.2;
	}
	section {
		padding: 10rem 0;
	}
	.team{
		background-position: 60% center !important;
	}
}
