@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700;900&family=Noto+Serif+JP:wght@400;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  min-height: 0vw;
}

/*----------------------------------------------------------------------
基本レイアウト
----------------------------------------------------------------------*/

html{
	font-size: 62.5%;
}

body {
	margin: 0;
	padding: 0;
	line-height: 1.8;
	color: #414141;
	font-family: 'Noto Sans JP',"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: 400;
	font-size: 1.6rem;
	letter-spacing: .05rem;
	overflow: hidden;
}

.wrapper {
	position: relative;
	width: 100%;
	text-align: center;
	margin: 0 auto;
}

.header a img {
  transition: .3s;
}

.header a img:hover {
  opacity: 0.5;
}

.sp{
	display: none;
}

.inner{
  width: 1100px;
  max-width: 90%;
  margin: 0 auto;
}

.ttl{
	font-size: clamp(1.6rem, 1.508rem + 0.41vw, 2rem);
	font-weight: 700;
	letter-spacing: .05em;
}


/*----------------------------------------------------------------------
ヘッダー
----------------------------------------------------------------------*/

.header{
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: fixed;
	width: 100%;
	z-index: 999;
	background: #fff;
}

.toggle{
	display: none;
}

.logo{
	line-height: 0;
	margin-left: 20px;
}

.logo img{
	width: min(240px,50vw);
	height: auto;
}
.g-nav-list ul{
	margin: 0 60px 0 0;
}
.g-nav-list li{
	margin-left: min(50px,2.5vw);
}

.g-nav-list a{
	position: relative;
	color: #414141;
	font-weight: bold;
}


/*----------------------------------------------------------------------
フッター
----------------------------------------------------------------------*/

footer{
	margin-top: 100px;
	padding: 40px 0;
	color: #fff;
	background: #939393;
}

footer a{
	color: #fff;
	transition: .3s all;
}

footer a:hover{
	opacity: .6;
}

address{
	font-style: normal;
	padding-bottom: 2em;
	margin-bottom: 2em;
	border-bottom: 1px solid #ccc;
}

address span{
	font-size: clamp(2rem, 1.908rem + 0.41vw, 2.4rem);
}

.foot_txt{
	font-size: clamp(1.8rem, 1.754rem + 0.21vw, 2rem);
	font-family: 'Noto Serif JP';
	margin-bottom: .75em;
}

.info_list{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-left: -20px;
	padding: 0 5%;
}

.info_list li{
	font-size: clamp(2rem, 1.954rem + 0.21vw, 2.2rem);
	font-weight: 500;
	width: calc(100% / 2 - 20px);
	margin-left: 20px;
	padding: .5em 0;
	border: 2px solid #fff;
}

.info_list span{
	font-size: 1.6rem;
	margin-right: .25em;
}

.copy{
	margin-top: 40px;
	font-size: 1.3rem;
}

.backtotop a{
	position: fixed;
	bottom: 25px;
	right: 25px;
	background: #CECECE;
	width: 40px;
	height: 40px;
    z-index: 100;
	border-radius: 50px;
	transition: .3s all;
}

.backtotop a::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 1em;
	height: 1em;
	border: 3px solid #fff;
	border-left: 0;
	border-bottom: 0;
	box-sizing: border-box;
	transform: translateY(25%) rotate(-45deg);
}

.backtotop a:hover{
	opacity: .5;
}


 @media screen and (max-width: 1680px) {
}

@media screen and (min-width: 1061px) {

.g-nav-list ul{
	display: flex;
	align-items: center;
}

.g-nav-list a{
	text-decoration: none;
	display: inline-block;
	transition: .3s all;
}
/*ホバーエフェクト*/
.g-nav-list a::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #007631;
  bottom: -5px;
  left: 0;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: all 0.5s ease;
}
.g-nav-list a:hover::after {
  transform: scale(1, 1);
}


}
 @media screen and (max-width: 1060px) {
	 
body {
	font-size: 1.4rem;
	font-weight: 400;
}
	 
.sp{
	display: block;
}
	 
.pc{
	 display: none;
}

.header{
	height: 60px;
	padding: 0;
}
	 
/*========= ボタンのためのCSS ===============*/
.toggle{
  display: block;
  position:absolute;
  z-index: 9999;/*ボタンを最前面に*/
  top:18px;
  right: 18px;
  cursor: pointer;
  width: 30px;
  height:30px;
}

/*×に変化*/  
.toggle span{
    display: inline-block;
    transition: 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
    position: absolute;
    left: 0;
	height: 2px;
	border-radius: 3px;
    background: #007631;
    width: 100%;
  }

.toggle span:nth-of-type(1) {
  top:0; 
}

.toggle span:nth-of-type(2) {
  top:10px;
}

.toggle span:nth-of-type(3) {
  top:20px;
}

.toggle .openbtn-area{
    transition: 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.toggle.active .openbtn-area{
  transform: rotateY(-180deg);
}

.toggle.active span:nth-of-type(1) {
    top: 3px;
    transform: translateY(6px) rotate(-45deg);
}

.toggle.active span:nth-of-type(2) {
  opacity: 0;
}

.toggle.active span:nth-of-type(3){
    top: 15px;
    transform: translateY(-6px) rotate(45deg);
}

.js-logo_active {
	transform: translate(15px, 0px);
}

.g-nav{
  position:fixed;
  width:100%;
  height: 100vh;
  z-index:9998;
  top: 0;
  margin: auto;
  /*transition:.7s ease-in-out;*/
  visibility: hidden;
  transition: visibility 0s linear .6s,clip-path .6s cubic-bezier(0.5, 1, 0.89, 1) 0s;
  clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
  background: rgba(255,255,255,.98);
}

.g-nav.panelactive{
  visibility: visible;
  transition: visibility 0s linear 0s,clip-path .6s cubic-bezier(0.5, 1, 0.89, 1) 0s;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/*ナビゲーションの縦スクロール*/
.g-nav-list{
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
	height: 100dvh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
 	padding: 60px 20px 20px;
	opacity: 0;
    visibility: hidden;
    transition: visibility 0s linear .6s,opacity .6s cubic-bezier(0.5, 1, 0.89, 1) 0s;
}
	 
.g-nav.panelactive .g-nav-list{
	opacity: 1;
  visibility: visible;
  transition: visibility 0s linear 0s,opacity .6s cubic-bezier(0.5, 1, 0.89, 1) .25s;
}

/*ナビゲーション*/
 .g-nav-list ul {
	width: 100%;
	margin-right: 0;
}
.g-nav-list li {
    margin-left: 0;
    border-bottom: 1px solid #e4ebed;
}
.g-nav-list a{
  text-decoration: none;
  padding:1.5em 1em;
  display: block;
  letter-spacing: 0.1em;
	font-size: min(1.8rem,4vw);
	text-align: left;
}
.g-nav-list a::before{
	position: absolute;
	content: '';
	background: url("../images/arrows.svg") no-repeat center / contain;
	width: 15px;
	height: 13px;
	right: 10px;
	top: 0;
	bottom: 0;
	margin: auto;
	transition: .2s all;
}


/*----------------------------------------------------------------------
フッター
----------------------------------------------------------------------*/
footer {
	margin-top: 80px;
}
.copy {
    font-size: 1rem;
}
}


@media screen and (max-width: 834px) {
	
.logo{
    margin-left: 10px;
}
	
.info_list {
    padding: 0;
}
	
.info_list li{
	width: calc(100% / 1 - 20px);
	margin-bottom: .5em;
}	
.backtotop a{
	bottom: 15px;
	right: 15px;
}	
}

 @media screen and (max-width: 480px) {
}