@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,500;0,700;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
*,
*:before,
*:after {
  box-sizing: border-box;
}

/* Google Font */
.roboto-thin {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.roboto-light {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.roboto-medium {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.roboto-bold {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.roboto-black {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.roboto-thin-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.roboto-light-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.roboto-regular-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.roboto-medium-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.roboto-bold-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.roboto-black-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: italic;
}

/* Reset */
hmtl,
body {
  margin: 0;
  padding: 0;
}

p, h1, h2, h3, h4, h5, h6, ul, ol, dl, dt, dd, li, form, iframe, section, header, footer, span, figure {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  height: 100vh;
  background: #eeeee9;
  transition: background-color 0.5s ease, color 0.5s ease;
}

body.dark {
  background-color: #575757;
}

figure {
  margin: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #ccc;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

h1 {
  font-size: 44px;
  line-height: 52px;
  font-weight: bold;
  margin: 0 0 70px;
  color: #ffffff;
}

/*
Loading Bar
*/
#loading-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: #e9420a;
  transition: width 0.4s ease-out;
  z-index: 9999;
}

/*
aタグエフェクト
*/
.hoverZoom {
  display: block;
  overflow: hidden;
}

.hoverZoom img {
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.hoverZoom:hover img {
  filter: brightness(1.1);
  transform: scale(1.2);
}

.data-area {
  background: rgba(255, 0, 0, 0.8);
  padding: 10px;
  width: 140px;
  padding-right: 20px;
  position: fixed;
  top: 0px;
  right: 0px;
  z-index: 2;
  text-align: right;
}

#demo-text {
  font-size: 12px;
  color: #FFF;
}

#data-view {
  z-index: 2;
  font-size: 12px;
  color: #FFF;
}

#click-target {
  font-size: 12px;
  color: #FFF;
}

#pagetop {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 72px;
  height: 72px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 72px;
  font-size: 12px;
  color: #181818;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}
#pagetop:hover {
  color: #242424;
  background: rgba(0, 0, 0, 0.15);
}

.single img {
  width: 100% !important;
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
          clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  border-radius: 4px;
  margin: 0 auto;
}

.transition01 {
  position: fixed;
  z-index: 1001;
  display: flex;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  pointer-events: none;
}
.transition01 li {
  width: 100%;
  transform: scaleY(0);
  background: #eeeee9;
}

.transition {
  position: fixed;
  z-index: 99;
  display: flex;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  pointer-events: none;
}
.transition li {
  width: 20%;
  transform: scaleY(0);
  background: #fffffe;
}

.transition2 {
  position: fixed;
  z-index: 1001;
  display: flex;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  background: rgba(255, 0, 0, 0.5);
  pointer-events: none;
  text-indent: -9999px;
  transform: scaleY(0);
}

.logo {
  background: #000;
  box-sizing: border-box;
  position: relative;
}
.logo-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  padding: 18px;
  display: flex;
  /*background: #F00;*/
  flex-direction: column;
  justify-content: space-between;
}
.logo::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #F00;
  z-index: 10;
}

.logo._orange {
  background: #eb550f;
}

.logo._white {
  background: #FFF;
}

.logo-t {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

svg {
  display: block;
  height: 10.5px;
  width: auto;
  margin: 0;
  fill: #FFF;
}

.logo._white svg {
  fill: #eb550f;
}

svg.s,
svg.o,
svg.c,
svg.g {
  height: 10.8px;
}

.ml_1 {
  margin-left: -1px;
}

.ml_2 {
  margin-left: -2px;
}

header {
  width: 100%;
  height: 80px;
  position: fixed;
  z-index: 999;
  transition: transform 0.6s 0.2s; /* アニメーションの設定 */
}

header.hidden {
  transform: translateY(-200px); /* ヘッダの高さだけ上に移動 */
}

header {
  background: rgba(238, 238, 233, 0.7);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  height: 200px;
  transition: all 0.3s ease-out;
}
@media only screen and (max-width: 640px) {
  header {
    height: 180px;
  }
}
header #site-title {
  width: 120px;
  height: 120px;
  color: #999;
  font-family: "Roboto", sans-serif;
  /*display: flex;
  justify-content: center;
  align-items: center;*/
  position: absolute;
  top: 40px;
  left: 40px;
  z-index: 1;
  transition: all 0.3s ease-out;
}
@media screen and (min-width: 1400px) {
  header #site-title {
    left: 50%;
    margin-left: -660px;
  }
}
@media only screen and (max-width: 640px) {
  header #site-title {
    width: 28vw;
    top: 7vw;
    left: 7vw;
  }
}
header #site-title a {
  display: block;
  background: #FFF;
}
header #site-title a img,
header #site-title a .logo {
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
header #site-title a img svg,
header #site-title a .logo svg {
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
header #site-title a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 10px;
  width: 8px;
  height: 8px;
  border-bottom: solid 1px #e9420a;
  border-left: solid 1px #e9420a;
  transform: rotateZ(45deg) translateY(-50%);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
header #site-title a:hover {
  /*img,
  .logo {
  	transform: translateX(15px) translateY(20px);
  	transform-origin: right top;
  }*/
}
header #site-title a:hover .logo {
  background: #FFF !important;
  transform: translateX(14px);
}
header #site-title a:hover .logo svg {
  fill: #000;
}
header #site-title a:hover::after {
  left: 2px;
  opacity: 1;
}
header #btn-menu {
  /*background: #F0F;*/
  display: none;
  position: absolute;
  top: 28vw;
  right: 0;
  width: 130px;
  padding-right: 7vw;
  z-index: 1000;
  transition: all 0.3s ease-out;
}
@media only screen and (max-width: 640px) {
  header #btn-menu {
    display: block;
  }
}
header #btn-menu span {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 10px 0;
}
header #btn-menu span::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: #000;
}
header #btn-menu span::before {
  content: "CLOSE ";
  display: none;
  /*display: inline-block;
  position: absolute;
  font-size: 14px;
  font-weight: 500;
  right: 0;
  bottom: 10px;*/
  opacity: 0;
  transition: all 0.3s ease-out;
}
header .header-nav {
  padding-top: 60px;
  margin: 0 auto;
  padding-left: 240px;
  position: relative;
  transition: all 0.3s ease-out;
}
@media screen and (min-width: 1400px) {
  header .header-nav {
    padding-left: calc((100% - 1400px) / 2 + 240px);
  }
}
@media only screen and (max-width: 640px) {
  header .header-nav {
    position: fixed;
    top: -100vh;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #454545;
    overflow: scroll;
  }
}
header .header-nav-inner {
  max-width: 1160px;
  display: flex;
  justify-content: space-between;
  position: relative;
}
header .header-nav::after {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% - 240px);
  height: 1px;
  background: #000;
  bottom: 0;
  left: 240px;
}
@media screen and (min-width: 1400px) {
  header .header-nav::after {
    left: 50%;
    margin-left: -460px;
    width: calc(100% - (100% - 1400px) / 2 - 240px);
  }
}
header .header-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .header-nav ul li a {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.075em;
  color: #181818;
  transition: all 0.3s;
}
header .header-nav ul li a span {
  display: inline-block;
  padding: 20px 0;
  background-color: #181818;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  transition: all 0.3s;
}
header .header-nav ul li a:hover span {
  display: inline-block;
  /*background-image: linear-gradient(-90deg, #1600FF 0%, #A200FF 30%, #FF2465 60%, #FF9400 100%);*/
  background-color: #e9420a;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
header .header-nav ul.gnav {
  gap: 40px;
}
@media only screen and (max-width: 640px) {
  header .header-nav ul.gnav {
    flex-direction: column;
    position: fixed;
    right: 0;
    top: -100vh;
    width: calc(50% + 2.4em);
    align-items: flex-start;
  }
}
@media only screen and (max-width: 640px) {
  header .header-nav ul.gnav li {
    width: 100%;
  }
}
header .header-nav ul.gnav li a {
  display: block;
  font-weight: 500;
  position: relative;
}
@media only screen and (max-width: 640px) {
  header .header-nav ul.gnav li a {
    width: 100%;
    font-size: 5vw;
    opacity: 0;
    transform: translateY(-50px);
  }
  header .header-nav ul.gnav li a span {
    background-color: #FFF;
  }
}
header .header-nav ul.gnav li a::after {
  content: "";
  display: block;
  background: #e9420a;
  height: 3px;
  width: 0%;
  position: absolute;
  bottom: 0px;
  left: 50%;
  z-index: 1;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
@media only screen and (max-width: 640px) {
  header .header-nav ul.gnav li a::after {
    background: #FFF;
    width: calc(100% - 30px);
    left: 0;
    height: 1px;
  }
}
header .header-nav ul.gnav li a:hover:after {
  left: 0;
  width: 100%;
}
header .header-nav ul.gnav li a.current {
  color: #e9420a;
}
header .header-nav ul.gnav li a.current:after {
  content: "";
  display: block;
  background: #e9420a;
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: 0px;
  left: 0;
  z-index: 1;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
header .header-nav ul.lang {
  gap: 20px;
  margin-right: 20px;
  overflow: hidden;
}
@media only screen and (max-width: 640px) {
  header .header-nav ul.lang {
    flex-direction: row;
    position: fixed;
    top: 20px;
    right: calc(7vw - 7px);
    margin: 0;
    gap: 10px;
    overflow: visible;
  }
}
header .header-nav ul.lang span.current {
  display: block;
  font-weight: 500;
  width: 30px;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
}
header .header-nav ul.lang span.current span {
  display: inline-block;
  padding: 20px 0;
  background-color: #181818;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
@media only screen and (max-width: 640px) {
  header .header-nav ul.lang span.current span {
    padding: 10px 0;
    background-color: #e9420a;
  }
}
@media only screen and (max-width: 640px) {
  header .header-nav ul.lang span.current {
    font-size: 14px;
    letter-spacing: 0.1em;
  }
  header .header-nav ul.lang span.current::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    display: block;
    background-color: #e9420a;
  }
}
header .header-nav ul.lang a {
  transform: translateY(60px) scaleY(0);
  display: block;
  font-weight: 500;
  position: relative;
  width: 30px;
  text-align: center;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
@media only screen and (max-width: 640px) {
  header .header-nav ul.lang a {
    opacity: 1;
    transform: none;
    font-size: 14px;
    letter-spacing: 0.1em;
  }
}
header .header-nav ul.lang a:after {
  content: "";
  display: block;
  background: #e9420a;
  height: 3px;
  width: 0%;
  position: absolute;
  bottom: 0px;
  left: 50%;
  z-index: 1;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
header .header-nav ul.lang a:hover:after {
  left: 0;
  width: 100%;
}
@media only screen and (max-width: 640px) {
  header .header-nav ul.lang a:hover:after {
    left: 0;
    width: 0;
  }
}
header .header-nav ul.lang.jp span.current {
  transform: translateX(50px);
}
header .header-nav ul.lang.jp.hover span.current {
  transform: translateX(0px);
}
header .header-nav ul.lang.jp.hover li:nth-child(2) a {
  transform: translateY(0) scaleY(1);
  opacity: 1;
}
header .header-nav ul.lang.jp.hover li:nth-child(3) a {
  transform: translateY(0) scaleY(1);
  opacity: 1;
}
header .header-nav ul.lang.en span.current {
  transform: translateX(0px);
}
header .header-nav ul.lang.en.hover span.current {
  transform: translateX(0px);
}
header .header-nav ul.lang.en.hover li:nth-child(1) a {
  transform: translateY(0) scaleY(1);
  opacity: 1;
}
header .header-nav ul.lang.en.hover li:nth-child(3) a {
  transform: translateY(0) scaleY(1);
  opacity: 1;
}
@media only screen and (max-width: 640px) {
  header .header-nav ul.lang {
    opacity: 1;
  }
  header .header-nav ul.lang.jp span.current, header .header-nav ul.lang.en span.current {
    transform: none;
  }
  header .header-nav ul.lang.jp.hover span.current, header .header-nav ul.lang.en.hover span.current {
    transform: none;
  }
  header .header-nav ul.lang.jp.hover li:nth-child(1) a,
header .header-nav ul.lang.jp.hover li:nth-child(3) a, header .header-nav ul.lang.en.hover li:nth-child(1) a,
header .header-nav ul.lang.en.hover li:nth-child(3) a {
    transform: none;
    opacity: 1;
  }
}
header .header-nav ul.categories {
  position: absolute;
  bottom: -48px;
  left: 0;
  gap: 0px;
  display: none;
  z-index: 1;
}
@media only screen and (max-width: 640px) {
  header .header-nav ul.categories {
    display: block;
    position: static;
  }
}
header .header-nav ul.categories._visible {
  display: flex;
  -webkit-animation-name: subNavFade;
          animation-name: subNavFade;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@media only screen and (max-width: 640px) {
  header .header-nav ul.categories._visible {
    display: block;
    -webkit-animation: none;
            animation: none;
  }
}
header .header-nav ul.categories li a {
  font-weight: 500;
}
header .header-nav ul.categories li a span {
  padding: 20px 30px 10px 0;
  display: inline-block;
}
header .header-nav ul.categories li a:after {
  display: none;
}
header.scrolling {
  height: 60px;
}
header.scrolling #site-title {
  opacity: 0;
  top: calc(0px - 28vw - 40px);
}
header.scrolling .header-nav ul.lang {
  transform: translateY(-100vh);
}
header.scrolling #btn-menu {
  top: 8px;
}
@media only screen and (max-width: 640px) {
  header.opened #btn-menu span {
    color: rgba(255, 255, 255, 0);
  }
}
@media only screen and (max-width: 640px) {
  header.opened #btn-menu span::after {
    background: #FFF;
  }
}
header.opened #btn-menu span::before {
  display: inline-block;
  opacity: 1;
  color: #FFF;
}
header.opened .header-nav {
  top: 0;
  opacity: 1;
}
@media only screen and (max-width: 640px) {
  header.opened .header-nav ul li a {
    opacity: 1;
    transform: translateY(0px);
  }
  header.opened .header-nav ul li a span {
    background-color: #FFF;
  }
}
@media only screen and (max-width: 640px) {
  header.opened .header-nav ul.gnav {
    top: 50vw;
  }
}
main {
  /*height: calc(100vh - 59px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 50px;*/
  overflow: hidden;
}
main > * {
  width: 50%;
}
main .headline {
  padding-right: 60px;
  margin-bottom: 50px;
}
main .page-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 240px 40px 100px;
}
@media only screen and (max-width: 640px) {
  main .page-inner {
    padding: 48vw 7vw 100px;
  }
}
main .page-inner .scuarebox {
  width: 400px;
  height: 400px;
  background: #F00;
  margin: 1em 0;
}
main .page-inner .content-body .thumbs {
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
main .page-inner .content-body .thumbs li {
  margin-bottom: 3%;
  width: 33.3333333333%;
  padding: 2%;
}
main .page-inner .content-body .thumbs li img {
  aspect-ratio: 4/3;
  /*width: 300px !important;
  height: 240px;*/
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
          clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  margin: 0 auto;
}
main .page-inner .content-body .single {
  width: 100%;
}
main .page-inner .content-body .method {
  max-width: 1300px;
  margin: 0 auto;
}
main .page-inner .content-body .method img {
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
          clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  border-radius: 4px;
  margin: 0 auto;
}
main .page-inner .content-btns,
main .page-inner .content-logo {
  text-align: center;
}
main .page-inner .item-info {
  border-top: solid 1px #000;
  position: relative;
  padding: 15px 0;
  margin-top: 35px;
}
main .page-inner .item-info .item-title {
  font-size: 16px;
  letter-spacing: 0.075em;
  font-weight: 400;
  line-height: 1.5;
}
main .page-inner .item-info .item-description {
  margin-top: 2em;
  font-size: 12px;
  color: #484848;
  line-height: 1.8em;
}
main .page-inner .item-info .page-btns {
  margin-top: 40px;
  /*a {
  	display: inline-block;
  	padding: 10px 30px;
  	background: #F60;
  	color: #FFF;
  	margin-left: 15px;
  	&:first-child {
  		margin-left: 0;
  	}
  }*/
}
main .page-inner .item-info .page-btns a {
  margin-left: 15px;
}
main .page-inner .item-info .page-btns a:first-child {
  margin-left: 0;
}
main .page-inner .item-info .hashtag {
  position: absolute;
  top: 12px;
  right: 0;
  display: flex;
  gap: 15px;
}
main .page-inner .item-info .hashtag a {
  display: block;
  position: relative;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #000;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
main .page-inner .item-info .hashtag a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #e9420a;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
main .page-inner .item-info .hashtag a:hover {
  color: #e9420a;
}
main .page-inner .item-info .hashtag a:hover::after {
  left: 0;
  width: 100%;
}

/* Swiper */
.mv01 {
  position: relative;
}

.swiper {
  min-height: 100%;
  margin: 0 auto 200px;
}
@media only screen and (max-width: 640px) {
  .swiper {
    margin: 0 auto 70px;
  }
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition-property: opacity, transform !important;
  pointer-events: none;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-pagination {
  position: absolute;
  z-index: 10;
  bottom: -30px !important;
}

.autoplay-progress {
  position: absolute;
  right: 16px;
  bottom: -56px;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #F00;
}

.autoplay-progress svg {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 10;
  width: 100%;
  height: 100%;
  stroke-width: 4px;
  stroke: var(--swiper-theme-color);
  fill: #F0F;
  stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}

.mv01 {
  /* アクティブ時 */
}
.mv01 .swiper-slide img {
  transition: 7s 1s ease-out;
}
.mv01 .swiper-slide[class*=-active] {
  /*.slide-title {
    animation: mv01-fadeIn 2s .5s ease-out both;
  }*/
}
.mv01 .swiper-slide[class*=-active] img {
  transition-delay: 0s;
  transform: scale(1.2);
}

@-webkit-keyframes mv01-fadeIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
    filter: blur(300px);
  }
  100% {
    transform: scale(1);
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes mv01-fadeIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
    filter: blur(300px);
  }
  100% {
    transform: scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.swiper-pagination-bullet {
  /*ドットのサイズを変更*/
  width: 6px;
  height: 6px;
}

.swiper-pagination-bullet-active {
  background-color: #e9420a;
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev::after,
.swiper-button-next::after {
  bottom: 0;
  content: "";
  height: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 0;
}

/* 前への矢印カスタマイズ */
.swiper-button-prev::after {
  width: 16px;
  height: 16px;
  left: -30px;
  border-left: solid 1px #000;
  border-bottom: solid 1px #000;
  transform: rotateZ(45deg);
}

/* 次への矢印カスタマイズ */
.swiper-button-next::after {
  width: 16px;
  height: 16px;
  right: -30px;
  border-right: solid 1px #000;
  border-top: solid 1px #000;
  transform: rotateZ(45deg);
}

/* 画像サイズ調整 */
.swiper-slide img {
  height: auto;
  width: 100%;
}

.category-title {
  position: fixed;
  transform: rotateZ(90deg);
  transform-origin: left bottom;
  top: 50%;
  left: 18px;
  z-index: 10001;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.125em;
  line-height: 1em;
  color: #242424;
  margin-top: -40px;
  opacity: 1;
}

.home-body,
.category-body {
  margin-top: 0px;
  width: 100%;
}
.home-body .page-title,
.category-body .page-title {
  position: fixed;
  transform: rotateZ(90deg);
  transform-origin: left bottom;
  top: 50%;
  left: 18px;
  z-index: 10001;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.125em;
  line-height: 1em;
  color: #242424;
  margin-top: -40px;
  opacity: 1;
}
.home-body .lineup_01,
.category-body .lineup_01 {
  width: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 6.6666666667%;
}
.home-body .lineup_01 .item,
.category-body .lineup_01 .item {
  position: relative;
  padding-bottom: 50px;
}
.home-body .lineup_01 .item-name,
.category-body .lineup_01 .item-name {
  border-top: solid 1px #000;
  margin-top: 20px;
  padding-top: 10px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.075em;
  color: #000;
}
.home-body .lineup_01 .item.w2,
.category-body .lineup_01 .item.w2 {
  width: 16.6666666667%;
}
.home-body .lineup_01 .item.w3,
.category-body .lineup_01 .item.w3 {
  width: 25%;
}
.home-body .lineup_01 .item.w4_5,
.category-body .lineup_01 .item.w4_5 {
  width: 37.5%;
}
.home-body .lineup_01 .item.w6,
.category-body .lineup_01 .item.w6 {
  width: 50%;
}
.home-body .lineup_01 .item.w1,
.category-body .lineup_01 .item.w1 {
  width: 100%;
}
.home-body .lineup_01 .item.w_1_2,
.category-body .lineup_01 .item.w_1_2 {
  width: 50%;
}
.home-body .lineup_01 .item.w_3_15,
.category-body .lineup_01 .item.w_3_15 {
  width: 20%;
}
.home-body .lineup_01 .item.w_4_15,
.category-body .lineup_01 .item.w_4_15 {
  width: 26.6666666667%;
}
.home-body .lineup_01 .item.w_5_15,
.category-body .lineup_01 .item.w_5_15 {
  width: 33.3333333333%;
}
.home-body .lineup_01 .item.w_6_15,
.category-body .lineup_01 .item.w_6_15 {
  width: 40%;
}
.home-body .lineup_01 .item.w_7_15,
.category-body .lineup_01 .item.w_7_15 {
  width: 46.6666666667%;
}
.home-body .lineup_01 .item.w_8_15,
.category-body .lineup_01 .item.w_8_15 {
  width: 53.3333333333%;
}
.home-body .lineup_01 .item.w_9_15,
.category-body .lineup_01 .item.w_9_15 {
  width: 60%;
}
.home-body .lineup_01 .item.w_10_15,
.category-body .lineup_01 .item.w_10_15 {
  width: 66.6666666667%;
}
.home-body .lineup_01 .item.w_11_15,
.category-body .lineup_01 .item.w_11_15 {
  width: 73.3333333333%;
}
.home-body .lineup_01 .item a,
.category-body .lineup_01 .item a {
  display: block;
  width: 100%;
  transition: all 0.3s ease-out;
}
.home-body .lineup_01 .item a .item-media,
.home-body .lineup_01 .item a .item-img,
.category-body .lineup_01 .item a .item-media,
.category-body .lineup_01 .item a .item-img {
  overflow: hidden;
}
.home-body .lineup_01 .item a video,
.home-body .lineup_01 .item a img,
.category-body .lineup_01 .item a video,
.category-body .lineup_01 .item a img {
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.home-body .lineup_01 .item a.w150,
.category-body .lineup_01 .item a.w150 {
  width: 150%;
}
.home-body .lineup_01 .item a:hover video,
.home-body .lineup_01 .item a:hover img,
.category-body .lineup_01 .item a:hover video,
.category-body .lineup_01 .item a:hover img {
  filter: brightness(1.1);
  transform: scale(1.1);
}
.home-body .lineup_01 .item-inner,
.category-body .lineup_01 .item-inner {
  width: 100%;
}
.home-body .lineup_01 .item-inner .item:nth-child(2),
.category-body .lineup_01 .item-inner .item:nth-child(2) {
  padding-bottom: 0;
}
.home-body .lineup_01 .item-inner .w_7_10,
.category-body .lineup_01 .item-inner .w_7_10 {
  width: 70%;
}
.home-body .lineup_01 .item-inner .w_6_10,
.category-body .lineup_01 .item-inner .w_6_10 {
  width: 60%;
}
.home-body .lineup_01 .item-inner .w_4_10,
.category-body .lineup_01 .item-inner .w_4_10 {
  width: 40%;
}
.home-body .lineup_01 .item-inner .ml-auto,
.category-body .lineup_01 .item-inner .ml-auto {
  margin-left: auto;
}
.home-body .lineup_01 .item-inner .mr-auto,
.category-body .lineup_01 .item-inner .mr-auto {
  margin-right: auto;
}
.home-body .abso,
.category-body .abso {
  position: absolute;
  left: 0;
}
.home-body .abso.top100,
.category-body .abso.top100 {
  top: 100px;
}
.home-body .abso.top_100,
.category-body .abso.top_100 {
  top: -100px;
}
.home-body .abso.top_50per,
.category-body .abso.top_50per {
  top: -50%;
}
.home-body .abso.top_30per,
.category-body .abso.top_30per {
  top: -30%;
}
.home-body .abso.top_50,
.category-body .abso.top_50 {
  top: -50px;
}
.home-body .abso.bottom0,
.category-body .abso.bottom0 {
  bottom: 0px;
}
.home-body .scroll-vertical-auto,
.category-body .scroll-vertical-auto {
  aspect-ratio: 10/16;
  overflow: hidden;
}
.home-body .scroll-vertical-auto img,
.category-body .scroll-vertical-auto img {
  display: block;
}
.home-body .scroll-horizontal-auto,
.category-body .scroll-horizontal-auto {
  aspect-ratio: 200/100;
  overflow: hidden;
}
.home-body .scroll-horizontal-auto img,
.category-body .scroll-horizontal-auto img {
  display: block;
  width: auto;
  height: 100%;
}
.home-body .slideshow,
.category-body .slideshow {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  overflow: hidden;
  margin-bottom: 20px; /* スライドショー間のスペース */
}
.home-body .slideshow img,
.category-body .slideshow img {
  position: absolute;
  width: 100%;
  height: 100%;
  display: none;
  -o-object-fit: cover;
     object-fit: cover; /* 画像をスライドショーのサイズにフィット */
}
.home-body .slideshow img.active,
.category-body .slideshow img.active {
  display: block;
}

.section-method {
  width: 100%;
  height: 100vh;
  margin-top: 30vh;
  background: url(/images/bglogo_sample.png) no-repeat center center;
  background-size: contain;
  /*background: #242424 url(/images/method/home_method_bg.jpg) no-repeat center center;
  background-size: contain;*/
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section-method .area-title {
  color: #FFF;
  font-size: 80px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  letter-spacing: 0.075em;
}
.section-method .method-description {
  max-width: 740px;
  margin: 80px auto 0px;
  padding: 80px 30px 200px;
  color: #FFF;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.035em;
  line-height: 2em;
}

.content-btns,
.content-logo {
  margin-top: 124px;
}
.content-btns .area-title,
.content-logo .area-title {
  margin-bottom: 50px;
}
.content-btns li,
.content-logo li {
  margin: 1em 0;
}

.btn1 {
  font-weight: normal;
  font-size: 16px;
  padding: 20px 30px;
  display: inline-block;
  border-radius: 30px;
  border: solid 1px #FFF;
  transition: all 0.3s ease-out;
}
.btn1:hover {
  color: #181818;
  padding: 20px 48px;
  border: solid 1px #eeeee9;
  background: rgba(0, 0, 0, 0.1);
}

.btn2 {
  background: #000;
  color: #fff;
  font-weight: normal;
  font-size: 16px;
  padding: 20px 24px;
  display: inline-block;
  border-radius: 30px;
  transition: all 0.3s ease-out;
}
.btn2:hover {
  color: #FFF;
  padding: 20px 48px;
  background: #e9420a;
}

.btn3 {
  background: #000;
  color: #fff;
  font-weight: normal;
  font-size: 16px;
  padding: 20px 24px;
  display: inline-block;
  border-radius: 30px;
  transition: all 0.3s ease-out;
  position: relative;
}
.btn3:before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 1px;
  background: #FFF;
  opacity: 0;
  transition: all 0.3s ease-out;
}
.btn3:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotateZ(45deg);
  width: 10px;
  height: 10px;
  border-top: solid 1px #FFF;
  border-right: solid 1px #FFF;
  opacity: 0;
  transition: all 0.3s ease-out;
}
.btn3:hover {
  color: #FFF;
  padding: 20px 58px 20px 48px;
  background: #e9420a;
}
.btn3:hover:before, .btn3:hover:after {
  right: 20px;
  opacity: 1;
}

.btn4 {
  font-weight: normal;
  font-size: 16px;
  padding: 20px 60px;
  display: inline-block;
  border-radius: 3px;
  color: #181818;
  transition: all 0.3s;
  background: rgba(0, 0, 0, 0.1);
  border: solid 1px #eeeee9;
}
.btn4:hover {
  color: #181818;
  padding: 20px 60px;
  border: solid 1px #eeeee9;
  background: #FFF;
}

.btn5 {
  background: #000;
  color: #fff;
  font-weight: normal;
  font-size: 16px;
  padding: 16px 24px;
  width: 160px;
  text-align: center;
  display: inline-block;
  border-radius: 2px;
  transition: all 0.3s ease-out;
  position: relative;
}
.btn5:before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 1px;
  background: #FFF;
  opacity: 0;
  transition: all 0.3s ease-out;
}
.btn5:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotateZ(45deg);
  width: 6px;
  height: 6px;
  border-top: solid 1px #FFF;
  border-right: solid 1px #FFF;
  opacity: 0;
  transition: all 0.3s ease-out;
}
.btn5:hover {
  color: #FFF;
  width: 160px;
  padding: 16px 32px 16px 16px;
  background: #e9420a;
}
.btn5:hover:before, .btn5:hover:after {
  right: 20px;
  opacity: 1;
}

.box {
  background-color: #dedede;
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
  transform: translateY(150px);
}

.box.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.logo2 {
  margin: 0 auto;
  padding: 16px;
  border: solid 1px #FFF;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #e82314;
}
.logo2 .asset1,
.logo2 .asset2,
.logo2 .asset3 {
  display: flex;
  justify-content: space-between;
}
.logo2 .asset1 img,
.logo2 .asset2 img,
.logo2 .asset3 img {
  height: 14px;
  width: auto;
}

@-webkit-keyframes zoomOutAnime {
  from {
    transform: scale(2);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomOutAnime {
  from {
    transform: scale(2);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.fade-in {
  opacity: 0;
  transition-duration: 800ms;
  transition-property: opacity, transform;
}

.fade-in-up {
  transform: translate(0, 50px);
}

.fade-in-down {
  transform: translate(0, -50px);
}

.fade-in-left {
  transform: translate(-50px, 0);
}

.fade-in-right {
  transform: translate(50px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

.page-img,
.page-video {
  margin-top: 50px;
}
@media only screen and (max-width: 640px) {
  .page-img,
.page-video {
    margin-top: 20px;
  }
}
.page-img:first-child,
.page-video:first-child {
  margin-top: 0px;
}

.page-video iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.method-inner {
  padding: 0 50px;
}
.method-inner h2 {
  font-size: 28px;
  font-weight: 400;
  padding-bottom: 20px;
  border-bottom: solid 2px #000;
  margin: 150px 0 80px;
  letter-spacing: 0.05em;
}

@-webkit-keyframes subNavFade {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes subNavFade {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}
.relations-inner {
  width: 100%;
  padding: 300px 50px 200px;
  background: url(/images/bglogo_sample.png) no-repeat center center;
  background-size: contain;
  background-attachment: fixed;
}
@media only screen and (max-width: 640px) {
  .relations-inner {
    padding: 100px 20px 500px;
  }
}
.relations-block {
  max-width: 1300px;
  margin: 110px auto 0;
}
@media only screen and (max-width: 640px) {
  .relations-block {
    margin: 50px auto 0;
  }
}
.relations-block:first-child {
  margin-top: 0;
}
.relations-title {
  /*.hash-icon {
  	transform: skew(-10deg) translateY(2px) scale(0.5);
  	transform-origin: top left;
  }*/
}
.relations-title .hash-link {
  display: block;
  margin-bottom: 20px;
  overflow: hidden;
}
@media only screen and (max-width: 640px) {
  .relations-title .hash-link {
    margin-bottom: 12px;
  }
}
.relations-title .hash-link:hover {
  color: #e9420a;
  text-decoration: underline;
}
.relations-title .hash-text {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1em;
  letter-spacing: 0.075em;
  color: #FFF;
  /*margin-left: -20px;*/
}
@media only screen and (max-width: 640px) {
  .relations-title .hash-text {
    font-size: 14px;
  }
}
.relations-title svg {
  width: 30px;
  height: 30px;
}
.relations-title .line {
  fill: none;
  stroke: #FFF;
  stroke-width: 2;
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  -webkit-animation: draw 0.8s forwards;
          animation: draw 0.8s forwards;
}
.relations-title .l1 {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.relations-title .l2 {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.relations-title .l3 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.relations-title .l4 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.relations-col3 {
  margin-top: 10px;
  display: flex;
  gap: 40px;
}
@media only screen and (max-width: 640px) {
  .relations-col3 {
    gap: 10px;
  }
}
.relations-col3 .relation-item {
  width: calc(33.3333333333% - 20px);
}
@media only screen and (max-width: 640px) {
  .relations-col3 .relation-item {
    width: 33.3333333333%;
  }
}
.relations-col3 .relation-item a {
  display: block;
  position: relative;
  color: #FFF;
}
.relations-col3 .relation-item a .item-info {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: all 0.3s;
  transform: scale(1.1);
}
.relations-col3 .relation-item a:hover .item-info {
  opacity: 1;
  transform: scale(1);
}

@-webkit-keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}