@charset "UTF-8";
html {
  --font-en: "presicav", sans-serif;
  --font-en-sub: "presicav", sans-serif;
  --font-ja: "fot-cezanne-pron", sans-serif;
  width: 100vw;
  scroll-padding-top: 90px; /* 固定ヘッダの高さ分 */
}

/* 基本の設定（ライトモード） */
html {
  --background-body: #f9f9f9;
  --background-alt: #f3f3f3;
  --text-strong: #000;
  --text-main: #000;
  --text-muted: #9B9B9B;
  --accent: #FE531E;
}
html .dark {
  display: none;
}

/* Dark クラスが付与されるとダークモードになる */
html.Dark {
  --background-body: #222;
  --background-alt: #333;
  --text-strong: #ffffff;
  --text-main: #eeeeee;
  --text-muted: #aaaaaa;
  --accent: #FE531E;
}
html.Dark .light {
  display: none;
}
html.Dark .dark {
  display: block;
}
html.Dark .swiper-controller {
  mix-blend-mode: difference;
}

body {
  font-family: "Manrope", "fot-cezanne-pron", sans-serif;
  margin: 0;
  background-color: var(--background-body);
  color: var(--text-main);
}

.Main {
  width: 96%;
  margin: 0 auto;
}

h1,
h2,
h3,
strong {
  color: var(--text-strong);
}

small {
  color: var(--text-muted);
}

a {
  color: var(--text-main);
  text-decoration: none;
}

a:hover {
  color: var(--accent);
  cursor: pointer;
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  line-height: 2rem;
  list-style-type: none;
}

img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

p, h1, h2, h3 {
  margin: 0;
}

p {
  line-height: 2;
  letter-spacing: 0.01em;
}

.Header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: 0;
  z-index: 998;
  position: relative;
  position: -webkit-sticky;
  position: sticky;
  background: var(--background-body);
  padding: 0 1rem;
}

.Header .logo {
  font-family: var(--font-en);
  font-size: 2.6rem;
  padding: 0.4rem 0;
}

.Header--right {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.Header--right button:hover {
  cursor: pointer;
}

.touch_btn {
  margin-left: 0.6rem;
}
@media screen and (max-width: 767px) {
  .touch_btn {
    margin-left: 0.4rem;
  }
}
@media screen and (max-width: 439px) {
  .touch_btn {
    display: none;
  }
}

.touch_btn a {
  background-color: var(--text-main);
  color: var(--background-body);
  border-radius: 50px;
  font-family: var(--font-en-sub);
  padding: 7px 30px;
  font-size: 14px;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .touch_btn a {
    padding: 6px 15px;
  }
}

.touch_btn a:hover {
  background-color: var(--accent);
}

.Header .MenuContainer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1110px) {
  .Header .MenuContainer {
    display: none;
  }
}

.MenuContainer a:hover {
  color: var(--accent);
}

.Menu {
  display: flex;
  justify-items: center;
  max-width: 100%;
  -webkit-padding-start: 0;
          padding-inline-start: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .Menu {
    display: none;
  }
}

.MenuItem {
  text-align: center;
  font-family: var(--font-en-sub);
  font-size: 0.9rem;
}

.MenuItem + .MenuItem {
  border-left: 0;
}

.MenuItem a {
  display: block;
  padding: 0 1rem;
  text-decoration: none;
  color: var(--text-main);
}

/* メニューのレイアウト */
#spnav ul {
  text-align: center;
  width: 100%;
}

#spnav ul li a {
  color: #333;
  padding: 10px;
  display: block;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-size: 20px;
}

#spnav ul {
  position: absolute;
  z-index: 999;
  top: 50%; /* メニューが増えて画面からはみ出したらここを調整してみよう！ */
  left: 50%;
  transform: translate(-50%, -50%);
}

#spnav {
  position: fixed;
  z-index: 999;
  top: 0;
  right: -120%; /* 画面の右側に隠すためのコード */
  width: 100%;
  height: 100vh;
  background-color: #999;
  transition: all 0.6s;
}

/* クラスが付与された後のレイアウト */
#spnav.list_active #spnav_list {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#spnav.list_active {
  right: 0;
}

/* メインここから */
.Main {
  grid-row: 2/3;
  grid-column: 2/3;
}

.mv {
  padding: 4rem 0 2rem;
}
.mv .title {
  font-family: var(--font-en);
  font-size: clamp(54px, 17.9vw, 170px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.8;
  margin-bottom: 1.6rem;
}
.mv .mv--img {
  width: 100%;
  margin: 2rem 0;
}

.sub--title {
  font-family: var(--font-en-sub);
  position: relative;
  padding-left: 20px;
  font-size: 0.8rem;
  font-weight: 400;
}
.sub--title::before {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 4px;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: var(--accent);
}

.Section--head {
  border-top: 1px solid var(--text-muted);
  padding: 0.1rem 0 3rem;
}
.Section--head .Section--h2 {
  font-family: var(--font-en);
  font-size: 4rem;
  margin-top: 0;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .Section--head .Section--h2 {
    font-size: 3rem;
  }
}
.Section--head small {
  font-family: var(--font-en-sub);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 767px) {
  .Section--head small {
    font-size: 0.8rem;
  }
}

.Works {
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .Works {
    padding-bottom: 5rem;
  }
}
.Works .container li {
  border-top: 1px solid var(--text-muted);
}
.Works .container li a {
  padding: 1.2rem 0;
  display: flex;
  justify-content: space-between;
  color: var(--text-main);
}
@media screen and (max-width: 767px) {
  .Works .container li a {
    display: block;
  }
}
.Works .container li a .txt {
  width: 40%;
  display: flex;
  font-family: var(--font-en);
}
@media screen and (max-width: 767px) {
  .Works .container li a .txt {
    width: 100%;
  }
}
.Works .container li a .txt span {
  color: var(--text-muted);
  font-size: 1.4rem;
  font-weight: 700;
  margin-right: 1rem;
}
.Works .container li a .txt p {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}
.Works .container li a img {
  width: 60%;
  height: 300px;
  filter: grayscale(100%);
}
@media screen and (max-width: 767px) {
  .Works .container li a img {
    width: 100%;
    height: 150px;
    margin-top: 1.2rem;
  }
}
.Works .container li a img:hover {
  filter: grayscale(0);
  transition: 0.4s;
}
.Works .container li a:hover span {
  color: var(--accent);
}

.more--btn a {
  font-size: 0.8rem;
  font-family: var(--font-en-sub);
  border-radius: 50px;
  padding: 6px 30px;
  background: var(--text-main);
  color: var(--background-body);
}
.more--btn a:hover {
  background: var(--accent);
  transition: 0.3s;
}

.Wavebox .Wave--container .Wave--btn {
  text-align: center;
  margin-top: -100px;
  margin-bottom: 200px;
  position: relative;
  transition: color 0.5s ease;
}
.Wavebox .Wave--container .Wave--btn:hover {
  color: var(--background-body);
}
.Wavebox .Wave--container .Wave--btn a {
  font-size: 1.6rem;
  font-family: var(--font-en);
  font-weight: 700;
  background: var(--text-main);
  color: var(--background-body);
  padding: 1rem 2rem 1rem 3rem;
  border-radius: 50px;
  transition: 0.3s;
}
.Wavebox .Wave--container .Wave--btn a:hover {
  background: var(--accent);
  color: var(--text-main);
}
.Wavebox .Wave--container .Wave--btn a img {
  width: 20px;
  height: 20px;
  margin-left: 8px;
}

.loop-wrap {
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 400px;
}

.loop-area {
  display: flex;
  -webkit-animation: loop-slide 50s infinite linear 1s both;
          animation: loop-slide 50s infinite linear 1s both;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.loop-area .loop-txt {
  font-size: 8rem;
  font-family: var(--font-en);
  white-space: nowrap;
  font-weight: 700;
}
.loop-area .loop-txt img {
  width: 80px;
  height: 80px;
  margin-left: 1.2rem;
}

@-webkit-keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.Notices {
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .Notices {
    padding-bottom: 5rem;
  }
}
.Notices .container {
  display: flex;
}
@media screen and (max-width: 767px) {
  .Notices .container {
    flex-direction: column;
  }
}
.Notices .container li {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .Notices .container li {
    width: 100%;
  }
}
.Notices .container li a {
  display: block;
  height: 100%;
}
.Notices .container li a:hover img {
  filter: grayscale(0);
}
.Notices .container li a:hover time {
  color: var(--accent);
}
.Notices .container li img {
  height: 150px;
  filter: grayscale(100%);
  margin-bottom: -10px;
}
.Notices .container li .box {
  border: 1px solid var(--text-muted);
  /* border-top: none; */
  padding: 1.4rem;
  background-color: var(--background-alt);
}
@media screen and (max-width: 767px) {
  .Notices .container li .box {
    border: none;
    padding: 1rem;
  }
}
.Notices .container li .box .title {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  line-height: 1.4;
}
.Notices .container li .box .txt {
  font-size: 0.8rem;
  font-family: var(--font-en-sub);
}
.Notices .container li .box .txt span {
  color: var(--text-muted);
}
.Notices .container li .box .txt p {
  line-height: 1;
}

.Blog {
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .Blog {
    padding-bottom: 5rem;
  }
}
.Blog .container li {
  border-top: 1px solid var(--text-muted);
  padding: 1.4rem 0;
  transition: 0.3s;
}
.Blog .container li:hover {
  background-color: var(--accent);
  color: var(--text-main);
  padding: 1.4rem 2rem;
  border: none;
}
.Blog .container li:hover .txt {
  color: white;
}
.Blog .container li:hover .txt time {
  color: white;
}
.Blog .container li .txt {
  display: flex;
}
.Blog .container li .txt time {
  margin-right: 2rem;
  font-family: var(--font-en-sub);
  color: var(--text-muted);
  font-size: 0.8rem;
}

.Footer {
  background-color: var(--text-main);
  padding: 2rem 0 0;
  color: var(--background-body);
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  border-radius: 30px 30px 0 0;
}
@media screen and (max-width: 767px) {
  .Footer {
    border-radius: 15px 15px 0 0;
  }
}
.Footer .Footer--inner {
  width: 96%;
  margin: 0 auto;
}
.Footer .row {
  display: flex;
  justify-content: space-between;
  margin: 5rem 0;
}
@media screen and (max-width: 767px) {
  .Footer .row {
    display: block;
    margin: 1rem 0 2rem;
  }
}
.Footer .aboutme {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .Footer .aboutme {
    width: 100%;
  }
}
.Footer .aboutme .title {
  font-family: var(--font-en);
  font-size: clamp(46px, 4.9vw, 84px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.8rem;
}
.Footer .aboutme .account {
  border: 1px solid var(--text-muted);
  font-size: 0.8rem;
  font-family: var(--font-en-sub);
  border-radius: 50px;
  padding: 3px 11px;
}
.Footer .aboutme .sns {
  display: flex;
  margin-top: 2rem;
}
.Footer .aboutme .sns a {
  margin-right: 1rem;
  mix-blend-mode: difference;
}
.Footer .aboutme .sns a img {
  width: 25px !important;
  height: 22px !important;
}
.Footer .txt {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .Footer .txt {
    width: 100%;
    margin-top: 1rem;
  }
}
.Footer .txt .en {
  font-family: var(--font-en-sub);
  line-height: 2.2;
  margin-top: 1rem;
  font-size: 0.8rem;
}
.Footer .foot_btm {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--text-muted);
  padding: 2rem 0;
}
@media screen and (max-width: 767px) {
  .Footer .foot_btm {
    flex-direction: column;
  }
}
.Footer .foot_btm .music {
  width: 49%;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .Footer .foot_btm .music {
    width: 100%;
    margin-top: 2rem;
  }
}
.Footer .foot_btm .music .play-initial {
  background: var(--accent);
}
.Footer .foot_btm .music .launch-client {
  color: var(--accent);
  background: var(--background-alt);
}
.Footer .foot_btm .music .audio-menu-button {
  background-color: var(--background-alt);
}
.Footer .foot_btm .music .audio-menu-button amp-icon {
  color: var(--accent);
}
.Footer .foot_btm .MenuContainer {
  width: 49%;
}
@media screen and (max-width: 767px) {
  .Footer .foot_btm .MenuContainer {
    width: 100%;
  }
}
.Footer .foot_btm .MenuContainer .Menu {
  display: flex;
  flex-wrap: wrap;
}
.Footer .foot_btm .MenuContainer .MenuItem a {
  color: var(--background-body);
  padding: 0 1.5rem 0 0;
}
.Footer .foot_btm .MenuContainer .MenuItem a:hover {
  color: var(--accent);
}

.Copyright {
  color: var(--background-body);
}

/* ダークモード切り替え */
button {
  border-radius: 50px;
  border: none;
  padding: 4px 10px 4px 6px;
}

.ModeButton--form {
  display: flex;
  flex-direction: row;
  font-size: 11px;
  font-family: var(--font-en-sub);
  text-align: left;
  line-height: 1;
  align-items: center;
}
.ModeButton--form img {
  margin-right: 4px;
}

.ModeButton--dark {
  background-color: var(--text-strong);
  color: var(--background-body);
}

/* ライトモードにするボタン：ライトモード時非表示 */
.ModeButton .ModeButton--light {
  display: none;
}

/* ライトモードにするボタン：ダークモード時表示 */
html.Dark .ModeButton .ModeButton--light {
  display: block;
}

/* ダークモードにするボタン：ライトモード時表示 */
.ModeButton .ModeButton--dark {
  display: block;
}

/* ダークモードにするボタン：ダークモード時非表示 */
html.Dark .ModeButton .ModeButton--dark {
  display: none;
}

/* ダークモード切り替え */
#mouse-stalker {
  pointer-events: none;
  position: fixed;
  top: -10px;
  left: -10px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transform: translate(0, 0);
  transition: transform 0.2s;
  transition-timing-function: ease-out;
  z-index: 999;
  mix-blend-mode: difference;
}
@media screen and (max-width: 767px) {
  #mouse-stalker {
    display: none;
  }
}
#mouse-stalker.is_active {
  top: -40px;
  left: -40px;
  width: 80px;
  height: 80px;
  transition: 0.2s;
}

.content {
  display: flex;
  height: calc(100vh - 90px);
}

.content_left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  background: #000;
}
.content_left .link-item {
  display: block;
  padding: 20px;
  margin: 10px 0 0;
  color: #000;
  background: #fff;
  border-radius: 50px;
  text-decoration: none;
}
.content_left p {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

.content_right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  background: #fff;
}
.content_right .link-item {
  display: block;
  padding: 20px;
  margin: 10px 0 0;
  color: #fff;
  background: #000;
  border-radius: 50px;
  text-decoration: none;
}
.content_right p {
  color: #000;
  font-size: 18px;
  font-weight: bold;
}

.openbtn {
  z-index: 9999; /* 一番手前に表示 */
  cursor: pointer; /* カーソルが上に来たらポインターに変身 */
  width: 50px; /* 横幅５０px */
  height: 50px; /* 縦幅５０px */
  padding-left: 1rem;
}

.openbtn span {
  display: inline-block;
  transition: all 0.4s; /* 変化速度 */
  position: absolute; /* 四角い箱に対して線の位置を調整するためのおまじない */
  /* left: 14px; */
  width: 45px; /* 線の幅 */
  height: 2px; /* 線の太さ */
  background-color: var(--text-main); /* 線の色 */
}

.openbtn span:nth-of-type(1) {
  top: 40px; /* １本目の線の四角い箱の上からの位置 */
}

.openbtn span:nth-of-type(2) {
  top: 47px; /* ２本目の線の四角い箱の上からの位置 */
}

.openbtn span:nth-of-type(3) {
  top: 54px; /* ３本目の線の四角い箱の上からの位置 */
}

.openbtn.active span:nth-of-type(1) {
  background-color: var(--background-body);
  transform: translateY(6px) rotate(-45deg); /* １本目の線の角度と上からの位置の変更 */
  /* width: 30%; */
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0; /* ２本目の線を見えなくする */
}

.openbtn.active span:nth-of-type(3) {
  background-color: var(--background-body);
  transform: translateY(-9px) rotate(45deg);
}

/* メニューのレイアウト */
#spnav ul {
  text-align: center;
  width: 100%;
}

#spnav ul li {
  margin: 0 20rem;
}
@media screen and (max-width: 767px) {
  #spnav ul li {
    margin: 0;
  }
}

#spnav ul li a {
  color: var(--background-body);
  padding: 20px 30px;
  display: block;
  letter-spacing: -0.01em;
  font-weight: bold;
  font-size: 2rem;
  font-family: var(--font-en);
  text-align: left;
  position: relative;
}
#spnav ul li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translate(0, -50%);
  width: 42px;
  height: 21px;
  background-image: url(/img/swiper_btn.svg);
  rotate: 180deg;
  margin-top: -10px;
}

#spnav ul {
  position: absolute;
  z-index: 999;
  top: 50%; /* メニューが増えて画面からはみ出したらここを調整してみよう！ */
  left: 50%;
  transform: translate(-50%, -50%);
}

/* クラスが付与される前のレイアウト */
#spnav {
  position: fixed;
  z-index: 999;
  top: 0;
  right: -120%; /* 画面の右側に隠すためのコード */
  width: 100%;
  height: 100vh;
  background-color: var(--text-main);
  transition: all 0.6s;
  text-align: left;
}

/* クラスが付与された後のレイアウト */
#spnav.list_active #spnav_list {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#spnav.list_active {
  right: 0;
}

.fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.5s, transform 1s;
}

.fade.active {
  opacity: 1;
  transform: translateY(0px);
}

.start {
  background: #222;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9000;
}

.start p {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 9999;
  width: 280px;
}

.Postpage .Section--h2 {
  margin-bottom: 3rem;
}

.Post--container {
  border-top: 1px solid var(--text-muted);
  margin-bottom: 5rem;
}
.Post--container .post--title {
  font-size: 2rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .Post--container .post--title {
    font-size: 1.8rem;
    margin-top: 0.4rem;
    line-height: 1.4;
  }
}
.Post--container .sub--title {
  color: var(--text-muted);
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .flex {
    display: block;
  }
}

.grid-item {
  width: 300px;
  height: auto;
  margin: 10px;
  padding: 10px;
}
@media screen and (max-width: 708px) {
  .grid-item {
    width: 100%;
    margin: 0px;
    padding: 0px;
  }
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .access--counter {
    display: none;
  }
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  _::-webkit-full-page-media, _:future, :root .access--counter {
    display: block;
  }
}
/*# sourceMappingURL=style.css.map */