@charset "utf-8";
/***** 全体 *****/
#wrap {
  max-width: 1200px;
  margin: 0 auto;
}
#container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width:768px) {
	#wrap {
		width: 100%;
		padding: 0;
		margin: 0;
	}
  .rev_item {
    display: flex;
    flex-direction: column-reverse;
  }
}



/***** header *****/
#top_wrap {
	width: 100%;
  margin: 0 auto;
	background: linear-gradient(90deg, #def1df, #d0e9d2);
}
header {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 20px 30px;
  background: #fff;
}
@media screen and (max-width:768px) {
  header {
	  width: 100%;
	height: 60px;
    position: fixed;
    top: 0;
	z-index: 999;
	background: #fff;
	box-shadow: 2px 2px 4px #ccc;
	  background-size: contain;
    padding: 0 15px;
	display: flex;
	align-items: center;
  }
}
header .head_tit a {
  text-decoration: none;
}
header .head_tit a h1 {
  font-size: 3.5rem;
  font-weight: 600;
  padding-left: 30px;
  color: #000;
}
@media screen and (max-width:768px) {
  header .head_tit a h1 {
    font-size: 1.4rem;
    padding-left: 10px;
  }
}



/***** nav *****/
.g_nav, .u_nav {
  background: linear-gradient(var(--sub-color1), var(--sub-color2));
  box-shadow: 2px 2px 4px #ccc;
}
.g_nav ul, .u_nav ul {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.g_nav ul li, .u_nav ul li {
  flex-grow: 1;
  text-align: center;
  border-right: 1px solid #686D68;
  position: relative;
}
.g_nav ul li:first-child, .u_nav ul li:first-child {
  border-left: 1px solid #686D68;
}
.g_nav ul .focus:first-child {
  border-left: none;
}
.g_nav ul .sp {
  display: none;
}
.g_nav ul li a, .u_nav ul li a {
  display: block;
  color: #fff;
  padding: 15px 20px;
  font-size: clamp(1.1rem, 1.16vw + 0.208rem, 1.6rem);
  position: relative;
  z-index: 0;
}
.g_nav ul li a:before, .u_nav ul li a:before {
	content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  transition: 0.4s;
  background: linear-gradient(var(--sub-color1), var(--sub-color2));
}
.g_nav ul li a:after, .u_nav ul li a:after {
	content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
  left: 0;
  top: 0;
  background: linear-gradient(#648767, #384339);
}
.g_nav ul li a:hover:before, .u_nav ul li a:hover:before, .g_nav ul .focus a:hover:before, .u_nav ul .focus a:hover:before {
  opacity: 0;
}
.g_nav ul li .yellow, .u_nav ul li .yellow {
  color: #FFF70E;
}
.g_nav ul .focus a:before, .u_nav ul .focus a:before {
	content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  transition: 0.4s;
  background: linear-gradient(#fff, #a0d3a6);
}
.g_nav ul .focus a:after, .u_nav ul .focus a:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
  left: 0;
  top: 0;
  background: linear-gradient(rgb(100, 135, 103), rgb(56, 67, 57));
}
.g_nav ul .focus a, .u_nav ul .focus a {
  color: var(--base-color);
}
@media screen and (max-width:768px) {
  .g_nav {
    width: 100%;
    height: 100%;
    overflow: auto;
    position: fixed;
    z-index: 9999;
    transform: translate(100%);
    transition: all 0.5s;
    background: linear-gradient(var(--sub-color1), var(--sub-color2));
  }
  .g_nav.panelactive {
    transform: translateZ(0);
  }
  .g_nav.panelactive .nav_list {
    width: 100%;
    height: 100%;
    overflow: auto;
  }
  .g_nav ul {
    display: block;
	width: 100%;
  }
  .g_nav ul li {
    text-align: left;
    border-left: none;
	border-right: none;
    border-bottom: 1px solid #686D68;
  }
  .g_nav ul li:last-child {
    padding-bottom: 62px;
    border-bottom: none;
  }
  .g_nav ul .sp {
    display: block;
  }
  .g_nav ul li a {
    padding: 12px 15px;
	font-size: 1.6rem;
  }
	.g_nav ul li a:before, .u_nav ul li a:before {
		background: none;
	}
	.g_nav ul li a:after, .u_nav ul li a:after {
		background: none;
	}
  .u_nav {
    display: none;
  }
}

/* ハンバーガーボタン */
@media screen and (max-width:768px) {
  .menu_btn {
    position: fixed;
    top: 10px;
    right: 15px;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    background: linear-gradient(var(--sub-color1), var(--sub-color2));
	box-shadow: 2px 2px 4px #ccc;
  }
  .menu_btn span, .menu_btn span:before, .menu_btn span:after {
    content: '';
    display: block;
    height: 2px;
    width: 25px;
    border-radius: 3px;
    background-color: #fff;
    position: absolute;
    transition: all 0.5s;
  }
  .menu_btn span:before {
    bottom: 8px;
  }
  .menu_btn span:after {
    top: 8px;
  }
  .menu_btn.active span {
    background-color: rgba(255, 255, 255, 0);
  }
  .menu_btn.active span::before {
    bottom: 0;
    transform: rotate(45deg);
  }
  .menu_btn.active span::after {
    top: 0;
    transform: rotate(-45deg);
  }
}



/***** footer *****/
footer {
  background-color: var(--base-color);
  color: #fff;
}
footer .ft_wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
	align-items: center;
	padding: 30px 0;
}
@media screen and (max-width:768px) {
  footer .ft_wrap {
    width: 100%;
	  padding: 0 15px;
	  padding: 30px 15px 10px;
	display: block;
  }
}
footer .ft_wrap dl {
  display: flex;
  align-items: center;
}
footer .ft_wrap dl:first-child{
		margin-right: 60px;
	}
@media screen and (max-width:768px) {
  footer .ft_wrap dl {
    display: block;
    font-size: 1.4rem;
	margin-bottom: 15px;
  }
	footer .ft_wrap dl:first-child{
		margin-right: 0;
	}
}
footer .ft_wrap dl dt {
  background-color: #fff;
  color: var(--base-color);
  font-weight: 500;
  width: 140px;
  margin-right: 20px;
  padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}
@media screen and (max-width:768px) {
  footer .ft_wrap dl dt {
    margin: 0 0 10px 0;
    padding: 10px 30px;
  }
}
footer .ft_wrap dl dd a {
  color: #fff;
}
#copy {
  background-color: var(--base-color);
  border-top: 1px solid #fff;
  color: #fff;
  text-align: center;
  font-size: 14px;
  padding: 20px 0;
}
@media screen and (max-width:768px) {
	#copy {
		padding: 20px 15px;
	}
}



/***** 見出し *****/
.pagettl {
	margin-bottom: 30px;
	padding: 1rem 2rem;
	background-color: var(--base-color);
	color: #fff;
	font-size: 2.4rem;
	font-weight: 600;
	letter-spacing: 2px;
}
@media screen and (max-width:768px) {
	.pagettl {
		font-size: 2rem;
	}
}
.ttl {
	position: relative;
	margin-bottom: 20px;
    padding: .3em 0 .2em 1em;
	font-size: 2rem;
	font-weight: 600;
    border-bottom: 2px solid var(--base-color);
}
.ttl::before {
	position: absolute;
    top: 0;
    left: .3em;
    height: 11px;
    width: 12px;
    background: var(--base-color);
    content: '';
}
.ttl::after {
	position: absolute;
    top: .7em;
    left: 0;
    height: 8px;
    width: 8px;
    background: var(--base-color);
    content: '';
}
@media screen and (max-width:768px) {
	.ttl {
		font-size: 1.8rem;
	}
}
.sub_ttl {
	margin-bottom: 15px;
    padding: .2em .2em .2em .5em;
	font-size: 1.8rem;
	font-weight: 600;
    border-left: 5px solid var(--base-color);
}
@media screen and (max-width:768px) {
	.sub_ttl {
		font-size: 1.6rem;
		padding: 0 0 0 .5em;
	}
}
.cap {
	font-weight: 600;
	font-size: 1.8rem;
	padding: 0 .4em .2em;
    border-bottom: 3px dashed var(--base-color);
}
@media screen and (max-width:768px) {
	.cap {
		font-size: 1.6rem;
	}
}
.sub_cap {
	margin: 20px 0 10px;
	font-weight: 700;
	color: var(--base-color);
}


