@charset "UTF-8";
/*
Theme Name: iwabuchi-wp-theme
Description: ITSOLEXが株式会社イワブチ様向けに制作したWebサイトのテーマです。このテーマには「itsolex-wp-base」テーマが必要です。
Template: wp-base
Version: 1.0
Tested up to: 6.0.0
Requires at least: 6.0.0
Requires PHP: 5.2.4
Author: IT SOLEX
Author URI: https://it-solex.jp/
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

All files, unless otherwise stated,
are released under the GNU General Public License version 2.0 (http://www.gnu.org/licenses/gpl-2.0.html)

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Noto+Sans+JP:wght@100..900&display=swap"');
/* base
******************************/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Bebas Neue", "Noto Sans JP", "リュウミン R-KL", "Ryumin Bold KL", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 16px;
  font-optical-sizing: auto;
  font-style: normal;
}

/* common
******************************/
body {
  overflow-x: hidden;
  background-color: #1b1b1b;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-kerning: normal;
}

/* header
******************************/
.header {
  display: flex;
  width: 100%;
  height: 300px;
  position: absolute;
  z-index: 9;
}
.header .header-logo {
  background-color: #1b1b1b;
  position: absolute;
  top: -80px;
  left: -80px;
  display: flex;
  width: 300px;
  height: 300px;
  padding: 100px 60px 60px 100px;
  border-radius: 100%;
}
.header .header-navi {
  display: flex;
  position: fixed;
  top: 1rem;
  right: 1rem;
}
.header .header-navi .icon-list {
  display: none;
}
.header .header-navi .sp-navi {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
  width: 60px;
  height: 60px;
  padding: 1rem;
  background-color: white;
  cursor: pointer;
}
.header .header-navi .sp-navi .bar {
  display: flex;
  width: 100%;
  height: 4px;
  background-color: #1b1b1b;
}

/* home-sliders
******************************/
.home-sliders {
  background-color: greenyellow;
  display: block;
  position: absolute;
  width: 100%;
  height: 100vh;
}
.home-sliders::after {
  content: "SCROLL";
  display: flex;
  position: absolute;
  left: calc(50% - 1rem);
  bottom: 1rem;
  padding-right: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid white;
  transform: rotate(90deg);
  color: white;
}

/* post-list
******************************/
.post-list {
  display: grid;
  gap: 0rem;
  width: 100%;
  position: relative;
  padding: calc(100vh + 2rem) 1px 1rem 1px;
  grid-template-columns: repeat(6, 1fr);
}
.post-list .post-item {
  display: flex;
  overflow: hidden;
  position: relative;
  padding: 2px;
}
.post-list .post-item a {
  display: flex;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.post-list .post-item a img {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: grayscale(1);
  transform: scale(1.05);
  transition: all 300ms;
}
.post-list .post-item a:hover img {
  transform: scale(1);
  filter: grayscale(0);
}
.post-list .post-item:nth-child(1) {
  grid-column: 1/7;
  grid-row: 1/4;
  aspect-ratio: 6/3;
}
.post-list .post-item:nth-child(2) {
  grid-column: 1/5;
  grid-row: 4/10;
  aspect-ratio: 4/6;
}
.post-list .post-item:nth-child(3) {
  grid-column: 5/7;
  grid-row: 4/6;
  aspect-ratio: 2/2;
}
.post-list .post-item:nth-child(4) {
  grid-column: 5/7;
  grid-row: 6/8;
  aspect-ratio: 2/2;
}
.post-list .post-item:nth-child(5) {
  grid-column: 5/7;
  grid-row: 8/10;
  aspect-ratio: 2/2;
}
.post-list .post-item:nth-child(6) {
  grid-column: 1/3;
  grid-row: 10/12;
  aspect-ratio: 2/2;
}
.post-list .post-item:nth-child(7) {
  grid-column: 3/5;
  grid-row: 10/12;
  aspect-ratio: 2/2;
}
.post-list .post-item:nth-child(8) {
  grid-column: 5/7;
  grid-row: 10/12;
  aspect-ratio: 2/2;
}
.post-list .post-item:nth-child(9) {
  grid-column: 1/7;
  grid-row: 12/16;
  aspect-ratio: 6/4;
}
.post-list .post-item:nth-child(10) {
  grid-column: 1/5;
  grid-row: 16/18;
  aspect-ratio: 4/2;
}
.post-list .post-item:nth-child(11) {
  grid-column: 5/7;
  grid-row: 16/18;
  aspect-ratio: 2/2;
}
.post-list .post-item:nth-child(12) {
  grid-column: 1/3;
  grid-row: 18/20;
  aspect-ratio: 2/2;
}
.post-list .post-item:nth-child(13) {
  grid-column: 3/5;
  grid-row: 18/20;
  aspect-ratio: 2/2;
}
.post-list .post-item:nth-child(14) {
  grid-column: 5/7;
  grid-row: 18/20;
  aspect-ratio: 2/2;
}
@media screen and (min-width: 1280px) {
  .post-list {
    padding: calc(100vh + 3rem) 0.5rem 1rem 0.5rem;
  }
  .post-list .post-item {
    padding: 0.5rem;
  }
  .post-list .post-item:nth-child(1) {
    grid-column: 1/7;
    grid-row: 1/4;
    aspect-ratio: 6/3;
  }
  .post-list .post-item:nth-child(2) {
    grid-column: 1/3;
    grid-row: 4/7;
    aspect-ratio: 2/3;
  }
  .post-list .post-item:nth-child(3) {
    grid-column: 3/4;
    grid-row: 4/5;
    aspect-ratio: 1/1;
  }
  .post-list .post-item:nth-child(4) {
    grid-column: 4/5;
    grid-row: 4/5;
    aspect-ratio: 1/1;
  }
  .post-list .post-item:nth-child(5) {
    grid-column: 5/6;
    grid-row: 4/5;
    aspect-ratio: 1/1;
  }
  .post-list .post-item:nth-child(6) {
    grid-column: 6/7;
    grid-row: 4/5;
    aspect-ratio: 1/1;
  }
  .post-list .post-item:nth-child(7) {
    grid-column: 3/4;
    grid-row: 5/6;
    aspect-ratio: 1/1;
  }
  .post-list .post-item:nth-child(8) {
    grid-column: 3/4;
    grid-row: 6/7;
    aspect-ratio: 1/1;
  }
  .post-list .post-item:nth-child(9) {
    grid-column: 4/7;
    grid-row: 5/7;
    aspect-ratio: 3/2;
  }
  .post-list .post-item:nth-child(10) {
    grid-column: 1/5;
    grid-row: 7/9;
    aspect-ratio: 4/2;
  }
  .post-list .post-item:nth-child(11) {
    grid-column: 5/6;
    grid-row: 7/8;
    aspect-ratio: 1/1;
  }
  .post-list .post-item:nth-child(12) {
    grid-column: 6/7;
    grid-row: 7/8;
    aspect-ratio: 1/1;
  }
  .post-list .post-item:nth-child(13) {
    grid-column: 5/6;
    grid-row: 8/9;
    aspect-ratio: 1/1;
  }
  .post-list .post-item:nth-child(14) {
    grid-column: 6/7;
    grid-row: 8/9;
    aspect-ratio: 1/1;
  }
}

.front-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: black;
  background-image: url(./asset/images/front-bg.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  position: absolute;
}
.front-wrap::before, .front-wrap::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 50vh;
  z-index: 1;
  left: calc(50% - 10px);
  background-image: url(./asset/images/rope.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  animation-duration: 1500ms;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.front-wrap::before {
  left: calc(50% - 10px);
  animation-name: ScrollInFromTop;
  transform: scale(1, -1);
}
.front-wrap::after {
  animation-name: ScrollInFromBottom;
}
.front-wrap .logo {
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10%;
  min-width: 160px;
  animation: 1000ms ease-out FadeIn 1500ms forwards;
}
.front-wrap .logo img {
  width: 100%;
}
.front-wrap .link-instagram {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 1rem;
  width: 160px;
  height: auto;
  max-width: 20vw;
}
.front-wrap .link-instagram img {
  width: 100%;
}

.login {
  position: relative;
  z-index: 9;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.45);
  filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.5));
  border-radius: 8px;
  border: 1px solid black;
  text-align: center;
  color: black;
  animation: 1000ms ease-out FadeIn 1500ms forwards;
  opacity: 0;
}
.login p {
  color: #E6D8B3;
  margin-bottom: 0.5rem;
}
.login .pin-input-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
.login .pin-input {
  width: 160px;
  height: 40px;
  opacity: 0;
  position: absolute;
  z-index: 10;
}
.login .square-container {
  display: flex;
  gap: 10px;
}
.login .square {
  width: 32px;
  height: 32px;
  border: 2px solid dimgray;
  text-align: center;
  font-size: 16px;
  line-height: 32px;
  position: relative;
  background-color: rgba(255, 255, 255, 0.8);
}
.login .square.filled::after {
  content: "●";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.login .square.active {
  animation: BreathColor 1000ms infinite;
}
.login .err-msg {
  margin-top: 1rem;
  color: #AA0000;
  text-align: center;
}

@keyframes FadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100%;
  }
}
@keyframes BreathColor {
  0%, 80% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  80%, 100% {
    background-color: rgba(230, 216, 179, 0.8);
  }
}
@keyframes ScrollInFromTop {
  0% {
    top: -50%;
  }
  100% {
    top: 0;
  }
}
@keyframes ScrollInFromBottom {
  0% {
    bottom: -50%;
  }
  100% {
    bottom: 0;
  }
}/*# sourceMappingURL=style.css.map */