@charset "UTF-8";
body {
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: "Hiragino Kaku Gothic Pro" , "メイリオ" , Meiryo , Osaka, "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
  color: #333;
  line-height: 1.6;
  overflow: hidden;
}
img {
    max-width: 100%;
}
p.indent-1{
  padding-left: 1em;
  text-indent: -1em;
  font-size: 20px;
  margin-top: 50px;
}
ul {
  list-style: none;
}
.hamburger {
  display : block;
  position: fixed;
  z-index : 50;
  right : 100px;
  top   : 60px;
  width : 80px;
  height: 80px;
  cursor: pointer;
  text-align: center;
  background: #003366;
  border-radius: 50%;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 36px;
  height  : 2px ;
  left    : 22px;
  background : #FFF;
  -webkit-transition: 0.5s all;
  -moz-transition   : 0.5s all;
  transition        : 0.5s all;
}
  .hamburger span:nth-child(1) {
    top: 30px;
  }
  .hamburger span:nth-child(2) {
    top: 38px;
  }
  .hamburger span:nth-child(3) {
    top: 46px;
  }

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 40px;
  left: 20px;
  width: 40px;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
  background: #003366;
  z-index: 100;
}
.hamburger.active span:nth-child(2) {
  left: 60%;
  opacity: 0;
  -webkit-animation: active-btn17-bar02 .8s forwards;
  animation: active-hamburger-bar02 .8s forwards;
  background: #003366;
  z-index: 100;
}
@-webkit-keyframes active-hamburger-bar02 {
  100% {
    height: 0;
  }
}
@keyframes active-hamburger-bar02 {
  100% {
    height: 0;
  }
}
.hamburger.active span:nth-child(3) {
  top: 40px;
  width: 40px;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
  background: #003366;
  z-index: 100;
}
.hamburger::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: '';
  width: 78px;
  height: 78px;
  margin: -38px 0 0 -38px;
  border-radius: 50%;
}
.hamburger.active::after {
  background: #fff;
  z-index: 0;
  transform: scale(0);/*非表示にしておく*/
  animation-name:hamburger;
  animation-duration:1s;
  animation-fill-mode:forwards;
}
@keyframes hamburger{
  0%{
    transform: scale(0);    
  }
  100%{
    transform: scale(1);    
  }
}
  /* このクラスを、jQueryで付与・削除する */
  nav#sp-menu.active {
    transform: translateY(0%);
  }
  #sp-menu.active {
    visibility: visible;
    opacity: 1;
  }
@media screen and (max-width: 768px) {
  .hamburger {
    right : 15px;
    top   : 15px;
    width : 40px;
    height: 40px;
    }
  .hamburger span {
    display : block;
    position: absolute;
    width   : 16px;
    height  : 2px ;
    left    : 20px;
    }
  .hamburger span {
    display : block;
    position: absolute;
    width   : 16px;
    height  : 2px ;
    left    : 12px;
    background : #FFF;
    -webkit-transition: 0.5s all;
    -moz-transition   : 0.5s all;
    transition        : 0.5s all;
  }
  .hamburger span:nth-child(1) {
    top: 12px;
  }
  .hamburger span:nth-child(2) {
    top: 18px;
  }
  .hamburger span:nth-child(3) {
    top: 24px;
  }
/* ナビ開いてる時のボタン */
  .hamburger.active span:nth-child(1) {
    top : 17px!important;
    left: 11px!important;
    width: 18px!important;
  }
  .hamburger.active span:nth-child(2) {
    left: 60%;
    opacity: 0;
    -webkit-animation: active-btn17-bar02 .8s forwards;
    animation: active-hamburger-bar02 .8s forwards;
    background: #003366;
    z-index: 100;
  }
  .hamburger.active span:nth-child(3) {
    top: 17px!important;
    width: 18px!important;
  }
  .hamburger::after {
    top: 0!important;
    left: 4%!important;
    width: 36px!important;
    height: 36px!important;
    margin: 0!important;
  }
}
.mt0 {
  margin-top: 0px !important; }

.mt5 {
  margin-top: 5px !important; }

.mt10 {
  margin-top: 10px !important; }

.mt15 {
  margin-top: 15px !important; }

.mt20 {
  margin-top: 20px !important; }

.mt30 {
  margin-top: 30px !important; }

.mt40 {
  margin-top: 40px !important; }

.mt50 {
  margin-top: 50px !important; }

.mt60 {
  margin-top: 60px !important; }

.mt70 {
  margin-top: 70px !important; }

.mt80 {
  margin-top: 80px !important; }

.mt90 {
  margin-top: 90px !important; }

.mt100 {
  margin-top: 100px !important; }

.tCenter {
  text-align: center !important; }

.tLeft {
  text-align: left !important; }

.tRight {
  text-align: right !important; }

.bold {
  font-weight: bold !important; }

.mb10 {
  margin-bottom: 10px !important; }

@media screen and (max-width: 768px) {
  .mb10 {
  margin-bottom: 5px !important; }
}
#contents a:hover {
  opacity: 0.7;
}
.e-text {
  animation-name: fadein;
  animation-duration: 2s;
  animation-iteration-count:1;
  animation-direction:normal;
}
@keyframes fadein {
from {
    opacity: 0;
    transform: translateY(20px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

#showloading {
  width: 100%;
  height: 100vh;
  bottom: ;ackground-color: #fff;
  position: relative;
}
#showloading img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  }
.hidden {
  display: none;
  }
.btn-box {
  margin:0 0 0 auto;
}
.btn_more {
  width: 143px;
  line-height: 70px;
  position: relative;
  margin:30px 0 0 auto;
}
.btn_more:after {
  width: 70px;
  height: 70px; 
  border: 1px solid #707070;
  content:''; 
	border-radius:50%;
	-webkit-border-radius:50%;
	-moz-border-radius:50%; 
	display:block; 
	position:relative; 
	top:0; 
	left:70px; 
	z-index: 1;
}
.btn_more > span {
  z-index: 1000;
}
.btn_more > span > span {
  display: inline-block;
  padding-right: 50px;
}
.btn_more a {
  position: absolute;
  font-size: 18px;
  color: #8FBC8F;
  z-index: 1000;
  text-decoration: none;
}
.btn_more a span span {
  padding-right: 20px;
}
#contents .corp-box .btn_more:after {
  border: 1px solid #fff;
}
#contents .corp-box .btn_more a{
  color: #fff;
}
#contents .right {
  margin: 0 0 0 auto;
}
#contents .center {
  margin: 0 auto;
}
#contents .btn-menu {
  width: 900px;
  line-height: 70px;
  position: relative;
  margin-top: 40px;
}
#contents .btn-menu a {
  text-align: center;
  background: #fff;
  color: #8FBC8F;
  font-size: 34px;
  text-decoration: none;
  display: block;
  background: url(../images/ico_more_arrow.png) no-repeat 96% center #fff;
}
#contents .btn-back {
    width: 200px;
    line-height: 40px;
    position: relative;
    border: 2px solid #8FBC8F;
    margin: 50px auto 0;
  }
  #contents .btn-back a {
    text-align: center;
    padding: 0 10px;
    background: #fff;
    color: #8FBC8F;
    font-size: 18px;
    text-decoration: none;
    display: block;;
  }

@media screen and (max-width: 768px) {
  .btn_more {
    width: 110px;
    line-height: 60px;
    margin:20px 0 0 auto;
  }
  .btn_more:after {
    width: 50px;
    height: 50px; 
    border: 1px solid #707070;
    top:5px; 
    left:60px; 
  }
  .btn_more a {
    font-size: 18px;
  }
  .btn_more img {
    width: 30%;
  }
  .btn_more a span span {
  padding-right: 10px;
  }
  #contents .btn-menu {
    width: 100%;
    line-height: 50px;
    position: relative;
    margin-top: 20px;
  }
  #contents .btn-menu a {
    padding: 0 10px;
    background: #fff;
    color: #8FBC8F;
    font-size: 24px;
    text-decoration: none;
    display: block;
    background: url(../images/ico_more_arrow.png) no-repeat 94% center #fff;
    background-size: 34px;
  }
  #contents .btn-back {
    width: 100%;
    line-height: 38px;
    position: relative;
    border: 2px solid #8FBC8F;
    margin: 50px auto 0;
  }
  #contents .btn-back a {
    text-align: center;
    padding: 0 10px;
    background: #fff;
    color: #8FBC8F;
    font-size: 16px;
    text-decoration: none;
    display: block;
  }
}
/*-------------------------------
Slider
-------------------------------*/ 
.center-item01 {
  overflow: hidden;
  display: block;
 width: 100%;
   height: auto;
   margin: 0;
}
.center-item02 {
  overflow: hidden;
  display: block;
   width: 100%;
   height: auto;
   margin: 0;
}
.slider {
    margin: 10px auto;
}
.slick-slide {
  margin: 0px 7px;
}
.slick-slide img {
  width: 100%;
  height: auto;
}
.slick-prev, .slick-next {
  display: none!important;
}
.slick-slide {
  transition: all ease-in-out .3s;
  opacity: 1;
}
.slick-active {
  opacity: 1;
}
.slick-current {
  opacity: 1;
}

@media screen and (min-width: 769px) {
  /*-------------------------------
  スクロール　モーション
  -------------------------------*/ 
  #contents .sa {
    opacity: 0;
    transition: all 6s ease;
  }
  #contents .sa.show {
    opacity: 1;
    transform: none;
  }
  #contents .sa--lr {
    transform: translate(-50px, 0);
  }
  #contents .sa--rl {
    transform: translate(50px, 0);
  }
  #contents .sa--up {
    transform: translate(0, 100px);
  }
  #contents .sa--down {
    transform: translate(0, -100px);
  }
  #contents .sa--scaleUp {
    transform: scale(.5);
  }
  #contents .sa--scaleDown {
    transform: scale(1.5);
  }
  #contents .sa--rotateL {
    transform: rotate(180deg);
  }
  #contents .sa--rotateR {
    transform: rotate(-180deg);
  }
  .ani01 {transition-duration: 1s;}
  .ani02 {transition-duration: 2s;}
  .ani03 {transition-duration: 3s;}
  .ani04 {transition-duration: 4s;}
  .ani05 {transition-duration: 5s;}
  .ani06 {transition-duration: 6s;}
  .ani07 {transition-duration: 7s;}
  .ani015 {transition-duration: 15s;}
  
  @keyframes fadeIn { /* ←追加 */
    from { opacity: 0; }
    to { opacity: 0.5; }
  }

}

.fluffy01 {
  animation: fluffy1 3s ease infinite;
}
@keyframes fluffy1 {
  0% { transform:translateY(0) }
  5% { transform:translateY(0) }
  10% { transform:translateY(0) }
  20% { transform:translateY(-15px) }
  25% { transform:translateY(0) }
  30% { transform:translateY(-15px) }
  50% { transform:translateY(0) }
  100% { transform:translateY(0) }
}
.fluffy02 {
  animation: fluffy2 3s ease infinite;
}
@keyframes fluffy2 {
  0% { transform:translateX(0) }
  5% { transform:translateX(0) }
  10% { transform:translateX(0) }
  20% { transform:translateX(-15px) }
  25% { transform:translateX(0) }
  30% { transform:translateX(-15px) }
  50% { transform:translateX(0) }
  100% { transform:translateX(0) }
}
  /*-------------------------------
  ボタン
  -------------------------------*/
  .stickarrow {
  width: 40px;
  height: 8px;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  transform: skew(45deg);
  transform: skew(-45deg);
}
@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  /*-------------------------------
  HEADER
  -------------------------------*/
  #globalHeader {
    position:fixed;
    z-index: 5000;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0 25px;
    background-color: #fff;}

    #globalHeader > .inner {
      /* For modern browsers */
      /* For IE 6/7 (trigger hasLayout) */ }
     /* メニューボタン */

  /*-------------------------------
  CONTENTS
  -------------------------------*/
  #contents {
    width: 100%;
  }
  .inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .contents-box {
    margin: 0 auto;
  }
  /* メニュー */
  #sp-menu {
    position: fixed;
    top: 0;
    left:0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: #003366;
    overflow: scroll;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.6s;
  }
  /* このクラスを、jQueryで付与・削除する */
  nav#sp-menu.active {
    transform: translateY(0%);
  }
  #sp-menu.active {
    visibility: visible;
    opacity: 1;
  }
  #sp-menu-position01 {
    width: 960px;
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -webkit-box-pack: justify;
	  -ms-flex-pack: justify;
	  justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  }
  #sp-menu-position01 > div {
    width: 50%;
  }
  .sp-menu-list {
    list-style: none;
    margin-bottom: 100px;
  }
  .sp-menu-list a {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 40px;
    text-decoration: none;
    color: #fff;
    display:inline-block;
  }
  .sp-menu-list a:hover {
    -webkit-animation: zoom .3s;
    animation: zoom .3s;
    opacity: 0.7;
    }
  @-webkit-keyframes zoom {
    50% {
    -webkit-transform: scale(1.2);
    }
  }
  @keyframes zoom {
    50% {
    transform: scale(1.05);
    }
  }
  .sp-menu-list li:last-child a {
    margin-bottom: 0;
  }

  .sp-menu-links li {
    display: inline-block;
  }
  .sp-menu-links li:after {
    content: "|";
    display: inline-block;
    color: #fff;
    padding: 0 5px 0 10px;
  }
  .sp-menu-links li a {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
  }
  .sp-menu-links li a:hover {
    text-decoration: underline;
  }
  /*-------------------------------
  FOOTER
  -------------------------------*/
  #globalFooter {
    padding: 0 0 10px;
    background: #f5f5f5;
    text-align: center;
    font-size: 18px;
    color: #707070;
  }
  #globalFooter .bnr-area {
    width: 100%;
    background: #fff;
    padding: 20px;
  }
  #globalFooter .bnr-area .bnr-box {
    width: 680px;
    margin: 0 auto;
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -webkit-box-pack: justify;
	  -ms-flex-pack: justify;
	  justify-content: space-between;
  }
  #globalFooter .inner {
    padding: 10px 0;
  }
  #globalFooter .child-list {
    text-align: center;
    margin: 20px 0 10px;
  }
  #globalFooter .child-list li {
    display: inline-block;
  }
   #globalFooter .child-list li:after {
    content: "|";
    display: inline-block;
    color: #707070;
    padding: 0 5px 0 10px;
  }
   #globalFooter .child-list li a {
    font-size: 18px;
    text-decoration: none;
    color: #707070;
  }
  #globalFooter .child-list li a:hover {
    text-decoration: underline;
  }
  #globalFooter .copyright {
    text-align: center;
  }
  /*-------------------------------
  TO TOP
  -------------------------------*/
  .to-top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 10; }

  /*-------------------------------
  mainVisual
  -------------------------------*/
  .index #mainVisual {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
  }
  video {
    min-width: 100vw;
    min-height: 100vh;
    z-index: 1;
  }
  .index #mainVisual .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  .index #mainVisual .scrool-d {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    bottom: 3%;
    z-index: 10;
  }
	.index #mainVisual .music {
    position: absolute;
    right: 110px;
    bottom: 3%;
    z-index: 10;
		cursor: pointer;
		width: 32px;
		height: 27px;
		background-image: url("../images/off.png");
  }
	.index #mainVisual .music.change {
		background-image: url("../images/on.png");
	}
  /*-------------------------------
  H1,H2,H3 TITEL
  -------------------------------*/
  #contents h2 {
    font-size: 35px;
    text-align: left;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 30px
  }
  #contents h3 {
    color: #fff;
    font-size: 44px;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 35px;
    font-feature-settings: "palt" 1;
  }
  #contents h4 {
    color: #fff;
    font-size: 32px;
    text-align: center;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 50px
  }
  #contents .tit_menu {
    font-size: 32px;
    position: relative;
    display: block;
    margin: 60px auto 45px;
    text-align: center;
    font-weight: bold;
  }
  #contents .tit_menu:before {
    content: '';
    position: absolute;
    bottom: -15px;
    display: inline-block;
    width: 300px;
    height: 10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #8fbc8f;
  }
  #contents .tit_menu.noncap {
    margin: 60px auto 80px;
  }
  /*-------------------------------
  Section
  -------------------------------*/
  #contents .c-box01 {
    background: #8FBC8F;
    padding: 100px 0;
  }
  #contents .c-box02,#contents .c-box06 {
    width: 100%;
  }
  #contents .c-box03 {
    background: #FFF;
    padding: 100px 0;
  }
  #contents .c-box03 h3,#contents .c-box05 h3,#contents .c-box08 h3,#contents .contact h3,#contents .c-box10 h3 {
    color: #8FBC8F;
  }
  #contents .c-box04 {
    background: #8FBC8F;
    padding: 50px 0 100px;
  }
  #contents .c-box04 h3 {
    text-align: center;
  }
  #contents .c-box05 {
    background: #F5F5F5;
    padding: 100px 0;
  }
  #contents .c-box05 .info-box {
    background: #fff;
    padding: 30px 40px;
    font-size: 16px;
  }
  #contents .c-box05 .info-box li {
    padding: 30px 0;
    border-bottom: 1px solid #707070;
  }
  #contents .c-box05 .info-box li span {
    display: inline-block;
    padding-right: 20px;
  }
  #contents .c-box05 .info-box li:first-child {
    border-top: 1px solid #707070;
  } 
  #contents .c-box07 {
    background: #8FBC8F;
    padding: 100px 0;
  }
  #contents .c-box07 h3 {
    margin-bottom: 20px;
  }
  #contents .c-box07 .map {
    margin-top: 20px;
  }
  #contents .c-box07 iframe {
    width: 100%;
    height: 500px;
  }
  #contents .c-box08 {
    padding: 100px 0 250px;
  }
  #contents .c-box08 h2 {
    margin-bottom: 40px;
    line-height: 1.2;
  }
  #contents .c-box08 h3 {
    margin-top: 0;
    line-height: 1.2;
  }
  #contents .c-box08 .c-logo {
    margin-top: 50px;
  }
  #contents .c-box08 {
    position: relative;
  }
  #contents .c-box08 figure {
    width: 51.56%;
    height: auto;
    position: absolute;
    max-height: 620px;
    overflow: hidden;
    left: 0;
    top:50;
    margin-top: 100px;
  }
  #contents .c-box08 .read {
    color: #333;
  }
  #contents .c-box09 {
    background: #8FBC8F;
    padding: 100px 0;
  }
  #contents .c-box10 {
    background: #FFF;
    padding: 100px 0 120px;
  }
  #contents .c-box10 h3 {
    font-size: 45px;
  }
  #contents .contact {
    background: #F5F5F5;
    padding: 100px 0;
  }
  
  /*-------------------------------
  Parts
  -------------------------------*/
  #contents .caution {
    text-align: center;
    margin-bottom: 30px;
    line-height: 1;
  }
  #contents .txt-box {
    width: 100%;
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -webkit-box-pack: justify;
	  -ms-flex-pack: justify;
	  justify-content: space-between;
  }
  #contents .txt-box div:nth-of-type(2) {
    width: 365px;
  }
  #contents .read {
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
  }
  #contents .img-box01 {
    width: 100%;
    height: 400px;
    background: url(../images/img_01.jpg) no-repeat center center;
    background-size: cover;
  }
  #contents .img-box02 {
    width: 100%;
    height: 400px;
    background: url(../images/img_05.jpg) no-repeat center center;
    background-size: cover;
  }
  #contents .media-box {
    width: 100%;
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -webkit-box-pack: justify;
	  -ms-flex-pack: justify;
	  justify-content: space-between;
    margin-top: 70px;
  }
  #contents .media-box > div {
    width: 300px;
  }
  #contents .media-box figure {
    margin-bottom: 20px;
  }
  #contents .c-box03 .media-box .copy {
    font-size: 24px;
    line-height: 2;
    font-weight: bold;
  }
  #contents .c-box03 .media-box .copy span {
    font-size: 48px;
  }
  #contents .c-box03 .enji {
    color:#bc8f8f;
  }
  #contents .c-box03 .green {
    color: #8FBC8F;
  }
  #contents .c-box03 .karki {
    color: #bdb76b;
  }
  #contents .corp-box {
    width: 100%;
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -webkit-box-pack: justify;
	  -ms-flex-pack: justify;
	  justify-content: space-between;
  }
  #contents .corp-box > div {
    width: 300px;
  }
  #contents .corp-box figure {
    background: #fff;
    text-align: center;
    width: 300px;
    height: 300px;
    display: table-cell;
    vertical-align: middle;
  }
  #contents .corp-box figure img {
    height: 240px;
    width: auto;
  }
  #contents .corp-box .caption {
    margin-top: 25px;
    color: #fff;
    font-size: 18px;
  }
  #contents .label-box {
    width: 100%;
    margin: 55px auto 0;
    display: table;
    border: 1px solid #fff;
  }
  #contents .label-box li {
    display: table-cell;
    vertical-align: middle;
  }
  #contents .label-box li:nth-of-type(1) {
    width: 30%;
  }
  #contents .label-box li:nth-of-type(2) {
    padding: 25px;
  }
  #contents .label-box li:nth-of-type(2) p {
    font-size: 18px;
    color: #fff;
  }
  #contents .label-box li:nth-of-type(2) p span {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 5px;
  }
  #contents .label-box li figure {
    overflow: hidden;
  }
  #contents .menu-box {
    width: 100%;
    margin: 5px auto 0;
  }
  #contents .menu-box:after {
    content: "";
    display: block;
    clear: both;
  }
  #contents .menu-box li {
    width: 300px;
    float: left;
    margin-right:30px; 
    background: #fff8dc;
    font-size: 22px;
    margin-bottom: 35px;
  }
  #contents .menu-box li:nth-of-type(3),#contents .menu-box li:nth-of-type(6),#contents .menu-box li:nth-of-type(9),#contents .menu-box li:nth-of-type(9){
    margin-right:0!important; 
  }
  #contents .menu-box li:last-child {
    margin-bottom: 15px;
  }
  #contents .menu-box li dl dt {
    width: 100%;
    padding: 15px 15px 5px;
    height: 80px;
    overflow: hidden;
    line-height: 1.4;
  }
  #contents .menu-box li dl dd {
    width: 100%;
    text-align: right;
    padding: 5px 5px 15px 15px;
  }
  #contents .menu-box2 {
    width: 100%;
    margin: 5px auto 0;
  }
  #contents .menu-box2:after {
    content: "";
    display: block;
    clear: both;
  }
  #contents .menu-box2 li {
    width: 225px;
    float: left;
    margin-right:20px; 
    background: #fff8dc;
    font-size: 22px;
    margin-bottom: 35px;
  }
  #contents .menu-box2 li:nth-of-type(4),#contents .menu-box2 li:nth-of-type(8),#contents .menu-box2 li:nth-of-type(12),#contents .menu-box2 li:nth-of-type(16){
    margin-right:0!important; 
  }
  #contents .menu-box2 li:last-child {
    margin-bottom: 15px;
  }
  #contents .menu-box2 li dl dt {
    width: 100%;
    padding: 15px 15px 5px;
    height: 80px;
    overflow: hidden;
    line-height: 1.4;
  }
  #contents .menu-box2 li dl dd {
    width: 100%;
    text-align: right;
    padding: 5px 5px 15px 15px;
  }
  #contents .menu-line-box {
    width: 100%
  }
  #contents .menu-line-box li {
    width: 100%;
    padding: 30px 0;
    border-bottom: 3px solid #4d4d4d;
    width: 100%;
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -webkit-box-pack: justify;
	  -ms-flex-pack: justify;
	  justify-content: space-between;
    font-size: 20px;
  }
  #contents .menu-line-box li:first-child {
    border-top: 3px solid #4d4d4d;
  }
}

@media screen and (max-width: 768px) {
  .slick-slide {
  margin: 0px 5px;
}
  p.indent-1{
  font-size: 16px;
  margin-top: 30px;
}
  /*-------------------------------
  HEADER
  -------------------------------*/
  #globalHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 1000;
  }
  /* メニュー */
  #sp-menu {
    position: fixed;
    top: 0;
    left:0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #003366;
    overflow: scroll;
    z-index: 10;
    transition: opacity 1s ease 0s;
    visibility: hidden;
    opacity: 0;
  }
  .open-menu #sp-menu {
    visibility: visible;
    opacity: 1;
  }
  #sp-menu-position01 {
    position: absolute;
    width: 100%;
    top: 51%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: block;
    padding: 0 20px;
  }
  #sp-menu-position01 > div {
    margin-bottom: 30px;
    text-align: center;
  }
  #sp-menu-position01 > div:first-child img {
    width: 40%;
    height: auto;
  }
  .sp-menu-list {
    list-style: none;
    margin-bottom: 20px;
  }
  .sp-menu-list a {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    text-decoration: none;
    color: #fff;
    display: block;
  }
  .sp-menu-list li:last-child a {
    margin-bottom: 0;
  }
  .sp-menu-list a:hover {
    text-decoration: underline;
  }
  .sp-menu-links li {
    display: inline-block;
  }
  .sp-menu-links li:after {
    content: "|";
    display: inline-block;
    color: #fff;
    padding: 0 5px 0 10px;
  }
  .sp-menu-links li a {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
  }
  .sp-menu-links li a:hover {
    text-decoration: underline;
  }
  /*-------------------------------
  CONTENTS
  -------------------------------*/
  #contents {
    width: 100%;
  }
  .inner {
    margin: 0 auto;
    padding: 0 20px;
  }
  .contents-box {
    margin: 0 auto;
  }
  
  /*-------------------------------
  TO TOP
  -------------------------------*/
  .to-top {
    position: fixed;
    width: 30px;
    height: auto;
    bottom: 30px;
    right: 10px;
    z-index: 10; }
  
  /*-------------------------------
  FOOTER
  -------------------------------*/
  #globalFooter {
    padding: 0 0 10px;
    background: #f5f5f5;
    font-size: 11px;
    text-align: center;
  }
  #globalFooter .bnr-area {
    width: 100%;
    background: #fff;
    padding: 20px;
  }
  #globalFooter .bnr-area .bnr-box {
    width: 100%;
    margin: 0 auto;
  }
  #globalFooter .bnr-area .bnr-box li {
    width: 80%;
    height:auto ;
    margin: 0 auto 10px;
  }
  #globalFooter .bnr-area .bnr-box li:last-child {
    margin-bottom: 0;
  }
  #globalFooter .child-list {
    text-align: center;
    padding: 15px 0;
  }
  #globalFooter .child-list li {
    display: inline-block;
  }
   #globalFooter .child-list li:after {
    content: "|";
    display: inline-block;
    color: #707070;
    padding: 0 5px 0 10px;
  }
   #globalFooter .child-list li a {
    font-size: 14px;
    color: #707070;
    text-decoration: none;
  }
  #globalFooter .child-list li a:hover {
    text-decoration: underline;
  }
  #globalFooter .copyright {
    text-align: center;
  }
  /*-------------------------------
  mainVisual
  -------------------------------*/
  .index #mainVisual {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
    z-index: 1;
		text-align: center;
  }
  .index video {
    z-index: 1;
		max-width: 100%;
    vertical-align:bottom;
		text-align: center;
    height: auto;
  }
  .index #mainVisual .logo {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  .index #mainVisual .scrool-d {
    width: 20%;
    height: auto;
    position: absolute;
    left: 41%;
    transform: translateX(-50%)!important;
    -webkit-transform: translateX(-50%)!important;
    -ms-transform: translateX(-50%);
    bottom: 5%;
    z-index: 10;
  }
	.index #mainVisual .music {
    position: absolute;
    right: 22px;
    bottom: 5%;
    z-index: 10;
		cursor: pointer;
		width: 26px;
		height: 22px;
		background-image: url("../images/off.png");
		background-size: contain;
  }
	.index #mainVisual .music.change {
		background-image: url("../images/on.png");
	}
  /*-------------------------------
  H1,H2,H3 TITEL
  -------------------------------*/
  #contents h2 {
    font-size: 20px;
    text-align: left;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 15px
  }
  #contents h3 {
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 20px
  }
  #contents h4 {
    color: #fff;
    font-size: 18px;
    text-align: center;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 20px
  }
  #contents .tit_menu {
    font-size: 18px;
    position: relative;
    display: block;
    margin: 35px auto;
    text-align: center;
    font-weight: bold;
  }
  #contents .tit_menu:before {
    content: '';
    position: absolute;
    bottom: -15px;
    display: inline-block;
    width: 150px;
    height: 5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #8fbc8f;
  }
    #contents .tit_menu.noncap {
    margin: 35px auto 50px;
  }
  /*-------------------------------
  Section
  -------------------------------*/
  #contents .c-box01 {
    background: #8FBC8F;
    padding: 40px 0;
  }
  #contents .c-box02,#contents .c-box06 {
    width: 100%;
  }
  #contents .c-box03 {
    background: #FFF;
    padding: 40px 0;
  }
  #contents .c-box03 h3,#contents .c-box05 h3,#contents .c-box08 h3,#contents .contact h3,#contents .c-box10 h3 {
    color: #8FBC8F;
  }
  #contents .c-box04 {
    background: #8FBC8F;
    padding: 30px 0;
  }
  #contents .c-box04 h3 {
    font-feature-settings: "palt" 1;
    text-align: center;
  }
  #contents .c-box05 {
    background: #F5F5F5;
    padding: 40px 0;
  }
  #contents .c-box05 .info-box {
    background: #fff;
    padding: 20px;
    font-size: 16px;
  }
  #contents .c-box05 .info-box li {
    padding: 10px 0;
    border-bottom: 1px solid #707070;
  }
  #contents .c-box05 .info-box li span {
    display:block;
  }
  #contents .c-box05 .info-box li:first-child {
    border-top: 1px solid #707070;
  } 
  #contents .c-box07 {
    background: #8FBC8F;
    padding: 40px 0;
  }
  #contents .c-box07 h3 {
    margin-bottom: 20px;
  }
  #contents .c-box07 .map {
    margin-top: 20px;
  }
  #contents .c-box07 iframe {
    width: 100%;
    height: 500px;
  }
  #contents .c-box08 {
    padding: 40px 0;
  }
  #contents .c-box08 h2 {
    margin-bottom: 20px;
    line-height: 1.2;
  }
  #contents .c-box08 h3 {
    margin-top: 0;
    line-height: 1.2;
  }
  #contents .c-box08 .c-logo {
    margin: 30px auto 0;
    text-align: center;
    width: 70%;
    height: auto;
  }
  #contents .c-box08 {
  }
  #contents .c-box08 figure {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
  }
  #contents .c-box08 .read {
    color: #333;
  }
  #contents .c-box09 {
    background: #8FBC8F;
    padding: 40px 0;
  }
  #contents .c-box10 {
    background: #FFF;
    padding: 40px 0;
  }
  #contents .contact {
    background: #F5F5F5;
    padding: 40px 0 20px;
  }
  
  /*-------------------------------
  Parts
  -------------------------------*/
  #contents .caution {
    text-align: center;
    margin-bottom: 20px;
    line-height: 1;
    font-size: 14px;
  }
  #contents .txt-box {
    width: 100%;
  }
  #contents .txt-box div {
    width: 100%;
  }
  #contents .read {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
  }
  #contents .img-box01 {
    height: 100px;
    background: url(../images/img_01.jpg) no-repeat center center;
    background-size:cover;
  }
  #contents .img-box02 {
    height: 100px;
    background: url(../images/img_05.jpg) no-repeat center center;
    background-size: cover;
  }
  #contents .media-box {
    width: 100%;
    margin-top: 30px;
  }
  #contents .media-box > div {
    width: 100%;
    margin-bottom: 40px;
  }
  #contents .media-box > div:last-child {
    margin-bottom: 0;
  }
  #contents .media-box figure {
    margin-bottom: 10px;
  }
  #contents .c-box03 .media-box .copy {
    font-size: 22px;
    line-height: 1.6;
    font-weight: bold;
  }
  #contents .c-box03 .media-box .copy span {
    font-size: 30px;
  }
  #contents .c-box03 .media-box .copy span {
    font-size: 48px;
  }
  #contents .c-box03 .enji {
    color:#bc8f8f;
  }
  #contents .c-box03 .green {
    color: #8FBC8F;
  }
  #contents .c-box03 .karki {
    color: #bdb76b;
  }
  #contents .corp-box {
    width: 100%;
  }
  #contents .corp-box > div {
    width: 100%;
    margin-bottom: 40px;
  }
  #contents .corp-box figure {
    background: #fff;
    text-align: center;
    width: 100%;
    padding: 10px 0;
  }
  #contents .corp-box figure img {
    height: 80%;
    width: auto;
  }
  #contents .corp-box .caption {
    margin-top: 25px;
    color: #fff;
    font-size: 16px;
  }
  #contents .label-box {
    width: 100%;
    margin: 55px auto 0;
    display: table;
    border: 1px solid #fff;
  }
  #contents .label-box li {
    display: block;
    width: 100%;
  }
  #contents .label-box li:nth-of-type(2) {
    padding: 10px;
  }
  #contents .label-box li:nth-of-type(2) p {
    font-size: 16px;
    color: #fff;
  }
  #contents .label-box li:nth-of-type(2) p span {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 5px;
  }
  #contents .label-box li figure {
    overflow: hidden;
  }
  #contents .menu-box {
    width: 100%;
    margin: 5px auto 0;
  }
  #contents .menu-box li {
    width: 100%;
    background: #fff8dc;
    font-size: 16px;
    margin-bottom: 25px!important;
  }
  #contents .menu-box li figure img {
    width: 100%;
    height: auto;
  }
  #contents .menu-box li dl dt {
    width: 100%;
    padding: 15px 15px 5px;
    overflow: hidden;
    line-height: 1.4;
  }
  #contents .menu-box li dl dd {
    width: 100%;
    text-align: right;
    padding: 5px 5px 15px 15px;
  }
  #contents .menu-box2 {
    width: 100%;
    margin: 5px auto 0;
  }
  #contents .menu-box2 li {
    width: 46%;
    background: #fff8dc;
    font-size: 16px;
    margin-bottom: 30px!important;
  }
  #contents .menu-box2 li:nth-child(odd){
    float: left;
  }
  #contents .menu-box2 li:nth-child(even){
    float: right;
  }
  #contents .menu-box2 li figure img {
    width: 100%;
    height: auto;
  }
  #contents .menu-box2 li dl dt {
    width: 100%;
    padding: 15px 15px 5px;
    overflow: hidden;
    line-height: 1.4;
  }
  #contents .menu-box2 li dl dd {
    width: 100%;
    text-align: right;
    padding: 5px 0 15px;
  }
  #contents .menu-box2:after {
    content: "";
    display: block;
    clear: both;
  }
  #contents .menu-line-box {
    width: 100%
  }
  #contents .menu-line-box li {
    width: 100%;
    padding: 20px 0;
    border-bottom: 3px solid #4d4d4d;
    width: 100%;
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -webkit-box-pack: justify;
	  -ms-flex-pack: justify;
	  justify-content: space-between;
    font-size: 16px;
    font-feature-settings: "palt" 1;
  }
  #contents .menu-line-box li:first-child {
    border-top: 3px solid #4d4d4d;
  }
  #contents .menu-box li:last-child {
    margin-bottom: 10px;
  }
}


/*-------------------------------
  Form
  -------------------------------*/

  .texArea01 {
    width:95%;
    padding:20px;
    border:solid 1px #fff;
    font-size:18px;
    background:#FFF;
  }
  .texArea02 {
    width:180px;
    padding:5px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    border:solid 1px #999;
    font-size:18px;
  }
  .texArea03 {
    width:98%;
    padding:5px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    border:solid 1px #999;
    font-size:18px;
  }
  .texArea05 {
    width:98%;
    height:50px;
    padding:5px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    border:solid 1px #999;
    font-size:18px;
  }
  .texArea04 {
    width:95%;
    height:100px;
    padding:20px;
    border:solid 1px #fff;
    font-size:18px;
    background:#FFF;
  }
  input:focus {
  border:solid 1px #8FBC8F;
  }
  input[type=radio]{
    display: none;
  }
  .radio,.checkbox {
    line-height: 2;
  }
  .checkbox-input{
    display: none;
  }
  .checkbox-parts{
    padding-left: 34px;
    position:relative;
    margin-right: 34px;
  }
  .checkbox-parts::before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 22px;
    height: 22px;
    border: 1px solid #999;
  }
  .checkbox-input:checked + .checkbox-parts::after{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 7px;
    width: 7px;
    height: 14px;
    transform: rotate(40deg);
    border-bottom: 3px solid #999;
    border-right: 3px solid #999;
  }
  .radio-input {
    display: none;
  }
  .radio-input + label{
    padding-left: 34px;
    position:relative;
    margin-right: 34px;
  }
  .radio-input + label::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 22px;
    height: 22px;
    border: 1px solid #999;
    border-radius: 50%;
  }
  .radio-input:checked + label::after {
    content: "";
    display: block;
    position: absolute;
    top: 5px;
    left: 5px;
    width: 14px;
    height: 14px;
    background: #a0a0a0;
    border-radius: 50%;
  }
  .button-Area01 {
    text-align: center;
    margin-top: 30px;
  }
  .button01 {
    padding:14px 0;
    margin:20px 0;
    font-size:24px;
    font-weight:bold;
    color:#fff;
    cursor:pointer;
    text-align: center;
    width:260px;
    background:#8FBC8F;
    border: none;
  }
  .button02 {
    border: 1px solid #8FBC8F;
    padding:14px 0;
    margin:20px 0;
    font-size:24px;
    background:#fff;
    font-weight:bold;
    color:#666;
    cursor:pointer;
    text-align: center;
    width:200px;
    text-decoration:none;
    margin-right: 10px;
  }
  .button01:hover,.button02:hover {
    opacity: 0.7;
  }

@media screen and (max-width: 768px) {
  /*-------------------------------
  Form
  -------------------------------*/
  .texArea01 {
    width:92%;
    padding:10px;
    font-size:16px;
  }
  .texArea04 {
    width:92%;
    height:100px;
    padding:10px;
    font-size:16px;
  }
  .button-Area01 {
    text-align: center;
    margin-top: 0;
  }
  .button01 {
    width: 100%;
    padding:12px 0;
    font-size:20px;
    margin-bottom: 20px;
  }
  .button02 {
    width: 100%;
    padding:12px 0;
    font-size:20px;
  }
}
@media screen and (min-width: 769px) {
  /*------------MENU-----------*/
  
  /*-------------------------------
  mainVisual
  -------------------------------*/
  .menu #mainVisual {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 450px;
    background: url('../images/menu_mv.jpg') no-repeat center center;
  }
  .menu #mainVisual .copy {
    width: 1000px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  .menu #mainVisual .copy h1{
    font-size: 42px;
    text-shadow: 3px 3px 7px #999;
    font-feature-settings: "palt" 1;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  
  /*-------------------------------
  mainVisual
  -------------------------------*/
  .menu #mainVisual {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 150px;
    background: url('../images/menu_mv.jpg') no-repeat center center;
    background-size: cover;
    z-index: 1;
  }
  .menu #mainVisual .copy {
    width: 100%;
    padding: 0 20px;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
    .menu #mainVisual .copy h1{
    font-size: 22px;
    text-shadow: 3px 3px 7px #999;
    font-feature-settings: "palt" 1;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin: 0 auto;
  }
  
}
