@charset "UTF-8";

.preload{transition:0 !important;}

html{scroll-behavior: smooth;}

/*指定のタグの余白を削除する*/
body,h1,h2,h3,p,ul,li{margin: 0;}

*{box-sizing: border-box;}

body{
font-family: "Helvetica Neue","Arial","Hiragino Kaku Gothic ProN","Hiragino Sans","Meiryo",sans-serif;
}

img{vertical-align: bottom;}

a{text-decoration: none;}


.wrapper{
  width: 1000px;
  margin: 0 auto;
}
/*header*/
/* 全ページ共通　ヘッダー・メインナビゲーション */
.header {
  width: 100%;
  border-top: 5px solid #70BB92;
}

.header-wrapper {
  width: 1000px;
  margin: 30px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {width: 50%;}

.header-logo h1 {margin: 10px 0 0 0;}

.header-logo img {
  margin-left: 20px;
  width: 60%;
  height: auto;}

.navigation-main {
  width: 70%;}

.navigation-main ul {
  margin: 0;
  display: flex;
  justify-content: space-between;
}

.navigation-main ul li {
  font-size: 18px;}

.navigation-main ul li a {
  color: #000;
  text-decoration: none;
  transition: 0.3s;}

.navigation-main ul li a:hover {color: #d1d6c0;}


/*メイン画像部分*/
.imagebox{margin-bottom:40px;}
.imagebox img{width: 100%;}


/* footer上のコンタクトボタン */
.contact_wrap {
  width: 600px;
  margin: 4em auto;
  display: flex;
  justify-content: space-around;
  font-family: "Julius Sans One", sans-serif;
}

.contactBox a {
  width: 250px;
  padding: 20px;
  border: 2px solid #70BB92;
  text-align: center;
  font-size: 1.2em;
  margin: 0 2em;
  color: #444;
  display: block;
  transition: 0.5s ease;
}

.contactBox a:hover {background-color: #70BB92;
  opacity: 0.7;
  color: #000;}


/* footer */
.footer{
  background-color: #70BB92;
  color: #fff;
  margin: 20px 0 0 0;
  padding: 50px 0px;
  text-align: center;
}

.footer p{
  font-size: 1rem;
  line-height: 1.8rem;
  margin-bottom: 10px;
  }

.footer img{
  width: 16%;
  margin-bottom: 30px;
}
.copyright{
  margin-top: 50px;
}


/*ページの上へ*/
.pagetop {position: relative;
}

.pagetop a {
  position: absolute;
  bottom: 20px;
  right: 2%;
  text-decoration: none;
  font-size: 2em;
  font-weight: normal;
  color: #fff;
  background-color: #006835;
  padding: 10px;
  border-radius: 10px;
  transition: 0.5s ease;
}

.pagetop a:hover {
  color: #fff;
  background-color: #70BB92;}