@charset "utf-8";

/* CSS Document */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/*----------------
 common
-------------------- */
html {
  font-size: 62.5%;
  /* 16px x 0.625 = 10px(=1rem) */
}

body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
  font-family: 'Noto Sans JP', '游ゴシック Medium', '游ゴシック体', 'Yu Gothic Medium', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.5px;
  font-size: 1.2rem;
  /* 16px */
  font-weight: 300;
  line-height: 1.5;
  text-align: justify;
  text-justify: inter-ideograph;
  -webkit-text-size-adjust: 100%;
}

@media only screen and (min-width: 481px) {
  body {
    font-size: 1.4rem;
  }
}

/*-----link----------*/
a {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #333;
  text-decoration: none;
}

a:hover {
  opacity: 0.6;
}

.linkbox {
  position: relative;
}

.linkbox a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  max-width: 250px;
  margin: 0 auto;
}

.linkbox a:hover {
  opacity: 0.4;
  background-color: #fff;
}

/*-----list ---------*/
ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

/*-----images----------*/
img {
  width: 100%;
  -webkit-backface-visibility: hidden;
  vertical-align: bottom;
}

/*-----box layout----------*/
.container {
  width: 92%;
  margin: 0 auto;
}

@media only screen and (min-width: 481px) {
  .container {
    max-width: 1060px;
    width: 92%;
  }
}


/*----responsive---------*/
.pc {
  display: none !important;
}

.sp {
  display: block !important;
}

@media only screen and (min-width: 769px) {
  .pc {
    display: block !important;
  }

  .sp {
    display: none !important;
  }
}

/*----------------
 opning
-------------------- */
.start {
	background: #FFF;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 9000;
}
.start .opening {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: none;
	z-index: 9999;
  width: 80%;
  text-align: center;
}

.start .opening h1 {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size:1.4rem;
}

.start .opening p {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.2rem;
  margin-top: 25px;
  transition:;
}

.start .opening .logo {
  width: 70px;
  margin: 30px auto 0;
}

.typ {
  opacity: 0;
  }
.typ span {
  opacity: 0;
  }

  @media only screen and (min-width: 481px) {
.start .opening h1 {
  font-size:2.0rem;
}

.start .opening p {
  font-size: 1.6rem;
  margin-top: 35px;
}

.start .opening .logo {
  width: 120px;
  margin: 40px auto 0;
}

  }

/*-------------------------
 header
--------------------------- */
header {
  width: 100%;
  height: 100vh; 
  height: calc(var(--vh, 1vh) * 100);
  margin: 0 auto;
  position: relative;
  z-index: 100;
}

.heroimage {
  background-origin: border-box;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  background-image:url(../images/heroimage_sp.jpg);
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.title__midashi {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  margin-top: -15px;
}

.titleLogo__yajirushi {
  position: absolute;
  bottom: 8%;
  right: 0;
  left: 0;
}


@media only screen and (min-width: 768px) {
  .heroimage {
    height:100%;
    background-image:url(../images/heroimage_pc.jpg);
  }

  .title__midashi {
    font-size: 2.4rem;
    margin-top: -70px;
  }

  .titleLogo__yajirushi {
    bottom: 12%;
  }
  
  
}

/*-----------------------------
group
 -----------------------------*/
 #groupWrap .img_box a {
  height: auto;
  /* height: 100%; */
  display: block;
  transition-duration: 0.3s;
  position: relative;
}

#groupWrap .img_box a .brand {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-animation: flickerAnimation 7s infinite;
  -moz-animation: flickerAnimation 7s infinite;
  -o-animation: flickerAnimation 7s infinite;
  animation: flickerAnimation 7s infinite;
}


#groupWrap .img_box a .brand p {
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  text-align: center;
  border-bottom: solid 1px #fff;
}

@keyframes flickerAnimation {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-o-keyframes flickerAnimation {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-moz-keyframes flickerAnimation {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes flickerAnimation {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

#groupWrap .img_box:nth-of-type(3n-1) .brand {
  animation-delay: 5s;
  opacity: 0.0;
}

#groupWrap .img_box:nth-of-type(3n) .brand {
  animation-delay: 10s;
  opacity: 0.0;
}


.group01_01 {
  width: calc(630 / 750 *100%);
  margin: 30px auto 0;
}

.group01_02 {
  display: flex;
  justify-content: space-between;
  margin-top:30px;
}

.group01_02 .left{
  width: calc(380 / 750 *100%);
}

.group01_02 .right{
  width: calc(320 / 750 *100%);
  margin-top: 90px;
}

.group02 {
  width: calc(504 / 750 *100%);
  margin: 30px auto 0;
}

.group03 {
  display: flex;
  flex-direction: column;
  margin-top:30px;
}

.group03 .left{
  width: calc(380 / 750 *100%);
  z-index: 10;
}

.group03 .right{
  width: calc(480 / 750 *100%);
  margin: -130px 0 0 auto;
}

.group04 {
  display: flex;
  flex-direction: column;
  margin:30px auto 0 0;
  width: calc(690 / 750 *100%);
}

.group04 .left{
  width: calc(410 / 750 *100%);
}

.group04 .right{
  width: calc(410 / 750 *100%);
  margin: -40px 0 0 auto;
  z-index: 10;
}

.group05_01 {
  width: calc(500 / 750 *100%);
  margin: 30px auto 0;
}

.group05_02 {
  display: flex;
  justify-content: space-between;
  margin-top:30px;
}

.group05_02 .left{
  width: calc(320 / 750 *100%);
}

.group05_02 .right{
  width: calc(380 / 750 *100%);
  margin-top: 125px;
}

.group06_01 {
  width: calc(630 / 750 *100%);
  margin: 30px auto 0;
}

@media only screen and (min-width: 481px) {
  #groupWrap {
    max-width: 940px;
    margin: 0 auto;
    width: 92%;
  }

  #groupWrap .img_box a .brand p {
    font-size: 1.8rem;
  }
  

  .group01 {
    width: calc(540 / 940 *100%);
    margin: 45px auto;
    float: left;
  }
  
  .group01_01 {
    width: calc(454 / 540 *100%);
    margin: 0 auto;
  }

  .group01_02 {
    margin-top:45px;
  }



  .group02 {
    float: right;
    width: calc(365 / 940 *100%);
    margin: 150px auto 0;
  }

  .group01_02 .right{
    margin-top: 120px;
  }
  

  .group03 {
    width: calc(540 / 940 *100%);
    margin: 0 auto;
    clear: both;
  }

  .group04 {
    display: flex;
    flex-direction: column;
    margin:-30px 0 0 auto;
    width: calc(535 / 940 *100%);
  }
  
  .group04 .left{
    width: calc(295 / 535 *100%);
    margin: 0 0 0 auto;
  }
  
  .group04 .right{
    width: calc(275 / 535 *100%);
    margin: -40px auto 0 0;
    z-index: 10;
  }
  
  .group05 {
    margin: 45px auto 0;
    display: block;
    overflow: hidden;
  }

.group05_01 {
  width: calc(366 / 940 *100%);
  margin: 0 auto;
  float: left;
}

.group05_02 {
  display: flex;
  justify-content: space-between;
  margin-top:60px;
  width: calc(540 / 940 *100%);
  float: right;

}

.group05_02 .left{
  width: calc(320 / 750 *100%);
}

.group05_02 .right{
  width: calc(380 / 750 *100%);
  margin-top: 125px;
}

  .group06_01 {
    width: calc(455 / 940 *100%);
    margin:45px 0 auto 110px;
  }
  

}


/*----------------
buttun
-------------------*/
.button {
  font-family: 'Noto Serif JP', serif;
  display: block;
  width: 100%;
  height: 46px;
  text-align: center;
  text-decoration: none;
  line-height: 46px;
  outline: none;
  border: solid 1px #333;
  font-size: 1.3rem;
  background-color: #fff;
  font-weight: 400;
}

.button a {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.button::before,
.button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

.button,
.button::before,
.button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.button:hover {
  background-color: #fff;
  border-color: #1b1c20;
  color: #1b1c20;
  opacity: 0.6;
}

.allitem.detail .button {
  height: 36px;
  line-height: 36px;
  border: solid 1px #333;
}


@media only screen and (min-width: 481px) {
  .button {
    height: 54px;
    line-height: 54px;
    font-size: 1.4rem;
  }
  .allitem.detail .button {
    height: 40px;
    line-height: 40px;
  }
  }



/*-------------------
 thme info footer
------------------------- */
.themeinfo {
  margin: 100px auto 0;
}

.themeinfo__notice {
  font-family: 'Roboto', sans-serif;
  text-align: center;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.themeinfo img {
  display: block;
  max-width: 300px;
  width: calc(480 / 750 *100%);
  margin: 10px auto 0;
}

@media (min-width:481px) {
  .themeinfo {
    margin: 140px auto 0;
  }

.themeinfo img {
  max-width: 350px;
  margin:15px auto 0;
}

.themeinfo p{
  font-size: 1.4rem;
}

}

/*-------------------
 footer
------------------------- */
footer {
  width: 100%;
  margin: 0;
  text-align: center;
  padding-bottom: 10px;
  background-color: #fff;
}

footer p {
  font-size: 1.1rem;
}

.footer__brandlogo {
  width: 130px;
  margin: 100px auto 10px;
}

small {
  display: block;
  margin: 60px auto 15px;
  color: #aaaaaa;
  font-size: 1.0rem;
}

@media only screen and (min-width: 481px) {
  .footer__brandlogo {
    margin: 125px auto 10px;
  }

  footer p {
    font-size: 1.2rem;
  }

  small {
    margin: 120px auto 15px;
  }
  

}

/*-------------------
 footer info
------------------------- */

.footer__archive {
  margin-top: 65px;
}

.footer__archive p {
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.7;
  background-color: #fff;
  margin-bottom: 10px;
}

.footer__archive p span {
  display: block;
  font-weight: bold;

}

.footer__slider {
  /* width: 330px; */
  width: 350px;
  margin:10px auto 0;
}


@media (min-width:481px) {
  .footer__slider {
    width: 560px;
  }

  .footer__slider.nav {
    margin:80px auto 0;
  }

  .footer__archive {
    margin-top: 110px;
  }

}

/*--------------------
 animation
 ---------------------*/
.invisible {
  transition: opacity 0.5s ease;
  opacity: 0.0;
}

.visible {
  transition: opacity 0.5s ease;
  opacity: 1.0;
}

.inviewfadeIn {
  opacity: 0;
  transition: .6s;
}

/* fadein */
.fadein {
  opacity: 0;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}

.fadein.scrollin {
  opacity: 1;
}

/* .fadeInUp {
  opacity : 0;
  transform: translateY(30px);
  transition: 1s;
} */



/*-------------------
fixed slide in
-------------------*/
/* fixed slide common */
.img-wrap {
  overflow: hidden;
  position: relative;
}

.img-wrap img {
  display: block;
  height: auto;
  width: 100%;
}

/* Right */
.slideRight.img-animation {
  animation: slideRight-img 1s cubic-bezier(.4, 0, .2, 1);
}

.slideRight.img-animation:before {
  animation: slideRight-before 1s cubic-bezier(.4, 0, .2, 1) forwards;
  background: #fff;
  bottom: 0;
  content: '';
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

@keyframes slideRight-img {
  0% {
    opacity: 0;
  }
}

@keyframes slideRight-before {
  100% {
    transform: translateX(100%);
  }
}

/* Right - w mask */
.slideRight--mask.img-animation {
  animation: slideRight-img 1.5s cubic-bezier(.4, 0, .2, 1);
}

.slideRight--mask.img-animation:before {
  animation: slideRight-before 1.5s  700ms cubic-bezier(.4, 0, .2, 1) forwards;
  background: #fff;
  opacity: .4;
  bottom: 0;
  content: '';
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

@keyframes slideRight-img {
  0% {
    opacity: 0;
  }
}

@keyframes slideRight-before {
  100% {
    transform: translateX(100%);
  }
}

/* Left */
.slideLeft.img-animation {
  animation: slideLeft-img 1s cubic-bezier(.4, 0, .2, 1);
}

.slideLeft.img-animation:before {
  animation: slideLeft-before 1s cubic-bezier(.4, 0, .2, 1) forwards;
  background: #fff;
  bottom: 0;
  content: '';
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

@keyframes slideLeft-img {
  0% {
    opacity: 0;
  }
}

@keyframes slideLeft-before {
  100% {
    transform: translateX(-100%);
  }
}

/* Left -- w mask */
.slideLeft--mask.img-animation {
  animation: slideLeft-img 1.5s cubic-bezier(.4, 0, .2, 1);
}

.slideLeft--mask.img-animation:before {
  animation: slideLeft-before 1.5s  700ms cubic-bezier(.4, 0, .2, 1) forwards;
  background: #fff;
  opacity: .4;
  bottom: 0;
  content: '';
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

@keyframes slideLeft-img {
  0% {
    opacity: 0;
  }
}

@keyframes slideLeft-before {
  100% {
    transform: translateX(-100%);
  }
}



/*--------------------
  page top icon
---------------------*/
#page-top {
  position: fixed;
  bottom: 40px;
  right: 20px;
  z-index: 100;
}

#page-top a {
  width: 18px;
  padding: 0;
  display: block;
}

#page-top a:hover {
  text-decoration: none;
}

 /*-----------yajirushi---------*/
 .cp_arrows *, .cp_arrows *:before, .cp_arrows *:after {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_arrows {
  position: relative;
  display: flex;
  height: 50px;
  margin: 25px auto 0;
  justify-content: center;
  align-items: center;
}

.cp_arrows .cp_arrow {
	position: absolute;
	top: 50%;/*着地点（サンプルは[class:cp_arrows]height300pxの50%）*/
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	-webkit-transform-origin: 50% 50%;
	        transform-origin: 50% 50%;
	opacity: 0;
}
.cp_arrows .cp_arrowfirst {
	-webkit-animation: arrow-move08 2s ease-in-out infinite;
	        animation: arrow-move08 2s ease-in-out infinite;
}
.cp_arrows .cp_arrowsecond {
	-webkit-animation: arrow-move08 2s 1s ease-in-out infinite;
	        animation: arrow-move08 2s 1s ease-in-out infinite;
}
.cp_arrows .cp_arrow:before, .cp_arrows .cp_arrow:after {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 22px;
	height: 1px;
	content: '';
	background: #fff;
}
.cp_arrows .cp_arrow:before {
	-webkit-transform: rotate(50deg) translateX(-59%);
	        transform: rotate(50deg) translateX(-59%);
	-webkit-transform-origin: center 2px;
	        transform-origin: center 2px;
}
.cp_arrows .cp_arrow:after {
	-webkit-transform: rotate(-50deg) translateX(59%);
	        transform: rotate(-50deg) translateX(59%);
	-webkit-transform-origin: center 2px;
	        transform-origin: center 2px;
}
@-webkit-keyframes arrow-move08 {
	0% {
		top: 0;/*スタート地点（サンプルは[class:cp_arrows]height300pxの35%）*/
		opacity: 0;
	}
	70% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
@keyframes arrow-move08 {
	0% {
		top: 0;/*スタート地点（サンプルは[class:cp_arrows]height300pxの35%）*/
		opacity: 0;
	}
	70% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
