@charset "UTF-8";

/* --------------------------------
 * base
 * -------------------------------- */
html {
  font-size: 62.5%;
}
body {
  background: #fff url('../images/back.svg') no-repeat fixed right top;
  background-size: cover;
  color: rgba(0,0,0,1);
  text-align: center;
  font-size: 1.5rem;
  font-family: 'Noto Serif JP', serif;
}
*, *::before, *::after {
  box-sizing: border-box;
}

.pc_only_inline	{display: inline;}	
.pc_only_inline-block {display: inline-block;}
.pc_only_block {display: block;}
.sp_only_inline	{display: none;}	
.sp_only_inline-block {display: none;}
.sp_only_block {display: none;}


/* --------------------------------
 * header
 * -------------------------------- */
header {
  padding: 4em 0 1.5em;
}
.site-title {
  margin-bottom: 0.5em;
}
.site-title img {
	width: 46%;
}
.site-description {
  margin-bottom: 0.5em;
  font-size: 1.6rem;
}


/* --------------------------------
 * group
 * -------------------------------- */
.group {
  width: 100%;
  margin: 1em auto 3em;
}
.group-flex {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 90%;
  margin: 0 auto;
  padding: 0;
}
.store {
  position: relative;
  z-index: 10;
  margin: 0 2em;
  padding: 0;
  flex-basis: 25%;
}
.store-button {
  display: block;
  width: 100%;
}
.store a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: -999px;
  z-index: 20;
  text-decoration: none;
}
.store:hover {
  cursor: pointer;
  opacity: 0.6;
}


@media (min-width: 1025px) {
  .pc_only_inline	{display: inline;}	
  .pc_only_inline-block {display: inline-block;}
  .pc_only_block {display: block;}
  .sp_only_inline	{display: none;}	
  .sp_only_inline-block {display: none;}
  .sp_only_block {display: none;}
}


/* --------------------------------
 * smart phone
 * -------------------------------- */
@media (max-width: 1024px) {
  body {
    background-image: url('../images/back.svg') no-repeat fixed right top;
    background-size: cover;
  }
  .pc_only_inline	{display: inline;}	
  .pc_only_inline-block {display: inline-block;}
  .pc_only_block {display: block;}
  .sp_only_inline	{display: none;}	
  .sp_only_inline-block {display: none;}
  .sp_only_block {display: none;}
}
@media (max-width: 768px) {
  body {
    font-size: 1.3rem;
    background-image: none;
  }
  body::before {
    content:"";
    display:block;
    position:fixed;
    top:0;
    left:0;
    z-index:-1;
    width:100%;
    height:100vh;
    background:url('../images/back.svg') center/cover no-repeat;
    -webkit-background-size:cover;
  }
  .pc_only_inline	{display: none;}	
  .pc_only_inline-block {display: none;}
  .pc_only_block {display: none;}
  .sp_only_inline	{display: inline;}	
  .sp_only_inline-block {display: inline-block;}
  .sp_only_block {display: block;}

  /* --- header --- */
  header {
    padding: 2.5em 0 1.5em;
  }
  .site-title {
    margin-bottom: 0.5em;
  }
  .site-title img {
	width: 86%;
  }
  .site-description {
    margin-bottom: 0.5em;
    font-size: 1.8rem;
    line-height: 1.8;
  }

  /* --- group --- */
  .group {
    margin: 1em 0 3em;
  }
  .group-flex {
    width: 90%;
  }
  .store {
    flex-basis: 86%;
    margin: 1em;
  }
  .store:hover {
    opacity: 1;
  }
}


/* --------------------------------
 * challenge
 *
 * 31行目からの.heading::before, .heading::afterの
 * スタイルをコメントアウトしてから適用してください。
 * -------------------------------- */
/*
.heading::before,
.heading::after {
  content: '';
  display: inline-block;
  width: 0.3em;
  height: 0.3em;
  margin: 0 0.5em;
  border: 1px solid;
  vertical-align: 0.2em;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.work-box {
  overflow: hidden;
}
.work-image {
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
}
.work-box:nth-child(odd) .work-image {
  -webkit-transform-origin: top center;
  transform-origin: top center;
}
.work-box:nth-child(even) .work-image {
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
}
.work-box:hover .work-image {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
*/
