@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: "Noto Sans", "Noto Sans CJK JP", sans-serif;
  margin: 0;
  padding: 0;
  letter-spacing: -0.01rem;
  -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: 2.0;
}
@media print, screen and (max-width: 767px) {
  p{
    font-size: 1.4rem;
  }
  p.p-txt{
    line-height: 2.0;
  }
}

/* "a"tag
-------------------------------------------------- */
a{
  color: #000;
  text-decoration: none;
}

/* "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.6;
}
@media print, screen and (max-width: 767px) {
  dl dt,
  dl dd{
    font-size: 1.4rem;
    line-height: 1.8;
  }
}

/* decoration
-------------------------------------------------- */
.bold{
  font-weight: bold;
}
.left{
  text-align: left;
}
.center{
  text-align: center;
}
.right{
  text-align: right;
}

/* 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;
}

.mr10 {
  margin-right: 10px;
}

/* forPC,forSP
-------------------------------------------------- */
.forPC{
  display: inline;
}
.forSP{
  display: none;
}
@media screen and (max-width: 767px) {
  .forPC{
    display: none;
  }
  .forSP{
    display: inline;
  }
}

/* wrapper
-------------------------------------------------- */
#wrapper{
  width: 100%;
  display: none;
}

/* block
-------------------------------------------------- */
div.block{
  margin-bottom: 7rem;
}
div.subblock{
  margin-bottom: 5rem;
}
div.block.btm{
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  div.block{
    margin-bottom: 5rem;
  }
  div.subblock{
    margin-bottom: 3rem;
  }
}

/* inner
-------------------------------------------------- */
div.inner{
  max-width: 1200px;
  margin: 0 auto;
}
@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%;
  } 
}

/* img
-------------------------------------------------- */
img{
  width: 100%;
  height: auto;
}

/* "h" tag
-------------------------------------------------- */
h2.h2-cmn{
  margin-bottom: 5rem;
  font-size: 3.0rem;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
  color: #05a5bd;
}
h2.h2-cmn::before{
  display: block;
  font-size: 1.5rem;
  font-weight: normal;
}
h2.h2-cmn.news::before{
  content: "NEWS";
}
h2.h2-cmn.about::before{
  content: "ABOUT";
}
h2.h2-cmn.guide::before{
  content: "GUIDE";
}
h2.h2-cmn-ftr {
  font-size: 2.0rem;
  line-height: 1.3;
  font-weight: bold;
}
@media print, screen and (max-width: 767px) {
  h2.h2-cmn{
    font-size: 2.6rem;
    margin-bottom: 3rem;
  }
  h2.h2-cmn::before{
    font-size: 1.4rem;
  }
}

/* header
-------------------------------------------------- */
header.top-head{
  z-index: 10;
  position: absolute;
  bottom: auto;
  width: 100%;
  height: 10rem;
  background-color: rgba(255,255,255,0);
  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;
}
header div.logo-area a{
  margin-left: 2rem;
  width: 13rem;
  display: block;
  height: 8rem;
  background: url(../img/common/logo_blk.png) no-repeat;
  font-size: 0;
  z-index: 10;
}
header div.logo-area a:hover{
  opacity: 0.4;
  transition: 0.6s;
}
/* nav */
header div.nav-area nav.nav-wrap a.nav-button{
  display: none;
}
header div.nav-area nav.nav-wrap div.nav-screen div.sp_logo{
  display: none;
}
header div.nav-area nav.nav-wrap div.nav-screen ul.nav{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
header div.nav-area nav.nav-wrap div.nav-screen ul.nav li{
  text-align: center;
  line-height: 1.6;
  margin-right: 3.5rem;
  font-size: 1.5rem;
  font-weight: normal;
/*  text-shadow: 0 0 6px #333;*/
}
header div.nav-area nav.nav-wrap div.nav-screen ul.nav li:last-child{
  margin-right: 2rem;
}
header div.nav-area nav.nav-wrap div.nav-screen ul.nav li a{
  color: #000;
}
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 div.nav-screen div.sns{
  display: none;
}
header div.nav-area nav.nav-wrap.open{
  display: block;
}
header div.nav-area nav.nav-wrap.close{
  display: none;
  opacity: 1;
  cursor: auto;
}
/* Fixed */
header.top-head.fixed{
  position: fixed;
  top: 0;
  height: 10rem;
  transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  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.top-head.fixed div.logo-area a,
header.top-head.fixed div.nav-area nav.nav-wrap div.nav-screen 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.top-head.fixed div.logo-area a{
  display: block;
  width: 13rem;
  height: 8rem;
  background: url(../img/common/logo_blk.png) no-repeat;
}
header.top-head.fixed div.nav-area nav.nav-wrap div.nav-screen ul.nav li{
  text-shadow: none;
  font-weight: normal;
}
header.top-head.fixed div.nav-area nav.nav-wrap div.nav-screen ul.nav li a{
  color: #000;
  font-size: 1.5rem;
}
@media print, screen and (min-width: 1025px) {
  header div.nav-area nav.nav-wrap {
    display: block !important;
  }
}
@media print, screen and (max-width: 1024px) {
  /* clicked hamburger button screen */
  header div.nav-area{
    display: block;
    -webkit-box-align: none;
    -ms-flex-align: none;
    align-items: none;
  }
  header.top-head{
    padding-top: 1rem;
    height: 8rem;
  }
  header div.nav-area nav.nav-wrap{
    left: 0;
    top: 0;
    display: none;
    z-index: 90;
    background: rgba(255,255,255,1);
    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.logo-area a{
    width: 10rem;
    height: 6.1538rem;
    background: url(../img/common/logo_blk_sp.png) no-repeat;
  }
  header div.nav-area nav.nav-wrap div.nav-screen div.sp_logo{
    display: block;
    width: 13rem;
    display: block;
    height: 8rem;
    margin: 7rem auto 2.5rem;
  }
  header div.nav-area nav.nav-wrap div.nav-screen ul.nav{
    position: relative;
    margin: 0 auto;
    width: 100%;
    display: block;
  }
  header div.nav-area nav.nav-wrap div.nav-screen ul.nav li{
    width: 100%;
    margin-bottom: 2rem;
    text-align: center;
    display: block;
    height: auto;
    line-height: 1.3;
    text-shadow: none;
  }
  header div.nav-area nav.nav-wrap div.nav-screen ul.nav li:last-child{
    margin-bottom: 3rem;
  }
  header div.nav-area nav.nav-wrap div.nav-screen ul.nav li a{
    color: #000;
    font-size: 1.5rem;
  }
  header div.nav-area nav.nav-wrap div.nav-screen ul.nav li a:hover{
    transition: inherit;
  }
  header div.nav-area nav.nav-wrap div.nav-screen div.sns{
    display: block;
  }
  header div.nav-area nav.nav-wrap div.nav-screen div.sns ul{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  header div.nav-area nav.nav-wrap div.nav-screen div.sns ul li i {
    color: #333;
    font-size: 3.6rem;
    z-index: 5;
  }
  header div.nav-area nav.nav-wrap div.nav-screen div.sns ul li i:hover{
    opacity: 0.4;
    transition: 0.6s;
  }
  header div.nav-area nav.nav-wrap div.nav-screen div.sns ul li{
      margin-right: 1.2rem;
  }
  header div.nav-area nav.nav-wrap div.nav-screen div.sns ul li:last-child{
    margin-right: 0;
  }
  /* hamburger button */
  header div.nav-area a.nav_button{
    height: 2.2rem;
    position: absolute;
    right: 2rem;
    top: 3.4rem;
    width: 2.7rem;
    z-index: 101;
    cursor: pointer;
  }
  header div.nav-area span.nav_line{
    background: #333;
    display: block;
    height: 2px;
    position: absolute;
    transition:transform .3s;
    width: 100%;
  }
  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);
    background: #333;    
  }
  header div.nav-area span.line_center.active{
    transform:scaleX(0);    
  }
  header div.nav-area span.line_bottom.active{
    bottom: 10px;
    transform: rotate(135deg);
    background: #333; 
  }
  header.top-head.fixed{
    padding-top: 0;
    height: 8rem;
  }
  header.top-head.fixed div.logo-area a{
    width: 10rem;
    height: 6.1538rem;
    background: url(../img/common/logo_blk_sp.png) no-repeat;
  }
  header.top-head.fixed div.nav-area a.nav_button{
    top: 2.7rem;
  }
  header.top-head.fixed div.nav-area span.nav_line{
    background: #333;
  }
}

/* mainvisualSec
-------------------------------------------------- */
section.mainvisualSec{
  position: relative;
  width: 100%;
  height: 100vh;
  background:url(../img/top/mainvisual.png) center center / cover no-repeat;
}
section.mainvisualSec::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
/*  background: rgba(0, 0, 0, 0.1)!important;*/
}
/* copy */
section.mainvisualSec div.copy-area{
  position: absolute;
  top: 52%;
  left: 10%;
  transform: translateY(-48%);
  z-index: 1;
  width: 47rem;
}
section.mainvisualSec div.copy-area h2.copy{
  color: #000;
  font-size: 7.8rem;
  line-height: 1.15;
  font-weight: bold;
/*  text-shadow: 0px 0px 8px #333;*/
  margin-bottom: 2rem;
}
section.mainvisualSec div.copy-area p.p-txt{
  font-size: 1.5rem;
  line-height: 1.8;
  color: #000;
/*  text-shadow: 0px 0px 8px #333;*/
}
/* effect */
section.mainvisualSec{
    opacity: 0;
    transform: scale(1.2);
    transition: 1s;
}
section.mainvisualSec.show{
    opacity: 1;
    transform: scale(1);
}
section.mainvisualSec div.copy-area h2,
section.mainvisualSec div.copy-area p{
    opacity: 0;
    transform: translateX(-40px);
    transition: 1s;
    transition-delay: 1s;
}
section.mainvisualSec.show div.copy-area h2,
section.mainvisualSec.show div.copy-area p{
    opacity: 1;
    transform: translateX(0);
}
@media print, screen and (max-width: 960px) {
  section.mainvisualSec{
    background:url(../img/top/mainvisual_sp.png) center center / cover no-repeat;
    height: 0;
    padding-bottom: 110%;
  }
  section.mainvisualSec::after{
    height: 0;
    padding-bottom: 110%;
    background: rgba(255, 255, 255, 0.5)!important;
  }
  /* copy */
  section.mainvisualSec div.copy-area{
    position: absolute;
    top: 48%;
    transform: translateY(-52%);
    left: 0;
    right: 0;
    text-align: center;
    width: inherit;
  }
  section.mainvisualSec div.copy-area h2.copy{
    font-size: 7.4rem;
    line-height: 1.2;
  }
  section.mainvisualSec div.copy-area p.p-txt{
    line-height: 2;
    width: 58%;
    margin: 0 auto;
  }
}
@media print, screen and (max-width: 767px) {
  section.mainvisualSec div.copy-area{
    top: 52%;
    transform: translateY(-48%);
  }
  section.mainvisualSec div.copy-area h2.copy{
    font-size: 12vw;
    line-height: 1.1;
    margin-bottom: 3rem;
  }
  section.mainvisualSec div.copy-area p.p-txt{
    font-size: 2.6vw;
    line-height: 1.8;
    width: 76%;
  }
}
@media print, screen and (max-width: 560px) {
  section.mainvisualSec{
    height: 100vh;
    padding-bottom: inherit;
  }
  section.mainvisualSec::after{
    height: 100vh;
    padding-bottom: inherit;
  }
  section.mainvisualSec div.copy-area h2.copy{
    font-size: 12vw;
    line-height: 1.2;
    margin-bottom: 3rem;
  }
  section.mainvisualSec div.copy-area p.p-txt{
    font-size: 3.4vw;
    line-height: 1.8;
    width: 76%;
  }
}

/* title
-------------------------------------------------- */
div.title{
  margin-bottom: 5rem;
}
div.title h3.h3-cmn{
  color: #DC4813;
  font-size: 3.2rem;
  line-height: 1.4;
}
div.title p{
  font-size: 1.6rem;
  line-height: 1.6;
}
div.title p span.triangle{
  padding: 0 1rem;
  font-size: 1.5rem;
}
@media print, screen and (max-width: 767px) {
  div.title{
    text-align: center;
    margin-bottom: 3rem;
  }
  div.title h3.h3-cmn{
    color: #DC4813;
    font-size: 3.2rem;
    line-height: 1.2;
  }
  div.title p{
    margin-top: 1rem;
  }
}

/* button
-------------------------------------------------- */
div.button-area{
  width: 20rem;
  margin: 0 auto;
}
a.button,
input.button{
  position: relative;
  font-size: 1.5rem;
  color: #000;
  background: #fff;
  border: 1px solid #000000;
  display: inline-block;
  width: 20rem;
  height: 5.0rem;
  line-height: 4.8rem;
  border-radius: 4rem;
  text-align: center;
  font-family: "Noto Sans", "Noto Sans CJK JP", sans-serif;
}
input[type="submit"] {
  position: relative;
  font-size: 1.5rem;
  color: #000;
  background: #fff;
  border: 1px solid #000000;
  display: inline-block;
  width: 20rem;
  height: 5.0rem;
  line-height: 4.8rem;
  border-radius: 4rem;
  text-align: center;
  font-family: "Noto Sans", "Noto Sans CJK JP", sans-serif;
}
a.button:hover,
input.button:hover{
  background: #000;
  color: #fff;
  transition: .6s;
}
@media print, screen and (max-width: 767px) {
  div.button-area{
    width: 18rem;
  }
  a.button,
  input.button{
    width: 18rem;
    font-size: 1.4rem;
    height: 4.8rem;
    line-height: 4.6rem;
  }
  input[type="submit"] {
    width: 18rem;
    height: 4.8rem;
    line-height: 4.6rem;
  }
}

/* menuTopSec
-------------------------------------------------- */
section.menuTopSec{
  margin: 5rem 0 0;
}
section.menuTopSec div.wrap{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}
section.menuTopSec div.wrap div.menu{
  width: 32%;
  position: relative;
  margin-right: 3%;
}
section.menuTopSec div.wrap div.menu:last-child{
  margin-right: 0;
}
section.menuTopSec div.wrap div.menu a.whole{
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3)!important;
}
section.menuTopSec div.wrap div.menu a.whole.non{
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.7)!important;
  pointer-events: none;
}
section.menuTopSec div.wrap div.menu a.whole:hover{
  background: rgba(0, 0, 0, 0)!important;
  transition: 0.6s;
}
section.menuTopSec div.wrap div.menu div.img{
  position: relative;
}
section.menuTopSec div.wrap div.menu div.img div.txt{
  position: absolute;
  bottom: 6%;
  left: 6%;
  z-index: 3;
}
section.menuTopSec div.wrap div.menu div.img div.txt h4{
  color: #fff;
  font-size: 2rem;
  line-height: 1.4;
  text-shadow: 0 0 6px #333;
}
section.menuTopSec div.wrap div.menu div.img div.txt h4.non{
  color: #888;
}
section.menuTopSec div.wrap div.menu div.img div.txt p{
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 0 6px #333;
}
@media print, screen and (max-width: 1280px) {
  section.menuTopSec{
    margin: 0;
  }
}
@media print, screen and (max-width: 767px) {
  section.menuTopSec div.wrap{
    display: block;
    width: 100%;
  }
  section.menuTopSec div.wrap div.menu{
    width: 80%;
    margin: 0 auto 3rem;
  }
  section.menuTopSec div.wrap div.menu{
    margin-right: auto;
  }
  section.menuTopSec div.wrap div.menu:last-child{
    margin-right: auto;
  }
}

/* aboutTopSec
-------------------------------------------------- */
section.aboutTopSec{
  margin: 10rem 0 0;
}
section.aboutTopSec div.wrap{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin-top: 5rem;
}
section.aboutTopSec div.wrap div.menu{
  width: 32%;
  position: relative;
}
section.aboutTopSec div.wrap div.menu:first-child{
  margin-right: 5%;
}
section.aboutTopSec div.wrap div.menu a.whole{
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3)!important;
}
section.aboutTopSec div.wrap div.menu a.whole:hover{
  background: rgba(0, 0, 0, 0)!important;
  transition: 0.6s;
}
section.aboutTopSec div.wrap div.menu div.img{
  position: relative;
}
section.aboutTopSec div.wrap div.menu div.img div.txt{
  position: absolute;
  bottom: 6%;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
}
section.aboutTopSec div.wrap div.menu div.img div.txt h4{
  color: #fff;
  font-size: 2rem;
  line-height: 1.4;
  text-shadow: 0 0 6px #333;
}
section.aboutTopSec div.wrap div.menu div.img div.txt p{
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 0 6px #333;
}
section.aboutTopSec div.button-area{
  margin: 5rem auto 0;
}
@media print, screen and (max-width: 767px) {
  section.aboutTopSec{
    margin: 7rem 0 0;
  }
  section.aboutTopSec div.wrap{
    display: block;
    width: 100%;
  }
  section.aboutTopSec div.wrap div.menu:first-child{
    margin-right: auto;
  }
  section.aboutTopSec div.wrap div.menu{
    width: 80%;
    margin: 0 auto 3rem;
  }
  section.aboutTopSec div.wrap div.menu:last-child{
    margin-bottom: 0;
  }
}

/* PhilosophyServiceTopSec
-------------------------------------------------- */
section.PhilosophyServiceTopSec{
  margin: 10rem auto 0;
  padding: 10rem 0;
  background: url("../img/top/PhilosophyServiceTopSec_img01.jpg") center center / cover no-repeat;;
}
section.PhilosophyServiceTopSec div.title h3.h3-cmn{
  color: #FFDF0E;
}
section.PhilosophyServiceTopSec div.title p{
  color: #fff;
}
section.PhilosophyServiceTopSec div.text-area{
  width: 50%;
}
section.PhilosophyServiceTopSec div.text-area p{
  color: #fff;
  line-height: 2;
}
section.PhilosophyServiceTopSec div.text-area div.button-area{
  margin: 5rem auto 0;
}
section.PhilosophyServiceTopSec div.text-area div.button-area a.button{
  background: inherit;
  color: #fff;
  border: 1px solid #fff;
}
section.PhilosophyServiceTopSec div.text-area div.button-area a.button:hover{
  background: #fff;
  color: #000;
}
@media print, screen and (max-width: 960px) {
  section.PhilosophyServiceTopSec div.text-area{
    width: 100%;
  }
}
@media print, screen and (max-width: 767px) {
  section.PhilosophyServiceTopSec{
    margin: 7rem auto 0;
    padding: 7rem 0;
  }
}

/* fbSec
-------------------------------------------------- */
section.fbSec{
  margin: 10rem auto 0;
}
section.fbSec div.wrap{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
}
section.fbSec div.fb-container{
  width: 40rem;
}
section.fbSec div.fb-container:first-child{
  margin-right: 5rem;
}
section.fbSec div.fb-page{
  width: 40rem;
}
@media print, screen and (max-width: 960px) {
  section.fbSec div.fb-container{
    width: 35rem;
  }
  section.fbSec div.fb-container:first-child{
    margin-right: 3rem;
  }
  section.fbSec div.fb-page{
    width: 35rem;
  }
}
@media print, screen and (max-width: 767px) {
  section.fbSec{
    margin: 7rem auto 0;
  }
  section.fbSec div.wrap{
    display: block;
  }
  section.fbSec div.fb-container{
    width: 50rem;
    margin-left: auto;
    margin-right: auto;
  }
  section.fbSec div.fb-container:first-child{
    margin-right: auto;
    margin-bottom: 3rem;
  }
  section.fbSec div.fb-page{
    width: 50rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media print, screen and (max-width: 560px) {
  section.fbSec div.fb-container{
    width: 35rem;
  }
  section.fbSec div.fb-page{
    width: 35rem;
  }
}


/* 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: #000;
}
footer div.content div.footer-area{
  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;
  padding: 5rem 0 5rem;
}
footer div.content div.footer-area div.footer-logo{
  width: 14rem;
  height: auto;
}
footer div.content div.footer-area div.footer-logo div.logo-area{
  width: 14rem;
  margin: 0 auto;
}
footer div.content div.footer-area div.footer-logo img:hover{
  opacity: 0.4;
  transition: 0.6s;
}
footer div.content div.footer-area div.footer-logo div.sns-area ul{
  width: 14rem;
  margin: 1rem 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: 1rem;
}
footer div.content div.footer-area div.footer-logo div.sns-area ul li.facebook i{
  font-size: 4rem;
  color: #fff;
}
footer div.content div.footer-area div.footer-logo div.sns-area ul li.instagram i{
  font-size: 4rem;
  color: #fff;
}
footer div.content div.footer-area div.footer-logo div.sns-area ul li.youtube i{
  font-size: 4rem;
  color: #fff;
}
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 i:hover{
  opacity: 0.4;
  transition: 0.6s;
}
footer div.content div.footer-area div.footer-menu{
  width: 80%;
}
footer div.content div.footer-area div.footer-menu div.button-area{
  margin: 0 0 2.5rem auto;
}
footer div.content div.footer-area div.footer-menu div.button-area a.button{
  background: inherit;
  color: #fff;
  border: 1px solid #fff;
}
footer div.content div.footer-area div.footer-menu div.button-area a.button:hover{
  background: #fff;
  color: #000;
}
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: right;
}
footer div.content div.footer-area div.footer-menu ul.footernav li{
  margin-right: 3rem;
}
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:last-child{
  margin-right: 0;
}
footer div.content div.footer-area div.footer-menu ul.footernav li a:hover{
  opacity: 0.4;
  transition: 0.6s;
}
footer div.content div.copyright-area{
  border-top: 1px solid #fff;
  padding: 5rem 0 2rem;
}
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 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.p-txt{
  color: #fff;
}
@media print, screen and (max-width: 1024px) {
  footer div.content div.footer-area{
    display: block;
    padding: 5rem 0 3rem;
  }
  footer div.content div.footer-area div.footer-menu{
    width: 100%;
  }
  footer div.content div.footer-area div.footer-menu ul.footernav{
    justify-content: left;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  footer div.content div.footer-area div.footer-menu ul.footernav li{
    width: 33.3%;
    margin-right: 0;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  footer div.content div.footer-area div.footer-menu div.button-area{
    margin: 0 auto 3rem;
  }
  footer div.content div.footer-area div.footer-logo{
    width: 18rem;
    height: auto;
    margin: 0 auto;
  }
  footer div.content div.footer-area div.footer-logo div.sns-area ul{
    margin: 0.8rem auto 3rem;
  }
  footer div.content div.copyright-area{
    text-align: center;
    padding: 4rem 0 2rem;    
  }
  footer div.content div.copyright-area div.wrap{
    display: block;
  }
  footer div.content div.copyright-area div.list ul{
    display: block;
    margin-bottom: 1rem;
  }
  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;
    margin-bottom: 0.5rem;
  }
}
@media print, screen and (max-width: 560px) {
  footer div.content div.footer-area div.footer-menu ul.footernav li{
    width: 50%;
  }
}

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