@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
body {
  color: #282828; /* RGB */
  font-family: "gothic", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: left;
  margin: 0 auto;
}
section h2 {
  text-align: center;
  font-size: 3.0rem;
  font-weight: bold;
  color: #333;
  margin-top: 80px auto;
  margin-bottom: 30px;
}
section h2::after{
    display: block;
    content: "";
    border-bottom: solid 3px #333;
    width: 50px;
    margin: 0 auto;
    padding-top: 20px
}
a:hover {
  opacity: 0.5;
}
a {
  text-decoration: none;
}
.main {
  background-color: #F2F8FF;
}
.none {
  display: none;
}
.header {
  height: 100px;
  width: 100%;
  background-color: #cfdcdd;
  position: fixed;
  z-index: 1;
}
.header-wrap {
  position: relative;
}
.header-wrapimg {
    width: 90px;
    display: none;
    margin: 0 auto;
    padding-top: 10px;
}
.header h1 {
  position: absolute;
  top: 10px;
}
.header h1 img {
  width: 100%;
  margin-left: 50px;
}
.header_nav_pc li {
  padding: 5px 10px 10px;
}
.nav-mail {
    background-color: #317b55;
    height: 20px;
}
.nav-insta img {
  transform: translateY(2px);
}
.header_nav {
  display: none;
}
.header_nav_name {
  display: none;
}
.li_a {
    color: #333;
}
.nav-mail_a {
    color: #fff;
}
.nav-mail img {
    padding-right: 4px;
    width: 12%;
}
nav ul {
  list-style:none;
  position: absolute;
  right: 50px;
  margin-top: 30px;
  }
@media (max-width: 1200px) {
  section h2 {
    font-size: 2.4rem;
  }
  .header {
    height: 40px;
  }
  .header h1 img {
    margin-left: 20px;
    margin-top: 5px;
  }
  .header_nav_pc {
    font-size: 1.6rem;
    line-height: 1.0rem;
  }
  .header_nav {
    display: block;
  }
  .header-wrapimg {
    display: block;
    width: 60px;
    margin-top: 15px;
  }
  .header_nav_name {
    display: block;
    color: #fff;
    text-align: center;
    font-size: 2.4rem;
    font-weight: 600;
    transform: translateY(-22px);
  }
  #nav-drawer {
    padding: 0px 24px 0 0;
    text-align: right;
    position: relative;
  }
  #nav-open {
    display: inline-block;
    vertical-align: middle;
    width: 25px;
    height: 22px;
  }
  #nav-open span,#nav-open span:before,#nav-open span:after {
    position: absolute;
    height: 3px;
    width: 25px;
    background-color: #777;
    display: block;
    content:"";
  }
  #nav-open span:before {
    bottom: -8px;
  }
  #nav-open span:after {
    bottom: -16px;
  }
  #nav-close {
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
  }
  #nav-content {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 70%;
    height: 100%;
    background-color: #fff;
    text-align: left;
    padding: 15px 0 0 24px;
    transform: translateX(-150%);
    transition: 0.3s ease-in-out;
    box-shadow: 5px 0 25px rgba(0,0,0,0.25);
  }
  .nav-drawer__link-top {
    display: block;
  }
  #nav-content ul li {
    margin-bottom: 36px;
  }
  #nav-content ul li a {
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 600;
    color: #333;
  }
  #nav-input:checked ~ #nav-close {
    display: block;
  }
  #nav-input:checked ~ #nav-content {
    transform: translateX(0%);
  }
  
  /*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	  top:0;
    left: -120%;
	  width: 80%;
    height: 100vh;/*ナビの高さ*/
	  background:#cfdcdd;
    /*動き*/
	  transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    left: 0%;
}


/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width:80%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    line-height: 3.4rem;
    z-index: 999;
    top:45%;
    left:50%;
    transform: translate(-50%,-50%);
    text-align: center;
 }

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: center; 
}

#g-nav li a{
	color: #004125;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
  font-size: 1.6rem;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
    position: fixed;
    z-index: 9999;
    top: 25px;
    right: 3%;
    cursor: pointer;
    width: 50px;
    height: 50px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 2px;
	background-color: #025949;
  	width: 70%;
  }

.openbtn span:nth-of-type(1) {
	top:10px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:36px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

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

.openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
 }
}
@media (max-width: 1200px) {
  #nav-drawer {
    padding: 10px 24px 0 0;
    text-align: right;
    position: relative;
  }
  #nav-open {
    display: inline-block;
    vertical-align: middle;
    width: 25px;
    height: 0px;
  }
  #nav-open span,#nav-open span:before,#nav-open span:after {
    position: absolute;
    height: 3px;
    width: 25px;
    background-color: #777;
    display: block;
    content:"";
  }
  #nav-open span:before {
    bottom: -8px;
  }
  #nav-open span:after {
    bottom: -16px;
  }
  #nav-close {
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
  }
  #nav-content {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 70%;
    height: 100%;
    background-color: #fff;
    text-align: left;
    padding: 15px 0 0 24px;
    transform: translateX(-150%);
    transition: 0.3s ease-in-out;
    box-shadow: 5px 0 25px rgba(0,0,0,0.25);
  }
  .nav-drawer__link-top {
    display: block;
  }
  .nav-drawer__link-top img {
    width: 60%;
    display: block;
    margin: 0 auto;
    padding-bottom: 50px;
  }
  #nav-content ul li {
    transform: translate(-15px, 30px);
    margin-bottom: 30px
  }
  #nav-content ul li a {
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 600;
    color: #004125;
  }
  #nav-input:checked ~ #nav-close {
    display: block;
  }
  #nav-input:checked ~ #nav-content {
    transform: translateX(0%);
  }
.nav-mail {
    background-color: #cfdcdd;
 }
}

@media (min-width: 480px) {
  .header {
    margin: 0 auto;
    min-height: 100px;
    padding: 0 0 0 20px;
    box-sizing: border-box;
  }
  .header h1 {
    font-size: 2rem;
    top: 14px;
  }
  .header__navigation {
    display: block;
  }
  .header__navigation ul li {
    display: inline-block;
    margin-left: 30px;
    text-align: center;
  }
  .header__navigation ul li a {
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 600;
  }
  #g-nav li a {
    font-size: 1.6rem;
  }
}
@media (max-width: 480px) {
  .header h1 img {
    width: 40%;
    margin-top: -3px;
  }
    .nav-drawer__link-top img {
        width: 30%;
    }
    .header-wrapimg {
        width: 30px;
        padding-top: 5px;
        margin-top: 0px;
    }
    .openbtn {
      top: -5px;
      right: 3%;
      width: 8%;
    }
    .openbtn span:nth-of-type(1) {
      top: 15px;
    }
    .openbtn span:nth-of-type(3) {
    top: 31px;
    }
    #g-nav ul {
      width: 100%;
      line-height: 6.4rem;
    }
    #g-nav li a {
      padding: 0px;
    }
}
@media (max-width: 320px) {
.openbtn {
  right: 7%;
    }
}


/* その場で */
.fadeIn{
  animation-name:fadeInAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
  opacity:0;
  }
  
  @keyframes fadeInAnime{
    from {
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
  }
  
  .fadeUpTrigger{
      opacity: 0;
      }
  .fadeUp {
      animation-name: fadeUpAnime;
      animation-duration:2s;
      animation-fill-mode:forwards;
      opacity: 0;
      }
  @keyframes fadeUpAnime{
  from {
      opacity: 0;
      transform: translateY(100px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
  }
.example1 {
    display: block;
    text-align: center;
    margin: 0 auto;
    color: #333;
}

/* footer */
.footer {
    background-color: #6a8886;
    height: 200px;
    padding-top: 30px;
    padding-bottom: 30px;
    position: relative;
}
.footer-border {
    position: absolute;
    top: -23px;
}
.footer-yama {
    position: absolute;
    top: -64px;
    right: 0px;
}
.flex {
    display: flex;
}
.footer p {
    color: #fff;
    font-size: 1.8rem;
}
.footer-adress {
    margin-left: 240px;
}
.footer-adress span {
    font-size: 1.6rem;
}
.footer-area {
    position: absolute;
    right: 0%;
    padding-right: 370px;
}
.footer-area span {
    font-size: 1.6rem;
}
small {
    color: #fff;
    font-size: 1.2rem;
    display: block;
    text-align: center;
    margin-top: 60px;
}
.sp-button {
  display: none;
}

@media (max-width: 1440px) {
    .footer-area {
        padding-right: 120px;
    }
    .footer-adress {
        margin-left: 150px;
    }
}

@media (max-width: 1000px) {
    .footer-border {
        top: -8px;
        width: 190px;
    }
    .footer-yama {
        width: 310px;
        top: -38px;
        right: 0px;
    }
    .footer-adress {
        margin-left: 40px;
    }
    .footer-area {
        display: none;
    }
    small {
        margin-top: 80px;
    }
}

/* sp追従ボタン */
@media (max-width: 767px) {
  body {
    margin: 0;
    padding: 0;
    position: relative;
  }
  .sp-button {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
  }
  .sp-button img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 480px) {
    .footer {
      height: 180px;
    }
    .footer-border {
        top: -7px;
        width: 150px;
    }
    .footer-yama {
        width: 210px;
        top: -26px;
        right: 0px;
    }
    .footer-adress {
        margin-left: 25px;
    }
    small {
        margin-top: 50px;
    }
}
