@charset "UTF-8";

*,
*:before,
*:after {
  box-sizing: border-box;
}

body{
	font-family:'Roboto','Hiragino Sans','Meiryo','Hiragino Kaku Gothic ProN',sans-serif;
	font-size: 16px;
	line-height: 1.6;
	letter-spacing: 0.8px;
	word-break: break-all;
	color: #1F383E;
	padding: 0;
	margin: 0;
}
h1,h2{
	text-align: center;
	margin: 0px;
}
h1{
	font-size: 2.5em;
}
h2{
	font-size: 2em;
}
a {
  text-decoration: none;
  color: #1ca9e3;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
}
ul,
li {
list-style: none;
padding: 0px;
margin: 0px;

}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

.hover-action {
  display: block;
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .15);
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .15);
}

.hover-action:hover {
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-transform: translate(0, -4px);
  transform: translate(0, -4px);
  -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .2);
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .2);
}

/*画像フェードイン*/
.scroll-up {
  opacity: 0; 
  visibility: hidden;
  transform: translateY(50px);
  transition: all 1s;
}
.scroll-up.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

/*レイアウト*/
.inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 40px;
}


@media (max-width: 767px) {
	 .section .inner {
    padding: 0 20px;
  }
}


/*ヘッダー*/
.header{
	padding-top: 5vh;
}
/*ナビゲーション*/
.gnav_fixed{
  position: fixed;
  top: 0;
  left: 0;
z-index: 100;
  width: 100%;
	
}
.g_nav{
  font-weight: bold;
  font-size: 16px;
background-color: #F1EB78;

}

.g_navlist{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding-top: 2vh;
	padding-bottom: 1vh;
	transition: all 0.5s ease-in-out;
}

.g_nav_item{	
margin: 0 20px;
}

.g_navlist a{
	color: #1F383E;
	position: relative;

	
}

.g_navlist a::after {
position: absolute;
left: 0;
content: '';
width: 100%;
height: 2px;
background: #1F383E;
bottom: -10px;
opacity: 0;
visibility: hidden;
transition: 0.3s;
}

.g_navlist a:hover::after {
visibility: visible;
bottom: -3px;
opacity: 1;
  -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .12);
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .12);
}

.burger{
	cursor: pointer;
	display: none;
}
.burger div{
	width: 25px;
	height: 3px;
	background-color: #1F383E;
	margin: 5px;
	transition: all 0.5s ease-in-out;
}
.nav-active{
	transform: translateX(0%)!important;
}

@media (max-width: 768px) {
	body{
		overflow-x: hidden;
	}
	.header{
		background: #fff;
		padding-top: 40px;
	}
	.g_navlist{
		position: absolute;
		right: 0;
		height: 70vh;
		top:5vh;
		background-color: #F1EB78;
		flex-direction: column;
		align-items: center;
		width: 50%;
		transform: translateX(100%);
}
	.g_navlist li{
		opacity: o;
		padding-bottom: 8vh;
	}
	.burger{
		display: block;
		margin-left: 85vw;
		padding-top: 1vh;
		padding-bottom: 1vh;
		background-color:#F1EB78;
		
	}
}
@keyframes navLinksFade {
	0%{
		opacity: 0;
		transform: translateX(50px);
	}
	100%{
		opacity: 1;
		transform: translateX(0);
	}
}
.toggle .line1{
	transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line2{
	opacity: 0;
}
.toggle .line3{
	transform: rotate(45deg) translate(-5px, -6px);
}

/*メインビジュアル*/
.mv_area{
	
	text-align: center;
	background-color: #F1EB78;
}
.mv_img{
	max-width: 1200px;
	margin: 0 auto;
}

/*セクションタイトル*/
.tittle_area{
	padding-top: 60px;
	padding-bottom: 30px;
}
.section-tittle{
  text-align: center;
font-size: 24px;
	letter-spacing: 0.1em;
}
.section-subtitle{
	text-align: center;
	font-size: 1em;
	margin-top: -10px;
}
@media (max-width: 768px) {
	.section-tittle{
		font-size: 18px;
	
	}
}
.footer{
	margin: 0px;
    padding-top: 3vh;
	padding-bottom: 2vh;
	background-color: #1F383E;
}
.copyright{
	text-align: center;
		color: #fff;
	font-size: 12px;
	letter-spacing: 1px;
}

/*もっと見るボタン*/
.button_more{
	padding-bottom: 40px;
}
.button_more a {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #1F383E;
  font-weight: 700;
  display: block;
  position: relative;
  box-sizing: border-box;
  max-width: 180px;
  text-align: center; 
  padding: 4px 16px 4px 0;
  margin: 24px;
  margin-inline: auto;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}

.button_more a::before {
  content: "";
  display: block;
  position: absolute;
  width: 180px;
  height: 2px;
  background: #1F383E;
  bottom: 0;
  transition: all 0.3s;
}

.button_more a::after {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 3px;
  background: #1F383E;
  rotate: 40deg;
  right: -4px;
  bottom: 10px;
  transition: all 0.3s;
}

.button_more a:hover::after,
.button_more a:hover::before {
  translate: 20px 0;
  transition: all 0.3s;
}

/*トップへ戻るボタン*/
.page_top{

    }
.top_btn{
      position: fixed;
      bottom: 60px;
      right: 30px;
      transition: .2s;
      opacity: 0;
      z-index:-1;
}

@media (max-width: 768px) {
	.top_btn{
      bottom: 20px;
      right: -20px;
}
	.top_btn img{
		width: 70%;
	}
}
