@charset"utf-8";
/* "*"
-------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
}
/* "html"
-------------------------------------------------- */
html{
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  font-size: 62.5%;
  box-sizing: border-box;
}
/* "body"
-------------------------------------------------- */
body {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", "Noto Serif JP", serif;
  margin: 0;
  padding: 0;
  letter-spacing: -0.01em;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-size: 1.5rem;
  color: #000;
}
body * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; 
}
/* "p"tag
-------------------------------------------------- */
p{
  font-size: 1.5rem;
  margin-bottom: 0;
}
p.p-txt{
  line-height: 1.8;
}
@media print, screen and (max-width: 767px) {
  p{
    font-size: 1.4rem;
  }
  p.p-txt{
    line-height: 1.8;
  }
}
/* "a"tag
-------------------------------------------------- */
a{
  color: #000;
  text-decoration: none;
}
p.p-txt a:hover{
  opacity: 0.4;
  transition: 0.6s;
}
/* "li/ol/ul" Tag
-------------------------------------------------- */
ol li{
  font-size: 1.5rem;
  line-height: 1.8;
  margin-left: 2.0rem;
}
ul li{
  font-size: 1.5rem;
  list-style-type: none;
  line-height: 1.8;
}
@media print, screen and (max-width: 767px) {
  ol li,
  ul li{
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
/* "dt dd" Tag
-------------------------------------------------- */
dl dt,
dl dd{
  font-size: 1.5rem;
  line-height: 1.8;
}

@media print, screen and (max-width: 767px) {
  dl dt,
  dl dd{
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
/* decoration
-------------------------------------------------- */
.bold{
  font-weight: bold;
}
/* color
-------------------------------------------------- */
.white {
  color: #FFFFFF;
}
.red {
  color: #DE4830;
}
.blue {
  color: #156CA3;
}
.orange {
  color: #E9872E;
}
.green {
  color: #26AE90;
}
.brown {
  color: #AD8141;
}
/* margin
-------------------------------------------------- */
.mb0 {
  margin-bottom: 0;
}
.mb5 {
  margin-bottom: 5px;
}
.mb10 {
  margin-bottom: 10px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb50 {
  margin-bottom: 50px;
}
.mb60 {
  margin-bottom: 60px;
}
.mb70 {
  margin-bottom: 70px;
}
.mb80 {
  margin-bottom: 80px;
}
.mb90 {
  margin-bottom: 90px;
}
.mb100 {
  margin-bottom: 100px;
}
/* wrapper
-------------------------------------------------- */
#wrapper{
  width: 100%;
  display: none;
}
/* inner
-------------------------------------------------- */
div.inner{
  max-width: 1200px;
  margin: 0 auto;
}
header .inner{
  margin-bottom: 0!important;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  footer .inner{
    width: 95%;
    margin: 0 auto;
  }
}
/* content
-------------------------------------------------- */
div.content{
  width: 97%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  div.content{
    width: 95%;
  }
}
/* forPC,forSP
-------------------------------------------------- */
.forPC{
  display: inline;
}
.forSP{
  display: none;
}
@media screen and (max-width: 767px) {
  .forPC{
    display: none;
  }
  .forSP{
    display: inline;
  }
}

/* header
-------------------------------------------------- */
header{
  z-index: 10;
  bottom: auto;
  width: 100%;
  background-color: rgba(255,255,255,0);
  top: 0;
  position: absolute;
}
header div.wrap{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 10rem;
}
/* logo-area */
header div.logo-area a{
  display: none;
}
/* nav */
header div.nav-area{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
header div.nav-area nav.nav-wrap a.nav-button {
  display: none;
}
header div.nav-area nav.nav-wrap div.nav-screen{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
header div.nav-area nav.nav-wrap div.nav-screen ul.nav{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header div.nav-area nav.nav-wrap div.nav-screen ul.nav li{
  margin-right: 3.5rem;
  font-weight: normal;
}
header div.nav-area nav.nav-wrap div.nav-screen ul.nav li a{
  font-size: 1.5rem;
  color: #fff;
  font-weight: bold;
}
header div.nav-area nav.nav-wrap div.nav-screen ul.nav li a:hover{
  opacity: 0.4;
  transition: 0.6s;
}
header div.nav-area nav.nav-wrap.open{
  display: block;
}
header div.nav-area nav.nav-wrap.close{
  display: none;
  margin-top: 0.3rem;
  opacity: 1;
  cursor: auto;
}
/* Fixed */
header.fixed{
  top: 0;
  position: fixed;
  background-color: rgba(255,255,255,.90);
  -webkit-box-shadow: 0 0 0.4rem 0.2rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 0.4rem 0.2rem rgba(0, 0, 0, 0.15);
}
header.fixed div.logo-area{
  margin-left: 3rem;
}
header.fixed div.logo-area a{
  display: block;
  width: 22.35rem;
  height: 4.92rem;
  font-size: 0;
  background: url(../img/common/logo_blk.svg) no-repeat;
}
header.fixed div.wrap{
  height: 9rem;
  transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
}
header.fixed h1.h1-logo,
header.fixed div.nav-area ul.nav li{
  transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
}
header.fixed div.inner{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
header.fixed div.nav-area nav.nav-wrap div.nav-screen ul.nav li{
  margin-right: 3.5rem;  
  font-weight: normal;
}
header.fixed div.nav-area nav.nav-wrap div.nav-screen ul.nav li a{
  color: #1A1A1A;
  font-size: 1.5rem;
}
@media print, screen and (min-width: 961px) {
  header div.nav-area nav.nav-wrap {
    display: block !important;
  }
}
@media print, screen and (max-width: 960px) {
  /* clicked hamburger button screen */
  header div.nav-area{
    display: block;
    -webkit-box-align: none;
    -ms-flex-align: none;
    align-items: none;
  }
  header div.wrap{
    height: 10rem;
  }
  header div.nav-area nav.nav-wrap{
    left: 0;
    top: 0;
    display: none;
    z-index: 90;
    background: rgba(0,0,0,0.7);
    width: 100%;
    height: 100%;
    position: fixed;
  }
  header div.nav-area nav.nav-wrap div.nav-screen{
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  header div.nav-area nav.nav-wrap div.nav-screen ul.nav{
    position: relative;
    margin: 6rem auto 2.5rem;
    width: 88%;
    display: block;
  }
  header div.nav-area nav.nav-wrap div.nav-screen ul.nav li{
    margin-bottom: 2rem;
    display: block;
  }
  header div.nav-area nav.nav-wrap div.nav-screen ul.nav li:last-child{
    margin-bottom: 0;
  }
  header div.nav-area nav.nav-wrap div.nav-screen ul.nav li a{
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    transition: .5s;
  }
  header div.nav-area nav.nav-wrap div.nav-screen ul.nav li a:hover{
    color: #fff;
    opacity: 0.4;
    transition: 0.6s;
  }
  /* hamburger button */
  header div.nav-area a.nav_button{
    height: 22px;
    position: absolute;
    right: 20px;
    top: 38px;
    width: 27px;
    z-index: 101;
  }
  header div.nav-area a.nav_button:hover{
    cursor: pointer;
    opacity: 0.4;
    transition: 0.6s;
  }
  header div.nav-area span.nav_line{
    background: #FFF;
    display: block;
    height: 2px;
    position: absolute;
    transition:transform .3s;
    width: 100%;
  }
  header div.nav-area span.nav_line.active{
    background: #fff;
  }
  header div.nav-area span.line_center{
    top: 10px;
  }
  header div.nav-area span.line_bottom{
    bottom: 0;
  }
  header div.nav-area span.line_top.active{
    top: 10px;
    transform: rotate(45deg);
  }
  header div.nav-area span.line_center.active{
    transform:scaleX(0);
  }
  header div.nav-area span.line_bottom.active{
    bottom: 10px;
    transform: rotate(135deg);
  }
  /* Fixed */
  header.fixed div.wrap{
    height: 8rem;
  }
  header.fixed div.logo-area{
    margin-left: 1.5rem;    
  }
  header.fixed div.logo-area a{
    width: 19.48rem;
    height: 4.28rem;
    font-size: 0;
    background: url(../img/common/logo_blk_sp.svg) no-repeat;
  }
  header.fixed div.nav-area a.nav_button{
    right: 20px;
    top: 28px;
  }
  header.fixed div.nav-area span.nav_line{
    background: #1A1A1A;
  }
  header.fixed div.nav-area nav.nav-wrap div.nav-screen ul.nav li a{
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    transition: .5s;
  }
  header.fixed div.nav-area span.line_top.active,
  header.fixed div.nav-area span.line_bottom.active{
    background: #fff;
  }
}

/* button
-------------------------------------------------- */
div.button-area{
  width: 20rem;
  margin: 0 auto;
}
a.button,
input.button{
  position: relative;
  font-size: 1.5rem;
  color: #fff;
  background: #A08C6E;
  border: 1px solid #A08C6E;
  display: inline-block;
  width: 20rem;  
  height: 5.2rem;
  line-height: 4.9rem;
  text-align: center;
}
input[type="submit"] {
  position: relative;
  font-size: 1.5rem;
  color: #fff;
  background: #A08C6E;
  border: 1px solid #A08C6E;
  display: inline-block;
  width: 20rem;  
  height: 5.2rem;
  line-height: 4.9rem;
  text-align: center;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", "Noto Serif JP", serif;
}
a.button:hover,
input.button:hover{
  background: #fff;
  color: #A08C6E;
  transition: .5s;
}
@media print, screen and (max-width: 767px) {
  div.button-area{
    width: 18rem;
  }
  a.button,
  input.button{
    font-size: 1.4rem;
    width: 18rem;  
    height: 4.8rem;
    line-height: 4.5rem;
  }
  input[type="submit"] {
    font-size: 1.4rem;
    width: 18rem;
    height: 4.8rem;
    line-height: 4.5rem;
  }
}

/* mainvisualSec
-------------------------------------------------- */
section.mainvisualSec div.swiper-container{
  width: 100%;
  height: 100vh;
  position: relative;
}
section.mainvisualSec .swiper-slide.swiper-slide-active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.25)!important;
}
section.mainvisualSec div.swiper-container div.swiper-slide{
  background-size: cover;
  background-position: center center;
}
section.mainvisualSec div.copy-area{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 37.5rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1;
}
section.mainvisualSec div.copy-area div.logo{
  width: 36rem;
  margin: 1.5rem auto 0;
}
section.mainvisualSec div.copy-area div.logo img{
  width: 100%;
  height: auto;
}
section.mainvisualSec div.copy-area p.catch{
  font-size: 1.8rem;
  text-align: center;
  color: #fff;
  line-height: 1.3;
  text-shadow: 2px 2px 0 #333;
}
section.mainvisualSec div.swiper-pagination{
  margin-bottom: 1rem;
}
section.mainvisualSec span.swiper-pagination-bullet-active{
  background: #fff!important;
}
section.mainvisualSec span.swiper-pagination-bullet{
  border:4px solid #fff!important;
  background: none;
  width: 10px!important;
  height: 10px!important;
  margin-right: 1.5rem!important;
}
@media print, screen and (max-width: 960px) {
  section.mainvisualSec div.swiper-container{
    height: 100vh;
  }
  section.mainvisualSec .swiper-slide.swiper-slide-active::after {
    height: 100vh;
  }
  section.mainvisualSec div.copy-area{
    width: 30rem;
  }
  section.mainvisualSec div.copy-area div.logo{
    width: 30rem;
    margin: 2rem auto 0;
  }
}
@media print, screen and (max-width: 767px) {
  section.mainvisualSec div.copy-area p.catch{
    font-size: 1.8rem;
  }
  section.mainvisualSec div.copy-area{
    width: 24rem;
  }
  section.mainvisualSec div.copy-area div.logo{
    width: 24rem;
    margin: 2rem auto 0;
  }
}
@media print, screen and (max-width: 560px) {

}

/* "h"tag
-------------------------------------------------- */
h3.h3-cmn {
  font-size: 2.6rem;
  margin-bottom: 5rem;
  line-height: 1.4;
  text-align: center;
  color: #1A1A1A;
}
@media print, screen and (max-width: 767px) {
  h3.h3-cmn {
    font-size: 2.2rem;
    margin-bottom: 3rem;
  }
}

/* commitmentTopSec
-------------------------------------------------- */
/* section */
section.commitmentTopSec{
  margin: 10rem auto 0;
}
section.commitmentTopSec h3.h3-cmn {
  margin-bottom: 2rem;
}
section.commitmentTopSec div.wrap{
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
section.commitmentTopSec div.wrap div.txt-area{
  width: 26%;
}
section.commitmentTopSec div.wrap div.txt-area p{
  text-align: center;
}
section.commitmentTopSec div.wrap div.img-area{
  width: 70%;
  font-size: 0;
}
section.commitmentTopSec div.wrap div.img-area img{
  width: 100%;
  height: auto;
}
section.commitmentTopSec div.button-area{
  margin: 3rem auto 0;
}
@media print, screen and (max-width: 767px) {
  /* section */
  section.commitmentTopSec{
    margin: 7rem auto 0;
  }
  section.commitmentTopSec div.wrap{
    display: block;
  }
  section.commitmentTopSec div.wrap div.txt-area{
    width: 100%;
  }
  section.commitmentTopSec div.wrap div.img-area{
    width: 100%;
    margin-top: 5rem;
  }
}

/* menuTopSec
-------------------------------------------------- */
/* section */
section.menuTopSec{
  margin: 10rem auto 0;
  background: #F4F3F1;
  padding: 7rem 0;
}
section.menuTopSec div.content div.wrap{
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
section.menuTopSec div.content div.wrap.w01{
  margin-bottom: 3rem;
}
section.menuTopSec div.content div.wrap div.item{
  width: 22.75%;
  margin-right: 3%;
}
section.menuTopSec div.content div.wrap div.item:last-child{
  margin-right: 0;
}
section.menuTopSec div.content div.wrap div.item img{
  width: 100%;
  height: auto;
}
section.menuTopSec div.content div.wrap div.item img:hover{
  opacity: 0.4;
  transition: 0.6s;
}
section.menuTopSec div.content div.wrap div.item p.p-txt{
  margin-top: 1rem;
  text-align: center;
  font-size: 1.6rem;
}
section.menuTopSec div.content div.button-area{
  margin: 5rem auto 0;
}
@media print, screen and (max-width: 767px) {
  /* section */
  section.menuTopSec{
    margin: 7rem auto 0;
    padding: 7rem 0;
  }
  section.menuTopSec div.content div.wrap.w01{
    margin-bottom: 0;
  }
  section.menuTopSec div.content div.wrap div.item{
    width: 48.5%;
    margin-right: 3%;
    margin-bottom: 1rem;
  }
  section.menuTopSec div.content div.wrap div.item:nth-child(2),
  section.menuTopSec div.content div.wrap div.item:last-child{
    margin-right: 0;
  }
  section.menuTopSec div.content div.wrap div.item p.p-txt{
    margin-top: 0.5rem;
    font-size: 1.5rem;
  }
  section.menuTopSec div.content div.button-area{
    margin: 3rem auto 0;
  }
}

/* informationSec
-------------------------------------------------- */
section.informationSec{
  margin: 10rem auto 0;
}
section.informationSec dl {
  border-bottom: 1px dotted #ccc;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  line-height: 2.0;
}
section.informationSec dl dt{
  display: inline-block;
  line-height: 2.0;
}
section.informationSec dl dd.cat{
  display: inline-block;
  margin-left: 2rem;
  padding: 0.2rem 1.5rem 0;
  background: #30373F;
  color: #fff;
  text-align: center;
}
section.informationSec dl dd.cat li{
  line-height: 1.8;
  font-size: 1.4rem;
}
section.informationSec dl dd.cat a{
  pointer-events: none;
  color: #fff;
}
section.informationSec dl dd.title{
  line-height: 2.0;
  margin-top: 0.5rem;
}
section.informationSec dl dd.title a:hover{ 
  opacity: 0.4;
  transition: 0.6s;
}
section.informationSec div.button-area{
  margin: 5rem auto 0;
}
@media print, screen and (max-width: 767px) {
  section.informationSec{
    margin: 7rem auto 0;
  }
  section.informationSec dl dd.cat{
    margin-left: 1rem;
  }
  section.informationSec dl dd.cat li{
    font-size: 1.3rem;
  }

}

/* accessSec
-------------------------------------------------- */
/* "h"tag */
h4.h4-access{
  font-size: 2.0rem;
  margin-bottom: 1.5rem;
}
section.accessSec{
  margin: 10rem auto 0;
}
section.accessSec div.wrap{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
section.accessSec div.wrap div.gmap{
  width: 48%;
}
section.accessSec div.wrap div.gmap iframe{
  width: 100%;
  height: 45rem;
}
section.accessSec div.wrap div.img-area img{
  width: 100%;
  height: auto;
}
section.accessSec div.wrap div.txt-area{
  width: 48%;
}
section.accessSec div.wrap div.txt-area div.block{
  margin-bottom: 3rem;
}
section.accessSec div.wrap div.txt-area div.block:last-child{
  margin-bottom: 0;
}
section.accessSec div.wrap div.txt-area div.block ul li{
  list-style-type: disc;
  margin-left: 2.1rem;
}
@media print, screen and (max-width: 767px) {
  /* "h"tag */
  h4.h4-access{
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  section.accessSec{
    margin: 7rem auto 0;
  }
  section.accessSec div.wrap{
    display: block;
  }
  section.accessSec div.wrap div.gmap{
    width: 100%;
    margin-bottom: 3rem;
  }
  section.accessSec div.wrap div.txt-area{
    width: 100%;
  }
}

/* footer
-------------------------------------------------- */
/* "h"tag */
h3.h3-cmn-ftr {
  font-size: 2.0rem;
  margin-bottom: 0.5rem;  
  line-height: 1.3;
  font-weight: bold;
}
footer{
  margin: 10rem auto 0;
  background: #44413C;
}
footer div.content div.footer-area{  
  padding: 7rem 0;
  border-bottom: 1px solid #fff;
}
footer div.content div.footer-area div.footer-menu ul.footernav{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
footer div.content div.footer-area div.footer-menu ul.footernav li{
  width: 33%;
  text-align: center;
  line-height: 3;
}
footer div.content div.footer-area div.footer-menu ul.footernav li a{
  color: #fff;
}
footer div.content div.footer-area div.footer-menu ul.footernav li a:hover{
  opacity: 0.4;
  transition: 0.5s;
}
footer div.content div.footer-area div.footer-logo{
  width: 24rem;
  height: auto;
  margin: 3.5rem auto 0;
}
footer div.content div.footer-area div.footer-logo img{
  width: 100%;
  height: auto;
}
footer div.content div.footer-area div.footer-logo img:hover{
  opacity: 0.4;
  transition: 0.5s;
}
footer div.content div.footer-area div.footer-logo div.sns-area ul{
  width: 10rem;
  margin: 1.5rem auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
footer div.content div.footer-area div.footer-logo div.sns-area ul li{
  margin-right: 1.2rem;
}
footer div.content div.footer-area div.footer-logo div.sns-area ul li.facebook{
  width: 4.8rem;
}
footer div.content div.footer-area div.footer-logo div.sns-area ul li.instagram{
  width: 4.5rem;
}
footer div.content div.footer-area div.footer-logo div.sns-area ul li:last-child{
  margin-right: 0;
}
footer div.content div.footer-area div.footer-logo div.sns-area ul li img{
  width: 100%;
  height: auto;
}
footer div.content div.footer-area div.footer-logo div.sns-area ul li img:hover{
  opacity: 0.4;
  transition: 0.6s;
}
footer div.content div.copyright-area{
  padding: 2rem 0;
}
footer div.content div.copyright-area div.wrap{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
footer div.content div.copyright-area div.list ul{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
footer div.content div.copyright-area div.list ul li:first-child{
  margin-right: 2.5rem;
}
footer div.content div.copyright-area div.list ul li a{
  color: #fff;
}
footer div.content div.copyright-area div.list ul li a:hover{
  opacity: 0.4;
  transition: 0.6s;
}
footer div.content div.copyright-area p{
  color: #fff;
}
@media print, screen and (max-width: 767px) {
  footer{
    margin: 7rem auto 0;
  }
  footer div.content div.footer-area div.footer-menu ul.footernav li{
    width: 50%;
    line-height: 2.5;
  }
  footer div.content div.footer-area div.footer-logo{
    margin: 3.5rem auto 0;
    width: 22rem;
  }
  footer div.content div.copyright-area{
    text-align: center;    
  }
  footer div.content div.copyright-area div.wrap{
    display: block;
  }
  footer div.content div.copyright-area div.list ul{
    display: block;
  }
  footer div.content div.copyright-area div.list ul li{
    text-align: center;
  }
  footer div.content div.copyright-area div.list ul li:first-child{
    margin-right: 0;
  }
  footer div.content div.copyright-area p{
    margin-top: 2.5rem;
    font-size: 1.3rem;
  }
}

/* fadein
-------------------------------------------------- */
/* 画面外にいる状態 */
.fadein {
  opacity : 0;
  transform : translate(0, 45px);
  transition : all 1000ms;
}
/* 画面内に入った状態 */
.fadein.scrollin {
  opacity : 1;
  transform : translate(0, 0);
}