@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: 2px;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 2;
  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: 100%;
  margin: 70px auto 0;
}

@media only screen and (min-width: 481px) {
  .container {
    max-width: 940px;
    width: 92%;
    margin: 120px auto 0;
  }
}


/*----responsive---------*/
.pc {
  display: none !important;
}

.sp {
  display: block !important;
}

@media only screen and (min-width: 769px) {
  .pc {
    display: block !important;
  }

  .sp {
    display: none !important;
  }
}


/*-------------------------
 header
--------------------------- */
header {
  display: inline-block;
  width: 100%;
  height: 100vh; 
  height: calc(var(--vh, 1vh) * 100);
  margin: 0 auto;
  position: relative;
  z-index: 100;
}

.heroimageSlider .img01,
.heroimageSlider .img02 {
  background-origin: border-box;
  background-size: cover; 
  background-position: center center; 
  background-repeat: no-repeat;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
}

.heroimageSlider .img01 {
  background-image: url(../images/heroimage_01_sp.jpg); 
}

.heroimageSlider .img02 {
  background-image: url(../images/heroimage_02_sp.jpg); 
}

.titleLogo {
  display: flex;
  flex-direction: column;
  align-items: start;
  position: absolute;
  bottom: 8%;
  left: 20px;
}

.title__midashi {
  max-width: 400px;
  width: calc(400 / 750 *100%);
}

.title__brandLogo {
  width: calc(200 / 750 *100%);
  margin-top: 25px;
}

.titleLogo__yajirushi {
  margin-top: 50px;
  display: block;
  width: 35px;
}


@media only screen and (min-width: 768px) {
  .heroimageSlider .img01 {
    background-image: url(../images/heroimage_01_pc.jpg); 
  }
  
  .heroimageSlider .img02 {
    background-image: url(../images/heroimage_02_pc.jpg); 
  }

  .titleLogo {
    left: 20%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  
  .title__midashi {
    max-width: 325px;
    width: 325px;
  }

  .title__brandLogo {
    width: 180px;
    margin-top: 55px;
  }

  .titleLogo__yajirushi {
    margin-top: 70px;
  }
}

/*-----------------------------
image hover
 -----------------------------*/
 .zoom {
  max-width: 670px; /* 幅を指定 */
}

.zoom__link {
  display: block;
  overflow: hidden;
  padding-top:150%; /* 縦横比を指定 */
  position: relative;
}

.zoom__img {
  left: 0;
  top: 0;
  display: block;
  height: auto;
  left: 0;
  position: absolute;
  top: 0;
  transition: all .5s ease-in-out;
  width: 100%;
  z-index: 1;
}

.zoom__link:hover .zoom__img {
  transform: scale3d(1.1,1.1,1); /* hover時の倍率を指定 */
}
/*-----------------------------
box
 -----------------------------*/
.box01 {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.box01__left {
  width: calc(630 / 750 *100%);
  overflow: hidden;
  margin: 0 auto;
}

.box01__right {
  display: flex;
  margin-top: 25px;
}

.box01__right .imgWrap {
  width: calc(420 / 750 *100%);
  overflow: hidden;
  margin-right: 12px;
}

.box01__right .img {
  width: 100%;
}

.box01__right .credit {
  align-self: flex-end;
}


.box02 {
  display: flex;
  flex-direction: column;
}

.box02__left , .box02__right {
  width: calc(630 / 750 *100%);
  margin: 0 auto;
  overflow: hidden;
}

.box02__right {
  margin-top: 70px;
}


.box03 {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.box03__left {
  width: calc(630 / 750 *100%);
  overflow: hidden;
  margin: 0 auto;
}

.box03__right {
  display: flex;
  margin-top: 25px;
  flex-direction: row-reverse;
}

.box03__right .imgWrap {
  width: calc(420 / 750 *100%);
  overflow: hidden;
  margin-left: 12px;
}

.box03__right .img {
  width: 100%;
}

.box03__right .credit {
  align-self: flex-end;
  text-align: right;

}

.box04 {
  width: calc(630 /750 *100%);
  margin: 0 auto;
  overflow: hidden;
}

.box04 .img {
  width: 100%;
}

.box05 {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.box05 .img {
  width: 100%;
}

.box06 {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.box06__left {
  width: calc(420 / 750 *100%);
  overflow: hidden;
  margin: 0 auto;
}

.box06__left .img {
  width: 100%;
}

.box06__right {
  width: calc(630 / 750 *100%);
  margin: 70px auto 0;
  overflow: hidden;
}


.box07 {
  display: flex;
  flex-direction: column;
}

.box07__left,.box07__right {
  display: flex;
  flex-direction: row-reverse;
}

.box07__right { 
  margin-top: 25px;
}


.box07__left .imgWrap,
.box07__right .imgWrap{
  width: calc(420 / 750 *100%);
  overflow: hidden;
  margin-left: 12px;
}

.box07__left .img ,
.box07__right .img{
  width: 100%;
}

.box07__left .credit,
.box07__right .credit {
  align-self: flex-end;
  text-align: right;
}

.box07__center {
  display: flex;
  flex-direction: row;
  margin-top: 25px;
}

.box07__center .imgWrap {
  width: calc(420 / 750 *100%);
  overflow: hidden;
  margin-right: 12px;
}

.box07__center .img {
  width: 100%;
}

.box07__center .credit {
  align-self: flex-end;
  text-align: left;
}


.box08 {
  width: calc(420 /750 *100%);
  margin: 0 auto;
  overflow: hidden;
}

.box08 .img {
  width: 100%;
}

@media only screen and (min-width: 481px) {
  .box01 {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .box01__left {
    width: calc(440 / 940 *100%);
    margin:0;
  }
  
  .box01__right {
    display: block;
    margin: 0 auto;
    width: calc(300 / 940 *100%);
  }
  
  .box01__right .imgWrap {
    width: 100%;
    overflow: hidden;
    margin-right: 0;
  }
  
  .box01__right .img {
    width: 100%;
  }
  
  
  .box02 {
    flex-direction: row;
    justify-content: space-between;
  }

  .box02.adjustment01 {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  
  .box02__left , .box02__right {
    width: calc(440 / 940 *100%);
    margin: 0;
    overflow: hidden;
  }
  
  .box02__right {
    margin-top: 0;
  }
  
  
  .box03 {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }
  
  .box03__left {
    width: calc(440 / 940 *100%);
    overflow: hidden;
    margin: 0;
  }
  
  .box03__right {
    margin-top: 0;
    flex-direction: column;
  }
  
  .box03__right .imgWrap {
    margin: 0 auto;
  }
  
  .box03__right .img {
    width: 100%;
  }
  
  .box03__right .credit {
    align-self: start;
  }
  
  .box04 {
    width: calc(400 /940 *100%);
  }
  
  .box05 {
    width: calc(665 / 940 *100%);
  }
  
  .box05 .img {
    width: 100%;
  }
  
  .box06 {
    flex-direction: row;
    align-items: center;
  }
  
  .box06__left {
    width: calc(290 / 940 *100%);
    overflow: hidden;
    margin: 0 auto;
  }
  
  .box06__left .img {
    width: 100%;
  }
  
  .box06__right {
    width: calc(440 / 940 *100%);
    margin: 0;
  }
  
  
  .box07 {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .box07__left,.box07__right {
    display: flex;
    flex-direction: column;
    width: calc(280 / 940 *100%);
  }
  
  .box07__right { 
    margin-top: 0;
  }
  
  
  .box07__left .imgWrap,
  .box07__right .imgWrap{
    margin-left:0;
    width: 100%;
  }
  
  .box07__left .img ,
  .box07__right .img{
    width: 100%;
  }
  
  .box07__left .credit,
  .box07__right .credit {
    align-self: start;
    text-align: right;
  }
  
  .box07__center {
    flex-direction: column;
    margin-top: 0;
    width: calc(280 / 940 *100%);

  }
  
  .box07__center .imgWrap {
    width: calc(280 / 940 *100%);
    margin-right: 0;
    width: 100%;
  }
  
  .box07__center .img {
    width: 100%;
  }
  
  .box07__center .credit {
    align-self: start;
    text-align: left;
  }
  
  
  .box08 {
    width: calc(290 /940 *100%);
  }
  
  .box08 .img {
    width: 100%;
  }
  
}

/*------------------------
 credit
--------------------------- */
.credit {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: 1px;
  margin-top: 10px;
  color: #999999;
}


.credit a {
  color: #333;
  text-decoration: none;
}


.box05 .credit {
  margin-left:20px;
}

@media only screen and (min-width: 481px) {
  .box05 .credit {
    margin-left:0;
  }
}


/*-------------------
 allitem
-------------------- */
.allitem__wrap {
  margin: 100px auto 0;
}
.allitem {
  max-width: 180px;
}

.allitem.footer {
  max-width: 315px;
  margin: 0 auto;
  width: calc(630 / 750 *100%);
}

.allitem.detail {
  max-width: 200px;
  margin: 30px auto 0;
}

.allitem__navi {
  max-width: 340px;
  width: calc(680 / 750 *100%);
  margin: 25px auto 60px;
}

@media only screen and (min-width: 481px) {
  .allitem__wrap {
    margin: 160px auto 0;
  }
  
  .allitem {
    max-width: 400px;
  }

  .allitem.footer {
    max-width: 940px;
    margin: 0 auto;
  }

  .allitem.detail {
    max-width: 440px;
    margin: 35px auto 0;
  }

  .allitem__navi {
    max-width: 850px;
    margin: 55px auto 0;
  }
}

/*----------------
buttun
-------------------*/
.button {
  font-family: 'Bodoni Moda', 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;
  }
  

}


/*-------------------
 taff credit
------------------------- */
.staff {
  font-family: 'Bodoni Moda', serif;
  text-align: center;
  font-size: 1.0rem;
  margin-top: 100px;
}

.staff li {
  letter-spacing: 1px;
  margin-bottom: 3px;
}

@media (min-width:481px) {
  .staff {
    font-size: 1.2rem;
    margin-top: 160px;
  }
}

/*-------------------
 thme info footer
------------------------- */
.themeinfo {
  margin: 45px auto 0;
}

.themeinfo__title {
  width: 230px;
  margin: 0 auto;
}

.themeinfo__notice {
  font-family: 'Roboto', sans-serif;
  text-align: center;
  font-weight: 500;
}

.themeinfo__notice--gray {
  color: #aaaaaa;
  font-size: 1.2rem;
  font-weight: normal;
  display: block;
}

.themeinfo h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.4rem;
  text-align: center;
  letter-spacing: 2px;
}

.themeinfo img {
  display: block;
  max-width: 275px;
  width: calc(550 / 750 *100%);
  margin:10px auto 0;
}

.themeinfo p{
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-size: 1.4rem;
  margin-top: 15px;
  letter-spacing: 1px;
  font-weight: 500;
  line-height: 1.7;
}

.themeinfo .view {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  margin-top: 10px;
  font-weight: normal;
  letter-spacing: 2px;
}

@media (min-width:481px) {
  .themeinfo {
    margin: 80px auto 0;
  }

  .themeinfo__title {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
  }

  .themeinfo__notice {
    font-size: 1.6rem;
  }

  .themeinfo__notice--gray {
    font-size: 1.4rem;
  }

  .themeinfo h3 {
    font-size: 1.4rem;
    line-height: 1.8;
}

.themeinfo img {
  max-width: 320px;
  margin:15px auto 0;
}

.themeinfo p{
  font-size: 1.6rem;
}

}


/*-------------------
 profile area
------------------------- */
.profile {
  width: 100%;
  margin: 60px auto 50px;
  font-size: 1.2rem;
  border-top: solid 1px #dddddd;
  border-bottom: solid 1px #dddddd;
  padding: 30px 0;;
}

.profile__img {
  width: 125px;
  display: block;
  margin: 0 auto 25px;
}


.profile__name {
  font-weight: bold;
  font-size: 1.6rem;
  display: block;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 1px;
  font-family: 'Roboto', sans-serif;
}

.profile__enName {
  display: block;
  text-align: center;
  margin-bottom: 10px;
}

.profile__insta {
  display: block;
}

.profile__insta a {
  text-decoration: underline;
}

@media (min-width:481px) {
  .profile {
    margin: 70px auto 80px;
    font-size: 1.6rem;
    padding: 40px 0;
  }

.profile .container {
  max-width: 800px;
}

.profile__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

  .profile__img {
    max-width: 145px;
    width: calc(145 / 800 *100%);
    margin: 0 30px 0 0;
  }

  .profile__text {
    max-width: 640px;
    width: calc(640 / 800 *100%);
    font-size: 1.4rem;
  }

  .profile__name {
    font-size: 1.6rem;
    text-align: left;
  }
  
  .profile__enName {
    font-size: 1.2rem;
    line-height: 1;
    text-align: left;
    margin-top: 10px;
  }
  
}



/*-------------------
 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: 70px auto 70px;
}

small {
  display: block;
  margin: 60px auto 15px;
  color: #aaaaaa;
  font-size: 1.0rem;
}

@media only screen and (min-width: 481px) {
  .footer__brandlogo {
    margin: 120px auto 120px;
  }

  footer p {
    font-size: 1.2rem;
  }

}

/*-------------------
 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.2s ease;
  opacity: 0.0;
}

.visible {
  transition: opacity 0.2s 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(100px);
  transition: 2s;
}

@media (min-width:481px) {
  .fadeInUp {
    transform: translateY(120px);
  }
}


/*--------------------
  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: 10%;
	-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: 17px;
	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;
	}
}

