@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=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&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");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..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: 100%;
}

body.noscroll {
  overflow: hidden;
}

body::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -10;
  transition: background-color 0.6s;
}

body.dark::after {
  /*background-color: $gray-black3;
  background-image: url(/assets/images/common/sign_by_garvin.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-attachment: fixed;*/
}
body.dark.no-garvin::after {
  background-color: #474747;
}

.main-bg {
  display: none;
}
body.dark .main-bg {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  font-size: 0;
  text-indent: -9999;
  width: 100%;
  height: 100%;
  background: #474747 url(/assets/images/common/sign_by_girvin.png?2) no-repeat center center;
  background-size: contain;
  background-attachment: fixed;
  z-index: -10;
  transition: background-color 0.6s;
  /*&.dark {
  	background: $gray-black3 url(/assets/images/common/sign_by_garvin.png) no-repeat center center;
  	background-size: contain;
  	background-attachment: fixed;
  }
  &.dark.works {
  	background-image: none;
  }*/
}

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;
}

.lazy-fade {
  opacity: 0;
  display: block;
  transition: opacity 1s ease-in-out;
  width: 100%;
  height: auto;
}

.lazy-fade.loaded {
  opacity: 1;
}

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

.image-wrapper {
  position: relative;
  width: 200px;
  height: auto;
}

.loading-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px; /* ローディングアイコンのサイズ */
  height: 30px;
}

.lazy-load-image {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  width: 100%;
  height: auto;
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFF;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  pointer-events: none;
}

#loading.hidden {
  -webkit-animation: animation-opacity 1s forwards;
          animation: animation-opacity 1s forwards;
}

.loading-notext {
  position: relative;
  box-sizing: border-box;
  width: 80px;
  height: 80px;
  font-size: 0;
  text-indent: -9999px;
  margin: 10px 20px;
  align-items: center;
  justify-content: center;
}

.loading-square {
  position: relative;
  box-sizing: border-box;
  width: 80px;
  height: 80px;
  background: linear-gradient(90deg, #FF0F00 35%, #ff9211 100%);
  /*display: inline-flex;*/
  margin: 10px 20px;
  align-items: center;
  justify-content: center;
  -webkit-animation: animation-5c 0.8s ease forwards;
          animation: animation-5c 0.8s ease forwards;
}

.loading-square:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 10px;
  box-sizing: border-box;
  background: url(/assets/images/common/footer_logo.png) no-repeat center center;
  background-size: 80%;
  /*border: 1px solid var(--primary);*/
  /*animation: animation-5b 2s ease-in-out infinite;*/
}

/*.loading-square:after {
	content: '';
	position: absolute;
	width: 70%;
	height: 70%;
	box-sizing: border-box;
	border: 1px solid #eb550f;
	transform: rotatez(45deg);
	animation: animation-5a 2s ease-in-out infinite;
}*/
/* Loading 5 */
@-webkit-keyframes animation-opacity {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes animation-opacity {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes animation-5 {
  0% {
    transform: rotatey(0deg);
  }
  100% {
    transform: rotate(90deg);
  }
}
@keyframes animation-5 {
  0% {
    transform: rotatey(0deg);
  }
  100% {
    transform: rotate(90deg);
  }
}
@-webkit-keyframes animation-5b {
  0% {
    width: 100%;
    height: 100%;
  }
  50% {
    width: 70%;
    height: 70%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}
@keyframes animation-5b {
  0% {
    width: 100%;
    height: 100%;
  }
  50% {
    width: 70%;
    height: 70%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}
@-webkit-keyframes animation-5a {
  0% {
    width: 70%;
    height: 70%;
  }
  50% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 70%;
    height: 70%;
  }
}
@keyframes animation-5a {
  0% {
    width: 70%;
    height: 70%;
  }
  50% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 70%;
    height: 70%;
  }
}
@-webkit-keyframes animation-5c {
  from {
    background-color: #FFF;
  }
  to {
    transform: translateY(0px);
    background-color: #eb550f;
  }
}
@keyframes animation-5c {
  from {
    background-color: #FFF;
  }
  to {
    transform: translateY(0px);
    background-color: #eb550f;
  }
}
body.logo-hidden .loading-square {
  -webkit-animation: animation-opacity 1s forwards;
          animation: animation-opacity 1s forwards;
}

/*
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(#F00, 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;
  font-size: 0;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  pointer-events: none;
  /*background: rgba(#F0F, 0.1);*/
}

.transition2 {
  position: fixed;
  z-index: 1001;
  display: flex;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  /*background: rgba(#F00, 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;
  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 {
  width: 100%;
  height: 200px;
  transition: all 0.3s ease-out;
  position: fixed;
  z-index: 100;
}
@media only screen and (max-width: 768px) {
  #header {
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    height: 180px;
  }
}
#header #site-title {
  width: 120px;
  height: 120px;
  font-family: "Roboto", sans-serif;
  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: 768px) {
  #header #site-title {
    width: 24vw;
    top: 7vw;
    left: 7vw;
  }
}
#header #site-title a {
  display: block;
  background: linear-gradient(90deg, #FF0F00 35%, #ff9211 100%);
}
#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 .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;
  width: 130px;
  padding-right: 7vw;
  z-index: 1000;
  transition: all 0.3s ease-out;
}
@media only screen and (max-width: 768px) {
  #header #btn-menu {
    display: block;
    top: calc(31vw - 2.2rem);
    right: 0;
  }
}
#header #btn-menu span {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 10px 0;
}
body.dark #header #btn-menu span {
  color: #b8b8b8;
}
#header #btn-menu span::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: #000;
}
body.dark #header #btn-menu span::after {
  background: #b8b8b8;
}
#header #btn-menu span::before {
  content: "MENU ";
  /*display: none;
  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: 768px) {
  #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;
  transition: all 0.6s ease;
}
@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 span.nolink,
#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 span.nolink span,
#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;
}
@media only screen and (max-width: 768px) {
  #header .header-nav ul li span.nolink span,
#header .header-nav ul li a span {
    padding: 10px 0;
  }
}
#header .header-nav ul li span.nolink:hover span,
#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: 768px) {
  #header .header-nav ul.gnav {
    flex-direction: column;
    position: fixed;
    right: 0;
    gap: 35px;
    top: -100vh;
    width: calc(50% + 2.4em);
    align-items: flex-start;
  }
}
@media only screen and (max-width: 768px) {
  #header .header-nav ul.gnav li {
    width: 100%;
  }
}
#header .header-nav ul.gnav li span.nolink,
#header .header-nav ul.gnav li a {
  display: block;
  font-weight: 500;
  position: relative;
}
@media only screen and (max-width: 768px) {
  #header .header-nav ul.gnav li span.nolink,
#header .header-nav ul.gnav li a {
    width: 100%;
    font-size: 16px;
    opacity: 0;
    transform: translateY(-50px);
  }
  #header .header-nav ul.gnav li span.nolink span,
#header .header-nav ul.gnav li a span {
    background-color: #FFF;
  }
}
#header .header-nav ul.gnav li span.nolink::after,
#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: 768px) {
  #header .header-nav ul.gnav li span.nolink::after,
#header .header-nav ul.gnav li a::after {
    background: #FFF;
    width: calc(100% - 30px);
    left: 0;
    height: 1px;
  }
}
#header .header-nav ul.gnav li span.nolink:hover:after,
#header .header-nav ul.gnav li a:hover:after {
  left: 0;
  width: 100%;
}
#header .header-nav ul.gnav li span.nolink.current,
#header .header-nav ul.gnav li a.current {
  color: #e9420a;
}
#header .header-nav ul.gnav li span.nolink.current:after,
#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: 768px) {
  #header .header-nav ul.lang {
    flex-direction: row;
    position: fixed;
    top: calc(7vw - 10px);
    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: 768px) {
  #header .header-nav ul.lang span.current span {
    padding: 10px 0;
    background-color: #e9420a;
  }
}
#header .header-nav ul.lang span.current span.zh {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}
@media only screen and (max-width: 768px) {
  #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);
}
#header .header-nav ul.lang a span.zh {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}
@media only screen and (max-width: 768px) {
  #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: 768px) {
  #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: 768px) {
  #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;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  #header .header-nav ul.categories {
    display: block;
    position: static;
    padding-left: 2em;
    padding-top: 0.8em;
  }
}
#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: 768px) {
  #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;
}
@media only screen and (max-width: 768px) {
  #header .header-nav ul.categories li a span {
    padding: 15px 30px 10px 0;
  }
}
#header .header-nav ul.categories li a:after {
  display: none;
}
#header.scrolled {
  height: 80px;
  border-bottom: solid 1px #E7E7E7;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}
#header.scrolled #site-title {
  width: 80px;
  height: 80px;
  top: 0px;
}
#header.scrolled .header-nav {
  padding-top: 20px;
}
#header.scrolled .header-nav::after {
  opacity: 0;
}
body.dark #header.scrolled {
  border-bottom: none;
  background-color: rgba(51, 51, 51, 0.8);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}
body.dark #header .header-nav::after {
  background: #b8b8b8;
}
body.dark #header .header-nav ul li span.nolink,
body.dark #header .header-nav ul li a {
  color: #FFF;
}
body.dark #header .header-nav ul li span.nolink span,
body.dark #header .header-nav ul li a span {
  background-color: #b8b8b8;
}
body.dark #header .header-nav ul li span.nolink:hover span,
body.dark #header .header-nav ul li a:hover span {
  background-color: #FFF;
}
body.dark #header .header-nav ul.lang span.current span {
  background-color: #b8b8b8;
}
#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: 768px) {
  #header.opened #btn-menu span {
    color: #474747;
  }
}
@media only screen and (max-width: 768px) {
  #header.opened #btn-menu span::after {
    background: #FFF;
  }
}
#header.opened #btn-menu span::before {
  content: "CLOSE";
  display: inline-block;
  opacity: 1;
}
#header.opened .header-nav {
  top: 0;
  opacity: 1;
}
@media only screen and (max-width: 768px) {
  #header.opened .header-nav {
    overflow-y: auto;
  }
}
@media only screen and (max-width: 768px) {
  #header.opened .header-nav ul li span.nolink,
#header.opened .header-nav ul li a {
    opacity: 1;
    transform: translateY(0px);
  }
  #header.opened .header-nav ul li span.nolink span,
#header.opened .header-nav ul li a span {
    background-color: #FFF;
  }
}
@media only screen and (max-width: 768px) {
  #header.opened .header-nav ul.gnav {
    top: calc(31vw + 30px);
  }
}
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: 768px) {
  main .page-inner {
    /*padding: 48vw 7vw 100px;*/
    padding: 48vw 0 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;
}
body.dark main .page-inner .item-info {
  border-top: solid 1px #b8b8b8;
}
@media only screen and (max-width: 768px) {
  main .page-inner .item-info {
    margin: 7vw 0 0 7vw;
    padding-right: 7vw;
  }
}
main .page-inner .item-info .item-title {
  font-size: 16px;
  letter-spacing: 0.075em;
  font-weight: 400;
  line-height: 1.5;
}
body.dark main .page-inner .item-info .item-title {
  color: #EFEFEF;
}
main .page-inner .item-info .item-description {
  margin-top: 2em;
  font-size: 12px;
  color: #484848;
  line-height: 1.8em;
  max-width: 640px;
}
body.dark main .page-inner .item-info .item-description {
  color: #EFEFEF;
}
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: 768px) {
  .swiper {
    margin: 0 auto 70px;
  }
}

.swiper-slide {
  text-align: center;
  font-size: 16px;
  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);
  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;
  background-color: #b8b8b8;
}

.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%;
}
@media only screen and (max-width: 768px) {
  .home-body,
.category-body {
    padding-top: 7vw;
  }
}
.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%;
}
@media only screen and (max-width: 768px) {
  .home-body .lineup_01,
.category-body .lineup_01 {
    padding: 0 7vw;
    gap: 20px;
    justify-content: space-between;
  }
}
.home-body .lineup_01 .item,
.category-body .lineup_01 .item {
  position: relative;
  padding-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .home-body .lineup_01 .item,
.category-body .lineup_01 .item {
    padding-bottom: 15px;
  }
}
.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%;
}
@media only screen and (max-width: 768px) {
  .home-body .lineup_01 .item.w_3_15,
.category-body .lineup_01 .item.w_3_15 {
    width: 33.3333333333%;
  }
}
.home-body .lineup_01 .item.w_4_15,
.category-body .lineup_01 .item.w_4_15 {
  width: 26.6666666667%;
}
@media only screen and (max-width: 768px) {
  .home-body .lineup_01 .item.w_4_15,
.category-body .lineup_01 .item.w_4_15 {
    width: 40%;
  }
}
.home-body .lineup_01 .item.w_5_15,
.category-body .lineup_01 .item.w_5_15 {
  width: 33.3333333333%;
}
@media only screen and (max-width: 768px) {
  .home-body .lineup_01 .item.w_5_15,
.category-body .lineup_01 .item.w_5_15 {
    width: 53.3333333333%;
  }
}
.home-body .lineup_01 .item.w_6_15,
.category-body .lineup_01 .item.w_6_15 {
  width: 40%;
}
@media only screen and (max-width: 768px) {
  .home-body .lineup_01 .item.w_6_15,
.category-body .lineup_01 .item.w_6_15 {
    width: 53.3333333333%;
  }
}
.home-body .lineup_01 .item.w_7_15,
.category-body .lineup_01 .item.w_7_15 {
  width: 46.6666666667%;
}
@media only screen and (max-width: 768px) {
  .home-body .lineup_01 .item.w_7_15,
.category-body .lineup_01 .item.w_7_15 {
    width: 93.3333333333%;
  }
}
.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%;
}
@media only screen and (max-width: 768px) {
  .home-body .lineup_01 .item.w_10_15,
.category-body .lineup_01 .item.w_10_15 {
    width: 100%;
  }
}
.home-body .lineup_01 .item.w_11_15,
.category-body .lineup_01 .item.w_11_15 {
  width: 73.3333333333%;
}
@media only screen and (max-width: 768px) {
  .home-body .lineup_01 .item.sp-center,
.category-body .lineup_01 .item.sp-center {
    margin: 0 auto;
  }
}
.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 .lineup_02,
.category-body .lineup_02 {
  width: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .home-body .lineup_02,
.category-body .lineup_02 {
    padding: 0 24px;
    justify-content: center;
  }
}
.home-body .lineup_02 .item,
.category-body .lineup_02 .item {
  position: relative;
  padding: 20px 30px 80px;
}
.home-body .lineup_02 .item:nth-child(10n),
.category-body .lineup_02 .item:nth-child(10n) {
  width: 42%;
  padding-right: 0;
}
.home-body .lineup_02 .item:nth-child(10n-1),
.category-body .lineup_02 .item:nth-child(10n-1) {
  width: 58%;
  padding-left: 0;
}
.home-body .lineup_02 .item:nth-child(10n-2),
.category-body .lineup_02 .item:nth-child(10n-2) {
  width: 36%;
  padding-right: 0;
  margin-top: -40px;
}
.home-body .lineup_02 .item:nth-child(10n-3),
.category-body .lineup_02 .item:nth-child(10n-3) {
  width: 30%;
  margin-top: 50px;
}
.home-body .lineup_02 .item:nth-child(10n-4),
.category-body .lineup_02 .item:nth-child(10n-4) {
  width: 34%;
  padding-left: 0;
  margin-top: 50px;
}
.home-body .lineup_02 .item:nth-child(10n-5),
.category-body .lineup_02 .item:nth-child(10n-5) {
  width: 42%;
  padding-right: 0;
}
.home-body .lineup_02 .item:nth-child(10n-6),
.category-body .lineup_02 .item:nth-child(10n-6) {
  width: 58%;
  margin-top: -50px;
  padding-left: 0;
}
.home-body .lineup_02 .item:nth-child(10n-7),
.category-body .lineup_02 .item:nth-child(10n-7) {
  width: 34%;
  padding-right: 0;
}
.home-body .lineup_02 .item:nth-child(10n-8),
.category-body .lineup_02 .item:nth-child(10n-8) {
  width: 28%;
}
.home-body .lineup_02 .item:nth-child(10n-9),
.category-body .lineup_02 .item:nth-child(10n-9) {
  width: 38%;
  padding-left: 0;
}
@media only screen and (max-width: 768px) {
  .home-body .lineup_02 .item,
.category-body .lineup_02 .item {
    padding: 0 20px;
    margin: 30px 0 !important;
  }
  .home-body .lineup_02 .item:nth-child(10n),
.category-body .lineup_02 .item:nth-child(10n) {
    width: 42%;
  }
  .home-body .lineup_02 .item:nth-child(10n-1),
.category-body .lineup_02 .item:nth-child(10n-1) {
    width: 58%;
  }
  .home-body .lineup_02 .item:nth-child(10n-2),
.category-body .lineup_02 .item:nth-child(10n-2) {
    width: 50%;
  }
  .home-body .lineup_02 .item:nth-child(10n-3),
.category-body .lineup_02 .item:nth-child(10n-3) {
    width: 50%;
  }
  .home-body .lineup_02 .item:nth-child(10n-4),
.category-body .lineup_02 .item:nth-child(10n-4) {
    width: 75%;
    margin: 30px 0 30px auto !important;
  }
  .home-body .lineup_02 .item:nth-child(10n-5),
.category-body .lineup_02 .item:nth-child(10n-5) {
    width: 42%;
    padding-right: 0px !important;
  }
  .home-body .lineup_02 .item:nth-child(10n-6),
.category-body .lineup_02 .item:nth-child(10n-6) {
    width: 58%;
    padding-left: 0px !important;
  }
  .home-body .lineup_02 .item:nth-child(10n-7),
.category-body .lineup_02 .item:nth-child(10n-7) {
    width: 72%;
    margin: 0 auto;
    padding: 0 !important;
  }
  .home-body .lineup_02 .item:nth-child(10n-8),
.category-body .lineup_02 .item:nth-child(10n-8) {
    width: 45%;
    padding-right: 0 !important;
  }
  .home-body .lineup_02 .item:nth-child(10n-9),
.category-body .lineup_02 .item:nth-child(10n-9) {
    width: 55%;
    padding-left: 0 !important;
  }
}
.home-body .lineup_02 .item-name,
.category-body .lineup_02 .item-name {
  border-top: solid 1px #b8b8b8;
  margin-top: 20px;
  padding-top: 10px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.075em;
  color: #000;
}
.home-body .lineup_02 .item a,
.category-body .lineup_02 .item a {
  display: block;
  width: 100%;
  transition: all 0.3s ease-out;
}
.home-body .lineup_02 .item a .item-media,
.home-body .lineup_02 .item a .item-img,
.category-body .lineup_02 .item a .item-media,
.category-body .lineup_02 .item a .item-img {
  overflow: hidden;
}
.home-body .lineup_02 .item a video,
.home-body .lineup_02 .item a img,
.category-body .lineup_02 .item a video,
.category-body .lineup_02 .item a img {
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.home-body .lineup_02 .item a.w150,
.category-body .lineup_02 .item a.w150 {
  width: 150%;
}
.home-body .lineup_02 .item a:hover video,
.home-body .lineup_02 .item a:hover img,
.category-body .lineup_02 .item a:hover video,
.category-body .lineup_02 .item a:hover img {
  filter: brightness(1.1);
  transform: scale(1.1);
}
body.dark .home-body .lineup_01 .item-name,
body.dark .home-body .lineup_02 .item-name,
body.dark .category-body .lineup_01 .item-name,
body.dark .category-body .lineup_02 .item-name {
  border-top: solid 1px #b8b8b8;
  color: #b8b8b8;
}
.home-body .abso,
.category-body .abso {
  position: absolute;
  left: 0;
}
@media only screen and (max-width: 768px) {
  .home-body .abso,
.category-body .abso {
    position: static;
    top: 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_20per,
.category-body .abso.top_20per {
  top: -20%;
}
.home-body .abso.top_30per,
.category-body .abso.top_30per {
  top: -30%;
}
.home-body .abso.top_32per,
.category-body .abso.top_32per {
  top: -32%;
}
.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-links {
  width: 100%;
  max-width: 1300px;
  margin: 50px auto;
}
.section-links ul {
  display: flex;
  padding: 0 20px;
}
.section-links li {
  width: 50%;
  padding: 50px;
}
.section-links li a {
  display: block;
  font-size: 64px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1;
  position: relative;
  box-shadow: 0 5px 20px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-out;
  overflow: hidden;
}
.section-links li a span.link-text {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.section-links li a .link-img {
  transition: all 0.3s ease-out;
}
.section-links li a:hover {
  color: #555;
}
.section-links li a:hover .link-img {
  transform: scale(1.1);
  opacity: 0.5;
}

.section-footer {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  /*background: url(/assets/images/common/sign_tda_by_garvin_credit.png) no-repeat center center;
  background-size: contain;*/
}
@media only screen and (max-width: 768px) {
  .section-footer {
    height: 170vw;
    flex-direction: column;
  }
}
.section-footer-links {
  transform: translateY(-20px);
}
@media only screen and (max-width: 768px) {
  .section-footer-links {
    margin-top: auto;
    padding-top: 60px;
  }
}
.section-footer-links ul {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .section-footer-links ul {
    flex-direction: column;
  }
}
.section-footer-links ul li {
  margin: 0 50px;
}
@media only screen and (max-width: 768px) {
  .section-footer-links ul li {
    margin: 1.5em 0;
  }
}
.section-footer-links ul li a {
  display: block;
  padding: 30px 10px;
  width: 240px;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
  /*border-bottom: solid 1px #FFF;*/
  transition: all 0.3s ease-out;
}
@media only screen and (max-width: 768px) {
  .section-footer-links ul li a {
    font-size: 18px;
    padding: 20px 10px;
  }
}
.section-footer-links ul li a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0.8);
  background: #AAA;
  transition: all 0.3s ease-out;
}
@media only screen and (min-width: 769px) {
  .section-footer-links ul li a:hover {
    color: #FFF;
  }
  .section-footer-links ul li a:hover::after {
    transform: scaleX(1);
    background: #FFF;
  }
}
.section-footer .footer-logo {
  width: 70px;
  height: 70px;
  position: absolute;
  bottom: 50px;
  left: 50px;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .section-footer .footer-logo {
    position: static;
    margin-top: auto;
    margin-bottom: 60px;
  }
}

.section-method {
  width: 100%;
  height: 100vh;
  margin-top: 30vh;
  background: url(/assets/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;
}
@media only screen and (max-width: 768px) {
  .section-method .method-description {
    line-height: 1.8em;
  }
}

.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: 768px) {
  .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;
}

.entry img {
  display: block;
  margin-top: 2em;
}
.entry img:first-child {
  margin-top: 0;
}
.entry iframe {
  margin-top: 2em;
  width: 100% !important;
  height: auto;
  aspect-ratio: 560/315;
}
.entry .col1 {
  margin-top: 2em;
}
.entry .col1:first-child {
  margin-top: 0;
}
.entry .col2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2em;
  gap: 2em;
}
.entry .col2._nomargin {
  gap: 0;
}
.entry .col2-l {
  display: flex;
  justify-content: space-between;
  margin-top: 2em;
}
.entry .col2-l div:nth-child(1) {
  width: calc(62.4% - 1em);
}
.entry .col2-l div:nth-child(2) {
  width: calc(37.6% - 1em);
}
.entry .col2-r {
  display: flex;
  justify-content: space-between;
  margin-top: 2em;
}
.entry .col2-r div:nth-child(1) {
  width: calc(37.6% - 1em);
}
.entry .col2-r div:nth-child(2) {
  width: calc(62.4% - 1em);
}
.entry .col3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2em;
  gap: 2em;
}
.entry .col3._nomargin {
  gap: 0;
}

/* Method */
.contact-inner {
  padding: 0 50px;
}
.contact-table {
  width: 640px;
  margin: 0 auto;
}
.contact-table table {
  width: 100%;
}
.contact-table th, .contact-table td {
  padding: 10px;
  font-size: 16px;
  font-weight: 400;
}
.contact-table input[type=text],
.contact-table input[type=email],
.contact-table textarea {
  width: 100%;
  border: solid 1px #CCC;
  padding: 4px;
}
.contact-table .btn-submit {
  margin-top: 30px;
  text-align: center;
}

/* Method */
.method-inner {
  padding-left: 120px;
}
@media only screen and (max-width: 768px) {
  .method-inner {
    padding: 0;
  }
}
.method-intro {
  margin-bottom: 200px;
  padding-left: 80px;
}
@media only screen and (max-width: 768px) {
  .method-intro {
    margin: 0;
    padding: 0;
  }
}
.method-intro p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 2.4em;
  margin-bottom: 2em;
  letter-spacing: 0.05em;
  color: #555;
  max-width: 640px;
}
.method-intro p.catch1 {
  font-size: 28px;
  font-weight: 400;
  line-height: 2em;
  margin-bottom: 1.4em;
  color: #555555;
}
@media only screen and (max-width: 768px) {
  .method-intro p.catch1 {
    line-height: 1.8em;
  }
}
.method-intro p.catch2 {
  font-size: 22px;
  font-weight: 400;
  line-height: 2em;
  margin-top: 3em;
  margin-bottom: 1.4em;
  color: #555555;
}
@media only screen and (max-width: 768px) {
  .method-intro p.catch2 {
    line-height: 1.8em;
  }
}
@media only screen and (max-width: 768px) {
  .method-intro p {
    padding: 0 24px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 768px) {
  .method-intro p {
    line-height: 1.8em;
  }
}
@media only screen and (max-width: 768px) {
  .method-intro p br {
    display: none;
  }
}
.method-section {
  position: relative;
  width: 100%;
}
.method-section::after {
  content: "";
  display: block;
  background: #000;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0px;
}
@media only screen and (max-width: 768px) {
  .method-section::after {
    display: none;
  }
}
.method-section h2.section-title {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 42px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #555555;
  position: -webkit-sticky;
  position: sticky;
  top: 40px;
  left: 0;
  padding-right: 30px;
  transform: translateX(-40px) rotateZ(90deg);
  transform-origin: top left;
}
@media only screen and (max-width: 768px) {
  .method-section h2.section-title {
    position: static;
    font-size: 36px;
    margin: 2em 24px 1em;
    transform: none;
  }
}
.method-section-inner {
  padding-left: 80px;
}
@media only screen and (max-width: 768px) {
  .method-section-inner {
    padding: 0;
  }
}
.method-flow {
  padding-bottom: 200px;
}
@media only screen and (max-width: 768px) {
  .method-flow {
    padding-bottom: 100px;
  }
}
.method-flow dl {
  display: flex;
  justify-content: flex-start;
  margin-top: 80px;
}
@media only screen and (max-width: 768px) {
  .method-flow dl {
    flex-direction: column;
    padding: 0 24px;
    margin-top: 40px;
  }
}
.method-flow dl:first-child {
  margin-top: -50px;
}
@media only screen and (max-width: 768px) {
  .method-flow dl:first-child {
    margin-top: 0;
  }
}
.method-flow dl dt {
  width: 220px;
  font-size: 42px;
  font-weight: 400;
  color: #555555;
  line-height: 1em;
  font-family: "Roboto Condensed", sans-serif;
}
.method-flow dl dt .en {
  display: block;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.025em;
}
@media only screen and (max-width: 768px) {
  .method-flow dl dt {
    width: 100%;
  }
}
.method-flow dl dd {
  width: calc(100% - 220px);
  max-width: 400px;
}
.method-flow dl dd h3 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 22.6px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #ff5a00;
  margin-bottom: 1em;
}
.method-flow dl dd p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #555;
  line-height: 1.7em;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 768px) {
  .method-flow dl dd {
    width: 100%;
  }
  .method-flow dl dd br {
    display: none;
  }
}
.method-creator {
  padding-top: 20px;
  padding-bottom: 200px;
}
@media only screen and (max-width: 768px) {
  .method-creator {
    padding-bottom: 100px;
  }
}
.method-creator::before {
  content: "";
  display: block;
  background: #000;
  width: calc(100% - 80px);
  height: 1px;
  position: absolute;
  top: 0;
  left: 80px;
}
@media only screen and (max-width: 768px) {
  .method-creator::before {
    width: calc(100% - 24px);
    left: 24px;
  }
}
.method-creator sup {
  font-size: 11px;
}
.method-creator h3.catch1 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: #555;
  line-height: 1.7em;
  letter-spacing: 0.1em;
  margin-bottom: 1em;
}
@media only screen and (max-width: 768px) {
  .method-creator h3.catch1 {
    padding: 0 24px;
  }
  .method-creator h3.catch1 br {
    display: none;
  }
}
.method-creator p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #555;
  line-height: 1.7em;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 768px) {
  .method-creator p {
    padding: 0 24px;
  }
}
.method-creator h4.catch2 {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 21px;
  font-weight: 400;
  color: #555;
  line-height: 1.7em;
  letter-spacing: 0.1em;
  margin-top: 3em;
}
@media only screen and (max-width: 768px) {
  .method-creator h4.catch2 {
    padding: 0 24px;
  }
}
.method-creator-col2 {
  display: flex;
  margin-top: 1.3em;
}
.method-creator-col2 p {
  width: 50%;
  padding-top: 1%;
  padding-right: 50px;
}
.method-creator-col2 figure.imaginator {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .method-creator-col2 {
    flex-direction: column;
  }
  .method-creator-col2 p {
    width: 100%;
    padding-top: 1%;
    padding-right: 50px;
  }
  .method-creator-col2 figure.imaginator {
    width: 100%;
    max-width: 560px;
    margin: 40px auto 0;
    padding-right: 4%;
  }
}
.method-creator-col3 {
  display: flex;
  margin-top: 1.3em;
}
@media only screen and (max-width: 768px) {
  .method-creator-col3 {
    flex-direction: column;
    padding: 0 24px;
  }
}
.method-creator-col3 dl {
  width: 33.3333333333%;
  padding-right: 50px;
}
@media only screen and (max-width: 768px) {
  .method-creator-col3 dl {
    width: 100%;
    padding: 0;
    margin-bottom: 40px;
  }
}
.method-creator-col3 dl dt {
  font-family: "Roboto Condensed", "Noto Sans JP", sans-serif;
  background: #aaaaaa;
  color: #FFF;
  padding: 5px 10px;
  text-align: center;
  font-size: 20px;
}
.method-creator-col3 dl dt .en {
  font-size: 23px;
  margin-left: 5px;
}
@media only screen and (max-width: 768px) {
  .method-creator-col3 dl dt {
    font-size: 18px;
    text-align: left;
  }
  .method-creator-col3 dl dt .en {
    font-size: 21px;
    margin-left: 5px;
  }
}
.method-creator-col3 dl dd {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #555;
  line-height: 1.7em;
  letter-spacing: 0.035em;
  margin-top: 1em;
}
@media only screen and (max-width: 768px) {
  .method-creator-col3 dl dd {
    margin-top: 0.75em;
  }
}
.method-referencecase {
  padding-top: 20px;
  padding-bottom: 100px;
}
.method-referencecase p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #555;
  line-height: 1.7em;
  letter-spacing: 0.1em;
}
.method-referencecase p.catch1 {
  font-size: 28px;
  margin-bottom: 1em;
}
@media only screen and (max-width: 768px) {
  .method-referencecase p {
    padding: 0 24px;
  }
  .method-referencecase p.catch1 {
    margin-bottom: 0.5em;
  }
}
.method-referencecase::before {
  content: "";
  display: block;
  background: #000;
  width: calc(100% - 80px);
  height: 1px;
  position: absolute;
  top: 0;
  left: 80px;
}
@media only screen and (max-width: 768px) {
  .method-referencecase::before {
    width: calc(100% - 24px);
    left: 24px;
  }
}
.method-referencecase-img {
  width: 360px;
  margin: 50px auto;
}
@media only screen and (max-width: 768px) {
  .method-referencecase-img {
    width: 62%;
    margin: 0 auto;
    position: relative;
  }
}
.method-referencecase .circle {
  position: absolute;
  width: 110px;
  padding-top: 110px;
  background-color: none;
  /*border: solid 1px #555;
  border-radius: 50%;*/
  opacity: 0;
  transition: all 1s 1s;
}
.method-referencecase .circle span {
  position: absolute;
  display: block;
  display: block;
  border: solid 1px #555;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.method-referencecase .circle.circle1 {
  top: 0;
  left: 50%;
  margin-left: -60px;
}
.method-referencecase .circle.circle1::after {
  content: "";
  display: block;
  width: 310px;
  height: 60px;
  margin-top: -15px;
  margin-right: 37px;
  border-bottom: solid 1px #555;
  border-right: solid 1px #555;
  transform: skewX(-45deg);
  transform-origin: top right;
  position: absolute;
  top: 108px;
  right: 50%;
}
@media only screen and (max-width: 768px) {
  .method-referencecase .circle.circle1::after {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .method-referencecase .circle.circle1 {
    width: 25%;
    padding-top: 25%;
    top: 0%;
    left: 36%;
    margin-left: 0;
  }
  .method-referencecase .circle.circle1::before {
    content: "1.";
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-100%) translateY(-50%);
  }
}
.method-referencecase .circle.circle2 {
  top: 210px;
  left: 50%;
  margin-left: -85px;
}
.method-referencecase .circle.circle2::after {
  content: "";
  display: block;
  width: 245px;
  height: 30px;
  margin-top: 0;
  margin-right: 54px;
  border-bottom: solid 1px #555;
  border-right: solid 1px #555;
  transform: skewX(-45deg);
  transform-origin: top right;
  position: absolute;
  top: 55px;
  right: 50%;
}
@media only screen and (max-width: 768px) {
  .method-referencecase .circle.circle2::after {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .method-referencecase .circle.circle2 {
    width: 32%;
    padding-top: 32%;
    top: 35%;
    left: 25.5%;
    margin-left: 0;
    /*left: 39%;
    margin-left: 0;*/
  }
  .method-referencecase .circle.circle2 span {
    border: solid 1px #BBB;
  }
  .method-referencecase .circle.circle2::before {
    content: "2.";
    color: #BBB;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-100%) translateY(-50%);
  }
}
.method-referencecase .circle.circle4 {
  width: 54px;
  padding-top: 54px;
  top: 86px;
  left: 50%;
  margin-left: 54px;
}
.method-referencecase .circle.circle4::after {
  content: "";
  display: block;
  width: 80px;
  height: 30px;
  margin-top: 11px;
  margin-left: 20px;
  border-top: solid 1px #555;
  border-left: solid 1px #555;
  transform: skewX(-45deg);
  transform-origin: bottom left;
  position: absolute;
  top: -30px;
  left: 27px;
}
@media only screen and (max-width: 768px) {
  .method-referencecase .circle.circle4::after {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .method-referencecase .circle.circle4 {
    width: 20%;
    padding-top: 20%;
    top: 0%;
    left: 60%;
    margin-top: 20%;
    margin-left: 0;
  }
  .method-referencecase .circle.circle4::before {
    content: "4.";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(100%) translateY(-100%);
  }
}
.method-referencecase .circle.circle5 {
  width: 130px;
  padding-top: 130px;
  top: 286px;
  left: 50%;
  margin-left: -20px;
}
.method-referencecase .circle.circle5::after {
  content: "";
  display: block;
  width: 48px;
  height: 80px;
  margin-top: 18px;
  margin-left: 80px;
  border-top: solid 1px #555;
  border-left: solid 1px #555;
  transform: skewX(-45deg);
  transform-origin: bottom left;
  position: absolute;
  top: -80px;
  left: 27px;
}
@media only screen and (max-width: 768px) {
  .method-referencecase .circle.circle5::after {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .method-referencecase .circle.circle5 {
    width: 40%;
    padding-top: 40%;
    top: 50%;
    left: 50%;
    margin-left: 0;
    transform: translateY(-1vw);
  }
  .method-referencecase .circle.circle5 span {
    border: solid 1px #BBB;
  }
  .method-referencecase .circle.circle5::before {
    content: "5.";
    color: #BBB;
    position: absolute;
    top: -8%;
    left: 84%;
  }
}
.method-referencecase .circle.circle6 {
  width: 54px;
  padding-top: 54px;
  bottom: 60px;
  left: 50%;
  margin-left: 62px;
}
.method-referencecase .circle.circle6::after {
  content: "";
  display: block;
  width: 32px;
  height: 86px;
  margin-top: 11px;
  margin-left: 20px;
  border-top: solid 1px #555;
  border-left: solid 1px #555;
  transform: skewX(-40deg);
  transform-origin: bottom left;
  position: absolute;
  top: -86px;
  left: 27px;
}
@media only screen and (max-width: 768px) {
  .method-referencecase .circle.circle6::after {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .method-referencecase .circle.circle6 {
    width: 20%;
    padding-top: 20%;
    top: 80%;
    left: 50%;
    margin-left: 15%;
    transform: translateY(-1vw);
  }
  .method-referencecase .circle.circle6 span {
    border: solid 1px #BBB;
  }
  .method-referencecase .circle.circle6::before {
    content: "6.";
    position: absolute;
    color: #BBB;
    top: -10%;
    left: 98%;
  }
}
.method-referencecase .case1 {
  margin-top: 100px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .method-referencecase .case1 .points {
    margin-top: 30px;
  }
}
.method-referencecase .case1 .point {
  position: absolute;
  left: 50%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #555;
  line-height: 1.5em;
  letter-spacing: 0.05em;
  width: 290px;
}
@media only screen and (max-width: 768px) {
  .method-referencecase .case1 .point {
    position: static;
    top: 0;
    left: auto;
    padding: 0 24px;
    margin-top: 10px;
  }
}
.method-referencecase .case1 .point-name {
  font-size: 16px;
  font-weight: 500;
  position: relative;
  transition: all 1s 1s;
  color: #FFF;
}
.method-referencecase .case1 .point-name ._sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .method-referencecase .case1 .point-name ._sp {
    display: inline-block;
  }
}
.method-referencecase .case1 .point-name::after {
  content: "";
  display: block;
  width: 0%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #DDD;
  z-index: 10;
}
.method-referencecase .case1 .point-name span._orange {
  background: #FFF;
  color: #FFF;
  letter-spacing: 0.075em;
  padding: 3px 10px;
  border-radius: 1px;
  display: inline-block;
  transition: all 0.3s;
}
.method-referencecase .case1 .point-text {
  margin-top: 5px;
  font-size: 14px;
  line-height: 1.5em;
  font-weight: 400;
  opacity: 0;
  transform: translateX(20px);
  transition: all 1s 1s;
}
.method-referencecase .case1 .point1 {
  top: 141px;
  margin-left: -460px;
}
.method-referencecase .case1 .point1 .point-name {
  width: 3em;
}
.method-referencecase .case1 .point2 {
  top: 284px;
  margin-left: -460px;
}
.method-referencecase .case1 .point2 .point-name {
  width: 6.3em;
}
.method-referencecase .case1 .point3 {
  top: 400px;
  width: 260px;
  margin-left: -460px;
}
.method-referencecase .case1 .point3 .point-name {
  position: absolute;
  top: -12px;
  left: 1px;
  width: 6em;
  text-align: center;
  background: #FFF;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .method-referencecase .case1 .point3 .point-name {
    position: static;
    background: none;
    width: 100%;
    text-align: left;
  }
}
.method-referencecase .case1 .point3 .point-text {
  border: solid 1px #eb550f;
  padding: 12px 15px;
}
@media only screen and (max-width: 768px) {
  .method-referencecase .case1 .point3 .point-text {
    border: none;
    padding: 0;
    color: #eb550f;
  }
}
.method-referencecase .case1 .point4 {
  top: 55px;
  margin-left: 230px;
}
.method-referencecase .case1 .point4 .point-name {
  width: 6.3em;
}
.method-referencecase .case1 .point5 {
  top: 212px;
  margin-left: 230px;
}
.method-referencecase .case1 .point5 .point-name {
  width: 6.3em;
}
.method-referencecase .case1 .point6 {
  top: 380px;
  margin-left: 230px;
}
.method-referencecase .case1 .point6 .point-name {
  width: 5em;
}
@media only screen and (max-width: 768px) {
  .method-referencecase .case1 .point1, .method-referencecase .case1 .point2, .method-referencecase .case1 .point3, .method-referencecase .case1 .point4, .method-referencecase .case1 .point5, .method-referencecase .case1 .point6 {
    width: 80%;
    margin: 0 auto 1em;
  }
  .method-referencecase .case1 .point1 .point-name, .method-referencecase .case1 .point2 .point-name, .method-referencecase .case1 .point3 .point-name, .method-referencecase .case1 .point4 .point-name, .method-referencecase .case1 .point5 .point-name, .method-referencecase .case1 .point6 .point-name {
    width: 100%;
  }
}
.method-referencecase .case1.is_opened .point-name::after {
  -webkit-animation-name: catchBar;
          animation-name: catchBar;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.method-referencecase .case1.is_opened .point-name {
  color: #555;
}
.method-referencecase .case1.is_opened .point-name._orange {
  color: #ff5a00;
}
.method-referencecase .case1.is_opened .point-text {
  opacity: 1;
  transform: translateX(0px);
}
.method-referencecase .case1.is_opened .circle {
  opacity: 1;
}
.method-referencecase._en .case1 .point1 .point-name {
  width: 180px;
}
.method-referencecase._en .case1 .point2 .point-name {
  width: 80px;
}
.method-referencecase._en .case1 .point3 .point-name {
  width: 5.2em;
}
.method-referencecase._en .case1 .point6 .point-name {
  width: 140px;
}
.method-referencecase._en .circle.circle1::after {
  width: 190px;
}
.method-referencecase._en .circle.circle2::after {
  width: 268px;
}
.method-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  overflow: hidden;
  z-index: -1;
}
.method-bg #bottles {
  display: flex;
  width: 60%;
  height: 100%;
  margin-left: 50%;
  position: relative;
  padding-top: 300px;
  overflow: hidden;
}
.method-bg .bottle0 {
  position: absolute;
  top: 20%;
  right: 0;
  width: 50%;
  z-index: -1;
}
.method-bg .bottle1 {
  margin-left: auto;
  width: 25%;
}
.method-bg .bottle2 {
  margin-top: 20%;
  width: 25%;
}
.method-bg .bottle3 {
  margin-top: 35%;
  width: 25%;
}
.method-bg .bottle-tonyu {
  position: absolute;
  top: 700px;
  left: 0;
  width: 23%;
  margin-left: 2%;
}
.method-bg .bottle-tonyu .shiro {
  position: absolute;
  top: 0;
  left: 0;
}
.method-bg .bottle-tonyu .mask {
  /*mask-image: linear-gradient(to bottom, transparent -100%, black 0%);
  -webkit-mask-image: linear-gradient(to bottom, transparent -100%, black 0%);*/
  transition: -webkit-mask-image 1.6s ease;
  transition: mask-image 1.6s ease;
  transition: mask-image 1.6s ease, -webkit-mask-image 1.6s ease;
  opacity: 1;
  transition: all 1.6s ease;
}
.method-bg .bottle-tonyu .mask._visible {
  opacity: 0;
}
.method-bg .box-churu {
  position: absolute;
  top: 420px;
  margin-top: 70%;
  right: 0;
  width: 50%;
}
.method-bg .box-churu .shiro {
  position: absolute;
  top: 0;
  left: 0;
}
.method-bg .box-churu .mask {
  /*mask-image: linear-gradient(to bottom, transparent -100%, black 0%);
  -webkit-mask-image: linear-gradient(to bottom, transparent -100%, black 0%);*/
  transition: -webkit-mask-image 1.6s ease;
  transition: mask-image 1.6s ease;
  transition: mask-image 1.6s ease, -webkit-mask-image 1.6s ease;
  opacity: 1;
  transition: all 1.6s ease;
}
.method-bg .box-churu .mask._visible {
  opacity: 0;
}
.method-bg .box-tongari {
  position: absolute;
  top: 520px;
  margin-top: 70%;
  right: 0;
  width: 50%;
}
.method-bg .box-tongari .shiro {
  position: absolute;
  top: 0;
  left: 0;
}
.method-bg .box-tongari .mask {
  /*mask-image: linear-gradient(to bottom, transparent -100%, black 0%);
  -webkit-mask-image: linear-gradient(to bottom, transparent -100%, black 0%);
  transition: mask-image 1.6s ease;*/
  opacity: 1;
  transition: all 1.6s ease;
}
.method-bg .box-tongari .mask._visible {
  opacity: 0;
}
.method-bg .bottle-calpis {
  position: absolute;
  top: 300px;
  margin-top: 70%;
  left: 25%;
  width: 25%;
}
.method-bg .bottle-calpis .shiro {
  position: absolute;
  top: 0;
  left: 0;
}
.method-bg .bottle-calpis .mask {
  /*mask-image: linear-gradient(to bottom, transparent -100%, black 0%);
  -webkit-mask-image: linear-gradient(to bottom, transparent -100%, black 0%);*/
  transition: -webkit-mask-image 1.6s ease;
  transition: mask-image 1.6s ease;
  transition: mask-image 1.6s ease, -webkit-mask-image 1.6s ease;
  opacity: 1;
  transition: all 1.6s ease;
}
.method-bg .bottle-calpis .mask._visible {
  opacity: 0;
}

/* About */
.about {
  /*&-archives {
  	padding-top: 2em;
  	padding-bottom: 100px;
  	h3 {
  		font-family: "Zen Kaku Gothic New", sans-serif;
  		font-style: normal;
  		font-weight: 400;
  		font-size: 27px;
  		color: #555;
  		letter-spacing: 0.05em;
  		margin-top: 2.4em;
  		margin-right: 40%;
  	}
  	h4 {
  		font-family: "Zen Kaku Gothic New", sans-serif;
  		font-style: normal;
  		font-weight: 500;
  		font-size: 19px;
  		color: #555;
  		letter-spacing: 0.05em;
  		margin-top: 2.8em;
  		margin-right: 40%;
  	}
  	p {
  		font-family: "Zen Kaku Gothic New", sans-serif;
  		font-style: normal;
  		font-weight: 400;
  		font-size: 16px;
  		line-height: 2em;
  		color: #555;
  		letter-spacing: 0.035em;
  		margin-top: 0.7em;
  		margin-right: 40%;
  		&.intro {
  			font-family: "Zen Kaku Gothic New", sans-serif;
  			font-style: normal;
  			font-size: 16px;
  			font-weight: 400;
  			margin-top: 0!important;
  		}

  	}
  	.caption {
  		font-family: "Zen Kaku Gothic New", sans-serif;
  		font-size: 12px;
  		line-height: 1.7em;
  		letter-spacing: 0.075em;
  		color: #231815;
  	}
  	&::before {
  		content: '';
  		display: block;
  		background: #000;
  		width: calc(100% - 80px);
  		height: 1px;
  		position: absolute;
  		top: 0;
  		left: 80px;
  	}
  	&-kv {
  		margin-top: 3.4em;
  		position: relative;
  		img {
  			display: block;
  			width: 60%;
  		}
  		.caption {
  			position: absolute;
  			bottom: 0;
  			right: 0;
  			width: 35%;
  		}
  	}
  	&-2col {
  		margin-top: 3.4em;
  		display: flex;
  		justify-content: space-between;
  		.col1 {
  			width: 60%;
  			h4 {
  				margin-top: 0;
  				margin-right: 0;
  			}
  			p {
  				margin-right: 0;
  			}
  		}
  		.col2 {
  			width: 35%;
  			&.align-bottom {
  				align-self: flex-end;
  			}
  		}
  	}
  	&-img {
  		width: 60%;
  		margin-top: 1.4em;
  	}
  	&-block {
  		position: relative;
  	}


  	.block-border-top {
  		position: relative;
  		margin-top: 5em;
  		padding-top: 5em;
  		h3 {
  			margin-top: 0;
  		}
  		&::after {
  			content: '';
  			display: block;
  			position: absolute;
  			top: 0;
  			left: 0;
  			width: 100%;
  			height: 1px;
  			background: #000;

  		}
  	}

  }*/
}
.about-inner {
  padding-left: 120px;
}
@media only screen and (max-width: 768px) {
  .about-inner {
    padding: 0;
  }
}
@media only screen and (max-width: 768px) {
  .about-inner figure {
    margin: 2em auto 3em;
  }
}
.about-intro {
  margin-bottom: 200px;
  padding-left: 80px;
}
@media only screen and (max-width: 768px) {
  .about-intro {
    margin: 0;
    padding: 0;
  }
}
.about-intro p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 2.4em;
  margin-bottom: 2em;
  letter-spacing: 0.05em;
  color: #555;
}
.about-intro p.catch1 {
  font-size: 28px;
  font-weight: 400;
  line-height: 2em;
  margin-bottom: 1.4em;
  color: #555555;
}
.about-intro p.catch2 {
  font-size: 22px;
  font-weight: 400;
  line-height: 2em;
  margin-top: 3em;
  margin-bottom: 1.4em;
  color: #555555;
}
@media only screen and (max-width: 768px) {
  .about-intro p {
    margin: 0;
    padding: 0;
  }
}
.about-section {
  position: relative;
  width: 100%;
}
.about-section::after {
  content: "";
  display: block;
  background: #000;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 768px) {
  .about-section::after {
    display: none;
  }
}
.about-section-inner {
  padding-left: 80px;
}
@media only screen and (max-width: 768px) {
  .about-section-inner {
    padding: 0;
  }
}
.about-section h2.section-title {
  font-family: "Roboto", "Zen Kaku Gothic New", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 42px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #555555;
  position: -webkit-sticky;
  position: sticky;
  top: 40px;
  left: 0;
  padding-right: 30px;
  transform: translateX(-40px) rotateZ(90deg);
  transform-origin: top left;
}
@media only screen and (max-width: 768px) {
  .about-section h2.section-title {
    position: static;
    font-size: 36px;
    margin: 0 0 1em;
    padding: 0;
    transform: none;
  }
}
.about-profile {
  padding-bottom: 90px;
}
@media only screen and (max-width: 768px) {
  .about-profile {
    padding: 0 24px;
  }
}
.about-profile .btn-basic {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-style: normal;
  letter-spacing: 0.075em;
  margin-top: 20px;
  border: none;
  padding: 15px 40px;
  border-radius: 1px;
  background: #555;
  color: #FFF;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 768px) {
  .about-profile .btn-basic {
    margin: 24px auto 0;
  }
}
.about-profile .btn-basic:hover {
  background: #ff5a00;
  cursor: pointer;
}
.about-profile .contact {
  margin-top: 60px;
  font-family: "Roboto", "Zen Kaku Gothic New", sans-serif;
  font-optical-sizing: auto;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.075em;
  color: #555555;
  line-height: 1.7em;
}
.about-profile dl {
  display: flex;
  justify-content: flex-start;
  margin-top: 15px;
  font-family: "Roboto", "Zen Kaku Gothic New", sans-serif;
  font-optical-sizing: auto;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.075em;
  color: #555555;
  line-height: 1.7em;
}
.about-profile dl:first-child {
  margin-top: -50px;
}
.about-profile dl dt {
  width: 7.5em;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .about-profile dl:first-child {
    margin-top: 0;
  }
}
.about-profile dl.en dt {
  width: 11em;
  padding-right: 1em;
}
@media only screen and (max-width: 768px) {
  .about-profile .ceo-name {
    width: 100%;
  }
}
.about-profile .ceo dl {
  width: 60%;
}
@media only screen and (max-width: 768px) {
  .about-profile .ceo dl {
    width: 100%;
  }
}
.about-profile .ceo dl dt {
  width: 70px;
}
.about-profile .ceo dl dd {
  width: calc(100% - 70px);
}
.about-profile-block {
  position: relative;
}
.about-profile-kv {
  position: absolute;
  top: 5.6em;
  right: 0;
  width: 35%;
}
@media only screen and (max-width: 768px) {
  .about-profile-kv {
    position: static;
    width: 50%;
  }
}
.about-profile .gmap {
  margin-top: 3em;
  max-width: 600px;
}
.about-profile .gmap iframe {
  max-width: 600px;
  height: auto;
  aspect-ratio: 4/3;
}
@media only screen and (max-width: 768px) {
  .about-profile .gmap iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
  }
}
.about-profile .block-border-top {
  position: relative;
  margin-top: 5em;
  padding-top: 5em;
}
@media only screen and (max-width: 768px) {
  .about-profile .block-border-top {
    margin-top: 5em;
    padding-top: 0;
  }
}
.about-profile .block-border-top h3 {
  font-family: "Roboto", "Zen Kaku Gothic New", sans-serif;
  font-size: 28px;
  line-height: 1.7em;
  color: #555;
  letter-spacing: 0.05em;
  font-weight: 400;
  margin-top: 0;
  margin-right: 40%;
}
.about-profile .block-border-top h3.en {
  font-size: 21px;
  font-weight: 400;
}
.about-profile .block-border-top h3 span.en {
  font-size: 21px;
  font-weight: 400;
  margin-left: 1em;
}
.about-profile .block-border-top p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 2em;
  color: #555;
  letter-spacing: 0.035em;
  margin-right: 40%;
  margin-top: 2em;
}
.about-profile .block-border-top::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  background: #000;
}
.about .modalArea {
  height: 600px;
}

/* History */
.history-inner {
  padding-left: 120px;
}
@media only screen and (max-width: 768px) {
  .history-inner {
    padding: 0;
  }
}
@media only screen and (max-width: 768px) {
  .history-inner figure {
    margin: 2em auto;
  }
}
.history-intro {
  margin-bottom: 160px;
  padding-left: 80px;
}
@media only screen and (max-width: 768px) {
  .history-intro {
    margin: 0;
    padding: 0;
  }
}
.history-intro p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 2.4em;
  margin-bottom: 2em;
  letter-spacing: 0.05em;
  color: #555;
}
.history-intro p.catch1 {
  font-size: 28px;
  font-weight: 400;
  line-height: 2em;
  margin-bottom: 1.4em;
  color: #555555;
}
@media only screen and (max-width: 768px) {
  .history-intro p.catch1 {
    line-height: 1.8em;
  }
}
.history-intro p.catch2 {
  font-size: 22px;
  font-weight: 400;
  line-height: 2em;
  margin-top: 3em;
  margin-bottom: 1.4em;
  color: #555555;
}
@media only screen and (max-width: 768px) {
  .history-intro p {
    padding: 0 24px;
    line-height: 1.8em;
  }
  .history-intro p br {
    display: none;
  }
}
.history-section {
  position: relative;
  width: 100%;
  /*&::before {
  	content: '';
  	display: block;
  	background: #000;
  	width: 100%;
  	height: 1px;
  	position: absolute;
  	top: 0;
  	left: 100px;
  }*/
}
.history-section::after {
  content: "";
  display: block;
  background: #000;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0px;
}
@media only screen and (max-width: 768px) {
  .history-section::after {
    display: none;
  }
}
.history-section-inner {
  padding-bottom: 40px;
  padding-left: 80px;
}
@media only screen and (max-width: 768px) {
  .history-section-inner {
    padding: 0 24px;
  }
}
.history-section-inner.border-top {
  padding-top: 60px;
  position: relative;
}
.history-section-inner.border-top:before {
  content: "";
  display: block;
  width: calc(100% - 80px);
  height: 1px;
  background: #000;
  position: absolute;
  top: 0;
  left: 80px;
}
@media only screen and (max-width: 768px) {
  .history-section-inner.border-top:before {
    width: calc(100% - 24px);
    left: 24px;
  }
}
.history-section h2.section-title {
  font-family: "Roboto", "Zen Kaku Gothic New", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 42px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #555555;
  position: -webkit-sticky;
  position: sticky;
  top: 40px;
  left: 0;
  padding-right: 30px;
  transform: translateX(-40px) rotateZ(90deg);
  transform-origin: top left;
}
@media only screen and (max-width: 768px) {
  .history-section h2.section-title {
    position: static;
    font-size: 36px;
    margin: 2em 24px 1em;
    transform: none;
  }
}
.history-section figure {
  position: relative;
}
.history-section figure .num {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #FFF;
  padding: 10px;
  line-height: 1em;
  font-size: 14px;
}
.history-section h3 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 27px;
  color: #555;
  letter-spacing: 0.05em;
  margin-bottom: 1.4em;
}
@media only screen and (max-width: 768px) {
  .history-section h3 {
    margin: 0 0 1em;
  }
}
.history-section .block-border-top {
  position: relative;
  margin-left: 80px;
  margin-top: 5em;
  padding-top: 5em;
}
.history-section .block-border-top h3 {
  margin-top: 0;
}
.history-section .block-border-top::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #000;
}
.history-section .col-2 {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  margin-bottom: 40px;
  /*&-2 {
  	.grid-2 {
  		display: grid;
  		grid-template-columns: repeat(2, 1fr);
  		gap: 10px;
  	}
  }*/
}
.history-section .col-2 .align-self-top {
  align-content: start;
}
.history-section .col-2 .align-self-bottom {
  align-content: end;
}
.history-section .col-2:first-child {
  margin-top: -50px !important;
}
.history-section .col-2.mt-50 {
  margin-top: -50px !important;
}
.history-section .col-2-1 {
  width: 60%;
}
.history-section .col-2-2 {
  width: 35.7%;
}
@media only screen and (max-width: 768px) {
  .history-section .col-2 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0;
  }
  .history-section .col-2.mt-50 {
    margin-top: 0 !important;
  }
  .history-section .col-2-1, .history-section .col-2-2 {
    width: 100%;
  }
}
.history-section .col-2 .w50 {
  width: 50%;
}
.history-section .col-2 .w70 {
  width: 70%;
}
.history-section .col-2 .w80 {
  width: 80%;
}
.history-section .col-2 .mt-auto {
  margin-top: auto;
}
.history-section .col-2 .mt-30 {
  margin-top: 30px;
}
.history-section .col-2 .mt-20 {
  margin-top: 20px;
}
.history-section .col-2 .mt-10 {
  margin-top: 10px;
}
.history-section .col-2 .grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media only screen and (max-width: 768px) {
  .history-section .col-2 .grid-2 {
    gap: 5;
    /*display: block;
    margin: 0 auto;*/
  }
}
@media only screen and (max-width: 768px) {
  .history-section .col-2 .grid-item {
    width: 75%;
  }
}
.history-section .col-2 .grid-item-col2 {
  grid-column: 1/3;
}
.history-section .col-2 h4 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 19px;
  color: #555;
  letter-spacing: 0.05em;
  margin-bottom: 1em;
}
@media only screen and (max-width: 768px) {
  .history-section .col-2 h4 {
    margin: 0;
  }
}
.history-section .col-2 p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 2em;
  color: #555;
  letter-spacing: 0.035em;
}
@media only screen and (max-width: 768px) {
  .history-section .col-2 p {
    margin: 0;
    line-height: 1.8em;
  }
}
.history-section .col-2 p.intro {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  margin-top: 0 !important;
}
.history-section .col-2 p:last-child {
  margin-bottom: 0;
}
.history-section .col-2 .block {
  position: relative;
  padding-top: 20px;
}
.history-section .col-2 .block p {
  margin-right: 25%;
}
@media only screen and (max-width: 768px) {
  .history-section .col-2 .block p {
    margin: 0;
  }
}
.history-section .col-2 .block .logo {
  /*position: absolute;
  width: 20%;
  top: 0;
  right: 0;*/
  margin-top: 2em;
  width: 280px;
}
@media only screen and (max-width: 768px) {
  .history-section .col-2 .block .logo {
    position: static;
    margin: 2em 0;
  }
}
.history-section #seiko-super-tennis .inner-caption {
  position: relative;
}
@media only screen and (max-width: 1000px) {
  .history-section #seiko-super-tennis .inner-caption {
    padding-top: 2vw;
  }
}
@media only screen and (max-width: 768px) {
  .history-section #seiko-super-tennis .inner-caption img {
    width: 90%;
  }
}
.history-section #seiko-super-tennis .inner-caption figcaption {
  position: absolute;
  top: 40px;
  left: 0;
  width: 30%;
}
@media only screen and (max-width: 1000px) {
  .history-section #seiko-super-tennis .inner-caption figcaption {
    top: 0px;
  }
}
@media only screen and (max-width: 768px) {
  .history-section #seiko-super-tennis .inner-caption figcaption {
    position: static;
    width: 100%;
    text-align: center;
  }
}
.history-section .align-top {
  align-self: flex-start !important;
}
.history-section figcaption,
.history-section .caption {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  line-height: 1.5em;
  letter-spacing: 0.075em;
  color: #231815;
  margin-top: 0.75em;
}
.history-section-kv {
  margin-top: 3.4em;
  position: relative;
}
.history-section-kv img {
  display: block;
  width: 60%;
}
.history-section-kv .caption {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 35%;
}
@media only screen and (max-width: 768px) {
  .history-section-kv img {
    width: 100%;
  }
  .history-section-kv .caption {
    position: static;
    width: 100%;
  }
}
.history-section-2col {
  margin-top: 3.4em;
  display: flex;
  justify-content: space-between;
}
.history-section-2col .col1 {
  width: 60%;
}
.history-section-2col .col1 h4 {
  margin-top: 0;
  margin-right: 0;
}
.history-section-2col .col1 p {
  margin-right: 0;
}
.history-section-2col .col2 {
  width: 35%;
}
.history-section-2col .col2.align-bottom {
  align-self: flex-end;
}
@media only screen and (max-width: 768px) {
  .history-section-2col {
    display: block;
    margin: 2em auto 3em;
  }
  .history-section-2col .col1 {
    width: 100%;
  }
  .history-section-2col .col2 {
    width: 100%;
  }
}
.history-section-img {
  width: 60%;
  margin-top: 1.4em;
}
@media only screen and (max-width: 768px) {
  .history-section-img {
    width: 100%;
  }
}
.history-section-block {
  position: relative;
}
.history-section-img_s {
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
}
.history-section-img_s img {
  width: 100%;
  height: auto;
}
.history-section-img_s .caption {
  margin-top: 1em;
}
.history-section-img_s.mt-negative {
  transform: translateY(-30px);
}
@media only screen and (max-width: 768px) {
  .history-section-img_s {
    width: 50%;
    margin: 2em auto;
    position: static;
  }
  .history-section-img_s .caption {
    text-align: center;
  }
  .history-section-img_s.mt-negative {
    transform: none;
  }
}

.outer {
  width: 100%;
  padding-left: 100px;
}

/*h2.sticky {
	position: sticky;
	top: 0;
	left: 0;
	transform: translateX(-10px) rotateZ(90deg);
	transform-origin: top left;
	padding-left: 20px;
}*/
@-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: 100px 40px 200px;
}
@media only screen and (max-width: 768px) {
  .relations-inner {
    padding: 0 7vw;
  }
}
.relations-block {
  max-width: 1300px;
  margin: 110px auto 0;
  display: flex;
  flex-direction: column-reverse;
}
@media only screen and (max-width: 768px) {
  .relations-block {
    flex-direction: column;
    margin: 50px auto 0;
  }
}
.relations-block:first-child {
  margin-top: 0;
}
.relations-title .hash-link {
  display: block;
  margin-bottom: 20px;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .relations-title .hash-link {
    margin-bottom: 20px;
  }
}
.relations-title .hash-text {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2em;
  letter-spacing: 0.05em;
  /*color: #FFF;*/
  border-top: solid 1px #000;
  margin-top: 1.8em;
  padding-top: 0.8em;
  color: #555;
  /*margin-left: -20px;*/
}
body.dark .relations-title .hash-text {
  border-top: solid 1px #b8b8b8;
  color: #E7E7E7;
}
@media only screen and (max-width: 768px) {
  .relations-title .hash-text {
    font-size: 13px;
  }
}
.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: 768px) {
  .relations-col3 {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.relations-col3 .relation-item {
  width: calc(33.3333333333% - 20px);
}
@media only screen and (max-width: 768px) {
  .relations-col3 .relation-item {
    width: calc(50% - 10px);
  }
}
.relations-col3 .relation-item a {
  display: block;
  position: relative;
  color: #FFF;
  height: 0;
  padding-top: 56.25%;
  overflow: hidden;
}
.relations-col3 .relation-item a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.relations-col3 .relation-item a .item-info {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 110%;
  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);
  padding: 10px 20px;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 1.6em;
}
.relations-col3 .relation-item a .item-img {
  transition: all 0.3s;
}
.relations-col3 .relation-item a .item-img img {
  opacity: 0;
}
@media only screen and (min-width: 769px) {
  .relations-col3 .relation-item a:hover .item-info {
    opacity: 1;
    transform: scale(1);
  }
}
@media only screen and (min-width: 769px) {
  .relations-col3 .relation-item a:hover .item-img {
    transform: scale(1.1);
  }
}

/* フォームCSSはこちらから */
.form-section {
  margin: 0 auto;
  padding: 50px 40px 30px;
  color: #242424;
}

.form-section .form-header {
  margin-bottom: 2em;
  font-size: 13px;
  line-height: 1.6em;
}

.form-section input,
.form-section textarea {
  border: none;
  background: #EFEFEF;
  padding: 0.6em 0.8em;
  border-radius: 2px;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 1.6em;
  width: 100%;
  border: solid 1px #EFEFEF;
  box-shadow: none;
}

.form-section textarea {
  min-height: 10em;
}

.form-section input[type=text]:focus,
.form-section input[type=email]:focus,
.form-section textarea:focus {
  outline: none;
  border: solid 1px #CCC;
}

.form-section .form-item dt,
.form-section .form-item dd {
  width: calc(100% - 11em);
}

.form-section .form-item {
  display: flex;
}

.form-section .form-item dt,
.form-section .form-item dd {
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 1.6em;
}

.form-section .form-item dt {
  width: 11em;
  padding: 1.1em 1em 0.6em 0;
}

.form-section .form-item dd {
  padding: 0.5em 0;
}

.form-section .required {
  color: #eb550f;
  display: inline-block;
  margin-left: 0.2em;
}

.form-section .form-footer {
  margin-top: 1em;
}
.form-section .form-footer p {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.form-section .btn-submit {
  margin-left: auto;
  display: inline-block;
  width: 12em;
  font-size: 13px;
  letter-spacing: 0.05em;
  background: #eb550f;
  color: #FFF;
  transition: all 0.4s;
}

.form-section .btn-submit:hover {
  opacity: 0.6;
}

/* モーダルCSSここから */
.modalArea {
  visibility: hidden; /* displayではなくvisibility */
  opacity: 0;
  position: fixed;
  z-index: 10000; /* サイトによってここの数値は調整 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.4s;
}

.modalBg {
  width: 100%;
  height: 100%;
  background: #575757 url(/assets/images/common/sign_by_girvin.png?2) no-repeat center center;
  background-size: contain;
}

.modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 640px;
  background-color: #fff;
  border-radius: 3px;
}

.closeModal {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  cursor: pointer;
}

.is-show { /* モーダル表示用クラス */
  visibility: visible;
  opacity: 1;
}

/* モーダルCSSここまで */
@-webkit-keyframes maskAnimated {
  from {
    mask-image: linear-gradient(to bottom, transparent, black 0%);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 0%);
  }
  to {
    mask-image: linear-gradient(to bottom, transparent, transparent 100%, black 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent, transparent 100%, black 100%);
  }
}
@keyframes maskAnimated {
  from {
    mask-image: linear-gradient(to bottom, transparent, black 0%);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 0%);
  }
  to {
    mask-image: linear-gradient(to bottom, transparent, transparent 100%, black 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent, transparent 100%, black 100%);
  }
}
@-webkit-keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes catchBar {
  0% {
    width: 0;
  } /* 初期状態 */
  50% {
    width: 100%;
    left: 0;
  } /* 潰れた反動で縦に伸び、その勢いでバウンド開始 */
  54% {
    width: 100%;
    left: 0;
  } /* 潰れた反動で縦に伸び、その勢いでバウンド開始 */
  100% {
    width: 0;
    left: 100%;
  } /* 初期状態に戻る */
}
@keyframes catchBar {
  0% {
    width: 0;
  } /* 初期状態 */
  50% {
    width: 100%;
    left: 0;
  } /* 潰れた反動で縦に伸び、その勢いでバウンド開始 */
  54% {
    width: 100%;
    left: 0;
  } /* 潰れた反動で縦に伸び、その勢いでバウンド開始 */
  100% {
    width: 0;
    left: 100%;
  } /* 初期状態に戻る */
}