
@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: "Zen Kaku Gothic New", 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;
}
.mb15 {
  margin-bottom: 15px;
}
.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;
}

/* content
-------------------------------------------------- */
div.content{
  width: 97%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  div.content{
    width: 95%;
  } 
}

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

/* header
-------------------------------------------------- */
header.top-head{
  padding-top: 1rem;
  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{
  margin-left: 1.5%;
}
header div.logo-area a{
  display: block;
  width: 11.98789rem;
  height: 8.5rem;
  background: url(../img/common/logo.svg) 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: 3rem;
  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: #fff;
}
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{
  padding-top: 0;
  position: fixed;
  top: 0;
  height: 11rem;
  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: 11.98789rem;
  height: 8.5rem;
  background: url(../img/common/logo_blk.svg) 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{    
    height: 9rem;
  }
  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: 10.57755rem;
    height: 7.5rem;
  }
  header div.nav-area nav.nav-wrap div.nav-screen div.sp_logo{
    display: block;
    width: 13rem;
    display: block;
    height: 8rem;
    margin: 7rem auto 4rem;
  }
  header div.nav-area nav.nav-wrap div.nav-screen div.sp_logo img:hover{
    opacity: 0.4;
    transition: 0.6s;
  }
  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: #fff;
    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: 9rem;
  }
  header.top-head.fixed div.logo-area a{
    width: 10.57755rem;
    height: 7.5rem;
  }
  header.top-head.fixed div.nav-area a.nav_button{
    top: 3.2rem;
  }
  header.top-head.fixed div.nav-area span.nav_line{
    background: #333;
  }
}
@media print, screen and (max-width: 767px) {
  header.top-head{
    padding-top: 0rem;
  }
  header div.logo-area{
    margin-left: 2.5%;
  }
}

/* mainvisualSec
-------------------------------------------------- */
section.mainvisualSec{
  position: relative;
  width: 100%;
  height: 100vh;
  background:url(../img/top/mainvisual.jpg) 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.3)!important;
}
/* copy */
section.mainvisualSec div.copy-area{
  position: absolute;
  top: 52%;
  left: 10%;
  transform: translateY(-48%);
  z-index: 1;
  width: 64rem;
}
section.mainvisualSec div.copy-area p.sub{
  color: #fff;
  font-size: 3.6rem;
  line-height: 1.3;
  font-weight: bold;
  text-shadow: 0px 0px 8px #333;
  margin-bottom: 2.5rem;
}
section.mainvisualSec div.copy-area h2.copy{
  color: #fff;
  font-size: 6.8rem;
  line-height: 1.3;
  font-weight: bold;
  text-shadow: 0px 0px 8px #333;
  margin-bottom: 3rem;
}
section.mainvisualSec div.copy-area p.p-txt{
  font-size: 2.6rem;
  line-height: 1.6;
  color: #fff;
  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{
    height: 0;
    padding-bottom: 110%;
  }
  section.mainvisualSec::after{
    height: 0;
    padding-bottom: 110%;
  }
  /* copy */
  section.mainvisualSec div.copy-area{
    position: absolute;
    top: 52%;
    transform: translateY(-48%);
    left: 0;
    right: 0;
    text-align: center;
    width: inherit;
  }
  section.mainvisualSec div.copy-area p.sub{
    font-size: 4.6vw;
    margin-bottom: 4%;
  }
  section.mainvisualSec div.copy-area h2.copy{
    font-size: 8.4vw;
    line-height: 1.2;
    margin-bottom: 4%;
  }
  section.mainvisualSec div.copy-area p.p-txt{
    line-height: 1.6;
    font-size: 3.2vw;
    width: 80%;
    margin: 0 auto;
    text-align: left;
  }
}
@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{
    position: absolute;
    top: 51%;
    transform: translateY(-49%);
    left: 0;
    right: 0;
    text-align: center;
    width: inherit;
  }
  section.mainvisualSec div.copy-area p.sub{
    font-size: 5.2vw;
    margin-bottom: 5%;
  }
  section.mainvisualSec div.copy-area h2.copy{
    font-size: 11.4vw;
    line-height: 1.4;
    margin-bottom: 6%;
  }
  section.mainvisualSec div.copy-area p.p-txt{
    font-size: 4.2vw;
    line-height: 1.8;
    width: 90%;
  }
}

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

/* aboutTopSec
-------------------------------------------------- */
/* "h"tag */
section.aboutTopSec h3.h3-cmn {
  font-size: 2.8rem;
  margin-bottom: 3rem;
  line-height: 1.4;
}
/* section */
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: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
section.aboutTopSec div.wrap div.txt-area{
  width: 47.5%;
}
section.aboutTopSec div.wrap div.txt-area div.button-area{
  width: 24rem;
  margin: 3.5rem auto 0 0;
}
section.aboutTopSec div.wrap div.txt-area div.button-area a.button{
  width: 24rem;
}
section.aboutTopSec div.wrap div.img-area{
  width: 47.5%;
}
@media print, screen and (max-width: 960px) {
  section.aboutTopSec div.wrap{
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
}
@media print, screen and (max-width: 767px) {
  /* "h"tag */
  section.aboutTopSec h3.h3-cmn {
    font-size: 2.4rem;
    text-align: center;
  }
  /* section */
  section.aboutTopSec{
    margin: 7rem 0 0;
  }
  section.aboutTopSec div.wrap{
    display: block;
  }
  section.aboutTopSec div.wrap div.txt-area{
    width: 100%;
  }
  section.aboutTopSec div.wrap div.txt-area div.button-area{
    width: 22rem;
    margin: 3rem auto 0 auto;
  }
  section.aboutTopSec div.wrap div.txt-area div.button-area a.button{
    width: 22rem;
  }
  section.aboutTopSec div.wrap div.img-area{
    width: 100%;
    margin-top: 3.5rem;
  }
}

/* projectTopSec
-------------------------------------------------- */
/* "h"tag */
section.projectTopSec h3.h3-cmn {
  font-size: 2.8rem;
  margin-bottom: 5rem;
  line-height: 1.4;
  text-align: center;
}
/* section */
section.projectTopSec{
  margin: 10rem 0 0;
}
section.projectTopSec div.lead{
  margin-bottom: 5rem;
}
section.projectTopSec div.lead p.att{
  margin-top: 2.5rem;
  font-size: 1.4rem;
  line-height: 2;
}
section.projectTopSec div.lead a{
  color: #D14918;
  text-decoration: underline;
}
section.projectTopSec div.lead a:hover{
  opacity: 0.4;
  transition: 0.6s;
}
section.projectTopSec div.projectwrap{
  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.projectTopSec div.projectwrap a.preparation{
  pointer-events: none;
}
section.projectTopSec div.projectwrap a.preparation:hover{
  opacity: inherit;
  text-decoration: inherit;
}
section.projectTopSec div.projectwrap a:hover{
  opacity: 0.7;
  text-decoration: underline;
}
section.projectTopSec div.projectwrap div.box{
  width: 23.5%;
  position: relative;
}
section.projectTopSec div.projectwrap div.box div.img img{
  border-radius: 1rem;
}
section.projectTopSec div.projectwrap div.box dl{
  margin: 1rem auto 1.5rem;
}
section.projectTopSec div.projectwrap div.box dl dt.area{
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
section.projectTopSec div.projectwrap div.box dl dd.title{
  font-size: 1.4rem;
  line-height: 1.4;
}
section.projectTopSec div.projectwrap div.box dl dd.title a{

}
section.projectTopSec div.projectwrap div.box dl dd.title a:hover{
  text-decoration: underline;
}
section.projectTopSec div.projectwrap div.box div.tag{
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 5;
  border-radius: 0.3rem;
  padding: 0 0.4rem 0.25rem 0.5rem;
}
section.projectTopSec div.projectwrap div.box div.tag a{
  font-size: 1.2rem;
  line-height: 1.3;
  color: #fff;
  pointer-events: none;
}
section.projectTopSec div.projectwrap div.box div.tag.preparation{
  background: #ffa801;
}
section.projectTopSec div.projectwrap div.box div.tag.sale{
  background: #0fb9b1;
}
section.projectTopSec div.projectwrap div.box div.tag.soldout{
  background: #555;
}
section.projectTopSec div.button-area{
  margin: 3rem auto 0;
}
@media print, screen and (max-width: 960px) {
  section.projectTopSec div.projectwrap div.box{
    width: 32.5%;
  }
}
@media print, screen and (max-width: 767px) {
  /* section */
  section.projectTopSec{
    margin: 7rem 0 0;
  }
  section.projectTopSec h3.h3-cmn {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }
  section.projectTopSec div.lead p.att{
    margin-top: 2.5rem;
    font-size: 1.3rem;
    line-height: 1.8;
  }
  section.projectTopSec div.projectwrap div.box{
    width: 48.5%;
  }
  section.projectTopSec div.projectwrap div.box dl dt.area{
    font-size: 1.2rem;
  }
  section.projectTopSec div.projectwrap div.box dl dd.title{
    font-size: 1.3rem;
  }
  section.projectTopSec div.projectwrap div.box div.tag{
    top: 0.8rem;
    right: 0.8rem;
    padding: 0 0.4rem 0.4rem 0.5rem;
  }
  section.projectTopSec div.projectwrap div.box div.tag a{
    font-size: 1.1rem;
    line-height: 1.2;
    color: #fff;
  }
}

/* eventSec
-------------------------------------------------- */
section.eventSec{
  margin: 10rem auto 0;
}
section.eventSec h3.h3-cmn{
  color: #000;
  font-size: 2.8rem;
  margin-bottom: 5rem;
  line-height: 1.4;
  text-align: center;
}
section.eventSec div.lead{
  margin-bottom: 5rem;
}
section.eventSec div.eventwrap{
  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.eventSec div.eventwrap a.link{
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  z-index: 100;
}
section.eventSec div.eventwrap div.box{
  width: 32%;
  position: relative;
  background: #fff;
  border: 1px solid #CCC;
  margin-bottom: 2rem;
  border-radius: 1rem;
}
section.eventSec div.eventwrap div.box img{
  border-radius: 1rem 1rem 0 0;
}
section.eventSec div.eventwrap div.box:hover{
  opacity: 0.4;
  transition: 0.6s;
}
section.eventSec div.eventwrap div.box.blank{
  background: inherit;
  border: none;
  margin-bottom: 0;
}
section.eventSec div.eventwrap div.txt{
  padding: 1.5rem 1.2rem;
}
section.eventSec div.eventwrap div.box p.title{
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 1.2rem;
}
section.eventSec div.eventwrap div.box dl{
  margin-top: 1.2rem;
}
section.eventSec div.eventwrap div.box dl dt.ttl{
  font-size: 1.4rem;
  line-height: 1.4;
}
section.eventSec div.eventwrap div.box dl dd.date,
section.eventSec div.eventwrap div.box dl dd.place{
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}
section.eventSec div.eventwrap div.box p.price{
  color: #B81F0D;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.4;
}
section.eventSec div.eventwrap div.box div.tag{
  padding: 0.2rem 0 0.3rem;
  width: 6rem;
  text-align: center;
}
section.eventSec div.eventwrap div.box div.tag a{
  font-size: 1.4rem;
  line-height: 1.4;
  color: #fff;
  pointer-events: none;
}
section.eventSec div.eventwrap div.box div.tag.preparation{
  background: #ffa801;
}
section.eventSec div.eventwrap div.box div.tag.wanted{
  background: #0fb9b1;
}
section.eventSec div.eventwrap div.box div.tag.finish{
  background: #555;
}
section.eventSec div.button-area{
  margin: 5rem auto 0;
}
@media print, screen and (max-width: 960px) {
  section.eventSec div.eventwrap div.box{
    width: 49%;
  }
}
@media print, screen and (max-width: 767px) {
  section.eventSec{
    margin: 7rem auto 0;
  }
  section.eventSec h3.h3-cmn {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }
}
@media print, screen and (max-width: 560px) {
  section.eventSec div.eventwrap div.box{
    width: 100%;
  }
}

/* instagramSec
-------------------------------------------------- */
/* section */
section.instagramSec{
  margin: 10rem 0 0;
}
section.instagramSec h3.h3-cmn{
  width: 19.98559rem;
  height: 5.71443rem;
  margin: 0 auto 5rem;
}
@media print, screen and (max-width: 767px) {
  /* section */
  section.instagramSec{
    margin: 7rem 0 0;
  }
}

/* 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: #D14918;
}
footer div.content div.footer-area{
  padding: 7rem 0 5rem;  
}
footer div.content div.footer-area div.footer-menu{
  width: 100%;
}
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: center;
}
footer div.content div.footer-area div.footer-menu ul.footernav li{
  margin-right: 5rem;
}
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.footer-area div.footer-logo{
  width: 16rem;
  margin: 5rem auto 3rem;
}
footer div.content div.footer-area div.footer-logo div.logo-area{
  width: 16rem;
  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: 7.8rem;
  margin: 2rem 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: 3.5rem;
  color: #fff;
}
footer div.content div.footer-area div.footer-logo div.sns-area ul li.instagram i{
  font-size: 3.5rem;
  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-bottom{
  width: 100%;
}
footer div.content div.footer-area div.footer-menu-bottom ul.footernav-bottom{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
}
footer div.content div.footer-area div.footer-menu-bottom ul.footernav-bottom li{
  margin-right: 5rem;
}
footer div.content div.footer-area div.footer-menu-bottom ul.footernav-bottom li a{
  color: #fff;
}
footer div.content div.footer-area div.footer-menu-bottom ul.footernav-bottom li:last-child{
  margin-right: 0;
}
footer div.content div.footer-area div.footer-menu-bottom ul.footernav-bottom li a:hover{
  opacity: 0.4;
  transition: 0.6s;
}
footer div.content div.copyright-area{
  border-top: 1px solid #fff;
  padding: 2rem 0;
  text-align: center;
}
footer div.content div.copyright-area p.p-txt{
  color: #fff;
}
@media print, screen and (max-width: 1280px) {
  footer div.content div.footer-area div.footer-menu ul.footernav li{
    margin-right: 3.5%;
  }
}
@media print, screen and (max-width: 1024px) {
  footer div.content div.footer-area div.footer-menu ul.footernav{
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: left;
  }
  footer div.content div.footer-area div.footer-menu ul.footernav li{
    width: 32%;
    line-height: 1.8;
    margin-right: 0;
    text-align: center;
  }
  footer div.content div.footer-area div.footer-menu ul.footernav li:nth-child(1),
  footer div.content div.footer-area div.footer-menu ul.footernav li:nth-child(2),
  footer div.content div.footer-area div.footer-menu ul.footernav li:nth-child(3),
  footer div.content div.footer-area div.footer-menu ul.footernav li:nth-child(4){
    margin-bottom: 2rem;
  }
}
@media print, screen and (max-width: 767px) {
  footer div.content div.footer-area{
    display: block;
    padding: 7rem 0 5rem;
  }
  footer div.content div.footer-area div.footer-menu{
    width: 100%;
  }
  footer div.content div.footer-area div.footer-menu ul.footernav li:nth-child(1),
  footer div.content div.footer-area div.footer-menu ul.footernav li:nth-child(2),
  footer div.content div.footer-area div.footer-menu ul.footernav li:nth-child(3),
  footer div.content div.footer-area div.footer-menu ul.footernav li:nth-child(4){
    margin-bottom: 1.5rem;
  }
  footer div.content div.footer-area div.footer-menu ul.footernav li{
    width: 50%;
    margin-right: 0;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  footer div.content div.footer-area div.footer-menu ul.footernav li:last-child{
    margin-bottom: 0;
  }
  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: 3.5rem auto 3rem;
  }
  footer div.content div.footer-area div.footer-logo div.sns-area ul{
    margin: 0.8rem auto 3rem;
  }
  footer div.content div.footer-area div.footer-menu-bottom ul.footernav-bottom{
    display:block;
  }
  footer div.content div.footer-area div.footer-menu-bottom ul.footernav-bottom li{
    text-align: center;
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
  footer div.content div.footer-area div.footer-menu-bottom ul.footernav-bottom li:last-child{
    margin-bottom: 0;
  }
  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;
  }
}

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