body {
  margin: 0;
  background-color: #ffffff;
  color: #273C52;
  font-family: "ヒラギノ角ゴシック","Meiryo",sans-serif;
  font-weight: 300;
}

a {
  text-decoration: none;
}

.container {
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

.openbtn {
  display: none;
}

header {
  width: 100%;
  height: 130px;
  position: fixed;        /* ヘッダーを絶対位置にする。スクロールしても固定 */
  top: 0;                 /* 上から0pxに指定 */
  left: 0;
  box-sizing: border-box;
  z-index: 5;
}

.logo-mark {
  float: left;
  height: 60px;
  margin-left: 100px;
  margin-top: 35px;
}

.header-menu {
  list-style: none;
  overflow: hidden;
  float: right;
}

.header-menu li {
  display: inline-block;
  height: 36px;
  font-family: "Georgia","Times New Roman";
  font-size: 18px;
  letter-spacing: 0.05em;
  padding-right: 60px;
  margin-top: 51px;
}

.header-menu li a {
  position: relative;
}

.header-menu li a::after {
  content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: -20%;
    left: 10%;
    /*線の形状*/
    width: 80%;
    height: 1px;
    background:#273C52;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: left top;/*左上基点*/
}

.header-menu li.current a::after,
.header-menu li a:hover::after {
    transform: scale(1, 1);/*X方向にスケール拡大*/
}


.top-wrapper {
  position: relative;
  height: 1280px;
  background-image: url(/demo02/img/AdobeStock_308129386.jpeg);
  background-size: cover;
  text-align: center;
  z-index: 7;
  }

.top-wrapper .logo-mark {
  height: 130px;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  margin:0;
  padding:0;
}

.concept-wrapper {
  margin-top: 325px;
  text-align: center;
}

.concept-wrapper .text {
  display: inline-block;
  height: 800px;
  width: 800px;
  padding-top: 200px;
}

.concept-wrapper .text h2 {
  font-family: "Georgia","Times New Roman";
  font-weight: lighter;
  font-size: 40px;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.concept-wrapper .text p {
  font-size: 24px;
  line-height: 48px;
  margin-top: 60px;
}

.concept-wrapper .concept-img {
  display: inline-block;
  height: 800px;
}

.image-wrapper {
  margin-top: 500px;
  position: relative;
  height: 1200px;
}

.image-wrapper .container {
  position: relative;
}

.image-wrapper .background {
  background-color: #D3C1BA;
  width: 100%;
  height: 1040px;
  position: absolute;
  top: 400;
  left: 0;
  z-index: 1;
}

.image-wrapper .img-01 {
  height: 600px;
  position: absolute;
  top: -120px;
  left: 160px;
  z-index: 3
}

.image-wrapper .img-02 {
  height: 500px;
  position: absolute;
  top: 110px;
  right: 162px;
  z-index: 3
}

.image-wrapper .img-03 {
  height: 600px;
  position: absolute;
  top: 810px;
  left: 287px;
  z-index: 3
}

.product-wrapper {
  margin-top: 500px;
}

.product-img {
  background-image: url(/demo02/img/AdobeStock_406154036.jpg);
  background-size: cover;
  text-align: center;
  height: 600px;
}

.product-img h1 {
  font-size: 80px;
  color: #ffffff;
  font-family: "Georgia","Times New Roman";
  letter-spacing: 0.1em;
  padding-top: 255px;
}

.products {
  text-align: center;
}

.product {
  margin-top: 320px;
}

.product .text {
  display: inline-block;
  height: 800px;
  width: 600px;
  padding-top: 140px;
}

.product .text h2 {
  font-family: "Georgia","Times New Roman";
  font-weight: lighter;
  font-size: 40px;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.product .text .ja-name {
  font-size: 18px;
}

.product .text p {
  font-size: 24px;
  line-height: 48px;
  margin-top: 60px;
}

.product .text .btn {
  position: relative;
	overflow: hidden;
  text-decoration: none;
  display: inline-block;
  margin-top: 60px;
  padding: 20px 35px;
  border: solid 1px;
  text-align: center;
  outline: none;
  transition: ease .2s;  /*アニメーションの指定*/
}

.product .text .btn span {
  font-size: 20px;
  position: relative;
	z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
	color: #273C52;
}

.product .text .btn:hover span{
	color:#fff;
}

/*== 背景が流れる（左から右） */
.bgleft:before {
 	content: '';
    /*絶対配置で位置を指定*/
 	position: absolute;
 	top: 0;
 	left: 0;
 	z-index: 2;
    /*色や形状*/
 	background:#273C52;/*背景色*/
 	width: 100%;
	height: 100%;
    /*アニメーション*/
 	transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
 	transform: scale(0, 1);
	transform-origin: right top;
}

/*hoverした際の形状*/
.bgleft:hover:before{
	transform-origin:left top;
	transform:scale(1, 1);
}

.left .pc {
  display: inline-block;
  height: 800px;
}

.right .pc {
  display: inline-block;
  height: 800px;
}

.product .tb_smp {
  display: none;
}

.campaign-wrapper {
  background-image: url(/demo02/img/AdobeStock_391926575.jpeg);
  margin-top: 400px;
  background-size: cover;
  height: 1100px;
  text-align: center;
}

.campaign-title h1 {
  font-family: 'Damion', cursive;
  font-size: 108px;
  padding-top: 115px;
}

.campaign-title h2 {
  font-family: "Georgia","Times New Roman";
  font-size: 80px;
  letter-spacing: 0.1em;
}

.campaign-date {
  font-family: "Gill Sans","Arial",monospace;
  font-weight: normal;
  font-size: 44px;
  letter-spacing: 0.1em;
  margin-top: 70px;
  margin-bottom: 80px;
}

.campaign-wrapper p {
  font-size: 24px;
  line-height: 48px;
}

.campaign-howto {
  margin: 80px auto;
  width: 800px;
  text-align: left;
}

.campaign-howto p {
  display: inline-block;
}

.campaign-howto .step {
  margin-right: 35px;
  font-weight: 600;
}

.campaign-wrapper .btn {
  position: relative;
	overflow: hidden;
  text-decoration: none;
  display: inline-block;
  border: solid 1px;
  padding: 32px 275px;
  width: 800px;
  text-align: center;
  outline: none;
  transition: ease .2s;  /*アニメーションの指定*/
}

.campaign-wrapper .btn span {
  position: relative;
	z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
	color: #273C52;
  font-size: 20px;
}

.campaign-wrapper .btn:hover span{
	color: #fff;
}

footer {
  width: 100%;
  height: 810px;
  background-color: #D3C1BA;
  text-align: center;
}

footer .btn {
  position: relative;
	overflow: hidden;
  text-decoration: none;
  display: inline-block;
  border: solid 1px;
  padding: 32px 284px;
  margin-top: 250px;
  width: 800px;
  text-align: center;
  outline: none;
  transition: ease .2s;  /*アニメーションの指定*/
}

footer .btn span {
  position: relative;
	z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
	color: #273C52;
  font-size: 20px;
}

footer .btn:hover span{
	color: #D3C1BA;
}

.sns {
  margin-top: 200px;
  width: 100%;
  height: 50px;
  text-align: center;
  float: left;
  font-size: 50px;
}

.tw {
  margin-right: 95px;
}

.fb {
  margin-right: 95px;
}

.insta {
  margin-right: 95px;
}

.copyright {
  width: 100%;
  text-align: center;
  float: left;
  font-size: 14px;
  margin-top: 120px;
}

@media screen and (max-width:1440px) {

.logo-mark {
  position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
  top:40px;
  left: 60px;
  height: 55px;
  margin: 0;
}

.openbtn {
  display: block;
}
/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
  /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
  position:fixed;
  z-index: -1;
  opacity: 0;/*はじめは透過0*/
    /*ナビの位置と形状*/
  top: 0;
  left: 0;
  width:100%;
    height: 100vh;/*ナビの高さ*/
  background:#D3C1BA;
    /*動き*/
  transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive{
  opacity: 1;
  z-index:999;
}

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

/*ナビゲーション*/

#g-nav ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

#g-nav.panelactive ul {
    display: block;
}

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

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

.header-menu li {
  display: block;
  letter-spacing: 0.05em;
  margin-top: 50px;
}

#g-nav li a{
  color: #273C52;
  text-decoration: none;
  font-size: 36px;
  font-family: "Georgia","Times New Roman";
  padding-bottom: 50px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.header-menu li a::after {
  content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 40%;
    left: 10%;
    /*線の形状*/
    width: 80%;
    height: 1px;
    background:#273C52;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: left top;/*左上基点*/
}



/*========= ボタンのためのCSS ===============*/
.openbtn{
  position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
  top:40px;
  right: 40px;
  cursor: pointer;
    width: 60px;
    height: 55px;
}

/*×に変化*/
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 9px;
    height: 2px;
    background-color: #273C52;
    width: 70%;
  }

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

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

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

.openbtn.active span:nth-of-type(1) {
    top: 10px;
    left: 4px;
    transform: translateY(16px) rotate(-45deg);
    width: 90%;
}

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

.openbtn.active span:nth-of-type(3){
    top: 44px;
    left: 4px;
    transform: translateY(-16px) rotate(45deg);
    width: 90%;
}

.top-wrapper {
  height: 926px;
}

.concept-wrapper {
  margin-top: 100px;
}

.concept-wrapper .text {
  width: 100%;
  height: 500px;
  margin: 0 auto;
  padding-top: 50px;
  display: block;
}

.concept-wrapper .text h2 {
  font-family: "Georgia","Times New Roman";
  font-weight: lighter;
  font-size: 32px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.concept-wrapper .text p {
  font-size: 20px;
  line-height: 48px;
  margin-top: 40px;
}

.concept-wrapper .concept-img {
  display: block;
  margin: 0 auto;
  height: 571px;
}

.image-wrapper {
  margin-top: 300px;
  position: relative;
}

.image-wrapper .container {
  position: relative;
}

.image-wrapper .background {
  height: 1200px;
  position: absolute;
  top: 400;
  left: 0;
  z-index: 1;
}

.image-wrapper .img-01 {
  height: 502px;
  position: absolute;
  top: -120px;
  left: 40px;
  z-index: 3
}

.image-wrapper .img-02 {
  height: 400px;
  position: absolute;
  top: 500px;
  right: 20px;
  z-index: 3
}

.image-wrapper .img-03 {
  height: 375px;
  position: absolute;
  top: 1050px;
  left: 0;
  z-index: 3
}

.product-wrapper {
  margin-top: 400px;
}

.product-img {
  height: 600px;
}

.product {
  margin-top: 120px;
}

.product .text {
  display: block;
  margin: 0 auto;
  width: 480px;
  padding-top: 80px;
}

.product .text h2 {
  font-size: 40px;
  margin-bottom: 15px;
}

.product .text .ja-name {
  font-size: 18px;
}

.product .text p {
  margin-top: 60px;
}

.product .text .btn {
  padding: 20px 100px;
  margin-top: 80px;
}

.product .pc {
  display: none;
}

.product .tb_smp {
  display: block;
  margin: 0 auto;
  height: 570px;
}

.campaign-wrapper {
  margin-top: 200px;
  height: 1300px;
}

.campaign-date {
  width: 600px;
  margin: 60px auto;
}

.campaign-howto {
  text-align: center;
  width: 100%;
}

.campaign-howto p {
  display: block;
  margin: 0 auto;
}


.campaign-wrapper .btn {
  padding: 28px 82px;
  width: 420px;
}

footer {
  height: 400px;
}

footer .btn {
  width: 420px;
  padding: 28px 91px;
  margin-top: 90px;
}

.sns {
  margin-top: 60px;
  font-size: 35px;
}

.tw {
  margin-right: 48px;
}

.fb {
  margin-right: 48px;
}

.insta {
  margin-right: 48px;
}

.copyright {
  margin-top: 60px;
}

}



/*ふわっと表示*/
.fadeUpTrigger{
opacity: 0;
}

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration:2s;
    animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes fadeUpAnime{
from {
    opacity: 0;
    transform: translateY(100px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
